6016063c3cca18053e8eb5a70e3fc9dacfccfdea
[dragonfly.git] / sys / net / i4b / capi / iavc / iavc_pci.c
1 /*
2  * Copyright (c) 2001 Cubical Solutions Ltd. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23  * SUCH DAMAGE.
24  *
25  * capi/iavc/iavc_pci.c
26  *              The AVM ISDN controllers' PCI bus attachment handling.
27  *
28  * $FreeBSD: src/sys/i4b/capi/iavc/iavc_pci.c,v 1.1.2.1 2001/08/10 14:08:34 obrien Exp $
29  */
30
31 #include <sys/param.h>
32 #include <sys/kernel.h>
33 #include <sys/systm.h>
34 #include <sys/mbuf.h>
35 #include <sys/socket.h>
36 #include <sys/bus.h>
37 #include <sys/rman.h>
38
39 #include <machine/clock.h>
40
41 #include <vm/vm.h>
42 #include <vm/pmap.h>
43
44 #include <bus/pci/pcireg.h>
45 #include <bus/pci/pcivar.h>
46
47 #include <net/if.h>
48 #include <net/i4b/include/machine/i4b_debug.h>
49 #include <net/i4b/include/machine/i4b_ioctl.h>
50 #include <net/i4b/include/machine/i4b_trace.h>
51
52 #include "../../include/i4b_global.h"
53 #include "../../include/i4b_l3l4.h"
54 #include "../../include/i4b_mbuf.h"
55 #include "../capi.h"
56
57 #include "iavc.h"
58
59 /* PCI device ids */
60
61 #define PCI_AVM_VID   0x1244
62 #define PCI_AVMT1_DID 0x1200
63 #define PCI_AVMB1_DID 0x0700
64
65 /* PCI driver linkage */
66
67 static void iavc_pci_intr(iavc_softc_t *sc);
68 static int iavc_pci_probe(device_t dev);
69 static int iavc_pci_attach(device_t dev);
70
71 static device_method_t iavc_pci_methods[] =
72 {
73     DEVMETHOD(device_probe,     iavc_pci_probe),
74     DEVMETHOD(device_attach,    iavc_pci_attach),
75     { 0, 0 }
76 };
77
78 static driver_t iavc_pci_driver =
79 {
80     "iavc",
81     iavc_pci_methods,
82     0
83 };
84
85 static devclass_t iavc_pci_devclass;
86
87 DRIVER_MODULE(iavc, pci, iavc_pci_driver, iavc_pci_devclass, NULL, NULL);
88
89 /* Driver soft contexts */
90
91 iavc_softc_t iavc_sc[IAVC_MAXUNIT];
92
93 /*---------------------------------------------------------------------------*
94  *
95  *---------------------------------------------------------------------------*/
96
97 static int
98 iavc_pci_probe(device_t dev)
99 {
100     u_int16_t did = pci_get_device(dev);
101     u_int16_t vid = pci_get_vendor(dev);
102
103     if ((vid == PCI_AVM_VID) && (did == PCI_AVMT1_DID)) {
104         device_set_desc(dev, "AVM T1 PCI");
105     } else if ((vid == PCI_AVM_VID) && (did == PCI_AVMB1_DID)) {
106         device_set_desc(dev, "AVM B1 PCI");
107     } else {
108         return(ENXIO);
109     }
110
111     return(0);
112 }
113
114 /*---------------------------------------------------------------------------*
115  *
116  *---------------------------------------------------------------------------*/
117
118 static int
119 iavc_pci_attach(device_t dev)
120 {
121     struct iavc_softc *sc;
122     void *ih = 0;
123     u_int16_t did = pci_get_device(dev);
124     int unit = device_get_unit(dev), ret;
125     int error;
126         
127     /* check max unit range */
128         
129     if (unit >= IAVC_MAXUNIT) {
130         kprintf("iavc%d: too many units\n", unit);
131         return(ENXIO);  
132     }   
133
134     sc = iavc_find_sc(unit);    /* get softc */ 
135         
136     sc->sc_unit = unit;
137
138     /* use the i/o mapped base address */
139         
140     sc->sc_resources.io_rid[0] = 0x14;
141         
142     if (!(sc->sc_resources.io_base[0] =
143          bus_alloc_resource(dev, SYS_RES_IOPORT,
144                             &sc->sc_resources.io_rid[0],
145                             0UL, ~0UL, 1, RF_ACTIVE))) {
146         kprintf("iavc%d: can't allocate io region\n", unit);
147         return(ENXIO);                                       
148     }
149
150     sc->sc_iobase = rman_get_start(sc->sc_resources.io_base[0]);
151     sc->sc_io_bt = rman_get_bustag(sc->sc_resources.io_base[0]);
152     sc->sc_io_bh = rman_get_bushandle(sc->sc_resources.io_base[0]);
153
154     /* use the memory mapped DMA controller */
155         
156     sc->sc_resources.mem_rid = 0x10;
157         
158     if (!(sc->sc_resources.mem =
159          bus_alloc_resource(dev, SYS_RES_MEMORY,
160                             &sc->sc_resources.mem_rid,
161                             0UL, ~0UL, 1, RF_ACTIVE))) {
162         kprintf("iavc%d: can't allocate memory region\n", unit);
163         return(ENXIO);                                       
164     }
165
166     sc->sc_membase = rman_get_start(sc->sc_resources.mem);
167     sc->sc_mem_bt = rman_get_bustag(sc->sc_resources.mem);
168     sc->sc_mem_bh = rman_get_bushandle(sc->sc_resources.mem);
169
170     /* do some detection */
171
172     sc->sc_t1 = FALSE;
173     sc->sc_dma = FALSE;
174     b1dma_reset(sc);
175
176     if (did == PCI_AVMT1_DID) {
177         sc->sc_capi.card_type = CARD_TYPEC_AVM_T1_PCI;
178         sc->sc_capi.sc_nbch = 30;
179         ret = t1_detect(sc);
180         if (ret) {
181             if (ret < 6) {
182                 kprintf("iavc%d: no card detected?\n", sc->sc_unit);
183             } else {
184                 kprintf("iavc%d: black box not on\n", sc->sc_unit);
185             }
186             return(ENXIO);
187         } else {
188             sc->sc_dma = TRUE;
189             sc->sc_t1 = TRUE;
190         }
191
192     } else if (did == PCI_AVMB1_DID) {
193         sc->sc_capi.card_type = CARD_TYPEC_AVM_B1_PCI;
194         sc->sc_capi.sc_nbch = 2;
195         ret = b1dma_detect(sc);
196         if (ret) {
197             ret = b1_detect(sc);
198             if (ret) {
199                 kprintf("iavc%d: no card detected?\n", sc->sc_unit);
200                 return(ENXIO);
201             }
202         } else {
203             sc->sc_dma = TRUE;
204         }
205     }
206
207     if (sc->sc_dma) b1dma_reset(sc);
208 #if 0
209     if (sc->sc_t1) t1_reset(sc);
210     else b1_reset(sc);
211 #endif
212
213     /* of course we need an interrupt */
214     
215     sc->sc_resources.irq_rid = 0x00;
216         
217     if(!(sc->sc_resources.irq =
218          bus_alloc_resource(dev, SYS_RES_IRQ,
219                             &sc->sc_resources.irq_rid,
220                             0UL, ~0UL, 1, RF_SHAREABLE|RF_ACTIVE))) {
221         kprintf("iavc%d: can't allocate irq\n",unit);
222         return(ENXIO);
223     }
224
225     /* finalize our own context */
226
227     memset(&sc->sc_txq, 0, sizeof(struct ifqueue));
228     sc->sc_txq.ifq_maxlen = sc->sc_capi.sc_nbch * 4;
229
230     sc->sc_intr = FALSE;
231     sc->sc_state = IAVC_DOWN;
232     sc->sc_blocked = FALSE;
233
234     /* setup capi link */
235         
236     sc->sc_capi.load = iavc_load;
237     sc->sc_capi.reg_appl = iavc_register;
238     sc->sc_capi.rel_appl = iavc_release;
239     sc->sc_capi.send = iavc_send;
240     sc->sc_capi.ctx = (void*) sc;
241
242     if (capi_ll_attach(&sc->sc_capi)) {
243         kprintf("iavc%d: capi attach failed\n", unit);
244         return(ENXIO);
245     }
246
247     /* setup the interrupt */
248
249     error = bus_setup_intr(dev, sc->sc_resources.irq, 0,
250                           (void(*)(void*))iavc_pci_intr,
251                           sc, &ih, NULL);
252     if (error) {
253         kprintf("iavc%d: irq setup failed\n", unit);
254         return(ENXIO);
255     }
256
257     /* the board is now ready to be loaded */
258
259     return(0);
260 }
261
262 /*---------------------------------------------------------------------------*
263  *      IRQ handler
264  *---------------------------------------------------------------------------*/
265
266 static void
267 iavc_pci_intr(struct iavc_softc *sc)
268 {
269     iavc_handle_intr(sc);
270 }