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>
19 #include <linux/config.h>
23 #include <linux/pci.h>
24 #include <linux/interrupt.h>
26 extern const char *CardType
[];
28 static const char *hfcpci_revision
= "$Revision: 1.48.2.4 $";
30 /* table entry in the PCI devices list */
38 #define NT_T1_COUNT 20 /* number of 3.125ms interrupts for G2 timeout */
39 #define CLKDEL_TE 0x0e /* CLKDEL in TE mode */
40 #define CLKDEL_NT 0x6c /* CLKDEL in NT mode */
42 static const PCI_ENTRY id_list
[] =
44 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_2BD0
, "CCD/Billion/Asuscom", "2BD0"},
45 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B000
, "Billion", "B000"},
46 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B006
, "Billion", "B006"},
47 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B007
, "Billion", "B007"},
48 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B008
, "Billion", "B008"},
49 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B009
, "Billion", "B009"},
50 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B00A
, "Billion", "B00A"},
51 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B00B
, "Billion", "B00B"},
52 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B00C
, "Billion", "B00C"},
53 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B100
, "Seyeon", "B100"},
54 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B700
, "Primux II S0", "B700"},
55 {PCI_VENDOR_ID_CCD
, PCI_DEVICE_ID_CCD_B701
, "Primux II S0 NT", "B701"},
56 {PCI_VENDOR_ID_ABOCOM
, PCI_DEVICE_ID_ABOCOM_2BD1
, "Abocom/Magitek", "2BD1"},
57 {PCI_VENDOR_ID_ASUSTEK
, PCI_DEVICE_ID_ASUSTEK_0675
, "Asuscom/Askey", "675"},
58 {PCI_VENDOR_ID_BERKOM
, PCI_DEVICE_ID_BERKOM_T_CONCEPT
, "German telekom", "T-Concept"},
59 {PCI_VENDOR_ID_BERKOM
, PCI_DEVICE_ID_BERKOM_A1T
, "German telekom", "A1T"},
60 {PCI_VENDOR_ID_ANIGMA
, PCI_DEVICE_ID_ANIGMA_MC145575
, "Motorola MC145575", "MC145575"},
61 {PCI_VENDOR_ID_ZOLTRIX
, PCI_DEVICE_ID_ZOLTRIX_2BD0
, "Zoltrix", "2BD0"},
62 {PCI_VENDOR_ID_DIGI
, PCI_DEVICE_ID_DIGI_DF_M_IOM2_E
,"Digi International", "Digi DataFire Micro V IOM2 (Europe)"},
63 {PCI_VENDOR_ID_DIGI
, PCI_DEVICE_ID_DIGI_DF_M_E
,"Digi International", "Digi DataFire Micro V (Europe)"},
64 {PCI_VENDOR_ID_DIGI
, PCI_DEVICE_ID_DIGI_DF_M_IOM2_A
,"Digi International", "Digi DataFire Micro V IOM2 (North America)"},
65 {PCI_VENDOR_ID_DIGI
, PCI_DEVICE_ID_DIGI_DF_M_A
,"Digi International", "Digi DataFire Micro V (North America)"},
66 {PCI_VENDOR_ID_SITECOM
, PCI_DEVICE_ID_SITECOM_DC105V2
, "Sitecom Europe", "DC-105 ISDN PCI"},
73 /******************************************/
74 /* free hardware resources used by driver */
75 /******************************************/
77 release_io_hfcpci(struct IsdnCardState
*cs
)
79 printk(KERN_INFO
"HiSax: release hfcpci at %p\n",
80 cs
->hw
.hfcpci
.pci_io
);
81 cs
->hw
.hfcpci
.int_m2
= 0; /* interrupt output off ! */
82 Write_hfc(cs
, HFCPCI_INT_M2
, cs
->hw
.hfcpci
.int_m2
);
83 Write_hfc(cs
, HFCPCI_CIRM
, HFCPCI_RESET
); /* Reset On */
85 Write_hfc(cs
, HFCPCI_CIRM
, 0); /* Reset Off */
87 Write_hfc(cs
, HFCPCI_INT_M2
, cs
->hw
.hfcpci
.int_m2
);
88 pci_write_config_word(cs
->hw
.hfcpci
.dev
, PCI_COMMAND
, 0); /* disable memory mapped ports + busmaster */
89 del_timer(&cs
->hw
.hfcpci
.timer
);
90 kfree(cs
->hw
.hfcpci
.share_start
);
91 cs
->hw
.hfcpci
.share_start
= NULL
;
92 iounmap((void *)cs
->hw
.hfcpci
.pci_io
);
95 /********************************************************************************/
96 /* function called to reset the HFC PCI chip. A complete software reset of chip */
97 /* and fifos is done. */
98 /********************************************************************************/
100 reset_hfcpci(struct IsdnCardState
*cs
)
102 pci_write_config_word(cs
->hw
.hfcpci
.dev
, PCI_COMMAND
, PCI_ENA_MEMIO
); /* enable memory mapped ports, disable busmaster */
103 cs
->hw
.hfcpci
.int_m2
= 0; /* interrupt output off ! */
104 Write_hfc(cs
, HFCPCI_INT_M2
, cs
->hw
.hfcpci
.int_m2
);
106 printk(KERN_INFO
"HFC_PCI: resetting card\n");
107 pci_write_config_word(cs
->hw
.hfcpci
.dev
, PCI_COMMAND
, PCI_ENA_MEMIO
+ PCI_ENA_MASTER
); /* enable memory ports + busmaster */
108 Write_hfc(cs
, HFCPCI_CIRM
, HFCPCI_RESET
); /* Reset On */
110 Write_hfc(cs
, HFCPCI_CIRM
, 0); /* Reset Off */
112 if (Read_hfc(cs
, HFCPCI_STATUS
) & 2)
113 printk(KERN_WARNING
"HFC-PCI init bit busy\n");
115 cs
->hw
.hfcpci
.fifo_en
= 0x30; /* only D fifos enabled */
116 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
118 cs
->hw
.hfcpci
.trm
= 0 + HFCPCI_BTRANS_THRESMASK
; /* no echo connect , threshold */
119 Write_hfc(cs
, HFCPCI_TRM
, cs
->hw
.hfcpci
.trm
);
121 Write_hfc(cs
, HFCPCI_CLKDEL
, CLKDEL_TE
); /* ST-Bit delay for TE-Mode */
122 cs
->hw
.hfcpci
.sctrl_e
= HFCPCI_AUTO_AWAKE
;
123 Write_hfc(cs
, HFCPCI_SCTRL_E
, cs
->hw
.hfcpci
.sctrl_e
); /* S/T Auto awake */
124 cs
->hw
.hfcpci
.bswapped
= 0; /* no exchange */
125 cs
->hw
.hfcpci
.nt_mode
= 0; /* we are in TE mode */
126 cs
->hw
.hfcpci
.ctmt
= HFCPCI_TIM3_125
| HFCPCI_AUTO_TIMER
;
127 Write_hfc(cs
, HFCPCI_CTMT
, cs
->hw
.hfcpci
.ctmt
);
129 cs
->hw
.hfcpci
.int_m1
= HFCPCI_INTS_DTRANS
| HFCPCI_INTS_DREC
|
130 HFCPCI_INTS_L1STATE
| HFCPCI_INTS_TIMER
;
131 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
133 /* Clear already pending ints */
134 if (Read_hfc(cs
, HFCPCI_INT_S1
));
136 Write_hfc(cs
, HFCPCI_STATES
, HFCPCI_LOAD_STATE
| 2); /* HFC ST 2 */
138 Write_hfc(cs
, HFCPCI_STATES
, 2); /* HFC ST 2 */
139 cs
->hw
.hfcpci
.mst_m
= HFCPCI_MASTER
; /* HFC Master Mode */
141 Write_hfc(cs
, HFCPCI_MST_MODE
, cs
->hw
.hfcpci
.mst_m
);
142 cs
->hw
.hfcpci
.sctrl
= 0x40; /* set tx_lo mode, error in datasheet ! */
143 Write_hfc(cs
, HFCPCI_SCTRL
, cs
->hw
.hfcpci
.sctrl
);
144 cs
->hw
.hfcpci
.sctrl_r
= 0;
145 Write_hfc(cs
, HFCPCI_SCTRL_R
, cs
->hw
.hfcpci
.sctrl_r
);
147 /* Init GCI/IOM2 in master mode */
148 /* Slots 0 and 1 are set for B-chan 1 and 2 */
149 /* D- and monitor/CI channel are not enabled */
150 /* STIO1 is used as output for data, B1+B2 from ST->IOM+HFC */
151 /* STIO2 is used as data input, B1+B2 from IOM->ST */
152 /* ST B-channel send disabled -> continous 1s */
153 /* The IOM slots are always enabled */
154 cs
->hw
.hfcpci
.conn
= 0x36; /* set data flow directions */
155 Write_hfc(cs
, HFCPCI_CONNECT
, cs
->hw
.hfcpci
.conn
);
156 Write_hfc(cs
, HFCPCI_B1_SSL
, 0x80); /* B1-Slot 0 STIO1 out enabled */
157 Write_hfc(cs
, HFCPCI_B2_SSL
, 0x81); /* B2-Slot 1 STIO1 out enabled */
158 Write_hfc(cs
, HFCPCI_B1_RSL
, 0x80); /* B1-Slot 0 STIO2 in enabled */
159 Write_hfc(cs
, HFCPCI_B2_RSL
, 0x81); /* B2-Slot 1 STIO2 in enabled */
161 /* Finally enable IRQ output */
162 cs
->hw
.hfcpci
.int_m2
= HFCPCI_IRQ_ENABLE
;
163 Write_hfc(cs
, HFCPCI_INT_M2
, cs
->hw
.hfcpci
.int_m2
);
164 if (Read_hfc(cs
, HFCPCI_INT_S1
));
167 /***************************************************/
168 /* Timer function called when kernel timer expires */
169 /***************************************************/
171 hfcpci_Timer(struct IsdnCardState
*cs
)
173 cs
->hw
.hfcpci
.timer
.expires
= jiffies
+ 75;
175 /* WriteReg(cs, HFCD_DATA, HFCD_CTMT, cs->hw.hfcpci.ctmt | 0x80);
176 add_timer(&cs->hw.hfcpci.timer);
181 /*********************************/
182 /* schedule a new D-channel task */
183 /*********************************/
185 sched_event_D_pci(struct IsdnCardState
*cs
, int event
)
187 test_and_set_bit(event
, &cs
->event
);
188 schedule_work(&cs
->tqueue
);
191 /*********************************/
192 /* schedule a new b_channel task */
193 /*********************************/
195 hfcpci_sched_event(struct BCState
*bcs
, int event
)
197 test_and_set_bit(event
, &bcs
->event
);
198 schedule_work(&bcs
->tqueue
);
201 /************************************************/
202 /* select a b-channel entry matching and active */
203 /************************************************/
206 Sel_BCS(struct IsdnCardState
*cs
, int channel
)
208 if (cs
->bcs
[0].mode
&& (cs
->bcs
[0].channel
== channel
))
209 return (&cs
->bcs
[0]);
210 else if (cs
->bcs
[1].mode
&& (cs
->bcs
[1].channel
== channel
))
211 return (&cs
->bcs
[1]);
216 /***************************************/
217 /* clear the desired B-channel rx fifo */
218 /***************************************/
219 static void hfcpci_clear_fifo_rx(struct IsdnCardState
*cs
, int fifo
)
224 bzr
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxbz_b2
;
225 fifo_state
= cs
->hw
.hfcpci
.fifo_en
& HFCPCI_FIFOEN_B2RX
;
227 bzr
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxbz_b1
;
228 fifo_state
= cs
->hw
.hfcpci
.fifo_en
& HFCPCI_FIFOEN_B1RX
;
231 cs
->hw
.hfcpci
.fifo_en
^= fifo_state
;
232 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
233 cs
->hw
.hfcpci
.last_bfifo_cnt
[fifo
] = 0;
234 bzr
->za
[MAX_B_FRAMES
].z1
= B_FIFO_SIZE
+ B_SUB_VAL
- 1;
235 bzr
->za
[MAX_B_FRAMES
].z2
= bzr
->za
[MAX_B_FRAMES
].z1
;
236 bzr
->f1
= MAX_B_FRAMES
;
237 bzr
->f2
= bzr
->f1
; /* init F pointers to remain constant */
239 cs
->hw
.hfcpci
.fifo_en
|= fifo_state
;
240 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
243 /***************************************/
244 /* clear the desired B-channel tx fifo */
245 /***************************************/
246 static void hfcpci_clear_fifo_tx(struct IsdnCardState
*cs
, int fifo
)
251 bzt
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.txbz_b2
;
252 fifo_state
= cs
->hw
.hfcpci
.fifo_en
& HFCPCI_FIFOEN_B2TX
;
254 bzt
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.txbz_b1
;
255 fifo_state
= cs
->hw
.hfcpci
.fifo_en
& HFCPCI_FIFOEN_B1TX
;
258 cs
->hw
.hfcpci
.fifo_en
^= fifo_state
;
259 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
260 bzt
->za
[MAX_B_FRAMES
].z1
= B_FIFO_SIZE
+ B_SUB_VAL
- 1;
261 bzt
->za
[MAX_B_FRAMES
].z2
= bzt
->za
[MAX_B_FRAMES
].z1
;
262 bzt
->f1
= MAX_B_FRAMES
;
263 bzt
->f2
= bzt
->f1
; /* init F pointers to remain constant */
265 cs
->hw
.hfcpci
.fifo_en
|= fifo_state
;
266 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
269 /*********************************************/
270 /* read a complete B-frame out of the buffer */
271 /*********************************************/
272 static struct sk_buff
274 hfcpci_empty_fifo(struct BCState
*bcs
, bzfifo_type
* bz
, u_char
* bdata
, int count
)
276 u_char
*ptr
, *ptr1
, new_f2
;
278 struct IsdnCardState
*cs
= bcs
->cs
;
279 int total
, maxlen
, new_z2
;
282 if ((cs
->debug
& L1_DEB_HSCX
) && !(cs
->debug
& L1_DEB_HSCX_FIFO
))
283 debugl1(cs
, "hfcpci_empty_fifo");
284 zp
= &bz
->za
[bz
->f2
]; /* point to Z-Regs */
285 new_z2
= zp
->z2
+ count
; /* new position in fifo */
286 if (new_z2
>= (B_FIFO_SIZE
+ B_SUB_VAL
))
287 new_z2
-= B_FIFO_SIZE
; /* buffer wrap */
288 new_f2
= (bz
->f2
+ 1) & MAX_B_FRAMES
;
289 if ((count
> HSCX_BUFMAX
+ 3) || (count
< 4) ||
290 (*(bdata
+ (zp
->z1
- B_SUB_VAL
)))) {
291 if (cs
->debug
& L1_DEB_WARN
)
292 debugl1(cs
, "hfcpci_empty_fifo: incoming packet invalid length %d or crc", count
);
293 #ifdef ERROR_STATISTIC
296 bz
->za
[new_f2
].z2
= new_z2
;
297 bz
->f2
= new_f2
; /* next buffer */
299 } else if (!(skb
= dev_alloc_skb(count
- 3)))
300 printk(KERN_WARNING
"HFCPCI: receive out of memory\n");
304 ptr
= skb_put(skb
, count
);
306 if (zp
->z2
+ count
<= B_FIFO_SIZE
+ B_SUB_VAL
)
307 maxlen
= count
; /* complete transfer */
309 maxlen
= B_FIFO_SIZE
+ B_SUB_VAL
- zp
->z2
; /* maximum */
311 ptr1
= bdata
+ (zp
->z2
- B_SUB_VAL
); /* start of data */
312 memcpy(ptr
, ptr1
, maxlen
); /* copy data */
315 if (count
) { /* rest remaining */
317 ptr1
= bdata
; /* start of buffer */
318 memcpy(ptr
, ptr1
, count
); /* rest */
320 bz
->za
[new_f2
].z2
= new_z2
;
321 bz
->f2
= new_f2
; /* next buffer */
327 /*******************************/
328 /* D-channel receive procedure */
329 /*******************************/
332 receive_dmsg(struct IsdnCardState
*cs
)
342 df
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->d_chan
.d_rx
;
343 if (test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
344 debugl1(cs
, "rec_dmsg blocked");
347 while (((df
->f1
& D_FREG_MASK
) != (df
->f2
& D_FREG_MASK
)) && count
--) {
348 zp
= &df
->za
[df
->f2
& D_FREG_MASK
];
349 rcnt
= zp
->z1
- zp
->z2
;
353 if (cs
->debug
& L1_DEB_ISAC
)
354 debugl1(cs
, "hfcpci recd f1(%d) f2(%d) z1(%x) z2(%x) cnt(%d)",
355 df
->f1
, df
->f2
, zp
->z1
, zp
->z2
, rcnt
);
357 if ((rcnt
> MAX_DFRAME_LEN
+ 3) || (rcnt
< 4) ||
358 (df
->data
[zp
->z1
])) {
359 if (cs
->debug
& L1_DEB_WARN
)
360 debugl1(cs
, "empty_fifo hfcpci paket inv. len %d or crc %d", rcnt
, df
->data
[zp
->z1
]);
361 #ifdef ERROR_STATISTIC
364 df
->f2
= ((df
->f2
+ 1) & MAX_D_FRAMES
) | (MAX_D_FRAMES
+ 1); /* next buffer */
365 df
->za
[df
->f2
& D_FREG_MASK
].z2
= (zp
->z2
+ rcnt
) & (D_FIFO_SIZE
- 1);
366 } else if ((skb
= dev_alloc_skb(rcnt
- 3))) {
369 ptr
= skb_put(skb
, rcnt
);
371 if (zp
->z2
+ rcnt
<= D_FIFO_SIZE
)
372 maxlen
= rcnt
; /* complete transfer */
374 maxlen
= D_FIFO_SIZE
- zp
->z2
; /* maximum */
376 ptr1
= df
->data
+ zp
->z2
; /* start of data */
377 memcpy(ptr
, ptr1
, maxlen
); /* copy data */
380 if (rcnt
) { /* rest remaining */
382 ptr1
= df
->data
; /* start of buffer */
383 memcpy(ptr
, ptr1
, rcnt
); /* rest */
385 df
->f2
= ((df
->f2
+ 1) & MAX_D_FRAMES
) | (MAX_D_FRAMES
+ 1); /* next buffer */
386 df
->za
[df
->f2
& D_FREG_MASK
].z2
= (zp
->z2
+ total
) & (D_FIFO_SIZE
- 1);
388 skb_queue_tail(&cs
->rq
, skb
);
389 sched_event_D_pci(cs
, D_RCVBUFREADY
);
391 printk(KERN_WARNING
"HFC-PCI: D receive out of memory\n");
393 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
397 /*******************************************************************************/
398 /* check for transparent receive data and read max one threshold size if avail */
399 /*******************************************************************************/
401 hfcpci_empty_fifo_trans(struct BCState
*bcs
, bzfifo_type
* bz
, u_char
* bdata
)
403 unsigned short *z1r
, *z2r
;
404 int new_z2
, fcnt
, maxlen
;
408 z1r
= &bz
->za
[MAX_B_FRAMES
].z1
; /* pointer to z reg */
411 if (!(fcnt
= *z1r
- *z2r
))
412 return (0); /* no data avail */
415 fcnt
+= B_FIFO_SIZE
; /* bytes actually buffered */
416 if (fcnt
> HFCPCI_BTRANS_THRESHOLD
)
417 fcnt
= HFCPCI_BTRANS_THRESHOLD
; /* limit size */
419 new_z2
= *z2r
+ fcnt
; /* new position in fifo */
420 if (new_z2
>= (B_FIFO_SIZE
+ B_SUB_VAL
))
421 new_z2
-= B_FIFO_SIZE
; /* buffer wrap */
423 if (!(skb
= dev_alloc_skb(fcnt
)))
424 printk(KERN_WARNING
"HFCPCI: receive out of memory\n");
426 ptr
= skb_put(skb
, fcnt
);
427 if (*z2r
+ fcnt
<= B_FIFO_SIZE
+ B_SUB_VAL
)
428 maxlen
= fcnt
; /* complete transfer */
430 maxlen
= B_FIFO_SIZE
+ B_SUB_VAL
- *z2r
; /* maximum */
432 ptr1
= bdata
+ (*z2r
- B_SUB_VAL
); /* start of data */
433 memcpy(ptr
, ptr1
, maxlen
); /* copy data */
436 if (fcnt
) { /* rest remaining */
438 ptr1
= bdata
; /* start of buffer */
439 memcpy(ptr
, ptr1
, fcnt
); /* rest */
441 skb_queue_tail(&bcs
->rqueue
, skb
);
442 hfcpci_sched_event(bcs
, B_RCVBUFREADY
);
445 *z2r
= new_z2
; /* new position */
447 } /* hfcpci_empty_fifo_trans */
449 /**********************************/
450 /* B-channel main receive routine */
451 /**********************************/
453 main_rec_hfcpci(struct BCState
*bcs
)
455 struct IsdnCardState
*cs
= bcs
->cs
;
457 int receive
, count
= 5;
464 if ((bcs
->channel
) && (!cs
->hw
.hfcpci
.bswapped
)) {
465 bz
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxbz_b2
;
466 bdata
= ((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxdat_b2
;
469 bz
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxbz_b1
;
470 bdata
= ((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxdat_b1
;
475 if (test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
476 debugl1(cs
, "rec_data %d blocked", bcs
->channel
);
479 if (bz
->f1
!= bz
->f2
) {
480 if (cs
->debug
& L1_DEB_HSCX
)
481 debugl1(cs
, "hfcpci rec %d f1(%d) f2(%d)",
482 bcs
->channel
, bz
->f1
, bz
->f2
);
483 zp
= &bz
->za
[bz
->f2
];
485 rcnt
= zp
->z1
- zp
->z2
;
489 if (cs
->debug
& L1_DEB_HSCX
)
490 debugl1(cs
, "hfcpci rec %d z1(%x) z2(%x) cnt(%d)",
491 bcs
->channel
, zp
->z1
, zp
->z2
, rcnt
);
492 if ((skb
= hfcpci_empty_fifo(bcs
, bz
, bdata
, rcnt
))) {
493 skb_queue_tail(&bcs
->rqueue
, skb
);
494 hfcpci_sched_event(bcs
, B_RCVBUFREADY
);
496 rcnt
= bz
->f1
- bz
->f2
;
498 rcnt
+= MAX_B_FRAMES
+ 1;
499 if (cs
->hw
.hfcpci
.last_bfifo_cnt
[real_fifo
] > rcnt
+ 1) {
501 hfcpci_clear_fifo_rx(cs
, real_fifo
);
503 cs
->hw
.hfcpci
.last_bfifo_cnt
[real_fifo
] = rcnt
;
508 } else if (bcs
->mode
== L1_MODE_TRANS
)
509 receive
= hfcpci_empty_fifo_trans(bcs
, bz
, bdata
);
512 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
513 if (count
&& receive
)
518 /**************************/
519 /* D-channel send routine */
520 /**************************/
522 hfcpci_fill_dfifo(struct IsdnCardState
*cs
)
525 int count
, new_z1
, maxlen
;
527 u_char
*src
, *dst
, new_f1
;
531 if (cs
->tx_skb
->len
<= 0)
534 df
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->d_chan
.d_tx
;
536 if (cs
->debug
& L1_DEB_ISAC
)
537 debugl1(cs
, "hfcpci_fill_Dfifo f1(%d) f2(%d) z1(f1)(%x)",
539 df
->za
[df
->f1
& D_FREG_MASK
].z1
);
540 fcnt
= df
->f1
- df
->f2
; /* frame count actually buffered */
542 fcnt
+= (MAX_D_FRAMES
+ 1); /* if wrap around */
543 if (fcnt
> (MAX_D_FRAMES
- 1)) {
544 if (cs
->debug
& L1_DEB_ISAC
)
545 debugl1(cs
, "hfcpci_fill_Dfifo more as 14 frames");
546 #ifdef ERROR_STATISTIC
551 /* now determine free bytes in FIFO buffer */
552 count
= df
->za
[df
->f2
& D_FREG_MASK
].z2
- df
->za
[df
->f1
& D_FREG_MASK
].z1
- 1;
554 count
+= D_FIFO_SIZE
; /* count now contains available bytes */
556 if (cs
->debug
& L1_DEB_ISAC
)
557 debugl1(cs
, "hfcpci_fill_Dfifo count(%ld/%d)",
558 cs
->tx_skb
->len
, count
);
559 if (count
< cs
->tx_skb
->len
) {
560 if (cs
->debug
& L1_DEB_ISAC
)
561 debugl1(cs
, "hfcpci_fill_Dfifo no fifo mem");
564 count
= cs
->tx_skb
->len
; /* get frame len */
565 new_z1
= (df
->za
[df
->f1
& D_FREG_MASK
].z1
+ count
) & (D_FIFO_SIZE
- 1);
566 new_f1
= ((df
->f1
+ 1) & D_FREG_MASK
) | (D_FREG_MASK
+ 1);
567 src
= cs
->tx_skb
->data
; /* source pointer */
568 dst
= df
->data
+ df
->za
[df
->f1
& D_FREG_MASK
].z1
;
569 maxlen
= D_FIFO_SIZE
- df
->za
[df
->f1
& D_FREG_MASK
].z1
; /* end fifo */
571 maxlen
= count
; /* limit size */
572 memcpy(dst
, src
, maxlen
); /* first copy */
574 count
-= maxlen
; /* remaining bytes */
576 dst
= df
->data
; /* start of buffer */
577 src
+= maxlen
; /* new position */
578 memcpy(dst
, src
, count
);
580 df
->za
[new_f1
& D_FREG_MASK
].z1
= new_z1
; /* for next buffer */
581 df
->za
[df
->f1
& D_FREG_MASK
].z1
= new_z1
; /* new pos actual buffer */
582 df
->f1
= new_f1
; /* next frame */
584 dev_kfree_skb_any(cs
->tx_skb
);
589 /**************************/
590 /* B-channel send routine */
591 /**************************/
593 hfcpci_fill_fifo(struct BCState
*bcs
)
595 struct IsdnCardState
*cs
= bcs
->cs
;
600 u_char new_f1
, *src
, *dst
;
601 unsigned short *z1t
, *z2t
;
605 if (bcs
->tx_skb
->len
<= 0)
608 if ((bcs
->channel
) && (!cs
->hw
.hfcpci
.bswapped
)) {
609 bz
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.txbz_b2
;
610 bdata
= ((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.txdat_b2
;
612 bz
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.txbz_b1
;
613 bdata
= ((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.txdat_b1
;
616 if (bcs
->mode
== L1_MODE_TRANS
) {
617 z1t
= &bz
->za
[MAX_B_FRAMES
].z1
;
619 if (cs
->debug
& L1_DEB_HSCX
)
620 debugl1(cs
, "hfcpci_fill_fifo_trans %d z1(%x) z2(%x)",
621 bcs
->channel
, *z1t
, *z2t
);
624 fcnt
+= B_FIFO_SIZE
; /* fcnt contains available bytes in fifo */
625 fcnt
= B_FIFO_SIZE
- fcnt
; /* remaining bytes to send */
627 while ((fcnt
< 2 * HFCPCI_BTRANS_THRESHOLD
) && (bcs
->tx_skb
)) {
628 if (bcs
->tx_skb
->len
< B_FIFO_SIZE
- fcnt
) {
629 /* data is suitable for fifo */
630 count
= bcs
->tx_skb
->len
;
632 new_z1
= *z1t
+ count
; /* new buffer Position */
633 if (new_z1
>= (B_FIFO_SIZE
+ B_SUB_VAL
))
634 new_z1
-= B_FIFO_SIZE
; /* buffer wrap */
635 src
= bcs
->tx_skb
->data
; /* source pointer */
636 dst
= bdata
+ (*z1t
- B_SUB_VAL
);
637 maxlen
= (B_FIFO_SIZE
+ B_SUB_VAL
) - *z1t
; /* end of fifo */
639 maxlen
= count
; /* limit size */
640 memcpy(dst
, src
, maxlen
); /* first copy */
642 count
-= maxlen
; /* remaining bytes */
644 dst
= bdata
; /* start of buffer */
645 src
+= maxlen
; /* new position */
646 memcpy(dst
, src
, count
);
648 bcs
->tx_cnt
-= bcs
->tx_skb
->len
;
649 fcnt
+= bcs
->tx_skb
->len
;
650 *z1t
= new_z1
; /* now send data */
651 } else if (cs
->debug
& L1_DEB_HSCX
)
652 debugl1(cs
, "hfcpci_fill_fifo_trans %d frame length %d discarded",
653 bcs
->channel
, bcs
->tx_skb
->len
);
655 if (test_bit(FLG_LLI_L1WAKEUP
,&bcs
->st
->lli
.flag
) &&
656 (PACKET_NOACK
!= bcs
->tx_skb
->pkt_type
)) {
658 spin_lock_irqsave(&bcs
->aclock
, flags
);
659 bcs
->ackcnt
+= bcs
->tx_skb
->len
;
660 spin_unlock_irqrestore(&bcs
->aclock
, flags
);
661 schedule_event(bcs
, B_ACKPENDING
);
664 dev_kfree_skb_any(bcs
->tx_skb
);
665 bcs
->tx_skb
= skb_dequeue(&bcs
->squeue
); /* fetch next data */
667 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
670 if (cs
->debug
& L1_DEB_HSCX
)
671 debugl1(cs
, "hfcpci_fill_fifo_hdlc %d f1(%d) f2(%d) z1(f1)(%x)",
672 bcs
->channel
, bz
->f1
, bz
->f2
,
675 fcnt
= bz
->f1
- bz
->f2
; /* frame count actually buffered */
677 fcnt
+= (MAX_B_FRAMES
+ 1); /* if wrap around */
678 if (fcnt
> (MAX_B_FRAMES
- 1)) {
679 if (cs
->debug
& L1_DEB_HSCX
)
680 debugl1(cs
, "hfcpci_fill_Bfifo more as 14 frames");
683 /* now determine free bytes in FIFO buffer */
684 count
= bz
->za
[bz
->f2
].z2
- bz
->za
[bz
->f1
].z1
- 1;
686 count
+= B_FIFO_SIZE
; /* count now contains available bytes */
688 if (cs
->debug
& L1_DEB_HSCX
)
689 debugl1(cs
, "hfcpci_fill_fifo %d count(%ld/%d),%lx",
690 bcs
->channel
, bcs
->tx_skb
->len
,
691 count
, current
->state
);
693 if (count
< bcs
->tx_skb
->len
) {
694 if (cs
->debug
& L1_DEB_HSCX
)
695 debugl1(cs
, "hfcpci_fill_fifo no fifo mem");
698 count
= bcs
->tx_skb
->len
; /* get frame len */
699 new_z1
= bz
->za
[bz
->f1
].z1
+ count
; /* new buffer Position */
700 if (new_z1
>= (B_FIFO_SIZE
+ B_SUB_VAL
))
701 new_z1
-= B_FIFO_SIZE
; /* buffer wrap */
703 new_f1
= ((bz
->f1
+ 1) & MAX_B_FRAMES
);
704 src
= bcs
->tx_skb
->data
; /* source pointer */
705 dst
= bdata
+ (bz
->za
[bz
->f1
].z1
- B_SUB_VAL
);
706 maxlen
= (B_FIFO_SIZE
+ B_SUB_VAL
) - bz
->za
[bz
->f1
].z1
; /* end fifo */
708 maxlen
= count
; /* limit size */
709 memcpy(dst
, src
, maxlen
); /* first copy */
711 count
-= maxlen
; /* remaining bytes */
713 dst
= bdata
; /* start of buffer */
714 src
+= maxlen
; /* new position */
715 memcpy(dst
, src
, count
);
717 bcs
->tx_cnt
-= bcs
->tx_skb
->len
;
718 if (test_bit(FLG_LLI_L1WAKEUP
,&bcs
->st
->lli
.flag
) &&
719 (PACKET_NOACK
!= bcs
->tx_skb
->pkt_type
)) {
721 spin_lock_irqsave(&bcs
->aclock
, flags
);
722 bcs
->ackcnt
+= bcs
->tx_skb
->len
;
723 spin_unlock_irqrestore(&bcs
->aclock
, flags
);
724 schedule_event(bcs
, B_ACKPENDING
);
727 bz
->za
[new_f1
].z1
= new_z1
; /* for next buffer */
728 bz
->f1
= new_f1
; /* next frame */
730 dev_kfree_skb_any(bcs
->tx_skb
);
732 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
736 /**********************************************/
737 /* D-channel l1 state call for leased NT-mode */
738 /**********************************************/
740 dch_nt_l2l1(struct PStack
*st
, int pr
, void *arg
)
742 struct IsdnCardState
*cs
= (struct IsdnCardState
*) st
->l1
.hardware
;
745 case (PH_DATA
| REQUEST
):
746 case (PH_PULL
| REQUEST
):
747 case (PH_PULL
| INDICATION
):
748 st
->l1
.l1hw(st
, pr
, arg
);
750 case (PH_ACTIVATE
| REQUEST
):
751 st
->l1
.l1l2(st
, PH_ACTIVATE
| CONFIRM
, NULL
);
753 case (PH_TESTLOOP
| REQUEST
):
755 debugl1(cs
, "PH_TEST_LOOP B1");
757 debugl1(cs
, "PH_TEST_LOOP B2");
758 if (!(3 & (long) arg
))
759 debugl1(cs
, "PH_TEST_LOOP DISABLED");
760 st
->l1
.l1hw(st
, HW_TESTLOOP
| REQUEST
, arg
);
764 debugl1(cs
, "dch_nt_l2l1 msg %04X unhandled", pr
);
771 /***********************/
772 /* set/reset echo mode */
773 /***********************/
775 hfcpci_auxcmd(struct IsdnCardState
*cs
, isdn_ctrl
* ic
)
778 int i
= *(unsigned int *) ic
->parm
.num
;
780 if ((ic
->arg
== 98) &&
781 (!(cs
->hw
.hfcpci
.int_m1
& (HFCPCI_INTS_B2TRANS
+ HFCPCI_INTS_B2REC
+ HFCPCI_INTS_B1TRANS
+ HFCPCI_INTS_B1REC
)))) {
782 spin_lock_irqsave(&cs
->lock
, flags
);
783 Write_hfc(cs
, HFCPCI_CLKDEL
, CLKDEL_NT
); /* ST-Bit delay for NT-Mode */
784 Write_hfc(cs
, HFCPCI_STATES
, HFCPCI_LOAD_STATE
| 0); /* HFC ST G0 */
786 cs
->hw
.hfcpci
.sctrl
|= SCTRL_MODE_NT
;
787 Write_hfc(cs
, HFCPCI_SCTRL
, cs
->hw
.hfcpci
.sctrl
); /* set NT-mode */
789 Write_hfc(cs
, HFCPCI_STATES
, HFCPCI_LOAD_STATE
| 1); /* HFC ST G1 */
791 Write_hfc(cs
, HFCPCI_STATES
, 1 | HFCPCI_ACTIVATE
| HFCPCI_DO_ACTION
);
792 cs
->dc
.hfcpci
.ph_state
= 1;
793 cs
->hw
.hfcpci
.nt_mode
= 1;
794 cs
->hw
.hfcpci
.nt_timer
= 0;
795 cs
->stlist
->l2
.l2l1
= dch_nt_l2l1
;
796 spin_unlock_irqrestore(&cs
->lock
, flags
);
797 debugl1(cs
, "NT mode activated");
800 if ((cs
->chanlimit
> 1) || (cs
->hw
.hfcpci
.bswapped
) ||
801 (cs
->hw
.hfcpci
.nt_mode
) || (ic
->arg
!= 12))
804 spin_lock_irqsave(&cs
->lock
, flags
);
807 cs
->hw
.hfcpci
.trm
|= 0x20; /* enable echo chan */
808 cs
->hw
.hfcpci
.int_m1
|= HFCPCI_INTS_B2REC
;
809 cs
->hw
.hfcpci
.fifo_en
|= HFCPCI_FIFOEN_B2RX
;
812 cs
->hw
.hfcpci
.trm
&= ~0x20; /* disable echo chan */
813 cs
->hw
.hfcpci
.int_m1
&= ~HFCPCI_INTS_B2REC
;
814 cs
->hw
.hfcpci
.fifo_en
&= ~HFCPCI_FIFOEN_B2RX
;
816 cs
->hw
.hfcpci
.sctrl_r
&= ~SCTRL_B2_ENA
;
817 cs
->hw
.hfcpci
.sctrl
&= ~SCTRL_B2_ENA
;
818 cs
->hw
.hfcpci
.conn
|= 0x10; /* B2-IOM -> B2-ST */
819 cs
->hw
.hfcpci
.ctmt
&= ~2;
820 Write_hfc(cs
, HFCPCI_CTMT
, cs
->hw
.hfcpci
.ctmt
);
821 Write_hfc(cs
, HFCPCI_SCTRL_R
, cs
->hw
.hfcpci
.sctrl_r
);
822 Write_hfc(cs
, HFCPCI_SCTRL
, cs
->hw
.hfcpci
.sctrl
);
823 Write_hfc(cs
, HFCPCI_CONNECT
, cs
->hw
.hfcpci
.conn
);
824 Write_hfc(cs
, HFCPCI_TRM
, cs
->hw
.hfcpci
.trm
);
825 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
826 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
827 spin_unlock_irqrestore(&cs
->lock
, flags
);
829 } /* hfcpci_auxcmd */
831 /*****************************/
832 /* E-channel receive routine */
833 /*****************************/
835 receive_emsg(struct IsdnCardState
*cs
)
838 int receive
, count
= 5;
842 u_char
*ptr
, *ptr1
, new_f2
;
843 int total
, maxlen
, new_z2
;
844 u_char e_buffer
[256];
846 bz
= &((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxbz_b2
;
847 bdata
= ((fifo_area
*) (cs
->hw
.hfcpci
.fifos
))->b_chans
.rxdat_b2
;
850 if (test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
851 debugl1(cs
, "echo_rec_data blocked");
854 if (bz
->f1
!= bz
->f2
) {
855 if (cs
->debug
& L1_DEB_ISAC
)
856 debugl1(cs
, "hfcpci e_rec f1(%d) f2(%d)",
858 zp
= &bz
->za
[bz
->f2
];
860 rcnt
= zp
->z1
- zp
->z2
;
864 if (cs
->debug
& L1_DEB_ISAC
)
865 debugl1(cs
, "hfcpci e_rec z1(%x) z2(%x) cnt(%d)",
866 zp
->z1
, zp
->z2
, rcnt
);
867 new_z2
= zp
->z2
+ rcnt
; /* new position in fifo */
868 if (new_z2
>= (B_FIFO_SIZE
+ B_SUB_VAL
))
869 new_z2
-= B_FIFO_SIZE
; /* buffer wrap */
870 new_f2
= (bz
->f2
+ 1) & MAX_B_FRAMES
;
871 if ((rcnt
> 256 + 3) || (count
< 4) ||
872 (*(bdata
+ (zp
->z1
- B_SUB_VAL
)))) {
873 if (cs
->debug
& L1_DEB_WARN
)
874 debugl1(cs
, "hfcpci_empty_echan: incoming packet invalid length %d or crc", rcnt
);
875 bz
->za
[new_f2
].z2
= new_z2
;
876 bz
->f2
= new_f2
; /* next buffer */
882 if (zp
->z2
<= B_FIFO_SIZE
+ B_SUB_VAL
)
883 maxlen
= rcnt
; /* complete transfer */
885 maxlen
= B_FIFO_SIZE
+ B_SUB_VAL
- zp
->z2
; /* maximum */
887 ptr1
= bdata
+ (zp
->z2
- B_SUB_VAL
); /* start of data */
888 memcpy(ptr
, ptr1
, maxlen
); /* copy data */
891 if (rcnt
) { /* rest remaining */
893 ptr1
= bdata
; /* start of buffer */
894 memcpy(ptr
, ptr1
, rcnt
); /* rest */
896 bz
->za
[new_f2
].z2
= new_z2
;
897 bz
->f2
= new_f2
; /* next buffer */
898 if (cs
->debug
& DEB_DLOG_HEX
) {
900 if ((total
- 3) < MAX_DLOG_SPACE
/ 3 - 10) {
906 ptr
+= QuickHex(ptr
, e_buffer
, total
- 3);
910 HiSax_putstatus(cs
, NULL
, cs
->dlog
);
912 HiSax_putstatus(cs
, "LogEcho: ", "warning Frame too big (%d)", total
- 3);
916 rcnt
= bz
->f1
- bz
->f2
;
918 rcnt
+= MAX_B_FRAMES
+ 1;
925 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
926 if (count
&& receive
)
931 /*********************/
932 /* Interrupt handler */
933 /*********************/
935 hfcpci_interrupt(int intno
, void *dev_id
, struct pt_regs
*regs
)
938 struct IsdnCardState
*cs
= dev_id
;
944 if (!(cs
->hw
.hfcpci
.int_m2
& 0x08)) {
945 debugl1(cs
, "HFC-PCI: int_m2 %x not initialised", cs
->hw
.hfcpci
.int_m2
);
946 return IRQ_NONE
; /* not initialised */
948 spin_lock_irqsave(&cs
->lock
, flags
);
949 if (HFCPCI_ANYINT
& (stat
= Read_hfc(cs
, HFCPCI_STATUS
))) {
950 val
= Read_hfc(cs
, HFCPCI_INT_S1
);
951 if (cs
->debug
& L1_DEB_ISAC
)
952 debugl1(cs
, "HFC-PCI: stat(%02x) s1(%02x)", stat
, val
);
954 spin_unlock_irqrestore(&cs
->lock
, flags
);
957 if (cs
->debug
& L1_DEB_ISAC
)
958 debugl1(cs
, "HFC-PCI irq %x %s", val
,
959 test_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
) ?
960 "locked" : "unlocked");
961 val
&= cs
->hw
.hfcpci
.int_m1
;
962 if (val
& 0x40) { /* state machine irq */
963 exval
= Read_hfc(cs
, HFCPCI_STATES
) & 0xf;
964 if (cs
->debug
& L1_DEB_ISAC
)
965 debugl1(cs
, "ph_state chg %d->%d", cs
->dc
.hfcpci
.ph_state
,
967 cs
->dc
.hfcpci
.ph_state
= exval
;
968 sched_event_D_pci(cs
, D_L1STATECHANGE
);
971 if (val
& 0x80) { /* timer irq */
972 if (cs
->hw
.hfcpci
.nt_mode
) {
973 if ((--cs
->hw
.hfcpci
.nt_timer
) < 0)
974 sched_event_D_pci(cs
, D_L1STATECHANGE
);
977 Write_hfc(cs
, HFCPCI_CTMT
, cs
->hw
.hfcpci
.ctmt
| HFCPCI_CLTIMER
);
980 if (test_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
981 cs
->hw
.hfcpci
.int_s1
|= val
;
982 spin_unlock_irqrestore(&cs
->lock
, flags
);
985 if (cs
->hw
.hfcpci
.int_s1
& 0x18) {
987 val
= cs
->hw
.hfcpci
.int_s1
;
988 cs
->hw
.hfcpci
.int_s1
= exval
;
991 if (!(bcs
= Sel_BCS(cs
, cs
->hw
.hfcpci
.bswapped
? 1 : 0))) {
993 debugl1(cs
, "hfcpci spurious 0x08 IRQ");
995 main_rec_hfcpci(bcs
);
1000 else if (!(bcs
= Sel_BCS(cs
, 1))) {
1002 debugl1(cs
, "hfcpci spurious 0x10 IRQ");
1004 main_rec_hfcpci(bcs
);
1007 if (!(bcs
= Sel_BCS(cs
, cs
->hw
.hfcpci
.bswapped
? 1 : 0))) {
1009 debugl1(cs
, "hfcpci spurious 0x01 IRQ");
1012 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1013 hfcpci_fill_fifo(bcs
);
1014 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1016 debugl1(cs
, "fill_data %d blocked", bcs
->channel
);
1018 if ((bcs
->tx_skb
= skb_dequeue(&bcs
->squeue
))) {
1019 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1020 hfcpci_fill_fifo(bcs
);
1021 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1023 debugl1(cs
, "fill_data %d blocked", bcs
->channel
);
1025 hfcpci_sched_event(bcs
, B_XMTBUFREADY
);
1031 if (!(bcs
= Sel_BCS(cs
, 1))) {
1033 debugl1(cs
, "hfcpci spurious 0x02 IRQ");
1036 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1037 hfcpci_fill_fifo(bcs
);
1038 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1040 debugl1(cs
, "fill_data %d blocked", bcs
->channel
);
1042 if ((bcs
->tx_skb
= skb_dequeue(&bcs
->squeue
))) {
1043 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1044 hfcpci_fill_fifo(bcs
);
1045 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1047 debugl1(cs
, "fill_data %d blocked", bcs
->channel
);
1049 hfcpci_sched_event(bcs
, B_XMTBUFREADY
);
1054 if (val
& 0x20) { /* receive dframe */
1057 if (val
& 0x04) { /* dframe transmitted */
1058 if (test_and_clear_bit(FLG_DBUSY_TIMER
, &cs
->HW_Flags
))
1059 del_timer(&cs
->dbusytimer
);
1060 if (test_and_clear_bit(FLG_L1_DBUSY
, &cs
->HW_Flags
))
1061 sched_event_D_pci(cs
, D_CLEARBUSY
);
1063 if (cs
->tx_skb
->len
) {
1064 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1065 hfcpci_fill_dfifo(cs
);
1066 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1068 debugl1(cs
, "hfcpci_fill_dfifo irq blocked");
1072 dev_kfree_skb_irq(cs
->tx_skb
);
1077 if ((cs
->tx_skb
= skb_dequeue(&cs
->sq
))) {
1079 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1080 hfcpci_fill_dfifo(cs
);
1081 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1083 debugl1(cs
, "hfcpci_fill_dfifo irq blocked");
1086 sched_event_D_pci(cs
, D_XMTBUFREADY
);
1089 if (cs
->hw
.hfcpci
.int_s1
&& count
--) {
1090 val
= cs
->hw
.hfcpci
.int_s1
;
1091 cs
->hw
.hfcpci
.int_s1
= 0;
1092 if (cs
->debug
& L1_DEB_ISAC
)
1093 debugl1(cs
, "HFC-PCI irq %x loop %d", val
, 15 - count
);
1097 spin_unlock_irqrestore(&cs
->lock
, flags
);
1101 /********************************************************************/
1102 /* timer callback for D-chan busy resolution. Currently no function */
1103 /********************************************************************/
1105 hfcpci_dbusy_timer(struct IsdnCardState
*cs
)
1109 /*************************************/
1110 /* Layer 1 D-channel hardware access */
1111 /*************************************/
1113 HFCPCI_l1hw(struct PStack
*st
, int pr
, void *arg
)
1116 struct IsdnCardState
*cs
= (struct IsdnCardState
*) st
->l1
.hardware
;
1117 struct sk_buff
*skb
= arg
;
1120 case (PH_DATA
| REQUEST
):
1121 if (cs
->debug
& DEB_DLOG_HEX
)
1122 LogFrame(cs
, skb
->data
, skb
->len
);
1123 if (cs
->debug
& DEB_DLOG_VERBOSE
)
1124 dlogframe(cs
, skb
, 0);
1125 spin_lock_irqsave(&cs
->lock
, flags
);
1127 skb_queue_tail(&cs
->sq
, skb
);
1128 #ifdef L2FRAME_DEBUG /* psa */
1129 if (cs
->debug
& L1_DEB_LAPD
)
1130 Logl2Frame(cs
, skb
, "PH_DATA Queued", 0);
1135 #ifdef L2FRAME_DEBUG /* psa */
1136 if (cs
->debug
& L1_DEB_LAPD
)
1137 Logl2Frame(cs
, skb
, "PH_DATA", 0);
1139 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1140 hfcpci_fill_dfifo(cs
);
1141 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1143 debugl1(cs
, "hfcpci_fill_dfifo blocked");
1146 spin_unlock_irqrestore(&cs
->lock
, flags
);
1148 case (PH_PULL
| INDICATION
):
1149 spin_lock_irqsave(&cs
->lock
, flags
);
1151 if (cs
->debug
& L1_DEB_WARN
)
1152 debugl1(cs
, " l2l1 tx_skb exist this shouldn't happen");
1153 skb_queue_tail(&cs
->sq
, skb
);
1154 spin_unlock_irqrestore(&cs
->lock
, flags
);
1157 if (cs
->debug
& DEB_DLOG_HEX
)
1158 LogFrame(cs
, skb
->data
, skb
->len
);
1159 if (cs
->debug
& DEB_DLOG_VERBOSE
)
1160 dlogframe(cs
, skb
, 0);
1163 #ifdef L2FRAME_DEBUG /* psa */
1164 if (cs
->debug
& L1_DEB_LAPD
)
1165 Logl2Frame(cs
, skb
, "PH_DATA_PULLED", 0);
1167 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1168 hfcpci_fill_dfifo(cs
);
1169 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1171 debugl1(cs
, "hfcpci_fill_dfifo blocked");
1172 spin_unlock_irqrestore(&cs
->lock
, flags
);
1174 case (PH_PULL
| REQUEST
):
1175 #ifdef L2FRAME_DEBUG /* psa */
1176 if (cs
->debug
& L1_DEB_LAPD
)
1177 debugl1(cs
, "-> PH_REQUEST_PULL");
1180 test_and_clear_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
1181 st
->l1
.l1l2(st
, PH_PULL
| CONFIRM
, NULL
);
1183 test_and_set_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
1185 case (HW_RESET
| REQUEST
):
1186 spin_lock_irqsave(&cs
->lock
, flags
);
1187 Write_hfc(cs
, HFCPCI_STATES
, HFCPCI_LOAD_STATE
| 3); /* HFC ST 3 */
1189 Write_hfc(cs
, HFCPCI_STATES
, 3); /* HFC ST 2 */
1190 cs
->hw
.hfcpci
.mst_m
|= HFCPCI_MASTER
;
1191 Write_hfc(cs
, HFCPCI_MST_MODE
, cs
->hw
.hfcpci
.mst_m
);
1192 Write_hfc(cs
, HFCPCI_STATES
, HFCPCI_ACTIVATE
| HFCPCI_DO_ACTION
);
1193 spin_unlock_irqrestore(&cs
->lock
, flags
);
1194 l1_msg(cs
, HW_POWERUP
| CONFIRM
, NULL
);
1196 case (HW_ENABLE
| REQUEST
):
1197 spin_lock_irqsave(&cs
->lock
, flags
);
1198 Write_hfc(cs
, HFCPCI_STATES
, HFCPCI_DO_ACTION
);
1199 spin_unlock_irqrestore(&cs
->lock
, flags
);
1201 case (HW_DEACTIVATE
| 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_INFO3
| REQUEST
):
1208 spin_lock_irqsave(&cs
->lock
, flags
);
1209 cs
->hw
.hfcpci
.mst_m
|= HFCPCI_MASTER
;
1210 Write_hfc(cs
, HFCPCI_MST_MODE
, cs
->hw
.hfcpci
.mst_m
);
1211 spin_unlock_irqrestore(&cs
->lock
, flags
);
1213 case (HW_TESTLOOP
| REQUEST
):
1214 spin_lock_irqsave(&cs
->lock
, flags
);
1215 switch ((int) arg
) {
1217 Write_hfc(cs
, HFCPCI_B1_SSL
, 0x80); /* tx slot */
1218 Write_hfc(cs
, HFCPCI_B1_RSL
, 0x80); /* rx slot */
1219 cs
->hw
.hfcpci
.conn
= (cs
->hw
.hfcpci
.conn
& ~7) | 1;
1220 Write_hfc(cs
, HFCPCI_CONNECT
, cs
->hw
.hfcpci
.conn
);
1224 Write_hfc(cs
, HFCPCI_B2_SSL
, 0x81); /* tx slot */
1225 Write_hfc(cs
, HFCPCI_B2_RSL
, 0x81); /* rx slot */
1226 cs
->hw
.hfcpci
.conn
= (cs
->hw
.hfcpci
.conn
& ~0x38) | 0x08;
1227 Write_hfc(cs
, HFCPCI_CONNECT
, cs
->hw
.hfcpci
.conn
);
1231 spin_unlock_irqrestore(&cs
->lock
, flags
);
1232 if (cs
->debug
& L1_DEB_WARN
)
1233 debugl1(cs
, "hfcpci_l1hw loop invalid %4x", (int) arg
);
1236 cs
->hw
.hfcpci
.trm
|= 0x80; /* enable IOM-loop */
1237 Write_hfc(cs
, HFCPCI_TRM
, cs
->hw
.hfcpci
.trm
);
1238 spin_unlock_irqrestore(&cs
->lock
, flags
);
1241 if (cs
->debug
& L1_DEB_WARN
)
1242 debugl1(cs
, "hfcpci_l1hw unknown pr %4x", pr
);
1247 /***********************************************/
1248 /* called during init setting l1 stack pointer */
1249 /***********************************************/
1251 setstack_hfcpci(struct PStack
*st
, struct IsdnCardState
*cs
)
1253 st
->l1
.l1hw
= HFCPCI_l1hw
;
1256 /**************************************/
1257 /* send B-channel data if not blocked */
1258 /**************************************/
1260 hfcpci_send_data(struct BCState
*bcs
)
1262 struct IsdnCardState
*cs
= bcs
->cs
;
1264 if (!test_and_set_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
)) {
1265 hfcpci_fill_fifo(bcs
);
1266 test_and_clear_bit(FLG_LOCK_ATOMIC
, &cs
->HW_Flags
);
1268 debugl1(cs
, "send_data %d blocked", bcs
->channel
);
1271 /***************************************************************/
1272 /* activate/deactivate hardware for selected channels and mode */
1273 /***************************************************************/
1275 mode_hfcpci(struct BCState
*bcs
, int mode
, int bc
)
1277 struct IsdnCardState
*cs
= bcs
->cs
;
1280 if (cs
->debug
& L1_DEB_HSCX
)
1281 debugl1(cs
, "HFCPCI bchannel mode %d bchan %d/%d",
1282 mode
, bc
, bcs
->channel
);
1286 if (cs
->chanlimit
> 1) {
1287 cs
->hw
.hfcpci
.bswapped
= 0; /* B1 and B2 normal mode */
1288 cs
->hw
.hfcpci
.sctrl_e
&= ~0x80;
1291 if (mode
!= L1_MODE_NULL
) {
1292 cs
->hw
.hfcpci
.bswapped
= 1; /* B1 and B2 exchanged */
1293 cs
->hw
.hfcpci
.sctrl_e
|= 0x80;
1295 cs
->hw
.hfcpci
.bswapped
= 0; /* B1 and B2 normal mode */
1296 cs
->hw
.hfcpci
.sctrl_e
&= ~0x80;
1300 cs
->hw
.hfcpci
.bswapped
= 0; /* B1 and B2 normal mode */
1301 cs
->hw
.hfcpci
.sctrl_e
&= ~0x80;
1305 case (L1_MODE_NULL
):
1307 cs
->hw
.hfcpci
.sctrl
&= ~SCTRL_B2_ENA
;
1308 cs
->hw
.hfcpci
.sctrl_r
&= ~SCTRL_B2_ENA
;
1310 cs
->hw
.hfcpci
.sctrl
&= ~SCTRL_B1_ENA
;
1311 cs
->hw
.hfcpci
.sctrl_r
&= ~SCTRL_B1_ENA
;
1314 cs
->hw
.hfcpci
.fifo_en
&= ~HFCPCI_FIFOEN_B2
;
1315 cs
->hw
.hfcpci
.int_m1
&= ~(HFCPCI_INTS_B2TRANS
+ HFCPCI_INTS_B2REC
);
1317 cs
->hw
.hfcpci
.fifo_en
&= ~HFCPCI_FIFOEN_B1
;
1318 cs
->hw
.hfcpci
.int_m1
&= ~(HFCPCI_INTS_B1TRANS
+ HFCPCI_INTS_B1REC
);
1321 case (L1_MODE_TRANS
):
1322 hfcpci_clear_fifo_rx(cs
, fifo2
);
1323 hfcpci_clear_fifo_tx(cs
, fifo2
);
1325 cs
->hw
.hfcpci
.sctrl
|= SCTRL_B2_ENA
;
1326 cs
->hw
.hfcpci
.sctrl_r
|= SCTRL_B2_ENA
;
1328 cs
->hw
.hfcpci
.sctrl
|= SCTRL_B1_ENA
;
1329 cs
->hw
.hfcpci
.sctrl_r
|= SCTRL_B1_ENA
;
1332 cs
->hw
.hfcpci
.fifo_en
|= HFCPCI_FIFOEN_B2
;
1333 cs
->hw
.hfcpci
.int_m1
|= (HFCPCI_INTS_B2TRANS
+ HFCPCI_INTS_B2REC
);
1334 cs
->hw
.hfcpci
.ctmt
|= 2;
1335 cs
->hw
.hfcpci
.conn
&= ~0x18;
1337 cs
->hw
.hfcpci
.fifo_en
|= HFCPCI_FIFOEN_B1
;
1338 cs
->hw
.hfcpci
.int_m1
|= (HFCPCI_INTS_B1TRANS
+ HFCPCI_INTS_B1REC
);
1339 cs
->hw
.hfcpci
.ctmt
|= 1;
1340 cs
->hw
.hfcpci
.conn
&= ~0x03;
1343 case (L1_MODE_HDLC
):
1344 hfcpci_clear_fifo_rx(cs
, fifo2
);
1345 hfcpci_clear_fifo_tx(cs
, fifo2
);
1347 cs
->hw
.hfcpci
.sctrl
|= SCTRL_B2_ENA
;
1348 cs
->hw
.hfcpci
.sctrl_r
|= SCTRL_B2_ENA
;
1350 cs
->hw
.hfcpci
.sctrl
|= SCTRL_B1_ENA
;
1351 cs
->hw
.hfcpci
.sctrl_r
|= SCTRL_B1_ENA
;
1354 cs
->hw
.hfcpci
.last_bfifo_cnt
[1] = 0;
1355 cs
->hw
.hfcpci
.fifo_en
|= HFCPCI_FIFOEN_B2
;
1356 cs
->hw
.hfcpci
.int_m1
|= (HFCPCI_INTS_B2TRANS
+ HFCPCI_INTS_B2REC
);
1357 cs
->hw
.hfcpci
.ctmt
&= ~2;
1358 cs
->hw
.hfcpci
.conn
&= ~0x18;
1360 cs
->hw
.hfcpci
.last_bfifo_cnt
[0] = 0;
1361 cs
->hw
.hfcpci
.fifo_en
|= HFCPCI_FIFOEN_B1
;
1362 cs
->hw
.hfcpci
.int_m1
|= (HFCPCI_INTS_B1TRANS
+ HFCPCI_INTS_B1REC
);
1363 cs
->hw
.hfcpci
.ctmt
&= ~1;
1364 cs
->hw
.hfcpci
.conn
&= ~0x03;
1367 case (L1_MODE_EXTRN
):
1369 cs
->hw
.hfcpci
.conn
|= 0x10;
1370 cs
->hw
.hfcpci
.sctrl
|= SCTRL_B2_ENA
;
1371 cs
->hw
.hfcpci
.sctrl_r
|= SCTRL_B2_ENA
;
1372 cs
->hw
.hfcpci
.fifo_en
&= ~HFCPCI_FIFOEN_B2
;
1373 cs
->hw
.hfcpci
.int_m1
&= ~(HFCPCI_INTS_B2TRANS
+ HFCPCI_INTS_B2REC
);
1375 cs
->hw
.hfcpci
.conn
|= 0x02;
1376 cs
->hw
.hfcpci
.sctrl
|= SCTRL_B1_ENA
;
1377 cs
->hw
.hfcpci
.sctrl_r
|= SCTRL_B1_ENA
;
1378 cs
->hw
.hfcpci
.fifo_en
&= ~HFCPCI_FIFOEN_B1
;
1379 cs
->hw
.hfcpci
.int_m1
&= ~(HFCPCI_INTS_B1TRANS
+ HFCPCI_INTS_B1REC
);
1383 Write_hfc(cs
, HFCPCI_SCTRL_E
, cs
->hw
.hfcpci
.sctrl_e
);
1384 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
1385 Write_hfc(cs
, HFCPCI_FIFO_EN
, cs
->hw
.hfcpci
.fifo_en
);
1386 Write_hfc(cs
, HFCPCI_SCTRL
, cs
->hw
.hfcpci
.sctrl
);
1387 Write_hfc(cs
, HFCPCI_SCTRL_R
, cs
->hw
.hfcpci
.sctrl_r
);
1388 Write_hfc(cs
, HFCPCI_CTMT
, cs
->hw
.hfcpci
.ctmt
);
1389 Write_hfc(cs
, HFCPCI_CONNECT
, cs
->hw
.hfcpci
.conn
);
1392 /******************************/
1393 /* Layer2 -> Layer 1 Transfer */
1394 /******************************/
1396 hfcpci_l2l1(struct PStack
*st
, int pr
, void *arg
)
1398 struct BCState
*bcs
= st
->l1
.bcs
;
1400 struct sk_buff
*skb
= arg
;
1403 case (PH_DATA
| REQUEST
):
1404 spin_lock_irqsave(&bcs
->cs
->lock
, flags
);
1406 skb_queue_tail(&bcs
->squeue
, skb
);
1409 // test_and_set_bit(BC_FLG_BUSY, &bcs->Flag);
1410 bcs
->cs
->BC_Send_Data(bcs
);
1412 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1414 case (PH_PULL
| INDICATION
):
1415 spin_lock_irqsave(&bcs
->cs
->lock
, flags
);
1417 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1418 printk(KERN_WARNING
"hfc_l2l1: this shouldn't happen\n");
1421 // test_and_set_bit(BC_FLG_BUSY, &bcs->Flag);
1423 bcs
->cs
->BC_Send_Data(bcs
);
1424 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1426 case (PH_PULL
| REQUEST
):
1428 test_and_clear_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
1429 st
->l1
.l1l2(st
, PH_PULL
| CONFIRM
, NULL
);
1431 test_and_set_bit(FLG_L1_PULL_REQ
, &st
->l1
.Flags
);
1433 case (PH_ACTIVATE
| REQUEST
):
1434 spin_lock_irqsave(&bcs
->cs
->lock
, flags
);
1435 test_and_set_bit(BC_FLG_ACTIV
, &bcs
->Flag
);
1436 mode_hfcpci(bcs
, st
->l1
.mode
, st
->l1
.bc
);
1437 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1438 l1_msg_b(st
, pr
, arg
);
1440 case (PH_DEACTIVATE
| REQUEST
):
1441 l1_msg_b(st
, pr
, arg
);
1443 case (PH_DEACTIVATE
| CONFIRM
):
1444 spin_lock_irqsave(&bcs
->cs
->lock
, flags
);
1445 test_and_clear_bit(BC_FLG_ACTIV
, &bcs
->Flag
);
1446 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
1447 mode_hfcpci(bcs
, 0, st
->l1
.bc
);
1448 spin_unlock_irqrestore(&bcs
->cs
->lock
, flags
);
1449 st
->l1
.l1l2(st
, PH_DEACTIVATE
| CONFIRM
, NULL
);
1454 /******************************************/
1455 /* deactivate B-channel access and queues */
1456 /******************************************/
1458 close_hfcpci(struct BCState
*bcs
)
1460 mode_hfcpci(bcs
, 0, bcs
->channel
);
1461 if (test_and_clear_bit(BC_FLG_INIT
, &bcs
->Flag
)) {
1462 skb_queue_purge(&bcs
->rqueue
);
1463 skb_queue_purge(&bcs
->squeue
);
1465 dev_kfree_skb_any(bcs
->tx_skb
);
1467 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
1472 /*************************************/
1473 /* init B-channel queues and control */
1474 /*************************************/
1476 open_hfcpcistate(struct IsdnCardState
*cs
, struct BCState
*bcs
)
1478 if (!test_and_set_bit(BC_FLG_INIT
, &bcs
->Flag
)) {
1479 skb_queue_head_init(&bcs
->rqueue
);
1480 skb_queue_head_init(&bcs
->squeue
);
1483 test_and_clear_bit(BC_FLG_BUSY
, &bcs
->Flag
);
1489 /*********************************/
1490 /* inits the stack for B-channel */
1491 /*********************************/
1493 setstack_2b(struct PStack
*st
, struct BCState
*bcs
)
1495 bcs
->channel
= st
->l1
.bc
;
1496 if (open_hfcpcistate(st
->l1
.hardware
, bcs
))
1499 st
->l2
.l2l1
= hfcpci_l2l1
;
1500 setstack_manager(st
);
1506 /***************************/
1507 /* handle L1 state changes */
1508 /***************************/
1510 hfcpci_bh(struct IsdnCardState
*cs
)
1513 // struct PStack *stptr;
1517 if (test_and_clear_bit(D_L1STATECHANGE
, &cs
->event
)) {
1518 if (!cs
->hw
.hfcpci
.nt_mode
)
1519 switch (cs
->dc
.hfcpci
.ph_state
) {
1521 l1_msg(cs
, HW_RESET
| INDICATION
, NULL
);
1524 l1_msg(cs
, HW_DEACTIVATE
| INDICATION
, NULL
);
1527 l1_msg(cs
, HW_RSYNC
| INDICATION
, NULL
);
1530 l1_msg(cs
, HW_INFO2
| INDICATION
, NULL
);
1533 l1_msg(cs
, HW_INFO4_P8
| INDICATION
, NULL
);
1538 spin_lock_irqsave(&cs
->lock
, flags
);
1539 switch (cs
->dc
.hfcpci
.ph_state
) {
1541 if (cs
->hw
.hfcpci
.nt_timer
< 0) {
1542 cs
->hw
.hfcpci
.nt_timer
= 0;
1543 cs
->hw
.hfcpci
.int_m1
&= ~HFCPCI_INTS_TIMER
;
1544 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
1545 /* Clear already pending ints */
1546 if (Read_hfc(cs
, HFCPCI_INT_S1
));
1547 Write_hfc(cs
, HFCPCI_STATES
, 4 | HFCPCI_LOAD_STATE
);
1549 Write_hfc(cs
, HFCPCI_STATES
, 4);
1550 cs
->dc
.hfcpci
.ph_state
= 4;
1552 cs
->hw
.hfcpci
.int_m1
|= HFCPCI_INTS_TIMER
;
1553 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
1554 cs
->hw
.hfcpci
.ctmt
&= ~HFCPCI_AUTO_TIMER
;
1555 cs
->hw
.hfcpci
.ctmt
|= HFCPCI_TIM3_125
;
1556 Write_hfc(cs
, HFCPCI_CTMT
, cs
->hw
.hfcpci
.ctmt
| HFCPCI_CLTIMER
);
1557 Write_hfc(cs
, HFCPCI_CTMT
, cs
->hw
.hfcpci
.ctmt
| HFCPCI_CLTIMER
);
1558 cs
->hw
.hfcpci
.nt_timer
= NT_T1_COUNT
;
1559 Write_hfc(cs
, HFCPCI_STATES
, 2 | HFCPCI_NT_G2_G3
); /* allow G2 -> G3 transition */
1565 cs
->hw
.hfcpci
.nt_timer
= 0;
1566 cs
->hw
.hfcpci
.int_m1
&= ~HFCPCI_INTS_TIMER
;
1567 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
1572 spin_unlock_irqrestore(&cs
->lock
, flags
);
1575 if (test_and_clear_bit(D_RCVBUFREADY
, &cs
->event
))
1576 DChannel_proc_rcv(cs
);
1577 if (test_and_clear_bit(D_XMTBUFREADY
, &cs
->event
))
1578 DChannel_proc_xmt(cs
);
1582 /********************************/
1583 /* called for card init message */
1584 /********************************/
1586 inithfcpci(struct IsdnCardState
*cs
)
1588 cs
->bcs
[0].BC_SetStack
= setstack_2b
;
1589 cs
->bcs
[1].BC_SetStack
= setstack_2b
;
1590 cs
->bcs
[0].BC_Close
= close_hfcpci
;
1591 cs
->bcs
[1].BC_Close
= close_hfcpci
;
1592 cs
->dbusytimer
.function
= (void *) hfcpci_dbusy_timer
;
1593 cs
->dbusytimer
.data
= (long) cs
;
1594 init_timer(&cs
->dbusytimer
);
1595 mode_hfcpci(cs
->bcs
, 0, 0);
1596 mode_hfcpci(cs
->bcs
+ 1, 0, 1);
1601 /*******************************************/
1602 /* handle card messages from control layer */
1603 /*******************************************/
1605 hfcpci_card_msg(struct IsdnCardState
*cs
, int mt
, void *arg
)
1609 if (cs
->debug
& L1_DEB_ISAC
)
1610 debugl1(cs
, "HFCPCI: card_msg %x", mt
);
1613 spin_lock_irqsave(&cs
->lock
, flags
);
1615 spin_unlock_irqrestore(&cs
->lock
, flags
);
1618 release_io_hfcpci(cs
);
1621 spin_lock_irqsave(&cs
->lock
, flags
);
1624 spin_unlock_irqrestore(&cs
->lock
, flags
);
1625 msleep(80); /* Timeout 80ms */
1626 /* now switch timer interrupt off */
1627 spin_lock_irqsave(&cs
->lock
, flags
);
1628 cs
->hw
.hfcpci
.int_m1
&= ~HFCPCI_INTS_TIMER
;
1629 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
1630 /* reinit mode reg */
1631 Write_hfc(cs
, HFCPCI_MST_MODE
, cs
->hw
.hfcpci
.mst_m
);
1632 spin_unlock_irqrestore(&cs
->lock
, flags
);
1641 /* this variable is used as card index when more than one cards are present */
1642 static struct pci_dev
*dev_hfcpci __initdata
= NULL
;
1644 #endif /* CONFIG_PCI */
1647 setup_hfcpci(struct IsdnCard
*card
)
1650 struct IsdnCardState
*cs
= card
->cs
;
1653 struct pci_dev
*tmp_hfcpci
= NULL
;
1656 #error "not running on big endian machines now"
1658 strcpy(tmp
, hfcpci_revision
);
1659 printk(KERN_INFO
"HiSax: HFC-PCI driver Rev. %s\n", HiSax_getrev(tmp
));
1661 cs
->hw
.hfcpci
.int_s1
= 0;
1662 cs
->dc
.hfcpci
.ph_state
= 0;
1663 cs
->hw
.hfcpci
.fifo
= 255;
1664 if (cs
->typ
== ISDN_CTYPE_HFC_PCI
) {
1666 while (id_list
[i
].vendor_id
) {
1667 tmp_hfcpci
= pci_find_device(id_list
[i
].vendor_id
,
1668 id_list
[i
].device_id
,
1672 if (pci_enable_device(tmp_hfcpci
))
1674 pci_set_master(tmp_hfcpci
);
1675 if ((card
->para
[0]) && (card
->para
[0] != (tmp_hfcpci
->resource
[ 0].start
& PCI_BASE_ADDRESS_IO_MASK
)))
1684 dev_hfcpci
= tmp_hfcpci
; /* old device */
1685 cs
->hw
.hfcpci
.dev
= dev_hfcpci
;
1686 cs
->irq
= dev_hfcpci
->irq
;
1688 printk(KERN_WARNING
"HFC-PCI: No IRQ for PCI card found\n");
1691 cs
->hw
.hfcpci
.pci_io
= (char *) dev_hfcpci
->resource
[ 1].start
;
1692 printk(KERN_INFO
"HiSax: HFC-PCI card manufacturer: %s card name: %s\n", id_list
[i
].vendor_name
, id_list
[i
].card_name
);
1694 printk(KERN_WARNING
"HFC-PCI: No PCI card found\n");
1697 if (!cs
->hw
.hfcpci
.pci_io
) {
1698 printk(KERN_WARNING
"HFC-PCI: No IO-Mem for PCI card found\n");
1701 /* Allocate memory for FIFOS */
1702 /* Because the HFC-PCI needs a 32K physical alignment, we */
1703 /* need to allocate the double mem and align the address */
1704 if (!(cs
->hw
.hfcpci
.share_start
= kmalloc(65536, GFP_KERNEL
))) {
1705 printk(KERN_WARNING
"HFC-PCI: Error allocating memory for FIFO!\n");
1708 cs
->hw
.hfcpci
.fifos
= (void *)
1709 (((ulong
) cs
->hw
.hfcpci
.share_start
) & ~0x7FFF) + 0x8000;
1710 pci_write_config_dword(cs
->hw
.hfcpci
.dev
, 0x80, (u_int
) virt_to_bus(cs
->hw
.hfcpci
.fifos
));
1711 cs
->hw
.hfcpci
.pci_io
= ioremap((ulong
) cs
->hw
.hfcpci
.pci_io
, 256);
1713 "HFC-PCI: defined at mem %#x fifo %#x(%#x) IRQ %d HZ %d\n",
1714 (u_int
) cs
->hw
.hfcpci
.pci_io
,
1715 (u_int
) cs
->hw
.hfcpci
.fifos
,
1716 (u_int
) virt_to_bus(cs
->hw
.hfcpci
.fifos
),
1718 spin_lock_irqsave(&cs
->lock
, flags
);
1719 pci_write_config_word(cs
->hw
.hfcpci
.dev
, PCI_COMMAND
, PCI_ENA_MEMIO
); /* enable memory mapped ports, disable busmaster */
1720 cs
->hw
.hfcpci
.int_m2
= 0; /* disable alle interrupts */
1721 cs
->hw
.hfcpci
.int_m1
= 0;
1722 Write_hfc(cs
, HFCPCI_INT_M1
, cs
->hw
.hfcpci
.int_m1
);
1723 Write_hfc(cs
, HFCPCI_INT_M2
, cs
->hw
.hfcpci
.int_m2
);
1724 /* At this point the needed PCI config is done */
1725 /* fifos are still not enabled */
1726 INIT_WORK(&cs
->tqueue
, (void *)(void *) hfcpci_bh
, cs
);
1727 cs
->setstack_d
= setstack_hfcpci
;
1728 cs
->BC_Send_Data
= &hfcpci_send_data
;
1729 cs
->readisac
= NULL
;
1730 cs
->writeisac
= NULL
;
1731 cs
->readisacfifo
= NULL
;
1732 cs
->writeisacfifo
= NULL
;
1733 cs
->BC_Read_Reg
= NULL
;
1734 cs
->BC_Write_Reg
= NULL
;
1735 cs
->irq_func
= &hfcpci_interrupt
;
1736 cs
->irq_flags
|= SA_SHIRQ
;
1737 cs
->hw
.hfcpci
.timer
.function
= (void *) hfcpci_Timer
;
1738 cs
->hw
.hfcpci
.timer
.data
= (long) cs
;
1739 init_timer(&cs
->hw
.hfcpci
.timer
);
1740 cs
->cardmsg
= &hfcpci_card_msg
;
1741 cs
->auxcmd
= &hfcpci_auxcmd
;
1742 spin_unlock_irqrestore(&cs
->lock
, flags
);
1745 return (0); /* no valid card type */
1747 printk(KERN_WARNING
"HFC-PCI: NO_PCI_BIOS\n");
1749 #endif /* CONFIG_PCI */