0850d9d36d19d2f9be788c2e04f4973bd1e47605
[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  * $DragonFly: src/sys/net/i4b/capi/iavc/iavc_pci.c,v 1.7 2005/06/14 21:19:18 joerg Exp $
30  */
31
32 #include <sys/param.h>
33 #include <sys/kernel.h>
34 #include <sys/systm.h>
35 #include <sys/mbuf.h>
36 #include <sys/socket.h>
37 #include <net/if.h>
38
39 #include <machine/clock.h>
40
41 #include <machine/bus.h>
42 #include <machine/resource.h>
43 #include <sys/bus.h>
44 #include <sys/rman.h>
45 #include <vm/vm.h>
46 #include <vm/pmap.h>
47
48 #include <bus/pci/pcireg.h>
49 #include <bus/pci/pcivar.h>
50
51 #include <net/i4b/include/machine/i4b_debug.h>
52 #include <net/i4b/include/machine/i4b_ioctl.h>
53 #include <net/i4b/include/machine/i4b_trace.h>
54
55 #include "../../include/i4b_global.h"
56 #include "../../include/i4b_l3l4.h"
57 #include "../../include/i4b_mbuf.h"
58 #include "../capi.h"
59
60 #include "iavc.h"
61
62 /* PCI device ids */
63
64 #define PCI_AVM_VID   0x1244
65 #define PCI_AVMT1_DID 0x1200
66 #define PCI_AVMB1_DID 0x0700
67
68 /* PCI driver linkage */
69
70 static void iavc_pci_intr(iavc_softc_t *sc);
71 static int iavc_pci_probe(device_t dev);
72 static int iavc_pci_attach(device_t dev);
73
74 static device_method_t iavc_pci_methods[] =
75 {
76     DEVMETHOD(device_probe,     iavc_pci_probe),
77     DEVMETHOD(device_attach,    iavc_pci_attach),
78     { 0, 0 }
79 };
80
81 static driver_t iavc_pci_driver =
82 {
83     "iavc",
84     iavc_pci_methods,
85     0
86 };
87
88 static devclass_t iavc_pci_devclass;
89
90 DRIVER_MODULE(iavc, pci, iavc_pci_driver, iavc_pci_devclass, 0, 0);
91
92 /* Driver soft contexts */
93
94 iavc_softc_t iavc_sc[IAVC_MAXUNIT];
95
96 /*---------------------------------------------------------------------------*
97  *
98  *---------------------------------------------------------------------------*/
99
100 static int
101 iavc_pci_probe(device_t dev)
102 {
103     u_int16_t did = pci_get_device(dev);
104     u_int16_t vid = pci_get_vendor(dev);
105
106     if ((vid == PCI_AVM_VID) && (did == PCI_AVMT1_DID)) {
107         device_set_desc(dev, "AVM T1 PCI");
108     } else if ((vid == PCI_AVM_VID) && (did == PCI_AVMB1_DID)) {
109         device_set_desc(dev, "AVM B1 PCI");
110     } else {
111         return(ENXIO);
112     }
113
114     return(0);
115 }
116
117 /*---------------------------------------------------------------------------*
118  *
119  *---------------------------------------------------------------------------*/
120
121 static int
122 iavc_pci_attach(device_t dev)
123 {
124     struct iavc_softc *sc;
125     void *ih = 0;
126     u_int16_t did = pci_get_device(dev);
127     int unit = device_get_unit(dev), ret;
128     int error;
129         
130     /* check max unit range */
131         
132     if (unit >= IAVC_MAXUNIT) {
133         printf("iavc%d: too many units\n", unit);
134         return(ENXIO);  
135     }   
136
137     sc = iavc_find_sc(unit);    /* get softc */ 
138         
139     sc->sc_unit = unit;
140
141     /* use the i/o mapped base address */
142         
143     sc->sc_resources.io_rid[0] = 0x14;
144         
145     if (!(sc->sc_resources.io_base[0] =
146          bus_alloc_resource(dev, SYS_RES_IOPORT,
147                             &sc->sc_resources.io_rid[0],
148                             0UL, ~0UL, 1, RF_ACTIVE))) {
149         printf("iavc%d: can't allocate io region\n", unit);
150         return(ENXIO);                                       
151     }
152
153     sc->sc_iobase = rman_get_start(sc->sc_resources.io_base[0]);
154     sc->sc_io_bt = rman_get_bustag(sc->sc_resources.io_base[0]);
155     sc->sc_io_bh = rman_get_bushandle(sc->sc_resources.io_base[0]);
156
157     /* use the memory mapped DMA controller */
158         
159     sc->sc_resources.mem_rid = 0x10;
160         
161     if (!(sc->sc_resources.mem =
162          bus_alloc_resource(dev, SYS_RES_MEMORY,
163                             &sc->sc_resources.mem_rid,
164                             0UL, ~0UL, 1, RF_ACTIVE))) {
165         printf("iavc%d: can't allocate memory region\n", unit);
166         return(ENXIO);                                       
167     }
168
169     sc->sc_membase = rman_get_start(sc->sc_resources.mem);
170     sc->sc_mem_bt = rman_get_bustag(sc->sc_resources.mem);
171     sc->sc_mem_bh = rman_get_bushandle(sc->sc_resources.mem);
172
173     /* do some detection */
174
175     sc->sc_t1 = FALSE;
176     sc->sc_dma = FALSE;
177     b1dma_reset(sc);
178
179     if (did == PCI_AVMT1_DID) {
180         sc->sc_capi.card_type = CARD_TYPEC_AVM_T1_PCI;
181         sc->sc_capi.sc_nbch = 30;
182         ret = t1_detect(sc);
183         if (ret) {
184             if (ret < 6) {
185                 printf("iavc%d: no card detected?\n", sc->sc_unit);
186             } else {
187                 printf("iavc%d: black box not on\n", sc->sc_unit);
188             }
189             return(ENXIO);
190         } else {
191             sc->sc_dma = TRUE;
192             sc->sc_t1 = TRUE;
193         }
194
195     } else if (did == PCI_AVMB1_DID) {
196         sc->sc_capi.card_type = CARD_TYPEC_AVM_B1_PCI;
197         sc->sc_capi.sc_nbch = 2;
198         ret = b1dma_detect(sc);
199         if (ret) {
200             ret = b1_detect(sc);
201             if (ret) {
202                 printf("iavc%d: no card detected?\n", sc->sc_unit);
203                 return(ENXIO);
204             }
205         } else {
206             sc->sc_dma = TRUE;
207         }
208     }
209
210     if (sc->sc_dma) b1dma_reset(sc);
211 #if 0
212     if (sc->sc_t1) t1_reset(sc);
213     else b1_reset(sc);
214 #endif
215
216     /* of course we need an interrupt */
217     
218     sc->sc_resources.irq_rid = 0x00;
219         
220     if(!(sc->sc_resources.irq =
221          bus_alloc_resource(dev, SYS_RES_IRQ,
222                             &sc->sc_resources.irq_rid,
223                             0UL, ~0UL, 1, RF_SHAREABLE|RF_ACTIVE))) {
224         printf("iavc%d: can't allocate irq\n",unit);
225         return(ENXIO);
226     }
227
228     /* finalize our own context */
229
230     memset(&sc->sc_txq, 0, sizeof(struct ifqueue));
231     sc->sc_txq.ifq_maxlen = sc->sc_capi.sc_nbch * 4;
232
233     sc->sc_intr = FALSE;
234     sc->sc_state = IAVC_DOWN;
235     sc->sc_blocked = FALSE;
236
237     /* setup capi link */
238         
239     sc->sc_capi.load = iavc_load;
240     sc->sc_capi.reg_appl = iavc_register;
241     sc->sc_capi.rel_appl = iavc_release;
242     sc->sc_capi.send = iavc_send;
243     sc->sc_capi.ctx = (void*) sc;
244
245     if (capi_ll_attach(&sc->sc_capi)) {
246         printf("iavc%d: capi attach failed\n", unit);
247         return(ENXIO);
248     }
249
250     /* setup the interrupt */
251
252     error = bus_setup_intr(dev, sc->sc_resources.irq, INTR_TYPE_NET,
253                           (void(*)(void*))iavc_pci_intr,
254                           sc, &ih, NULL);
255     if (error) {
256         printf("iavc%d: irq setup failed\n", unit);
257         return(ENXIO);
258     }
259
260     /* the board is now ready to be loaded */
261
262     return(0);
263 }
264
265 /*---------------------------------------------------------------------------*
266  *      IRQ handler
267  *---------------------------------------------------------------------------*/
268
269 static void
270 iavc_pci_intr(struct iavc_softc *sc)
271 {
272     iavc_handle_intr(sc);
273 }