1 /* $Id: hfc_pci.c,v 1.48.2.4 2004/02/11 13:21:33 keil Exp $
3 * low level driver for CCD's hfc-pci based cards
5 * Author Werner Cornelius
6 * based on existing driver for CCD hfc ISA cards
7 * Copyright by Werner Cornelius <werner@isdn4linux.de>
8 * by Karsten Keil <keil@isdn4linux.de>
10 * This software may be used and distributed according to the terms
11 * of the GNU General Public License, incorporated herein by reference.
13 * For changes and modifications please read
14 * Documentation/isdn/HiSax.cert
18 #include <linux/init.h>
22 #include <linux/pci.h>
23 #include <linux/sched.h>
24 #include <linux/interrupt.h>
26 static const char *hfcpci_revision
= "$Revision: 1.48.2.4 $";
28 /* table entry in the PCI devices list */
36 #define NT_T1_COUNT 20 /* number of 3.125ms interrupts for G2 timeout */
37 #define CLKDEL_TE 0x0e /* CLKDEL in TE mode */
38 #define CLKDEL_NT 0x6c /* CLKDEL in NT mode */
40 static const PCI_ENTRY id_list
[] =
42 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_2BD0
, "CCD/Billion/Asuscom", "2BD0"},
43 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B000
, "Billion", "B000"},
44 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B006
, "Billion", "B006"},
45 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B007
, "Billion", "B007"},
46 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B008
, "Billion", "B008"},
47 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B009
, "Billion", "B009"},
48 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B00A
, "Billion", "B00A"},
49 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B00B
, "Billion", "B00B"},
50 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B00C
, "Billion", "B00C"},
51 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B100
, "Seyeon", "B100"},
52 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B700
, "Primux II S0", "B700"},
53 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B701
, "Primux II S0 NT", "B701"},
54 {PCI_VENDOR_ID_ABOCOM
, PCI_DEVICE_ID_ABOCOM_2BD1
, "Abocom/Magitek", "2BD1"},
55 {PCI_VENDOR_ID_ASUSTEK
, PCI_DEVICE_ID_ASUSTEK_0675
, "Asuscom/Askey", "675"},
56 {PCI_VENDOR_ID_BERKOM
, PCI_DEVICE_ID_BERKOM_T_CONCEPT
, "German telekom", "T-Concept"},
57 {PCI_VENDOR_ID_BERKOM
, PCI_DEVICE_ID_BERKOM_A1T
, "German telekom", "A1T"},
58 {PCI_VENDOR_ID_ANIGMA
, PCI_DEVICE_ID_ANIGMA_MC145575
, "Motorola MC145575", "MC145575"},
59 {PCI_VENDOR_ID_ZOLTRIX
, PCI_DEVICE_ID_ZOLTRIX_2BD0
, "Zoltrix", "2BD0"},
60 {PCI_VENDOR_ID_DIGI
, PCI_DEVICE_ID_DIGI_DF_M_IOM2_E
, "Digi International", "Digi DataFire Micro V IOM2 (Europe)"},
61 {PCI_VENDOR_ID_DIGI
, PCI_DEVICE_ID_DIGI_DF_M_E
, "Digi International", "Digi DataFire Micro V (Europe)"},
62 {PCI_VENDOR_ID_DIGI
, PCI_DEVICE_ID_DIGI_DF_M_IOM2_A
, "Digi International", "Digi DataFire Micro V IOM2 (North America)"},
63 {PCI_VENDOR_ID_DIGI
, PCI_DEVICE_ID_DIGI_DF_M_A
, "Digi International", "Digi DataFire Micro V (North America)"},
64 {PCI_VENDOR_ID_SITECOM
, PCI_DEVICE_ID_SITECOM_DC105V2
, "Sitecom Europe", "DC-105 ISDN PCI"},
69 /******************************************/
70 /* free hardware resources used by driver */
71 /******************************************/
73 release_io_hfcpci(struct IsdnCardState
*cs
)
75 printk(KERN_INFO
"HiSax: release hfcpci at %p\n",
76 cs
->hw
.hfcpci
.pci_io
);
77 cs
->hw
.hfcpci
.int_m2
= 0; /* interrupt output off ! */
78 Write_hfc(cs
, HFCPCI_INT_M2
, cs
->hw
.hfcpci
.int_m2
);
79 Write_hfc(cs
, HFCPCI_CIRM
, HFCPCI_RESET
); /* Reset On */
81 Write_hfc(cs
, HFCPCI_CIRM
, 0); /* Reset Off */
83 Write_hfc(cs
, HFCPCI_INT_M2
, cs
->hw
.hfcpci
.int_m2
);
84 pci_write_config_word(cs
->hw
.hfcpci
.dev
, PCI_COMMAND
, 0); /* disable memory mapped ports + busmaster */
85 del_timer(&cs
->hw
.hfcpci
.timer
);
86 pci_free_consistent(cs
->hw
.hfcpci
.dev
, 0x8000,
87 cs
->hw
.hfcpci
.fifos
, cs
->hw
.hfcpci
.dma
);
88 cs
->hw
.hfcpci
.fifos
= NULL
;
89 iounmap((void *)cs
->hw
.hfcpci
.pci_io
);
92 /********************************************************************************/
93 /* function called to reset the HFC PCI chip. A complete software reset of chip */
94 /* and fifos is done. */
95 /********************************************************************************/
97 reset_hfcpci(struct IsdnCardState
*cs
)
99 pci_write_config_word(cs
->hw
.hfcpci
.dev
, PCI_COMMAND
, PCI_ENA_MEMIO
); /* enable memory mapped ports, disable busmaster */
100 cs
->hw
.hfcpci
.int_m2
= 0; /* interrupt output off ! */
101 Write_hfc(cs
, HFCPCI_INT_M2
, cs
->hw
.hfcpci
.int_m2
);
103 printk(KERN_INFO
"HFC_PCI: resetting card\n");
104 pci_write_config_word(cs
->hw
.hfcpci
.dev
, PCI_COMMAND
, PCI_ENA_MEMIO
+ PCI_ENA_MASTER
); /* enable memory ports + busmaster */
105 Write_hfc(cs
, HFCPCI_CIRM
, HFCPCI_RESET
); /* Reset On */
107 Write_hfc(cs
, HFCPCI_CIRM
, 0); /* Reset Off */
109 if (Read_hfc(cs
, HFCPCI_STATUS
) & 2)
110 printk(KERN_WARNING
"HFC-PCI init bit busy\n");
112 cs
->hw
.hfcpci
.fifo_en
= 0x30; /* only D fifos enabled */
113 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
115 cs
->hw
.hfcpci
.trm
= 0 + HFCPCI_BTRANS_THRESMASK
; /* no echo connect , threshold */
116 Write_hfc(cs
, HFCPCI_TRM
, cs
->hw
.hfcpci
.trm
);
118 Write_hfc(cs
, HFCPCI_CLKDEL
, CLKDEL_TE
); /* ST-Bit delay for TE-Mode */
119 cs
->hw
.hfcpci
.sctrl_e
= HFCPCI_AUTO_AWAKE
;
120 Write_hfc(cs
, HFCPCI_SCTRL_E
, cs
->hw
.hfcpci
.sctrl_e
); /* S/T Auto awake */
121 cs
->hw
.hfcpci
.bswapped
= 0; /* no exchange */
122 cs
->hw
.hfcpci
.nt_mode
= 0; /* we are in TE mode */
123 cs
->hw
.hfcpci
.ctmt
= HFCPCI_TIM3_125
| HFCPCI_AUTO_TIMER
;
124 Write_hfc(cs
, HFCPCI_CTMT
, cs
->hw
.hfcpci
.ctmt
);
126 cs
->hw
.hfcpci
.int_m1
= HFCPCI_INTS_DTRANS
| HFCPCI_INTS_DREC
|
127 HFCPCI_INTS_L1STATE
| HFCPCI_INTS_TIMER
;
128 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
130 /* Clear already pending ints */
131 if (Read_hfc(cs
, HFCPCI_INT_S1
));
133 Write_hfc(cs
, HFCPCI_STATES
, HFCPCI_LOAD_STATE
| 2); /* HFC ST 2 */
135 Write_hfc(cs
, HFCPCI_STATES
, 2); /* HFC ST 2 */
136 cs
->hw
.hfcpci
.mst_m
= HFCPCI_MASTER
; /* HFC Master Mode */
138 Write_hfc(cs
, HFCPCI_MST_MODE
, cs
->hw
.hfcpci
.mst_m
);
139 cs
->hw
.hfcpci
.sctrl
= 0x40; /* set tx_lo mode, error in datasheet ! */
140 Write_hfc(cs
, HFCPCI_SCTRL
, cs
->hw
.hfcpci
.sctrl
);
141 cs
->hw
.hfcpci
.sctrl_r
= 0;
142 Write_hfc(cs
, HFCPCI_SCTRL_R
, cs
->hw
.hfcpci
.sctrl_r
);
144 /* Init GCI/IOM2 in master mode */
145 /* Slots 0 and 1 are set for B-chan 1 and 2 */
146 /* D- and monitor/CI channel are not enabled */
147 /* STIO1 is used as output for data, B1+B2 from ST->IOM+HFC */
148 /* STIO2 is used as data input, B1+B2 from IOM->ST */
149 /* ST B-channel send disabled -> continuous 1s */
150 /* The IOM slots are always enabled */
151 cs
->hw
.hfcpci
.conn
= 0x36; /* set data flow directions */
152 Write_hfc(cs
, HFCPCI_CONNECT
, cs
->hw
.hfcpci
.conn
);
153 Write_hfc(cs
, HFCPCI_B1_SSL
, 0x80); /* B1-Slot 0 STIO1 out enabled */
154 Write_hfc(cs
, HFCPCI_B2_SSL
, 0x81); /* B2-Slot 1 STIO1 out enabled */
155 Write_hfc(cs
, HFCPCI_B1_RSL
, 0x80); /* B1-Slot 0 STIO2 in enabled */
156 Write_hfc(cs
, HFCPCI_B2_RSL
, 0x81); /* B2-Slot 1 STIO2 in enabled */
158 /* Finally enable IRQ output */
159 cs
->hw
.hfcpci
.int_m2
= HFCPCI_IRQ_ENABLE
;
160 Write_hfc(cs
, HFCPCI_INT_M2
, cs
->hw
.hfcpci
.int_m2
);
161 if (Read_hfc(cs
, HFCPCI_INT_S1
));
164 /***************************************************/
165 /* Timer function called when kernel timer expires */
166 /***************************************************/
168 hfcpci_Timer(struct timer_list
*t
)
170 struct IsdnCardState
*cs
= from_timer(cs
, t
, hw
.hfcpci
.timer
);
171 cs
->hw
.hfcpci
.timer
.expires
= jiffies
+ 75;
173 /* WriteReg(cs, HFCD_DATA, HFCD_CTMT, cs->hw.hfcpci.ctmt | 0x80);
174 add_timer(&cs->hw.hfcpci.timer);
179 /*********************************/
180 /* schedule a new D-channel task */
181 /*********************************/
183 sched_event_D_pci(struct IsdnCardState
*cs
, int event
)
185 test_and_set_bit(event
, &cs
->event
);
186 schedule_work(&cs
->tqueue
);
189 /*********************************/
190 /* schedule a new b_channel task */
191 /*********************************/
193 hfcpci_sched_event(struct BCState
*bcs
, int event
)
195 test_and_set_bit(event
, &bcs
->event
);
196 schedule_work(&bcs
->tqueue
);
199 /************************************************/
200 /* select a b-channel entry matching and active */
201 /************************************************/
204 Sel_BCS(struct IsdnCardState
*cs
, int channel
)
206 if (cs
->bcs
[0].mode
&& (cs
->bcs
[0].channel
== channel
))
207 return (&cs
->bcs
[0]);
208 else if (cs
->bcs
[1].mode
&& (cs
->bcs
[1].channel
== channel
))
209 return (&cs
->bcs
[1]);
214 /***************************************/
215 /* clear the desired B-channel rx fifo */
216 /***************************************/
217 static void hfcpci_clear_fifo_rx(struct IsdnCardState
*cs
, int fifo
)
222 bzr
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxbz_b2
;
223 fifo_state
= cs
->hw
.hfcpci
.fifo_en
& HFCPCI_FIFOEN_B2RX
;
225 bzr
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxbz_b1
;
226 fifo_state
= cs
->hw
.hfcpci
.fifo_en
& HFCPCI_FIFOEN_B1RX
;
229 cs
->hw
.hfcpci
.fifo_en
^= fifo_state
;
230 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
231 cs
->hw
.hfcpci
.last_bfifo_cnt
[fifo
] = 0;
232 bzr
->za
[MAX_B_FRAMES
].z1
= B_FIFO_SIZE
+ B_SUB_VAL
- 1;
233 bzr
->za
[MAX_B_FRAMES
].z2
= bzr
->za
[MAX_B_FRAMES
].z1
;
234 bzr
->f1
= MAX_B_FRAMES
;
235 bzr
->f2
= bzr
->f1
; /* init F pointers to remain constant */
237 cs
->hw
.hfcpci
.fifo_en
|= fifo_state
;
238 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
241 /***************************************/
242 /* clear the desired B-channel tx fifo */
243 /***************************************/
244 static void hfcpci_clear_fifo_tx(struct IsdnCardState
*cs
, int fifo
)
249 bzt
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.txbz_b2
;
250 fifo_state
= cs
->hw
.hfcpci
.fifo_en
& HFCPCI_FIFOEN_B2TX
;
252 bzt
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.txbz_b1
;
253 fifo_state
= cs
->hw
.hfcpci
.fifo_en
& HFCPCI_FIFOEN_B1TX
;
256 cs
->hw
.hfcpci
.fifo_en
^= fifo_state
;
257 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
258 bzt
->za
[MAX_B_FRAMES
].z1
= B_FIFO_SIZE
+ B_SUB_VAL
- 1;
259 bzt
->za
[MAX_B_FRAMES
].z2
= bzt
->za
[MAX_B_FRAMES
].z1
;
260 bzt
->f1
= MAX_B_FRAMES
;
261 bzt
->f2
= bzt
->f1
; /* init F pointers to remain constant */
263 cs
->hw
.hfcpci
.fifo_en
|= fifo_state
;
264 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
267 /*********************************************/
268 /* read a complete B-frame out of the buffer */
269 /*********************************************/
270 static struct sk_buff
272 hfcpci_empty_fifo(struct BCState
*bcs
, bzfifo_type
*bz
, u_char
*bdata
, int count
)
274 u_char
*ptr
, *ptr1
, new_f2
;
276 struct IsdnCardState
*cs
= bcs
->cs
;
277 int total
, maxlen
, new_z2
;
280 if ((cs
->debug
& L1_DEB_HSCX
) && !(cs
->debug
& L1_DEB_HSCX_FIFO
))
281 debugl1(cs
, "hfcpci_empty_fifo");
282 zp
= &bz
->za
[bz
->f2
]; /* point to Z-Regs */
283 new_z2
= zp
->z2
+ count
; /* new position in fifo */
284 if (new_z2
>= (B_FIFO_SIZE
+ B_SUB_VAL
))
285 new_z2
-= B_FIFO_SIZE
; /* buffer wrap */
286 new_f2
= (bz
->f2
+ 1) & MAX_B_FRAMES
;
287 if ((count
> HSCX_BUFMAX
+ 3) || (count
< 4) ||
288 (*(bdata
+ (zp
->z1
- B_SUB_VAL
)))) {
289 if (cs
->debug
& L1_DEB_WARN
)
290 debugl1(cs
, "hfcpci_empty_fifo: incoming packet invalid length %d or crc", count
);
291 #ifdef ERROR_STATISTIC
294 bz
->za
[new_f2
].z2
= new_z2
;
295 bz
->f2
= new_f2
; /* next buffer */
297 } else if (!(skb
= dev_alloc_skb(count
- 3)))
298 printk(KERN_WARNING
"HFCPCI: receive out of memory\n");
302 ptr
= skb_put(skb
, count
);
304 if (zp
->z2
+ count
<= B_FIFO_SIZE
+ B_SUB_VAL
)
305 maxlen
= count
; /* complete transfer */
307 maxlen
= B_FIFO_SIZE
+ B_SUB_VAL
- zp
->z2
; /* maximum */
309 ptr1
= bdata
+ (zp
->z2
- B_SUB_VAL
); /* start of data */
310 memcpy(ptr
, ptr1
, maxlen
); /* copy data */
313 if (count
) { /* rest remaining */
315 ptr1
= bdata
; /* start of buffer */
316 memcpy(ptr
, ptr1
, count
); /* rest */
318 bz
->za
[new_f2
].z2
= new_z2
;
319 bz
->f2
= new_f2
; /* next buffer */
325 /*******************************/
326 /* D-channel receive procedure */
327 /*******************************/
330 receive_dmsg(struct IsdnCardState
*cs
)
340 df
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->d_chan
.d_rx
;
341 if (test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
342 debugl1(cs
, "rec_dmsg blocked");
345 while (((df
->f1
& D_FREG_MASK
) != (df
->f2
& D_FREG_MASK
)) && count
--) {
346 zp
= &df
->za
[df
->f2
& D_FREG_MASK
];
347 rcnt
= zp
->z1
- zp
->z2
;
351 if (cs
->debug
& L1_DEB_ISAC
)
352 debugl1(cs
, "hfcpci recd f1(%d) f2(%d) z1(%x) z2(%x) cnt(%d)",
353 df
->f1
, df
->f2
, zp
->z1
, zp
->z2
, rcnt
);
355 if ((rcnt
> MAX_DFRAME_LEN
+ 3) || (rcnt
< 4) ||
356 (df
->data
[zp
->z1
])) {
357 if (cs
->debug
& L1_DEB_WARN
)
358 debugl1(cs
, "empty_fifo hfcpci packet inv. len %d or crc %d", rcnt
, df
->data
[zp
->z1
]);
359 #ifdef ERROR_STATISTIC
362 df
->f2
= ((df
->f2
+ 1) & MAX_D_FRAMES
) | (MAX_D_FRAMES
+ 1); /* next buffer */
363 df
->za
[df
->f2
& D_FREG_MASK
].z2
= (zp
->z2
+ rcnt
) & (D_FIFO_SIZE
- 1);
364 } else if ((skb
= dev_alloc_skb(rcnt
- 3))) {
367 ptr
= skb_put(skb
, rcnt
);
369 if (zp
->z2
+ rcnt
<= D_FIFO_SIZE
)
370 maxlen
= rcnt
; /* complete transfer */
372 maxlen
= D_FIFO_SIZE
- zp
->z2
; /* maximum */
374 ptr1
= df
->data
+ zp
->z2
; /* start of data */
375 memcpy(ptr
, ptr1
, maxlen
); /* copy data */
378 if (rcnt
) { /* rest remaining */
380 ptr1
= df
->data
; /* start of buffer */
381 memcpy(ptr
, ptr1
, rcnt
); /* rest */
383 df
->f2
= ((df
->f2
+ 1) & MAX_D_FRAMES
) | (MAX_D_FRAMES
+ 1); /* next buffer */
384 df
->za
[df
->f2
& D_FREG_MASK
].z2
= (zp
->z2
+ total
) & (D_FIFO_SIZE
- 1);
386 skb_queue_tail(&cs
->rq
, skb
);
387 sched_event_D_pci(cs
, D_RCVBUFREADY
);
389 printk(KERN_WARNING
"HFC-PCI: D receive out of memory\n");
391 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
395 /*******************************************************************************/
396 /* check for transparent receive data and read max one threshold size if avail */
397 /*******************************************************************************/
399 hfcpci_empty_fifo_trans(struct BCState
*bcs
, bzfifo_type
*bz
, u_char
*bdata
)
401 unsigned short *z1r
, *z2r
;
402 int new_z2
, fcnt
, maxlen
;
406 z1r
= &bz
->za
[MAX_B_FRAMES
].z1
; /* pointer to z reg */
409 if (!(fcnt
= *z1r
- *z2r
))
410 return (0); /* no data avail */
413 fcnt
+= B_FIFO_SIZE
; /* bytes actually buffered */
414 if (fcnt
> HFCPCI_BTRANS_THRESHOLD
)
415 fcnt
= HFCPCI_BTRANS_THRESHOLD
; /* limit size */
417 new_z2
= *z2r
+ fcnt
; /* new position in fifo */
418 if (new_z2
>= (B_FIFO_SIZE
+ B_SUB_VAL
))
419 new_z2
-= B_FIFO_SIZE
; /* buffer wrap */
421 if (!(skb
= dev_alloc_skb(fcnt
)))
422 printk(KERN_WARNING
"HFCPCI: receive out of memory\n");
424 ptr
= skb_put(skb
, fcnt
);
425 if (*z2r
+ fcnt
<= B_FIFO_SIZE
+ B_SUB_VAL
)
426 maxlen
= fcnt
; /* complete transfer */
428 maxlen
= B_FIFO_SIZE
+ B_SUB_VAL
- *z2r
; /* maximum */
430 ptr1
= bdata
+ (*z2r
- B_SUB_VAL
); /* start of data */
431 memcpy(ptr
, ptr1
, maxlen
); /* copy data */
434 if (fcnt
) { /* rest remaining */
436 ptr1
= bdata
; /* start of buffer */
437 memcpy(ptr
, ptr1
, fcnt
); /* rest */
439 skb_queue_tail(&bcs
->rqueue
, skb
);
440 hfcpci_sched_event(bcs
, B_RCVBUFREADY
);
443 *z2r
= new_z2
; /* new position */
445 } /* hfcpci_empty_fifo_trans */
447 /**********************************/
448 /* B-channel main receive routine */
449 /**********************************/
451 main_rec_hfcpci(struct BCState
*bcs
)
453 struct IsdnCardState
*cs
= bcs
->cs
;
455 int receive
, count
= 5;
462 if ((bcs
->channel
) && (!cs
->hw
.hfcpci
.bswapped
)) {
463 bz
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxbz_b2
;
464 bdata
= ((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxdat_b2
;
467 bz
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxbz_b1
;
468 bdata
= ((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxdat_b1
;
473 if (test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
474 debugl1(cs
, "rec_data %d blocked", bcs
->channel
);
477 if (bz
->f1
!= bz
->f2
) {
478 if (cs
->debug
& L1_DEB_HSCX
)
479 debugl1(cs
, "hfcpci rec %d f1(%d) f2(%d)",
480 bcs
->channel
, bz
->f1
, bz
->f2
);
481 zp
= &bz
->za
[bz
->f2
];
483 rcnt
= zp
->z1
- zp
->z2
;
487 if (cs
->debug
& L1_DEB_HSCX
)
488 debugl1(cs
, "hfcpci rec %d z1(%x) z2(%x) cnt(%d)",
489 bcs
->channel
, zp
->z1
, zp
->z2
, rcnt
);
490 if ((skb
= hfcpci_empty_fifo(bcs
, bz
, bdata
, rcnt
))) {
491 skb_queue_tail(&bcs
->rqueue
, skb
);
492 hfcpci_sched_event(bcs
, B_RCVBUFREADY
);
494 rcnt
= bz
->f1
- bz
->f2
;
496 rcnt
+= MAX_B_FRAMES
+ 1;
497 if (cs
->hw
.hfcpci
.last_bfifo_cnt
[real_fifo
] > rcnt
+ 1) {
499 hfcpci_clear_fifo_rx(cs
, real_fifo
);
501 cs
->hw
.hfcpci
.last_bfifo_cnt
[real_fifo
] = rcnt
;
506 } else if (bcs
->mode
== L1_MODE_TRANS
)
507 receive
= hfcpci_empty_fifo_trans(bcs
, bz
, bdata
);
510 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
511 if (count
&& receive
)
515 /**************************/
516 /* D-channel send routine */
517 /**************************/
519 hfcpci_fill_dfifo(struct IsdnCardState
*cs
)
522 int count
, new_z1
, maxlen
;
524 u_char
*src
, *dst
, new_f1
;
528 if (cs
->tx_skb
->len
<= 0)
531 df
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->d_chan
.d_tx
;
533 if (cs
->debug
& L1_DEB_ISAC
)
534 debugl1(cs
, "hfcpci_fill_Dfifo f1(%d) f2(%d) z1(f1)(%x)",
536 df
->za
[df
->f1
& D_FREG_MASK
].z1
);
537 fcnt
= df
->f1
- df
->f2
; /* frame count actually buffered */
539 fcnt
+= (MAX_D_FRAMES
+ 1); /* if wrap around */
540 if (fcnt
> (MAX_D_FRAMES
- 1)) {
541 if (cs
->debug
& L1_DEB_ISAC
)
542 debugl1(cs
, "hfcpci_fill_Dfifo more as 14 frames");
543 #ifdef ERROR_STATISTIC
548 /* now determine free bytes in FIFO buffer */
549 count
= df
->za
[df
->f2
& D_FREG_MASK
].z2
- df
->za
[df
->f1
& D_FREG_MASK
].z1
- 1;
551 count
+= D_FIFO_SIZE
; /* count now contains available bytes */
553 if (cs
->debug
& L1_DEB_ISAC
)
554 debugl1(cs
, "hfcpci_fill_Dfifo count(%u/%d)",
555 cs
->tx_skb
->len
, count
);
556 if (count
< cs
->tx_skb
->len
) {
557 if (cs
->debug
& L1_DEB_ISAC
)
558 debugl1(cs
, "hfcpci_fill_Dfifo no fifo mem");
561 count
= cs
->tx_skb
->len
; /* get frame len */
562 new_z1
= (df
->za
[df
->f1
& D_FREG_MASK
].z1
+ count
) & (D_FIFO_SIZE
- 1);
563 new_f1
= ((df
->f1
+ 1) & D_FREG_MASK
) | (D_FREG_MASK
+ 1);
564 src
= cs
->tx_skb
->data
; /* source pointer */
565 dst
= df
->data
+ df
->za
[df
->f1
& D_FREG_MASK
].z1
;
566 maxlen
= D_FIFO_SIZE
- df
->za
[df
->f1
& D_FREG_MASK
].z1
; /* end fifo */
568 maxlen
= count
; /* limit size */
569 memcpy(dst
, src
, maxlen
); /* first copy */
571 count
-= maxlen
; /* remaining bytes */
573 dst
= df
->data
; /* start of buffer */
574 src
+= maxlen
; /* new position */
575 memcpy(dst
, src
, count
);
577 df
->za
[new_f1
& D_FREG_MASK
].z1
= new_z1
; /* for next buffer */
578 df
->za
[df
->f1
& D_FREG_MASK
].z1
= new_z1
; /* new pos actual buffer */
579 df
->f1
= new_f1
; /* next frame */
581 dev_kfree_skb_any(cs
->tx_skb
);
585 /**************************/
586 /* B-channel send routine */
587 /**************************/
589 hfcpci_fill_fifo(struct BCState
*bcs
)
591 struct IsdnCardState
*cs
= bcs
->cs
;
596 u_char new_f1
, *src
, *dst
;
597 unsigned short *z1t
, *z2t
;
601 if (bcs
->tx_skb
->len
<= 0)
604 if ((bcs
->channel
) && (!cs
->hw
.hfcpci
.bswapped
)) {
605 bz
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.txbz_b2
;
606 bdata
= ((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.txdat_b2
;
608 bz
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.txbz_b1
;
609 bdata
= ((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.txdat_b1
;
612 if (bcs
->mode
== L1_MODE_TRANS
) {
613 z1t
= &bz
->za
[MAX_B_FRAMES
].z1
;
615 if (cs
->debug
& L1_DEB_HSCX
)
616 debugl1(cs
, "hfcpci_fill_fifo_trans %d z1(%x) z2(%x)",
617 bcs
->channel
, *z1t
, *z2t
);
620 fcnt
+= B_FIFO_SIZE
; /* fcnt contains available bytes in fifo */
621 fcnt
= B_FIFO_SIZE
- fcnt
; /* remaining bytes to send */
623 while ((fcnt
< 2 * HFCPCI_BTRANS_THRESHOLD
) && (bcs
->tx_skb
)) {
624 if (bcs
->tx_skb
->len
< B_FIFO_SIZE
- fcnt
) {
625 /* data is suitable for fifo */
626 count
= bcs
->tx_skb
->len
;
628 new_z1
= *z1t
+ count
; /* new buffer Position */
629 if (new_z1
>= (B_FIFO_SIZE
+ B_SUB_VAL
))
630 new_z1
-= B_FIFO_SIZE
; /* buffer wrap */
631 src
= bcs
->tx_skb
->data
; /* source pointer */
632 dst
= bdata
+ (*z1t
- B_SUB_VAL
);
633 maxlen
= (B_FIFO_SIZE
+ B_SUB_VAL
) - *z1t
; /* end of fifo */
635 maxlen
= count
; /* limit size */
636 memcpy(dst
, src
, maxlen
); /* first copy */
638 count
-= maxlen
; /* remaining bytes */
640 dst
= bdata
; /* start of buffer */
641 src
+= maxlen
; /* new position */
642 memcpy(dst
, src
, count
);
644 bcs
->tx_cnt
-= bcs
->tx_skb
->len
;
645 fcnt
+= bcs
->tx_skb
->len
;
646 *z1t
= new_z1
; /* now send data */
647 } else if (cs
->debug
& L1_DEB_HSCX
)
648 debugl1(cs
, "hfcpci_fill_fifo_trans %d frame length %d discarded",
649 bcs
->channel
, bcs
->tx_skb
->len
);
651 if (test_bit(FLG_LLI_L1WAKEUP
, &bcs
->st
->lli
.flag
) &&
652 (PACKET_NOACK
!= bcs
->tx_skb
->pkt_type
)) {
654 spin_lock_irqsave(&bcs
->aclock
, flags
);
655 bcs
->ackcnt
+= bcs
->tx_skb
->len
;
656 spin_unlock_irqrestore(&bcs
->aclock
, flags
);
657 schedule_event(bcs
, B_ACKPENDING
);
660 dev_kfree_skb_any(bcs
->tx_skb
);
661 bcs
->tx_skb
= skb_dequeue(&bcs
->squeue
); /* fetch next data */
663 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
666 if (cs
->debug
& L1_DEB_HSCX
)
667 debugl1(cs
, "hfcpci_fill_fifo_hdlc %d f1(%d) f2(%d) z1(f1)(%x)",
668 bcs
->channel
, bz
->f1
, bz
->f2
,
671 fcnt
= bz
->f1
- bz
->f2
; /* frame count actually buffered */
673 fcnt
+= (MAX_B_FRAMES
+ 1); /* if wrap around */
674 if (fcnt
> (MAX_B_FRAMES
- 1)) {
675 if (cs
->debug
& L1_DEB_HSCX
)
676 debugl1(cs
, "hfcpci_fill_Bfifo more as 14 frames");
679 /* now determine free bytes in FIFO buffer */
680 count
= bz
->za
[bz
->f2
].z2
- bz
->za
[bz
->f1
].z1
- 1;
682 count
+= B_FIFO_SIZE
; /* count now contains available bytes */
684 if (cs
->debug
& L1_DEB_HSCX
)
685 debugl1(cs
, "hfcpci_fill_fifo %d count(%u/%d),%lx",
686 bcs
->channel
, bcs
->tx_skb
->len
,
687 count
, current
->state
);
689 if (count
< bcs
->tx_skb
->len
) {
690 if (cs
->debug
& L1_DEB_HSCX
)
691 debugl1(cs
, "hfcpci_fill_fifo no fifo mem");
694 count
= bcs
->tx_skb
->len
; /* get frame len */
695 new_z1
= bz
->za
[bz
->f1
].z1
+ count
; /* new buffer Position */
696 if (new_z1
>= (B_FIFO_SIZE
+ B_SUB_VAL
))
697 new_z1
-= B_FIFO_SIZE
; /* buffer wrap */
699 new_f1
= ((bz
->f1
+ 1) & MAX_B_FRAMES
);
700 src
= bcs
->tx_skb
->data
; /* source pointer */
701 dst
= bdata
+ (bz
->za
[bz
->f1
].z1
- B_SUB_VAL
);
702 maxlen
= (B_FIFO_SIZE
+ B_SUB_VAL
) - bz
->za
[bz
->f1
].z1
; /* end fifo */
704 maxlen
= count
; /* limit size */
705 memcpy(dst
, src
, maxlen
); /* first copy */
707 count
-= maxlen
; /* remaining bytes */
709 dst
= bdata
; /* start of buffer */
710 src
+= maxlen
; /* new position */
711 memcpy(dst
, src
, count
);
713 bcs
->tx_cnt
-= bcs
->tx_skb
->len
;
714 if (test_bit(FLG_LLI_L1WAKEUP
, &bcs
->st
->lli
.flag
) &&
715 (PACKET_NOACK
!= bcs
->tx_skb
->pkt_type
)) {
717 spin_lock_irqsave(&bcs
->aclock
, flags
);
718 bcs
->ackcnt
+= bcs
->tx_skb
->len
;
719 spin_unlock_irqrestore(&bcs
->aclock
, flags
);
720 schedule_event(bcs
, B_ACKPENDING
);
723 bz
->za
[new_f1
].z1
= new_z1
; /* for next buffer */
724 bz
->f1
= new_f1
; /* next frame */
726 dev_kfree_skb_any(bcs
->tx_skb
);
728 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
731 /**********************************************/
732 /* D-channel l1 state call for leased NT-mode */
733 /**********************************************/
735 dch_nt_l2l1(struct PStack
*st
, int pr
, void *arg
)
737 struct IsdnCardState
*cs
= (struct IsdnCardState
*) st
->l1
.hardware
;
740 case (PH_DATA
| REQUEST
):
741 case (PH_PULL
| REQUEST
):
742 case (PH_PULL
| INDICATION
):
743 st
->l1
.l1hw(st
, pr
, arg
);
745 case (PH_ACTIVATE
| REQUEST
):
746 st
->l1
.l1l2(st
, PH_ACTIVATE
| CONFIRM
, NULL
);
748 case (PH_TESTLOOP
| REQUEST
):
750 debugl1(cs
, "PH_TEST_LOOP B1");
752 debugl1(cs
, "PH_TEST_LOOP B2");
753 if (!(3 & (long) arg
))
754 debugl1(cs
, "PH_TEST_LOOP DISABLED");
755 st
->l1
.l1hw(st
, HW_TESTLOOP
| REQUEST
, arg
);
759 debugl1(cs
, "dch_nt_l2l1 msg %04X unhandled", pr
);
766 /***********************/
767 /* set/reset echo mode */
768 /***********************/
770 hfcpci_auxcmd(struct IsdnCardState
*cs
, isdn_ctrl
*ic
)
773 int i
= *(unsigned int *) ic
->parm
.num
;
775 if ((ic
->arg
== 98) &&
776 (!(cs
->hw
.hfcpci
.int_m1
& (HFCPCI_INTS_B2TRANS
+ HFCPCI_INTS_B2REC
+ HFCPCI_INTS_B1TRANS
+ HFCPCI_INTS_B1REC
)))) {
777 spin_lock_irqsave(&cs
->lock
, flags
);
778 Write_hfc(cs
, HFCPCI_CLKDEL
, CLKDEL_NT
); /* ST-Bit delay for NT-Mode */
779 Write_hfc(cs
, HFCPCI_STATES
, HFCPCI_LOAD_STATE
| 0); /* HFC ST G0 */
781 cs
->hw
.hfcpci
.sctrl
|= SCTRL_MODE_NT
;
782 Write_hfc(cs
, HFCPCI_SCTRL
, cs
->hw
.hfcpci
.sctrl
); /* set NT-mode */
784 Write_hfc(cs
, HFCPCI_STATES
, HFCPCI_LOAD_STATE
| 1); /* HFC ST G1 */
786 Write_hfc(cs
, HFCPCI_STATES
, 1 | HFCPCI_ACTIVATE
| HFCPCI_DO_ACTION
);
787 cs
->dc
.hfcpci
.ph_state
= 1;
788 cs
->hw
.hfcpci
.nt_mode
= 1;
789 cs
->hw
.hfcpci
.nt_timer
= 0;
790 cs
->stlist
->l2
.l2l1
= dch_nt_l2l1
;
791 spin_unlock_irqrestore(&cs
->lock
, flags
);
792 debugl1(cs
, "NT mode activated");
795 if ((cs
->chanlimit
> 1) || (cs
->hw
.hfcpci
.bswapped
) ||
796 (cs
->hw
.hfcpci
.nt_mode
) || (ic
->arg
!= 12))
799 spin_lock_irqsave(&cs
->lock
, flags
);
802 cs
->hw
.hfcpci
.trm
|= 0x20; /* enable echo chan */
803 cs
->hw
.hfcpci
.int_m1
|= HFCPCI_INTS_B2REC
;
804 cs
->hw
.hfcpci
.fifo_en
|= HFCPCI_FIFOEN_B2RX
;
807 cs
->hw
.hfcpci
.trm
&= ~0x20; /* disable echo chan */
808 cs
->hw
.hfcpci
.int_m1
&= ~HFCPCI_INTS_B2REC
;
809 cs
->hw
.hfcpci
.fifo_en
&= ~HFCPCI_FIFOEN_B2RX
;
811 cs
->hw
.hfcpci
.sctrl_r
&= ~SCTRL_B2_ENA
;
812 cs
->hw
.hfcpci
.sctrl
&= ~SCTRL_B2_ENA
;
813 cs
->hw
.hfcpci
.conn
|= 0x10; /* B2-IOM -> B2-ST */
814 cs
->hw
.hfcpci
.ctmt
&= ~2;
815 Write_hfc(cs
, HFCPCI_CTMT
, cs
->hw
.hfcpci
.ctmt
);
816 Write_hfc(cs
, HFCPCI_SCTRL_R
, cs
->hw
.hfcpci
.sctrl_r
);
817 Write_hfc(cs
, HFCPCI_SCTRL
, cs
->hw
.hfcpci
.sctrl
);
818 Write_hfc(cs
, HFCPCI_CONNECT
, cs
->hw
.hfcpci
.conn
);
819 Write_hfc(cs
, HFCPCI_TRM
, cs
->hw
.hfcpci
.trm
);
820 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
821 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
822 spin_unlock_irqrestore(&cs
->lock
, flags
);
824 } /* hfcpci_auxcmd */
826 /*****************************/
827 /* E-channel receive routine */
828 /*****************************/
830 receive_emsg(struct IsdnCardState
*cs
)
833 int receive
, count
= 5;
837 u_char
*ptr
, *ptr1
, new_f2
;
838 int total
, maxlen
, new_z2
;
839 u_char e_buffer
[256];
841 bz
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxbz_b2
;
842 bdata
= ((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxdat_b2
;
845 if (test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
846 debugl1(cs
, "echo_rec_data blocked");
849 if (bz
->f1
!= bz
->f2
) {
850 if (cs
->debug
& L1_DEB_ISAC
)
851 debugl1(cs
, "hfcpci e_rec f1(%d) f2(%d)",
853 zp
= &bz
->za
[bz
->f2
];
855 rcnt
= zp
->z1
- zp
->z2
;
859 if (cs
->debug
& L1_DEB_ISAC
)
860 debugl1(cs
, "hfcpci e_rec z1(%x) z2(%x) cnt(%d)",
861 zp
->z1
, zp
->z2
, rcnt
);
862 new_z2
= zp
->z2
+ rcnt
; /* new position in fifo */
863 if (new_z2
>= (B_FIFO_SIZE
+ B_SUB_VAL
))
864 new_z2
-= B_FIFO_SIZE
; /* buffer wrap */
865 new_f2
= (bz
->f2
+ 1) & MAX_B_FRAMES
;
866 if ((rcnt
> 256 + 3) || (count
< 4) ||
867 (*(bdata
+ (zp
->z1
- B_SUB_VAL
)))) {
868 if (cs
->debug
& L1_DEB_WARN
)
869 debugl1(cs
, "hfcpci_empty_echan: incoming packet invalid length %d or crc", rcnt
);
870 bz
->za
[new_f2
].z2
= new_z2
;
871 bz
->f2
= new_f2
; /* next buffer */
877 if (zp
->z2
<= B_FIFO_SIZE
+ B_SUB_VAL
)
878 maxlen
= rcnt
; /* complete transfer */
880 maxlen
= B_FIFO_SIZE
+ B_SUB_VAL
- zp
->z2
; /* maximum */
882 ptr1
= bdata
+ (zp
->z2
- B_SUB_VAL
); /* start of data */
883 memcpy(ptr
, ptr1
, maxlen
); /* copy data */
886 if (rcnt
) { /* rest remaining */
888 ptr1
= bdata
; /* start of buffer */
889 memcpy(ptr
, ptr1
, rcnt
); /* rest */
891 bz
->za
[new_f2
].z2
= new_z2
;
892 bz
->f2
= new_f2
; /* next buffer */
893 if (cs
->debug
& DEB_DLOG_HEX
) {
895 if ((total
- 3) < MAX_DLOG_SPACE
/ 3 - 10) {
901 ptr
+= QuickHex(ptr
, e_buffer
, total
- 3);
905 HiSax_putstatus(cs
, NULL
, cs
->dlog
);
907 HiSax_putstatus(cs
, "LogEcho: ", "warning Frame too big (%d)", total
- 3);
911 rcnt
= bz
->f1
- bz
->f2
;
913 rcnt
+= MAX_B_FRAMES
+ 1;
920 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
921 if (count
&& receive
)
925 /*********************/
926 /* Interrupt handler */
927 /*********************/
929 hfcpci_interrupt(int intno
, void *dev_id
)
932 struct IsdnCardState
*cs
= dev_id
;
938 if (!(cs
->hw
.hfcpci
.int_m2
& 0x08)) {
939 debugl1(cs
, "HFC-PCI: int_m2 %x not initialised", cs
->hw
.hfcpci
.int_m2
);
940 return IRQ_NONE
; /* not initialised */
942 spin_lock_irqsave(&cs
->lock
, flags
);
943 if (HFCPCI_ANYINT
& (stat
= Read_hfc(cs
, HFCPCI_STATUS
))) {
944 val
= Read_hfc(cs
, HFCPCI_INT_S1
);
945 if (cs
->debug
& L1_DEB_ISAC
)
946 debugl1(cs
, "HFC-PCI: stat(%02x) s1(%02x)", stat
, val
);
948 spin_unlock_irqrestore(&cs
->lock
, flags
);
951 if (cs
->debug
& L1_DEB_ISAC
)
952 debugl1(cs
, "HFC-PCI irq %x %s", val
,
953 test_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
) ?
954 "locked" : "unlocked");
955 val
&= cs
->hw
.hfcpci
.int_m1
;
956 if (val
& 0x40) { /* state machine irq */
957 exval
= Read_hfc(cs
, HFCPCI_STATES
) & 0xf;
958 if (cs
->debug
& L1_DEB_ISAC
)
959 debugl1(cs
, "ph_state chg %d->%d", cs
->dc
.hfcpci
.ph_state
,
961 cs
->dc
.hfcpci
.ph_state
= exval
;
962 sched_event_D_pci(cs
, D_L1STATECHANGE
);
965 if (val
& 0x80) { /* timer irq */
966 if (cs
->hw
.hfcpci
.nt_mode
) {
967 if ((--cs
->hw
.hfcpci
.nt_timer
) < 0)
968 sched_event_D_pci(cs
, D_L1STATECHANGE
);
971 Write_hfc(cs
, HFCPCI_CTMT
, cs
->hw
.hfcpci
.ctmt
| HFCPCI_CLTIMER
);
974 if (test_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
975 cs
->hw
.hfcpci
.int_s1
|= val
;
976 spin_unlock_irqrestore(&cs
->lock
, flags
);
979 if (cs
->hw
.hfcpci
.int_s1
& 0x18) {
981 val
= cs
->hw
.hfcpci
.int_s1
;
982 cs
->hw
.hfcpci
.int_s1
= exval
;
985 if (!(bcs
= Sel_BCS(cs
, cs
->hw
.hfcpci
.bswapped
? 1 : 0))) {
987 debugl1(cs
, "hfcpci spurious 0x08 IRQ");
989 main_rec_hfcpci(bcs
);
994 else if (!(bcs
= Sel_BCS(cs
, 1))) {
996 debugl1(cs
, "hfcpci spurious 0x10 IRQ");
998 main_rec_hfcpci(bcs
);
1001 if (!(bcs
= Sel_BCS(cs
, cs
->hw
.hfcpci
.bswapped
? 1 : 0))) {
1003 debugl1(cs
, "hfcpci spurious 0x01 IRQ");
1006 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1007 hfcpci_fill_fifo(bcs
);
1008 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1010 debugl1(cs
, "fill_data %d blocked", bcs
->channel
);
1012 if ((bcs
->tx_skb
= skb_dequeue(&bcs
->squeue
))) {
1013 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1014 hfcpci_fill_fifo(bcs
);
1015 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1017 debugl1(cs
, "fill_data %d blocked", bcs
->channel
);
1019 hfcpci_sched_event(bcs
, B_XMTBUFREADY
);
1025 if (!(bcs
= Sel_BCS(cs
, 1))) {
1027 debugl1(cs
, "hfcpci spurious 0x02 IRQ");
1030 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1031 hfcpci_fill_fifo(bcs
);
1032 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1034 debugl1(cs
, "fill_data %d blocked", bcs
->channel
);
1036 if ((bcs
->tx_skb
= skb_dequeue(&bcs
->squeue
))) {
1037 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1038 hfcpci_fill_fifo(bcs
);
1039 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1041 debugl1(cs
, "fill_data %d blocked", bcs
->channel
);
1043 hfcpci_sched_event(bcs
, B_XMTBUFREADY
);
1048 if (val
& 0x20) { /* receive dframe */
1051 if (val
& 0x04) { /* dframe transmitted */
1052 if (test_and_clear_bit(FLG_DBUSY_TIMER
, &cs
->HW_Flags
))
1053 del_timer(&cs
->dbusytimer
);
1054 if (test_and_clear_bit(FLG_L1_DBUSY
, &cs
->HW_Flags
))
1055 sched_event_D_pci(cs
, D_CLEARBUSY
);
1057 if (cs
->tx_skb
->len
) {
1058 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1059 hfcpci_fill_dfifo(cs
);
1060 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1062 debugl1(cs
, "hfcpci_fill_dfifo irq blocked");
1066 dev_kfree_skb_irq(cs
->tx_skb
);
1071 if ((cs
->tx_skb
= skb_dequeue(&cs
->sq
))) {
1073 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1074 hfcpci_fill_dfifo(cs
);
1075 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1077 debugl1(cs
, "hfcpci_fill_dfifo irq blocked");
1080 sched_event_D_pci(cs
, D_XMTBUFREADY
);
1083 if (cs
->hw
.hfcpci
.int_s1
&& count
--) {
1084 val
= cs
->hw
.hfcpci
.int_s1
;
1085 cs
->hw
.hfcpci
.int_s1
= 0;
1086 if (cs
->debug
& L1_DEB_ISAC
)
1087 debugl1(cs
, "HFC-PCI irq %x loop %d", val
, 15 - count
);
1091 spin_unlock_irqrestore(&cs
->lock
, flags
);
1095 /********************************************************************/
1096 /* timer callback for D-chan busy resolution. Currently no function */
1097 /********************************************************************/
1099 hfcpci_dbusy_timer(struct timer_list
*t
)
1103 /*************************************/
1104 /* Layer 1 D-channel hardware access */
1105 /*************************************/
1107 HFCPCI_l1hw(struct PStack
*st
, int pr
, void *arg
)
1110 struct IsdnCardState
*cs
= (struct IsdnCardState
*) st
->l1
.hardware
;
1111 struct sk_buff
*skb
= arg
;
1114 case (PH_DATA
| REQUEST
):
1115 if (cs
->debug
& DEB_DLOG_HEX
)
1116 LogFrame(cs
, skb
->data
, skb
->len
);
1117 if (cs
->debug
& DEB_DLOG_VERBOSE
)
1118 dlogframe(cs
, skb
, 0);
1119 spin_lock_irqsave(&cs
->lock
, flags
);
1121 skb_queue_tail(&cs
->sq
, skb
);
1122 #ifdef L2FRAME_DEBUG /* psa */
1123 if (cs
->debug
& L1_DEB_LAPD
)
1124 Logl2Frame(cs
, skb
, "PH_DATA Queued", 0);
1129 #ifdef L2FRAME_DEBUG /* psa */
1130 if (cs
->debug
& L1_DEB_LAPD
)
1131 Logl2Frame(cs
, skb
, "PH_DATA", 0);
1133 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1134 hfcpci_fill_dfifo(cs
);
1135 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1137 debugl1(cs
, "hfcpci_fill_dfifo blocked");
1140 spin_unlock_irqrestore(&cs
->lock
, flags
);
1142 case (PH_PULL
| INDICATION
):
1143 spin_lock_irqsave(&cs
->lock
, flags
);
1145 if (cs
->debug
& L1_DEB_WARN
)
1146 debugl1(cs
, " l2l1 tx_skb exist this shouldn't happen");
1147 skb_queue_tail(&cs
->sq
, skb
);
1148 spin_unlock_irqrestore(&cs
->lock
, flags
);
1151 if (cs
->debug
& DEB_DLOG_HEX
)
1152 LogFrame(cs
, skb
->data
, skb
->len
);
1153 if (cs
->debug
& DEB_DLOG_VERBOSE
)
1154 dlogframe(cs
, skb
, 0);
1157 #ifdef L2FRAME_DEBUG /* psa */
1158 if (cs
->debug
& L1_DEB_LAPD
)
1159 Logl2Frame(cs
, skb
, "PH_DATA_PULLED", 0);
1161 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1162 hfcpci_fill_dfifo(cs
);
1163 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1165 debugl1(cs
, "hfcpci_fill_dfifo blocked");
1166 spin_unlock_irqrestore(&cs
->lock
, flags
);
1168 case (PH_PULL
| REQUEST
):
1169 #ifdef L2FRAME_DEBUG /* psa */
1170 if (cs
->debug
& L1_DEB_LAPD
)
1171 debugl1(cs
, "-> PH_REQUEST_PULL");
1174 test_and_clear_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
1175 st
->l1
.l1l2(st
, PH_PULL
| CONFIRM
, NULL
);
1177 test_and_set_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
1179 case (HW_RESET
| REQUEST
):
1180 spin_lock_irqsave(&cs
->lock
, flags
);
1181 Write_hfc(cs
, HFCPCI_STATES
, HFCPCI_LOAD_STATE
| 3); /* HFC ST 3 */
1183 Write_hfc(cs
, HFCPCI_STATES
, 3); /* HFC ST 2 */
1184 cs
->hw
.hfcpci
.mst_m
|= HFCPCI_MASTER
;
1185 Write_hfc(cs
, HFCPCI_MST_MODE
, cs
->hw
.hfcpci
.mst_m
);
1186 Write_hfc(cs
, HFCPCI_STATES
, HFCPCI_ACTIVATE
| HFCPCI_DO_ACTION
);
1187 spin_unlock_irqrestore(&cs
->lock
, flags
);
1188 l1_msg(cs
, HW_POWERUP
| CONFIRM
, NULL
);
1190 case (HW_ENABLE
| REQUEST
):
1191 spin_lock_irqsave(&cs
->lock
, flags
);
1192 Write_hfc(cs
, HFCPCI_STATES
, HFCPCI_DO_ACTION
);
1193 spin_unlock_irqrestore(&cs
->lock
, flags
);
1195 case (HW_DEACTIVATE
| REQUEST
):
1196 spin_lock_irqsave(&cs
->lock
, flags
);
1197 cs
->hw
.hfcpci
.mst_m
&= ~HFCPCI_MASTER
;
1198 Write_hfc(cs
, HFCPCI_MST_MODE
, cs
->hw
.hfcpci
.mst_m
);
1199 spin_unlock_irqrestore(&cs
->lock
, flags
);
1201 case (HW_INFO3
| REQUEST
):
1202 spin_lock_irqsave(&cs
->lock
, flags
);
1203 cs
->hw
.hfcpci
.mst_m
|= HFCPCI_MASTER
;
1204 Write_hfc(cs
, HFCPCI_MST_MODE
, cs
->hw
.hfcpci
.mst_m
);
1205 spin_unlock_irqrestore(&cs
->lock
, flags
);
1207 case (HW_TESTLOOP
| REQUEST
):
1208 spin_lock_irqsave(&cs
->lock
, flags
);
1209 switch ((long) arg
) {
1211 Write_hfc(cs
, HFCPCI_B1_SSL
, 0x80); /* tx slot */
1212 Write_hfc(cs
, HFCPCI_B1_RSL
, 0x80); /* rx slot */
1213 cs
->hw
.hfcpci
.conn
= (cs
->hw
.hfcpci
.conn
& ~7) | 1;
1214 Write_hfc(cs
, HFCPCI_CONNECT
, cs
->hw
.hfcpci
.conn
);
1218 Write_hfc(cs
, HFCPCI_B2_SSL
, 0x81); /* tx slot */
1219 Write_hfc(cs
, HFCPCI_B2_RSL
, 0x81); /* rx slot */
1220 cs
->hw
.hfcpci
.conn
= (cs
->hw
.hfcpci
.conn
& ~0x38) | 0x08;
1221 Write_hfc(cs
, HFCPCI_CONNECT
, cs
->hw
.hfcpci
.conn
);
1225 spin_unlock_irqrestore(&cs
->lock
, flags
);
1226 if (cs
->debug
& L1_DEB_WARN
)
1227 debugl1(cs
, "hfcpci_l1hw loop invalid %4lx", (long) arg
);
1230 cs
->hw
.hfcpci
.trm
|= 0x80; /* enable IOM-loop */
1231 Write_hfc(cs
, HFCPCI_TRM
, cs
->hw
.hfcpci
.trm
);
1232 spin_unlock_irqrestore(&cs
->lock
, flags
);
1235 if (cs
->debug
& L1_DEB_WARN
)
1236 debugl1(cs
, "hfcpci_l1hw unknown pr %4x", pr
);
1241 /***********************************************/
1242 /* called during init setting l1 stack pointer */
1243 /***********************************************/
1245 setstack_hfcpci(struct PStack
*st
, struct IsdnCardState
*cs
)
1247 st
->l1
.l1hw
= HFCPCI_l1hw
;
1250 /**************************************/
1251 /* send B-channel data if not blocked */
1252 /**************************************/
1254 hfcpci_send_data(struct BCState
*bcs
)
1256 struct IsdnCardState
*cs
= bcs
->cs
;
1258 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1259 hfcpci_fill_fifo(bcs
);
1260 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1262 debugl1(cs
, "send_data %d blocked", bcs
->channel
);
1265 /***************************************************************/
1266 /* activate/deactivate hardware for selected channels and mode */
1267 /***************************************************************/
1269 mode_hfcpci(struct BCState
*bcs
, int mode
, int bc
)
1271 struct IsdnCardState
*cs
= bcs
->cs
;
1274 if (cs
->debug
& L1_DEB_HSCX
)
1275 debugl1(cs
, "HFCPCI bchannel mode %d bchan %d/%d",
1276 mode
, bc
, bcs
->channel
);
1280 if (cs
->chanlimit
> 1) {
1281 cs
->hw
.hfcpci
.bswapped
= 0; /* B1 and B2 normal mode */
1282 cs
->hw
.hfcpci
.sctrl_e
&= ~0x80;
1285 if (mode
!= L1_MODE_NULL
) {
1286 cs
->hw
.hfcpci
.bswapped
= 1; /* B1 and B2 exchanged */
1287 cs
->hw
.hfcpci
.sctrl_e
|= 0x80;
1289 cs
->hw
.hfcpci
.bswapped
= 0; /* B1 and B2 normal mode */
1290 cs
->hw
.hfcpci
.sctrl_e
&= ~0x80;
1294 cs
->hw
.hfcpci
.bswapped
= 0; /* B1 and B2 normal mode */
1295 cs
->hw
.hfcpci
.sctrl_e
&= ~0x80;
1299 case (L1_MODE_NULL
):
1301 cs
->hw
.hfcpci
.sctrl
&= ~SCTRL_B2_ENA
;
1302 cs
->hw
.hfcpci
.sctrl_r
&= ~SCTRL_B2_ENA
;
1304 cs
->hw
.hfcpci
.sctrl
&= ~SCTRL_B1_ENA
;
1305 cs
->hw
.hfcpci
.sctrl_r
&= ~SCTRL_B1_ENA
;
1308 cs
->hw
.hfcpci
.fifo_en
&= ~HFCPCI_FIFOEN_B2
;
1309 cs
->hw
.hfcpci
.int_m1
&= ~(HFCPCI_INTS_B2TRANS
+ HFCPCI_INTS_B2REC
);
1311 cs
->hw
.hfcpci
.fifo_en
&= ~HFCPCI_FIFOEN_B1
;
1312 cs
->hw
.hfcpci
.int_m1
&= ~(HFCPCI_INTS_B1TRANS
+ HFCPCI_INTS_B1REC
);
1315 case (L1_MODE_TRANS
):
1316 hfcpci_clear_fifo_rx(cs
, fifo2
);
1317 hfcpci_clear_fifo_tx(cs
, fifo2
);
1319 cs
->hw
.hfcpci
.sctrl
|= SCTRL_B2_ENA
;
1320 cs
->hw
.hfcpci
.sctrl_r
|= SCTRL_B2_ENA
;
1322 cs
->hw
.hfcpci
.sctrl
|= SCTRL_B1_ENA
;
1323 cs
->hw
.hfcpci
.sctrl_r
|= SCTRL_B1_ENA
;
1326 cs
->hw
.hfcpci
.fifo_en
|= HFCPCI_FIFOEN_B2
;
1327 cs
->hw
.hfcpci
.int_m1
|= (HFCPCI_INTS_B2TRANS
+ HFCPCI_INTS_B2REC
);
1328 cs
->hw
.hfcpci
.ctmt
|= 2;
1329 cs
->hw
.hfcpci
.conn
&= ~0x18;
1331 cs
->hw
.hfcpci
.fifo_en
|= HFCPCI_FIFOEN_B1
;
1332 cs
->hw
.hfcpci
.int_m1
|= (HFCPCI_INTS_B1TRANS
+ HFCPCI_INTS_B1REC
);
1333 cs
->hw
.hfcpci
.ctmt
|= 1;
1334 cs
->hw
.hfcpci
.conn
&= ~0x03;
1337 case (L1_MODE_HDLC
):
1338 hfcpci_clear_fifo_rx(cs
, fifo2
);
1339 hfcpci_clear_fifo_tx(cs
, fifo2
);
1341 cs
->hw
.hfcpci
.sctrl
|= SCTRL_B2_ENA
;
1342 cs
->hw
.hfcpci
.sctrl_r
|= SCTRL_B2_ENA
;
1344 cs
->hw
.hfcpci
.sctrl
|= SCTRL_B1_ENA
;
1345 cs
->hw
.hfcpci
.sctrl_r
|= SCTRL_B1_ENA
;
1348 cs
->hw
.hfcpci
.last_bfifo_cnt
[1] = 0;
1349 cs
->hw
.hfcpci
.fifo_en
|= HFCPCI_FIFOEN_B2
;
1350 cs
->hw
.hfcpci
.int_m1
|= (HFCPCI_INTS_B2TRANS
+ HFCPCI_INTS_B2REC
);
1351 cs
->hw
.hfcpci
.ctmt
&= ~2;
1352 cs
->hw
.hfcpci
.conn
&= ~0x18;
1354 cs
->hw
.hfcpci
.last_bfifo_cnt
[0] = 0;
1355 cs
->hw
.hfcpci
.fifo_en
|= HFCPCI_FIFOEN_B1
;
1356 cs
->hw
.hfcpci
.int_m1
|= (HFCPCI_INTS_B1TRANS
+ HFCPCI_INTS_B1REC
);
1357 cs
->hw
.hfcpci
.ctmt
&= ~1;
1358 cs
->hw
.hfcpci
.conn
&= ~0x03;
1361 case (L1_MODE_EXTRN
):
1363 cs
->hw
.hfcpci
.conn
|= 0x10;
1364 cs
->hw
.hfcpci
.sctrl
|= SCTRL_B2_ENA
;
1365 cs
->hw
.hfcpci
.sctrl_r
|= SCTRL_B2_ENA
;
1366 cs
->hw
.hfcpci
.fifo_en
&= ~HFCPCI_FIFOEN_B2
;
1367 cs
->hw
.hfcpci
.int_m1
&= ~(HFCPCI_INTS_B2TRANS
+ HFCPCI_INTS_B2REC
);
1369 cs
->hw
.hfcpci
.conn
|= 0x02;
1370 cs
->hw
.hfcpci
.sctrl
|= SCTRL_B1_ENA
;
1371 cs
->hw
.hfcpci
.sctrl_r
|= SCTRL_B1_ENA
;
1372 cs
->hw
.hfcpci
.fifo_en
&= ~HFCPCI_FIFOEN_B1
;
1373 cs
->hw
.hfcpci
.int_m1
&= ~(HFCPCI_INTS_B1TRANS
+ HFCPCI_INTS_B1REC
);
1377 Write_hfc(cs
, HFCPCI_SCTRL_E
, cs
->hw
.hfcpci
.sctrl_e
);
1378 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
1379 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
1380 Write_hfc(cs
, HFCPCI_SCTRL
, cs
->hw
.hfcpci
.sctrl
);
1381 Write_hfc(cs
, HFCPCI_SCTRL_R
, cs
->hw
.hfcpci
.sctrl_r
);
1382 Write_hfc(cs
, HFCPCI_CTMT
, cs
->hw
.hfcpci
.ctmt
);
1383 Write_hfc(cs
, HFCPCI_CONNECT
, cs
->hw
.hfcpci
.conn
);
1386 /******************************/
1387 /* Layer2 -> Layer 1 Transfer */
1388 /******************************/
1390 hfcpci_l2l1(struct PStack
*st
, int pr
, void *arg
)
1392 struct BCState
*bcs
= st
->l1
.bcs
;
1394 struct sk_buff
*skb
= arg
;
1397 case (PH_DATA
| REQUEST
):
1398 spin_lock_irqsave(&bcs
->cs
->lock
, flags
);
1400 skb_queue_tail(&bcs
->squeue
, skb
);
1403 // test_and_set_bit(BC_FLG_BUSY, &bcs->Flag);
1404 bcs
->cs
->BC_Send_Data(bcs
);
1406 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1408 case (PH_PULL
| INDICATION
):
1409 spin_lock_irqsave(&bcs
->cs
->lock
, flags
);
1411 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1412 printk(KERN_WARNING
"hfc_l2l1: this shouldn't happen\n");
1415 // test_and_set_bit(BC_FLG_BUSY, &bcs->Flag);
1417 bcs
->cs
->BC_Send_Data(bcs
);
1418 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1420 case (PH_PULL
| REQUEST
):
1422 test_and_clear_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
1423 st
->l1
.l1l2(st
, PH_PULL
| CONFIRM
, NULL
);
1425 test_and_set_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
1427 case (PH_ACTIVATE
| REQUEST
):
1428 spin_lock_irqsave(&bcs
->cs
->lock
, flags
);
1429 test_and_set_bit(BC_FLG_ACTIV
, &bcs
->Flag
);
1430 mode_hfcpci(bcs
, st
->l1
.mode
, st
->l1
.bc
);
1431 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1432 l1_msg_b(st
, pr
, arg
);
1434 case (PH_DEACTIVATE
| REQUEST
):
1435 l1_msg_b(st
, pr
, arg
);
1437 case (PH_DEACTIVATE
| CONFIRM
):
1438 spin_lock_irqsave(&bcs
->cs
->lock
, flags
);
1439 test_and_clear_bit(BC_FLG_ACTIV
, &bcs
->Flag
);
1440 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
1441 mode_hfcpci(bcs
, 0, st
->l1
.bc
);
1442 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1443 st
->l1
.l1l2(st
, PH_DEACTIVATE
| CONFIRM
, NULL
);
1448 /******************************************/
1449 /* deactivate B-channel access and queues */
1450 /******************************************/
1452 close_hfcpci(struct BCState
*bcs
)
1454 mode_hfcpci(bcs
, 0, bcs
->channel
);
1455 if (test_and_clear_bit(BC_FLG_INIT
, &bcs
->Flag
)) {
1456 skb_queue_purge(&bcs
->rqueue
);
1457 skb_queue_purge(&bcs
->squeue
);
1459 dev_kfree_skb_any(bcs
->tx_skb
);
1461 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
1466 /*************************************/
1467 /* init B-channel queues and control */
1468 /*************************************/
1470 open_hfcpcistate(struct IsdnCardState
*cs
, struct BCState
*bcs
)
1472 if (!test_and_set_bit(BC_FLG_INIT
, &bcs
->Flag
)) {
1473 skb_queue_head_init(&bcs
->rqueue
);
1474 skb_queue_head_init(&bcs
->squeue
);
1477 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
1483 /*********************************/
1484 /* inits the stack for B-channel */
1485 /*********************************/
1487 setstack_2b(struct PStack
*st
, struct BCState
*bcs
)
1489 bcs
->channel
= st
->l1
.bc
;
1490 if (open_hfcpcistate(st
->l1
.hardware
, bcs
))
1493 st
->l2
.l2l1
= hfcpci_l2l1
;
1494 setstack_manager(st
);
1500 /***************************/
1501 /* handle L1 state changes */
1502 /***************************/
1504 hfcpci_bh(struct work_struct
*work
)
1506 struct IsdnCardState
*cs
=
1507 container_of(work
, struct IsdnCardState
, tqueue
);
1509 // struct PStack *stptr;
1511 if (test_and_clear_bit(D_L1STATECHANGE
, &cs
->event
)) {
1512 if (!cs
->hw
.hfcpci
.nt_mode
)
1513 switch (cs
->dc
.hfcpci
.ph_state
) {
1515 l1_msg(cs
, HW_RESET
| INDICATION
, NULL
);
1518 l1_msg(cs
, HW_DEACTIVATE
| INDICATION
, NULL
);
1521 l1_msg(cs
, HW_RSYNC
| INDICATION
, NULL
);
1524 l1_msg(cs
, HW_INFO2
| INDICATION
, NULL
);
1527 l1_msg(cs
, HW_INFO4_P8
| INDICATION
, NULL
);
1532 spin_lock_irqsave(&cs
->lock
, flags
);
1533 switch (cs
->dc
.hfcpci
.ph_state
) {
1535 if (cs
->hw
.hfcpci
.nt_timer
< 0) {
1536 cs
->hw
.hfcpci
.nt_timer
= 0;
1537 cs
->hw
.hfcpci
.int_m1
&= ~HFCPCI_INTS_TIMER
;
1538 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
1539 /* Clear already pending ints */
1540 if (Read_hfc(cs
, HFCPCI_INT_S1
));
1541 Write_hfc(cs
, HFCPCI_STATES
, 4 | HFCPCI_LOAD_STATE
);
1543 Write_hfc(cs
, HFCPCI_STATES
, 4);
1544 cs
->dc
.hfcpci
.ph_state
= 4;
1546 cs
->hw
.hfcpci
.int_m1
|= HFCPCI_INTS_TIMER
;
1547 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
1548 cs
->hw
.hfcpci
.ctmt
&= ~HFCPCI_AUTO_TIMER
;
1549 cs
->hw
.hfcpci
.ctmt
|= HFCPCI_TIM3_125
;
1550 Write_hfc(cs
, HFCPCI_CTMT
, cs
->hw
.hfcpci
.ctmt
| HFCPCI_CLTIMER
);
1551 Write_hfc(cs
, HFCPCI_CTMT
, cs
->hw
.hfcpci
.ctmt
| HFCPCI_CLTIMER
);
1552 cs
->hw
.hfcpci
.nt_timer
= NT_T1_COUNT
;
1553 Write_hfc(cs
, HFCPCI_STATES
, 2 | HFCPCI_NT_G2_G3
); /* allow G2 -> G3 transition */
1559 cs
->hw
.hfcpci
.nt_timer
= 0;
1560 cs
->hw
.hfcpci
.int_m1
&= ~HFCPCI_INTS_TIMER
;
1561 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
1566 spin_unlock_irqrestore(&cs
->lock
, flags
);
1569 if (test_and_clear_bit(D_RCVBUFREADY
, &cs
->event
))
1570 DChannel_proc_rcv(cs
);
1571 if (test_and_clear_bit(D_XMTBUFREADY
, &cs
->event
))
1572 DChannel_proc_xmt(cs
);
1576 /********************************/
1577 /* called for card init message */
1578 /********************************/
1580 inithfcpci(struct IsdnCardState
*cs
)
1582 cs
->bcs
[0].BC_SetStack
= setstack_2b
;
1583 cs
->bcs
[1].BC_SetStack
= setstack_2b
;
1584 cs
->bcs
[0].BC_Close
= close_hfcpci
;
1585 cs
->bcs
[1].BC_Close
= close_hfcpci
;
1586 timer_setup(&cs
->dbusytimer
, hfcpci_dbusy_timer
, 0);
1587 mode_hfcpci(cs
->bcs
, 0, 0);
1588 mode_hfcpci(cs
->bcs
+ 1, 0, 1);
1593 /*******************************************/
1594 /* handle card messages from control layer */
1595 /*******************************************/
1597 hfcpci_card_msg(struct IsdnCardState
*cs
, int mt
, void *arg
)
1601 if (cs
->debug
& L1_DEB_ISAC
)
1602 debugl1(cs
, "HFCPCI: card_msg %x", mt
);
1605 spin_lock_irqsave(&cs
->lock
, flags
);
1607 spin_unlock_irqrestore(&cs
->lock
, flags
);
1610 release_io_hfcpci(cs
);
1613 spin_lock_irqsave(&cs
->lock
, flags
);
1616 spin_unlock_irqrestore(&cs
->lock
, flags
);
1617 msleep(80); /* Timeout 80ms */
1618 /* now switch timer interrupt off */
1619 spin_lock_irqsave(&cs
->lock
, flags
);
1620 cs
->hw
.hfcpci
.int_m1
&= ~HFCPCI_INTS_TIMER
;
1621 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
1622 /* reinit mode reg */
1623 Write_hfc(cs
, HFCPCI_MST_MODE
, cs
->hw
.hfcpci
.mst_m
);
1624 spin_unlock_irqrestore(&cs
->lock
, flags
);
1633 /* this variable is used as card index when more than one cards are present */
1634 static struct pci_dev
*dev_hfcpci
= NULL
;
1637 setup_hfcpci(struct IsdnCard
*card
)
1640 struct IsdnCardState
*cs
= card
->cs
;
1643 struct pci_dev
*tmp_hfcpci
= NULL
;
1645 strcpy(tmp
, hfcpci_revision
);
1646 printk(KERN_INFO
"HiSax: HFC-PCI driver Rev. %s\n", HiSax_getrev(tmp
));
1648 cs
->hw
.hfcpci
.int_s1
= 0;
1649 cs
->dc
.hfcpci
.ph_state
= 0;
1650 cs
->hw
.hfcpci
.fifo
= 255;
1651 if (cs
->typ
!= ISDN_CTYPE_HFC_PCI
)
1655 while (id_list
[i
].vendor_id
) {
1656 tmp_hfcpci
= hisax_find_pci_device(id_list
[i
].vendor_id
,
1657 id_list
[i
].device_id
,
1661 dma_addr_t dma_mask
= DMA_BIT_MASK(32) & ~0x7fffUL
;
1662 if (pci_enable_device(tmp_hfcpci
))
1664 if (pci_set_dma_mask(tmp_hfcpci
, dma_mask
)) {
1666 "HiSax hfc_pci: No suitable DMA available.\n");
1669 if (pci_set_consistent_dma_mask(tmp_hfcpci
, dma_mask
)) {
1671 "HiSax hfc_pci: No suitable consistent DMA available.\n");
1674 pci_set_master(tmp_hfcpci
);
1675 if ((card
->para
[0]) && (card
->para
[0] != (tmp_hfcpci
->resource
[0].start
& PCI_BASE_ADDRESS_IO_MASK
)))
1683 printk(KERN_WARNING
"HFC-PCI: No PCI card found\n");
1688 dev_hfcpci
= tmp_hfcpci
; /* old device */
1689 cs
->hw
.hfcpci
.dev
= dev_hfcpci
;
1690 cs
->irq
= dev_hfcpci
->irq
;
1692 printk(KERN_WARNING
"HFC-PCI: No IRQ for PCI card found\n");
1695 cs
->hw
.hfcpci
.pci_io
= (char *)(unsigned long)dev_hfcpci
->resource
[1].start
;
1696 printk(KERN_INFO
"HiSax: HFC-PCI card manufacturer: %s card name: %s\n", id_list
[i
].vendor_name
, id_list
[i
].card_name
);
1698 if (!cs
->hw
.hfcpci
.pci_io
) {
1699 printk(KERN_WARNING
"HFC-PCI: No IO-Mem for PCI card found\n");
1703 /* Allocate memory for FIFOS */
1704 cs
->hw
.hfcpci
.fifos
= pci_alloc_consistent(cs
->hw
.hfcpci
.dev
,
1705 0x8000, &cs
->hw
.hfcpci
.dma
);
1706 if (!cs
->hw
.hfcpci
.fifos
) {
1707 printk(KERN_WARNING
"HFC-PCI: Error allocating FIFO memory!\n");
1710 if (cs
->hw
.hfcpci
.dma
& 0x7fff) {
1712 "HFC-PCI: Error DMA memory not on 32K boundary (%lx)\n",
1713 (u_long
)cs
->hw
.hfcpci
.dma
);
1714 pci_free_consistent(cs
->hw
.hfcpci
.dev
, 0x8000,
1715 cs
->hw
.hfcpci
.fifos
, cs
->hw
.hfcpci
.dma
);
1718 pci_write_config_dword(cs
->hw
.hfcpci
.dev
, 0x80, (u32
)cs
->hw
.hfcpci
.dma
);
1719 cs
->hw
.hfcpci
.pci_io
= ioremap((ulong
) cs
->hw
.hfcpci
.pci_io
, 256);
1721 "HFC-PCI: defined at mem %p fifo %p(%lx) IRQ %d HZ %d\n",
1722 cs
->hw
.hfcpci
.pci_io
,
1723 cs
->hw
.hfcpci
.fifos
,
1724 (u_long
)cs
->hw
.hfcpci
.dma
,
1727 spin_lock_irqsave(&cs
->lock
, flags
);
1729 pci_write_config_word(cs
->hw
.hfcpci
.dev
, PCI_COMMAND
, PCI_ENA_MEMIO
); /* enable memory mapped ports, disable busmaster */
1730 cs
->hw
.hfcpci
.int_m2
= 0; /* disable alle interrupts */
1731 cs
->hw
.hfcpci
.int_m1
= 0;
1732 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
1733 Write_hfc(cs
, HFCPCI_INT_M2
, cs
->hw
.hfcpci
.int_m2
);
1734 /* At this point the needed PCI config is done */
1735 /* fifos are still not enabled */
1737 INIT_WORK(&cs
->tqueue
, hfcpci_bh
);
1738 cs
->setstack_d
= setstack_hfcpci
;
1739 cs
->BC_Send_Data
= &hfcpci_send_data
;
1740 cs
->readisac
= NULL
;
1741 cs
->writeisac
= NULL
;
1742 cs
->readisacfifo
= NULL
;
1743 cs
->writeisacfifo
= NULL
;
1744 cs
->BC_Read_Reg
= NULL
;
1745 cs
->BC_Write_Reg
= NULL
;
1746 cs
->irq_func
= &hfcpci_interrupt
;
1747 cs
->irq_flags
|= IRQF_SHARED
;
1748 timer_setup(&cs
->hw
.hfcpci
.timer
, hfcpci_Timer
, 0);
1749 cs
->cardmsg
= &hfcpci_card_msg
;
1750 cs
->auxcmd
= &hfcpci_auxcmd
;
1752 spin_unlock_irqrestore(&cs
->lock
, flags
);