1 /* $Id: hfc_sx.c,v 1.12.2.5 2004/02/11 13:21:33 keil Exp $
3 * level driver for Cologne Chip Designs hfc-s+/sp based cards
5 * Author Werner Cornelius
6 * based on existing driver for CCD HFC PCI cards
7 * Copyright by Werner Cornelius <werner@isdn4linux.de>
9 * This software may be used and distributed according to the terms
10 * of the GNU General Public License, incorporated herein by reference.
14 #include <linux/init.h>
18 #include <linux/interrupt.h>
19 #include <linux/isapnp.h>
20 #include <linux/slab.h>
22 static const char *hfcsx_revision
= "$Revision: 1.12.2.5 $";
24 /***************************************/
25 /* IRQ-table for CCDs demo board */
26 /* IRQs 6,5,10,11,12,15 are supported */
27 /***************************************/
29 /* Teles 16.3c Vendor Id TAG2620, Version 1.0, Vendor version 2.1
31 * Thanks to Uwe Wisniewski
45 static u_char ccd_sp_irqtab
[16] = {
46 0,0,0,0,0,2,1,0,0,0,3,4,5,0,0,6
48 #else /* Teles 16.3c */
49 static u_char ccd_sp_irqtab
[16] = {
50 0,0,0,7,0,1,0,0,0,2,3,4,5,0,0,6
53 #define NT_T1_COUNT 20 /* number of 3.125ms interrupts for G2 timeout */
55 #define byteout(addr,val) outb(val,addr)
56 #define bytein(addr) inb(addr)
58 /******************************/
59 /* In/Out access to registers */
60 /******************************/
62 Write_hfc(struct IsdnCardState
*cs
, u_char regnum
, u_char val
)
64 byteout(cs
->hw
.hfcsx
.base
+1, regnum
);
65 byteout(cs
->hw
.hfcsx
.base
, val
);
69 Read_hfc(struct IsdnCardState
*cs
, u_char regnum
)
73 byteout(cs
->hw
.hfcsx
.base
+1, regnum
);
74 ret
= bytein(cs
->hw
.hfcsx
.base
);
79 /**************************************************/
80 /* select a fifo and remember which one for reuse */
81 /**************************************************/
83 fifo_select(struct IsdnCardState
*cs
, u_char fifo
)
85 if (fifo
== cs
->hw
.hfcsx
.last_fifo
)
86 return; /* still valid */
88 byteout(cs
->hw
.hfcsx
.base
+1, HFCSX_FIF_SEL
);
89 byteout(cs
->hw
.hfcsx
.base
, fifo
);
90 while (bytein(cs
->hw
.hfcsx
.base
+1) & 1); /* wait for busy */
92 byteout(cs
->hw
.hfcsx
.base
, fifo
);
93 while (bytein(cs
->hw
.hfcsx
.base
+1) & 1); /* wait for busy */
96 /******************************************/
97 /* reset the specified fifo to defaults. */
98 /* If its a send fifo init needed markers */
99 /******************************************/
101 reset_fifo(struct IsdnCardState
*cs
, u_char fifo
)
103 fifo_select(cs
, fifo
); /* first select the fifo */
104 byteout(cs
->hw
.hfcsx
.base
+1, HFCSX_CIRM
);
105 byteout(cs
->hw
.hfcsx
.base
, cs
->hw
.hfcsx
.cirm
| 0x80); /* reset cmd */
107 while (bytein(cs
->hw
.hfcsx
.base
+1) & 1); /* wait for busy */
111 /*************************************************************/
112 /* write_fifo writes the skb contents to the desired fifo */
113 /* if no space is available or an error occurs 0 is returned */
114 /* the skb is not released in any way. */
115 /*************************************************************/
117 write_fifo(struct IsdnCardState
*cs
, struct sk_buff
*skb
, u_char fifo
, int trans_max
)
120 int fifo_size
, count
, z1
, z2
;
121 u_char f_msk
, f1
, f2
, *src
;
123 if (skb
->len
<= 0) return(0);
124 if (fifo
& 1) return(0); /* no write fifo */
126 fifo_select(cs
, fifo
);
128 fifo_size
= D_FIFO_SIZE
; /* D-channel */
129 f_msk
= MAX_D_FRAMES
;
130 if (trans_max
) return(0); /* only HDLC */
133 fifo_size
= cs
->hw
.hfcsx
.b_fifo_size
; /* B-channel */
134 f_msk
= MAX_B_FRAMES
;
137 z1
= Read_hfc(cs
, HFCSX_FIF_Z1H
);
138 z1
= ((z1
<< 8) | Read_hfc(cs
, HFCSX_FIF_Z1L
));
140 /* Check for transparent mode */
142 z2
= Read_hfc(cs
, HFCSX_FIF_Z2H
);
143 z2
= ((z2
<< 8) | Read_hfc(cs
, HFCSX_FIF_Z2L
));
146 count
+= fifo_size
; /* free bytes */
147 if (count
< skb
->len
+1) return(0); /* no room */
148 count
= fifo_size
- count
; /* bytes still not send */
149 if (count
> 2 * trans_max
) return(0); /* delay to long */
153 Write_hfc(cs
, HFCSX_FIF_DWR
, *src
++);
154 return(1); /* success */
157 msp
= ((struct hfcsx_extra
*)(cs
->hw
.hfcsx
.extra
))->marker
;
158 msp
+= (((fifo
>> 1) & 3) * (MAX_B_FRAMES
+1));
159 f1
= Read_hfc(cs
, HFCSX_FIF_F1
) & f_msk
;
160 f2
= Read_hfc(cs
, HFCSX_FIF_F2
) & f_msk
;
162 count
= f1
- f2
; /* frame count actually buffered */
164 count
+= (f_msk
+ 1); /* if wrap around */
165 if (count
> f_msk
-1) {
166 if (cs
->debug
& L1_DEB_ISAC_FIFO
)
167 debugl1(cs
, "hfcsx_write_fifo %d more as %d frames",fifo
,f_msk
-1);
171 *(msp
+ f1
) = z1
; /* remember marker */
173 if (cs
->debug
& L1_DEB_ISAC_FIFO
)
174 debugl1(cs
, "hfcsx_write_fifo %d f1(%x) f2(%x) z1(f1)(%x)",
176 /* now determine free bytes in FIFO buffer */
177 count
= *(msp
+ f2
) - z1
;
179 count
+= fifo_size
; /* count now contains available bytes */
181 if (cs
->debug
& L1_DEB_ISAC_FIFO
)
182 debugl1(cs
, "hfcsx_write_fifo %d count(%ld/%d)",
183 fifo
, skb
->len
, count
);
184 if (count
< skb
->len
) {
185 if (cs
->debug
& L1_DEB_ISAC_FIFO
)
186 debugl1(cs
, "hfcsx_write_fifo %d no fifo mem", fifo
);
190 count
= skb
->len
; /* get frame len */
191 src
= skb
->data
; /* source pointer */
193 Write_hfc(cs
, HFCSX_FIF_DWR
, *src
++);
195 Read_hfc(cs
, HFCSX_FIF_INCF1
); /* increment F1 */
197 while (bytein(cs
->hw
.hfcsx
.base
+1) & 1); /* wait for busy */
201 /***************************************************************/
202 /* read_fifo reads data to an skb from the desired fifo */
203 /* if no data is available or an error occurs NULL is returned */
204 /* the skb is not released in any way. */
205 /***************************************************************/
206 static struct sk_buff
*
207 read_fifo(struct IsdnCardState
*cs
, u_char fifo
, int trans_max
)
208 { int fifo_size
, count
, z1
, z2
;
209 u_char f_msk
, f1
, f2
, *dst
;
212 if (!(fifo
& 1)) return(NULL
); /* no read fifo */
213 fifo_select(cs
, fifo
);
215 fifo_size
= D_FIFO_SIZE
; /* D-channel */
216 f_msk
= MAX_D_FRAMES
;
217 if (trans_max
) return(NULL
); /* only hdlc */
220 fifo_size
= cs
->hw
.hfcsx
.b_fifo_size
; /* B-channel */
221 f_msk
= MAX_B_FRAMES
;
224 /* transparent mode */
226 z1
= Read_hfc(cs
, HFCSX_FIF_Z1H
);
227 z1
= ((z1
<< 8) | Read_hfc(cs
, HFCSX_FIF_Z1L
));
228 z2
= Read_hfc(cs
, HFCSX_FIF_Z2H
);
229 z2
= ((z2
<< 8) | Read_hfc(cs
, HFCSX_FIF_Z2L
));
230 /* now determine bytes in actual FIFO buffer */
233 count
+= fifo_size
; /* count now contains buffered bytes */
235 if (count
> trans_max
)
236 count
= trans_max
; /* limit length */
237 if ((skb
= dev_alloc_skb(count
))) {
238 dst
= skb_put(skb
, count
);
240 *dst
++ = Read_hfc(cs
, HFCSX_FIF_DRD
);
243 else return(NULL
); /* no memory */
247 f1
= Read_hfc(cs
, HFCSX_FIF_F1
) & f_msk
;
248 f2
= Read_hfc(cs
, HFCSX_FIF_F2
) & f_msk
;
250 if (f1
== f2
) return(NULL
); /* no frame available */
252 z1
= Read_hfc(cs
, HFCSX_FIF_Z1H
);
253 z1
= ((z1
<< 8) | Read_hfc(cs
, HFCSX_FIF_Z1L
));
254 z2
= Read_hfc(cs
, HFCSX_FIF_Z2H
);
255 z2
= ((z2
<< 8) | Read_hfc(cs
, HFCSX_FIF_Z2L
));
257 if (cs
->debug
& L1_DEB_ISAC_FIFO
)
258 debugl1(cs
, "hfcsx_read_fifo %d f1(%x) f2(%x) z1(f2)(%x) z2(f2)(%x)",
259 fifo
, f1
, f2
, z1
, z2
);
260 /* now determine bytes in actual FIFO buffer */
263 count
+= fifo_size
; /* count now contains buffered bytes */
266 if (cs
->debug
& L1_DEB_ISAC_FIFO
)
267 debugl1(cs
, "hfcsx_read_fifo %d count %ld)",
270 if ((count
> fifo_size
) || (count
< 4)) {
271 if (cs
->debug
& L1_DEB_WARN
)
272 debugl1(cs
, "hfcsx_read_fifo %d paket inv. len %d ", fifo
, count
);
274 count
--; /* empty fifo */
275 Read_hfc(cs
, HFCSX_FIF_DRD
);
279 if ((skb
= dev_alloc_skb(count
- 3))) {
281 dst
= skb_put(skb
, count
);
284 *dst
++ = Read_hfc(cs
, HFCSX_FIF_DRD
);
286 Read_hfc(cs
, HFCSX_FIF_DRD
); /* CRC 1 */
287 Read_hfc(cs
, HFCSX_FIF_DRD
); /* CRC 2 */
288 if (Read_hfc(cs
, HFCSX_FIF_DRD
)) {
289 dev_kfree_skb_irq(skb
);
290 if (cs
->debug
& L1_DEB_ISAC_FIFO
)
291 debugl1(cs
, "hfcsx_read_fifo %d crc error", fifo
);
295 printk(KERN_WARNING
"HFC-SX: receive out of memory\n");
299 Read_hfc(cs
, HFCSX_FIF_INCF2
); /* increment F2 */
301 while (bytein(cs
->hw
.hfcsx
.base
+1) & 1); /* wait for busy */
303 } while (!skb
); /* retry in case of crc error */
307 /******************************************/
308 /* free hardware resources used by driver */
309 /******************************************/
311 release_io_hfcsx(struct IsdnCardState
*cs
)
313 cs
->hw
.hfcsx
.int_m2
= 0; /* interrupt output off ! */
314 Write_hfc(cs
, HFCSX_INT_M2
, cs
->hw
.hfcsx
.int_m2
);
315 Write_hfc(cs
, HFCSX_CIRM
, HFCSX_RESET
); /* Reset On */
316 msleep(30); /* Timeout 30ms */
317 Write_hfc(cs
, HFCSX_CIRM
, 0); /* Reset Off */
318 del_timer(&cs
->hw
.hfcsx
.timer
);
319 release_region(cs
->hw
.hfcsx
.base
, 2); /* release IO-Block */
320 kfree(cs
->hw
.hfcsx
.extra
);
321 cs
->hw
.hfcsx
.extra
= NULL
;
324 /**********************************************************/
325 /* set_fifo_size determines the size of the RAM and FIFOs */
326 /* returning 0 -> need to reset the chip again. */
327 /**********************************************************/
328 static int set_fifo_size(struct IsdnCardState
*cs
)
331 if (cs
->hw
.hfcsx
.b_fifo_size
) return(1); /* already determined */
333 if ((cs
->hw
.hfcsx
.chip
>> 4) == 9) {
334 cs
->hw
.hfcsx
.b_fifo_size
= B_FIFO_SIZE_32K
;
338 cs
->hw
.hfcsx
.b_fifo_size
= B_FIFO_SIZE_8K
;
339 cs
->hw
.hfcsx
.cirm
|= 0x10; /* only 8K of ram */
344 /********************************************************************************/
345 /* function called to reset the HFC SX chip. A complete software reset of chip */
346 /* and fifos is done. */
347 /********************************************************************************/
349 reset_hfcsx(struct IsdnCardState
*cs
)
351 cs
->hw
.hfcsx
.int_m2
= 0; /* interrupt output off ! */
352 Write_hfc(cs
, HFCSX_INT_M2
, cs
->hw
.hfcsx
.int_m2
);
354 printk(KERN_INFO
"HFC_SX: resetting card\n");
356 Write_hfc(cs
, HFCSX_CIRM
, HFCSX_RESET
| cs
->hw
.hfcsx
.cirm
); /* Reset */
358 Write_hfc(cs
, HFCSX_CIRM
, cs
->hw
.hfcsx
.cirm
); /* Reset Off */
360 if (Read_hfc(cs
, HFCSX_STATUS
) & 2)
361 printk(KERN_WARNING
"HFC-SX init bit busy\n");
362 cs
->hw
.hfcsx
.last_fifo
= 0xff; /* invalidate */
363 if (!set_fifo_size(cs
)) continue;
367 cs
->hw
.hfcsx
.trm
= 0 + HFCSX_BTRANS_THRESMASK
; /* no echo connect , threshold */
368 Write_hfc(cs
, HFCSX_TRM
, cs
->hw
.hfcsx
.trm
);
370 Write_hfc(cs
, HFCSX_CLKDEL
, 0x0e); /* ST-Bit delay for TE-Mode */
371 cs
->hw
.hfcsx
.sctrl_e
= HFCSX_AUTO_AWAKE
;
372 Write_hfc(cs
, HFCSX_SCTRL_E
, cs
->hw
.hfcsx
.sctrl_e
); /* S/T Auto awake */
373 cs
->hw
.hfcsx
.bswapped
= 0; /* no exchange */
374 cs
->hw
.hfcsx
.nt_mode
= 0; /* we are in TE mode */
375 cs
->hw
.hfcsx
.ctmt
= HFCSX_TIM3_125
| HFCSX_AUTO_TIMER
;
376 Write_hfc(cs
, HFCSX_CTMT
, cs
->hw
.hfcsx
.ctmt
);
378 cs
->hw
.hfcsx
.int_m1
= HFCSX_INTS_DTRANS
| HFCSX_INTS_DREC
|
379 HFCSX_INTS_L1STATE
| HFCSX_INTS_TIMER
;
380 Write_hfc(cs
, HFCSX_INT_M1
, cs
->hw
.hfcsx
.int_m1
);
382 /* Clear already pending ints */
383 if (Read_hfc(cs
, HFCSX_INT_S1
));
385 Write_hfc(cs
, HFCSX_STATES
, HFCSX_LOAD_STATE
| 2); /* HFC ST 2 */
387 Write_hfc(cs
, HFCSX_STATES
, 2); /* HFC ST 2 */
388 cs
->hw
.hfcsx
.mst_m
= HFCSX_MASTER
; /* HFC Master Mode */
390 Write_hfc(cs
, HFCSX_MST_MODE
, cs
->hw
.hfcsx
.mst_m
);
391 cs
->hw
.hfcsx
.sctrl
= 0x40; /* set tx_lo mode, error in datasheet ! */
392 Write_hfc(cs
, HFCSX_SCTRL
, cs
->hw
.hfcsx
.sctrl
);
393 cs
->hw
.hfcsx
.sctrl_r
= 0;
394 Write_hfc(cs
, HFCSX_SCTRL_R
, cs
->hw
.hfcsx
.sctrl_r
);
396 /* Init GCI/IOM2 in master mode */
397 /* Slots 0 and 1 are set for B-chan 1 and 2 */
398 /* D- and monitor/CI channel are not enabled */
399 /* STIO1 is used as output for data, B1+B2 from ST->IOM+HFC */
400 /* STIO2 is used as data input, B1+B2 from IOM->ST */
401 /* ST B-channel send disabled -> continous 1s */
402 /* The IOM slots are always enabled */
403 cs
->hw
.hfcsx
.conn
= 0x36; /* set data flow directions */
404 Write_hfc(cs
, HFCSX_CONNECT
, cs
->hw
.hfcsx
.conn
);
405 Write_hfc(cs
, HFCSX_B1_SSL
, 0x80); /* B1-Slot 0 STIO1 out enabled */
406 Write_hfc(cs
, HFCSX_B2_SSL
, 0x81); /* B2-Slot 1 STIO1 out enabled */
407 Write_hfc(cs
, HFCSX_B1_RSL
, 0x80); /* B1-Slot 0 STIO2 in enabled */
408 Write_hfc(cs
, HFCSX_B2_RSL
, 0x81); /* B2-Slot 1 STIO2 in enabled */
410 /* Finally enable IRQ output */
411 cs
->hw
.hfcsx
.int_m2
= HFCSX_IRQ_ENABLE
;
412 Write_hfc(cs
, HFCSX_INT_M2
, cs
->hw
.hfcsx
.int_m2
);
413 if (Read_hfc(cs
, HFCSX_INT_S2
));
416 /***************************************************/
417 /* Timer function called when kernel timer expires */
418 /***************************************************/
420 hfcsx_Timer(struct IsdnCardState
*cs
)
422 cs
->hw
.hfcsx
.timer
.expires
= jiffies
+ 75;
424 /* WriteReg(cs, HFCD_DATA, HFCD_CTMT, cs->hw.hfcsx.ctmt | 0x80);
425 add_timer(&cs->hw.hfcsx.timer);
429 /************************************************/
430 /* select a b-channel entry matching and active */
431 /************************************************/
434 Sel_BCS(struct IsdnCardState
*cs
, int channel
)
436 if (cs
->bcs
[0].mode
&& (cs
->bcs
[0].channel
== channel
))
437 return (&cs
->bcs
[0]);
438 else if (cs
->bcs
[1].mode
&& (cs
->bcs
[1].channel
== channel
))
439 return (&cs
->bcs
[1]);
444 /*******************************/
445 /* D-channel receive procedure */
446 /*******************************/
449 receive_dmsg(struct IsdnCardState
*cs
)
454 if (test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
455 debugl1(cs
, "rec_dmsg blocked");
460 skb
= read_fifo(cs
, HFCSX_SEL_D_RX
, 0);
462 skb_queue_tail(&cs
->rq
, skb
);
463 schedule_event(cs
, D_RCVBUFREADY
);
465 } while (--count
&& skb
);
467 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
471 /**********************************/
472 /* B-channel main receive routine */
473 /**********************************/
475 main_rec_hfcsx(struct BCState
*bcs
)
477 struct IsdnCardState
*cs
= bcs
->cs
;
483 if (test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
484 debugl1(cs
, "rec_data %d blocked", bcs
->channel
);
487 skb
= read_fifo(cs
, ((bcs
->channel
) && (!cs
->hw
.hfcsx
.bswapped
)) ?
488 HFCSX_SEL_B2_RX
: HFCSX_SEL_B1_RX
,
489 (bcs
->mode
== L1_MODE_TRANS
) ?
490 HFCSX_BTRANS_THRESHOLD
: 0);
493 skb_queue_tail(&bcs
->rqueue
, skb
);
494 schedule_event(bcs
, B_RCVBUFREADY
);
497 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
503 /**************************/
504 /* D-channel send routine */
505 /**************************/
507 hfcsx_fill_dfifo(struct IsdnCardState
*cs
)
511 if (cs
->tx_skb
->len
<= 0)
514 if (write_fifo(cs
, cs
->tx_skb
, HFCSX_SEL_D_TX
, 0)) {
515 dev_kfree_skb_any(cs
->tx_skb
);
521 /**************************/
522 /* B-channel send routine */
523 /**************************/
525 hfcsx_fill_fifo(struct BCState
*bcs
)
527 struct IsdnCardState
*cs
= bcs
->cs
;
531 if (bcs
->tx_skb
->len
<= 0)
534 if (write_fifo(cs
, bcs
->tx_skb
,
535 ((bcs
->channel
) && (!cs
->hw
.hfcsx
.bswapped
)) ?
536 HFCSX_SEL_B2_TX
: HFCSX_SEL_B1_TX
,
537 (bcs
->mode
== L1_MODE_TRANS
) ?
538 HFCSX_BTRANS_THRESHOLD
: 0)) {
540 bcs
->tx_cnt
-= bcs
->tx_skb
->len
;
541 if (test_bit(FLG_LLI_L1WAKEUP
,&bcs
->st
->lli
.flag
) &&
542 (PACKET_NOACK
!= bcs
->tx_skb
->pkt_type
)) {
544 spin_lock_irqsave(&bcs
->aclock
, flags
);
545 bcs
->ackcnt
+= bcs
->tx_skb
->len
;
546 spin_unlock_irqrestore(&bcs
->aclock
, flags
);
547 schedule_event(bcs
, B_ACKPENDING
);
549 dev_kfree_skb_any(bcs
->tx_skb
);
551 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
555 /**********************************************/
556 /* D-channel l1 state call for leased NT-mode */
557 /**********************************************/
559 dch_nt_l2l1(struct PStack
*st
, int pr
, void *arg
)
561 struct IsdnCardState
*cs
= (struct IsdnCardState
*) st
->l1
.hardware
;
564 case (PH_DATA
| REQUEST
):
565 case (PH_PULL
| REQUEST
):
566 case (PH_PULL
| INDICATION
):
567 st
->l1
.l1hw(st
, pr
, arg
);
569 case (PH_ACTIVATE
| REQUEST
):
570 st
->l1
.l1l2(st
, PH_ACTIVATE
| CONFIRM
, NULL
);
572 case (PH_TESTLOOP
| REQUEST
):
574 debugl1(cs
, "PH_TEST_LOOP B1");
576 debugl1(cs
, "PH_TEST_LOOP B2");
577 if (!(3 & (long) arg
))
578 debugl1(cs
, "PH_TEST_LOOP DISABLED");
579 st
->l1
.l1hw(st
, HW_TESTLOOP
| REQUEST
, arg
);
583 debugl1(cs
, "dch_nt_l2l1 msg %04X unhandled", pr
);
590 /***********************/
591 /* set/reset echo mode */
592 /***********************/
594 hfcsx_auxcmd(struct IsdnCardState
*cs
, isdn_ctrl
* ic
)
597 int i
= *(unsigned int *) ic
->parm
.num
;
599 if ((ic
->arg
== 98) &&
600 (!(cs
->hw
.hfcsx
.int_m1
& (HFCSX_INTS_B2TRANS
+ HFCSX_INTS_B2REC
+ HFCSX_INTS_B1TRANS
+ HFCSX_INTS_B1REC
)))) {
601 spin_lock_irqsave(&cs
->lock
, flags
);
602 Write_hfc(cs
, HFCSX_STATES
, HFCSX_LOAD_STATE
| 0); /* HFC ST G0 */
604 cs
->hw
.hfcsx
.sctrl
|= SCTRL_MODE_NT
;
605 Write_hfc(cs
, HFCSX_SCTRL
, cs
->hw
.hfcsx
.sctrl
); /* set NT-mode */
607 Write_hfc(cs
, HFCSX_STATES
, HFCSX_LOAD_STATE
| 1); /* HFC ST G1 */
609 Write_hfc(cs
, HFCSX_STATES
, 1 | HFCSX_ACTIVATE
| HFCSX_DO_ACTION
);
610 cs
->dc
.hfcsx
.ph_state
= 1;
611 cs
->hw
.hfcsx
.nt_mode
= 1;
612 cs
->hw
.hfcsx
.nt_timer
= 0;
613 spin_unlock_irqrestore(&cs
->lock
, flags
);
614 cs
->stlist
->l2
.l2l1
= dch_nt_l2l1
;
615 debugl1(cs
, "NT mode activated");
618 if ((cs
->chanlimit
> 1) || (cs
->hw
.hfcsx
.bswapped
) ||
619 (cs
->hw
.hfcsx
.nt_mode
) || (ic
->arg
!= 12))
624 cs
->hw
.hfcsx
.trm
|= 0x20; /* enable echo chan */
625 cs
->hw
.hfcsx
.int_m1
|= HFCSX_INTS_B2REC
;
626 /* reset Channel !!!!! */
629 cs
->hw
.hfcsx
.trm
&= ~0x20; /* disable echo chan */
630 cs
->hw
.hfcsx
.int_m1
&= ~HFCSX_INTS_B2REC
;
632 cs
->hw
.hfcsx
.sctrl_r
&= ~SCTRL_B2_ENA
;
633 cs
->hw
.hfcsx
.sctrl
&= ~SCTRL_B2_ENA
;
634 cs
->hw
.hfcsx
.conn
|= 0x10; /* B2-IOM -> B2-ST */
635 cs
->hw
.hfcsx
.ctmt
&= ~2;
636 spin_lock_irqsave(&cs
->lock
, flags
);
637 Write_hfc(cs
, HFCSX_CTMT
, cs
->hw
.hfcsx
.ctmt
);
638 Write_hfc(cs
, HFCSX_SCTRL_R
, cs
->hw
.hfcsx
.sctrl_r
);
639 Write_hfc(cs
, HFCSX_SCTRL
, cs
->hw
.hfcsx
.sctrl
);
640 Write_hfc(cs
, HFCSX_CONNECT
, cs
->hw
.hfcsx
.conn
);
641 Write_hfc(cs
, HFCSX_TRM
, cs
->hw
.hfcsx
.trm
);
642 Write_hfc(cs
, HFCSX_INT_M1
, cs
->hw
.hfcsx
.int_m1
);
643 spin_unlock_irqrestore(&cs
->lock
, flags
);
647 /*****************************/
648 /* E-channel receive routine */
649 /*****************************/
651 receive_emsg(struct IsdnCardState
*cs
)
657 if (test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
658 debugl1(cs
, "echo_rec_data blocked");
662 skb
= read_fifo(cs
, HFCSX_SEL_B2_RX
, 0);
664 if (cs
->debug
& DEB_DLOG_HEX
) {
666 if ((skb
->len
) < MAX_DLOG_SPACE
/ 3 - 10) {
672 ptr
+= QuickHex(ptr
, skb
->data
, skb
->len
);
676 HiSax_putstatus(cs
, NULL
, cs
->dlog
);
678 HiSax_putstatus(cs
, "LogEcho: ", "warning Frame too big (%d)", skb
->len
);
680 dev_kfree_skb_any(skb
);
682 } while (--count
&& skb
);
684 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
689 /*********************/
690 /* Interrupt handler */
691 /*********************/
693 hfcsx_interrupt(int intno
, void *dev_id
)
695 struct IsdnCardState
*cs
= dev_id
;
702 if (!(cs
->hw
.hfcsx
.int_m2
& 0x08))
703 return IRQ_NONE
; /* not initialised */
705 spin_lock_irqsave(&cs
->lock
, flags
);
706 if (HFCSX_ANYINT
& (stat
= Read_hfc(cs
, HFCSX_STATUS
))) {
707 val
= Read_hfc(cs
, HFCSX_INT_S1
);
708 if (cs
->debug
& L1_DEB_ISAC
)
709 debugl1(cs
, "HFC-SX: stat(%02x) s1(%02x)", stat
, val
);
711 spin_unlock_irqrestore(&cs
->lock
, flags
);
714 if (cs
->debug
& L1_DEB_ISAC
)
715 debugl1(cs
, "HFC-SX irq %x %s", val
,
716 test_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
) ?
717 "locked" : "unlocked");
718 val
&= cs
->hw
.hfcsx
.int_m1
;
719 if (val
& 0x40) { /* state machine irq */
720 exval
= Read_hfc(cs
, HFCSX_STATES
) & 0xf;
721 if (cs
->debug
& L1_DEB_ISAC
)
722 debugl1(cs
, "ph_state chg %d->%d", cs
->dc
.hfcsx
.ph_state
,
724 cs
->dc
.hfcsx
.ph_state
= exval
;
725 schedule_event(cs
, D_L1STATECHANGE
);
728 if (val
& 0x80) { /* timer irq */
729 if (cs
->hw
.hfcsx
.nt_mode
) {
730 if ((--cs
->hw
.hfcsx
.nt_timer
) < 0)
731 schedule_event(cs
, D_L1STATECHANGE
);
734 Write_hfc(cs
, HFCSX_CTMT
, cs
->hw
.hfcsx
.ctmt
| HFCSX_CLTIMER
);
737 if (test_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
738 cs
->hw
.hfcsx
.int_s1
|= val
;
739 spin_unlock_irqrestore(&cs
->lock
, flags
);
742 if (cs
->hw
.hfcsx
.int_s1
& 0x18) {
744 val
= cs
->hw
.hfcsx
.int_s1
;
745 cs
->hw
.hfcsx
.int_s1
= exval
;
748 if (!(bcs
= Sel_BCS(cs
, cs
->hw
.hfcsx
.bswapped
? 1 : 0))) {
750 debugl1(cs
, "hfcsx spurious 0x08 IRQ");
757 else if (!(bcs
= Sel_BCS(cs
, 1))) {
759 debugl1(cs
, "hfcsx spurious 0x10 IRQ");
764 if (!(bcs
= Sel_BCS(cs
, cs
->hw
.hfcsx
.bswapped
? 1 : 0))) {
766 debugl1(cs
, "hfcsx spurious 0x01 IRQ");
769 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
770 hfcsx_fill_fifo(bcs
);
771 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
773 debugl1(cs
, "fill_data %d blocked", bcs
->channel
);
775 if ((bcs
->tx_skb
= skb_dequeue(&bcs
->squeue
))) {
776 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
777 hfcsx_fill_fifo(bcs
);
778 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
780 debugl1(cs
, "fill_data %d blocked", bcs
->channel
);
782 schedule_event(bcs
, B_XMTBUFREADY
);
788 if (!(bcs
= Sel_BCS(cs
, 1))) {
790 debugl1(cs
, "hfcsx spurious 0x02 IRQ");
793 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
794 hfcsx_fill_fifo(bcs
);
795 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
797 debugl1(cs
, "fill_data %d blocked", bcs
->channel
);
799 if ((bcs
->tx_skb
= skb_dequeue(&bcs
->squeue
))) {
800 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
801 hfcsx_fill_fifo(bcs
);
802 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
804 debugl1(cs
, "fill_data %d blocked", bcs
->channel
);
806 schedule_event(bcs
, B_XMTBUFREADY
);
811 if (val
& 0x20) { /* receive dframe */
814 if (val
& 0x04) { /* dframe transmitted */
815 if (test_and_clear_bit(FLG_DBUSY_TIMER
, &cs
->HW_Flags
))
816 del_timer(&cs
->dbusytimer
);
817 if (test_and_clear_bit(FLG_L1_DBUSY
, &cs
->HW_Flags
))
818 schedule_event(cs
, D_CLEARBUSY
);
820 if (cs
->tx_skb
->len
) {
821 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
822 hfcsx_fill_dfifo(cs
);
823 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
825 debugl1(cs
, "hfcsx_fill_dfifo irq blocked");
829 dev_kfree_skb_irq(cs
->tx_skb
);
834 if ((cs
->tx_skb
= skb_dequeue(&cs
->sq
))) {
836 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
837 hfcsx_fill_dfifo(cs
);
838 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
840 debugl1(cs
, "hfcsx_fill_dfifo irq blocked");
843 schedule_event(cs
, D_XMTBUFREADY
);
846 if (cs
->hw
.hfcsx
.int_s1
&& count
--) {
847 val
= cs
->hw
.hfcsx
.int_s1
;
848 cs
->hw
.hfcsx
.int_s1
= 0;
849 if (cs
->debug
& L1_DEB_ISAC
)
850 debugl1(cs
, "HFC-SX irq %x loop %d", val
, 15 - count
);
854 spin_unlock_irqrestore(&cs
->lock
, flags
);
858 /********************************************************************/
859 /* timer callback for D-chan busy resolution. Currently no function */
860 /********************************************************************/
862 hfcsx_dbusy_timer(struct IsdnCardState
*cs
)
866 /*************************************/
867 /* Layer 1 D-channel hardware access */
868 /*************************************/
870 HFCSX_l1hw(struct PStack
*st
, int pr
, void *arg
)
872 struct IsdnCardState
*cs
= (struct IsdnCardState
*) st
->l1
.hardware
;
873 struct sk_buff
*skb
= arg
;
877 case (PH_DATA
| REQUEST
):
878 if (cs
->debug
& DEB_DLOG_HEX
)
879 LogFrame(cs
, skb
->data
, skb
->len
);
880 if (cs
->debug
& DEB_DLOG_VERBOSE
)
881 dlogframe(cs
, skb
, 0);
882 spin_lock_irqsave(&cs
->lock
, flags
);
884 skb_queue_tail(&cs
->sq
, skb
);
885 #ifdef L2FRAME_DEBUG /* psa */
886 if (cs
->debug
& L1_DEB_LAPD
)
887 Logl2Frame(cs
, skb
, "PH_DATA Queued", 0);
892 #ifdef L2FRAME_DEBUG /* psa */
893 if (cs
->debug
& L1_DEB_LAPD
)
894 Logl2Frame(cs
, skb
, "PH_DATA", 0);
896 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
897 hfcsx_fill_dfifo(cs
);
898 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
900 debugl1(cs
, "hfcsx_fill_dfifo blocked");
903 spin_unlock_irqrestore(&cs
->lock
, flags
);
905 case (PH_PULL
| INDICATION
):
906 spin_lock_irqsave(&cs
->lock
, flags
);
908 if (cs
->debug
& L1_DEB_WARN
)
909 debugl1(cs
, " l2l1 tx_skb exist this shouldn't happen");
910 skb_queue_tail(&cs
->sq
, skb
);
911 spin_unlock_irqrestore(&cs
->lock
, flags
);
914 if (cs
->debug
& DEB_DLOG_HEX
)
915 LogFrame(cs
, skb
->data
, skb
->len
);
916 if (cs
->debug
& DEB_DLOG_VERBOSE
)
917 dlogframe(cs
, skb
, 0);
920 #ifdef L2FRAME_DEBUG /* psa */
921 if (cs
->debug
& L1_DEB_LAPD
)
922 Logl2Frame(cs
, skb
, "PH_DATA_PULLED", 0);
924 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
925 hfcsx_fill_dfifo(cs
);
926 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
928 debugl1(cs
, "hfcsx_fill_dfifo blocked");
929 spin_unlock_irqrestore(&cs
->lock
, flags
);
931 case (PH_PULL
| REQUEST
):
932 #ifdef L2FRAME_DEBUG /* psa */
933 if (cs
->debug
& L1_DEB_LAPD
)
934 debugl1(cs
, "-> PH_REQUEST_PULL");
937 test_and_clear_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
938 st
->l1
.l1l2(st
, PH_PULL
| CONFIRM
, NULL
);
940 test_and_set_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
942 case (HW_RESET
| REQUEST
):
943 spin_lock_irqsave(&cs
->lock
, flags
);
944 Write_hfc(cs
, HFCSX_STATES
, HFCSX_LOAD_STATE
| 3); /* HFC ST 3 */
946 Write_hfc(cs
, HFCSX_STATES
, 3); /* HFC ST 2 */
947 cs
->hw
.hfcsx
.mst_m
|= HFCSX_MASTER
;
948 Write_hfc(cs
, HFCSX_MST_MODE
, cs
->hw
.hfcsx
.mst_m
);
949 Write_hfc(cs
, HFCSX_STATES
, HFCSX_ACTIVATE
| HFCSX_DO_ACTION
);
950 spin_unlock_irqrestore(&cs
->lock
, flags
);
951 l1_msg(cs
, HW_POWERUP
| CONFIRM
, NULL
);
953 case (HW_ENABLE
| REQUEST
):
954 spin_lock_irqsave(&cs
->lock
, flags
);
955 Write_hfc(cs
, HFCSX_STATES
, HFCSX_ACTIVATE
| HFCSX_DO_ACTION
);
956 spin_unlock_irqrestore(&cs
->lock
, flags
);
958 case (HW_DEACTIVATE
| REQUEST
):
959 spin_lock_irqsave(&cs
->lock
, flags
);
960 cs
->hw
.hfcsx
.mst_m
&= ~HFCSX_MASTER
;
961 Write_hfc(cs
, HFCSX_MST_MODE
, cs
->hw
.hfcsx
.mst_m
);
962 spin_unlock_irqrestore(&cs
->lock
, flags
);
964 case (HW_INFO3
| REQUEST
):
965 spin_lock_irqsave(&cs
->lock
, flags
);
966 cs
->hw
.hfcsx
.mst_m
|= HFCSX_MASTER
;
967 Write_hfc(cs
, HFCSX_MST_MODE
, cs
->hw
.hfcsx
.mst_m
);
968 spin_unlock_irqrestore(&cs
->lock
, flags
);
970 case (HW_TESTLOOP
| REQUEST
):
971 spin_lock_irqsave(&cs
->lock
, flags
);
972 switch ((long) arg
) {
974 Write_hfc(cs
, HFCSX_B1_SSL
, 0x80); /* tx slot */
975 Write_hfc(cs
, HFCSX_B1_RSL
, 0x80); /* rx slot */
976 cs
->hw
.hfcsx
.conn
= (cs
->hw
.hfcsx
.conn
& ~7) | 1;
977 Write_hfc(cs
, HFCSX_CONNECT
, cs
->hw
.hfcsx
.conn
);
980 Write_hfc(cs
, HFCSX_B2_SSL
, 0x81); /* tx slot */
981 Write_hfc(cs
, HFCSX_B2_RSL
, 0x81); /* rx slot */
982 cs
->hw
.hfcsx
.conn
= (cs
->hw
.hfcsx
.conn
& ~0x38) | 0x08;
983 Write_hfc(cs
, HFCSX_CONNECT
, cs
->hw
.hfcsx
.conn
);
986 spin_unlock_irqrestore(&cs
->lock
, flags
);
987 if (cs
->debug
& L1_DEB_WARN
)
988 debugl1(cs
, "hfcsx_l1hw loop invalid %4lx", arg
);
991 cs
->hw
.hfcsx
.trm
|= 0x80; /* enable IOM-loop */
992 Write_hfc(cs
, HFCSX_TRM
, cs
->hw
.hfcsx
.trm
);
993 spin_unlock_irqrestore(&cs
->lock
, flags
);
996 if (cs
->debug
& L1_DEB_WARN
)
997 debugl1(cs
, "hfcsx_l1hw unknown pr %4x", pr
);
1002 /***********************************************/
1003 /* called during init setting l1 stack pointer */
1004 /***********************************************/
1006 setstack_hfcsx(struct PStack
*st
, struct IsdnCardState
*cs
)
1008 st
->l1
.l1hw
= HFCSX_l1hw
;
1011 /**************************************/
1012 /* send B-channel data if not blocked */
1013 /**************************************/
1015 hfcsx_send_data(struct BCState
*bcs
)
1017 struct IsdnCardState
*cs
= bcs
->cs
;
1019 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1020 hfcsx_fill_fifo(bcs
);
1021 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1023 debugl1(cs
, "send_data %d blocked", bcs
->channel
);
1026 /***************************************************************/
1027 /* activate/deactivate hardware for selected channels and mode */
1028 /***************************************************************/
1030 mode_hfcsx(struct BCState
*bcs
, int mode
, int bc
)
1032 struct IsdnCardState
*cs
= bcs
->cs
;
1035 if (cs
->debug
& L1_DEB_HSCX
)
1036 debugl1(cs
, "HFCSX bchannel mode %d bchan %d/%d",
1037 mode
, bc
, bcs
->channel
);
1041 if (cs
->chanlimit
> 1) {
1042 cs
->hw
.hfcsx
.bswapped
= 0; /* B1 and B2 normal mode */
1043 cs
->hw
.hfcsx
.sctrl_e
&= ~0x80;
1046 if (mode
!= L1_MODE_NULL
) {
1047 cs
->hw
.hfcsx
.bswapped
= 1; /* B1 and B2 exchanged */
1048 cs
->hw
.hfcsx
.sctrl_e
|= 0x80;
1050 cs
->hw
.hfcsx
.bswapped
= 0; /* B1 and B2 normal mode */
1051 cs
->hw
.hfcsx
.sctrl_e
&= ~0x80;
1055 cs
->hw
.hfcsx
.bswapped
= 0; /* B1 and B2 normal mode */
1056 cs
->hw
.hfcsx
.sctrl_e
&= ~0x80;
1060 case (L1_MODE_NULL
):
1062 cs
->hw
.hfcsx
.sctrl
&= ~SCTRL_B2_ENA
;
1063 cs
->hw
.hfcsx
.sctrl_r
&= ~SCTRL_B2_ENA
;
1065 cs
->hw
.hfcsx
.sctrl
&= ~SCTRL_B1_ENA
;
1066 cs
->hw
.hfcsx
.sctrl_r
&= ~SCTRL_B1_ENA
;
1069 cs
->hw
.hfcsx
.int_m1
&= ~(HFCSX_INTS_B2TRANS
+ HFCSX_INTS_B2REC
);
1071 cs
->hw
.hfcsx
.int_m1
&= ~(HFCSX_INTS_B1TRANS
+ HFCSX_INTS_B1REC
);
1074 case (L1_MODE_TRANS
):
1076 cs
->hw
.hfcsx
.sctrl
|= SCTRL_B2_ENA
;
1077 cs
->hw
.hfcsx
.sctrl_r
|= SCTRL_B2_ENA
;
1079 cs
->hw
.hfcsx
.sctrl
|= SCTRL_B1_ENA
;
1080 cs
->hw
.hfcsx
.sctrl_r
|= SCTRL_B1_ENA
;
1083 cs
->hw
.hfcsx
.int_m1
|= (HFCSX_INTS_B2TRANS
+ HFCSX_INTS_B2REC
);
1084 cs
->hw
.hfcsx
.ctmt
|= 2;
1085 cs
->hw
.hfcsx
.conn
&= ~0x18;
1087 cs
->hw
.hfcsx
.int_m1
|= (HFCSX_INTS_B1TRANS
+ HFCSX_INTS_B1REC
);
1088 cs
->hw
.hfcsx
.ctmt
|= 1;
1089 cs
->hw
.hfcsx
.conn
&= ~0x03;
1092 case (L1_MODE_HDLC
):
1094 cs
->hw
.hfcsx
.sctrl
|= SCTRL_B2_ENA
;
1095 cs
->hw
.hfcsx
.sctrl_r
|= SCTRL_B2_ENA
;
1097 cs
->hw
.hfcsx
.sctrl
|= SCTRL_B1_ENA
;
1098 cs
->hw
.hfcsx
.sctrl_r
|= SCTRL_B1_ENA
;
1101 cs
->hw
.hfcsx
.int_m1
|= (HFCSX_INTS_B2TRANS
+ HFCSX_INTS_B2REC
);
1102 cs
->hw
.hfcsx
.ctmt
&= ~2;
1103 cs
->hw
.hfcsx
.conn
&= ~0x18;
1105 cs
->hw
.hfcsx
.int_m1
|= (HFCSX_INTS_B1TRANS
+ HFCSX_INTS_B1REC
);
1106 cs
->hw
.hfcsx
.ctmt
&= ~1;
1107 cs
->hw
.hfcsx
.conn
&= ~0x03;
1110 case (L1_MODE_EXTRN
):
1112 cs
->hw
.hfcsx
.conn
|= 0x10;
1113 cs
->hw
.hfcsx
.sctrl
|= SCTRL_B2_ENA
;
1114 cs
->hw
.hfcsx
.sctrl_r
|= SCTRL_B2_ENA
;
1115 cs
->hw
.hfcsx
.int_m1
&= ~(HFCSX_INTS_B2TRANS
+ HFCSX_INTS_B2REC
);
1117 cs
->hw
.hfcsx
.conn
|= 0x02;
1118 cs
->hw
.hfcsx
.sctrl
|= SCTRL_B1_ENA
;
1119 cs
->hw
.hfcsx
.sctrl_r
|= SCTRL_B1_ENA
;
1120 cs
->hw
.hfcsx
.int_m1
&= ~(HFCSX_INTS_B1TRANS
+ HFCSX_INTS_B1REC
);
1124 Write_hfc(cs
, HFCSX_SCTRL_E
, cs
->hw
.hfcsx
.sctrl_e
);
1125 Write_hfc(cs
, HFCSX_INT_M1
, cs
->hw
.hfcsx
.int_m1
);
1126 Write_hfc(cs
, HFCSX_SCTRL
, cs
->hw
.hfcsx
.sctrl
);
1127 Write_hfc(cs
, HFCSX_SCTRL_R
, cs
->hw
.hfcsx
.sctrl_r
);
1128 Write_hfc(cs
, HFCSX_CTMT
, cs
->hw
.hfcsx
.ctmt
);
1129 Write_hfc(cs
, HFCSX_CONNECT
, cs
->hw
.hfcsx
.conn
);
1130 if (mode
!= L1_MODE_EXTRN
) {
1131 reset_fifo(cs
, fifo2
? HFCSX_SEL_B2_RX
: HFCSX_SEL_B1_RX
);
1132 reset_fifo(cs
, fifo2
? HFCSX_SEL_B2_TX
: HFCSX_SEL_B1_TX
);
1136 /******************************/
1137 /* Layer2 -> Layer 1 Transfer */
1138 /******************************/
1140 hfcsx_l2l1(struct PStack
*st
, int pr
, void *arg
)
1142 struct BCState
*bcs
= st
->l1
.bcs
;
1143 struct sk_buff
*skb
= arg
;
1147 case (PH_DATA
| REQUEST
):
1148 spin_lock_irqsave(&bcs
->cs
->lock
, flags
);
1150 skb_queue_tail(&bcs
->squeue
, skb
);
1153 // test_and_set_bit(BC_FLG_BUSY, &bcs->Flag);
1154 bcs
->cs
->BC_Send_Data(bcs
);
1156 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1158 case (PH_PULL
| INDICATION
):
1159 spin_lock_irqsave(&bcs
->cs
->lock
, flags
);
1161 printk(KERN_WARNING
"hfc_l2l1: this shouldn't happen\n");
1163 // test_and_set_bit(BC_FLG_BUSY, &bcs->Flag);
1165 bcs
->cs
->BC_Send_Data(bcs
);
1167 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1169 case (PH_PULL
| REQUEST
):
1171 test_and_clear_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
1172 st
->l1
.l1l2(st
, PH_PULL
| CONFIRM
, NULL
);
1174 test_and_set_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
1176 case (PH_ACTIVATE
| REQUEST
):
1177 spin_lock_irqsave(&bcs
->cs
->lock
, flags
);
1178 test_and_set_bit(BC_FLG_ACTIV
, &bcs
->Flag
);
1179 mode_hfcsx(bcs
, st
->l1
.mode
, st
->l1
.bc
);
1180 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1181 l1_msg_b(st
, pr
, arg
);
1183 case (PH_DEACTIVATE
| REQUEST
):
1184 l1_msg_b(st
, pr
, arg
);
1186 case (PH_DEACTIVATE
| CONFIRM
):
1187 spin_lock_irqsave(&bcs
->cs
->lock
, flags
);
1188 test_and_clear_bit(BC_FLG_ACTIV
, &bcs
->Flag
);
1189 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
1190 mode_hfcsx(bcs
, 0, st
->l1
.bc
);
1191 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1192 st
->l1
.l1l2(st
, PH_DEACTIVATE
| CONFIRM
, NULL
);
1197 /******************************************/
1198 /* deactivate B-channel access and queues */
1199 /******************************************/
1201 close_hfcsx(struct BCState
*bcs
)
1203 mode_hfcsx(bcs
, 0, bcs
->channel
);
1204 if (test_and_clear_bit(BC_FLG_INIT
, &bcs
->Flag
)) {
1205 skb_queue_purge(&bcs
->rqueue
);
1206 skb_queue_purge(&bcs
->squeue
);
1208 dev_kfree_skb_any(bcs
->tx_skb
);
1210 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
1215 /*************************************/
1216 /* init B-channel queues and control */
1217 /*************************************/
1219 open_hfcsxstate(struct IsdnCardState
*cs
, struct BCState
*bcs
)
1221 if (!test_and_set_bit(BC_FLG_INIT
, &bcs
->Flag
)) {
1222 skb_queue_head_init(&bcs
->rqueue
);
1223 skb_queue_head_init(&bcs
->squeue
);
1226 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
1232 /*********************************/
1233 /* inits the stack for B-channel */
1234 /*********************************/
1236 setstack_2b(struct PStack
*st
, struct BCState
*bcs
)
1238 bcs
->channel
= st
->l1
.bc
;
1239 if (open_hfcsxstate(st
->l1
.hardware
, bcs
))
1242 st
->l2
.l2l1
= hfcsx_l2l1
;
1243 setstack_manager(st
);
1249 /***************************/
1250 /* handle L1 state changes */
1251 /***************************/
1253 hfcsx_bh(struct work_struct
*work
)
1255 struct IsdnCardState
*cs
=
1256 container_of(work
, struct IsdnCardState
, tqueue
);
1259 if (test_and_clear_bit(D_L1STATECHANGE
, &cs
->event
)) {
1260 if (!cs
->hw
.hfcsx
.nt_mode
)
1261 switch (cs
->dc
.hfcsx
.ph_state
) {
1263 l1_msg(cs
, HW_RESET
| INDICATION
, NULL
);
1266 l1_msg(cs
, HW_DEACTIVATE
| INDICATION
, NULL
);
1269 l1_msg(cs
, HW_RSYNC
| INDICATION
, NULL
);
1272 l1_msg(cs
, HW_INFO2
| INDICATION
, NULL
);
1275 l1_msg(cs
, HW_INFO4_P8
| INDICATION
, NULL
);
1280 switch (cs
->dc
.hfcsx
.ph_state
) {
1282 spin_lock_irqsave(&cs
->lock
, flags
);
1283 if (cs
->hw
.hfcsx
.nt_timer
< 0) {
1284 cs
->hw
.hfcsx
.nt_timer
= 0;
1285 cs
->hw
.hfcsx
.int_m1
&= ~HFCSX_INTS_TIMER
;
1286 Write_hfc(cs
, HFCSX_INT_M1
, cs
->hw
.hfcsx
.int_m1
);
1287 /* Clear already pending ints */
1288 if (Read_hfc(cs
, HFCSX_INT_S1
));
1290 Write_hfc(cs
, HFCSX_STATES
, 4 | HFCSX_LOAD_STATE
);
1292 Write_hfc(cs
, HFCSX_STATES
, 4);
1293 cs
->dc
.hfcsx
.ph_state
= 4;
1295 cs
->hw
.hfcsx
.int_m1
|= HFCSX_INTS_TIMER
;
1296 Write_hfc(cs
, HFCSX_INT_M1
, cs
->hw
.hfcsx
.int_m1
);
1297 cs
->hw
.hfcsx
.ctmt
&= ~HFCSX_AUTO_TIMER
;
1298 cs
->hw
.hfcsx
.ctmt
|= HFCSX_TIM3_125
;
1299 Write_hfc(cs
, HFCSX_CTMT
, cs
->hw
.hfcsx
.ctmt
| HFCSX_CLTIMER
);
1300 Write_hfc(cs
, HFCSX_CTMT
, cs
->hw
.hfcsx
.ctmt
| HFCSX_CLTIMER
);
1301 cs
->hw
.hfcsx
.nt_timer
= NT_T1_COUNT
;
1302 Write_hfc(cs
, HFCSX_STATES
, 2 | HFCSX_NT_G2_G3
); /* allow G2 -> G3 transition */
1304 spin_unlock_irqrestore(&cs
->lock
, flags
);
1309 spin_lock_irqsave(&cs
->lock
, flags
);
1310 cs
->hw
.hfcsx
.nt_timer
= 0;
1311 cs
->hw
.hfcsx
.int_m1
&= ~HFCSX_INTS_TIMER
;
1312 Write_hfc(cs
, HFCSX_INT_M1
, cs
->hw
.hfcsx
.int_m1
);
1313 spin_unlock_irqrestore(&cs
->lock
, flags
);
1320 if (test_and_clear_bit(D_RCVBUFREADY
, &cs
->event
))
1321 DChannel_proc_rcv(cs
);
1322 if (test_and_clear_bit(D_XMTBUFREADY
, &cs
->event
))
1323 DChannel_proc_xmt(cs
);
1327 /********************************/
1328 /* called for card init message */
1329 /********************************/
1330 static void inithfcsx(struct IsdnCardState
*cs
)
1332 cs
->setstack_d
= setstack_hfcsx
;
1333 cs
->BC_Send_Data
= &hfcsx_send_data
;
1334 cs
->bcs
[0].BC_SetStack
= setstack_2b
;
1335 cs
->bcs
[1].BC_SetStack
= setstack_2b
;
1336 cs
->bcs
[0].BC_Close
= close_hfcsx
;
1337 cs
->bcs
[1].BC_Close
= close_hfcsx
;
1338 mode_hfcsx(cs
->bcs
, 0, 0);
1339 mode_hfcsx(cs
->bcs
+ 1, 0, 1);
1344 /*******************************************/
1345 /* handle card messages from control layer */
1346 /*******************************************/
1348 hfcsx_card_msg(struct IsdnCardState
*cs
, int mt
, void *arg
)
1352 if (cs
->debug
& L1_DEB_ISAC
)
1353 debugl1(cs
, "HFCSX: card_msg %x", mt
);
1356 spin_lock_irqsave(&cs
->lock
, flags
);
1358 spin_unlock_irqrestore(&cs
->lock
, flags
);
1361 release_io_hfcsx(cs
);
1364 spin_lock_irqsave(&cs
->lock
, flags
);
1366 spin_unlock_irqrestore(&cs
->lock
, flags
);
1367 msleep(80); /* Timeout 80ms */
1368 /* now switch timer interrupt off */
1369 spin_lock_irqsave(&cs
->lock
, flags
);
1370 cs
->hw
.hfcsx
.int_m1
&= ~HFCSX_INTS_TIMER
;
1371 Write_hfc(cs
, HFCSX_INT_M1
, cs
->hw
.hfcsx
.int_m1
);
1372 /* reinit mode reg */
1373 Write_hfc(cs
, HFCSX_MST_MODE
, cs
->hw
.hfcsx
.mst_m
);
1374 spin_unlock_irqrestore(&cs
->lock
, flags
);
1383 static struct isapnp_device_id hfc_ids
[] __devinitdata
= {
1384 { ISAPNP_VENDOR('T', 'A', 'G'), ISAPNP_FUNCTION(0x2620),
1385 ISAPNP_VENDOR('T', 'A', 'G'), ISAPNP_FUNCTION(0x2620),
1386 (unsigned long) "Teles 16.3c2" },
1390 static struct isapnp_device_id
*ipid __devinitdata
= &hfc_ids
[0];
1391 static struct pnp_card
*pnp_c __devinitdata
= NULL
;
1395 setup_hfcsx(struct IsdnCard
*card
)
1397 struct IsdnCardState
*cs
= card
->cs
;
1400 strcpy(tmp
, hfcsx_revision
);
1401 printk(KERN_INFO
"HiSax: HFC-SX driver Rev. %s\n", HiSax_getrev(tmp
));
1403 if (!card
->para
[1] && isapnp_present()) {
1404 struct pnp_dev
*pnp_d
;
1405 while(ipid
->card_vendor
) {
1406 if ((pnp_c
= pnp_find_card(ipid
->card_vendor
,
1407 ipid
->card_device
, pnp_c
))) {
1409 if ((pnp_d
= pnp_find_dev(pnp_c
,
1410 ipid
->vendor
, ipid
->function
, pnp_d
))) {
1413 printk(KERN_INFO
"HiSax: %s detected\n",
1414 (char *)ipid
->driver_data
);
1415 pnp_disable_dev(pnp_d
);
1416 err
= pnp_activate_dev(pnp_d
);
1418 printk(KERN_WARNING
"%s: pnp_activate_dev ret(%d)\n",
1422 card
->para
[1] = pnp_port_start(pnp_d
, 0);
1423 card
->para
[0] = pnp_irq(pnp_d
, 0);
1424 if (!card
->para
[0] || !card
->para
[1]) {
1425 printk(KERN_ERR
"HFC PnP:some resources are missing %ld/%lx\n",
1426 card
->para
[0], card
->para
[1]);
1427 pnp_disable_dev(pnp_d
);
1432 printk(KERN_ERR
"HFC PnP: PnP error card found, no device\n");
1438 if (!ipid
->card_vendor
) {
1439 printk(KERN_INFO
"HFC PnP: no ISAPnP card found\n");
1444 cs
->hw
.hfcsx
.base
= card
->para
[1] & 0xfffe;
1445 cs
->irq
= card
->para
[0];
1446 cs
->hw
.hfcsx
.int_s1
= 0;
1447 cs
->dc
.hfcsx
.ph_state
= 0;
1448 cs
->hw
.hfcsx
.fifo
= 255;
1449 if ((cs
->typ
== ISDN_CTYPE_HFC_SX
) ||
1450 (cs
->typ
== ISDN_CTYPE_HFC_SP_PCMCIA
)) {
1451 if ((!cs
->hw
.hfcsx
.base
) || !request_region(cs
->hw
.hfcsx
.base
, 2, "HFCSX isdn")) {
1453 "HiSax: HFC-SX io-base %#lx already in use\n",
1457 byteout(cs
->hw
.hfcsx
.base
, cs
->hw
.hfcsx
.base
& 0xFF);
1458 byteout(cs
->hw
.hfcsx
.base
+ 1,
1459 ((cs
->hw
.hfcsx
.base
>> 8) & 3) | 0x54);
1461 cs
->hw
.hfcsx
.chip
= Read_hfc(cs
,HFCSX_CHIP_ID
);
1462 switch (cs
->hw
.hfcsx
.chip
>> 4) {
1471 "HFC-SX: invalid chip id 0x%x\n",
1472 cs
->hw
.hfcsx
.chip
>> 4);
1473 release_region(cs
->hw
.hfcsx
.base
, 2);
1476 if (!ccd_sp_irqtab
[cs
->irq
& 0xF]) {
1478 "HFC_SX: invalid irq %d specified\n",cs
->irq
& 0xF);
1479 release_region(cs
->hw
.hfcsx
.base
, 2);
1482 if (!(cs
->hw
.hfcsx
.extra
= (void *)
1483 kmalloc(sizeof(struct hfcsx_extra
), GFP_ATOMIC
))) {
1484 release_region(cs
->hw
.hfcsx
.base
, 2);
1485 printk(KERN_WARNING
"HFC-SX: unable to allocate memory\n");
1488 printk(KERN_INFO
"HFC-S%c chip detected at base 0x%x IRQ %d HZ %d\n",
1489 tmp
[0], (u_int
) cs
->hw
.hfcsx
.base
, cs
->irq
, HZ
);
1490 cs
->hw
.hfcsx
.int_m2
= 0; /* disable alle interrupts */
1491 cs
->hw
.hfcsx
.int_m1
= 0;
1492 Write_hfc(cs
, HFCSX_INT_M1
, cs
->hw
.hfcsx
.int_m1
);
1493 Write_hfc(cs
, HFCSX_INT_M2
, cs
->hw
.hfcsx
.int_m2
);
1495 return (0); /* no valid card type */
1497 cs
->dbusytimer
.function
= (void *) hfcsx_dbusy_timer
;
1498 cs
->dbusytimer
.data
= (long) cs
;
1499 init_timer(&cs
->dbusytimer
);
1500 INIT_WORK(&cs
->tqueue
, hfcsx_bh
);
1501 cs
->readisac
= NULL
;
1502 cs
->writeisac
= NULL
;
1503 cs
->readisacfifo
= NULL
;
1504 cs
->writeisacfifo
= NULL
;
1505 cs
->BC_Read_Reg
= NULL
;
1506 cs
->BC_Write_Reg
= NULL
;
1507 cs
->irq_func
= &hfcsx_interrupt
;
1509 cs
->hw
.hfcsx
.timer
.function
= (void *) hfcsx_Timer
;
1510 cs
->hw
.hfcsx
.timer
.data
= (long) cs
;
1511 cs
->hw
.hfcsx
.b_fifo_size
= 0; /* fifo size still unknown */
1512 cs
->hw
.hfcsx
.cirm
= ccd_sp_irqtab
[cs
->irq
& 0xF]; /* RAM not evaluated */
1513 init_timer(&cs
->hw
.hfcsx
.timer
);
1516 cs
->cardmsg
= &hfcsx_card_msg
;
1517 cs
->auxcmd
= &hfcsx_auxcmd
;