1 /*********************************************************************
5 * Description: Driver for the NSC PC'108 and PC'338 IrDA chipsets
7 * Author: Dag Brattli <dagb@cs.uit.no>
8 * Created at: Sat Nov 7 21:43:15 1998
9 * Modified at: Wed Mar 1 11:29:34 2000
10 * Modified by: Dag Brattli <dagb@cs.uit.no>
12 * Copyright (c) 1998-2000 Dag Brattli <dagb@cs.uit.no>
13 * Copyright (c) 1998 Lichen Wang, <lwang@actisys.com>
14 * Copyright (c) 1998 Actisys Corp., www.actisys.com
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
22 * Neither Dag Brattli nor University of Tromsø admit liability nor
23 * provide warranty for any of this software. This material is
24 * provided "AS-IS" and at no charge.
26 * Notice that all functions that needs to access the chip in _any_
27 * way, must save BSR register on entry, and restore it on exit.
28 * It is _very_ important to follow this policy!
32 * bank = inb(iobase+BSR);
34 * do_your_stuff_here();
36 * outb(bank, iobase+BSR);
38 * If you find bugs in this file, its very likely that the same bug
39 * will also be in w83977af_ir.c since the implementations are quite
42 ********************************************************************/
44 #include <linux/module.h>
46 #include <linux/kernel.h>
47 #include <linux/types.h>
48 #include <linux/skbuff.h>
49 #include <linux/netdevice.h>
50 #include <linux/ioport.h>
51 #include <linux/delay.h>
52 #include <linux/slab.h>
53 #include <linux/init.h>
54 #include <linux/rtnetlink.h>
55 #include <linux/dma-mapping.h>
59 #include <asm/byteorder.h>
63 #include <net/irda/wrapper.h>
64 #include <net/irda/irda.h>
65 #include <net/irda/irda_device.h>
69 #define CHIP_IO_EXTENT 8
70 #define BROKEN_DONGLE_ID
72 static char *driver_name
= "nsc-ircc";
74 /* Module parameters */
75 static int qos_mtt_bits
= 0x07; /* 1 ms or more */
78 /* Use BIOS settions by default, but user may supply module parameters */
79 static unsigned int io
[] = { ~0, ~0, ~0, ~0 };
80 static unsigned int irq
[] = { 0, 0, 0, 0, 0 };
81 static unsigned int dma
[] = { 0, 0, 0, 0, 0 };
83 static int nsc_ircc_probe_108(nsc_chip_t
*chip
, chipio_t
*info
);
84 static int nsc_ircc_probe_338(nsc_chip_t
*chip
, chipio_t
*info
);
85 static int nsc_ircc_probe_39x(nsc_chip_t
*chip
, chipio_t
*info
);
86 static int nsc_ircc_init_108(nsc_chip_t
*chip
, chipio_t
*info
);
87 static int nsc_ircc_init_338(nsc_chip_t
*chip
, chipio_t
*info
);
88 static int nsc_ircc_init_39x(nsc_chip_t
*chip
, chipio_t
*info
);
90 /* These are the known NSC chips */
91 static nsc_chip_t chips
[] = {
92 /* Name, {cfg registers}, chip id index reg, chip id expected value, revision mask */
93 { "PC87108", { 0x150, 0x398, 0xea }, 0x05, 0x10, 0xf0,
94 nsc_ircc_probe_108
, nsc_ircc_init_108
},
95 { "PC87338", { 0x398, 0x15c, 0x2e }, 0x08, 0xb0, 0xf8,
96 nsc_ircc_probe_338
, nsc_ircc_init_338
},
97 /* Contributed by Steffen Pingel - IBM X40 */
98 { "PC8738x", { 0x164e, 0x4e, 0x0 }, 0x20, 0xf4, 0xff,
99 nsc_ircc_probe_39x
, nsc_ircc_init_39x
},
100 /* Contributed by Jan Frey - IBM A30/A31 */
101 { "PC8739x", { 0x2e, 0x4e, 0x0 }, 0x20, 0xea, 0xff,
102 nsc_ircc_probe_39x
, nsc_ircc_init_39x
},
106 /* Max 4 instances for now */
107 static struct nsc_ircc_cb
*dev_self
[] = { NULL
, NULL
, NULL
, NULL
};
109 static char *dongle_types
[] = {
110 "Differential serial interface",
111 "Differential serial interface",
116 "Single-ended serial interface",
118 "HP HSDL-2300, HP HSDL-3600/HSDL-3610",
119 "IBM31T1100 or Temic TFDS6000/TFDS6500",
122 "HP HSDL-1100/HSDL-2100",
123 "HP HSDL-1100/HSDL-2100",
124 "Supports SIR Mode only",
125 "No dongle connected",
128 /* Some prototypes */
129 static int nsc_ircc_open(int i
, chipio_t
*info
);
130 static int nsc_ircc_close(struct nsc_ircc_cb
*self
);
131 static int nsc_ircc_setup(chipio_t
*info
);
132 static void nsc_ircc_pio_receive(struct nsc_ircc_cb
*self
);
133 static int nsc_ircc_dma_receive(struct nsc_ircc_cb
*self
);
134 static int nsc_ircc_dma_receive_complete(struct nsc_ircc_cb
*self
, int iobase
);
135 static int nsc_ircc_hard_xmit_sir(struct sk_buff
*skb
, struct net_device
*dev
);
136 static int nsc_ircc_hard_xmit_fir(struct sk_buff
*skb
, struct net_device
*dev
);
137 static int nsc_ircc_pio_write(int iobase
, __u8
*buf
, int len
, int fifo_size
);
138 static void nsc_ircc_dma_xmit(struct nsc_ircc_cb
*self
, int iobase
);
139 static __u8
nsc_ircc_change_speed(struct nsc_ircc_cb
*self
, __u32 baud
);
140 static int nsc_ircc_is_receiving(struct nsc_ircc_cb
*self
);
141 static int nsc_ircc_read_dongle_id (int iobase
);
142 static void nsc_ircc_init_dongle_interface (int iobase
, int dongle_id
);
144 static int nsc_ircc_net_open(struct net_device
*dev
);
145 static int nsc_ircc_net_close(struct net_device
*dev
);
146 static int nsc_ircc_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
147 static struct net_device_stats
*nsc_ircc_net_get_stats(struct net_device
*dev
);
148 static int nsc_ircc_pmproc(struct pm_dev
*dev
, pm_request_t rqst
, void *data
);
151 * Function nsc_ircc_init ()
153 * Initialize chip. Just try to find out how many chips we are dealing with
156 static int __init
nsc_ircc_init(void)
166 /* Probe for all the NSC chipsets we know about */
167 for (chip
=chips
; chip
->name
; chip
++) {
168 IRDA_DEBUG(2, "%s(), Probing for %s ...\n", __FUNCTION__
,
171 /* Try all config registers for this chip */
172 for (cfg
=0; cfg
<3; cfg
++) {
173 cfg_base
= chip
->cfg
[cfg
];
177 memset(&info
, 0, sizeof(chipio_t
));
178 info
.cfg_base
= cfg_base
;
179 info
.fir_base
= io
[i
];
183 /* Read index register */
186 IRDA_DEBUG(2, "%s() no chip at 0x%03x\n", __FUNCTION__
, cfg_base
);
190 /* Read chip identification register */
191 outb(chip
->cid_index
, cfg_base
);
192 id
= inb(cfg_base
+1);
193 if ((id
& chip
->cid_mask
) == chip
->cid_value
) {
194 IRDA_DEBUG(2, "%s() Found %s chip, revision=%d\n",
195 __FUNCTION__
, chip
->name
, id
& ~chip
->cid_mask
);
197 * If the user supplies the base address, then
198 * we init the chip, if not we probe the values
201 if (io
[i
] < 0x2000) {
202 chip
->init(chip
, &info
);
204 chip
->probe(chip
, &info
);
206 if (nsc_ircc_open(i
, &info
) == 0)
210 IRDA_DEBUG(2, "%s(), Wrong chip id=0x%02x\n", __FUNCTION__
, id
);
220 * Function nsc_ircc_cleanup ()
222 * Close all configured chips
225 static void __exit
nsc_ircc_cleanup(void)
229 pm_unregister_all(nsc_ircc_pmproc
);
231 for (i
=0; i
< 4; i
++) {
233 nsc_ircc_close(dev_self
[i
]);
238 * Function nsc_ircc_open (iobase, irq)
240 * Open driver instance
243 static int __init
nsc_ircc_open(int i
, chipio_t
*info
)
245 struct net_device
*dev
;
246 struct nsc_ircc_cb
*self
;
247 struct pm_dev
*pmdev
;
251 IRDA_DEBUG(2, "%s()\n", __FUNCTION__
);
253 IRDA_MESSAGE("%s, Found chip at base=0x%03x\n", driver_name
,
256 if ((nsc_ircc_setup(info
)) == -1)
259 IRDA_MESSAGE("%s, driver loaded (Dag Brattli)\n", driver_name
);
261 dev
= alloc_irdadev(sizeof(struct nsc_ircc_cb
));
263 IRDA_ERROR("%s(), can't allocate memory for "
264 "control block!\n", __FUNCTION__
);
270 spin_lock_init(&self
->lock
);
272 /* Need to store self somewhere */
277 self
->io
.cfg_base
= info
->cfg_base
;
278 self
->io
.fir_base
= info
->fir_base
;
279 self
->io
.irq
= info
->irq
;
280 self
->io
.fir_ext
= CHIP_IO_EXTENT
;
281 self
->io
.dma
= info
->dma
;
282 self
->io
.fifo_size
= 32;
284 /* Reserve the ioports that we need */
285 ret
= request_region(self
->io
.fir_base
, self
->io
.fir_ext
, driver_name
);
287 IRDA_WARNING("%s(), can't get iobase of 0x%03x\n",
288 __FUNCTION__
, self
->io
.fir_base
);
293 /* Initialize QoS for this device */
294 irda_init_max_qos_capabilies(&self
->qos
);
296 /* The only value we must override it the baudrate */
297 self
->qos
.baud_rate
.bits
= IR_9600
|IR_19200
|IR_38400
|IR_57600
|
298 IR_115200
|IR_576000
|IR_1152000
|(IR_4000000
<< 8);
300 self
->qos
.min_turn_time
.bits
= qos_mtt_bits
;
301 irda_qos_bits_to_value(&self
->qos
);
303 /* Max DMA buffer size needed = (data_size + 6) * (window_size) + 6; */
304 self
->rx_buff
.truesize
= 14384;
305 self
->tx_buff
.truesize
= 14384;
307 /* Allocate memory if needed */
309 dma_alloc_coherent(NULL
, self
->rx_buff
.truesize
,
310 &self
->rx_buff_dma
, GFP_KERNEL
);
311 if (self
->rx_buff
.head
== NULL
) {
316 memset(self
->rx_buff
.head
, 0, self
->rx_buff
.truesize
);
319 dma_alloc_coherent(NULL
, self
->tx_buff
.truesize
,
320 &self
->tx_buff_dma
, GFP_KERNEL
);
321 if (self
->tx_buff
.head
== NULL
) {
325 memset(self
->tx_buff
.head
, 0, self
->tx_buff
.truesize
);
327 self
->rx_buff
.in_frame
= FALSE
;
328 self
->rx_buff
.state
= OUTSIDE_FRAME
;
329 self
->tx_buff
.data
= self
->tx_buff
.head
;
330 self
->rx_buff
.data
= self
->rx_buff
.head
;
332 /* Reset Tx queue info */
333 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
334 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
336 /* Override the network functions we need to use */
337 SET_MODULE_OWNER(dev
);
338 dev
->hard_start_xmit
= nsc_ircc_hard_xmit_sir
;
339 dev
->open
= nsc_ircc_net_open
;
340 dev
->stop
= nsc_ircc_net_close
;
341 dev
->do_ioctl
= nsc_ircc_net_ioctl
;
342 dev
->get_stats
= nsc_ircc_net_get_stats
;
344 err
= register_netdev(dev
);
346 IRDA_ERROR("%s(), register_netdev() failed!\n", __FUNCTION__
);
349 IRDA_MESSAGE("IrDA: Registered device %s\n", dev
->name
);
351 /* Check if user has supplied a valid dongle id or not */
352 if ((dongle_id
<= 0) ||
353 (dongle_id
>= (sizeof(dongle_types
) / sizeof(dongle_types
[0]))) ) {
354 dongle_id
= nsc_ircc_read_dongle_id(self
->io
.fir_base
);
356 IRDA_MESSAGE("%s, Found dongle: %s\n", driver_name
,
357 dongle_types
[dongle_id
]);
359 IRDA_MESSAGE("%s, Using dongle: %s\n", driver_name
,
360 dongle_types
[dongle_id
]);
363 self
->io
.dongle_id
= dongle_id
;
364 nsc_ircc_init_dongle_interface(self
->io
.fir_base
, dongle_id
);
366 pmdev
= pm_register(PM_SYS_DEV
, PM_SYS_IRDA
, nsc_ircc_pmproc
);
372 dma_free_coherent(NULL
, self
->tx_buff
.truesize
,
373 self
->tx_buff
.head
, self
->tx_buff_dma
);
375 dma_free_coherent(NULL
, self
->rx_buff
.truesize
,
376 self
->rx_buff
.head
, self
->rx_buff_dma
);
378 release_region(self
->io
.fir_base
, self
->io
.fir_ext
);
386 * Function nsc_ircc_close (self)
388 * Close driver instance
391 static int __exit
nsc_ircc_close(struct nsc_ircc_cb
*self
)
395 IRDA_DEBUG(4, "%s()\n", __FUNCTION__
);
397 IRDA_ASSERT(self
!= NULL
, return -1;);
399 iobase
= self
->io
.fir_base
;
401 /* Remove netdevice */
402 unregister_netdev(self
->netdev
);
404 /* Release the PORT that this driver is using */
405 IRDA_DEBUG(4, "%s(), Releasing Region %03x\n",
406 __FUNCTION__
, self
->io
.fir_base
);
407 release_region(self
->io
.fir_base
, self
->io
.fir_ext
);
409 if (self
->tx_buff
.head
)
410 dma_free_coherent(NULL
, self
->tx_buff
.truesize
,
411 self
->tx_buff
.head
, self
->tx_buff_dma
);
413 if (self
->rx_buff
.head
)
414 dma_free_coherent(NULL
, self
->rx_buff
.truesize
,
415 self
->rx_buff
.head
, self
->rx_buff_dma
);
417 dev_self
[self
->index
] = NULL
;
418 free_netdev(self
->netdev
);
424 * Function nsc_ircc_init_108 (iobase, cfg_base, irq, dma)
426 * Initialize the NSC '108 chip
429 static int nsc_ircc_init_108(nsc_chip_t
*chip
, chipio_t
*info
)
431 int cfg_base
= info
->cfg_base
;
434 outb(2, cfg_base
); /* Mode Control Register (MCTL) */
435 outb(0x00, cfg_base
+1); /* Disable device */
437 /* Base Address and Interrupt Control Register (BAIC) */
438 outb(CFG_108_BAIC
, cfg_base
);
439 switch (info
->fir_base
) {
440 case 0x3e8: outb(0x14, cfg_base
+1); break;
441 case 0x2e8: outb(0x15, cfg_base
+1); break;
442 case 0x3f8: outb(0x16, cfg_base
+1); break;
443 case 0x2f8: outb(0x17, cfg_base
+1); break;
444 default: IRDA_ERROR("%s(), invalid base_address", __FUNCTION__
);
447 /* Control Signal Routing Register (CSRT) */
449 case 3: temp
= 0x01; break;
450 case 4: temp
= 0x02; break;
451 case 5: temp
= 0x03; break;
452 case 7: temp
= 0x04; break;
453 case 9: temp
= 0x05; break;
454 case 11: temp
= 0x06; break;
455 case 15: temp
= 0x07; break;
456 default: IRDA_ERROR("%s(), invalid irq", __FUNCTION__
);
458 outb(CFG_108_CSRT
, cfg_base
);
461 case 0: outb(0x08+temp
, cfg_base
+1); break;
462 case 1: outb(0x10+temp
, cfg_base
+1); break;
463 case 3: outb(0x18+temp
, cfg_base
+1); break;
464 default: IRDA_ERROR("%s(), invalid dma", __FUNCTION__
);
467 outb(CFG_108_MCTL
, cfg_base
); /* Mode Control Register (MCTL) */
468 outb(0x03, cfg_base
+1); /* Enable device */
474 * Function nsc_ircc_probe_108 (chip, info)
479 static int nsc_ircc_probe_108(nsc_chip_t
*chip
, chipio_t
*info
)
481 int cfg_base
= info
->cfg_base
;
484 /* Read address and interrupt control register (BAIC) */
485 outb(CFG_108_BAIC
, cfg_base
);
486 reg
= inb(cfg_base
+1);
488 switch (reg
& 0x03) {
490 info
->fir_base
= 0x3e8;
493 info
->fir_base
= 0x2e8;
496 info
->fir_base
= 0x3f8;
499 info
->fir_base
= 0x2f8;
502 info
->sir_base
= info
->fir_base
;
503 IRDA_DEBUG(2, "%s(), probing fir_base=0x%03x\n", __FUNCTION__
,
506 /* Read control signals routing register (CSRT) */
507 outb(CFG_108_CSRT
, cfg_base
);
508 reg
= inb(cfg_base
+1);
510 switch (reg
& 0x07) {
536 IRDA_DEBUG(2, "%s(), probing irq=%d\n", __FUNCTION__
, info
->irq
);
538 /* Currently we only read Rx DMA but it will also be used for Tx */
539 switch ((reg
>> 3) & 0x03) {
553 IRDA_DEBUG(2, "%s(), probing dma=%d\n", __FUNCTION__
, info
->dma
);
555 /* Read mode control register (MCTL) */
556 outb(CFG_108_MCTL
, cfg_base
);
557 reg
= inb(cfg_base
+1);
559 info
->enabled
= reg
& 0x01;
560 info
->suspended
= !((reg
>> 1) & 0x01);
566 * Function nsc_ircc_init_338 (chip, info)
568 * Initialize the NSC '338 chip. Remember that the 87338 needs two
569 * consecutive writes to the data registers while CPU interrupts are
570 * disabled. The 97338 does not require this, but shouldn't be any
571 * harm if we do it anyway.
573 static int nsc_ircc_init_338(nsc_chip_t
*chip
, chipio_t
*info
)
581 * Function nsc_ircc_probe_338 (chip, info)
586 static int nsc_ircc_probe_338(nsc_chip_t
*chip
, chipio_t
*info
)
588 int cfg_base
= info
->cfg_base
;
592 /* Read funtion enable register (FER) */
593 outb(CFG_338_FER
, cfg_base
);
594 reg
= inb(cfg_base
+1);
596 info
->enabled
= (reg
>> 2) & 0x01;
598 /* Check if we are in Legacy or PnP mode */
599 outb(CFG_338_PNP0
, cfg_base
);
600 reg
= inb(cfg_base
+1);
602 pnp
= (reg
>> 3) & 0x01;
604 IRDA_DEBUG(2, "(), Chip is in PnP mode\n");
605 outb(0x46, cfg_base
);
606 reg
= (inb(cfg_base
+1) & 0xfe) << 2;
608 outb(0x47, cfg_base
);
609 reg
|= ((inb(cfg_base
+1) & 0xfc) << 8);
611 info
->fir_base
= reg
;
613 /* Read function address register (FAR) */
614 outb(CFG_338_FAR
, cfg_base
);
615 reg
= inb(cfg_base
+1);
617 switch ((reg
>> 4) & 0x03) {
619 info
->fir_base
= 0x3f8;
622 info
->fir_base
= 0x2f8;
633 switch ((reg
>> 6) & 0x03) {
636 info
->fir_base
= 0x3e8;
638 info
->fir_base
= 0x2e8;
642 info
->fir_base
= 0x338;
644 info
->fir_base
= 0x238;
648 info
->fir_base
= 0x2e8;
650 info
->fir_base
= 0x2e0;
654 info
->fir_base
= 0x220;
656 info
->fir_base
= 0x228;
661 info
->sir_base
= info
->fir_base
;
663 /* Read PnP register 1 (PNP1) */
664 outb(CFG_338_PNP1
, cfg_base
);
665 reg
= inb(cfg_base
+1);
667 info
->irq
= reg
>> 4;
669 /* Read PnP register 3 (PNP3) */
670 outb(CFG_338_PNP3
, cfg_base
);
671 reg
= inb(cfg_base
+1);
673 info
->dma
= (reg
& 0x07) - 1;
675 /* Read power and test register (PTR) */
676 outb(CFG_338_PTR
, cfg_base
);
677 reg
= inb(cfg_base
+1);
679 info
->suspended
= reg
& 0x01;
686 * Function nsc_ircc_init_39x (chip, info)
688 * Now that we know it's a '39x (see probe below), we need to
689 * configure it so we can use it.
691 * The NSC '338 chip is a Super I/O chip with a "bank" architecture,
692 * the configuration of the different functionality (serial, parallel,
693 * floppy...) are each in a different bank (Logical Device Number).
694 * The base address, irq and dma configuration registers are common
695 * to all functionalities (index 0x30 to 0x7F).
696 * There is only one configuration register specific to the
697 * serial port, CFG_39X_SPC.
700 * Note : this code was written by Jan Frey <janfrey@web.de>
702 static int nsc_ircc_init_39x(nsc_chip_t
*chip
, chipio_t
*info
)
704 int cfg_base
= info
->cfg_base
;
707 /* User is shure about his config... accept it. */
708 IRDA_DEBUG(2, "%s(): nsc_ircc_init_39x (user settings): "
709 "io=0x%04x, irq=%d, dma=%d\n",
710 __FUNCTION__
, info
->fir_base
, info
->irq
, info
->dma
);
712 /* Access bank for SP2 */
713 outb(CFG_39X_LDN
, cfg_base
);
714 outb(0x02, cfg_base
+1);
718 /* We want to enable the device if not enabled */
719 outb(CFG_39X_ACT
, cfg_base
);
720 enabled
= inb(cfg_base
+1) & 0x01;
723 /* Enable the device */
724 outb(CFG_39X_SIOCF1
, cfg_base
);
725 outb(0x01, cfg_base
+1);
726 /* May want to update info->enabled. Jean II */
729 /* Enable UART bank switching (bit 7) ; Sets the chip to normal
730 * power mode (wake up from sleep mode) (bit 1) */
731 outb(CFG_39X_SPC
, cfg_base
);
732 outb(0x82, cfg_base
+1);
738 * Function nsc_ircc_probe_39x (chip, info)
740 * Test if we really have a '39x chip at the given address
742 * Note : this code was written by Jan Frey <janfrey@web.de>
744 static int nsc_ircc_probe_39x(nsc_chip_t
*chip
, chipio_t
*info
)
746 int cfg_base
= info
->cfg_base
;
747 int reg1
, reg2
, irq
, irqt
, dma1
, dma2
;
750 IRDA_DEBUG(2, "%s(), nsc_ircc_probe_39x, base=%d\n",
751 __FUNCTION__
, cfg_base
);
753 /* This function should be executed with irq off to avoid
754 * another driver messing with the Super I/O bank - Jean II */
756 /* Access bank for SP2 */
757 outb(CFG_39X_LDN
, cfg_base
);
758 outb(0x02, cfg_base
+1);
760 /* Read infos about SP2 ; store in info struct */
761 outb(CFG_39X_BASEH
, cfg_base
);
762 reg1
= inb(cfg_base
+1);
763 outb(CFG_39X_BASEL
, cfg_base
);
764 reg2
= inb(cfg_base
+1);
765 info
->fir_base
= (reg1
<< 8) | reg2
;
767 outb(CFG_39X_IRQNUM
, cfg_base
);
768 irq
= inb(cfg_base
+1);
769 outb(CFG_39X_IRQSEL
, cfg_base
);
770 irqt
= inb(cfg_base
+1);
773 outb(CFG_39X_DMA0
, cfg_base
);
774 dma1
= inb(cfg_base
+1);
775 outb(CFG_39X_DMA1
, cfg_base
);
776 dma2
= inb(cfg_base
+1);
779 outb(CFG_39X_ACT
, cfg_base
);
780 info
->enabled
= enabled
= inb(cfg_base
+1) & 0x01;
782 outb(CFG_39X_SPC
, cfg_base
);
783 susp
= 1 - ((inb(cfg_base
+1) & 0x02) >> 1);
785 IRDA_DEBUG(2, "%s(): io=0x%02x%02x, irq=%d (type %d), rxdma=%d, txdma=%d, enabled=%d (suspended=%d)\n", __FUNCTION__
, reg1
,reg2
,irq
,irqt
,dma1
,dma2
,enabled
,susp
);
789 /* We want to enable the device if not enabled */
790 outb(CFG_39X_ACT
, cfg_base
);
791 enabled
= inb(cfg_base
+1) & 0x01;
794 /* Enable the device */
795 outb(CFG_39X_SIOCF1
, cfg_base
);
796 outb(0x01, cfg_base
+1);
797 /* May want to update info->enabled. Jean II */
800 /* Enable UART bank switching (bit 7) ; Sets the chip to normal
801 * power mode (wake up from sleep mode) (bit 1) */
802 outb(CFG_39X_SPC
, cfg_base
);
803 outb(0x82, cfg_base
+1);
809 * Function nsc_ircc_setup (info)
811 * Returns non-negative on success.
814 static int nsc_ircc_setup(chipio_t
*info
)
817 int iobase
= info
->fir_base
;
819 /* Read the Module ID */
820 switch_bank(iobase
, BANK3
);
821 version
= inb(iobase
+MID
);
823 IRDA_DEBUG(2, "%s() Driver %s Found chip version %02x\n",
824 __FUNCTION__
, driver_name
, version
);
827 if (0x20 != (version
& 0xf0)) {
828 IRDA_ERROR("%s, Wrong chip version %02x\n",
829 driver_name
, version
);
833 /* Switch to advanced mode */
834 switch_bank(iobase
, BANK2
);
835 outb(ECR1_EXT_SL
, iobase
+ECR1
);
836 switch_bank(iobase
, BANK0
);
838 /* Set FIFO threshold to TX17, RX16, reset and enable FIFO's */
839 switch_bank(iobase
, BANK0
);
840 outb(FCR_RXTH
|FCR_TXTH
|FCR_TXSR
|FCR_RXSR
|FCR_FIFO_EN
, iobase
+FCR
);
842 outb(0x03, iobase
+LCR
); /* 8 bit word length */
843 outb(MCR_SIR
, iobase
+MCR
); /* Start at SIR-mode, also clears LSR*/
845 /* Set FIFO size to 32 */
846 switch_bank(iobase
, BANK2
);
847 outb(EXCR2_RFSIZ
|EXCR2_TFSIZ
, iobase
+EXCR2
);
849 /* IRCR2: FEND_MD is not set */
850 switch_bank(iobase
, BANK5
);
851 outb(0x02, iobase
+4);
853 /* Make sure that some defaults are OK */
854 switch_bank(iobase
, BANK6
);
855 outb(0x20, iobase
+0); /* Set 32 bits FIR CRC */
856 outb(0x0a, iobase
+1); /* Set MIR pulse width */
857 outb(0x0d, iobase
+2); /* Set SIR pulse width to 1.6us */
858 outb(0x2a, iobase
+4); /* Set beginning frag, and preamble length */
860 /* Enable receive interrupts */
861 switch_bank(iobase
, BANK0
);
862 outb(IER_RXHDL_IE
, iobase
+IER
);
868 * Function nsc_ircc_read_dongle_id (void)
870 * Try to read dongle indentification. This procedure needs to be executed
871 * once after power-on/reset. It also needs to be used whenever you suspect
872 * that the user may have plugged/unplugged the IrDA Dongle.
874 static int nsc_ircc_read_dongle_id (int iobase
)
879 bank
= inb(iobase
+BSR
);
882 switch_bank(iobase
, BANK7
);
884 /* IRCFG4: IRSL0_DS and IRSL21_DS are cleared */
885 outb(0x00, iobase
+7);
887 /* ID0, 1, and 2 are pulled up/down very slowly */
890 /* IRCFG1: read the ID bits */
891 dongle_id
= inb(iobase
+4) & 0x0f;
893 #ifdef BROKEN_DONGLE_ID
894 if (dongle_id
== 0x0a)
897 /* Go back to bank 0 before returning */
898 switch_bank(iobase
, BANK0
);
900 outb(bank
, iobase
+BSR
);
906 * Function nsc_ircc_init_dongle_interface (iobase, dongle_id)
908 * This function initializes the dongle for the transceiver that is
909 * used. This procedure needs to be executed once after
910 * power-on/reset. It also needs to be used whenever you suspect that
911 * the dongle is changed.
913 static void nsc_ircc_init_dongle_interface (int iobase
, int dongle_id
)
917 /* Save current bank */
918 bank
= inb(iobase
+BSR
);
921 switch_bank(iobase
, BANK7
);
923 /* IRCFG4: set according to dongle_id */
925 case 0x00: /* same as */
926 case 0x01: /* Differential serial interface */
927 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
928 __FUNCTION__
, dongle_types
[dongle_id
]);
930 case 0x02: /* same as */
931 case 0x03: /* Reserved */
932 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
933 __FUNCTION__
, dongle_types
[dongle_id
]);
935 case 0x04: /* Sharp RY5HD01 */
937 case 0x05: /* Reserved, but this is what the Thinkpad reports */
938 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
939 __FUNCTION__
, dongle_types
[dongle_id
]);
941 case 0x06: /* Single-ended serial interface */
942 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
943 __FUNCTION__
, dongle_types
[dongle_id
]);
945 case 0x07: /* Consumer-IR only */
946 IRDA_DEBUG(0, "%s(), %s is not for IrDA mode\n",
947 __FUNCTION__
, dongle_types
[dongle_id
]);
949 case 0x08: /* HP HSDL-2300, HP HSDL-3600/HSDL-3610 */
950 IRDA_DEBUG(0, "%s(), %s\n",
951 __FUNCTION__
, dongle_types
[dongle_id
]);
953 case 0x09: /* IBM31T1100 or Temic TFDS6000/TFDS6500 */
954 outb(0x28, iobase
+7); /* Set irsl[0-2] as output */
956 case 0x0A: /* same as */
957 case 0x0B: /* Reserved */
958 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
959 __FUNCTION__
, dongle_types
[dongle_id
]);
961 case 0x0C: /* same as */
962 case 0x0D: /* HP HSDL-1100/HSDL-2100 */
964 * Set irsl0 as input, irsl[1-2] as output, and separate
965 * inputs are used for SIR and MIR/FIR
967 outb(0x48, iobase
+7);
969 case 0x0E: /* Supports SIR Mode only */
970 outb(0x28, iobase
+7); /* Set irsl[0-2] as output */
972 case 0x0F: /* No dongle connected */
973 IRDA_DEBUG(0, "%s(), %s\n",
974 __FUNCTION__
, dongle_types
[dongle_id
]);
976 switch_bank(iobase
, BANK0
);
977 outb(0x62, iobase
+MCR
);
980 IRDA_DEBUG(0, "%s(), invalid dongle_id %#x",
981 __FUNCTION__
, dongle_id
);
984 /* IRCFG1: IRSL1 and 2 are set to IrDA mode */
985 outb(0x00, iobase
+4);
987 /* Restore bank register */
988 outb(bank
, iobase
+BSR
);
990 } /* set_up_dongle_interface */
993 * Function nsc_ircc_change_dongle_speed (iobase, speed, dongle_id)
995 * Change speed of the attach dongle
998 static void nsc_ircc_change_dongle_speed(int iobase
, int speed
, int dongle_id
)
1002 /* Save current bank */
1003 bank
= inb(iobase
+BSR
);
1006 switch_bank(iobase
, BANK7
);
1008 /* IRCFG1: set according to dongle_id */
1009 switch (dongle_id
) {
1010 case 0x00: /* same as */
1011 case 0x01: /* Differential serial interface */
1012 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1013 __FUNCTION__
, dongle_types
[dongle_id
]);
1015 case 0x02: /* same as */
1016 case 0x03: /* Reserved */
1017 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1018 __FUNCTION__
, dongle_types
[dongle_id
]);
1020 case 0x04: /* Sharp RY5HD01 */
1022 case 0x05: /* Reserved */
1023 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1024 __FUNCTION__
, dongle_types
[dongle_id
]);
1026 case 0x06: /* Single-ended serial interface */
1027 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1028 __FUNCTION__
, dongle_types
[dongle_id
]);
1030 case 0x07: /* Consumer-IR only */
1031 IRDA_DEBUG(0, "%s(), %s is not for IrDA mode\n",
1032 __FUNCTION__
, dongle_types
[dongle_id
]);
1034 case 0x08: /* HP HSDL-2300, HP HSDL-3600/HSDL-3610 */
1035 IRDA_DEBUG(0, "%s(), %s\n",
1036 __FUNCTION__
, dongle_types
[dongle_id
]);
1037 outb(0x00, iobase
+4);
1039 outb(0x01, iobase
+4);
1041 case 0x09: /* IBM31T1100 or Temic TFDS6000/TFDS6500 */
1042 outb(0x01, iobase
+4);
1044 if (speed
== 4000000) {
1045 /* There was a cli() there, but we now are already
1046 * under spin_lock_irqsave() - JeanII */
1047 outb(0x81, iobase
+4);
1048 outb(0x80, iobase
+4);
1050 outb(0x00, iobase
+4);
1052 case 0x0A: /* same as */
1053 case 0x0B: /* Reserved */
1054 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1055 __FUNCTION__
, dongle_types
[dongle_id
]);
1057 case 0x0C: /* same as */
1058 case 0x0D: /* HP HSDL-1100/HSDL-2100 */
1060 case 0x0E: /* Supports SIR Mode only */
1062 case 0x0F: /* No dongle connected */
1063 IRDA_DEBUG(0, "%s(), %s is not for IrDA mode\n",
1064 __FUNCTION__
, dongle_types
[dongle_id
]);
1066 switch_bank(iobase
, BANK0
);
1067 outb(0x62, iobase
+MCR
);
1070 IRDA_DEBUG(0, "%s(), invalid data_rate\n", __FUNCTION__
);
1072 /* Restore bank register */
1073 outb(bank
, iobase
+BSR
);
1077 * Function nsc_ircc_change_speed (self, baud)
1079 * Change the speed of the device
1081 * This function *must* be called with irq off and spin-lock.
1083 static __u8
nsc_ircc_change_speed(struct nsc_ircc_cb
*self
, __u32 speed
)
1085 struct net_device
*dev
= self
->netdev
;
1089 __u8 ier
; /* Interrupt enable register */
1091 IRDA_DEBUG(2, "%s(), speed=%d\n", __FUNCTION__
, speed
);
1093 IRDA_ASSERT(self
!= NULL
, return 0;);
1095 iobase
= self
->io
.fir_base
;
1097 /* Update accounting for new speed */
1098 self
->io
.speed
= speed
;
1100 /* Save current bank */
1101 bank
= inb(iobase
+BSR
);
1103 /* Disable interrupts */
1104 switch_bank(iobase
, BANK0
);
1105 outb(0, iobase
+IER
);
1108 switch_bank(iobase
, BANK2
);
1110 outb(0x00, iobase
+BGDH
);
1112 case 9600: outb(0x0c, iobase
+BGDL
); break;
1113 case 19200: outb(0x06, iobase
+BGDL
); break;
1114 case 38400: outb(0x03, iobase
+BGDL
); break;
1115 case 57600: outb(0x02, iobase
+BGDL
); break;
1116 case 115200: outb(0x01, iobase
+BGDL
); break;
1118 switch_bank(iobase
, BANK5
);
1120 /* IRCR2: MDRS is set */
1121 outb(inb(iobase
+4) | 0x04, iobase
+4);
1124 IRDA_DEBUG(0, "%s(), handling baud of 576000\n", __FUNCTION__
);
1128 IRDA_DEBUG(0, "%s(), handling baud of 1152000\n", __FUNCTION__
);
1132 IRDA_DEBUG(0, "%s(), handling baud of 4000000\n", __FUNCTION__
);
1136 IRDA_DEBUG(0, "%s(), unknown baud rate of %d\n",
1137 __FUNCTION__
, speed
);
1141 /* Set appropriate speed mode */
1142 switch_bank(iobase
, BANK0
);
1143 outb(mcr
| MCR_TX_DFR
, iobase
+MCR
);
1145 /* Give some hits to the transceiver */
1146 nsc_ircc_change_dongle_speed(iobase
, speed
, self
->io
.dongle_id
);
1148 /* Set FIFO threshold to TX17, RX16 */
1149 switch_bank(iobase
, BANK0
);
1150 outb(0x00, iobase
+FCR
);
1151 outb(FCR_FIFO_EN
, iobase
+FCR
);
1152 outb(FCR_RXTH
| /* Set Rx FIFO threshold */
1153 FCR_TXTH
| /* Set Tx FIFO threshold */
1154 FCR_TXSR
| /* Reset Tx FIFO */
1155 FCR_RXSR
| /* Reset Rx FIFO */
1156 FCR_FIFO_EN
, /* Enable FIFOs */
1159 /* Set FIFO size to 32 */
1160 switch_bank(iobase
, BANK2
);
1161 outb(EXCR2_RFSIZ
|EXCR2_TFSIZ
, iobase
+EXCR2
);
1163 /* Enable some interrupts so we can receive frames */
1164 switch_bank(iobase
, BANK0
);
1165 if (speed
> 115200) {
1166 /* Install FIR xmit handler */
1167 dev
->hard_start_xmit
= nsc_ircc_hard_xmit_fir
;
1169 nsc_ircc_dma_receive(self
);
1171 /* Install SIR xmit handler */
1172 dev
->hard_start_xmit
= nsc_ircc_hard_xmit_sir
;
1175 /* Set our current interrupt mask */
1176 outb(ier
, iobase
+IER
);
1179 outb(bank
, iobase
+BSR
);
1181 /* Make sure interrupt handlers keep the proper interrupt mask */
1186 * Function nsc_ircc_hard_xmit (skb, dev)
1188 * Transmit the frame!
1191 static int nsc_ircc_hard_xmit_sir(struct sk_buff
*skb
, struct net_device
*dev
)
1193 struct nsc_ircc_cb
*self
;
1194 unsigned long flags
;
1199 self
= (struct nsc_ircc_cb
*) dev
->priv
;
1201 IRDA_ASSERT(self
!= NULL
, return 0;);
1203 iobase
= self
->io
.fir_base
;
1205 netif_stop_queue(dev
);
1207 /* Make sure tests *& speed change are atomic */
1208 spin_lock_irqsave(&self
->lock
, flags
);
1210 /* Check if we need to change the speed */
1211 speed
= irda_get_next_speed(skb
);
1212 if ((speed
!= self
->io
.speed
) && (speed
!= -1)) {
1213 /* Check for empty frame. */
1215 /* If we just sent a frame, we get called before
1216 * the last bytes get out (because of the SIR FIFO).
1217 * If this is the case, let interrupt handler change
1218 * the speed itself... Jean II */
1219 if (self
->io
.direction
== IO_RECV
) {
1220 nsc_ircc_change_speed(self
, speed
);
1221 /* TODO : For SIR->SIR, the next packet
1222 * may get corrupted - Jean II */
1223 netif_wake_queue(dev
);
1225 self
->new_speed
= speed
;
1226 /* Queue will be restarted after speed change
1227 * to make sure packets gets through the
1228 * proper xmit handler - Jean II */
1230 dev
->trans_start
= jiffies
;
1231 spin_unlock_irqrestore(&self
->lock
, flags
);
1235 self
->new_speed
= speed
;
1238 /* Save current bank */
1239 bank
= inb(iobase
+BSR
);
1241 self
->tx_buff
.data
= self
->tx_buff
.head
;
1243 self
->tx_buff
.len
= async_wrap_skb(skb
, self
->tx_buff
.data
,
1244 self
->tx_buff
.truesize
);
1246 self
->stats
.tx_bytes
+= self
->tx_buff
.len
;
1248 /* Add interrupt on tx low level (will fire immediately) */
1249 switch_bank(iobase
, BANK0
);
1250 outb(IER_TXLDL_IE
, iobase
+IER
);
1252 /* Restore bank register */
1253 outb(bank
, iobase
+BSR
);
1255 dev
->trans_start
= jiffies
;
1256 spin_unlock_irqrestore(&self
->lock
, flags
);
1263 static int nsc_ircc_hard_xmit_fir(struct sk_buff
*skb
, struct net_device
*dev
)
1265 struct nsc_ircc_cb
*self
;
1266 unsigned long flags
;
1272 self
= (struct nsc_ircc_cb
*) dev
->priv
;
1273 iobase
= self
->io
.fir_base
;
1275 netif_stop_queue(dev
);
1277 /* Make sure tests *& speed change are atomic */
1278 spin_lock_irqsave(&self
->lock
, flags
);
1280 /* Check if we need to change the speed */
1281 speed
= irda_get_next_speed(skb
);
1282 if ((speed
!= self
->io
.speed
) && (speed
!= -1)) {
1283 /* Check for empty frame. */
1285 /* If we are currently transmitting, defer to
1286 * interrupt handler. - Jean II */
1287 if(self
->tx_fifo
.len
== 0) {
1288 nsc_ircc_change_speed(self
, speed
);
1289 netif_wake_queue(dev
);
1291 self
->new_speed
= speed
;
1292 /* Keep queue stopped :
1293 * the speed change operation may change the
1294 * xmit handler, and we want to make sure
1295 * the next packet get through the proper
1296 * Tx path, so block the Tx queue until
1297 * the speed change has been done.
1300 dev
->trans_start
= jiffies
;
1301 spin_unlock_irqrestore(&self
->lock
, flags
);
1305 /* Change speed after current frame */
1306 self
->new_speed
= speed
;
1310 /* Save current bank */
1311 bank
= inb(iobase
+BSR
);
1313 /* Register and copy this frame to DMA memory */
1314 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].start
= self
->tx_fifo
.tail
;
1315 self
->tx_fifo
.queue
[self
->tx_fifo
.free
].len
= skb
->len
;
1316 self
->tx_fifo
.tail
+= skb
->len
;
1318 self
->stats
.tx_bytes
+= skb
->len
;
1320 memcpy(self
->tx_fifo
.queue
[self
->tx_fifo
.free
].start
, skb
->data
,
1323 self
->tx_fifo
.len
++;
1324 self
->tx_fifo
.free
++;
1326 /* Start transmit only if there is currently no transmit going on */
1327 if (self
->tx_fifo
.len
== 1) {
1328 /* Check if we must wait the min turn time or not */
1329 mtt
= irda_get_mtt(skb
);
1331 /* Check how much time we have used already */
1332 do_gettimeofday(&self
->now
);
1333 diff
= self
->now
.tv_usec
- self
->stamp
.tv_usec
;
1337 /* Check if the mtt is larger than the time we have
1338 * already used by all the protocol processing
1344 * Use timer if delay larger than 125 us, and
1345 * use udelay for smaller values which should
1349 /* Adjust for timer resolution */
1353 switch_bank(iobase
, BANK4
);
1354 outb(mtt
& 0xff, iobase
+TMRL
);
1355 outb((mtt
>> 8) & 0x0f, iobase
+TMRH
);
1358 outb(IRCR1_TMR_EN
, iobase
+IRCR1
);
1359 self
->io
.direction
= IO_XMIT
;
1361 /* Enable timer interrupt */
1362 switch_bank(iobase
, BANK0
);
1363 outb(IER_TMR_IE
, iobase
+IER
);
1365 /* Timer will take care of the rest */
1371 /* Enable DMA interrupt */
1372 switch_bank(iobase
, BANK0
);
1373 outb(IER_DMA_IE
, iobase
+IER
);
1375 /* Transmit frame */
1376 nsc_ircc_dma_xmit(self
, iobase
);
1379 /* Not busy transmitting anymore if window is not full,
1380 * and if we don't need to change speed */
1381 if ((self
->tx_fifo
.free
< MAX_TX_WINDOW
) && (self
->new_speed
== 0))
1382 netif_wake_queue(self
->netdev
);
1384 /* Restore bank register */
1385 outb(bank
, iobase
+BSR
);
1387 dev
->trans_start
= jiffies
;
1388 spin_unlock_irqrestore(&self
->lock
, flags
);
1395 * Function nsc_ircc_dma_xmit (self, iobase)
1397 * Transmit data using DMA
1400 static void nsc_ircc_dma_xmit(struct nsc_ircc_cb
*self
, int iobase
)
1404 /* Save current bank */
1405 bsr
= inb(iobase
+BSR
);
1408 switch_bank(iobase
, BANK0
);
1409 outb(inb(iobase
+MCR
) & ~MCR_DMA_EN
, iobase
+MCR
);
1411 self
->io
.direction
= IO_XMIT
;
1413 /* Choose transmit DMA channel */
1414 switch_bank(iobase
, BANK2
);
1415 outb(ECR1_DMASWP
|ECR1_DMANF
|ECR1_EXT_SL
, iobase
+ECR1
);
1417 irda_setup_dma(self
->io
.dma
,
1418 ((u8
*)self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].start
-
1419 self
->tx_buff
.head
) + self
->tx_buff_dma
,
1420 self
->tx_fifo
.queue
[self
->tx_fifo
.ptr
].len
,
1423 /* Enable DMA and SIR interaction pulse */
1424 switch_bank(iobase
, BANK0
);
1425 outb(inb(iobase
+MCR
)|MCR_TX_DFR
|MCR_DMA_EN
|MCR_IR_PLS
, iobase
+MCR
);
1427 /* Restore bank register */
1428 outb(bsr
, iobase
+BSR
);
1432 * Function nsc_ircc_pio_xmit (self, iobase)
1434 * Transmit data using PIO. Returns the number of bytes that actually
1438 static int nsc_ircc_pio_write(int iobase
, __u8
*buf
, int len
, int fifo_size
)
1443 IRDA_DEBUG(4, "%s()\n", __FUNCTION__
);
1445 /* Save current bank */
1446 bank
= inb(iobase
+BSR
);
1448 switch_bank(iobase
, BANK0
);
1449 if (!(inb_p(iobase
+LSR
) & LSR_TXEMP
)) {
1450 IRDA_DEBUG(4, "%s(), warning, FIFO not empty yet!\n",
1453 /* FIFO may still be filled to the Tx interrupt threshold */
1457 /* Fill FIFO with current frame */
1458 while ((fifo_size
-- > 0) && (actual
< len
)) {
1459 /* Transmit next byte */
1460 outb(buf
[actual
++], iobase
+TXD
);
1463 IRDA_DEBUG(4, "%s(), fifo_size %d ; %d sent of %d\n",
1464 __FUNCTION__
, fifo_size
, actual
, len
);
1467 outb(bank
, iobase
+BSR
);
1473 * Function nsc_ircc_dma_xmit_complete (self)
1475 * The transfer of a frame in finished. This function will only be called
1476 * by the interrupt handler
1479 static int nsc_ircc_dma_xmit_complete(struct nsc_ircc_cb
*self
)
1485 IRDA_DEBUG(2, "%s()\n", __FUNCTION__
);
1487 iobase
= self
->io
.fir_base
;
1489 /* Save current bank */
1490 bank
= inb(iobase
+BSR
);
1493 switch_bank(iobase
, BANK0
);
1494 outb(inb(iobase
+MCR
) & ~MCR_DMA_EN
, iobase
+MCR
);
1496 /* Check for underrrun! */
1497 if (inb(iobase
+ASCR
) & ASCR_TXUR
) {
1498 self
->stats
.tx_errors
++;
1499 self
->stats
.tx_fifo_errors
++;
1501 /* Clear bit, by writing 1 into it */
1502 outb(ASCR_TXUR
, iobase
+ASCR
);
1504 self
->stats
.tx_packets
++;
1507 /* Finished with this frame, so prepare for next */
1508 self
->tx_fifo
.ptr
++;
1509 self
->tx_fifo
.len
--;
1511 /* Any frames to be sent back-to-back? */
1512 if (self
->tx_fifo
.len
) {
1513 nsc_ircc_dma_xmit(self
, iobase
);
1515 /* Not finished yet! */
1518 /* Reset Tx FIFO info */
1519 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
1520 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
1523 /* Make sure we have room for more frames and
1524 * that we don't need to change speed */
1525 if ((self
->tx_fifo
.free
< MAX_TX_WINDOW
) && (self
->new_speed
== 0)) {
1526 /* Not busy transmitting anymore */
1527 /* Tell the network layer, that we can accept more frames */
1528 netif_wake_queue(self
->netdev
);
1532 outb(bank
, iobase
+BSR
);
1538 * Function nsc_ircc_dma_receive (self)
1540 * Get ready for receiving a frame. The device will initiate a DMA
1541 * if it starts to receive a frame.
1544 static int nsc_ircc_dma_receive(struct nsc_ircc_cb
*self
)
1549 iobase
= self
->io
.fir_base
;
1551 /* Reset Tx FIFO info */
1552 self
->tx_fifo
.len
= self
->tx_fifo
.ptr
= self
->tx_fifo
.free
= 0;
1553 self
->tx_fifo
.tail
= self
->tx_buff
.head
;
1555 /* Save current bank */
1556 bsr
= inb(iobase
+BSR
);
1559 switch_bank(iobase
, BANK0
);
1560 outb(inb(iobase
+MCR
) & ~MCR_DMA_EN
, iobase
+MCR
);
1562 /* Choose DMA Rx, DMA Fairness, and Advanced mode */
1563 switch_bank(iobase
, BANK2
);
1564 outb(ECR1_DMANF
|ECR1_EXT_SL
, iobase
+ECR1
);
1566 self
->io
.direction
= IO_RECV
;
1567 self
->rx_buff
.data
= self
->rx_buff
.head
;
1569 /* Reset Rx FIFO. This will also flush the ST_FIFO */
1570 switch_bank(iobase
, BANK0
);
1571 outb(FCR_RXSR
|FCR_FIFO_EN
, iobase
+FCR
);
1573 self
->st_fifo
.len
= self
->st_fifo
.pending_bytes
= 0;
1574 self
->st_fifo
.tail
= self
->st_fifo
.head
= 0;
1576 irda_setup_dma(self
->io
.dma
, self
->rx_buff_dma
, self
->rx_buff
.truesize
,
1580 switch_bank(iobase
, BANK0
);
1581 outb(inb(iobase
+MCR
)|MCR_DMA_EN
, iobase
+MCR
);
1583 /* Restore bank register */
1584 outb(bsr
, iobase
+BSR
);
1590 * Function nsc_ircc_dma_receive_complete (self)
1592 * Finished with receiving frames
1596 static int nsc_ircc_dma_receive_complete(struct nsc_ircc_cb
*self
, int iobase
)
1598 struct st_fifo
*st_fifo
;
1599 struct sk_buff
*skb
;
1604 st_fifo
= &self
->st_fifo
;
1606 /* Save current bank */
1607 bank
= inb(iobase
+BSR
);
1609 /* Read all entries in status FIFO */
1610 switch_bank(iobase
, BANK5
);
1611 while ((status
= inb(iobase
+FRM_ST
)) & FRM_ST_VLD
) {
1612 /* We must empty the status FIFO no matter what */
1613 len
= inb(iobase
+RFLFL
) | ((inb(iobase
+RFLFH
) & 0x1f) << 8);
1615 if (st_fifo
->tail
>= MAX_RX_WINDOW
) {
1616 IRDA_DEBUG(0, "%s(), window is full!\n", __FUNCTION__
);
1620 st_fifo
->entries
[st_fifo
->tail
].status
= status
;
1621 st_fifo
->entries
[st_fifo
->tail
].len
= len
;
1622 st_fifo
->pending_bytes
+= len
;
1626 /* Try to process all entries in status FIFO */
1627 while (st_fifo
->len
> 0) {
1628 /* Get first entry */
1629 status
= st_fifo
->entries
[st_fifo
->head
].status
;
1630 len
= st_fifo
->entries
[st_fifo
->head
].len
;
1631 st_fifo
->pending_bytes
-= len
;
1635 /* Check for errors */
1636 if (status
& FRM_ST_ERR_MSK
) {
1637 if (status
& FRM_ST_LOST_FR
) {
1638 /* Add number of lost frames to stats */
1639 self
->stats
.rx_errors
+= len
;
1642 self
->stats
.rx_errors
++;
1644 self
->rx_buff
.data
+= len
;
1646 if (status
& FRM_ST_MAX_LEN
)
1647 self
->stats
.rx_length_errors
++;
1649 if (status
& FRM_ST_PHY_ERR
)
1650 self
->stats
.rx_frame_errors
++;
1652 if (status
& FRM_ST_BAD_CRC
)
1653 self
->stats
.rx_crc_errors
++;
1655 /* The errors below can be reported in both cases */
1656 if (status
& FRM_ST_OVR1
)
1657 self
->stats
.rx_fifo_errors
++;
1659 if (status
& FRM_ST_OVR2
)
1660 self
->stats
.rx_fifo_errors
++;
1663 * First we must make sure that the frame we
1664 * want to deliver is all in main memory. If we
1665 * cannot tell, then we check if the Rx FIFO is
1666 * empty. If not then we will have to take a nap
1667 * and try again later.
1669 if (st_fifo
->pending_bytes
< self
->io
.fifo_size
) {
1670 switch_bank(iobase
, BANK0
);
1671 if (inb(iobase
+LSR
) & LSR_RXDA
) {
1672 /* Put this entry back in fifo */
1675 st_fifo
->pending_bytes
+= len
;
1676 st_fifo
->entries
[st_fifo
->head
].status
= status
;
1677 st_fifo
->entries
[st_fifo
->head
].len
= len
;
1679 * DMA not finished yet, so try again
1680 * later, set timer value, resolution
1683 switch_bank(iobase
, BANK4
);
1684 outb(0x02, iobase
+TMRL
); /* x 125 us */
1685 outb(0x00, iobase
+TMRH
);
1688 outb(IRCR1_TMR_EN
, iobase
+IRCR1
);
1690 /* Restore bank register */
1691 outb(bank
, iobase
+BSR
);
1693 return FALSE
; /* I'll be back! */
1698 * Remember the time we received this frame, so we can
1699 * reduce the min turn time a bit since we will know
1700 * how much time we have used for protocol processing
1702 do_gettimeofday(&self
->stamp
);
1704 skb
= dev_alloc_skb(len
+1);
1706 IRDA_WARNING("%s(), memory squeeze, "
1707 "dropping frame.\n",
1709 self
->stats
.rx_dropped
++;
1711 /* Restore bank register */
1712 outb(bank
, iobase
+BSR
);
1717 /* Make sure IP header gets aligned */
1718 skb_reserve(skb
, 1);
1720 /* Copy frame without CRC */
1721 if (self
->io
.speed
< 4000000) {
1722 skb_put(skb
, len
-2);
1723 memcpy(skb
->data
, self
->rx_buff
.data
, len
-2);
1725 skb_put(skb
, len
-4);
1726 memcpy(skb
->data
, self
->rx_buff
.data
, len
-4);
1729 /* Move to next frame */
1730 self
->rx_buff
.data
+= len
;
1731 self
->stats
.rx_bytes
+= len
;
1732 self
->stats
.rx_packets
++;
1734 skb
->dev
= self
->netdev
;
1735 skb
->mac
.raw
= skb
->data
;
1736 skb
->protocol
= htons(ETH_P_IRDA
);
1738 self
->netdev
->last_rx
= jiffies
;
1741 /* Restore bank register */
1742 outb(bank
, iobase
+BSR
);
1748 * Function nsc_ircc_pio_receive (self)
1750 * Receive all data in receiver FIFO
1753 static void nsc_ircc_pio_receive(struct nsc_ircc_cb
*self
)
1758 iobase
= self
->io
.fir_base
;
1760 /* Receive all characters in Rx FIFO */
1762 byte
= inb(iobase
+RXD
);
1763 async_unwrap_char(self
->netdev
, &self
->stats
, &self
->rx_buff
,
1765 } while (inb(iobase
+LSR
) & LSR_RXDA
); /* Data available */
1769 * Function nsc_ircc_sir_interrupt (self, eir)
1771 * Handle SIR interrupt
1774 static void nsc_ircc_sir_interrupt(struct nsc_ircc_cb
*self
, int eir
)
1778 /* Check if transmit FIFO is low on data */
1779 if (eir
& EIR_TXLDL_EV
) {
1780 /* Write data left in transmit buffer */
1781 actual
= nsc_ircc_pio_write(self
->io
.fir_base
,
1784 self
->io
.fifo_size
);
1785 self
->tx_buff
.data
+= actual
;
1786 self
->tx_buff
.len
-= actual
;
1788 self
->io
.direction
= IO_XMIT
;
1790 /* Check if finished */
1791 if (self
->tx_buff
.len
> 0)
1792 self
->ier
= IER_TXLDL_IE
;
1795 self
->stats
.tx_packets
++;
1796 netif_wake_queue(self
->netdev
);
1797 self
->ier
= IER_TXEMP_IE
;
1801 /* Check if transmission has completed */
1802 if (eir
& EIR_TXEMP_EV
) {
1803 /* Turn around and get ready to receive some data */
1804 self
->io
.direction
= IO_RECV
;
1805 self
->ier
= IER_RXHDL_IE
;
1806 /* Check if we need to change the speed?
1807 * Need to be after self->io.direction to avoid race with
1808 * nsc_ircc_hard_xmit_sir() - Jean II */
1809 if (self
->new_speed
) {
1810 IRDA_DEBUG(2, "%s(), Changing speed!\n", __FUNCTION__
);
1811 self
->ier
= nsc_ircc_change_speed(self
,
1813 self
->new_speed
= 0;
1814 netif_wake_queue(self
->netdev
);
1816 /* Check if we are going to FIR */
1817 if (self
->io
.speed
> 115200) {
1818 /* No need to do anymore SIR stuff */
1824 /* Rx FIFO threshold or timeout */
1825 if (eir
& EIR_RXHDL_EV
) {
1826 nsc_ircc_pio_receive(self
);
1828 /* Keep receiving */
1829 self
->ier
= IER_RXHDL_IE
;
1834 * Function nsc_ircc_fir_interrupt (self, eir)
1836 * Handle MIR/FIR interrupt
1839 static void nsc_ircc_fir_interrupt(struct nsc_ircc_cb
*self
, int iobase
,
1844 bank
= inb(iobase
+BSR
);
1846 /* Status FIFO event*/
1847 if (eir
& EIR_SFIF_EV
) {
1848 /* Check if DMA has finished */
1849 if (nsc_ircc_dma_receive_complete(self
, iobase
)) {
1850 /* Wait for next status FIFO interrupt */
1851 self
->ier
= IER_SFIF_IE
;
1853 self
->ier
= IER_SFIF_IE
| IER_TMR_IE
;
1855 } else if (eir
& EIR_TMR_EV
) { /* Timer finished */
1857 switch_bank(iobase
, BANK4
);
1858 outb(0, iobase
+IRCR1
);
1860 /* Clear timer event */
1861 switch_bank(iobase
, BANK0
);
1862 outb(ASCR_CTE
, iobase
+ASCR
);
1864 /* Check if this is a Tx timer interrupt */
1865 if (self
->io
.direction
== IO_XMIT
) {
1866 nsc_ircc_dma_xmit(self
, iobase
);
1868 /* Interrupt on DMA */
1869 self
->ier
= IER_DMA_IE
;
1871 /* Check (again) if DMA has finished */
1872 if (nsc_ircc_dma_receive_complete(self
, iobase
)) {
1873 self
->ier
= IER_SFIF_IE
;
1875 self
->ier
= IER_SFIF_IE
| IER_TMR_IE
;
1878 } else if (eir
& EIR_DMA_EV
) {
1879 /* Finished with all transmissions? */
1880 if (nsc_ircc_dma_xmit_complete(self
)) {
1881 if(self
->new_speed
!= 0) {
1882 /* As we stop the Tx queue, the speed change
1883 * need to be done when the Tx fifo is
1884 * empty. Ask for a Tx done interrupt */
1885 self
->ier
= IER_TXEMP_IE
;
1887 /* Check if there are more frames to be
1889 if (irda_device_txqueue_empty(self
->netdev
)) {
1890 /* Prepare for receive */
1891 nsc_ircc_dma_receive(self
);
1892 self
->ier
= IER_SFIF_IE
;
1894 IRDA_WARNING("%s(), potential "
1895 "Tx queue lockup !\n",
1899 /* Not finished yet, so interrupt on DMA again */
1900 self
->ier
= IER_DMA_IE
;
1902 } else if (eir
& EIR_TXEMP_EV
) {
1903 /* The Tx FIFO has totally drained out, so now we can change
1904 * the speed... - Jean II */
1905 self
->ier
= nsc_ircc_change_speed(self
, self
->new_speed
);
1906 self
->new_speed
= 0;
1907 netif_wake_queue(self
->netdev
);
1908 /* Note : nsc_ircc_change_speed() restarted Rx fifo */
1911 outb(bank
, iobase
+BSR
);
1915 * Function nsc_ircc_interrupt (irq, dev_id, regs)
1917 * An interrupt from the chip has arrived. Time to do some work
1920 static irqreturn_t
nsc_ircc_interrupt(int irq
, void *dev_id
,
1921 struct pt_regs
*regs
)
1923 struct net_device
*dev
= (struct net_device
*) dev_id
;
1924 struct nsc_ircc_cb
*self
;
1929 IRDA_WARNING("%s: irq %d for unknown device.\n",
1933 self
= (struct nsc_ircc_cb
*) dev
->priv
;
1935 spin_lock(&self
->lock
);
1937 iobase
= self
->io
.fir_base
;
1939 bsr
= inb(iobase
+BSR
); /* Save current bank */
1941 switch_bank(iobase
, BANK0
);
1942 self
->ier
= inb(iobase
+IER
);
1943 eir
= inb(iobase
+EIR
) & self
->ier
; /* Mask out the interesting ones */
1945 outb(0, iobase
+IER
); /* Disable interrupts */
1948 /* Dispatch interrupt handler for the current speed */
1949 if (self
->io
.speed
> 115200)
1950 nsc_ircc_fir_interrupt(self
, iobase
, eir
);
1952 nsc_ircc_sir_interrupt(self
, eir
);
1955 outb(self
->ier
, iobase
+IER
); /* Restore interrupts */
1956 outb(bsr
, iobase
+BSR
); /* Restore bank register */
1958 spin_unlock(&self
->lock
);
1959 return IRQ_RETVAL(eir
);
1963 * Function nsc_ircc_is_receiving (self)
1965 * Return TRUE is we are currently receiving a frame
1968 static int nsc_ircc_is_receiving(struct nsc_ircc_cb
*self
)
1970 unsigned long flags
;
1975 IRDA_ASSERT(self
!= NULL
, return FALSE
;);
1977 spin_lock_irqsave(&self
->lock
, flags
);
1979 if (self
->io
.speed
> 115200) {
1980 iobase
= self
->io
.fir_base
;
1982 /* Check if rx FIFO is not empty */
1983 bank
= inb(iobase
+BSR
);
1984 switch_bank(iobase
, BANK2
);
1985 if ((inb(iobase
+RXFLV
) & 0x3f) != 0) {
1986 /* We are receiving something */
1989 outb(bank
, iobase
+BSR
);
1991 status
= (self
->rx_buff
.state
!= OUTSIDE_FRAME
);
1993 spin_unlock_irqrestore(&self
->lock
, flags
);
1999 * Function nsc_ircc_net_open (dev)
2004 static int nsc_ircc_net_open(struct net_device
*dev
)
2006 struct nsc_ircc_cb
*self
;
2011 IRDA_DEBUG(4, "%s()\n", __FUNCTION__
);
2013 IRDA_ASSERT(dev
!= NULL
, return -1;);
2014 self
= (struct nsc_ircc_cb
*) dev
->priv
;
2016 IRDA_ASSERT(self
!= NULL
, return 0;);
2018 iobase
= self
->io
.fir_base
;
2020 if (request_irq(self
->io
.irq
, nsc_ircc_interrupt
, 0, dev
->name
, dev
)) {
2021 IRDA_WARNING("%s, unable to allocate irq=%d\n",
2022 driver_name
, self
->io
.irq
);
2026 * Always allocate the DMA channel after the IRQ, and clean up on
2029 if (request_dma(self
->io
.dma
, dev
->name
)) {
2030 IRDA_WARNING("%s, unable to allocate dma=%d\n",
2031 driver_name
, self
->io
.dma
);
2032 free_irq(self
->io
.irq
, dev
);
2036 /* Save current bank */
2037 bank
= inb(iobase
+BSR
);
2039 /* turn on interrupts */
2040 switch_bank(iobase
, BANK0
);
2041 outb(IER_LS_IE
| IER_RXHDL_IE
, iobase
+IER
);
2043 /* Restore bank register */
2044 outb(bank
, iobase
+BSR
);
2046 /* Ready to play! */
2047 netif_start_queue(dev
);
2049 /* Give self a hardware name */
2050 sprintf(hwname
, "NSC-FIR @ 0x%03x", self
->io
.fir_base
);
2053 * Open new IrLAP layer instance, now that everything should be
2054 * initialized properly
2056 self
->irlap
= irlap_open(dev
, &self
->qos
, hwname
);
2062 * Function nsc_ircc_net_close (dev)
2067 static int nsc_ircc_net_close(struct net_device
*dev
)
2069 struct nsc_ircc_cb
*self
;
2073 IRDA_DEBUG(4, "%s()\n", __FUNCTION__
);
2075 IRDA_ASSERT(dev
!= NULL
, return -1;);
2077 self
= (struct nsc_ircc_cb
*) dev
->priv
;
2078 IRDA_ASSERT(self
!= NULL
, return 0;);
2081 netif_stop_queue(dev
);
2083 /* Stop and remove instance of IrLAP */
2085 irlap_close(self
->irlap
);
2088 iobase
= self
->io
.fir_base
;
2090 disable_dma(self
->io
.dma
);
2092 /* Save current bank */
2093 bank
= inb(iobase
+BSR
);
2095 /* Disable interrupts */
2096 switch_bank(iobase
, BANK0
);
2097 outb(0, iobase
+IER
);
2099 free_irq(self
->io
.irq
, dev
);
2100 free_dma(self
->io
.dma
);
2102 /* Restore bank register */
2103 outb(bank
, iobase
+BSR
);
2109 * Function nsc_ircc_net_ioctl (dev, rq, cmd)
2111 * Process IOCTL commands for this device
2114 static int nsc_ircc_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
2116 struct if_irda_req
*irq
= (struct if_irda_req
*) rq
;
2117 struct nsc_ircc_cb
*self
;
2118 unsigned long flags
;
2121 IRDA_ASSERT(dev
!= NULL
, return -1;);
2125 IRDA_ASSERT(self
!= NULL
, return -1;);
2127 IRDA_DEBUG(2, "%s(), %s, (cmd=0x%X)\n", __FUNCTION__
, dev
->name
, cmd
);
2130 case SIOCSBANDWIDTH
: /* Set bandwidth */
2131 if (!capable(CAP_NET_ADMIN
)) {
2135 spin_lock_irqsave(&self
->lock
, flags
);
2136 nsc_ircc_change_speed(self
, irq
->ifr_baudrate
);
2137 spin_unlock_irqrestore(&self
->lock
, flags
);
2139 case SIOCSMEDIABUSY
: /* Set media busy */
2140 if (!capable(CAP_NET_ADMIN
)) {
2144 irda_device_set_media_busy(self
->netdev
, TRUE
);
2146 case SIOCGRECEIVING
: /* Check if we are receiving right now */
2147 /* This is already protected */
2148 irq
->ifr_receiving
= nsc_ircc_is_receiving(self
);
2156 static struct net_device_stats
*nsc_ircc_net_get_stats(struct net_device
*dev
)
2158 struct nsc_ircc_cb
*self
= (struct nsc_ircc_cb
*) dev
->priv
;
2160 return &self
->stats
;
2163 static void nsc_ircc_suspend(struct nsc_ircc_cb
*self
)
2165 IRDA_MESSAGE("%s, Suspending\n", driver_name
);
2167 if (self
->io
.suspended
)
2170 nsc_ircc_net_close(self
->netdev
);
2172 self
->io
.suspended
= 1;
2175 static void nsc_ircc_wakeup(struct nsc_ircc_cb
*self
)
2177 if (!self
->io
.suspended
)
2180 nsc_ircc_setup(&self
->io
);
2181 nsc_ircc_net_open(self
->netdev
);
2183 IRDA_MESSAGE("%s, Waking up\n", driver_name
);
2185 self
->io
.suspended
= 0;
2188 static int nsc_ircc_pmproc(struct pm_dev
*dev
, pm_request_t rqst
, void *data
)
2190 struct nsc_ircc_cb
*self
= (struct nsc_ircc_cb
*) dev
->data
;
2194 nsc_ircc_suspend(self
);
2197 nsc_ircc_wakeup(self
);
2204 MODULE_AUTHOR("Dag Brattli <dagb@cs.uit.no>");
2205 MODULE_DESCRIPTION("NSC IrDA Device Driver");
2206 MODULE_LICENSE("GPL");
2209 module_param(qos_mtt_bits
, int, 0);
2210 MODULE_PARM_DESC(qos_mtt_bits
, "Minimum Turn Time");
2211 module_param_array(io
, int, NULL
, 0);
2212 MODULE_PARM_DESC(io
, "Base I/O addresses");
2213 module_param_array(irq
, int, NULL
, 0);
2214 MODULE_PARM_DESC(irq
, "IRQ lines");
2215 module_param_array(dma
, int, NULL
, 0);
2216 MODULE_PARM_DESC(dma
, "DMA channels");
2217 module_param(dongle_id
, int, 0);
2218 MODULE_PARM_DESC(dongle_id
, "Type-id of used dongle");
2220 module_init(nsc_ircc_init
);
2221 module_exit(nsc_ircc_cleanup
);