Get rid of bus_{disable,enable}_intr(), it wasn't generic enough for
[dragonfly.git] / sys / net / i4b / layer1 / ifpnp / i4b_ifpnp_avm.c
1 /*
2  *   Copyright (c) 1999, 2000 Udo Schweigert. 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  *
8  *   1. Redistributions of source code must retain the above copyright
9  *      notice, this list of conditions and the following disclaimer.
10  *   2. Redistributions in binary form must reproduce the above copyright
11  *      notice, this list of conditions and the following disclaimer in the
12  *      documentation and/or other materials provided with the distribution.
13  *   3. Neither the name of the author nor the names of any co-contributors
14  *      may be used to endorse or promote products derived from this software
15  *      without specific prior written permission.
16  *   4. Altered versions must be plainly marked as such, and must not be
17  *      misrepresented as being the original software and/or documentation.
18  *   
19  *   THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20  *   ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  *   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  *   ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23  *   FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  *   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  *   OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  *   HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  *   LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  *   OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  *   SUCH DAMAGE.
30  *
31  *---------------------------------------------------------------------------
32  *
33  *      i4b_ifpnp_avm.c: AVM Fritz!Card PnP hardware driver
34  *      ---------------------------------------------------
35  *
36  * $FreeBSD: src/sys/i4b/layer1/ifpnp/i4b_ifpnp_avm.c,v 1.5.2.1 2001/08/10 14:08:37 obrien Exp $
37  * $DragonFly: src/sys/net/i4b/layer1/ifpnp/i4b_ifpnp_avm.c,v 1.6 2005/05/24 20:59:05 dillon Exp $
38  *
39  *      last edit-date: [Fri Jan 12 17:05:28 2001]
40  *
41  *---------------------------------------------------------------------------*/
42
43 #include "use_ifpnp.h"
44 #include "opt_i4b.h"
45
46 #if (NIFPNP > 0)
47
48 #include <sys/param.h>
49 #include <sys/kernel.h>
50 #include <sys/systm.h>
51 #include <sys/mbuf.h>
52
53 #include <machine/bus.h>
54 #include <sys/bus.h>
55 #include <sys/rman.h>
56
57 #include <bus/isa/isavar.h>
58
59 #include <sys/socket.h>
60 #include <net/if.h>
61
62 #include <net/i4b/include/machine/i4b_debug.h>
63 #include <net/i4b/include/machine/i4b_ioctl.h>
64 #include <net/i4b/include/machine/i4b_trace.h>
65
66 #include "../../include/i4b_global.h"
67 #include "../../include/i4b_mbuf.h"
68
69 #include "../i4b_l1.h"
70 #include "../isic/i4b_isic.h"
71 #include "../isic/i4b_isac.h"
72 #include "../isic/i4b_hscx.h"
73
74 #include "i4b_ifpnp_ext.h"
75
76 /* prototypes */
77 static void avm_pnp_intr(void *);
78 static void hscx_write_reg(int, u_int, struct l1_softc *, u_int);
79 static void hscx_write_reg_val(int, u_int, u_int8_t, struct l1_softc *);
80 static u_int hscx_read_reg(int, u_int, struct l1_softc *);
81 static void hscx_read_fifo(int, void *, size_t, struct l1_softc *);
82 static void hscx_write_fifo(int, void *, size_t, struct l1_softc *);
83 static void avm_pnp_hscx_int_handler(struct l1_softc *);
84 static void avm_pnp_hscx_intr(int, u_int, u_int, struct l1_softc *);
85 static void avm_pnp_init_linktab(struct l1_softc *);
86 static void avm_pnp_bchannel_setup(int, int, int, int);
87 static void avm_pnp_bchannel_start(int, int);
88 static void avm_pnp_hscx_init(struct l1_softc *, int, int);
89 static void avm_pnp_bchannel_stat(int, int, bchan_statistics_t *);
90 static void avm_pnp_set_linktab(int, int, drvr_link_t *);
91 static isdn_link_t * avm_pnp_ret_linktab(int, int);
92 static int avm_pnp_probe(device_t);
93 static int avm_pnp_hscx_fifo(l1_bchan_state_t *, struct l1_softc *);
94 int avm_pnp_attach(device_t);
95 static void ifpnp_isac_intr(struct l1_softc *sc);
96
97 static device_method_t avm_pnp_methods[] = {
98         /* Device interface */
99         DEVMETHOD(device_probe,         avm_pnp_probe),
100         DEVMETHOD(device_attach,        avm_pnp_attach),
101         { 0, 0 }
102 };
103
104 static driver_t avm_pnp_driver = {
105         "ifpnp",
106         avm_pnp_methods,
107         sizeof(struct l1_softc)
108 };
109
110 static devclass_t avm_pnp_devclass;
111
112 DRIVER_MODULE(avm_pnp, isa, avm_pnp_driver, avm_pnp_devclass, 0, 0);
113
114 /* jump table for multiplex routines */
115
116 struct i4b_l1mux_func avm_pnp_l1mux_func = {
117         avm_pnp_ret_linktab,
118         avm_pnp_set_linktab,
119         ifpnp_mph_command_req,
120         ifpnp_ph_data_req,
121         ifpnp_ph_activate_req,
122 };
123
124 struct l1_softc *ifpnp_scp[IFPNP_MAXUNIT];
125
126 /*---------------------------------------------------------------------------*
127  *      AVM PnP Fritz!Card special registers
128  *---------------------------------------------------------------------------*/
129
130 /*
131  *      register offsets from i/o base
132  */
133 #define CLASS_OFFSET            0x00
134 #define REVISION_OFFSET         0x01
135 #define STAT0_OFFSET            0x02
136 #define STAT1_OFFSET            0x03
137 #define ADDR_REG_OFFSET         0x04
138 /*#define MODREG_OFFSET         0x06
139 #define VERREG_OFFSET           0x07*/
140
141 /* these 2 are used to select an ISAC register set */
142 #define ISAC_LO_REG_OFFSET      0x04
143 #define ISAC_HI_REG_OFFSET      0x06
144
145 /* offset higher than this goes to the HI register set */
146 #define MAX_LO_REG_OFFSET       0x2f
147
148 /* mask for the offset */
149 #define ISAC_REGSET_MASK        0x0f
150
151 /* the offset from the base to the ISAC registers */
152 #define ISAC_REG_OFFSET         0x10
153
154 /* the offset from the base to the ISAC FIFO */
155 #define ISAC_FIFO               0x02
156
157 /* not really the HSCX, but sort of */
158 #define HSCX_FIFO               0x00
159 #define HSCX_STAT               0x04
160
161 /*
162  *      AVM PnP Status Latch 0 read only bits
163  */
164 #define ASL_IRQ_ISAC            0x01    /* ISAC  interrupt, active low */
165 #define ASL_IRQ_HSCX            0x02    /* HSX   interrupt, active low */
166 #define ASL_IRQ_TIMER           0x04    /* Timer interrupt, active low */
167 #define ASL_IRQ_BCHAN           ASL_IRQ_HSCX
168 /* actually active LOW */
169 #define ASL_IRQ_Pending         (ASL_IRQ_ISAC | ASL_IRQ_HSCX | ASL_IRQ_TIMER)
170
171 /*
172  *      AVM Status Latch 0 write only bits
173  */
174 #define ASL_RESET_ALL           0x01  /* reset siemens IC's, active 1 */
175 #define ASL_TIMERDISABLE        0x02  /* active high */
176 #define ASL_TIMERRESET          0x04  /* active high */
177 #define ASL_ENABLE_INT          0x08  /* active high */
178 #define ASL_TESTBIT             0x10  /* active high */
179
180 /*
181  *      AVM Status Latch 1 write only bits
182  */
183 #define ASL1_INTSEL              0x0f  /* active high */
184 #define ASL1_ENABLE_IOM          0x80  /* active high */
185
186 /*
187  * "HSCX" mode bits
188  */
189 #define  HSCX_MODE_ITF_FLG      0x01
190 #define  HSCX_MODE_TRANS        0x02
191 #define  HSCX_MODE_CCR_7        0x04
192 #define  HSCX_MODE_CCR_16       0x08
193 #define  HSCX_MODE_TESTLOOP     0x80
194
195 /*
196  * "HSCX" status bits
197  */
198 #define  HSCX_STAT_RME          0x01
199 #define  HSCX_STAT_RDO          0x10
200 #define  HSCX_STAT_CRCVFRRAB    0x0E
201 #define  HSCX_STAT_CRCVFR       0x06
202 #define  HSCX_STAT_RML_MASK     0x3f00
203
204 /*
205  * "HSCX" interrupt bits
206  */
207 #define  HSCX_INT_XPR           0x80
208 #define  HSCX_INT_XDU           0x40
209 #define  HSCX_INT_RPR           0x20
210 #define  HSCX_INT_MASK          0xE0
211
212 /*
213  * "HSCX" command bits
214  */
215 #define  HSCX_CMD_XRS           0x80
216 #define  HSCX_CMD_XME           0x01
217 #define  HSCX_CMD_RRS           0x20
218 #define  HSCX_CMD_XML_MASK      0x3f00
219
220 /*
221  * to prevent deactivating the "HSCX" when both channels are active we
222  * define an HSCX_ACTIVE flag which is or'd into the channel's state
223  * flag in avm_pnp_bchannel_setup upon active and cleared upon deactivation.
224  * It is set high to allow room for new flags.
225  */
226 #define HSCX_AVMA1PP_ACTIVE     0x1000 
227
228 /*---------------------------------------------------------------------------*
229  *      AVM read fifo routines
230  *---------------------------------------------------------------------------*/
231
232 static void
233 avm_pnp_read_fifo(struct l1_softc *sc, int what, void *buf, size_t size)
234 {
235         bus_space_handle_t bhandle = rman_get_bushandle(sc->sc_resources.io_base[0]);
236         bus_space_tag_t btag = rman_get_bustag(sc->sc_resources.io_base[0]); 
237
238         switch (what) {
239                 case ISIC_WHAT_ISAC:
240                         bus_space_write_1(btag, bhandle,  ADDR_REG_OFFSET, ISAC_FIFO);
241                         bus_space_read_multi_1(btag, bhandle,  ISAC_REG_OFFSET, buf, size);
242                         break;
243                 case ISIC_WHAT_HSCXA:
244                         hscx_read_fifo(0, buf, size, sc);
245                         break;
246                 case ISIC_WHAT_HSCXB:
247                         hscx_read_fifo(1, buf, size, sc);
248                         break;
249         }
250 }
251
252 static void
253 hscx_read_fifo(int chan, void *buf, size_t len, struct l1_softc *sc)
254 {
255         u_int8_t *ip;
256         size_t cnt;
257         bus_space_handle_t bhandle = rman_get_bushandle(sc->sc_resources.io_base[0]);
258         bus_space_tag_t btag = rman_get_bustag(sc->sc_resources.io_base[0]); 
259
260         bus_space_write_1(btag, bhandle, ADDR_REG_OFFSET, chan);
261         ip = (u_int8_t *)buf;
262         cnt = 0;
263         while (cnt++ < len)
264         {
265                 *ip++ = bus_space_read_1(btag, bhandle, ISAC_REG_OFFSET);
266         }
267 }
268
269 /*---------------------------------------------------------------------------*
270  *      AVM write fifo routines
271  *---------------------------------------------------------------------------*/
272 static void
273 avm_pnp_write_fifo(struct l1_softc *sc, int what, void *buf, size_t size)
274 {
275         bus_space_handle_t bhandle = rman_get_bushandle(sc->sc_resources.io_base[0]);
276         bus_space_tag_t btag = rman_get_bustag(sc->sc_resources.io_base[0]); 
277
278         switch (what) {
279                 case ISIC_WHAT_ISAC:
280                         bus_space_write_1(btag, bhandle,  ADDR_REG_OFFSET, ISAC_FIFO);
281                         bus_space_write_multi_1(btag, bhandle,  ISAC_REG_OFFSET, (u_int8_t*)buf, size);
282                         break;
283                 case ISIC_WHAT_HSCXA:
284                         hscx_write_fifo(0, buf, size, sc);
285                         break;
286                 case ISIC_WHAT_HSCXB:
287                         hscx_write_fifo(1, buf, size, sc);
288                         break;
289         }
290 }
291
292 static void
293 hscx_write_fifo(int chan, void *buf, size_t len, struct l1_softc *sc)
294 {
295         u_int8_t *ip;
296         size_t cnt;
297         l1_bchan_state_t *Bchan = &sc->sc_chan[chan];
298         bus_space_handle_t bhandle = rman_get_bushandle(sc->sc_resources.io_base[0]);
299         bus_space_tag_t btag = rman_get_bustag(sc->sc_resources.io_base[0]); 
300
301         sc->avma1pp_cmd &= ~HSCX_CMD_XME;
302         sc->avma1pp_txl = 0;
303
304         if (Bchan->out_mbuf_cur == NULL)
305         {
306           if (Bchan->bprot != BPROT_NONE)
307                  sc->avma1pp_cmd |= HSCX_CMD_XME;
308         }
309         if (len != sc->sc_bfifolen)
310                 sc->avma1pp_txl = len;
311         
312         hscx_write_reg(chan, HSCX_STAT, sc, 3);
313
314         ip = (u_int8_t *)buf;
315         cnt = 0;
316         while (cnt++ < len)
317         {
318                 bus_space_write_1(btag, bhandle, ISAC_REG_OFFSET, *ip++);
319         }
320 }
321
322 /*---------------------------------------------------------------------------*
323  *      AVM write register routines
324  *---------------------------------------------------------------------------*/
325
326 static void
327 avm_pnp_write_reg(struct l1_softc *sc, int what, bus_size_t offs, u_int8_t data)
328 {
329         u_char reg_bank;
330         bus_space_handle_t bhandle = rman_get_bushandle(sc->sc_resources.io_base[0]);
331         bus_space_tag_t btag = rman_get_bustag(sc->sc_resources.io_base[0]); 
332
333         switch (what) {
334                 case ISIC_WHAT_ISAC:
335                         reg_bank = (offs > MAX_LO_REG_OFFSET) ? ISAC_HI_REG_OFFSET:ISAC_LO_REG_OFFSET;
336                         /* set the register bank */
337                         bus_space_write_1(btag, bhandle, ADDR_REG_OFFSET, reg_bank);
338                         bus_space_write_1(btag, bhandle, ISAC_REG_OFFSET + (offs & ISAC_REGSET_MASK), data);
339                         break;
340                 case ISIC_WHAT_HSCXA:
341                         hscx_write_reg_val(0, offs, data, sc);
342                         break;
343                 case ISIC_WHAT_HSCXB:
344                         hscx_write_reg_val(1, offs, data, sc);
345                         break;
346         }
347 }
348
349 static void
350 hscx_write_reg(int chan, u_int off, struct l1_softc *sc, u_int which)
351 {
352         bus_space_handle_t bhandle = rman_get_bushandle(sc->sc_resources.io_base[0]);
353         bus_space_tag_t btag = rman_get_bustag(sc->sc_resources.io_base[0]); 
354
355         /* point at the correct channel */
356         bus_space_write_1(btag, bhandle, ADDR_REG_OFFSET, chan);
357         if (which & 4) 
358                 bus_space_write_1(btag, bhandle, ISAC_REG_OFFSET + off + 2, sc->avma1pp_prot);
359         if (which & 2) 
360                 bus_space_write_1(btag, bhandle, ISAC_REG_OFFSET + off + 1, sc->avma1pp_txl);
361         if (which & 1) 
362                 bus_space_write_1(btag, bhandle, ISAC_REG_OFFSET + off, sc->avma1pp_cmd);
363 }
364
365 static void
366 hscx_write_reg_val(int chan, u_int off, u_int8_t val, struct l1_softc *sc)
367 {
368         bus_space_handle_t bhandle = rman_get_bushandle(sc->sc_resources.io_base[0]);
369         bus_space_tag_t btag = rman_get_bustag(sc->sc_resources.io_base[0]); 
370
371         /* point at the correct channel */
372         bus_space_write_1(btag, bhandle, ADDR_REG_OFFSET, chan);
373         bus_space_write_1(btag, bhandle, ISAC_REG_OFFSET + off, val);
374 }
375
376 /*---------------------------------------------------------------------------*
377  *      AVM read register routines
378  *---------------------------------------------------------------------------*/
379 static u_int8_t
380 avm_pnp_read_reg(struct l1_softc *sc, int what, bus_size_t offs)
381 {
382         u_char reg_bank;
383         bus_space_handle_t bhandle = rman_get_bushandle(sc->sc_resources.io_base[0]);
384         bus_space_tag_t btag = rman_get_bustag(sc->sc_resources.io_base[0]); 
385
386         switch (what) {
387                 case ISIC_WHAT_ISAC:
388                         reg_bank = (offs > MAX_LO_REG_OFFSET) ? ISAC_HI_REG_OFFSET:ISAC_LO_REG_OFFSET;
389                         /* set the register bank */
390                         bus_space_write_1(btag, bhandle, ADDR_REG_OFFSET, reg_bank);
391                         return(bus_space_read_1(btag, bhandle, ISAC_REG_OFFSET +
392                                 (offs & ISAC_REGSET_MASK)));
393                 case ISIC_WHAT_HSCXA:
394                         return hscx_read_reg(0, offs, sc);
395                 case ISIC_WHAT_HSCXB:
396                         return hscx_read_reg(1, offs, sc);
397         }
398         return 0;
399 }
400
401 static u_int
402 hscx_read_reg(int chan, u_int off, struct l1_softc *sc)
403 {
404         bus_space_handle_t bhandle = rman_get_bushandle(sc->sc_resources.io_base[0]);
405         bus_space_tag_t btag = rman_get_bustag(sc->sc_resources.io_base[0]); 
406
407         /* point at the correct channel */
408         bus_space_write_1(btag, bhandle, ADDR_REG_OFFSET, chan);
409         return(bus_space_read_1(btag, bhandle, ISAC_REG_OFFSET + off));
410 }
411
412
413 static struct ifpnp_ids {
414         u_long vend_id;
415         char *id_str;
416 } ifpnp_ids[] = {
417         { 0x0009cd06,           "AVM Fritz!Card PnP"            },      
418         { 0, 0 }
419 };
420
421 /*---------------------------------------------------------------------------*
422  *      avm_pnp_probe - probe for a card
423  *---------------------------------------------------------------------------*/
424 static int
425 avm_pnp_probe(dev)
426         device_t                dev;
427 {
428         struct ifpnp_ids *ids;                  /* pnp id's */
429         char *string = NULL;                            /* the name */
430         u_int32_t vend_id = isa_get_vendorid(dev);      /* vendor id */
431
432         /* search table of knowd id's */
433         
434         for(ids = ifpnp_ids; ids->vend_id != 0; ids++)
435         {
436                 if(vend_id == ids->vend_id)
437                 {
438                         string = ids->id_str;
439                         break;
440                 }
441         }
442         
443         if(string)              /* set name if we have one */
444         {
445                 device_set_desc(dev, string);   /* set description */
446                 return 0;
447         }
448         else
449         {
450                 return ENXIO;
451         }
452 }
453
454 /*---------------------------------------------------------------------------*
455  *      avm_pnp_attach - attach Fritz!Card PnP
456  *---------------------------------------------------------------------------*/
457 int
458 avm_pnp_attach(device_t dev)
459 {
460         struct l1_softc *sc;
461         u_int v;
462         int unit, error = 0;
463         int s;
464         u_int16_t vid;
465         void *ih = 0;
466         bus_space_handle_t bhandle;
467         bus_space_tag_t btag; 
468
469         s = splimp();
470
471         vid = isa_get_vendorid(dev);
472         sc = device_get_softc(dev);
473         unit = device_get_unit(dev);
474         bzero(sc, sizeof(struct l1_softc));
475
476         /* probably not really required */
477         if(unit > IFPNP_MAXUNIT) {
478                 printf("avm_pnp%d: Error, unit > IFPNP_MAXUNIT!\n", unit);
479                 splx(s);
480                 return(ENXIO);
481         }
482
483         ifpnp_scp[unit] = sc;
484
485
486         /* get io_base */
487         if(!(sc->sc_resources.io_base[0] =
488                         bus_alloc_resource(dev, SYS_RES_IOPORT,
489                                                 &sc->sc_resources.io_rid[0],
490                                                 0UL, ~0UL, 1, RF_ACTIVE ) ))
491         {
492                 printf("avm_pnp_attach: Couldn't get my io_base.\n");
493                 return ENXIO;                                       
494         }
495         if (sc->sc_resources.io_base[0] == NULL) {
496                 printf("avm_pnp%d: couldn't map IO port\n", unit);
497                 error = ENXIO;
498                 goto fail;
499         }
500
501         bhandle = rman_get_bushandle(sc->sc_resources.io_base[0]);
502         btag = rman_get_bustag(sc->sc_resources.io_base[0]);
503
504         /* will not be used for pnp devices */
505         sc->sc_port = rman_get_start(sc->sc_resources.io_base[0]);
506
507         /* get irq, release io_base if we don't get it */
508
509         if(!(sc->sc_resources.irq =
510                         bus_alloc_resource(dev, SYS_RES_IRQ,
511                                            &sc->sc_resources.irq_rid,
512                                            0UL, ~0UL, 1, RF_ACTIVE)))
513         {
514                 printf("avm_pnp%d: Could not get irq.\n",unit);
515                 error = ENXIO;                                       
516                 goto fail;
517         }
518
519         /* not needed */
520         sc->sc_irq = rman_get_start(sc->sc_resources.irq);
521         bus_setup_intr(dev, sc->sc_resources.irq, INTR_TYPE_NET,
522                        (void(*)(void*))avm_pnp_intr, sc,
523                        &ih, NULL);
524         sc->sc_unit = unit;
525
526         /* end of new-bus stuff */
527
528         ISAC_BASE = (caddr_t)ISIC_WHAT_ISAC;
529
530         HSCX_A_BASE = (caddr_t)ISIC_WHAT_HSCXA;
531         HSCX_B_BASE = (caddr_t)ISIC_WHAT_HSCXB;
532
533         /* setup access routines */
534
535         sc->clearirq = NULL;
536         sc->readreg = avm_pnp_read_reg;
537         sc->writereg = avm_pnp_write_reg;
538
539         sc->readfifo = avm_pnp_read_fifo;
540         sc->writefifo = avm_pnp_write_fifo;
541
542         /* setup card type */
543         
544         sc->sc_cardtyp = CARD_TYPEP_AVM_PNP;
545
546         /* setup IOM bus type */
547         
548         sc->sc_bustyp = BUS_TYPE_IOM2;
549
550         /* set up some other miscellaneous things */
551         sc->sc_ipac = 0;
552         sc->sc_bfifolen = HSCX_FIFO_LEN;
553
554         /* reset the card */
555         /* the Linux driver does this to clear any pending ISAC interrupts */
556         v = 0;
557         v = ISAC_READ(I_STAR);
558         v = ISAC_READ(I_MODE);
559         v = ISAC_READ(I_ADF2);
560         v = ISAC_READ(I_ISTA);
561         if (v & ISAC_ISTA_EXI)
562         {
563                  v = ISAC_READ(I_EXIR);
564         }
565         v = ISAC_READ(I_CIRR);
566         ISAC_WRITE(I_MASK, 0xff);
567         /* the Linux driver does this to clear any pending HSCX interrupts */
568         v = hscx_read_reg(0, HSCX_STAT, sc);
569         v = hscx_read_reg(1, HSCX_STAT, sc);
570
571         bus_space_write_1(btag, bhandle, STAT0_OFFSET, ASL_RESET_ALL|ASL_TIMERDISABLE);
572         DELAY(SEC_DELAY/100); /* 10 ms */
573         bus_space_write_1(btag, bhandle, STAT1_OFFSET, ASL1_ENABLE_IOM|sc->sc_irq);
574         DELAY(SEC_DELAY/100); /* 10 ms */
575         bus_space_write_1(btag, bhandle, STAT0_OFFSET, ASL_TIMERRESET|ASL_ENABLE_INT|ASL_TIMERDISABLE);
576         DELAY(SEC_DELAY/100); /* 10 ms */
577
578          printf("ifpnp%d: AVM Fritz!Card PnP Class %#x Revision %d \n", unit,
579                         bus_space_read_1(btag, bhandle, CLASS_OFFSET),
580                         bus_space_read_1(btag, bhandle, REVISION_OFFSET));
581
582          printf("ifpnp%d: ISAC %s (IOM-%c)\n", unit,
583                 "2085 Version A1/A2 or 2086/2186 Version 1.1",
584                  sc->sc_bustyp == BUS_TYPE_IOM1 ? '1' : '2');
585
586
587         /* init the ISAC */
588         ifpnp_isac_init(sc);
589
590         /* init the "HSCX" */
591         avm_pnp_bchannel_setup(sc->sc_unit, HSCX_CH_A, BPROT_NONE, 0);
592         
593         avm_pnp_bchannel_setup(sc->sc_unit, HSCX_CH_B, BPROT_NONE, 0);
594
595         /* can't use the normal B-Channel stuff */
596         avm_pnp_init_linktab(sc);
597
598         /* set trace level */
599
600         sc->sc_trace = TRACE_OFF;
601
602         sc->sc_state = ISAC_IDLE;
603
604         sc->sc_ibuf = NULL;
605         sc->sc_ib = NULL;
606         sc->sc_ilen = 0;
607
608         sc->sc_obuf = NULL;
609         sc->sc_op = NULL;
610         sc->sc_ol = 0;
611         sc->sc_freeflag = 0;
612
613         sc->sc_obuf2 = NULL;
614         sc->sc_freeflag2 = 0;
615
616         callout_init(&sc->sc_T3_timeout);
617         callout_init(&sc->sc_T4_timeout);       
618         
619         /* init higher protocol layers */
620         
621         i4b_l1_mph_status_ind(L0IFPNPUNIT(sc->sc_unit), STI_ATTACH, sc->sc_cardtyp, &avm_pnp_l1mux_func);
622
623   fail:
624         splx(s);
625         return(error);
626 }
627
628 /*
629  * this is the real interrupt routine
630  */
631 static void
632 avm_pnp_hscx_intr(int h_chan, u_int stat, u_int cnt, struct l1_softc *sc)
633 {
634         l1_bchan_state_t *chan = &sc->sc_chan[h_chan];
635         int activity = -1;
636         
637         NDBGL1(L1_H_IRQ, "%#x", stat);
638
639         if((stat & HSCX_INT_XDU) && (chan->bprot != BPROT_NONE))/* xmit data underrun */
640         {
641                 chan->stat_XDU++;                       
642                 NDBGL1(L1_H_XFRERR, "xmit data underrun");
643                 /* abort the transmission */
644                 sc->avma1pp_txl = 0;
645                 sc->avma1pp_cmd |= HSCX_CMD_XRS;
646                 hscx_write_reg(h_chan, HSCX_STAT, sc, 1);
647                 sc->avma1pp_cmd &= ~HSCX_CMD_XRS;
648                 hscx_write_reg(h_chan, HSCX_STAT, sc, 1);
649
650                 if (chan->out_mbuf_head != NULL)  /* don't continue to transmit this buffer */
651                 {
652                         i4b_Bfreembuf(chan->out_mbuf_head);
653                         chan->out_mbuf_cur = chan->out_mbuf_head = NULL;
654                 }
655         }
656
657         /*
658          * The following is based on examination of the Linux driver.
659          *
660          * The logic here is different than with a "real" HSCX; all kinds
661          * of information (interrupt/status bits) are in stat.
662          *              HSCX_INT_RPR indicates a receive interrupt
663          *                      HSCX_STAT_RDO indicates an overrun condition, abort -
664          *                      otherwise read the bytes ((stat & HSCX_STZT_RML_MASK) >> 8)
665          *                      HSCX_STAT_RME indicates end-of-frame and apparently any
666          *                      CRC/framing errors are only reported in this state.
667          *                              if ((stat & HSCX_STAT_CRCVFRRAB) != HSCX_STAT_CRCVFR)
668          *                                      CRC/framing error
669          */
670         
671         if(stat & HSCX_INT_RPR)
672         {
673                 int fifo_data_len;
674                 int error = 0;
675                 /* always have to read the FIFO, so use a scratch buffer */
676                 u_char scrbuf[HSCX_FIFO_LEN];
677
678                 if(stat & HSCX_STAT_RDO)
679                 {
680                         chan->stat_RDO++;
681                         NDBGL1(L1_H_XFRERR, "receive data overflow");
682                         error++;                                
683                 }
684
685                 /*
686                  * check whether we're receiving data for an inactive B-channel
687                  * and discard it. This appears to happen for telephony when
688                  * both B-channels are active and one is deactivated. Since
689                  * it is not really possible to deactivate the channel in that
690                  * case (the ASIC seems to deactivate _both_ channels), the
691                  * "deactivated" channel keeps receiving data which can lead
692                  * to exhaustion of mbufs and a kernel panic.
693                  *
694                  * This is a hack, but it's the only solution I can think of
695                  * without having the documentation for the ASIC.
696                  * GJ - 28 Nov 1999
697                  */
698                  if (chan->state == HSCX_IDLE)
699                  {
700                         NDBGL1(L1_H_XFRERR, "toss data from %d", h_chan);
701                         error++;
702                  }
703
704                 fifo_data_len = cnt;
705                 
706                 if(fifo_data_len == 0)
707                         fifo_data_len = sc->sc_bfifolen;
708
709                 /* ALWAYS read data from HSCX fifo */
710         
711                 HSCX_RDFIFO(h_chan, scrbuf, fifo_data_len);
712                 chan->rxcount += fifo_data_len;
713
714                 /* all error conditions checked, now decide and take action */
715                 
716                 if(error == 0)
717                 {
718                         if(chan->in_mbuf == NULL)
719                         {
720                                 if((chan->in_mbuf = i4b_Bgetmbuf(BCH_MAX_DATALEN)) == NULL)
721                                         panic("L1 avm_pnp_hscx_intr: RME, cannot allocate mbuf!\n");
722                                 chan->in_cbptr = chan->in_mbuf->m_data;
723                                 chan->in_len = 0;
724                         }
725
726                         if((chan->in_len + fifo_data_len) <= BCH_MAX_DATALEN)
727                         {
728                                 /* OK to copy the data */
729                                 bcopy(scrbuf, chan->in_cbptr, fifo_data_len);
730                                 chan->in_cbptr += fifo_data_len;
731                                 chan->in_len += fifo_data_len;
732
733                                 /* setup mbuf data length */
734                                         
735                                 chan->in_mbuf->m_len = chan->in_len;
736                                 chan->in_mbuf->m_pkthdr.len = chan->in_len;
737
738                                 if(sc->sc_trace & TRACE_B_RX)
739                                 {
740                                         i4b_trace_hdr_t hdr;
741                                         hdr.unit = L0IFPNPUNIT(sc->sc_unit);
742                                         hdr.type = (h_chan == HSCX_CH_A ? TRC_CH_B1 : TRC_CH_B2);
743                                         hdr.dir = FROM_NT;
744                                         hdr.count = ++sc->sc_trace_bcount;
745                                         MICROTIME(hdr.time);
746                                         i4b_l1_trace_ind(&hdr, chan->in_mbuf->m_len, chan->in_mbuf->m_data);
747                                 }
748
749                                 if (stat & HSCX_STAT_RME)
750                                 {
751                                   if((stat & HSCX_STAT_CRCVFRRAB) == HSCX_STAT_CRCVFR)
752                                   {
753                                          (*chan->isic_drvr_linktab->bch_rx_data_ready)(chan->isic_drvr_linktab->unit);
754                                          activity = ACT_RX;
755                                 
756                                          /* mark buffer ptr as unused */
757                                         
758                                          chan->in_mbuf = NULL;
759                                          chan->in_cbptr = NULL;
760                                          chan->in_len = 0;
761                                   }
762                                   else
763                                   {
764                                                 chan->stat_CRC++;
765                                                 NDBGL1(L1_H_XFRERR, "CRC/RAB");
766                                           if (chan->in_mbuf != NULL)
767                                           {
768                                                   i4b_Bfreembuf(chan->in_mbuf);
769                                                   chan->in_mbuf = NULL;
770                                                   chan->in_cbptr = NULL;
771                                                   chan->in_len = 0;
772                                           }
773                                   }
774                                 }
775                         } /* END enough space in mbuf */
776                         else
777                         {
778                                  if(chan->bprot == BPROT_NONE)
779                                  {
780                                           /* setup mbuf data length */
781                                 
782                                           chan->in_mbuf->m_len = chan->in_len;
783                                           chan->in_mbuf->m_pkthdr.len = chan->in_len;
784
785                                           if(sc->sc_trace & TRACE_B_RX)
786                                           {
787                                                         i4b_trace_hdr_t hdr;
788                                                         hdr.unit = L0IFPNPUNIT(sc->sc_unit);
789                                                         hdr.type = (h_chan == HSCX_CH_A ? TRC_CH_B1 : TRC_CH_B2);
790                                                         hdr.dir = FROM_NT;
791                                                         hdr.count = ++sc->sc_trace_bcount;
792                                                         MICROTIME(hdr.time);
793                                                         i4b_l1_trace_ind(&hdr, chan->in_mbuf->m_len, chan->in_mbuf->m_data);
794                                                 }
795
796                                           if(!(i4b_l1_bchan_tel_silence(chan->in_mbuf->m_data, chan->in_mbuf->m_len)))
797                                                  activity = ACT_RX;
798                                 
799                                           /* move rx'd data to rx queue */
800 #if defined (__FreeBSD__) && __FreeBSD__ > 4
801                                           (void) IF_HANDOFF(&chan->rx_queue, chan->in_mbuf, NULL);
802 #else
803                                           if(!(IF_QFULL(&chan->rx_queue)))
804                                           {
805                                                 IF_ENQUEUE(&chan->rx_queue, chan->in_mbuf);
806                                           }
807                                           else
808                                           {
809                                                 i4b_Bfreembuf(chan->in_mbuf);
810                                           }
811 #endif
812                                           /* signal upper layer that data are available */
813                                           (*chan->isic_drvr_linktab->bch_rx_data_ready)(chan->isic_drvr_linktab->unit);
814
815                                           /* alloc new buffer */
816                                 
817                                           if((chan->in_mbuf = i4b_Bgetmbuf(BCH_MAX_DATALEN)) == NULL)
818                                                  panic("L1 avm_pnp_hscx_intr: RPF, cannot allocate new mbuf!\n");
819         
820                                           /* setup new data ptr */
821                                 
822                                           chan->in_cbptr = chan->in_mbuf->m_data;
823         
824                                           /* OK to copy the data */
825                                           bcopy(scrbuf, chan->in_cbptr, fifo_data_len);
826
827                                           chan->in_cbptr += fifo_data_len;
828                                           chan->in_len = fifo_data_len;
829
830                                           chan->rxcount += fifo_data_len;
831                                         }
832                                  else
833                                         {
834                                           NDBGL1(L1_H_XFRERR, "RAWHDLC rx buffer overflow in RPF, in_len=%d", chan->in_len);
835                                           chan->in_cbptr = chan->in_mbuf->m_data;
836                                           chan->in_len = 0;
837                                         }
838                           }
839                 } /* if(error == 0) */
840                 else
841                 {
842                         /* land here for RDO */
843                         if (chan->in_mbuf != NULL)
844                         {
845                                 i4b_Bfreembuf(chan->in_mbuf);
846                                 chan->in_mbuf = NULL;
847                                 chan->in_cbptr = NULL;
848                                 chan->in_len = 0;
849                         }
850                         sc->avma1pp_txl = 0;
851                         sc->avma1pp_cmd |= HSCX_CMD_RRS;
852                         hscx_write_reg(h_chan, HSCX_STAT, sc, 1);
853                         sc->avma1pp_cmd &= ~HSCX_CMD_RRS;
854                         hscx_write_reg(h_chan, HSCX_STAT, sc, 1);
855                 }
856         }
857
858
859         /* transmit fifo empty, new data can be written to fifo */
860         
861         if(stat & HSCX_INT_XPR)
862         {
863                 /*
864                  * for a description what is going on here, please have
865                  * a look at isic_bchannel_start() in i4b_bchan.c !
866                  */
867
868                 NDBGL1(L1_H_IRQ, "unit %d, chan %d - XPR, Tx Fifo Empty!", sc->sc_unit, h_chan);
869
870                 if(chan->out_mbuf_cur == NULL)  /* last frame is transmitted */
871                 {
872                         IF_DEQUEUE(&chan->tx_queue, chan->out_mbuf_head);
873
874                         if(chan->out_mbuf_head == NULL)
875                         {
876                                 chan->state &= ~HSCX_TX_ACTIVE;
877                                 (*chan->isic_drvr_linktab->bch_tx_queue_empty)(chan->isic_drvr_linktab->unit);
878                         }
879                         else
880                         {
881                                 chan->state |= HSCX_TX_ACTIVE;
882                                 chan->out_mbuf_cur = chan->out_mbuf_head;
883                                 chan->out_mbuf_cur_ptr = chan->out_mbuf_cur->m_data;
884                                 chan->out_mbuf_cur_len = chan->out_mbuf_cur->m_len;
885
886                                 if(sc->sc_trace & TRACE_B_TX)
887                                 {
888                                         i4b_trace_hdr_t hdr;
889                                         hdr.unit = L0IFPNPUNIT(sc->sc_unit);
890                                         hdr.type = (h_chan == HSCX_CH_A ? TRC_CH_B1 : TRC_CH_B2);
891                                         hdr.dir = FROM_TE;
892                                         hdr.count = ++sc->sc_trace_bcount;
893                                         MICROTIME(hdr.time);
894                                         i4b_l1_trace_ind(&hdr, chan->out_mbuf_cur->m_len, chan->out_mbuf_cur->m_data);
895                                 }
896                                 
897                                 if(chan->bprot == BPROT_NONE)
898                                 {
899                                         if(!(i4b_l1_bchan_tel_silence(chan->out_mbuf_cur->m_data, chan->out_mbuf_cur->m_len)))
900                                                 activity = ACT_TX;
901                                 }
902                                 else
903                                 {
904                                         activity = ACT_TX;
905                                 }
906                         }
907                 }
908                         
909                 avm_pnp_hscx_fifo(chan, sc);
910         }
911
912         /* call timeout handling routine */
913         
914         if(activity == ACT_RX || activity == ACT_TX)
915                 (*chan->isic_drvr_linktab->bch_activity)(chan->isic_drvr_linktab->unit, activity);
916 }
917
918 /*
919  * this is the main routine which checks each channel and then calls
920  * the real interrupt routine as appropriate
921  */
922 static void
923 avm_pnp_hscx_int_handler(struct l1_softc *sc)
924 {
925         u_char stat = 0;
926         u_char cnt = 0;
927
928         stat = hscx_read_reg(0, HSCX_STAT, sc);
929         if (stat & HSCX_INT_RPR)
930           cnt = hscx_read_reg(0, HSCX_STAT+1, sc);
931         if (stat & HSCX_INT_MASK)
932           avm_pnp_hscx_intr(0, stat, cnt, sc);
933
934         cnt = 0;
935         stat = hscx_read_reg(1, HSCX_STAT, sc);
936         if (stat & HSCX_INT_RPR)
937           cnt = hscx_read_reg(1, HSCX_STAT+1, sc);
938         if (stat & HSCX_INT_MASK)
939           avm_pnp_hscx_intr(1, stat, cnt, sc);
940 }
941
942 static void
943 avm_pnp_intr(void *xsc)
944 {
945         u_char stat;
946         struct l1_softc *sc;
947         bus_space_handle_t bhandle;
948         bus_space_tag_t btag; 
949
950         sc = xsc;
951         bhandle = rman_get_bushandle(sc->sc_resources.io_base[0]);
952         btag = rman_get_bustag(sc->sc_resources.io_base[0]); 
953
954         stat = bus_space_read_1(btag, bhandle, STAT0_OFFSET);
955         NDBGL1(L1_H_IRQ, "stat %x", stat);
956         /* was there an interrupt from this card ? */
957         if ((stat & ASL_IRQ_Pending) == ASL_IRQ_Pending)
958                 return; /* no */
959         /* interrupts are low active */
960         if (!(stat & ASL_IRQ_TIMER))
961           NDBGL1(L1_H_IRQ, "timer interrupt ???");
962         if (!(stat & ASL_IRQ_HSCX))
963         {
964           NDBGL1(L1_H_IRQ, "HSCX");
965                 avm_pnp_hscx_int_handler(sc);
966         }
967         if (!(stat & ASL_IRQ_ISAC))
968         {
969           NDBGL1(L1_H_IRQ, "ISAC");
970                 ifpnp_isac_intr(sc);
971         }
972 }
973
974 static void
975 avm_pnp_hscx_init(struct l1_softc *sc, int h_chan, int activate)
976 {
977         l1_bchan_state_t *chan = &sc->sc_chan[h_chan];
978
979         NDBGL1(L1_BCHAN, "unit=%d, channel=%d, %s",
980                 sc->sc_unit, h_chan, activate ? "activate" : "deactivate");
981
982         if (activate == 0)
983         {
984                 /* only deactivate if both channels are idle */
985                 if (sc->sc_chan[HSCX_CH_A].state != HSCX_IDLE ||
986                         sc->sc_chan[HSCX_CH_B].state != HSCX_IDLE)
987                 {
988                         return;
989                 }
990                 sc->avma1pp_cmd = HSCX_CMD_XRS|HSCX_CMD_RRS;
991                 sc->avma1pp_prot = HSCX_MODE_TRANS;
992                 hscx_write_reg(h_chan, HSCX_STAT, sc, 5);
993                 return;
994         }
995         if(chan->bprot == BPROT_RHDLC)
996         {
997                   NDBGL1(L1_BCHAN, "BPROT_RHDLC");
998
999                 /* HDLC Frames, transparent mode 0 */
1000                 sc->avma1pp_cmd = HSCX_CMD_XRS|HSCX_CMD_RRS;
1001                 sc->avma1pp_prot = HSCX_MODE_ITF_FLG;
1002                 hscx_write_reg(h_chan, HSCX_STAT, sc, 5);
1003                 sc->avma1pp_cmd = HSCX_CMD_XRS;
1004                 hscx_write_reg(h_chan, HSCX_STAT, sc, 1);
1005                 sc->avma1pp_cmd = 0;
1006         }
1007         else
1008         {
1009                   NDBGL1(L1_BCHAN, "BPROT_NONE??");
1010
1011                 /* Raw Telephony, extended transparent mode 1 */
1012                 sc->avma1pp_cmd = HSCX_CMD_XRS|HSCX_CMD_RRS;
1013                 sc->avma1pp_prot = HSCX_MODE_TRANS;
1014                 hscx_write_reg(h_chan, HSCX_STAT, sc, 5);
1015                 sc->avma1pp_cmd = HSCX_CMD_XRS;
1016                 hscx_write_reg(h_chan, HSCX_STAT, sc, 1);
1017                 sc->avma1pp_cmd = 0;
1018         }
1019 }
1020
1021 static void
1022 avm_pnp_bchannel_setup(int unit, int h_chan, int bprot, int activate)
1023 {
1024         struct l1_softc *sc = ifpnp_scp[unit];
1025         l1_bchan_state_t *chan = &sc->sc_chan[h_chan];
1026
1027         int s = SPLI4B();
1028         
1029         if(activate == 0)
1030         {
1031                 /* deactivation */
1032                 chan->state = HSCX_IDLE;
1033                 avm_pnp_hscx_init(sc, h_chan, activate);
1034         }
1035                 
1036         NDBGL1(L1_BCHAN, "unit=%d, channel=%d, %s",
1037                 sc->sc_unit, h_chan, activate ? "activate" : "deactivate");
1038
1039         /* general part */
1040
1041         chan->unit = sc->sc_unit;       /* unit number */
1042         chan->channel = h_chan;         /* B channel */
1043         chan->bprot = bprot;            /* B channel protocol */
1044         chan->state = HSCX_IDLE;        /* B channel state */
1045
1046         /* receiver part */
1047
1048         chan->rx_queue.ifq_maxlen = IFQ_MAXLEN;
1049
1050 #if defined (__FreeBSD__) && __FreeBSD__ > 4
1051         mtx_init(&chan->rx_queue.ifq_mtx, "i4b_avm_pnp_rx", MTX_DEF);
1052 #endif
1053
1054         i4b_Bcleanifq(&chan->rx_queue); /* clean rx queue */
1055
1056         chan->rxcount = 0;              /* reset rx counter */
1057         
1058         i4b_Bfreembuf(chan->in_mbuf);   /* clean rx mbuf */
1059
1060         chan->in_mbuf = NULL;           /* reset mbuf ptr */
1061         chan->in_cbptr = NULL;          /* reset mbuf curr ptr */
1062         chan->in_len = 0;               /* reset mbuf data len */
1063         
1064         /* transmitter part */
1065
1066         chan->tx_queue.ifq_maxlen = IFQ_MAXLEN;
1067
1068 #if defined (__FreeBSD__) && __FreeBSD__ > 4
1069         mtx_init(&chan->tx_queue.ifq_mtx, "i4b_avm_pnp_tx", MTX_DEF);
1070 #endif
1071         i4b_Bcleanifq(&chan->tx_queue); /* clean tx queue */
1072
1073         chan->txcount = 0;              /* reset tx counter */
1074         
1075         i4b_Bfreembuf(chan->out_mbuf_head);     /* clean tx mbuf */
1076
1077         chan->out_mbuf_head = NULL;     /* reset head mbuf ptr */
1078         chan->out_mbuf_cur = NULL;      /* reset current mbuf ptr */    
1079         chan->out_mbuf_cur_ptr = NULL;  /* reset current mbuf data ptr */
1080         chan->out_mbuf_cur_len = 0;     /* reset current mbuf data cnt */
1081         
1082         if(activate != 0)
1083         {
1084                 /* activation */
1085                 avm_pnp_hscx_init(sc, h_chan, activate);
1086                 chan->state |= HSCX_AVMA1PP_ACTIVE;
1087         }
1088
1089         splx(s);
1090 }
1091
1092 static void
1093 avm_pnp_bchannel_start(int unit, int h_chan)
1094 {
1095         struct l1_softc *sc = ifpnp_scp[unit];
1096         l1_bchan_state_t *chan = &sc->sc_chan[h_chan];
1097         int s;
1098         int activity = -1;
1099
1100         s = SPLI4B();                           /* enter critical section */
1101         if(chan->state & HSCX_TX_ACTIVE)        /* already running ? */
1102         {
1103                 splx(s);
1104                 return;                         /* yes, leave */
1105         }
1106
1107         /* get next mbuf from queue */
1108         
1109         IF_DEQUEUE(&chan->tx_queue, chan->out_mbuf_head);
1110         
1111         if(chan->out_mbuf_head == NULL)         /* queue empty ? */
1112         {
1113                 splx(s);                        /* leave critical section */
1114                 return;                         /* yes, exit */
1115         }
1116
1117         /* init current mbuf values */
1118         
1119         chan->out_mbuf_cur = chan->out_mbuf_head;
1120         chan->out_mbuf_cur_len = chan->out_mbuf_cur->m_len;
1121         chan->out_mbuf_cur_ptr = chan->out_mbuf_cur->m_data;    
1122         
1123         /* activity indicator for timeout handling */
1124
1125         if(chan->bprot == BPROT_NONE)
1126         {
1127                 if(!(i4b_l1_bchan_tel_silence(chan->out_mbuf_cur->m_data, chan->out_mbuf_cur->m_len)))
1128                         activity = ACT_TX;
1129         }
1130         else
1131         {
1132                 activity = ACT_TX;
1133         }
1134
1135         chan->state |= HSCX_TX_ACTIVE;          /* we start transmitting */
1136         
1137         if(sc->sc_trace & TRACE_B_TX)   /* if trace, send mbuf to trace dev */
1138         {
1139                 i4b_trace_hdr_t hdr;
1140                 hdr.unit = L0IFPNPUNIT(sc->sc_unit);
1141                 hdr.type = (h_chan == HSCX_CH_A ? TRC_CH_B1 : TRC_CH_B2);
1142                 hdr.dir = FROM_TE;
1143                 hdr.count = ++sc->sc_trace_bcount;
1144                 MICROTIME(hdr.time);
1145                 i4b_l1_trace_ind(&hdr, chan->out_mbuf_cur->m_len, chan->out_mbuf_cur->m_data);
1146         }                       
1147
1148         avm_pnp_hscx_fifo(chan, sc);
1149
1150         /* call timeout handling routine */
1151         
1152         if(activity == ACT_RX || activity == ACT_TX)
1153                 (*chan->isic_drvr_linktab->bch_activity)(chan->isic_drvr_linktab->unit, activity);
1154
1155         splx(s);        
1156 }
1157
1158 /*---------------------------------------------------------------------------*
1159  *      return the address of isic drivers linktab      
1160  *---------------------------------------------------------------------------*/
1161 static isdn_link_t *
1162 avm_pnp_ret_linktab(int unit, int channel)
1163 {
1164         struct l1_softc *sc = ifpnp_scp[unit];
1165         l1_bchan_state_t *chan = &sc->sc_chan[channel];
1166
1167         return(&chan->isic_isdn_linktab);
1168 }
1169  
1170 /*---------------------------------------------------------------------------*
1171  *      set the driver linktab in the b channel softc
1172  *---------------------------------------------------------------------------*/
1173 static void
1174 avm_pnp_set_linktab(int unit, int channel, drvr_link_t *dlt)
1175 {
1176         struct l1_softc *sc = ifpnp_scp[unit];
1177         l1_bchan_state_t *chan = &sc->sc_chan[channel];
1178
1179         chan->isic_drvr_linktab = dlt;
1180 }
1181
1182
1183 /*---------------------------------------------------------------------------*
1184  *      initialize our local linktab
1185  *---------------------------------------------------------------------------*/
1186 static void
1187 avm_pnp_init_linktab(struct l1_softc *sc)
1188 {
1189         l1_bchan_state_t *chan = &sc->sc_chan[HSCX_CH_A];
1190         isdn_link_t *lt = &chan->isic_isdn_linktab;
1191
1192         /* make sure the hardware driver is known to layer 4 */
1193         /* avoid overwriting if already set */
1194         if (ctrl_types[CTRL_PASSIVE].set_linktab == NULL)
1195         {
1196                 ctrl_types[CTRL_PASSIVE].set_linktab = avm_pnp_set_linktab;
1197                 ctrl_types[CTRL_PASSIVE].get_linktab = avm_pnp_ret_linktab;
1198         }
1199
1200         /* local setup */
1201         lt->unit = sc->sc_unit;
1202         lt->channel = HSCX_CH_A;
1203         lt->bch_config = avm_pnp_bchannel_setup;
1204         lt->bch_tx_start = avm_pnp_bchannel_start;
1205         lt->bch_stat = avm_pnp_bchannel_stat;
1206         lt->tx_queue = &chan->tx_queue;
1207
1208         /* used by non-HDLC data transfers, i.e. telephony drivers */
1209         lt->rx_queue = &chan->rx_queue;
1210
1211         /* used by HDLC data transfers, i.e. ipr and isp drivers */     
1212         lt->rx_mbuf = &chan->in_mbuf;   
1213                                                 
1214         chan = &sc->sc_chan[HSCX_CH_B];
1215         lt = &chan->isic_isdn_linktab;
1216
1217         lt->unit = sc->sc_unit;
1218         lt->channel = HSCX_CH_B;
1219         lt->bch_config = avm_pnp_bchannel_setup;
1220         lt->bch_tx_start = avm_pnp_bchannel_start;
1221         lt->bch_stat = avm_pnp_bchannel_stat;
1222         lt->tx_queue = &chan->tx_queue;
1223
1224         /* used by non-HDLC data transfers, i.e. telephony drivers */
1225         lt->rx_queue = &chan->rx_queue;
1226
1227         /* used by HDLC data transfers, i.e. ipr and isp drivers */     
1228         lt->rx_mbuf = &chan->in_mbuf;   
1229 }
1230
1231 /*
1232  * use this instead of isic_bchannel_stat in i4b_bchan.c because it's static
1233  */
1234 static void
1235 avm_pnp_bchannel_stat(int unit, int h_chan, bchan_statistics_t *bsp)
1236 {
1237         struct l1_softc *sc = ifpnp_scp[unit];
1238         l1_bchan_state_t *chan = &sc->sc_chan[h_chan];
1239         int s;
1240
1241         s = SPLI4B();
1242         
1243         bsp->outbytes = chan->txcount;
1244         bsp->inbytes = chan->rxcount;
1245
1246         chan->txcount = 0;
1247         chan->rxcount = 0;
1248
1249         splx(s);
1250 }
1251
1252 /*---------------------------------------------------------------------------*
1253  *      fill HSCX fifo with data from the current mbuf
1254  *      Put this here until it can go into i4b_hscx.c
1255  *---------------------------------------------------------------------------*/
1256 static int
1257 avm_pnp_hscx_fifo(l1_bchan_state_t *chan, struct l1_softc *sc)
1258 {
1259         int len;
1260         int nextlen;
1261         int i;
1262         int cmd = 0;
1263         /* using a scratch buffer simplifies writing to the FIFO */
1264         u_char scrbuf[HSCX_FIFO_LEN];
1265
1266         len = 0;
1267
1268         /*
1269          * fill the HSCX tx fifo with data from the current mbuf. if
1270          * current mbuf holds less data than HSCX fifo length, try to
1271          * get the next mbuf from (a possible) mbuf chain. if there is
1272          * not enough data in a single mbuf or in a chain, then this
1273          * is the last mbuf and we tell the HSCX that it has to send
1274          * CRC and closing flag
1275          */
1276          
1277         while(chan->out_mbuf_cur && len != sc->sc_bfifolen)
1278         {
1279                 nextlen = min(chan->out_mbuf_cur_len, sc->sc_bfifolen - len);
1280
1281 #ifdef NOTDEF
1282                 printf("i:mh=%p, mc=%p, mcp=%p, mcl=%d l=%d nl=%d # ",
1283                         chan->out_mbuf_head,
1284                         chan->out_mbuf_cur,                     
1285                         chan->out_mbuf_cur_ptr,
1286                         chan->out_mbuf_cur_len,
1287                         len,
1288                         nextlen);
1289 #endif
1290
1291                 cmd |= HSCX_CMDR_XTF;
1292                 /* collect the data in the scratch buffer */
1293                 for (i = 0; i < nextlen; i++)
1294                         scrbuf[i + len] = chan->out_mbuf_cur_ptr[i];
1295
1296                 len += nextlen;
1297                 chan->txcount += nextlen;
1298         
1299                 chan->out_mbuf_cur_ptr += nextlen;
1300                 chan->out_mbuf_cur_len -= nextlen;
1301                         
1302                 if(chan->out_mbuf_cur_len == 0) 
1303                 {
1304                         if((chan->out_mbuf_cur = chan->out_mbuf_cur->m_next) != NULL)
1305                         {
1306                                 chan->out_mbuf_cur_ptr = chan->out_mbuf_cur->m_data;
1307                                 chan->out_mbuf_cur_len = chan->out_mbuf_cur->m_len;
1308         
1309                                 if(sc->sc_trace & TRACE_B_TX)
1310                                 {
1311                                         i4b_trace_hdr_t hdr;
1312                                         hdr.unit = L0IFPNPUNIT(sc->sc_unit);
1313                                         hdr.type = (chan->channel == HSCX_CH_A ? TRC_CH_B1 : TRC_CH_B2);
1314                                         hdr.dir = FROM_TE;
1315                                         hdr.count = ++sc->sc_trace_bcount;
1316                                         MICROTIME(hdr.time);
1317                                         i4b_l1_trace_ind(&hdr, chan->out_mbuf_cur->m_len, chan->out_mbuf_cur->m_data);
1318                                 }
1319                         }
1320                         else
1321                         {
1322                                 if (chan->bprot != BPROT_NONE)
1323                                         cmd |= HSCX_CMDR_XME;
1324                                 i4b_Bfreembuf(chan->out_mbuf_head);
1325                                 chan->out_mbuf_head = NULL;
1326                         }
1327                 }
1328         }
1329         /* write what we have from the scratch buf to the HSCX fifo */
1330         if (len != 0)
1331                 HSCX_WRFIFO(chan->channel, scrbuf, len);
1332         return(cmd);
1333 }
1334
1335 /*---------------------------------------------------------------------------*
1336  *      ifpnp - ISAC interrupt routine
1337  *---------------------------------------------------------------------------*/
1338 static void
1339 ifpnp_isac_intr(struct l1_softc *sc)
1340 {
1341         u_char isac_irq_stat;
1342
1343         for(;;)
1344         {
1345                 /* get isac irq status */
1346                 isac_irq_stat = ISAC_READ(I_ISTA);
1347
1348                 if(isac_irq_stat)
1349                         ifpnp_isac_irq(sc, isac_irq_stat); /* isac handler */
1350                 else
1351                         break;
1352         }
1353
1354         ISAC_WRITE(I_MASK, 0xff);
1355
1356         DELAY(100);
1357
1358         ISAC_WRITE(I_MASK, ISAC_IMASK);
1359 }
1360
1361 /*---------------------------------------------------------------------------*
1362  *      ifpnp_recover - try to recover from irq lockup
1363  *---------------------------------------------------------------------------*/
1364 void
1365 ifpnp_recover(struct l1_softc *sc)
1366 {
1367         u_char byte;
1368         
1369         /* get isac irq status */
1370
1371         byte = ISAC_READ(I_ISTA);
1372
1373         NDBGL1(L1_ERROR, "  ISAC: ISTA = 0x%x", byte);
1374         
1375         if(byte & ISAC_ISTA_EXI)
1376                 NDBGL1(L1_ERROR, "  ISAC: EXIR = 0x%x", (u_char)ISAC_READ(I_EXIR));
1377
1378         if(byte & ISAC_ISTA_CISQ)
1379         {
1380                 byte = ISAC_READ(I_CIRR);
1381         
1382                 NDBGL1(L1_ERROR, "  ISAC: CISQ = 0x%x", byte);
1383                 
1384                 if(byte & ISAC_CIRR_SQC)
1385                         NDBGL1(L1_ERROR, "  ISAC: SQRR = 0x%x", (u_char)ISAC_READ(I_SQRR));
1386         }
1387
1388         NDBGL1(L1_ERROR, "  ISAC: IMASK = 0x%x", ISAC_IMASK);
1389
1390         ISAC_WRITE(I_MASK, 0xff);       
1391         DELAY(100);
1392         ISAC_WRITE(I_MASK, ISAC_IMASK);
1393 }
1394
1395 #endif /* NIFPNP > 0 */