]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sys/i4b/capi/iavc/iavc_isa.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / sys / i4b / capi / iavc / iavc_isa.c
1 /*-
2  * Copyright (c) 2001, 2002 Hellmuth Michaelis. 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
26 #include <sys/cdefs.h>
27 __FBSDID("$FreeBSD$");
28
29 #include <sys/param.h>
30 #include <sys/kernel.h>
31 #include <sys/systm.h>
32 #include <sys/mbuf.h>
33 #include <sys/socket.h>
34 #include <net/if.h>
35
36
37 #include <machine/bus.h>
38 #include <machine/resource.h>
39 #include <sys/bus.h>
40 #include <sys/rman.h>
41 #include <vm/vm.h>
42 #include <vm/pmap.h>
43 #include <isa/isavar.h>
44
45 #include <i4b/include/i4b_debug.h>
46 #include <i4b/include/i4b_ioctl.h>
47 #include <i4b/include/i4b_trace.h>
48
49 #include <i4b/include/i4b_global.h>
50 #include <i4b/include/i4b_l3l4.h>
51 #include <i4b/include/i4b_mbuf.h>
52
53 #include <i4b/capi/capi.h>
54
55 #include <i4b/capi/iavc/iavc.h>
56
57 /* ISA driver linkage */
58
59 static void iavc_isa_intr(iavc_softc_t *sc);
60 static int iavc_isa_probe(device_t dev);
61 static int iavc_isa_attach(device_t dev);
62
63 static device_method_t iavc_isa_methods[] =
64 {
65     DEVMETHOD(device_probe,     iavc_isa_probe),
66     DEVMETHOD(device_attach,    iavc_isa_attach),
67     { 0, 0 }
68 };
69
70 static driver_t iavc_isa_driver =
71 {
72     "iavc",
73     iavc_isa_methods,
74     0
75 };
76
77 static devclass_t iavc_isa_devclass;
78
79 DRIVER_MODULE(iavc, isa, iavc_isa_driver, iavc_isa_devclass, 0, 0);
80
81 #define B1_IOLENGTH     0x20
82
83 static int b1_irq_table[] =
84 {0, 0, 0, 192, 32, 160, 96, 224, 0, 64, 80, 208, 48, 0, 0, 112};
85 /*        3    4   5    6   7       9   10  11   12        15 */
86
87 /*---------------------------------------------------------------------------*
88  *      device probe
89  *---------------------------------------------------------------------------*/
90
91 static int
92 iavc_isa_probe(device_t dev)
93 {
94         struct iavc_softc *sc;
95         int ret = ENXIO;
96         int unit = device_get_unit(dev);
97         
98         if(isa_get_vendorid(dev))       /* no PnP probes here */
99                 return ENXIO;
100
101         /* check max unit range */
102         
103         if (unit >= IAVC_MAXUNIT)
104         {
105                 printf("iavc%d: too many units\n", unit);
106                 return(ENXIO);  
107         }
108
109         sc = iavc_find_sc(unit);        /* get softc */ 
110         
111         sc->sc_unit = unit;
112
113         if (!(sc->sc_resources.io_base[0] =
114                 bus_alloc_resource(dev, SYS_RES_IOPORT,
115                         &sc->sc_resources.io_rid[0],
116                         0UL, ~0UL, B1_IOLENGTH, RF_ACTIVE)))
117         {
118                 printf("iavc%d: can't allocate io region\n", unit);
119                 return(ENXIO);                                       
120         }
121
122         sc->sc_iobase = rman_get_start(sc->sc_resources.io_base[0]);
123
124         switch(sc->sc_iobase)
125         {
126                 case 0x150:
127                 case 0x250:
128                 case 0x300:
129                 case 0x340:
130                         break;
131                 default:
132                         printf("iavc%d: ERROR, invalid i/o base addr 0x%x configured!\n", sc->sc_unit, sc->sc_iobase);
133                         bus_release_resource(dev, SYS_RES_IOPORT,
134                                         sc->sc_resources.io_rid[0],
135                                         sc->sc_resources.io_base[0]);
136                 return(ENXIO);
137         }       
138         
139         sc->sc_io_bt = rman_get_bustag(sc->sc_resources.io_base[0]);
140         sc->sc_io_bh = rman_get_bushandle(sc->sc_resources.io_base[0]);
141
142         /* setup characteristics */
143
144         sc->sc_t1 = FALSE;
145         sc->sc_dma = FALSE;
146
147         sc->sc_capi.card_type = CARD_TYPEC_AVM_B1_ISA;
148         sc->sc_capi.sc_nbch = 2;
149
150         b1_reset(sc);
151         DELAY(100);
152
153         ret = b1_detect(sc);
154
155         if(ret)
156         {
157                 printf("iavc%d: no card ? b1_detect returns %0x02x\n",
158                         sc->sc_unit, ret);
159                 return(ENXIO);
160         }
161
162         DELAY(100);
163
164         b1_reset(sc);
165         
166         DELAY(100);
167
168         if(bootverbose)
169         {
170                 printf("iavc%d: class = 0x%02x, rev = 0x%02x\n", sc->sc_unit,
171                         iavc_read_port(sc, B1_ANALYSE),
172                         iavc_read_port(sc, B1_REVISION));
173         }
174
175         device_set_desc(dev, "AVM B1 ISA");
176         return(0);
177 }
178
179 /*---------------------------------------------------------------------------*
180  *      attach
181  *---------------------------------------------------------------------------*/
182 static int
183 iavc_isa_attach(device_t dev)
184 {
185         struct iavc_softc *sc;
186         void *ih = 0;
187         int unit = device_get_unit(dev);
188         int irq;
189         
190         sc = iavc_find_sc(unit);        /* get softc */ 
191         
192         sc->sc_resources.irq_rid = 0;
193         
194         if(!(sc->sc_resources.irq =
195                 bus_alloc_resource_any(dev, SYS_RES_IRQ,
196                         &sc->sc_resources.irq_rid, RF_ACTIVE)))
197         {
198                 printf("iavc%d: can't allocate irq\n",unit);
199                 bus_release_resource(dev, SYS_RES_IOPORT,
200                                 sc->sc_resources.io_rid[0],
201                                 sc->sc_resources.io_base[0]);
202                 return(ENXIO);
203         }
204
205         irq = rman_get_start(sc->sc_resources.irq);
206
207         if(b1_irq_table[irq] == 0)
208         {
209                 printf("iavc%d: ERROR, illegal irq %d configured!\n",unit, irq);
210                 bus_release_resource(dev, SYS_RES_IOPORT,
211                                 sc->sc_resources.io_rid[0],
212                                 sc->sc_resources.io_base[0]);
213                 bus_release_resource(dev, SYS_RES_IRQ,
214                                 sc->sc_resources.irq_rid,
215                                 sc->sc_resources.irq);
216                 return(ENXIO);
217         }
218         
219         memset(&sc->sc_txq, 0, sizeof(struct ifqueue));
220         sc->sc_txq.ifq_maxlen = sc->sc_capi.sc_nbch * 4;
221
222         if(!mtx_initialized(&sc->sc_txq.ifq_mtx))
223                 mtx_init(&sc->sc_txq.ifq_mtx, "i4b_ivac_isa", NULL, MTX_DEF);
224
225         sc->sc_intr = FALSE;
226         sc->sc_state = IAVC_DOWN;
227         sc->sc_blocked = FALSE;
228
229         /* setup capi link */
230         
231         sc->sc_capi.load = iavc_load;
232         sc->sc_capi.reg_appl = iavc_register;
233         sc->sc_capi.rel_appl = iavc_release;
234         sc->sc_capi.send = iavc_send;
235         sc->sc_capi.ctx = (void*) sc;
236
237         if (capi_ll_attach(&sc->sc_capi))
238         {
239                 printf("iavc%d: capi attach failed\n", unit);
240                 return(ENXIO);
241         }
242
243         /* setup the interrupt */
244
245         if(bus_setup_intr(dev, sc->sc_resources.irq, INTR_TYPE_NET,
246                       NULL, (void(*)(void*))iavc_isa_intr,
247                       sc, &ih))
248         {
249                 printf("iavc%d: irq setup failed\n", unit);
250                 bus_release_resource(dev, SYS_RES_IOPORT,
251                                 sc->sc_resources.io_rid[0],
252                                 sc->sc_resources.io_base[0]);
253                 bus_release_resource(dev, SYS_RES_IRQ,
254                                 sc->sc_resources.irq_rid,
255                                 sc->sc_resources.irq);
256                 return(ENXIO);
257         }
258
259         /* the board is now ready to be loaded */
260
261         return(0);
262 }
263
264 /*---------------------------------------------------------------------------*
265  *      setup interrupt
266  *---------------------------------------------------------------------------*/
267 void
268 b1isa_setup_irq(struct iavc_softc *sc)
269 {
270         int irq = rman_get_start(sc->sc_resources.irq);
271         
272         if(bootverbose)
273                 printf("iavc%d: using irq %d\n", sc->sc_unit, irq);
274
275         /* enable the interrupt */
276
277         b1io_outp(sc, B1_INSTAT, 0x00);
278         b1io_outp(sc, B1_RESET, b1_irq_table[irq]);
279         b1io_outp(sc, B1_INSTAT, 0x02);
280 }       
281
282 /*---------------------------------------------------------------------------*
283  *      IRQ handler
284  *---------------------------------------------------------------------------*/
285 static void
286 iavc_isa_intr(struct iavc_softc *sc)
287 {
288         iavc_handle_intr(sc);
289 }