GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / net / irda / nsc-ircc.c
blobb71229bf616f088ac7236a3b415caf98e5701cce
1 /*********************************************************************
2 *
3 * Filename: nsc-ircc.c
4 * Version: 1.0
5 * Description: Driver for the NSC PC'108 and PC'338 IrDA chipsets
6 * Status: Stable.
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
15 * Copyright (c) 2000-2004 Jean Tourrilhes <jt@hpl.hp.com>
16 * All Rights Reserved
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License as
20 * published by the Free Software Foundation; either version 2 of
21 * the License, or (at your option) any later version.
23 * Neither Dag Brattli nor University of Tromsø admit liability nor
24 * provide warranty for any of this software. This material is
25 * provided "AS-IS" and at no charge.
27 * Notice that all functions that needs to access the chip in _any_
28 * way, must save BSR register on entry, and restore it on exit.
29 * It is _very_ important to follow this policy!
31 * __u8 bank;
33 * bank = inb(iobase+BSR);
35 * do_your_stuff_here();
37 * outb(bank, iobase+BSR);
39 * If you find bugs in this file, its very likely that the same bug
40 * will also be in w83977af_ir.c since the implementations are quite
41 * similar.
43 ********************************************************************/
45 #include <linux/module.h>
46 #include <linux/gfp.h>
48 #include <linux/kernel.h>
49 #include <linux/types.h>
50 #include <linux/skbuff.h>
51 #include <linux/netdevice.h>
52 #include <linux/ioport.h>
53 #include <linux/delay.h>
54 #include <linux/init.h>
55 #include <linux/rtnetlink.h>
56 #include <linux/dma-mapping.h>
57 #include <linux/pnp.h>
58 #include <linux/platform_device.h>
60 #include <asm/io.h>
61 #include <asm/dma.h>
62 #include <asm/byteorder.h>
64 #include <net/irda/wrapper.h>
65 #include <net/irda/irda.h>
66 #include <net/irda/irda_device.h>
68 #include "nsc-ircc.h"
70 #define CHIP_IO_EXTENT 8
71 #define BROKEN_DONGLE_ID
73 static char *driver_name = "nsc-ircc";
75 /* Power Management */
76 #define NSC_IRCC_DRIVER_NAME "nsc-ircc"
77 static int nsc_ircc_suspend(struct platform_device *dev, pm_message_t state);
78 static int nsc_ircc_resume(struct platform_device *dev);
80 static struct platform_driver nsc_ircc_driver = {
81 .suspend = nsc_ircc_suspend,
82 .resume = nsc_ircc_resume,
83 .driver = {
84 .name = NSC_IRCC_DRIVER_NAME,
88 /* Module parameters */
89 static int qos_mtt_bits = 0x07; /* 1 ms or more */
90 static int dongle_id;
92 /* Use BIOS settions by default, but user may supply module parameters */
93 static unsigned int io[] = { ~0, ~0, ~0, ~0, ~0 };
94 static unsigned int irq[] = { 0, 0, 0, 0, 0 };
95 static unsigned int dma[] = { 0, 0, 0, 0, 0 };
97 static int nsc_ircc_probe_108(nsc_chip_t *chip, chipio_t *info);
98 static int nsc_ircc_probe_338(nsc_chip_t *chip, chipio_t *info);
99 static int nsc_ircc_probe_39x(nsc_chip_t *chip, chipio_t *info);
100 static int nsc_ircc_init_108(nsc_chip_t *chip, chipio_t *info);
101 static int nsc_ircc_init_338(nsc_chip_t *chip, chipio_t *info);
102 static int nsc_ircc_init_39x(nsc_chip_t *chip, chipio_t *info);
103 #ifdef CONFIG_PNP
104 static int nsc_ircc_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *id);
105 #endif
107 /* These are the known NSC chips */
108 static nsc_chip_t chips[] = {
109 /* Name, {cfg registers}, chip id index reg, chip id expected value, revision mask */
110 { "PC87108", { 0x150, 0x398, 0xea }, 0x05, 0x10, 0xf0,
111 nsc_ircc_probe_108, nsc_ircc_init_108 },
112 { "PC87338", { 0x398, 0x15c, 0x2e }, 0x08, 0xb0, 0xf8,
113 nsc_ircc_probe_338, nsc_ircc_init_338 },
114 /* Contributed by Steffen Pingel - IBM X40 */
115 { "PC8738x", { 0x164e, 0x4e, 0x2e }, 0x20, 0xf4, 0xff,
116 nsc_ircc_probe_39x, nsc_ircc_init_39x },
117 /* Contributed by Jan Frey - IBM A30/A31 */
118 { "PC8739x", { 0x2e, 0x4e, 0x0 }, 0x20, 0xea, 0xff,
119 nsc_ircc_probe_39x, nsc_ircc_init_39x },
120 /* IBM ThinkPads using PC8738x (T60/X60/Z60) */
121 { "IBM-PC8738x", { 0x2e, 0x4e, 0x0 }, 0x20, 0xf4, 0xff,
122 nsc_ircc_probe_39x, nsc_ircc_init_39x },
123 /* IBM ThinkPads using PC8394T (T43/R52/?) */
124 { "IBM-PC8394T", { 0x2e, 0x4e, 0x0 }, 0x20, 0xf9, 0xff,
125 nsc_ircc_probe_39x, nsc_ircc_init_39x },
126 { NULL }
129 static struct nsc_ircc_cb *dev_self[] = { NULL, NULL, NULL, NULL, NULL };
131 static char *dongle_types[] = {
132 "Differential serial interface",
133 "Differential serial interface",
134 "Reserved",
135 "Reserved",
136 "Sharp RY5HD01",
137 "Reserved",
138 "Single-ended serial interface",
139 "Consumer-IR only",
140 "HP HSDL-2300, HP HSDL-3600/HSDL-3610",
141 "IBM31T1100 or Temic TFDS6000/TFDS6500",
142 "Reserved",
143 "Reserved",
144 "HP HSDL-1100/HSDL-2100",
145 "HP HSDL-1100/HSDL-2100",
146 "Supports SIR Mode only",
147 "No dongle connected",
150 /* PNP probing */
151 static chipio_t pnp_info;
152 static const struct pnp_device_id nsc_ircc_pnp_table[] = {
153 { .id = "NSC6001", .driver_data = 0 },
154 { .id = "HWPC224", .driver_data = 0 },
155 { .id = "IBM0071", .driver_data = NSC_FORCE_DONGLE_TYPE9 },
159 MODULE_DEVICE_TABLE(pnp, nsc_ircc_pnp_table);
161 static struct pnp_driver nsc_ircc_pnp_driver = {
162 #ifdef CONFIG_PNP
163 .name = "nsc-ircc",
164 .id_table = nsc_ircc_pnp_table,
165 .probe = nsc_ircc_pnp_probe,
166 #endif
169 /* Some prototypes */
170 static int nsc_ircc_open(chipio_t *info);
171 static int nsc_ircc_close(struct nsc_ircc_cb *self);
172 static int nsc_ircc_setup(chipio_t *info);
173 static void nsc_ircc_pio_receive(struct nsc_ircc_cb *self);
174 static int nsc_ircc_dma_receive(struct nsc_ircc_cb *self);
175 static int nsc_ircc_dma_receive_complete(struct nsc_ircc_cb *self, int iobase);
176 static netdev_tx_t nsc_ircc_hard_xmit_sir(struct sk_buff *skb,
177 struct net_device *dev);
178 static netdev_tx_t nsc_ircc_hard_xmit_fir(struct sk_buff *skb,
179 struct net_device *dev);
180 static int nsc_ircc_pio_write(int iobase, __u8 *buf, int len, int fifo_size);
181 static void nsc_ircc_dma_xmit(struct nsc_ircc_cb *self, int iobase);
182 static __u8 nsc_ircc_change_speed(struct nsc_ircc_cb *self, __u32 baud);
183 static int nsc_ircc_is_receiving(struct nsc_ircc_cb *self);
184 static int nsc_ircc_read_dongle_id (int iobase);
185 static void nsc_ircc_init_dongle_interface (int iobase, int dongle_id);
187 static int nsc_ircc_net_open(struct net_device *dev);
188 static int nsc_ircc_net_close(struct net_device *dev);
189 static int nsc_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
191 /* Globals */
192 static int pnp_registered;
193 static int pnp_succeeded;
196 * Function nsc_ircc_init ()
198 * Initialize chip. Just try to find out how many chips we are dealing with
199 * and where they are
201 static int __init nsc_ircc_init(void)
203 chipio_t info;
204 nsc_chip_t *chip;
205 int ret;
206 int cfg_base;
207 int cfg, id;
208 int reg;
209 int i = 0;
211 ret = platform_driver_register(&nsc_ircc_driver);
212 if (ret) {
213 IRDA_ERROR("%s, Can't register driver!\n", driver_name);
214 return ret;
217 /* Register with PnP subsystem to detect disable ports */
218 ret = pnp_register_driver(&nsc_ircc_pnp_driver);
220 if (!ret)
221 pnp_registered = 1;
223 ret = -ENODEV;
225 /* Probe for all the NSC chipsets we know about */
226 for (chip = chips; chip->name ; chip++) {
227 IRDA_DEBUG(2, "%s(), Probing for %s ...\n", __func__,
228 chip->name);
230 /* Try all config registers for this chip */
231 for (cfg = 0; cfg < ARRAY_SIZE(chip->cfg); cfg++) {
232 cfg_base = chip->cfg[cfg];
233 if (!cfg_base)
234 continue;
236 /* Read index register */
237 reg = inb(cfg_base);
238 if (reg == 0xff) {
239 IRDA_DEBUG(2, "%s() no chip at 0x%03x\n", __func__, cfg_base);
240 continue;
243 /* Read chip identification register */
244 outb(chip->cid_index, cfg_base);
245 id = inb(cfg_base+1);
246 if ((id & chip->cid_mask) == chip->cid_value) {
247 IRDA_DEBUG(2, "%s() Found %s chip, revision=%d\n",
248 __func__, chip->name, id & ~chip->cid_mask);
251 * If we found a correct PnP setting,
252 * we first try it.
254 if (pnp_succeeded) {
255 memset(&info, 0, sizeof(chipio_t));
256 info.cfg_base = cfg_base;
257 info.fir_base = pnp_info.fir_base;
258 info.dma = pnp_info.dma;
259 info.irq = pnp_info.irq;
261 if (info.fir_base < 0x2000) {
262 IRDA_MESSAGE("%s, chip->init\n", driver_name);
263 chip->init(chip, &info);
264 } else
265 chip->probe(chip, &info);
267 if (nsc_ircc_open(&info) >= 0)
268 ret = 0;
272 * Opening based on PnP values failed.
273 * Let's fallback to user values, or probe
274 * the chip.
276 if (ret) {
277 IRDA_DEBUG(2, "%s, PnP init failed\n", driver_name);
278 memset(&info, 0, sizeof(chipio_t));
279 info.cfg_base = cfg_base;
280 info.fir_base = io[i];
281 info.dma = dma[i];
282 info.irq = irq[i];
285 * If the user supplies the base address, then
286 * we init the chip, if not we probe the values
287 * set by the BIOS
289 if (io[i] < 0x2000) {
290 chip->init(chip, &info);
291 } else
292 chip->probe(chip, &info);
294 if (nsc_ircc_open(&info) >= 0)
295 ret = 0;
297 i++;
298 } else {
299 IRDA_DEBUG(2, "%s(), Wrong chip id=0x%02x\n", __func__, id);
304 if (ret) {
305 platform_driver_unregister(&nsc_ircc_driver);
306 pnp_unregister_driver(&nsc_ircc_pnp_driver);
307 pnp_registered = 0;
310 return ret;
314 * Function nsc_ircc_cleanup ()
316 * Close all configured chips
319 static void __exit nsc_ircc_cleanup(void)
321 int i;
323 for (i = 0; i < ARRAY_SIZE(dev_self); i++) {
324 if (dev_self[i])
325 nsc_ircc_close(dev_self[i]);
328 platform_driver_unregister(&nsc_ircc_driver);
330 if (pnp_registered)
331 pnp_unregister_driver(&nsc_ircc_pnp_driver);
333 pnp_registered = 0;
336 static const struct net_device_ops nsc_ircc_sir_ops = {
337 .ndo_open = nsc_ircc_net_open,
338 .ndo_stop = nsc_ircc_net_close,
339 .ndo_start_xmit = nsc_ircc_hard_xmit_sir,
340 .ndo_do_ioctl = nsc_ircc_net_ioctl,
343 static const struct net_device_ops nsc_ircc_fir_ops = {
344 .ndo_open = nsc_ircc_net_open,
345 .ndo_stop = nsc_ircc_net_close,
346 .ndo_start_xmit = nsc_ircc_hard_xmit_fir,
347 .ndo_do_ioctl = nsc_ircc_net_ioctl,
351 * Function nsc_ircc_open (iobase, irq)
353 * Open driver instance
356 static int __init nsc_ircc_open(chipio_t *info)
358 struct net_device *dev;
359 struct nsc_ircc_cb *self;
360 void *ret;
361 int err, chip_index;
363 IRDA_DEBUG(2, "%s()\n", __func__);
366 for (chip_index = 0; chip_index < ARRAY_SIZE(dev_self); chip_index++) {
367 if (!dev_self[chip_index])
368 break;
371 if (chip_index == ARRAY_SIZE(dev_self)) {
372 IRDA_ERROR("%s(), maximum number of supported chips reached!\n", __func__);
373 return -ENOMEM;
376 IRDA_MESSAGE("%s, Found chip at base=0x%03x\n", driver_name,
377 info->cfg_base);
379 if ((nsc_ircc_setup(info)) == -1)
380 return -1;
382 IRDA_MESSAGE("%s, driver loaded (Dag Brattli)\n", driver_name);
384 dev = alloc_irdadev(sizeof(struct nsc_ircc_cb));
385 if (dev == NULL) {
386 IRDA_ERROR("%s(), can't allocate memory for "
387 "control block!\n", __func__);
388 return -ENOMEM;
391 self = netdev_priv(dev);
392 self->netdev = dev;
393 spin_lock_init(&self->lock);
395 /* Need to store self somewhere */
396 dev_self[chip_index] = self;
397 self->index = chip_index;
399 /* Initialize IO */
400 self->io.cfg_base = info->cfg_base;
401 self->io.fir_base = info->fir_base;
402 self->io.irq = info->irq;
403 self->io.fir_ext = CHIP_IO_EXTENT;
404 self->io.dma = info->dma;
405 self->io.fifo_size = 32;
407 /* Reserve the ioports that we need */
408 ret = request_region(self->io.fir_base, self->io.fir_ext, driver_name);
409 if (!ret) {
410 IRDA_WARNING("%s(), can't get iobase of 0x%03x\n",
411 __func__, self->io.fir_base);
412 err = -ENODEV;
413 goto out1;
416 /* Initialize QoS for this device */
417 irda_init_max_qos_capabilies(&self->qos);
419 /* The only value we must override it the baudrate */
420 self->qos.baud_rate.bits = IR_9600|IR_19200|IR_38400|IR_57600|
421 IR_115200|IR_576000|IR_1152000 |(IR_4000000 << 8);
423 self->qos.min_turn_time.bits = qos_mtt_bits;
424 irda_qos_bits_to_value(&self->qos);
426 /* Max DMA buffer size needed = (data_size + 6) * (window_size) + 6; */
427 self->rx_buff.truesize = 14384;
428 self->tx_buff.truesize = 14384;
430 /* Allocate memory if needed */
431 self->rx_buff.head =
432 dma_alloc_coherent(NULL, self->rx_buff.truesize,
433 &self->rx_buff_dma, GFP_KERNEL);
434 if (self->rx_buff.head == NULL) {
435 err = -ENOMEM;
436 goto out2;
439 memset(self->rx_buff.head, 0, self->rx_buff.truesize);
441 self->tx_buff.head =
442 dma_alloc_coherent(NULL, self->tx_buff.truesize,
443 &self->tx_buff_dma, GFP_KERNEL);
444 if (self->tx_buff.head == NULL) {
445 err = -ENOMEM;
446 goto out3;
448 memset(self->tx_buff.head, 0, self->tx_buff.truesize);
450 self->rx_buff.in_frame = FALSE;
451 self->rx_buff.state = OUTSIDE_FRAME;
452 self->tx_buff.data = self->tx_buff.head;
453 self->rx_buff.data = self->rx_buff.head;
455 /* Reset Tx queue info */
456 self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
457 self->tx_fifo.tail = self->tx_buff.head;
459 /* Override the network functions we need to use */
460 dev->netdev_ops = &nsc_ircc_sir_ops;
462 err = register_netdev(dev);
463 if (err) {
464 IRDA_ERROR("%s(), register_netdev() failed!\n", __func__);
465 goto out4;
467 IRDA_MESSAGE("IrDA: Registered device %s\n", dev->name);
469 /* Check if user has supplied a valid dongle id or not */
470 if ((dongle_id <= 0) ||
471 (dongle_id >= ARRAY_SIZE(dongle_types))) {
472 dongle_id = nsc_ircc_read_dongle_id(self->io.fir_base);
474 IRDA_MESSAGE("%s, Found dongle: %s\n", driver_name,
475 dongle_types[dongle_id]);
476 } else {
477 IRDA_MESSAGE("%s, Using dongle: %s\n", driver_name,
478 dongle_types[dongle_id]);
481 self->io.dongle_id = dongle_id;
482 nsc_ircc_init_dongle_interface(self->io.fir_base, dongle_id);
484 self->pldev = platform_device_register_simple(NSC_IRCC_DRIVER_NAME,
485 self->index, NULL, 0);
486 if (IS_ERR(self->pldev)) {
487 err = PTR_ERR(self->pldev);
488 goto out5;
490 platform_set_drvdata(self->pldev, self);
492 return chip_index;
494 out5:
495 unregister_netdev(dev);
496 out4:
497 dma_free_coherent(NULL, self->tx_buff.truesize,
498 self->tx_buff.head, self->tx_buff_dma);
499 out3:
500 dma_free_coherent(NULL, self->rx_buff.truesize,
501 self->rx_buff.head, self->rx_buff_dma);
502 out2:
503 release_region(self->io.fir_base, self->io.fir_ext);
504 out1:
505 free_netdev(dev);
506 dev_self[chip_index] = NULL;
507 return err;
511 * Function nsc_ircc_close (self)
513 * Close driver instance
516 static int __exit nsc_ircc_close(struct nsc_ircc_cb *self)
518 int iobase;
520 IRDA_DEBUG(4, "%s()\n", __func__);
522 IRDA_ASSERT(self != NULL, return -1;);
524 iobase = self->io.fir_base;
526 platform_device_unregister(self->pldev);
528 /* Remove netdevice */
529 unregister_netdev(self->netdev);
531 /* Release the PORT that this driver is using */
532 IRDA_DEBUG(4, "%s(), Releasing Region %03x\n",
533 __func__, self->io.fir_base);
534 release_region(self->io.fir_base, self->io.fir_ext);
536 if (self->tx_buff.head)
537 dma_free_coherent(NULL, self->tx_buff.truesize,
538 self->tx_buff.head, self->tx_buff_dma);
540 if (self->rx_buff.head)
541 dma_free_coherent(NULL, self->rx_buff.truesize,
542 self->rx_buff.head, self->rx_buff_dma);
544 dev_self[self->index] = NULL;
545 free_netdev(self->netdev);
547 return 0;
551 * Function nsc_ircc_init_108 (iobase, cfg_base, irq, dma)
553 * Initialize the NSC '108 chip
556 static int nsc_ircc_init_108(nsc_chip_t *chip, chipio_t *info)
558 int cfg_base = info->cfg_base;
559 __u8 temp=0;
561 outb(2, cfg_base); /* Mode Control Register (MCTL) */
562 outb(0x00, cfg_base+1); /* Disable device */
564 /* Base Address and Interrupt Control Register (BAIC) */
565 outb(CFG_108_BAIC, cfg_base);
566 switch (info->fir_base) {
567 case 0x3e8: outb(0x14, cfg_base+1); break;
568 case 0x2e8: outb(0x15, cfg_base+1); break;
569 case 0x3f8: outb(0x16, cfg_base+1); break;
570 case 0x2f8: outb(0x17, cfg_base+1); break;
571 default: IRDA_ERROR("%s(), invalid base_address", __func__);
574 /* Control Signal Routing Register (CSRT) */
575 switch (info->irq) {
576 case 3: temp = 0x01; break;
577 case 4: temp = 0x02; break;
578 case 5: temp = 0x03; break;
579 case 7: temp = 0x04; break;
580 case 9: temp = 0x05; break;
581 case 11: temp = 0x06; break;
582 case 15: temp = 0x07; break;
583 default: IRDA_ERROR("%s(), invalid irq", __func__);
585 outb(CFG_108_CSRT, cfg_base);
587 switch (info->dma) {
588 case 0: outb(0x08+temp, cfg_base+1); break;
589 case 1: outb(0x10+temp, cfg_base+1); break;
590 case 3: outb(0x18+temp, cfg_base+1); break;
591 default: IRDA_ERROR("%s(), invalid dma", __func__);
594 outb(CFG_108_MCTL, cfg_base); /* Mode Control Register (MCTL) */
595 outb(0x03, cfg_base+1); /* Enable device */
597 return 0;
601 * Function nsc_ircc_probe_108 (chip, info)
606 static int nsc_ircc_probe_108(nsc_chip_t *chip, chipio_t *info)
608 int cfg_base = info->cfg_base;
609 int reg;
611 /* Read address and interrupt control register (BAIC) */
612 outb(CFG_108_BAIC, cfg_base);
613 reg = inb(cfg_base+1);
615 switch (reg & 0x03) {
616 case 0:
617 info->fir_base = 0x3e8;
618 break;
619 case 1:
620 info->fir_base = 0x2e8;
621 break;
622 case 2:
623 info->fir_base = 0x3f8;
624 break;
625 case 3:
626 info->fir_base = 0x2f8;
627 break;
629 info->sir_base = info->fir_base;
630 IRDA_DEBUG(2, "%s(), probing fir_base=0x%03x\n", __func__,
631 info->fir_base);
633 /* Read control signals routing register (CSRT) */
634 outb(CFG_108_CSRT, cfg_base);
635 reg = inb(cfg_base+1);
637 switch (reg & 0x07) {
638 case 0:
639 info->irq = -1;
640 break;
641 case 1:
642 info->irq = 3;
643 break;
644 case 2:
645 info->irq = 4;
646 break;
647 case 3:
648 info->irq = 5;
649 break;
650 case 4:
651 info->irq = 7;
652 break;
653 case 5:
654 info->irq = 9;
655 break;
656 case 6:
657 info->irq = 11;
658 break;
659 case 7:
660 info->irq = 15;
661 break;
663 IRDA_DEBUG(2, "%s(), probing irq=%d\n", __func__, info->irq);
665 /* Currently we only read Rx DMA but it will also be used for Tx */
666 switch ((reg >> 3) & 0x03) {
667 case 0:
668 info->dma = -1;
669 break;
670 case 1:
671 info->dma = 0;
672 break;
673 case 2:
674 info->dma = 1;
675 break;
676 case 3:
677 info->dma = 3;
678 break;
680 IRDA_DEBUG(2, "%s(), probing dma=%d\n", __func__, info->dma);
682 /* Read mode control register (MCTL) */
683 outb(CFG_108_MCTL, cfg_base);
684 reg = inb(cfg_base+1);
686 info->enabled = reg & 0x01;
687 info->suspended = !((reg >> 1) & 0x01);
689 return 0;
693 * Function nsc_ircc_init_338 (chip, info)
695 * Initialize the NSC '338 chip. Remember that the 87338 needs two
696 * consecutive writes to the data registers while CPU interrupts are
697 * disabled. The 97338 does not require this, but shouldn't be any
698 * harm if we do it anyway.
700 static int nsc_ircc_init_338(nsc_chip_t *chip, chipio_t *info)
702 /* No init yet */
704 return 0;
708 * Function nsc_ircc_probe_338 (chip, info)
713 static int nsc_ircc_probe_338(nsc_chip_t *chip, chipio_t *info)
715 int cfg_base = info->cfg_base;
716 int reg, com = 0;
717 int pnp;
719 /* Read funtion enable register (FER) */
720 outb(CFG_338_FER, cfg_base);
721 reg = inb(cfg_base+1);
723 info->enabled = (reg >> 2) & 0x01;
725 /* Check if we are in Legacy or PnP mode */
726 outb(CFG_338_PNP0, cfg_base);
727 reg = inb(cfg_base+1);
729 pnp = (reg >> 3) & 0x01;
730 if (pnp) {
731 IRDA_DEBUG(2, "(), Chip is in PnP mode\n");
732 outb(0x46, cfg_base);
733 reg = (inb(cfg_base+1) & 0xfe) << 2;
735 outb(0x47, cfg_base);
736 reg |= ((inb(cfg_base+1) & 0xfc) << 8);
738 info->fir_base = reg;
739 } else {
740 /* Read function address register (FAR) */
741 outb(CFG_338_FAR, cfg_base);
742 reg = inb(cfg_base+1);
744 switch ((reg >> 4) & 0x03) {
745 case 0:
746 info->fir_base = 0x3f8;
747 break;
748 case 1:
749 info->fir_base = 0x2f8;
750 break;
751 case 2:
752 com = 3;
753 break;
754 case 3:
755 com = 4;
756 break;
759 if (com) {
760 switch ((reg >> 6) & 0x03) {
761 case 0:
762 if (com == 3)
763 info->fir_base = 0x3e8;
764 else
765 info->fir_base = 0x2e8;
766 break;
767 case 1:
768 if (com == 3)
769 info->fir_base = 0x338;
770 else
771 info->fir_base = 0x238;
772 break;
773 case 2:
774 if (com == 3)
775 info->fir_base = 0x2e8;
776 else
777 info->fir_base = 0x2e0;
778 break;
779 case 3:
780 if (com == 3)
781 info->fir_base = 0x220;
782 else
783 info->fir_base = 0x228;
784 break;
788 info->sir_base = info->fir_base;
790 /* Read PnP register 1 (PNP1) */
791 outb(CFG_338_PNP1, cfg_base);
792 reg = inb(cfg_base+1);
794 info->irq = reg >> 4;
796 /* Read PnP register 3 (PNP3) */
797 outb(CFG_338_PNP3, cfg_base);
798 reg = inb(cfg_base+1);
800 info->dma = (reg & 0x07) - 1;
802 /* Read power and test register (PTR) */
803 outb(CFG_338_PTR, cfg_base);
804 reg = inb(cfg_base+1);
806 info->suspended = reg & 0x01;
808 return 0;
813 * Function nsc_ircc_init_39x (chip, info)
815 * Now that we know it's a '39x (see probe below), we need to
816 * configure it so we can use it.
818 * The NSC '338 chip is a Super I/O chip with a "bank" architecture,
819 * the configuration of the different functionality (serial, parallel,
820 * floppy...) are each in a different bank (Logical Device Number).
821 * The base address, irq and dma configuration registers are common
822 * to all functionalities (index 0x30 to 0x7F).
823 * There is only one configuration register specific to the
824 * serial port, CFG_39X_SPC.
825 * JeanII
827 * Note : this code was written by Jan Frey <janfrey@web.de>
829 static int nsc_ircc_init_39x(nsc_chip_t *chip, chipio_t *info)
831 int cfg_base = info->cfg_base;
832 int enabled;
834 /* User is sure about his config... accept it. */
835 IRDA_DEBUG(2, "%s(): nsc_ircc_init_39x (user settings): "
836 "io=0x%04x, irq=%d, dma=%d\n",
837 __func__, info->fir_base, info->irq, info->dma);
839 /* Access bank for SP2 */
840 outb(CFG_39X_LDN, cfg_base);
841 outb(0x02, cfg_base+1);
843 /* Configure SP2 */
845 /* We want to enable the device if not enabled */
846 outb(CFG_39X_ACT, cfg_base);
847 enabled = inb(cfg_base+1) & 0x01;
849 if (!enabled) {
850 /* Enable the device */
851 outb(CFG_39X_SIOCF1, cfg_base);
852 outb(0x01, cfg_base+1);
853 /* May want to update info->enabled. Jean II */
856 /* Enable UART bank switching (bit 7) ; Sets the chip to normal
857 * power mode (wake up from sleep mode) (bit 1) */
858 outb(CFG_39X_SPC, cfg_base);
859 outb(0x82, cfg_base+1);
861 return 0;
865 * Function nsc_ircc_probe_39x (chip, info)
867 * Test if we really have a '39x chip at the given address
869 * Note : this code was written by Jan Frey <janfrey@web.de>
871 static int nsc_ircc_probe_39x(nsc_chip_t *chip, chipio_t *info)
873 int cfg_base = info->cfg_base;
874 int reg1, reg2, irq, irqt, dma1, dma2;
875 int enabled, susp;
877 IRDA_DEBUG(2, "%s(), nsc_ircc_probe_39x, base=%d\n",
878 __func__, cfg_base);
880 /* This function should be executed with irq off to avoid
881 * another driver messing with the Super I/O bank - Jean II */
883 /* Access bank for SP2 */
884 outb(CFG_39X_LDN, cfg_base);
885 outb(0x02, cfg_base+1);
887 /* Read infos about SP2 ; store in info struct */
888 outb(CFG_39X_BASEH, cfg_base);
889 reg1 = inb(cfg_base+1);
890 outb(CFG_39X_BASEL, cfg_base);
891 reg2 = inb(cfg_base+1);
892 info->fir_base = (reg1 << 8) | reg2;
894 outb(CFG_39X_IRQNUM, cfg_base);
895 irq = inb(cfg_base+1);
896 outb(CFG_39X_IRQSEL, cfg_base);
897 irqt = inb(cfg_base+1);
898 info->irq = irq;
900 outb(CFG_39X_DMA0, cfg_base);
901 dma1 = inb(cfg_base+1);
902 outb(CFG_39X_DMA1, cfg_base);
903 dma2 = inb(cfg_base+1);
904 info->dma = dma1 -1;
906 outb(CFG_39X_ACT, cfg_base);
907 info->enabled = enabled = inb(cfg_base+1) & 0x01;
909 outb(CFG_39X_SPC, cfg_base);
910 susp = 1 - ((inb(cfg_base+1) & 0x02) >> 1);
912 IRDA_DEBUG(2, "%s(): io=0x%02x%02x, irq=%d (type %d), rxdma=%d, txdma=%d, enabled=%d (suspended=%d)\n", __func__, reg1,reg2,irq,irqt,dma1,dma2,enabled,susp);
914 /* Configure SP2 */
916 /* We want to enable the device if not enabled */
917 outb(CFG_39X_ACT, cfg_base);
918 enabled = inb(cfg_base+1) & 0x01;
920 if (!enabled) {
921 /* Enable the device */
922 outb(CFG_39X_SIOCF1, cfg_base);
923 outb(0x01, cfg_base+1);
924 /* May want to update info->enabled. Jean II */
927 /* Enable UART bank switching (bit 7) ; Sets the chip to normal
928 * power mode (wake up from sleep mode) (bit 1) */
929 outb(CFG_39X_SPC, cfg_base);
930 outb(0x82, cfg_base+1);
932 return 0;
935 #ifdef CONFIG_PNP
936 /* PNP probing */
937 static int nsc_ircc_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *id)
939 memset(&pnp_info, 0, sizeof(chipio_t));
940 pnp_info.irq = -1;
941 pnp_info.dma = -1;
942 pnp_succeeded = 1;
944 if (id->driver_data & NSC_FORCE_DONGLE_TYPE9)
945 dongle_id = 0x9;
947 /* There doesn't seem to be any way of getting the cfg_base.
948 * On my box, cfg_base is in the PnP descriptor of the
949 * motherboard. Oh well... Jean II */
951 if (pnp_port_valid(dev, 0) &&
952 !(pnp_port_flags(dev, 0) & IORESOURCE_DISABLED))
953 pnp_info.fir_base = pnp_port_start(dev, 0);
955 if (pnp_irq_valid(dev, 0) &&
956 !(pnp_irq_flags(dev, 0) & IORESOURCE_DISABLED))
957 pnp_info.irq = pnp_irq(dev, 0);
959 if (pnp_dma_valid(dev, 0) &&
960 !(pnp_dma_flags(dev, 0) & IORESOURCE_DISABLED))
961 pnp_info.dma = pnp_dma(dev, 0);
963 IRDA_DEBUG(0, "%s() : From PnP, found firbase 0x%03X ; irq %d ; dma %d.\n",
964 __func__, pnp_info.fir_base, pnp_info.irq, pnp_info.dma);
966 if((pnp_info.fir_base == 0) ||
967 (pnp_info.irq == -1) || (pnp_info.dma == -1)) {
968 /* Returning an error will disable the device. Yuck ! */
969 //return -EINVAL;
970 pnp_succeeded = 0;
973 return 0;
975 #endif
978 * Function nsc_ircc_setup (info)
980 * Returns non-negative on success.
983 static int nsc_ircc_setup(chipio_t *info)
985 int version;
986 int iobase = info->fir_base;
988 /* Read the Module ID */
989 switch_bank(iobase, BANK3);
990 version = inb(iobase+MID);
992 IRDA_DEBUG(2, "%s() Driver %s Found chip version %02x\n",
993 __func__, driver_name, version);
995 /* Should be 0x2? */
996 if (0x20 != (version & 0xf0)) {
997 IRDA_ERROR("%s, Wrong chip version %02x\n",
998 driver_name, version);
999 return -1;
1002 /* Switch to advanced mode */
1003 switch_bank(iobase, BANK2);
1004 outb(ECR1_EXT_SL, iobase+ECR1);
1005 switch_bank(iobase, BANK0);
1007 /* Set FIFO threshold to TX17, RX16, reset and enable FIFO's */
1008 switch_bank(iobase, BANK0);
1009 outb(FCR_RXTH|FCR_TXTH|FCR_TXSR|FCR_RXSR|FCR_FIFO_EN, iobase+FCR);
1011 outb(0x03, iobase+LCR); /* 8 bit word length */
1012 outb(MCR_SIR, iobase+MCR); /* Start at SIR-mode, also clears LSR*/
1014 /* Set FIFO size to 32 */
1015 switch_bank(iobase, BANK2);
1016 outb(EXCR2_RFSIZ|EXCR2_TFSIZ, iobase+EXCR2);
1018 /* IRCR2: FEND_MD is not set */
1019 switch_bank(iobase, BANK5);
1020 outb(0x02, iobase+4);
1022 /* Make sure that some defaults are OK */
1023 switch_bank(iobase, BANK6);
1024 outb(0x20, iobase+0); /* Set 32 bits FIR CRC */
1025 outb(0x0a, iobase+1); /* Set MIR pulse width */
1026 outb(0x0d, iobase+2); /* Set SIR pulse width to 1.6us */
1027 outb(0x2a, iobase+4); /* Set beginning frag, and preamble length */
1029 /* Enable receive interrupts */
1030 switch_bank(iobase, BANK0);
1031 outb(IER_RXHDL_IE, iobase+IER);
1033 return 0;
1037 * Function nsc_ircc_read_dongle_id (void)
1039 * Try to read dongle indentification. This procedure needs to be executed
1040 * once after power-on/reset. It also needs to be used whenever you suspect
1041 * that the user may have plugged/unplugged the IrDA Dongle.
1043 static int nsc_ircc_read_dongle_id (int iobase)
1045 int dongle_id;
1046 __u8 bank;
1048 bank = inb(iobase+BSR);
1050 /* Select Bank 7 */
1051 switch_bank(iobase, BANK7);
1053 /* IRCFG4: IRSL0_DS and IRSL21_DS are cleared */
1054 outb(0x00, iobase+7);
1056 /* ID0, 1, and 2 are pulled up/down very slowly */
1057 udelay(50);
1059 /* IRCFG1: read the ID bits */
1060 dongle_id = inb(iobase+4) & 0x0f;
1062 #ifdef BROKEN_DONGLE_ID
1063 if (dongle_id == 0x0a)
1064 dongle_id = 0x09;
1065 #endif
1066 /* Go back to bank 0 before returning */
1067 switch_bank(iobase, BANK0);
1069 outb(bank, iobase+BSR);
1071 return dongle_id;
1075 * Function nsc_ircc_init_dongle_interface (iobase, dongle_id)
1077 * This function initializes the dongle for the transceiver that is
1078 * used. This procedure needs to be executed once after
1079 * power-on/reset. It also needs to be used whenever you suspect that
1080 * the dongle is changed.
1082 static void nsc_ircc_init_dongle_interface (int iobase, int dongle_id)
1084 int bank;
1086 /* Save current bank */
1087 bank = inb(iobase+BSR);
1089 /* Select Bank 7 */
1090 switch_bank(iobase, BANK7);
1092 /* IRCFG4: set according to dongle_id */
1093 switch (dongle_id) {
1094 case 0x00: /* same as */
1095 case 0x01: /* Differential serial interface */
1096 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1097 __func__, dongle_types[dongle_id]);
1098 break;
1099 case 0x02: /* same as */
1100 case 0x03: /* Reserved */
1101 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1102 __func__, dongle_types[dongle_id]);
1103 break;
1104 case 0x04: /* Sharp RY5HD01 */
1105 break;
1106 case 0x05: /* Reserved, but this is what the Thinkpad reports */
1107 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1108 __func__, dongle_types[dongle_id]);
1109 break;
1110 case 0x06: /* Single-ended serial interface */
1111 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1112 __func__, dongle_types[dongle_id]);
1113 break;
1114 case 0x07: /* Consumer-IR only */
1115 IRDA_DEBUG(0, "%s(), %s is not for IrDA mode\n",
1116 __func__, dongle_types[dongle_id]);
1117 break;
1118 case 0x08: /* HP HSDL-2300, HP HSDL-3600/HSDL-3610 */
1119 IRDA_DEBUG(0, "%s(), %s\n",
1120 __func__, dongle_types[dongle_id]);
1121 break;
1122 case 0x09: /* IBM31T1100 or Temic TFDS6000/TFDS6500 */
1123 outb(0x28, iobase+7); /* Set irsl[0-2] as output */
1124 break;
1125 case 0x0A: /* same as */
1126 case 0x0B: /* Reserved */
1127 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1128 __func__, dongle_types[dongle_id]);
1129 break;
1130 case 0x0C: /* same as */
1131 case 0x0D: /* HP HSDL-1100/HSDL-2100 */
1133 * Set irsl0 as input, irsl[1-2] as output, and separate
1134 * inputs are used for SIR and MIR/FIR
1136 outb(0x48, iobase+7);
1137 break;
1138 case 0x0E: /* Supports SIR Mode only */
1139 outb(0x28, iobase+7); /* Set irsl[0-2] as output */
1140 break;
1141 case 0x0F: /* No dongle connected */
1142 IRDA_DEBUG(0, "%s(), %s\n",
1143 __func__, dongle_types[dongle_id]);
1145 switch_bank(iobase, BANK0);
1146 outb(0x62, iobase+MCR);
1147 break;
1148 default:
1149 IRDA_DEBUG(0, "%s(), invalid dongle_id %#x",
1150 __func__, dongle_id);
1153 /* IRCFG1: IRSL1 and 2 are set to IrDA mode */
1154 outb(0x00, iobase+4);
1156 /* Restore bank register */
1157 outb(bank, iobase+BSR);
1159 } /* set_up_dongle_interface */
1162 * Function nsc_ircc_change_dongle_speed (iobase, speed, dongle_id)
1164 * Change speed of the attach dongle
1167 static void nsc_ircc_change_dongle_speed(int iobase, int speed, int dongle_id)
1169 __u8 bank;
1171 /* Save current bank */
1172 bank = inb(iobase+BSR);
1174 /* Select Bank 7 */
1175 switch_bank(iobase, BANK7);
1177 /* IRCFG1: set according to dongle_id */
1178 switch (dongle_id) {
1179 case 0x00: /* same as */
1180 case 0x01: /* Differential serial interface */
1181 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1182 __func__, dongle_types[dongle_id]);
1183 break;
1184 case 0x02: /* same as */
1185 case 0x03: /* Reserved */
1186 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1187 __func__, dongle_types[dongle_id]);
1188 break;
1189 case 0x04: /* Sharp RY5HD01 */
1190 break;
1191 case 0x05: /* Reserved */
1192 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1193 __func__, dongle_types[dongle_id]);
1194 break;
1195 case 0x06: /* Single-ended serial interface */
1196 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1197 __func__, dongle_types[dongle_id]);
1198 break;
1199 case 0x07: /* Consumer-IR only */
1200 IRDA_DEBUG(0, "%s(), %s is not for IrDA mode\n",
1201 __func__, dongle_types[dongle_id]);
1202 break;
1203 case 0x08: /* HP HSDL-2300, HP HSDL-3600/HSDL-3610 */
1204 IRDA_DEBUG(0, "%s(), %s\n",
1205 __func__, dongle_types[dongle_id]);
1206 outb(0x00, iobase+4);
1207 if (speed > 115200)
1208 outb(0x01, iobase+4);
1209 break;
1210 case 0x09: /* IBM31T1100 or Temic TFDS6000/TFDS6500 */
1211 outb(0x01, iobase+4);
1213 if (speed == 4000000) {
1214 /* There was a cli() there, but we now are already
1215 * under spin_lock_irqsave() - JeanII */
1216 outb(0x81, iobase+4);
1217 outb(0x80, iobase+4);
1218 } else
1219 outb(0x00, iobase+4);
1220 break;
1221 case 0x0A: /* same as */
1222 case 0x0B: /* Reserved */
1223 IRDA_DEBUG(0, "%s(), %s not defined by irda yet\n",
1224 __func__, dongle_types[dongle_id]);
1225 break;
1226 case 0x0C: /* same as */
1227 case 0x0D: /* HP HSDL-1100/HSDL-2100 */
1228 break;
1229 case 0x0E: /* Supports SIR Mode only */
1230 break;
1231 case 0x0F: /* No dongle connected */
1232 IRDA_DEBUG(0, "%s(), %s is not for IrDA mode\n",
1233 __func__, dongle_types[dongle_id]);
1235 switch_bank(iobase, BANK0);
1236 outb(0x62, iobase+MCR);
1237 break;
1238 default:
1239 IRDA_DEBUG(0, "%s(), invalid data_rate\n", __func__);
1241 /* Restore bank register */
1242 outb(bank, iobase+BSR);
1246 * Function nsc_ircc_change_speed (self, baud)
1248 * Change the speed of the device
1250 * This function *must* be called with irq off and spin-lock.
1252 static __u8 nsc_ircc_change_speed(struct nsc_ircc_cb *self, __u32 speed)
1254 struct net_device *dev = self->netdev;
1255 __u8 mcr = MCR_SIR;
1256 int iobase;
1257 __u8 bank;
1258 __u8 ier; /* Interrupt enable register */
1260 IRDA_DEBUG(2, "%s(), speed=%d\n", __func__, speed);
1262 IRDA_ASSERT(self != NULL, return 0;);
1264 iobase = self->io.fir_base;
1266 /* Update accounting for new speed */
1267 self->io.speed = speed;
1269 /* Save current bank */
1270 bank = inb(iobase+BSR);
1272 /* Disable interrupts */
1273 switch_bank(iobase, BANK0);
1274 outb(0, iobase+IER);
1276 /* Select Bank 2 */
1277 switch_bank(iobase, BANK2);
1279 outb(0x00, iobase+BGDH);
1280 switch (speed) {
1281 case 9600: outb(0x0c, iobase+BGDL); break;
1282 case 19200: outb(0x06, iobase+BGDL); break;
1283 case 38400: outb(0x03, iobase+BGDL); break;
1284 case 57600: outb(0x02, iobase+BGDL); break;
1285 case 115200: outb(0x01, iobase+BGDL); break;
1286 case 576000:
1287 switch_bank(iobase, BANK5);
1289 /* IRCR2: MDRS is set */
1290 outb(inb(iobase+4) | 0x04, iobase+4);
1292 mcr = MCR_MIR;
1293 IRDA_DEBUG(0, "%s(), handling baud of 576000\n", __func__);
1294 break;
1295 case 1152000:
1296 mcr = MCR_MIR;
1297 IRDA_DEBUG(0, "%s(), handling baud of 1152000\n", __func__);
1298 break;
1299 case 4000000:
1300 mcr = MCR_FIR;
1301 IRDA_DEBUG(0, "%s(), handling baud of 4000000\n", __func__);
1302 break;
1303 default:
1304 mcr = MCR_FIR;
1305 IRDA_DEBUG(0, "%s(), unknown baud rate of %d\n",
1306 __func__, speed);
1307 break;
1310 /* Set appropriate speed mode */
1311 switch_bank(iobase, BANK0);
1312 outb(mcr | MCR_TX_DFR, iobase+MCR);
1314 /* Give some hits to the transceiver */
1315 nsc_ircc_change_dongle_speed(iobase, speed, self->io.dongle_id);
1317 /* Set FIFO threshold to TX17, RX16 */
1318 switch_bank(iobase, BANK0);
1319 outb(0x00, iobase+FCR);
1320 outb(FCR_FIFO_EN, iobase+FCR);
1321 outb(FCR_RXTH| /* Set Rx FIFO threshold */
1322 FCR_TXTH| /* Set Tx FIFO threshold */
1323 FCR_TXSR| /* Reset Tx FIFO */
1324 FCR_RXSR| /* Reset Rx FIFO */
1325 FCR_FIFO_EN, /* Enable FIFOs */
1326 iobase+FCR);
1328 /* Set FIFO size to 32 */
1329 switch_bank(iobase, BANK2);
1330 outb(EXCR2_RFSIZ|EXCR2_TFSIZ, iobase+EXCR2);
1332 /* Enable some interrupts so we can receive frames */
1333 switch_bank(iobase, BANK0);
1334 if (speed > 115200) {
1335 /* Install FIR xmit handler */
1336 dev->netdev_ops = &nsc_ircc_fir_ops;
1337 ier = IER_SFIF_IE;
1338 nsc_ircc_dma_receive(self);
1339 } else {
1340 /* Install SIR xmit handler */
1341 dev->netdev_ops = &nsc_ircc_sir_ops;
1342 ier = IER_RXHDL_IE;
1344 /* Set our current interrupt mask */
1345 outb(ier, iobase+IER);
1347 /* Restore BSR */
1348 outb(bank, iobase+BSR);
1350 /* Make sure interrupt handlers keep the proper interrupt mask */
1351 return(ier);
1355 * Function nsc_ircc_hard_xmit (skb, dev)
1357 * Transmit the frame!
1360 static netdev_tx_t nsc_ircc_hard_xmit_sir(struct sk_buff *skb,
1361 struct net_device *dev)
1363 struct nsc_ircc_cb *self;
1364 unsigned long flags;
1365 int iobase;
1366 __s32 speed;
1367 __u8 bank;
1369 self = netdev_priv(dev);
1371 IRDA_ASSERT(self != NULL, return NETDEV_TX_OK;);
1373 iobase = self->io.fir_base;
1375 netif_stop_queue(dev);
1377 /* Make sure tests *& speed change are atomic */
1378 spin_lock_irqsave(&self->lock, flags);
1380 /* Check if we need to change the speed */
1381 speed = irda_get_next_speed(skb);
1382 if ((speed != self->io.speed) && (speed != -1)) {
1383 /* Check for empty frame. */
1384 if (!skb->len) {
1385 /* If we just sent a frame, we get called before
1386 * the last bytes get out (because of the SIR FIFO).
1387 * If this is the case, let interrupt handler change
1388 * the speed itself... Jean II */
1389 if (self->io.direction == IO_RECV) {
1390 nsc_ircc_change_speed(self, speed);
1391 /* TODO : For SIR->SIR, the next packet
1392 * may get corrupted - Jean II */
1393 netif_wake_queue(dev);
1394 } else {
1395 self->new_speed = speed;
1396 /* Queue will be restarted after speed change
1397 * to make sure packets gets through the
1398 * proper xmit handler - Jean II */
1400 dev->trans_start = jiffies;
1401 spin_unlock_irqrestore(&self->lock, flags);
1402 dev_kfree_skb(skb);
1403 return NETDEV_TX_OK;
1404 } else
1405 self->new_speed = speed;
1408 /* Save current bank */
1409 bank = inb(iobase+BSR);
1411 self->tx_buff.data = self->tx_buff.head;
1413 self->tx_buff.len = async_wrap_skb(skb, self->tx_buff.data,
1414 self->tx_buff.truesize);
1416 dev->stats.tx_bytes += self->tx_buff.len;
1418 /* Add interrupt on tx low level (will fire immediately) */
1419 switch_bank(iobase, BANK0);
1420 outb(IER_TXLDL_IE, iobase+IER);
1422 /* Restore bank register */
1423 outb(bank, iobase+BSR);
1425 dev->trans_start = jiffies;
1426 spin_unlock_irqrestore(&self->lock, flags);
1428 dev_kfree_skb(skb);
1430 return NETDEV_TX_OK;
1433 static netdev_tx_t nsc_ircc_hard_xmit_fir(struct sk_buff *skb,
1434 struct net_device *dev)
1436 struct nsc_ircc_cb *self;
1437 unsigned long flags;
1438 int iobase;
1439 __s32 speed;
1440 __u8 bank;
1441 int mtt, diff;
1443 self = netdev_priv(dev);
1444 iobase = self->io.fir_base;
1446 netif_stop_queue(dev);
1448 /* Make sure tests *& speed change are atomic */
1449 spin_lock_irqsave(&self->lock, flags);
1451 /* Check if we need to change the speed */
1452 speed = irda_get_next_speed(skb);
1453 if ((speed != self->io.speed) && (speed != -1)) {
1454 /* Check for empty frame. */
1455 if (!skb->len) {
1456 /* If we are currently transmitting, defer to
1457 * interrupt handler. - Jean II */
1458 if(self->tx_fifo.len == 0) {
1459 nsc_ircc_change_speed(self, speed);
1460 netif_wake_queue(dev);
1461 } else {
1462 self->new_speed = speed;
1463 /* Keep queue stopped :
1464 * the speed change operation may change the
1465 * xmit handler, and we want to make sure
1466 * the next packet get through the proper
1467 * Tx path, so block the Tx queue until
1468 * the speed change has been done.
1469 * Jean II */
1471 dev->trans_start = jiffies;
1472 spin_unlock_irqrestore(&self->lock, flags);
1473 dev_kfree_skb(skb);
1474 return NETDEV_TX_OK;
1475 } else {
1476 /* Change speed after current frame */
1477 self->new_speed = speed;
1481 /* Save current bank */
1482 bank = inb(iobase+BSR);
1484 /* Register and copy this frame to DMA memory */
1485 self->tx_fifo.queue[self->tx_fifo.free].start = self->tx_fifo.tail;
1486 self->tx_fifo.queue[self->tx_fifo.free].len = skb->len;
1487 self->tx_fifo.tail += skb->len;
1489 dev->stats.tx_bytes += skb->len;
1491 skb_copy_from_linear_data(skb, self->tx_fifo.queue[self->tx_fifo.free].start,
1492 skb->len);
1493 self->tx_fifo.len++;
1494 self->tx_fifo.free++;
1496 /* Start transmit only if there is currently no transmit going on */
1497 if (self->tx_fifo.len == 1) {
1498 /* Check if we must wait the min turn time or not */
1499 mtt = irda_get_mtt(skb);
1500 if (mtt) {
1501 /* Check how much time we have used already */
1502 do_gettimeofday(&self->now);
1503 diff = self->now.tv_usec - self->stamp.tv_usec;
1504 if (diff < 0)
1505 diff += 1000000;
1507 /* Check if the mtt is larger than the time we have
1508 * already used by all the protocol processing
1510 if (mtt > diff) {
1511 mtt -= diff;
1514 * Use timer if delay larger than 125 us, and
1515 * use udelay for smaller values which should
1516 * be acceptable
1518 if (mtt > 125) {
1519 /* Adjust for timer resolution */
1520 mtt = mtt / 125;
1522 /* Setup timer */
1523 switch_bank(iobase, BANK4);
1524 outb(mtt & 0xff, iobase+TMRL);
1525 outb((mtt >> 8) & 0x0f, iobase+TMRH);
1527 /* Start timer */
1528 outb(IRCR1_TMR_EN, iobase+IRCR1);
1529 self->io.direction = IO_XMIT;
1531 /* Enable timer interrupt */
1532 switch_bank(iobase, BANK0);
1533 outb(IER_TMR_IE, iobase+IER);
1535 /* Timer will take care of the rest */
1536 goto out;
1537 } else
1538 udelay(mtt);
1541 /* Enable DMA interrupt */
1542 switch_bank(iobase, BANK0);
1543 outb(IER_DMA_IE, iobase+IER);
1545 /* Transmit frame */
1546 nsc_ircc_dma_xmit(self, iobase);
1548 out:
1549 /* Not busy transmitting anymore if window is not full,
1550 * and if we don't need to change speed */
1551 if ((self->tx_fifo.free < MAX_TX_WINDOW) && (self->new_speed == 0))
1552 netif_wake_queue(self->netdev);
1554 /* Restore bank register */
1555 outb(bank, iobase+BSR);
1557 dev->trans_start = jiffies;
1558 spin_unlock_irqrestore(&self->lock, flags);
1559 dev_kfree_skb(skb);
1561 return NETDEV_TX_OK;
1565 * Function nsc_ircc_dma_xmit (self, iobase)
1567 * Transmit data using DMA
1570 static void nsc_ircc_dma_xmit(struct nsc_ircc_cb *self, int iobase)
1572 int bsr;
1574 /* Save current bank */
1575 bsr = inb(iobase+BSR);
1577 /* Disable DMA */
1578 switch_bank(iobase, BANK0);
1579 outb(inb(iobase+MCR) & ~MCR_DMA_EN, iobase+MCR);
1581 self->io.direction = IO_XMIT;
1583 /* Choose transmit DMA channel */
1584 switch_bank(iobase, BANK2);
1585 outb(ECR1_DMASWP|ECR1_DMANF|ECR1_EXT_SL, iobase+ECR1);
1587 irda_setup_dma(self->io.dma,
1588 ((u8 *)self->tx_fifo.queue[self->tx_fifo.ptr].start -
1589 self->tx_buff.head) + self->tx_buff_dma,
1590 self->tx_fifo.queue[self->tx_fifo.ptr].len,
1591 DMA_TX_MODE);
1593 /* Enable DMA and SIR interaction pulse */
1594 switch_bank(iobase, BANK0);
1595 outb(inb(iobase+MCR)|MCR_TX_DFR|MCR_DMA_EN|MCR_IR_PLS, iobase+MCR);
1597 /* Restore bank register */
1598 outb(bsr, iobase+BSR);
1602 * Function nsc_ircc_pio_xmit (self, iobase)
1604 * Transmit data using PIO. Returns the number of bytes that actually
1605 * got transferred
1608 static int nsc_ircc_pio_write(int iobase, __u8 *buf, int len, int fifo_size)
1610 int actual = 0;
1611 __u8 bank;
1613 IRDA_DEBUG(4, "%s()\n", __func__);
1615 /* Save current bank */
1616 bank = inb(iobase+BSR);
1618 switch_bank(iobase, BANK0);
1619 if (!(inb_p(iobase+LSR) & LSR_TXEMP)) {
1620 IRDA_DEBUG(4, "%s(), warning, FIFO not empty yet!\n",
1621 __func__);
1623 /* FIFO may still be filled to the Tx interrupt threshold */
1624 fifo_size -= 17;
1627 /* Fill FIFO with current frame */
1628 while ((fifo_size-- > 0) && (actual < len)) {
1629 /* Transmit next byte */
1630 outb(buf[actual++], iobase+TXD);
1633 IRDA_DEBUG(4, "%s(), fifo_size %d ; %d sent of %d\n",
1634 __func__, fifo_size, actual, len);
1636 /* Restore bank */
1637 outb(bank, iobase+BSR);
1639 return actual;
1643 * Function nsc_ircc_dma_xmit_complete (self)
1645 * The transfer of a frame in finished. This function will only be called
1646 * by the interrupt handler
1649 static int nsc_ircc_dma_xmit_complete(struct nsc_ircc_cb *self)
1651 int iobase;
1652 __u8 bank;
1653 int ret = TRUE;
1655 IRDA_DEBUG(2, "%s()\n", __func__);
1657 iobase = self->io.fir_base;
1659 /* Save current bank */
1660 bank = inb(iobase+BSR);
1662 /* Disable DMA */
1663 switch_bank(iobase, BANK0);
1664 outb(inb(iobase+MCR) & ~MCR_DMA_EN, iobase+MCR);
1666 /* Check for underrrun! */
1667 if (inb(iobase+ASCR) & ASCR_TXUR) {
1668 self->netdev->stats.tx_errors++;
1669 self->netdev->stats.tx_fifo_errors++;
1671 /* Clear bit, by writing 1 into it */
1672 outb(ASCR_TXUR, iobase+ASCR);
1673 } else {
1674 self->netdev->stats.tx_packets++;
1677 /* Finished with this frame, so prepare for next */
1678 self->tx_fifo.ptr++;
1679 self->tx_fifo.len--;
1681 /* Any frames to be sent back-to-back? */
1682 if (self->tx_fifo.len) {
1683 nsc_ircc_dma_xmit(self, iobase);
1685 /* Not finished yet! */
1686 ret = FALSE;
1687 } else {
1688 /* Reset Tx FIFO info */
1689 self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
1690 self->tx_fifo.tail = self->tx_buff.head;
1693 /* Make sure we have room for more frames and
1694 * that we don't need to change speed */
1695 if ((self->tx_fifo.free < MAX_TX_WINDOW) && (self->new_speed == 0)) {
1696 /* Not busy transmitting anymore */
1697 /* Tell the network layer, that we can accept more frames */
1698 netif_wake_queue(self->netdev);
1701 /* Restore bank */
1702 outb(bank, iobase+BSR);
1704 return ret;
1708 * Function nsc_ircc_dma_receive (self)
1710 * Get ready for receiving a frame. The device will initiate a DMA
1711 * if it starts to receive a frame.
1714 static int nsc_ircc_dma_receive(struct nsc_ircc_cb *self)
1716 int iobase;
1717 __u8 bsr;
1719 iobase = self->io.fir_base;
1721 /* Reset Tx FIFO info */
1722 self->tx_fifo.len = self->tx_fifo.ptr = self->tx_fifo.free = 0;
1723 self->tx_fifo.tail = self->tx_buff.head;
1725 /* Save current bank */
1726 bsr = inb(iobase+BSR);
1728 /* Disable DMA */
1729 switch_bank(iobase, BANK0);
1730 outb(inb(iobase+MCR) & ~MCR_DMA_EN, iobase+MCR);
1732 /* Choose DMA Rx, DMA Fairness, and Advanced mode */
1733 switch_bank(iobase, BANK2);
1734 outb(ECR1_DMANF|ECR1_EXT_SL, iobase+ECR1);
1736 self->io.direction = IO_RECV;
1737 self->rx_buff.data = self->rx_buff.head;
1739 /* Reset Rx FIFO. This will also flush the ST_FIFO */
1740 switch_bank(iobase, BANK0);
1741 outb(FCR_RXSR|FCR_FIFO_EN, iobase+FCR);
1743 self->st_fifo.len = self->st_fifo.pending_bytes = 0;
1744 self->st_fifo.tail = self->st_fifo.head = 0;
1746 irda_setup_dma(self->io.dma, self->rx_buff_dma, self->rx_buff.truesize,
1747 DMA_RX_MODE);
1749 /* Enable DMA */
1750 switch_bank(iobase, BANK0);
1751 outb(inb(iobase+MCR)|MCR_DMA_EN, iobase+MCR);
1753 /* Restore bank register */
1754 outb(bsr, iobase+BSR);
1756 return 0;
1760 * Function nsc_ircc_dma_receive_complete (self)
1762 * Finished with receiving frames
1766 static int nsc_ircc_dma_receive_complete(struct nsc_ircc_cb *self, int iobase)
1768 struct st_fifo *st_fifo;
1769 struct sk_buff *skb;
1770 __u8 status;
1771 __u8 bank;
1772 int len;
1774 st_fifo = &self->st_fifo;
1776 /* Save current bank */
1777 bank = inb(iobase+BSR);
1779 /* Read all entries in status FIFO */
1780 switch_bank(iobase, BANK5);
1781 while ((status = inb(iobase+FRM_ST)) & FRM_ST_VLD) {
1782 /* We must empty the status FIFO no matter what */
1783 len = inb(iobase+RFLFL) | ((inb(iobase+RFLFH) & 0x1f) << 8);
1785 if (st_fifo->tail >= MAX_RX_WINDOW) {
1786 IRDA_DEBUG(0, "%s(), window is full!\n", __func__);
1787 continue;
1790 st_fifo->entries[st_fifo->tail].status = status;
1791 st_fifo->entries[st_fifo->tail].len = len;
1792 st_fifo->pending_bytes += len;
1793 st_fifo->tail++;
1794 st_fifo->len++;
1796 /* Try to process all entries in status FIFO */
1797 while (st_fifo->len > 0) {
1798 /* Get first entry */
1799 status = st_fifo->entries[st_fifo->head].status;
1800 len = st_fifo->entries[st_fifo->head].len;
1801 st_fifo->pending_bytes -= len;
1802 st_fifo->head++;
1803 st_fifo->len--;
1805 /* Check for errors */
1806 if (status & FRM_ST_ERR_MSK) {
1807 if (status & FRM_ST_LOST_FR) {
1808 /* Add number of lost frames to stats */
1809 self->netdev->stats.rx_errors += len;
1810 } else {
1811 /* Skip frame */
1812 self->netdev->stats.rx_errors++;
1814 self->rx_buff.data += len;
1816 if (status & FRM_ST_MAX_LEN)
1817 self->netdev->stats.rx_length_errors++;
1819 if (status & FRM_ST_PHY_ERR)
1820 self->netdev->stats.rx_frame_errors++;
1822 if (status & FRM_ST_BAD_CRC)
1823 self->netdev->stats.rx_crc_errors++;
1825 /* The errors below can be reported in both cases */
1826 if (status & FRM_ST_OVR1)
1827 self->netdev->stats.rx_fifo_errors++;
1829 if (status & FRM_ST_OVR2)
1830 self->netdev->stats.rx_fifo_errors++;
1831 } else {
1833 * First we must make sure that the frame we
1834 * want to deliver is all in main memory. If we
1835 * cannot tell, then we check if the Rx FIFO is
1836 * empty. If not then we will have to take a nap
1837 * and try again later.
1839 if (st_fifo->pending_bytes < self->io.fifo_size) {
1840 switch_bank(iobase, BANK0);
1841 if (inb(iobase+LSR) & LSR_RXDA) {
1842 /* Put this entry back in fifo */
1843 st_fifo->head--;
1844 st_fifo->len++;
1845 st_fifo->pending_bytes += len;
1846 st_fifo->entries[st_fifo->head].status = status;
1847 st_fifo->entries[st_fifo->head].len = len;
1849 * DMA not finished yet, so try again
1850 * later, set timer value, resolution
1851 * 125 us
1853 switch_bank(iobase, BANK4);
1854 outb(0x02, iobase+TMRL); /* x 125 us */
1855 outb(0x00, iobase+TMRH);
1857 /* Start timer */
1858 outb(IRCR1_TMR_EN, iobase+IRCR1);
1860 /* Restore bank register */
1861 outb(bank, iobase+BSR);
1863 return FALSE; /* I'll be back! */
1868 * Remember the time we received this frame, so we can
1869 * reduce the min turn time a bit since we will know
1870 * how much time we have used for protocol processing
1872 do_gettimeofday(&self->stamp);
1874 skb = dev_alloc_skb(len+1);
1875 if (skb == NULL) {
1876 IRDA_WARNING("%s(), memory squeeze, "
1877 "dropping frame.\n",
1878 __func__);
1879 self->netdev->stats.rx_dropped++;
1881 /* Restore bank register */
1882 outb(bank, iobase+BSR);
1884 return FALSE;
1887 /* Make sure IP header gets aligned */
1888 skb_reserve(skb, 1);
1890 /* Copy frame without CRC */
1891 if (self->io.speed < 4000000) {
1892 skb_put(skb, len-2);
1893 skb_copy_to_linear_data(skb,
1894 self->rx_buff.data,
1895 len - 2);
1896 } else {
1897 skb_put(skb, len-4);
1898 skb_copy_to_linear_data(skb,
1899 self->rx_buff.data,
1900 len - 4);
1903 /* Move to next frame */
1904 self->rx_buff.data += len;
1905 self->netdev->stats.rx_bytes += len;
1906 self->netdev->stats.rx_packets++;
1908 skb->dev = self->netdev;
1909 skb_reset_mac_header(skb);
1910 skb->protocol = htons(ETH_P_IRDA);
1911 netif_rx(skb);
1914 /* Restore bank register */
1915 outb(bank, iobase+BSR);
1917 return TRUE;
1921 * Function nsc_ircc_pio_receive (self)
1923 * Receive all data in receiver FIFO
1926 static void nsc_ircc_pio_receive(struct nsc_ircc_cb *self)
1928 __u8 byte;
1929 int iobase;
1931 iobase = self->io.fir_base;
1933 /* Receive all characters in Rx FIFO */
1934 do {
1935 byte = inb(iobase+RXD);
1936 async_unwrap_char(self->netdev, &self->netdev->stats,
1937 &self->rx_buff, byte);
1938 } while (inb(iobase+LSR) & LSR_RXDA); /* Data available */
1942 * Function nsc_ircc_sir_interrupt (self, eir)
1944 * Handle SIR interrupt
1947 static void nsc_ircc_sir_interrupt(struct nsc_ircc_cb *self, int eir)
1949 int actual;
1951 /* Check if transmit FIFO is low on data */
1952 if (eir & EIR_TXLDL_EV) {
1953 /* Write data left in transmit buffer */
1954 actual = nsc_ircc_pio_write(self->io.fir_base,
1955 self->tx_buff.data,
1956 self->tx_buff.len,
1957 self->io.fifo_size);
1958 self->tx_buff.data += actual;
1959 self->tx_buff.len -= actual;
1961 self->io.direction = IO_XMIT;
1963 /* Check if finished */
1964 if (self->tx_buff.len > 0)
1965 self->ier = IER_TXLDL_IE;
1966 else {
1968 self->netdev->stats.tx_packets++;
1969 netif_wake_queue(self->netdev);
1970 self->ier = IER_TXEMP_IE;
1974 /* Check if transmission has completed */
1975 if (eir & EIR_TXEMP_EV) {
1976 /* Turn around and get ready to receive some data */
1977 self->io.direction = IO_RECV;
1978 self->ier = IER_RXHDL_IE;
1979 /* Check if we need to change the speed?
1980 * Need to be after self->io.direction to avoid race with
1981 * nsc_ircc_hard_xmit_sir() - Jean II */
1982 if (self->new_speed) {
1983 IRDA_DEBUG(2, "%s(), Changing speed!\n", __func__);
1984 self->ier = nsc_ircc_change_speed(self,
1985 self->new_speed);
1986 self->new_speed = 0;
1987 netif_wake_queue(self->netdev);
1989 /* Check if we are going to FIR */
1990 if (self->io.speed > 115200) {
1991 /* No need to do anymore SIR stuff */
1992 return;
1997 /* Rx FIFO threshold or timeout */
1998 if (eir & EIR_RXHDL_EV) {
1999 nsc_ircc_pio_receive(self);
2001 /* Keep receiving */
2002 self->ier = IER_RXHDL_IE;
2007 * Function nsc_ircc_fir_interrupt (self, eir)
2009 * Handle MIR/FIR interrupt
2012 static void nsc_ircc_fir_interrupt(struct nsc_ircc_cb *self, int iobase,
2013 int eir)
2015 __u8 bank;
2017 bank = inb(iobase+BSR);
2019 /* Status FIFO event*/
2020 if (eir & EIR_SFIF_EV) {
2021 /* Check if DMA has finished */
2022 if (nsc_ircc_dma_receive_complete(self, iobase)) {
2023 /* Wait for next status FIFO interrupt */
2024 self->ier = IER_SFIF_IE;
2025 } else {
2026 self->ier = IER_SFIF_IE | IER_TMR_IE;
2028 } else if (eir & EIR_TMR_EV) { /* Timer finished */
2029 /* Disable timer */
2030 switch_bank(iobase, BANK4);
2031 outb(0, iobase+IRCR1);
2033 /* Clear timer event */
2034 switch_bank(iobase, BANK0);
2035 outb(ASCR_CTE, iobase+ASCR);
2037 /* Check if this is a Tx timer interrupt */
2038 if (self->io.direction == IO_XMIT) {
2039 nsc_ircc_dma_xmit(self, iobase);
2041 /* Interrupt on DMA */
2042 self->ier = IER_DMA_IE;
2043 } else {
2044 /* Check (again) if DMA has finished */
2045 if (nsc_ircc_dma_receive_complete(self, iobase)) {
2046 self->ier = IER_SFIF_IE;
2047 } else {
2048 self->ier = IER_SFIF_IE | IER_TMR_IE;
2051 } else if (eir & EIR_DMA_EV) {
2052 /* Finished with all transmissions? */
2053 if (nsc_ircc_dma_xmit_complete(self)) {
2054 if(self->new_speed != 0) {
2055 /* As we stop the Tx queue, the speed change
2056 * need to be done when the Tx fifo is
2057 * empty. Ask for a Tx done interrupt */
2058 self->ier = IER_TXEMP_IE;
2059 } else {
2060 /* Check if there are more frames to be
2061 * transmitted */
2062 if (irda_device_txqueue_empty(self->netdev)) {
2063 /* Prepare for receive */
2064 nsc_ircc_dma_receive(self);
2065 self->ier = IER_SFIF_IE;
2066 } else
2067 IRDA_WARNING("%s(), potential "
2068 "Tx queue lockup !\n",
2069 __func__);
2071 } else {
2072 /* Not finished yet, so interrupt on DMA again */
2073 self->ier = IER_DMA_IE;
2075 } else if (eir & EIR_TXEMP_EV) {
2076 /* The Tx FIFO has totally drained out, so now we can change
2077 * the speed... - Jean II */
2078 self->ier = nsc_ircc_change_speed(self, self->new_speed);
2079 self->new_speed = 0;
2080 netif_wake_queue(self->netdev);
2081 /* Note : nsc_ircc_change_speed() restarted Rx fifo */
2084 outb(bank, iobase+BSR);
2088 * Function nsc_ircc_interrupt (irq, dev_id, regs)
2090 * An interrupt from the chip has arrived. Time to do some work
2093 static irqreturn_t nsc_ircc_interrupt(int irq, void *dev_id)
2095 struct net_device *dev = dev_id;
2096 struct nsc_ircc_cb *self;
2097 __u8 bsr, eir;
2098 int iobase;
2100 self = netdev_priv(dev);
2102 spin_lock(&self->lock);
2104 iobase = self->io.fir_base;
2106 bsr = inb(iobase+BSR); /* Save current bank */
2108 switch_bank(iobase, BANK0);
2109 self->ier = inb(iobase+IER);
2110 eir = inb(iobase+EIR) & self->ier; /* Mask out the interesting ones */
2112 outb(0, iobase+IER); /* Disable interrupts */
2114 if (eir) {
2115 /* Dispatch interrupt handler for the current speed */
2116 if (self->io.speed > 115200)
2117 nsc_ircc_fir_interrupt(self, iobase, eir);
2118 else
2119 nsc_ircc_sir_interrupt(self, eir);
2122 outb(self->ier, iobase+IER); /* Restore interrupts */
2123 outb(bsr, iobase+BSR); /* Restore bank register */
2125 spin_unlock(&self->lock);
2126 return IRQ_RETVAL(eir);
2130 * Function nsc_ircc_is_receiving (self)
2132 * Return TRUE is we are currently receiving a frame
2135 static int nsc_ircc_is_receiving(struct nsc_ircc_cb *self)
2137 unsigned long flags;
2138 int status = FALSE;
2139 int iobase;
2140 __u8 bank;
2142 IRDA_ASSERT(self != NULL, return FALSE;);
2144 spin_lock_irqsave(&self->lock, flags);
2146 if (self->io.speed > 115200) {
2147 iobase = self->io.fir_base;
2149 /* Check if rx FIFO is not empty */
2150 bank = inb(iobase+BSR);
2151 switch_bank(iobase, BANK2);
2152 if ((inb(iobase+RXFLV) & 0x3f) != 0) {
2153 /* We are receiving something */
2154 status = TRUE;
2156 outb(bank, iobase+BSR);
2157 } else
2158 status = (self->rx_buff.state != OUTSIDE_FRAME);
2160 spin_unlock_irqrestore(&self->lock, flags);
2162 return status;
2166 * Function nsc_ircc_net_open (dev)
2168 * Start the device
2171 static int nsc_ircc_net_open(struct net_device *dev)
2173 struct nsc_ircc_cb *self;
2174 int iobase;
2175 char hwname[32];
2176 __u8 bank;
2178 IRDA_DEBUG(4, "%s()\n", __func__);
2180 IRDA_ASSERT(dev != NULL, return -1;);
2181 self = netdev_priv(dev);
2183 IRDA_ASSERT(self != NULL, return 0;);
2185 iobase = self->io.fir_base;
2187 if (request_irq(self->io.irq, nsc_ircc_interrupt, 0, dev->name, dev)) {
2188 IRDA_WARNING("%s, unable to allocate irq=%d\n",
2189 driver_name, self->io.irq);
2190 return -EAGAIN;
2193 * Always allocate the DMA channel after the IRQ, and clean up on
2194 * failure.
2196 if (request_dma(self->io.dma, dev->name)) {
2197 IRDA_WARNING("%s, unable to allocate dma=%d\n",
2198 driver_name, self->io.dma);
2199 free_irq(self->io.irq, dev);
2200 return -EAGAIN;
2203 /* Save current bank */
2204 bank = inb(iobase+BSR);
2206 /* turn on interrupts */
2207 switch_bank(iobase, BANK0);
2208 outb(IER_LS_IE | IER_RXHDL_IE, iobase+IER);
2210 /* Restore bank register */
2211 outb(bank, iobase+BSR);
2213 /* Ready to play! */
2214 netif_start_queue(dev);
2216 /* Give self a hardware name */
2217 sprintf(hwname, "NSC-FIR @ 0x%03x", self->io.fir_base);
2220 * Open new IrLAP layer instance, now that everything should be
2221 * initialized properly
2223 self->irlap = irlap_open(dev, &self->qos, hwname);
2225 return 0;
2229 * Function nsc_ircc_net_close (dev)
2231 * Stop the device
2234 static int nsc_ircc_net_close(struct net_device *dev)
2236 struct nsc_ircc_cb *self;
2237 int iobase;
2238 __u8 bank;
2240 IRDA_DEBUG(4, "%s()\n", __func__);
2242 IRDA_ASSERT(dev != NULL, return -1;);
2244 self = netdev_priv(dev);
2245 IRDA_ASSERT(self != NULL, return 0;);
2247 /* Stop device */
2248 netif_stop_queue(dev);
2250 /* Stop and remove instance of IrLAP */
2251 if (self->irlap)
2252 irlap_close(self->irlap);
2253 self->irlap = NULL;
2255 iobase = self->io.fir_base;
2257 disable_dma(self->io.dma);
2259 /* Save current bank */
2260 bank = inb(iobase+BSR);
2262 /* Disable interrupts */
2263 switch_bank(iobase, BANK0);
2264 outb(0, iobase+IER);
2266 free_irq(self->io.irq, dev);
2267 free_dma(self->io.dma);
2269 /* Restore bank register */
2270 outb(bank, iobase+BSR);
2272 return 0;
2276 * Function nsc_ircc_net_ioctl (dev, rq, cmd)
2278 * Process IOCTL commands for this device
2281 static int nsc_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
2283 struct if_irda_req *irq = (struct if_irda_req *) rq;
2284 struct nsc_ircc_cb *self;
2285 unsigned long flags;
2286 int ret = 0;
2288 IRDA_ASSERT(dev != NULL, return -1;);
2290 self = netdev_priv(dev);
2292 IRDA_ASSERT(self != NULL, return -1;);
2294 IRDA_DEBUG(2, "%s(), %s, (cmd=0x%X)\n", __func__, dev->name, cmd);
2296 switch (cmd) {
2297 case SIOCSBANDWIDTH: /* Set bandwidth */
2298 if (!capable(CAP_NET_ADMIN)) {
2299 ret = -EPERM;
2300 break;
2302 spin_lock_irqsave(&self->lock, flags);
2303 nsc_ircc_change_speed(self, irq->ifr_baudrate);
2304 spin_unlock_irqrestore(&self->lock, flags);
2305 break;
2306 case SIOCSMEDIABUSY: /* Set media busy */
2307 if (!capable(CAP_NET_ADMIN)) {
2308 ret = -EPERM;
2309 break;
2311 irda_device_set_media_busy(self->netdev, TRUE);
2312 break;
2313 case SIOCGRECEIVING: /* Check if we are receiving right now */
2314 /* This is already protected */
2315 irq->ifr_receiving = nsc_ircc_is_receiving(self);
2316 break;
2317 default:
2318 ret = -EOPNOTSUPP;
2320 return ret;
2323 static int nsc_ircc_suspend(struct platform_device *dev, pm_message_t state)
2325 struct nsc_ircc_cb *self = platform_get_drvdata(dev);
2326 int bank;
2327 unsigned long flags;
2328 int iobase = self->io.fir_base;
2330 if (self->io.suspended)
2331 return 0;
2333 IRDA_DEBUG(1, "%s, Suspending\n", driver_name);
2335 rtnl_lock();
2336 if (netif_running(self->netdev)) {
2337 netif_device_detach(self->netdev);
2338 spin_lock_irqsave(&self->lock, flags);
2339 /* Save current bank */
2340 bank = inb(iobase+BSR);
2342 /* Disable interrupts */
2343 switch_bank(iobase, BANK0);
2344 outb(0, iobase+IER);
2346 /* Restore bank register */
2347 outb(bank, iobase+BSR);
2349 spin_unlock_irqrestore(&self->lock, flags);
2350 free_irq(self->io.irq, self->netdev);
2351 disable_dma(self->io.dma);
2353 self->io.suspended = 1;
2354 rtnl_unlock();
2356 return 0;
2359 static int nsc_ircc_resume(struct platform_device *dev)
2361 struct nsc_ircc_cb *self = platform_get_drvdata(dev);
2362 unsigned long flags;
2364 if (!self->io.suspended)
2365 return 0;
2367 IRDA_DEBUG(1, "%s, Waking up\n", driver_name);
2369 rtnl_lock();
2370 nsc_ircc_setup(&self->io);
2371 nsc_ircc_init_dongle_interface(self->io.fir_base, self->io.dongle_id);
2373 if (netif_running(self->netdev)) {
2374 if (request_irq(self->io.irq, nsc_ircc_interrupt, 0,
2375 self->netdev->name, self->netdev)) {
2376 IRDA_WARNING("%s, unable to allocate irq=%d\n",
2377 driver_name, self->io.irq);
2380 * Don't fail resume process, just kill this
2381 * network interface
2383 unregister_netdevice(self->netdev);
2384 } else {
2385 spin_lock_irqsave(&self->lock, flags);
2386 nsc_ircc_change_speed(self, self->io.speed);
2387 spin_unlock_irqrestore(&self->lock, flags);
2388 netif_device_attach(self->netdev);
2391 } else {
2392 spin_lock_irqsave(&self->lock, flags);
2393 nsc_ircc_change_speed(self, 9600);
2394 spin_unlock_irqrestore(&self->lock, flags);
2396 self->io.suspended = 0;
2397 rtnl_unlock();
2399 return 0;
2402 MODULE_AUTHOR("Dag Brattli <dagb@cs.uit.no>");
2403 MODULE_DESCRIPTION("NSC IrDA Device Driver");
2404 MODULE_LICENSE("GPL");
2407 module_param(qos_mtt_bits, int, 0);
2408 MODULE_PARM_DESC(qos_mtt_bits, "Minimum Turn Time");
2409 module_param_array(io, int, NULL, 0);
2410 MODULE_PARM_DESC(io, "Base I/O addresses");
2411 module_param_array(irq, int, NULL, 0);
2412 MODULE_PARM_DESC(irq, "IRQ lines");
2413 module_param_array(dma, int, NULL, 0);
2414 MODULE_PARM_DESC(dma, "DMA channels");
2415 module_param(dongle_id, int, 0);
2416 MODULE_PARM_DESC(dongle_id, "Type-id of used dongle");
2418 module_init(nsc_ircc_init);
2419 module_exit(nsc_ircc_cleanup);