1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44#include <linux/module.h>
45#include <linux/kernel.h>
46#include <linux/types.h>
47#include <linux/skbuff.h>
48#include <linux/netdevice.h>
49#include <linux/ioport.h>
50#include <linux/delay.h>
51#include <linux/slab.h>
52#include <linux/init.h>
53#include <linux/rtnetlink.h>
54#include <linux/serial_reg.h>
55#include <linux/dma-mapping.h>
56#include <linux/pnp.h>
57#include <linux/platform_device.h>
58
59#include <asm/io.h>
60#include <asm/dma.h>
61#include <asm/byteorder.h>
62
63#include <linux/spinlock.h>
64#include <linux/pm.h>
65#ifdef CONFIG_PCI
66#include <linux/pci.h>
67#endif
68
69#include <net/irda/wrapper.h>
70#include <net/irda/irda.h>
71#include <net/irda/irda_device.h>
72
73#include "smsc-ircc2.h"
74#include "smsc-sio.h"
75
76
77MODULE_AUTHOR("Daniele Peri <peri@csai.unipa.it>");
78MODULE_DESCRIPTION("SMC IrCC SIR/FIR controller driver");
79MODULE_LICENSE("GPL");
80
81static int smsc_nopnp = 1;
82module_param_named(nopnp, smsc_nopnp, bool, 0);
83MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings, defaults to true");
84
85#define DMA_INVAL 255
86static int ircc_dma = DMA_INVAL;
87module_param(ircc_dma, int, 0);
88MODULE_PARM_DESC(ircc_dma, "DMA channel");
89
90#define IRQ_INVAL 255
91static int ircc_irq = IRQ_INVAL;
92module_param(ircc_irq, int, 0);
93MODULE_PARM_DESC(ircc_irq, "IRQ line");
94
95static int ircc_fir;
96module_param(ircc_fir, int, 0);
97MODULE_PARM_DESC(ircc_fir, "FIR Base Address");
98
99static int ircc_sir;
100module_param(ircc_sir, int, 0);
101MODULE_PARM_DESC(ircc_sir, "SIR Base Address");
102
103static int ircc_cfg;
104module_param(ircc_cfg, int, 0);
105MODULE_PARM_DESC(ircc_cfg, "Configuration register base address");
106
107static int ircc_transceiver;
108module_param(ircc_transceiver, int, 0);
109MODULE_PARM_DESC(ircc_transceiver, "Transceiver type");
110
111
112
113#ifdef CONFIG_PCI
114struct smsc_ircc_subsystem_configuration {
115 unsigned short vendor;
116 unsigned short device;
117 unsigned short subvendor;
118 unsigned short subdevice;
119 unsigned short sir_io;
120 unsigned short fir_io;
121 unsigned char fir_irq;
122 unsigned char fir_dma;
123 unsigned short cfg_base;
124 int (*preconfigure)(struct pci_dev *dev, struct smsc_ircc_subsystem_configuration *conf);
125 const char *name;
126};
127#endif
128
129struct smsc_transceiver {
130 char *name;
131 void (*set_for_speed)(int fir_base, u32 speed);
132 int (*probe)(int fir_base);
133};
134
135struct smsc_chip {
136 char *name;
137 #if 0
138 u8 type;
139 #endif
140 u16 flags;
141 u8 devid;
142 u8 rev;
143};
144
145struct smsc_chip_address {
146 unsigned int cfg_base;
147 unsigned int type;
148};
149
150
151struct smsc_ircc_cb {
152 struct net_device *netdev;
153 struct irlap_cb *irlap;
154
155 chipio_t io;
156 iobuff_t tx_buff;
157 iobuff_t rx_buff;
158 dma_addr_t tx_buff_dma;
159 dma_addr_t rx_buff_dma;
160
161 struct qos_info qos;
162
163 spinlock_t lock;
164
165 __u32 new_speed;
166 __u32 flags;
167
168 int tx_buff_offsets[10];
169 int tx_len;
170
171 int transceiver;
172 struct platform_device *pldev;
173};
174
175
176
177#define SMSC_IRCC2_DRIVER_NAME "smsc-ircc2"
178
179#define SMSC_IRCC2_C_IRDA_FALLBACK_SPEED 9600
180#define SMSC_IRCC2_C_DEFAULT_TRANSCEIVER 1
181#define SMSC_IRCC2_C_NET_TIMEOUT 0
182#define SMSC_IRCC2_C_SIR_STOP 0
183
184static const char *driver_name = SMSC_IRCC2_DRIVER_NAME;
185
186
187
188static int smsc_ircc_open(unsigned int firbase, unsigned int sirbase, u8 dma, u8 irq);
189static int smsc_ircc_present(unsigned int fir_base, unsigned int sir_base);
190static void smsc_ircc_setup_io(struct smsc_ircc_cb *self, unsigned int fir_base, unsigned int sir_base, u8 dma, u8 irq);
191static void smsc_ircc_setup_qos(struct smsc_ircc_cb *self);
192static void smsc_ircc_init_chip(struct smsc_ircc_cb *self);
193static int __exit smsc_ircc_close(struct smsc_ircc_cb *self);
194static int smsc_ircc_dma_receive(struct smsc_ircc_cb *self);
195static void smsc_ircc_dma_receive_complete(struct smsc_ircc_cb *self);
196static void smsc_ircc_sir_receive(struct smsc_ircc_cb *self);
197static int smsc_ircc_hard_xmit_sir(struct sk_buff *skb, struct net_device *dev);
198static int smsc_ircc_hard_xmit_fir(struct sk_buff *skb, struct net_device *dev);
199static void smsc_ircc_dma_xmit(struct smsc_ircc_cb *self, int bofs);
200static void smsc_ircc_dma_xmit_complete(struct smsc_ircc_cb *self);
201static void smsc_ircc_change_speed(struct smsc_ircc_cb *self, u32 speed);
202static void smsc_ircc_set_sir_speed(struct smsc_ircc_cb *self, u32 speed);
203static irqreturn_t smsc_ircc_interrupt(int irq, void *dev_id);
204static irqreturn_t smsc_ircc_interrupt_sir(struct net_device *dev);
205static void smsc_ircc_sir_start(struct smsc_ircc_cb *self);
206#if SMSC_IRCC2_C_SIR_STOP
207static void smsc_ircc_sir_stop(struct smsc_ircc_cb *self);
208#endif
209static void smsc_ircc_sir_write_wakeup(struct smsc_ircc_cb *self);
210static int smsc_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len);
211static int smsc_ircc_net_open(struct net_device *dev);
212static int smsc_ircc_net_close(struct net_device *dev);
213static int smsc_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
214#if SMSC_IRCC2_C_NET_TIMEOUT
215static void smsc_ircc_timeout(struct net_device *dev);
216#endif
217static int smsc_ircc_is_receiving(struct smsc_ircc_cb *self);
218static void smsc_ircc_probe_transceiver(struct smsc_ircc_cb *self);
219static void smsc_ircc_set_transceiver_for_speed(struct smsc_ircc_cb *self, u32 speed);
220static void smsc_ircc_sir_wait_hw_transmitter_finish(struct smsc_ircc_cb *self);
221
222
223static int __init smsc_ircc_look_for_chips(void);
224static const struct smsc_chip * __init smsc_ircc_probe(unsigned short cfg_base, u8 reg, const struct smsc_chip *chip, char *type);
225static int __init smsc_superio_flat(const struct smsc_chip *chips, unsigned short cfg_base, char *type);
226static int __init smsc_superio_paged(const struct smsc_chip *chips, unsigned short cfg_base, char *type);
227static int __init smsc_superio_fdc(unsigned short cfg_base);
228static int __init smsc_superio_lpc(unsigned short cfg_base);
229#ifdef CONFIG_PCI
230static int __init preconfigure_smsc_chip(struct smsc_ircc_subsystem_configuration *conf);
231static int __init preconfigure_through_82801(struct pci_dev *dev, struct smsc_ircc_subsystem_configuration *conf);
232static void __init preconfigure_ali_port(struct pci_dev *dev,
233 unsigned short port);
234static int __init preconfigure_through_ali(struct pci_dev *dev, struct smsc_ircc_subsystem_configuration *conf);
235static int __init smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg,
236 unsigned short ircc_fir,
237 unsigned short ircc_sir,
238 unsigned char ircc_dma,
239 unsigned char ircc_irq);
240#endif
241
242
243
244static void smsc_ircc_set_transceiver_toshiba_sat1800(int fir_base, u32 speed);
245static int smsc_ircc_probe_transceiver_toshiba_sat1800(int fir_base);
246static void smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(int fir_base, u32 speed);
247static int smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(int fir_base);
248static void smsc_ircc_set_transceiver_smsc_ircc_atc(int fir_base, u32 speed);
249static int smsc_ircc_probe_transceiver_smsc_ircc_atc(int fir_base);
250
251
252
253static int smsc_ircc_suspend(struct platform_device *dev, pm_message_t state);
254static int smsc_ircc_resume(struct platform_device *dev);
255
256static struct platform_driver smsc_ircc_driver = {
257 .suspend = smsc_ircc_suspend,
258 .resume = smsc_ircc_resume,
259 .driver = {
260 .name = SMSC_IRCC2_DRIVER_NAME,
261 },
262};
263
264
265
266static struct smsc_transceiver smsc_transceivers[] =
267{
268 { "Toshiba Satellite 1800 (GP data pin select)", smsc_ircc_set_transceiver_toshiba_sat1800, smsc_ircc_probe_transceiver_toshiba_sat1800 },
269 { "Fast pin select", smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select, smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select },
270 { "ATC IRMode", smsc_ircc_set_transceiver_smsc_ircc_atc, smsc_ircc_probe_transceiver_smsc_ircc_atc },
271 { NULL, NULL }
272};
273#define SMSC_IRCC2_C_NUMBER_OF_TRANSCEIVERS (ARRAY_SIZE(smsc_transceivers) - 1)
274
275
276
277#define KEY55_1 0
278#define KEY55_2 1
279#define NoIRDA 2
280#define SIR 0
281#define FIR 4
282#define SERx4 8
283
284static struct smsc_chip __initdata fdc_chips_flat[] =
285{
286
287 { "37C44", KEY55_1|NoIRDA, 0x00, 0x00 },
288 { "37C665GT", KEY55_2|NoIRDA, 0x65, 0x01 },
289 { "37C665GT", KEY55_2|NoIRDA, 0x66, 0x01 },
290 { "37C669", KEY55_2|SIR|SERx4, 0x03, 0x02 },
291 { "37C669", KEY55_2|SIR|SERx4, 0x04, 0x02 },
292 { "37C78", KEY55_2|NoIRDA, 0x78, 0x00 },
293 { "37N769", KEY55_1|FIR|SERx4, 0x28, 0x00 },
294 { "37N869", KEY55_1|FIR|SERx4, 0x29, 0x00 },
295 { NULL }
296};
297
298static struct smsc_chip __initdata fdc_chips_paged[] =
299{
300
301 { "37B72X", KEY55_1|SIR|SERx4, 0x4c, 0x00 },
302 { "37B77X", KEY55_1|SIR|SERx4, 0x43, 0x00 },
303 { "37B78X", KEY55_1|SIR|SERx4, 0x44, 0x00 },
304 { "37B80X", KEY55_1|SIR|SERx4, 0x42, 0x00 },
305 { "37C67X", KEY55_1|FIR|SERx4, 0x40, 0x00 },
306 { "37C93X", KEY55_2|SIR|SERx4, 0x02, 0x01 },
307 { "37C93XAPM", KEY55_1|SIR|SERx4, 0x30, 0x01 },
308 { "37C93XFR", KEY55_2|FIR|SERx4, 0x03, 0x01 },
309 { "37M707", KEY55_1|SIR|SERx4, 0x42, 0x00 },
310 { "37M81X", KEY55_1|SIR|SERx4, 0x4d, 0x00 },
311 { "37N958FR", KEY55_1|FIR|SERx4, 0x09, 0x04 },
312 { "37N971", KEY55_1|FIR|SERx4, 0x0a, 0x00 },
313 { "37N972", KEY55_1|FIR|SERx4, 0x0b, 0x00 },
314 { NULL }
315};
316
317static struct smsc_chip __initdata lpc_chips_flat[] =
318{
319
320 { "47N227", KEY55_1|FIR|SERx4, 0x5a, 0x00 },
321 { "47N227", KEY55_1|FIR|SERx4, 0x7a, 0x00 },
322 { "47N267", KEY55_1|FIR|SERx4, 0x5e, 0x00 },
323 { NULL }
324};
325
326static struct smsc_chip __initdata lpc_chips_paged[] =
327{
328
329 { "47B27X", KEY55_1|SIR|SERx4, 0x51, 0x00 },
330 { "47B37X", KEY55_1|SIR|SERx4, 0x52, 0x00 },
331 { "47M10X", KEY55_1|SIR|SERx4, 0x59, 0x00 },
332 { "47M120", KEY55_1|NoIRDA|SERx4, 0x5c, 0x00 },
333 { "47M13X", KEY55_1|SIR|SERx4, 0x59, 0x00 },
334 { "47M14X", KEY55_1|SIR|SERx4, 0x5f, 0x00 },
335 { "47N252", KEY55_1|FIR|SERx4, 0x0e, 0x00 },
336 { "47S42X", KEY55_1|SIR|SERx4, 0x57, 0x00 },
337 { NULL }
338};
339
340#define SMSCSIO_TYPE_FDC 1
341#define SMSCSIO_TYPE_LPC 2
342#define SMSCSIO_TYPE_FLAT 4
343#define SMSCSIO_TYPE_PAGED 8
344
345static struct smsc_chip_address __initdata possible_addresses[] =
346{
347 { 0x3f0, SMSCSIO_TYPE_FDC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
348 { 0x370, SMSCSIO_TYPE_FDC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
349 { 0xe0, SMSCSIO_TYPE_FDC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
350 { 0x2e, SMSCSIO_TYPE_LPC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
351 { 0x4e, SMSCSIO_TYPE_LPC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
352 { 0, 0 }
353};
354
355
356
357static struct smsc_ircc_cb *dev_self[] = { NULL, NULL };
358static unsigned short dev_count;
359
360static inline void register_bank(int iobase, int bank)
361{
362 outb(((inb(iobase + IRCC_MASTER) & 0xf0) | (bank & 0x07)),
363 iobase + IRCC_MASTER);
364}
365
366
367static const struct pnp_device_id smsc_ircc_pnp_table[] = {
368 { .id = "SMCf010", .driver_data = 0 },
369
370 { }
371};
372MODULE_DEVICE_TABLE(pnp, smsc_ircc_pnp_table);
373
374static int pnp_driver_registered;
375
376#ifdef CONFIG_PNP
377static int __init smsc_ircc_pnp_probe(struct pnp_dev *dev,
378 const struct pnp_device_id *dev_id)
379{
380 unsigned int firbase, sirbase;
381 u8 dma, irq;
382
383 if (!(pnp_port_valid(dev, 0) && pnp_port_valid(dev, 1) &&
384 pnp_dma_valid(dev, 0) && pnp_irq_valid(dev, 0)))
385 return -EINVAL;
386
387 sirbase = pnp_port_start(dev, 0);
388 firbase = pnp_port_start(dev, 1);
389 dma = pnp_dma(dev, 0);
390 irq = pnp_irq(dev, 0);
391
392 if (smsc_ircc_open(firbase, sirbase, dma, irq))
393 return -ENODEV;
394
395 return 0;
396}
397
398static struct pnp_driver smsc_ircc_pnp_driver = {
399 .name = "smsc-ircc2",
400 .id_table = smsc_ircc_pnp_table,
401 .probe = smsc_ircc_pnp_probe,
402};
403#else
404static struct pnp_driver smsc_ircc_pnp_driver;
405#endif
406
407
408
409
410
411
412
413
414
415static int __init smsc_ircc_legacy_probe(void)
416{
417 int ret = 0;
418
419#ifdef CONFIG_PCI
420 if (smsc_ircc_preconfigure_subsystems(ircc_cfg, ircc_fir, ircc_sir, ircc_dma, ircc_irq) < 0) {
421
422 IRDA_ERROR("%s, Preconfiguration failed !\n", driver_name);
423 }
424#endif
425
426 if (ircc_fir > 0 && ircc_sir > 0) {
427 IRDA_MESSAGE(" Overriding FIR address 0x%04x\n", ircc_fir);
428 IRDA_MESSAGE(" Overriding SIR address 0x%04x\n", ircc_sir);
429
430 if (smsc_ircc_open(ircc_fir, ircc_sir, ircc_dma, ircc_irq))
431 ret = -ENODEV;
432 } else {
433 ret = -ENODEV;
434
435
436 if (ircc_cfg > 0) {
437 IRDA_MESSAGE(" Overriding configuration address "
438 "0x%04x\n", ircc_cfg);
439 if (!smsc_superio_fdc(ircc_cfg))
440 ret = 0;
441 if (!smsc_superio_lpc(ircc_cfg))
442 ret = 0;
443 }
444
445 if (smsc_ircc_look_for_chips() > 0)
446 ret = 0;
447 }
448 return ret;
449}
450
451
452
453
454
455
456
457static int __init smsc_ircc_init(void)
458{
459 int ret;
460
461 IRDA_DEBUG(1, "%s\n", __func__);
462
463 ret = platform_driver_register(&smsc_ircc_driver);
464 if (ret) {
465 IRDA_ERROR("%s, Can't register driver!\n", driver_name);
466 return ret;
467 }
468
469 dev_count = 0;
470
471 if (smsc_nopnp || !pnp_platform_devices ||
472 ircc_cfg || ircc_fir || ircc_sir ||
473 ircc_dma != DMA_INVAL || ircc_irq != IRQ_INVAL) {
474 ret = smsc_ircc_legacy_probe();
475 } else {
476 if (pnp_register_driver(&smsc_ircc_pnp_driver) == 0)
477 pnp_driver_registered = 1;
478 }
479
480 if (ret) {
481 if (pnp_driver_registered)
482 pnp_unregister_driver(&smsc_ircc_pnp_driver);
483 platform_driver_unregister(&smsc_ircc_driver);
484 }
485
486 return ret;
487}
488
489static int smsc_ircc_net_xmit(struct sk_buff *skb, struct net_device *dev)
490{
491 struct smsc_ircc_cb *self = netdev_priv(dev);
492
493 if (self->io.speed > 115200)
494 return smsc_ircc_hard_xmit_fir(skb, dev);
495 else
496 return smsc_ircc_hard_xmit_sir(skb, dev);
497}
498
499static const struct net_device_ops smsc_ircc_netdev_ops = {
500 .ndo_open = smsc_ircc_net_open,
501 .ndo_stop = smsc_ircc_net_close,
502 .ndo_do_ioctl = smsc_ircc_net_ioctl,
503 .ndo_start_xmit = smsc_ircc_net_xmit,
504#if SMSC_IRCC2_C_NET_TIMEOUT
505 .ndo_tx_timeout = smsc_ircc_timeout,
506#endif
507};
508
509
510
511
512
513
514
515static int __init smsc_ircc_open(unsigned int fir_base, unsigned int sir_base, u8 dma, u8 irq)
516{
517 struct smsc_ircc_cb *self;
518 struct net_device *dev;
519 int err;
520
521 IRDA_DEBUG(1, "%s\n", __func__);
522
523 err = smsc_ircc_present(fir_base, sir_base);
524 if (err)
525 goto err_out;
526
527 err = -ENOMEM;
528 if (dev_count >= ARRAY_SIZE(dev_self)) {
529 IRDA_WARNING("%s(), too many devices!\n", __func__);
530 goto err_out1;
531 }
532
533
534
535
536 dev = alloc_irdadev(sizeof(struct smsc_ircc_cb));
537 if (!dev) {
538 IRDA_WARNING("%s() can't allocate net device\n", __func__);
539 goto err_out1;
540 }
541
542#if SMSC_IRCC2_C_NET_TIMEOUT
543 dev->watchdog_timeo = HZ * 2;
544#endif
545 dev->netdev_ops = &smsc_ircc_netdev_ops;
546
547 self = netdev_priv(dev);
548 self->netdev = dev;
549
550
551 dev->base_addr = self->io.fir_base = fir_base;
552 dev->irq = self->io.irq = irq;
553
554
555 dev_self[dev_count] = self;
556 spin_lock_init(&self->lock);
557
558 self->rx_buff.truesize = SMSC_IRCC2_RX_BUFF_TRUESIZE;
559 self->tx_buff.truesize = SMSC_IRCC2_TX_BUFF_TRUESIZE;
560
561 self->rx_buff.head =
562 dma_alloc_coherent(NULL, self->rx_buff.truesize,
563 &self->rx_buff_dma, GFP_KERNEL);
564 if (self->rx_buff.head == NULL) {
565 IRDA_ERROR("%s, Can't allocate memory for receive buffer!\n",
566 driver_name);
567 goto err_out2;
568 }
569
570 self->tx_buff.head =
571 dma_alloc_coherent(NULL, self->tx_buff.truesize,
572 &self->tx_buff_dma, GFP_KERNEL);
573 if (self->tx_buff.head == NULL) {
574 IRDA_ERROR("%s, Can't allocate memory for transmit buffer!\n",
575 driver_name);
576 goto err_out3;
577 }
578
579 memset(self->rx_buff.head, 0, self->rx_buff.truesize);
580 memset(self->tx_buff.head, 0, self->tx_buff.truesize);
581
582 self->rx_buff.in_frame = FALSE;
583 self->rx_buff.state = OUTSIDE_FRAME;
584 self->tx_buff.data = self->tx_buff.head;
585 self->rx_buff.data = self->rx_buff.head;
586
587 smsc_ircc_setup_io(self, fir_base, sir_base, dma, irq);
588 smsc_ircc_setup_qos(self);
589 smsc_ircc_init_chip(self);
590
591 if (ircc_transceiver > 0 &&
592 ircc_transceiver < SMSC_IRCC2_C_NUMBER_OF_TRANSCEIVERS)
593 self->transceiver = ircc_transceiver;
594 else
595 smsc_ircc_probe_transceiver(self);
596
597 err = register_netdev(self->netdev);
598 if (err) {
599 IRDA_ERROR("%s, Network device registration failed!\n",
600 driver_name);
601 goto err_out4;
602 }
603
604 self->pldev = platform_device_register_simple(SMSC_IRCC2_DRIVER_NAME,
605 dev_count, NULL, 0);
606 if (IS_ERR(self->pldev)) {
607 err = PTR_ERR(self->pldev);
608 goto err_out5;
609 }
610 platform_set_drvdata(self->pldev, self);
611
612 IRDA_MESSAGE("IrDA: Registered device %s\n", dev->name);
613 dev_count++;
614
615 return 0;
616
617 err_out5:
618 unregister_netdev(self->netdev);
619
620 err_out4:
621 dma_free_coherent(NULL, self->tx_buff.truesize,
622 self->tx_buff.head, self->tx_buff_dma);
623 err_out3:
624 dma_free_coherent(NULL, self->rx_buff.truesize,
625 self->rx_buff.head, self->rx_buff_dma);
626 err_out2:
627 free_netdev(self->netdev);
628 dev_self[dev_count] = NULL;
629 err_out1:
630 release_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT);
631 release_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT);
632 err_out:
633 return err;
634}
635
636
637
638
639
640
641
642static int smsc_ircc_present(unsigned int fir_base, unsigned int sir_base)
643{
644 unsigned char low, high, chip, config, dma, irq, version;
645
646 if (!request_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT,
647 driver_name)) {
648 IRDA_WARNING("%s: can't get fir_base of 0x%03x\n",
649 __func__, fir_base);
650 goto out1;
651 }
652
653 if (!request_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT,
654 driver_name)) {
655 IRDA_WARNING("%s: can't get sir_base of 0x%03x\n",
656 __func__, sir_base);
657 goto out2;
658 }
659
660 register_bank(fir_base, 3);
661
662 high = inb(fir_base + IRCC_ID_HIGH);
663 low = inb(fir_base + IRCC_ID_LOW);
664 chip = inb(fir_base + IRCC_CHIP_ID);
665 version = inb(fir_base + IRCC_VERSION);
666 config = inb(fir_base + IRCC_INTERFACE);
667 dma = config & IRCC_INTERFACE_DMA_MASK;
668 irq = (config & IRCC_INTERFACE_IRQ_MASK) >> 4;
669
670 if (high != 0x10 || low != 0xb8 || (chip != 0xf1 && chip != 0xf2)) {
671 IRDA_WARNING("%s(), addr 0x%04x - no device found!\n",
672 __func__, fir_base);
673 goto out3;
674 }
675 IRDA_MESSAGE("SMsC IrDA Controller found\n IrCC version %d.%d, "
676 "firport 0x%03x, sirport 0x%03x dma=%d, irq=%d\n",
677 chip & 0x0f, version, fir_base, sir_base, dma, irq);
678
679 return 0;
680
681 out3:
682 release_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT);
683 out2:
684 release_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT);
685 out1:
686 return -ENODEV;
687}
688
689
690
691
692
693
694
695static void smsc_ircc_setup_io(struct smsc_ircc_cb *self,
696 unsigned int fir_base, unsigned int sir_base,
697 u8 dma, u8 irq)
698{
699 unsigned char config, chip_dma, chip_irq;
700
701 register_bank(fir_base, 3);
702 config = inb(fir_base + IRCC_INTERFACE);
703 chip_dma = config & IRCC_INTERFACE_DMA_MASK;
704 chip_irq = (config & IRCC_INTERFACE_IRQ_MASK) >> 4;
705
706 self->io.fir_base = fir_base;
707 self->io.sir_base = sir_base;
708 self->io.fir_ext = SMSC_IRCC2_FIR_CHIP_IO_EXTENT;
709 self->io.sir_ext = SMSC_IRCC2_SIR_CHIP_IO_EXTENT;
710 self->io.fifo_size = SMSC_IRCC2_FIFO_SIZE;
711 self->io.speed = SMSC_IRCC2_C_IRDA_FALLBACK_SPEED;
712
713 if (irq != IRQ_INVAL) {
714 if (irq != chip_irq)
715 IRDA_MESSAGE("%s, Overriding IRQ - chip says %d, using %d\n",
716 driver_name, chip_irq, irq);
717 self->io.irq = irq;
718 } else
719 self->io.irq = chip_irq;
720
721 if (dma != DMA_INVAL) {
722 if (dma != chip_dma)
723 IRDA_MESSAGE("%s, Overriding DMA - chip says %d, using %d\n",
724 driver_name, chip_dma, dma);
725 self->io.dma = dma;
726 } else
727 self->io.dma = chip_dma;
728
729}
730
731
732
733
734
735
736
737static void smsc_ircc_setup_qos(struct smsc_ircc_cb *self)
738{
739
740 irda_init_max_qos_capabilies(&self->qos);
741
742 self->qos.baud_rate.bits = IR_9600|IR_19200|IR_38400|IR_57600|
743 IR_115200|IR_576000|IR_1152000|(IR_4000000 << 8);
744
745 self->qos.min_turn_time.bits = SMSC_IRCC2_MIN_TURN_TIME;
746 self->qos.window_size.bits = SMSC_IRCC2_WINDOW_SIZE;
747 irda_qos_bits_to_value(&self->qos);
748}
749
750
751
752
753
754
755
756static void smsc_ircc_init_chip(struct smsc_ircc_cb *self)
757{
758 int iobase = self->io.fir_base;
759
760 register_bank(iobase, 0);
761 outb(IRCC_MASTER_RESET, iobase + IRCC_MASTER);
762 outb(0x00, iobase + IRCC_MASTER);
763
764 register_bank(iobase, 1);
765 outb(((inb(iobase + IRCC_SCE_CFGA) & 0x87) | IRCC_CFGA_IRDA_SIR_A),
766 iobase + IRCC_SCE_CFGA);
767
768#ifdef smsc_669
769 outb(((inb(iobase + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_COM),
770 iobase + IRCC_SCE_CFGB);
771#else
772 outb(((inb(iobase + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_IR),
773 iobase + IRCC_SCE_CFGB);
774#endif
775 (void) inb(iobase + IRCC_FIFO_THRESHOLD);
776 outb(SMSC_IRCC2_FIFO_THRESHOLD, iobase + IRCC_FIFO_THRESHOLD);
777
778 register_bank(iobase, 4);
779 outb((inb(iobase + IRCC_CONTROL) & 0x30), iobase + IRCC_CONTROL);
780
781 register_bank(iobase, 0);
782 outb(0, iobase + IRCC_LCR_A);
783
784 smsc_ircc_set_sir_speed(self, SMSC_IRCC2_C_IRDA_FALLBACK_SPEED);
785
786
787 outb(0x00, iobase + IRCC_MASTER);
788}
789
790
791
792
793
794
795
796static int smsc_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
797{
798 struct if_irda_req *irq = (struct if_irda_req *) rq;
799 struct smsc_ircc_cb *self;
800 unsigned long flags;
801 int ret = 0;
802
803 IRDA_ASSERT(dev != NULL, return -1;);
804
805 self = netdev_priv(dev);
806
807 IRDA_ASSERT(self != NULL, return -1;);
808
809 IRDA_DEBUG(2, "%s(), %s, (cmd=0x%X)\n", __func__, dev->name, cmd);
810
811 switch (cmd) {
812 case SIOCSBANDWIDTH:
813 if (!capable(CAP_NET_ADMIN))
814 ret = -EPERM;
815 else {
816
817
818 spin_lock_irqsave(&self->lock, flags);
819 smsc_ircc_change_speed(self, irq->ifr_baudrate);
820 spin_unlock_irqrestore(&self->lock, flags);
821 }
822 break;
823 case SIOCSMEDIABUSY:
824 if (!capable(CAP_NET_ADMIN)) {
825 ret = -EPERM;
826 break;
827 }
828
829 irda_device_set_media_busy(self->netdev, TRUE);
830 break;
831 case SIOCGRECEIVING:
832 irq->ifr_receiving = smsc_ircc_is_receiving(self);
833 break;
834 #if 0
835 case SIOCSDTRRTS:
836 if (!capable(CAP_NET_ADMIN)) {
837 ret = -EPERM;
838 break;
839 }
840 smsc_ircc_sir_set_dtr_rts(dev, irq->ifr_dtr, irq->ifr_rts);
841 break;
842 #endif
843 default:
844 ret = -EOPNOTSUPP;
845 }
846
847 return ret;
848}
849
850#if SMSC_IRCC2_C_NET_TIMEOUT
851
852
853
854
855
856
857
858static void smsc_ircc_timeout(struct net_device *dev)
859{
860 struct smsc_ircc_cb *self = netdev_priv(dev);
861 unsigned long flags;
862
863 IRDA_WARNING("%s: transmit timed out, changing speed to: %d\n",
864 dev->name, self->io.speed);
865 spin_lock_irqsave(&self->lock, flags);
866 smsc_ircc_sir_start(self);
867 smsc_ircc_change_speed(self, self->io.speed);
868 dev->trans_start = jiffies;
869 netif_wake_queue(dev);
870 spin_unlock_irqrestore(&self->lock, flags);
871}
872#endif
873
874
875
876
877
878
879
880
881static int smsc_ircc_hard_xmit_sir(struct sk_buff *skb, struct net_device *dev)
882{
883 struct smsc_ircc_cb *self;
884 unsigned long flags;
885 s32 speed;
886
887 IRDA_DEBUG(1, "%s\n", __func__);
888
889 IRDA_ASSERT(dev != NULL, return 0;);
890
891 self = netdev_priv(dev);
892 IRDA_ASSERT(self != NULL, return 0;);
893
894 netif_stop_queue(dev);
895
896
897 spin_lock_irqsave(&self->lock, flags);
898
899
900 speed = irda_get_next_speed(skb);
901 if (speed != self->io.speed && speed != -1) {
902
903 if (!skb->len) {
904
905
906
907
908
909
910
911
912
913 smsc_ircc_sir_wait_hw_transmitter_finish(self);
914 smsc_ircc_change_speed(self, speed);
915 spin_unlock_irqrestore(&self->lock, flags);
916 dev_kfree_skb(skb);
917 return 0;
918 }
919 self->new_speed = speed;
920 }
921
922
923 self->tx_buff.data = self->tx_buff.head;
924
925
926 self->tx_buff.len = async_wrap_skb(skb, self->tx_buff.data,
927 self->tx_buff.truesize);
928
929 dev->stats.tx_bytes += self->tx_buff.len;
930
931
932 outb(UART_IER_THRI, self->io.sir_base + UART_IER);
933
934 spin_unlock_irqrestore(&self->lock, flags);
935
936 dev_kfree_skb(skb);
937
938 return 0;
939}
940
941
942
943
944
945
946
947static void smsc_ircc_set_fir_speed(struct smsc_ircc_cb *self, u32 speed)
948{
949 int fir_base, ir_mode, ctrl, fast;
950
951 IRDA_ASSERT(self != NULL, return;);
952 fir_base = self->io.fir_base;
953
954 self->io.speed = speed;
955
956 switch (speed) {
957 default:
958 case 576000:
959 ir_mode = IRCC_CFGA_IRDA_HDLC;
960 ctrl = IRCC_CRC;
961 fast = 0;
962 IRDA_DEBUG(0, "%s(), handling baud of 576000\n", __func__);
963 break;
964 case 1152000:
965 ir_mode = IRCC_CFGA_IRDA_HDLC;
966 ctrl = IRCC_1152 | IRCC_CRC;
967 fast = IRCC_LCR_A_FAST | IRCC_LCR_A_GP_DATA;
968 IRDA_DEBUG(0, "%s(), handling baud of 1152000\n",
969 __func__);
970 break;
971 case 4000000:
972 ir_mode = IRCC_CFGA_IRDA_4PPM;
973 ctrl = IRCC_CRC;
974 fast = IRCC_LCR_A_FAST;
975 IRDA_DEBUG(0, "%s(), handling baud of 4000000\n",
976 __func__);
977 break;
978 }
979 #if 0
980 Now in tranceiver!
981
982 register_bank(fir_base, 0);
983 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast, fir_base + IRCC_LCR_A);
984 #endif
985
986 register_bank(fir_base, 1);
987 outb(((inb(fir_base + IRCC_SCE_CFGA) & IRCC_SCE_CFGA_BLOCK_CTRL_BITS_MASK) | ir_mode), fir_base + IRCC_SCE_CFGA);
988
989 register_bank(fir_base, 4);
990 outb((inb(fir_base + IRCC_CONTROL) & 0x30) | ctrl, fir_base + IRCC_CONTROL);
991}
992
993
994
995
996
997
998
999static void smsc_ircc_fir_start(struct smsc_ircc_cb *self)
1000{
1001 struct net_device *dev;
1002 int fir_base;
1003
1004 IRDA_DEBUG(1, "%s\n", __func__);
1005
1006 IRDA_ASSERT(self != NULL, return;);
1007 dev = self->netdev;
1008 IRDA_ASSERT(dev != NULL, return;);
1009
1010 fir_base = self->io.fir_base;
1011
1012
1013
1014
1015 outb(inb(fir_base + IRCC_LCR_A) | IRCC_LCR_A_FIFO_RESET, fir_base + IRCC_LCR_A);
1016
1017
1018
1019
1020 register_bank(fir_base, 1);
1021
1022
1023#ifdef SMSC_669
1024 outb(((inb(fir_base + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_COM),
1025 fir_base + IRCC_SCE_CFGB);
1026#else
1027 outb(((inb(fir_base + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_IR),
1028 fir_base + IRCC_SCE_CFGB);
1029#endif
1030 (void) inb(fir_base + IRCC_FIFO_THRESHOLD);
1031
1032
1033 outb(0, fir_base + IRCC_MASTER);
1034 register_bank(fir_base, 0);
1035 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, fir_base + IRCC_IER);
1036 outb(IRCC_MASTER_INT_EN, fir_base + IRCC_MASTER);
1037}
1038
1039
1040
1041
1042
1043
1044
1045static void smsc_ircc_fir_stop(struct smsc_ircc_cb *self)
1046{
1047 int fir_base;
1048
1049 IRDA_DEBUG(1, "%s\n", __func__);
1050
1051 IRDA_ASSERT(self != NULL, return;);
1052
1053 fir_base = self->io.fir_base;
1054 register_bank(fir_base, 0);
1055
1056 outb(inb(fir_base + IRCC_LCR_B) & IRCC_LCR_B_SIP_ENABLE, fir_base + IRCC_LCR_B);
1057}
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068static void smsc_ircc_change_speed(struct smsc_ircc_cb *self, u32 speed)
1069{
1070 struct net_device *dev;
1071 int last_speed_was_sir;
1072
1073 IRDA_DEBUG(0, "%s() changing speed to: %d\n", __func__, speed);
1074
1075 IRDA_ASSERT(self != NULL, return;);
1076 dev = self->netdev;
1077
1078 last_speed_was_sir = self->io.speed <= SMSC_IRCC2_MAX_SIR_SPEED;
1079
1080 #if 0
1081
1082 speed= 1152000;
1083 self->io.speed = speed;
1084 last_speed_was_sir = 0;
1085 smsc_ircc_fir_start(self);
1086 #endif
1087
1088 if (self->io.speed == 0)
1089 smsc_ircc_sir_start(self);
1090
1091 #if 0
1092 if (!last_speed_was_sir) speed = self->io.speed;
1093 #endif
1094
1095 if (self->io.speed != speed)
1096 smsc_ircc_set_transceiver_for_speed(self, speed);
1097
1098 self->io.speed = speed;
1099
1100 if (speed <= SMSC_IRCC2_MAX_SIR_SPEED) {
1101 if (!last_speed_was_sir) {
1102 smsc_ircc_fir_stop(self);
1103 smsc_ircc_sir_start(self);
1104 }
1105 smsc_ircc_set_sir_speed(self, speed);
1106 } else {
1107 if (last_speed_was_sir) {
1108 #if SMSC_IRCC2_C_SIR_STOP
1109 smsc_ircc_sir_stop(self);
1110 #endif
1111 smsc_ircc_fir_start(self);
1112 }
1113 smsc_ircc_set_fir_speed(self, speed);
1114
1115 #if 0
1116 self->tx_buff.len = 10;
1117 self->tx_buff.data = self->tx_buff.head;
1118
1119 smsc_ircc_dma_xmit(self, 4000);
1120 #endif
1121
1122 smsc_ircc_dma_receive(self);
1123 }
1124
1125 netif_wake_queue(dev);
1126}
1127
1128
1129
1130
1131
1132
1133
1134static void smsc_ircc_set_sir_speed(struct smsc_ircc_cb *self, __u32 speed)
1135{
1136 int iobase;
1137 int fcr;
1138 int lcr;
1139 int divisor;
1140
1141 IRDA_DEBUG(0, "%s(), Setting speed to: %d\n", __func__, speed);
1142
1143 IRDA_ASSERT(self != NULL, return;);
1144 iobase = self->io.sir_base;
1145
1146
1147 self->io.speed = speed;
1148
1149
1150 outb(0, iobase + UART_IER);
1151
1152 divisor = SMSC_IRCC2_MAX_SIR_SPEED / speed;
1153
1154 fcr = UART_FCR_ENABLE_FIFO;
1155
1156
1157
1158
1159
1160
1161 fcr |= self->io.speed < 38400 ?
1162 UART_FCR_TRIGGER_1 : UART_FCR_TRIGGER_14;
1163
1164
1165 lcr = UART_LCR_WLEN8;
1166
1167 outb(UART_LCR_DLAB | lcr, iobase + UART_LCR);
1168 outb(divisor & 0xff, iobase + UART_DLL);
1169 outb(divisor >> 8, iobase + UART_DLM);
1170 outb(lcr, iobase + UART_LCR);
1171 outb(fcr, iobase + UART_FCR);
1172
1173
1174 outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
1175
1176 IRDA_DEBUG(2, "%s() speed changed to: %d\n", __func__, speed);
1177}
1178
1179
1180
1181
1182
1183
1184
1185
1186static int smsc_ircc_hard_xmit_fir(struct sk_buff *skb, struct net_device *dev)
1187{
1188 struct smsc_ircc_cb *self;
1189 unsigned long flags;
1190 s32 speed;
1191 int mtt;
1192
1193 IRDA_ASSERT(dev != NULL, return 0;);
1194 self = netdev_priv(dev);
1195 IRDA_ASSERT(self != NULL, return 0;);
1196
1197 netif_stop_queue(dev);
1198
1199
1200 spin_lock_irqsave(&self->lock, flags);
1201
1202
1203 speed = irda_get_next_speed(skb);
1204 if (speed != self->io.speed && speed != -1) {
1205
1206 if (!skb->len) {
1207
1208
1209
1210 smsc_ircc_change_speed(self, speed);
1211 spin_unlock_irqrestore(&self->lock, flags);
1212 dev_kfree_skb(skb);
1213 return 0;
1214 }
1215
1216 self->new_speed = speed;
1217 }
1218
1219 skb_copy_from_linear_data(skb, self->tx_buff.head, skb->len);
1220
1221 self->tx_buff.len = skb->len;
1222 self->tx_buff.data = self->tx_buff.head;
1223
1224 mtt = irda_get_mtt(skb);
1225 if (mtt) {
1226 int bofs;
1227
1228
1229
1230
1231
1232 bofs = mtt * (self->io.speed / 1000) / 8000;
1233 if (bofs > 4095)
1234 bofs = 4095;
1235
1236 smsc_ircc_dma_xmit(self, bofs);
1237 } else {
1238
1239 smsc_ircc_dma_xmit(self, 0);
1240 }
1241
1242 spin_unlock_irqrestore(&self->lock, flags);
1243 dev_kfree_skb(skb);
1244
1245 return 0;
1246}
1247
1248
1249
1250
1251
1252
1253
1254static void smsc_ircc_dma_xmit(struct smsc_ircc_cb *self, int bofs)
1255{
1256 int iobase = self->io.fir_base;
1257 u8 ctrl;
1258
1259 IRDA_DEBUG(3, "%s\n", __func__);
1260#if 1
1261
1262 register_bank(iobase, 0);
1263 outb(0x00, iobase + IRCC_LCR_B);
1264#endif
1265 register_bank(iobase, 1);
1266 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1267 iobase + IRCC_SCE_CFGB);
1268
1269 self->io.direction = IO_XMIT;
1270
1271
1272 register_bank(iobase, 4);
1273 outb(bofs & 0xff, iobase + IRCC_BOF_COUNT_LO);
1274 ctrl = inb(iobase + IRCC_CONTROL) & 0xf0;
1275 outb(ctrl | ((bofs >> 8) & 0x0f), iobase + IRCC_BOF_COUNT_HI);
1276
1277
1278 outb(self->tx_buff.len >> 8, iobase + IRCC_TX_SIZE_HI);
1279 outb(self->tx_buff.len & 0xff, iobase + IRCC_TX_SIZE_LO);
1280
1281
1282
1283
1284 register_bank(iobase, 1);
1285 outb(inb(iobase + IRCC_SCE_CFGB) | IRCC_CFGB_DMA_ENABLE |
1286 IRCC_CFGB_DMA_BURST, iobase + IRCC_SCE_CFGB);
1287
1288
1289 irda_setup_dma(self->io.dma, self->tx_buff_dma, self->tx_buff.len,
1290 DMA_TX_MODE);
1291
1292
1293
1294 register_bank(iobase, 0);
1295 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
1296 outb(IRCC_MASTER_INT_EN, iobase + IRCC_MASTER);
1297
1298
1299 outb(IRCC_LCR_B_SCE_TRANSMIT | IRCC_LCR_B_SIP_ENABLE, iobase + IRCC_LCR_B);
1300}
1301
1302
1303
1304
1305
1306
1307
1308
1309static void smsc_ircc_dma_xmit_complete(struct smsc_ircc_cb *self)
1310{
1311 int iobase = self->io.fir_base;
1312
1313 IRDA_DEBUG(3, "%s\n", __func__);
1314#if 0
1315
1316 register_bank(iobase, 0);
1317 outb(0x00, iobase + IRCC_LCR_B);
1318#endif
1319 register_bank(iobase, 1);
1320 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1321 iobase + IRCC_SCE_CFGB);
1322
1323
1324 register_bank(iobase, 0);
1325 if (inb(iobase + IRCC_LSR) & IRCC_LSR_UNDERRUN) {
1326 self->netdev->stats.tx_errors++;
1327 self->netdev->stats.tx_fifo_errors++;
1328
1329
1330 register_bank(iobase, 0);
1331 outb(IRCC_MASTER_ERROR_RESET, iobase + IRCC_MASTER);
1332 outb(0x00, iobase + IRCC_MASTER);
1333 } else {
1334 self->netdev->stats.tx_packets++;
1335 self->netdev->stats.tx_bytes += self->tx_buff.len;
1336 }
1337
1338
1339 if (self->new_speed) {
1340 smsc_ircc_change_speed(self, self->new_speed);
1341 self->new_speed = 0;
1342 }
1343
1344 netif_wake_queue(self->netdev);
1345}
1346
1347
1348
1349
1350
1351
1352
1353
1354static int smsc_ircc_dma_receive(struct smsc_ircc_cb *self)
1355{
1356 int iobase = self->io.fir_base;
1357#if 0
1358
1359 register_bank(iobase, 1);
1360 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1361 iobase + IRCC_SCE_CFGB);
1362#endif
1363
1364
1365 register_bank(iobase, 0);
1366 outb(0x00, iobase + IRCC_LCR_B);
1367
1368
1369 register_bank(iobase, 1);
1370 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1371 iobase + IRCC_SCE_CFGB);
1372
1373 self->io.direction = IO_RECV;
1374 self->rx_buff.data = self->rx_buff.head;
1375
1376
1377 register_bank(iobase, 4);
1378 outb((2050 >> 8) & 0x0f, iobase + IRCC_RX_SIZE_HI);
1379 outb(2050 & 0xff, iobase + IRCC_RX_SIZE_LO);
1380
1381
1382 irda_setup_dma(self->io.dma, self->rx_buff_dma, self->rx_buff.truesize,
1383 DMA_RX_MODE);
1384
1385
1386 register_bank(iobase, 1);
1387 outb(inb(iobase + IRCC_SCE_CFGB) | IRCC_CFGB_DMA_ENABLE |
1388 IRCC_CFGB_DMA_BURST, iobase + IRCC_SCE_CFGB);
1389
1390
1391 register_bank(iobase, 0);
1392 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
1393 outb(IRCC_MASTER_INT_EN, iobase + IRCC_MASTER);
1394
1395
1396 register_bank(iobase, 0);
1397 outb(IRCC_LCR_B_SCE_RECEIVE | IRCC_LCR_B_SIP_ENABLE,
1398 iobase + IRCC_LCR_B);
1399
1400 return 0;
1401}
1402
1403
1404
1405
1406
1407
1408
1409static void smsc_ircc_dma_receive_complete(struct smsc_ircc_cb *self)
1410{
1411 struct sk_buff *skb;
1412 int len, msgcnt, lsr;
1413 int iobase = self->io.fir_base;
1414
1415 register_bank(iobase, 0);
1416
1417 IRDA_DEBUG(3, "%s\n", __func__);
1418#if 0
1419
1420 register_bank(iobase, 0);
1421 outb(0x00, iobase + IRCC_LCR_B);
1422#endif
1423 register_bank(iobase, 0);
1424 outb(inb(iobase + IRCC_LSAR) & ~IRCC_LSAR_ADDRESS_MASK, iobase + IRCC_LSAR);
1425 lsr= inb(iobase + IRCC_LSR);
1426 msgcnt = inb(iobase + IRCC_LCR_B) & 0x08;
1427
1428 IRDA_DEBUG(2, "%s: dma count = %d\n", __func__,
1429 get_dma_residue(self->io.dma));
1430
1431 len = self->rx_buff.truesize - get_dma_residue(self->io.dma);
1432
1433
1434 if (lsr & (IRCC_LSR_FRAME_ERROR | IRCC_LSR_CRC_ERROR | IRCC_LSR_SIZE_ERROR)) {
1435 self->netdev->stats.rx_errors++;
1436 if (lsr & IRCC_LSR_FRAME_ERROR)
1437 self->netdev->stats.rx_frame_errors++;
1438 if (lsr & IRCC_LSR_CRC_ERROR)
1439 self->netdev->stats.rx_crc_errors++;
1440 if (lsr & IRCC_LSR_SIZE_ERROR)
1441 self->netdev->stats.rx_length_errors++;
1442 if (lsr & (IRCC_LSR_UNDERRUN | IRCC_LSR_OVERRUN))
1443 self->netdev->stats.rx_length_errors++;
1444 return;
1445 }
1446
1447
1448 len -= self->io.speed < 4000000 ? 2 : 4;
1449
1450 if (len < 2 || len > 2050) {
1451 IRDA_WARNING("%s(), bogus len=%d\n", __func__, len);
1452 return;
1453 }
1454 IRDA_DEBUG(2, "%s: msgcnt = %d, len=%d\n", __func__, msgcnt, len);
1455
1456 skb = dev_alloc_skb(len + 1);
1457 if (!skb) {
1458 IRDA_WARNING("%s(), memory squeeze, dropping frame.\n",
1459 __func__);
1460 return;
1461 }
1462
1463 skb_reserve(skb, 1);
1464
1465 memcpy(skb_put(skb, len), self->rx_buff.data, len);
1466 self->netdev->stats.rx_packets++;
1467 self->netdev->stats.rx_bytes += len;
1468
1469 skb->dev = self->netdev;
1470 skb_reset_mac_header(skb);
1471 skb->protocol = htons(ETH_P_IRDA);
1472 netif_rx(skb);
1473}
1474
1475
1476
1477
1478
1479
1480
1481static void smsc_ircc_sir_receive(struct smsc_ircc_cb *self)
1482{
1483 int boguscount = 0;
1484 int iobase;
1485
1486 IRDA_ASSERT(self != NULL, return;);
1487
1488 iobase = self->io.sir_base;
1489
1490
1491
1492
1493
1494 do {
1495 async_unwrap_char(self->netdev, &self->netdev->stats, &self->rx_buff,
1496 inb(iobase + UART_RX));
1497
1498
1499 if (boguscount++ > 32) {
1500 IRDA_DEBUG(2, "%s(), breaking!\n", __func__);
1501 break;
1502 }
1503 } while (inb(iobase + UART_LSR) & UART_LSR_DR);
1504}
1505
1506
1507
1508
1509
1510
1511
1512
1513static irqreturn_t smsc_ircc_interrupt(int dummy, void *dev_id)
1514{
1515 struct net_device *dev = dev_id;
1516 struct smsc_ircc_cb *self = netdev_priv(dev);
1517 int iobase, iir, lcra, lsr;
1518 irqreturn_t ret = IRQ_NONE;
1519
1520
1521 spin_lock(&self->lock);
1522
1523
1524 if (self->io.speed <= SMSC_IRCC2_MAX_SIR_SPEED) {
1525 ret = smsc_ircc_interrupt_sir(dev);
1526 goto irq_ret_unlock;
1527 }
1528
1529 iobase = self->io.fir_base;
1530
1531 register_bank(iobase, 0);
1532 iir = inb(iobase + IRCC_IIR);
1533 if (iir == 0)
1534 goto irq_ret_unlock;
1535 ret = IRQ_HANDLED;
1536
1537
1538 outb(0, iobase + IRCC_IER);
1539 lcra = inb(iobase + IRCC_LCR_A);
1540 lsr = inb(iobase + IRCC_LSR);
1541
1542 IRDA_DEBUG(2, "%s(), iir = 0x%02x\n", __func__, iir);
1543
1544 if (iir & IRCC_IIR_EOM) {
1545 if (self->io.direction == IO_RECV)
1546 smsc_ircc_dma_receive_complete(self);
1547 else
1548 smsc_ircc_dma_xmit_complete(self);
1549
1550 smsc_ircc_dma_receive(self);
1551 }
1552
1553 if (iir & IRCC_IIR_ACTIVE_FRAME) {
1554
1555 }
1556
1557
1558
1559 register_bank(iobase, 0);
1560 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
1561
1562 irq_ret_unlock:
1563 spin_unlock(&self->lock);
1564
1565 return ret;
1566}
1567
1568
1569
1570
1571
1572
1573static irqreturn_t smsc_ircc_interrupt_sir(struct net_device *dev)
1574{
1575 struct smsc_ircc_cb *self = netdev_priv(dev);
1576 int boguscount = 0;
1577 int iobase;
1578 int iir, lsr;
1579
1580
1581
1582
1583 iobase = self->io.sir_base;
1584
1585 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
1586 if (iir == 0)
1587 return IRQ_NONE;
1588 while (iir) {
1589
1590 lsr = inb(iobase + UART_LSR);
1591
1592 IRDA_DEBUG(4, "%s(), iir=%02x, lsr=%02x, iobase=%#x\n",
1593 __func__, iir, lsr, iobase);
1594
1595 switch (iir) {
1596 case UART_IIR_RLSI:
1597 IRDA_DEBUG(2, "%s(), RLSI\n", __func__);
1598 break;
1599 case UART_IIR_RDI:
1600
1601 smsc_ircc_sir_receive(self);
1602 break;
1603 case UART_IIR_THRI:
1604 if (lsr & UART_LSR_THRE)
1605
1606 smsc_ircc_sir_write_wakeup(self);
1607 break;
1608 default:
1609 IRDA_DEBUG(0, "%s(), unhandled IIR=%#x\n",
1610 __func__, iir);
1611 break;
1612 }
1613
1614
1615 if (boguscount++ > 100)
1616 break;
1617
1618 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
1619 }
1620
1621 return IRQ_HANDLED;
1622}
1623
1624
1625#if 0
1626
1627
1628
1629
1630
1631
1632static int ircc_is_receiving(struct smsc_ircc_cb *self)
1633{
1634 int status = FALSE;
1635
1636
1637 IRDA_DEBUG(1, "%s\n", __func__);
1638
1639 IRDA_ASSERT(self != NULL, return FALSE;);
1640
1641 IRDA_DEBUG(0, "%s: dma count = %d\n", __func__,
1642 get_dma_residue(self->io.dma));
1643
1644 status = (self->rx_buff.state != OUTSIDE_FRAME);
1645
1646 return status;
1647}
1648#endif
1649
1650static int smsc_ircc_request_irq(struct smsc_ircc_cb *self)
1651{
1652 int error;
1653
1654 error = request_irq(self->io.irq, smsc_ircc_interrupt, 0,
1655 self->netdev->name, self->netdev);
1656 if (error)
1657 IRDA_DEBUG(0, "%s(), unable to allocate irq=%d, err=%d\n",
1658 __func__, self->io.irq, error);
1659
1660 return error;
1661}
1662
1663static void smsc_ircc_start_interrupts(struct smsc_ircc_cb *self)
1664{
1665 unsigned long flags;
1666
1667 spin_lock_irqsave(&self->lock, flags);
1668
1669 self->io.speed = 0;
1670 smsc_ircc_change_speed(self, SMSC_IRCC2_C_IRDA_FALLBACK_SPEED);
1671
1672 spin_unlock_irqrestore(&self->lock, flags);
1673}
1674
1675static void smsc_ircc_stop_interrupts(struct smsc_ircc_cb *self)
1676{
1677 int iobase = self->io.fir_base;
1678 unsigned long flags;
1679
1680 spin_lock_irqsave(&self->lock, flags);
1681
1682 register_bank(iobase, 0);
1683 outb(0, iobase + IRCC_IER);
1684 outb(IRCC_MASTER_RESET, iobase + IRCC_MASTER);
1685 outb(0x00, iobase + IRCC_MASTER);
1686
1687 spin_unlock_irqrestore(&self->lock, flags);
1688}
1689
1690
1691
1692
1693
1694
1695
1696
1697static int smsc_ircc_net_open(struct net_device *dev)
1698{
1699 struct smsc_ircc_cb *self;
1700 char hwname[16];
1701
1702 IRDA_DEBUG(1, "%s\n", __func__);
1703
1704 IRDA_ASSERT(dev != NULL, return -1;);
1705 self = netdev_priv(dev);
1706 IRDA_ASSERT(self != NULL, return 0;);
1707
1708 if (self->io.suspended) {
1709 IRDA_DEBUG(0, "%s(), device is suspended\n", __func__);
1710 return -EAGAIN;
1711 }
1712
1713 if (request_irq(self->io.irq, smsc_ircc_interrupt, 0, dev->name,
1714 (void *) dev)) {
1715 IRDA_DEBUG(0, "%s(), unable to allocate irq=%d\n",
1716 __func__, self->io.irq);
1717 return -EAGAIN;
1718 }
1719
1720 smsc_ircc_start_interrupts(self);
1721
1722
1723
1724 sprintf(hwname, "SMSC @ 0x%03x", self->io.fir_base);
1725
1726
1727
1728
1729
1730 self->irlap = irlap_open(dev, &self->qos, hwname);
1731
1732
1733
1734
1735
1736 if (request_dma(self->io.dma, dev->name)) {
1737 smsc_ircc_net_close(dev);
1738
1739 IRDA_WARNING("%s(), unable to allocate DMA=%d\n",
1740 __func__, self->io.dma);
1741 return -EAGAIN;
1742 }
1743
1744 netif_start_queue(dev);
1745
1746 return 0;
1747}
1748
1749
1750
1751
1752
1753
1754
1755static int smsc_ircc_net_close(struct net_device *dev)
1756{
1757 struct smsc_ircc_cb *self;
1758
1759 IRDA_DEBUG(1, "%s\n", __func__);
1760
1761 IRDA_ASSERT(dev != NULL, return -1;);
1762 self = netdev_priv(dev);
1763 IRDA_ASSERT(self != NULL, return 0;);
1764
1765
1766 netif_stop_queue(dev);
1767
1768
1769 if (self->irlap)
1770 irlap_close(self->irlap);
1771 self->irlap = NULL;
1772
1773 smsc_ircc_stop_interrupts(self);
1774
1775
1776 if (!self->io.suspended)
1777 free_irq(self->io.irq, dev);
1778
1779 disable_dma(self->io.dma);
1780 free_dma(self->io.dma);
1781
1782 return 0;
1783}
1784
1785static int smsc_ircc_suspend(struct platform_device *dev, pm_message_t state)
1786{
1787 struct smsc_ircc_cb *self = platform_get_drvdata(dev);
1788
1789 if (!self->io.suspended) {
1790 IRDA_DEBUG(1, "%s, Suspending\n", driver_name);
1791
1792 rtnl_lock();
1793 if (netif_running(self->netdev)) {
1794 netif_device_detach(self->netdev);
1795 smsc_ircc_stop_interrupts(self);
1796 free_irq(self->io.irq, self->netdev);
1797 disable_dma(self->io.dma);
1798 }
1799 self->io.suspended = 1;
1800 rtnl_unlock();
1801 }
1802
1803 return 0;
1804}
1805
1806static int smsc_ircc_resume(struct platform_device *dev)
1807{
1808 struct smsc_ircc_cb *self = platform_get_drvdata(dev);
1809
1810 if (self->io.suspended) {
1811 IRDA_DEBUG(1, "%s, Waking up\n", driver_name);
1812
1813 rtnl_lock();
1814 smsc_ircc_init_chip(self);
1815 if (netif_running(self->netdev)) {
1816 if (smsc_ircc_request_irq(self)) {
1817
1818
1819
1820
1821 unregister_netdevice(self->netdev);
1822 } else {
1823 enable_dma(self->io.dma);
1824 smsc_ircc_start_interrupts(self);
1825 netif_device_attach(self->netdev);
1826 }
1827 }
1828 self->io.suspended = 0;
1829 rtnl_unlock();
1830 }
1831 return 0;
1832}
1833
1834
1835
1836
1837
1838
1839
1840static int __exit smsc_ircc_close(struct smsc_ircc_cb *self)
1841{
1842 IRDA_DEBUG(1, "%s\n", __func__);
1843
1844 IRDA_ASSERT(self != NULL, return -1;);
1845
1846 platform_device_unregister(self->pldev);
1847
1848
1849 unregister_netdev(self->netdev);
1850
1851 smsc_ircc_stop_interrupts(self);
1852
1853
1854 IRDA_DEBUG(0, "%s(), releasing 0x%03x\n", __func__,
1855 self->io.fir_base);
1856
1857 release_region(self->io.fir_base, self->io.fir_ext);
1858
1859 IRDA_DEBUG(0, "%s(), releasing 0x%03x\n", __func__,
1860 self->io.sir_base);
1861
1862 release_region(self->io.sir_base, self->io.sir_ext);
1863
1864 if (self->tx_buff.head)
1865 dma_free_coherent(NULL, self->tx_buff.truesize,
1866 self->tx_buff.head, self->tx_buff_dma);
1867
1868 if (self->rx_buff.head)
1869 dma_free_coherent(NULL, self->rx_buff.truesize,
1870 self->rx_buff.head, self->rx_buff_dma);
1871
1872 free_netdev(self->netdev);
1873
1874 return 0;
1875}
1876
1877static void __exit smsc_ircc_cleanup(void)
1878{
1879 int i;
1880
1881 IRDA_DEBUG(1, "%s\n", __func__);
1882
1883 for (i = 0; i < 2; i++) {
1884 if (dev_self[i])
1885 smsc_ircc_close(dev_self[i]);
1886 }
1887
1888 if (pnp_driver_registered)
1889 pnp_unregister_driver(&smsc_ircc_pnp_driver);
1890
1891 platform_driver_unregister(&smsc_ircc_driver);
1892}
1893
1894
1895
1896
1897
1898
1899
1900static void smsc_ircc_sir_start(struct smsc_ircc_cb *self)
1901{
1902 struct net_device *dev;
1903 int fir_base, sir_base;
1904
1905 IRDA_DEBUG(3, "%s\n", __func__);
1906
1907 IRDA_ASSERT(self != NULL, return;);
1908 dev = self->netdev;
1909 IRDA_ASSERT(dev != NULL, return;);
1910
1911 fir_base = self->io.fir_base;
1912 sir_base = self->io.sir_base;
1913
1914
1915 outb(IRCC_MASTER_RESET, fir_base + IRCC_MASTER);
1916
1917 #if SMSC_IRCC2_C_SIR_STOP
1918
1919 #endif
1920
1921 register_bank(fir_base, 1);
1922 outb(((inb(fir_base + IRCC_SCE_CFGA) & IRCC_SCE_CFGA_BLOCK_CTRL_BITS_MASK) | IRCC_CFGA_IRDA_SIR_A), fir_base + IRCC_SCE_CFGA);
1923
1924
1925 outb(UART_LCR_WLEN8, sir_base + UART_LCR);
1926 outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), sir_base + UART_MCR);
1927
1928
1929 outb(UART_IER_RLSI | UART_IER_RDI |UART_IER_THRI, sir_base + UART_IER);
1930
1931 IRDA_DEBUG(3, "%s() - exit\n", __func__);
1932
1933 outb(0x00, fir_base + IRCC_MASTER);
1934}
1935
1936#if SMSC_IRCC2_C_SIR_STOP
1937void smsc_ircc_sir_stop(struct smsc_ircc_cb *self)
1938{
1939 int iobase;
1940
1941 IRDA_DEBUG(3, "%s\n", __func__);
1942 iobase = self->io.sir_base;
1943
1944
1945 outb(0, iobase + UART_MCR);
1946
1947
1948 outb(0, iobase + UART_IER);
1949}
1950#endif
1951
1952
1953
1954
1955
1956
1957
1958
1959static void smsc_ircc_sir_write_wakeup(struct smsc_ircc_cb *self)
1960{
1961 int actual = 0;
1962 int iobase;
1963 int fcr;
1964
1965 IRDA_ASSERT(self != NULL, return;);
1966
1967 IRDA_DEBUG(4, "%s\n", __func__);
1968
1969 iobase = self->io.sir_base;
1970
1971
1972 if (self->tx_buff.len > 0) {
1973
1974 actual = smsc_ircc_sir_write(iobase, self->io.fifo_size,
1975 self->tx_buff.data, self->tx_buff.len);
1976 self->tx_buff.data += actual;
1977 self->tx_buff.len -= actual;
1978 } else {
1979
1980
1981
1982
1983
1984
1985
1986
1987 if (self->new_speed) {
1988 IRDA_DEBUG(5, "%s(), Changing speed to %d.\n",
1989 __func__, self->new_speed);
1990 smsc_ircc_sir_wait_hw_transmitter_finish(self);
1991 smsc_ircc_change_speed(self, self->new_speed);
1992 self->new_speed = 0;
1993 } else {
1994
1995 netif_wake_queue(self->netdev);
1996 }
1997 self->netdev->stats.tx_packets++;
1998
1999 if (self->io.speed <= 115200) {
2000
2001
2002
2003
2004 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR;
2005 fcr |= self->io.speed < 38400 ?
2006 UART_FCR_TRIGGER_1 : UART_FCR_TRIGGER_14;
2007
2008 outb(fcr, iobase + UART_FCR);
2009
2010
2011 outb(UART_IER_RDI, iobase + UART_IER);
2012 }
2013 }
2014}
2015
2016
2017
2018
2019
2020
2021
2022static int smsc_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len)
2023{
2024 int actual = 0;
2025
2026
2027 if (!(inb(iobase + UART_LSR) & UART_LSR_THRE)) {
2028 IRDA_WARNING("%s(), failed, fifo not empty!\n", __func__);
2029 return 0;
2030 }
2031
2032
2033 while (fifo_size-- > 0 && actual < len) {
2034
2035 outb(buf[actual], iobase + UART_TX);
2036 actual++;
2037 }
2038 return actual;
2039}
2040
2041
2042
2043
2044
2045
2046
2047static int smsc_ircc_is_receiving(struct smsc_ircc_cb *self)
2048{
2049 return (self->rx_buff.state != OUTSIDE_FRAME);
2050}
2051
2052
2053
2054
2055
2056
2057
2058
2059static void smsc_ircc_probe_transceiver(struct smsc_ircc_cb *self)
2060{
2061 unsigned int i;
2062
2063 IRDA_ASSERT(self != NULL, return;);
2064
2065 for (i = 0; smsc_transceivers[i].name != NULL; i++)
2066 if (smsc_transceivers[i].probe(self->io.fir_base)) {
2067 IRDA_MESSAGE(" %s transceiver found\n",
2068 smsc_transceivers[i].name);
2069 self->transceiver= i + 1;
2070 return;
2071 }
2072
2073 IRDA_MESSAGE("No transceiver found. Defaulting to %s\n",
2074 smsc_transceivers[SMSC_IRCC2_C_DEFAULT_TRANSCEIVER].name);
2075
2076 self->transceiver = SMSC_IRCC2_C_DEFAULT_TRANSCEIVER;
2077}
2078
2079
2080
2081
2082
2083
2084
2085
2086static void smsc_ircc_set_transceiver_for_speed(struct smsc_ircc_cb *self, u32 speed)
2087{
2088 unsigned int trx;
2089
2090 trx = self->transceiver;
2091 if (trx > 0)
2092 smsc_transceivers[trx - 1].set_for_speed(self->io.fir_base, speed);
2093}
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118static void smsc_ircc_sir_wait_hw_transmitter_finish(struct smsc_ircc_cb *self)
2119{
2120 int iobase = self->io.sir_base;
2121 int count = SMSC_IRCC2_HW_TRANSMITTER_TIMEOUT_US;
2122
2123
2124 while (count-- > 0 && !(inb(iobase + UART_LSR) & UART_LSR_TEMT))
2125 udelay(1);
2126
2127 if (count < 0)
2128 IRDA_DEBUG(0, "%s(): stuck transmitter\n", __func__);
2129}
2130
2131
2132
2133
2134
2135
2136
2137
2138static int __init smsc_ircc_look_for_chips(void)
2139{
2140 struct smsc_chip_address *address;
2141 char *type;
2142 unsigned int cfg_base, found;
2143
2144 found = 0;
2145 address = possible_addresses;
2146
2147 while (address->cfg_base) {
2148 cfg_base = address->cfg_base;
2149
2150
2151
2152 if (address->type & SMSCSIO_TYPE_FDC) {
2153 type = "FDC";
2154 if (address->type & SMSCSIO_TYPE_FLAT)
2155 if (!smsc_superio_flat(fdc_chips_flat, cfg_base, type))
2156 found++;
2157
2158 if (address->type & SMSCSIO_TYPE_PAGED)
2159 if (!smsc_superio_paged(fdc_chips_paged, cfg_base, type))
2160 found++;
2161 }
2162 if (address->type & SMSCSIO_TYPE_LPC) {
2163 type = "LPC";
2164 if (address->type & SMSCSIO_TYPE_FLAT)
2165 if (!smsc_superio_flat(lpc_chips_flat, cfg_base, type))
2166 found++;
2167
2168 if (address->type & SMSCSIO_TYPE_PAGED)
2169 if (!smsc_superio_paged(lpc_chips_paged, cfg_base, type))
2170 found++;
2171 }
2172 address++;
2173 }
2174 return found;
2175}
2176
2177
2178
2179
2180
2181
2182
2183static int __init smsc_superio_flat(const struct smsc_chip *chips, unsigned short cfgbase, char *type)
2184{
2185 unsigned short firbase, sirbase;
2186 u8 mode, dma, irq;
2187 int ret = -ENODEV;
2188
2189 IRDA_DEBUG(1, "%s\n", __func__);
2190
2191 if (smsc_ircc_probe(cfgbase, SMSCSIOFLAT_DEVICEID_REG, chips, type) == NULL)
2192 return ret;
2193
2194 outb(SMSCSIOFLAT_UARTMODE0C_REG, cfgbase);
2195 mode = inb(cfgbase + 1);
2196
2197
2198
2199 if (!(mode & SMSCSIOFLAT_UART2MODE_VAL_IRDA))
2200 IRDA_WARNING("%s(): IrDA not enabled\n", __func__);
2201
2202 outb(SMSCSIOFLAT_UART2BASEADDR_REG, cfgbase);
2203 sirbase = inb(cfgbase + 1) << 2;
2204
2205
2206 outb(SMSCSIOFLAT_FIRBASEADDR_REG, cfgbase);
2207 firbase = inb(cfgbase + 1) << 3;
2208
2209
2210 outb(SMSCSIOFLAT_FIRDMASELECT_REG, cfgbase);
2211 dma = inb(cfgbase + 1) & SMSCSIOFLAT_FIRDMASELECT_MASK;
2212
2213
2214 outb(SMSCSIOFLAT_UARTIRQSELECT_REG, cfgbase);
2215 irq = inb(cfgbase + 1) & SMSCSIOFLAT_UART2IRQSELECT_MASK;
2216
2217 IRDA_MESSAGE("%s(): fir: 0x%02x, sir: 0x%02x, dma: %02d, irq: %d, mode: 0x%02x\n", __func__, firbase, sirbase, dma, irq, mode);
2218
2219 if (firbase && smsc_ircc_open(firbase, sirbase, dma, irq) == 0)
2220 ret = 0;
2221
2222
2223 outb(SMSCSIO_CFGEXITKEY, cfgbase);
2224
2225 return ret;
2226}
2227
2228
2229
2230
2231
2232
2233
2234static int __init smsc_superio_paged(const struct smsc_chip *chips, unsigned short cfg_base, char *type)
2235{
2236 unsigned short fir_io, sir_io;
2237 int ret = -ENODEV;
2238
2239 IRDA_DEBUG(1, "%s\n", __func__);
2240
2241 if (smsc_ircc_probe(cfg_base, 0x20, chips, type) == NULL)
2242 return ret;
2243
2244
2245 outb(0x07, cfg_base);
2246 outb(0x05, cfg_base + 1);
2247
2248
2249 outb(0x60, cfg_base);
2250 sir_io = inb(cfg_base + 1) << 8;
2251 outb(0x61, cfg_base);
2252 sir_io |= inb(cfg_base + 1);
2253
2254
2255 outb(0x62, cfg_base);
2256 fir_io = inb(cfg_base + 1) << 8;
2257 outb(0x63, cfg_base);
2258 fir_io |= inb(cfg_base + 1);
2259 outb(0x2b, cfg_base);
2260
2261 if (fir_io && smsc_ircc_open(fir_io, sir_io, ircc_dma, ircc_irq) == 0)
2262 ret = 0;
2263
2264
2265 outb(SMSCSIO_CFGEXITKEY, cfg_base);
2266
2267 return ret;
2268}
2269
2270
2271static int __init smsc_access(unsigned short cfg_base, unsigned char reg)
2272{
2273 IRDA_DEBUG(1, "%s\n", __func__);
2274
2275 outb(reg, cfg_base);
2276 return inb(cfg_base) != reg ? -1 : 0;
2277}
2278
2279static const struct smsc_chip * __init smsc_ircc_probe(unsigned short cfg_base, u8 reg, const struct smsc_chip *chip, char *type)
2280{
2281 u8 devid, xdevid, rev;
2282
2283 IRDA_DEBUG(1, "%s\n", __func__);
2284
2285
2286
2287 outb(SMSCSIO_CFGEXITKEY, cfg_base);
2288
2289 if (inb(cfg_base) == SMSCSIO_CFGEXITKEY)
2290 return NULL;
2291
2292 outb(reg, cfg_base);
2293
2294 xdevid = inb(cfg_base + 1);
2295
2296
2297
2298 outb(SMSCSIO_CFGACCESSKEY, cfg_base);
2299
2300 #if 0
2301 if (smsc_access(cfg_base,0x55))
2302 return NULL;
2303 #endif
2304
2305
2306
2307 if (smsc_access(cfg_base, reg))
2308 return NULL;
2309
2310 devid = inb(cfg_base + 1);
2311
2312 if (devid == 0 || devid == 0xff)
2313 return NULL;
2314
2315
2316
2317 if (smsc_access(cfg_base, reg + 1))
2318 return NULL;
2319
2320 rev = inb(cfg_base + 1);
2321
2322 if (rev >= 128)
2323 return NULL;
2324
2325 if (devid == xdevid)
2326 return NULL;
2327
2328
2329
2330 while (chip->devid != devid) {
2331
2332 chip++;
2333
2334 if (chip->name == NULL)
2335 return NULL;
2336 }
2337
2338 IRDA_MESSAGE("found SMC SuperIO Chip (devid=0x%02x rev=%02X base=0x%04x): %s%s\n",
2339 devid, rev, cfg_base, type, chip->name);
2340
2341 if (chip->rev > rev) {
2342 IRDA_MESSAGE("Revision higher than expected\n");
2343 return NULL;
2344 }
2345
2346 if (chip->flags & NoIRDA)
2347 IRDA_MESSAGE("chipset does not support IRDA\n");
2348
2349 return chip;
2350}
2351
2352static int __init smsc_superio_fdc(unsigned short cfg_base)
2353{
2354 int ret = -1;
2355
2356 if (!request_region(cfg_base, 2, driver_name)) {
2357 IRDA_WARNING("%s: can't get cfg_base of 0x%03x\n",
2358 __func__, cfg_base);
2359 } else {
2360 if (!smsc_superio_flat(fdc_chips_flat, cfg_base, "FDC") ||
2361 !smsc_superio_paged(fdc_chips_paged, cfg_base, "FDC"))
2362 ret = 0;
2363
2364 release_region(cfg_base, 2);
2365 }
2366
2367 return ret;
2368}
2369
2370static int __init smsc_superio_lpc(unsigned short cfg_base)
2371{
2372 int ret = -1;
2373
2374 if (!request_region(cfg_base, 2, driver_name)) {
2375 IRDA_WARNING("%s: can't get cfg_base of 0x%03x\n",
2376 __func__, cfg_base);
2377 } else {
2378 if (!smsc_superio_flat(lpc_chips_flat, cfg_base, "LPC") ||
2379 !smsc_superio_paged(lpc_chips_paged, cfg_base, "LPC"))
2380 ret = 0;
2381
2382 release_region(cfg_base, 2);
2383 }
2384 return ret;
2385}
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401#ifdef CONFIG_PCI
2402#define PCIID_VENDOR_INTEL 0x8086
2403#define PCIID_VENDOR_ALI 0x10b9
2404static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __initdata = {
2405
2406
2407
2408
2409
2410
2411 {
2412
2413 .vendor = PCIID_VENDOR_INTEL,
2414 .device = 0x24cc,
2415 .subvendor = 0x103c,
2416 .subdevice = 0x08bc,
2417 .sir_io = 0x02f8,
2418 .fir_io = 0x0130,
2419 .fir_irq = 0x05,
2420 .fir_dma = 0x03,
2421 .cfg_base = 0x004e,
2422 .preconfigure = preconfigure_through_82801,
2423 .name = "HP nx5000 family",
2424 },
2425 {
2426 .vendor = PCIID_VENDOR_INTEL,
2427 .device = 0x24cc,
2428 .subvendor = 0x103c,
2429 .subdevice = 0x088c,
2430
2431 .sir_io = 0x02f8,
2432 .fir_io = 0x0130,
2433 .fir_irq = 0x05,
2434 .fir_dma = 0x03,
2435 .cfg_base = 0x004e,
2436 .preconfigure = preconfigure_through_82801,
2437 .name = "HP nc8000 family",
2438 },
2439 {
2440 .vendor = PCIID_VENDOR_INTEL,
2441 .device = 0x24cc,
2442 .subvendor = 0x103c,
2443 .subdevice = 0x0890,
2444 .sir_io = 0x02f8,
2445 .fir_io = 0x0130,
2446 .fir_irq = 0x05,
2447 .fir_dma = 0x03,
2448 .cfg_base = 0x004e,
2449 .preconfigure = preconfigure_through_82801,
2450 .name = "HP nc6000 family",
2451 },
2452 {
2453 .vendor = PCIID_VENDOR_INTEL,
2454 .device = 0x24cc,
2455 .subvendor = 0x0e11,
2456 .subdevice = 0x0860,
2457
2458 .sir_io = 0x02e8,
2459 .fir_io = 0x02f8,
2460 .fir_irq = 0x07,
2461 .fir_dma = 0x03,
2462 .cfg_base = 0x002e,
2463 .preconfigure = preconfigure_through_82801,
2464 .name = "Compaq x1000 family",
2465 },
2466 {
2467
2468 .vendor = PCIID_VENDOR_INTEL,
2469 .device = 0x24c0,
2470 .subvendor = 0x1179,
2471 .subdevice = 0xffff,
2472 .sir_io = 0x03f8,
2473 .fir_io = 0x0130,
2474 .fir_irq = 0x07,
2475 .fir_dma = 0x01,
2476 .cfg_base = 0x002e,
2477 .preconfigure = preconfigure_through_82801,
2478 .name = "Toshiba laptop with Intel 82801DB/DBL LPC bridge",
2479 },
2480 {
2481 .vendor = PCIID_VENDOR_INTEL,
2482 .device = 0x248c,
2483 .subvendor = 0x1179,
2484 .subdevice = 0xffff,
2485 .sir_io = 0x03f8,
2486 .fir_io = 0x0130,
2487 .fir_irq = 0x03,
2488 .fir_dma = 0x03,
2489 .cfg_base = 0x002e,
2490 .preconfigure = preconfigure_through_82801,
2491 .name = "Toshiba laptop with Intel 82801CAM ISA bridge",
2492 },
2493 {
2494
2495 .vendor = PCIID_VENDOR_INTEL,
2496 .device = 0x24cc,
2497 .subvendor = 0x1179,
2498 .subdevice = 0xffff,
2499 .sir_io = 0x03f8,
2500 .fir_io = 0x0130,
2501 .fir_irq = 0x03,
2502 .fir_dma = 0x03,
2503 .cfg_base = 0x002e,
2504 .preconfigure = preconfigure_through_82801,
2505 .name = "Toshiba laptop with Intel 8281DBM LPC bridge",
2506 },
2507 {
2508
2509 .vendor = PCIID_VENDOR_ALI,
2510 .device = 0x1533,
2511 .subvendor = 0x1179,
2512 .subdevice = 0xffff,
2513 .sir_io = 0x02e8,
2514 .fir_io = 0x02f8,
2515 .fir_irq = 0x07,
2516 .fir_dma = 0x03,
2517 .cfg_base = 0x002e,
2518 .preconfigure = preconfigure_through_ali,
2519 .name = "Toshiba laptop with ALi ISA bridge",
2520 },
2521 { }
2522};
2523
2524
2525
2526
2527
2528
2529
2530static int __init preconfigure_smsc_chip(struct
2531 smsc_ircc_subsystem_configuration
2532 *conf)
2533{
2534 unsigned short iobase = conf->cfg_base;
2535 unsigned char tmpbyte;
2536
2537 outb(LPC47N227_CFGACCESSKEY, iobase);
2538 outb(SMSCSIOFLAT_DEVICEID_REG, iobase);
2539 tmpbyte = inb(iobase +1);
2540 IRDA_DEBUG(0,
2541 "Detected Chip id: 0x%02x, setting up registers...\n",
2542 tmpbyte);
2543
2544
2545 outb(0x24, iobase);
2546 outb(0x00, iobase + 1);
2547 outb(SMSCSIOFLAT_UART2BASEADDR_REG, iobase);
2548 outb( (conf->sir_io >> 2), iobase + 1);
2549 tmpbyte = inb(iobase + 1);
2550 if (tmpbyte != (conf->sir_io >> 2) ) {
2551 IRDA_WARNING("ERROR: could not configure SIR ioport.\n");
2552 IRDA_WARNING("Try to supply ircc_cfg argument.\n");
2553 return -ENXIO;
2554 }
2555
2556
2557 outb(SMSCSIOFLAT_UARTIRQSELECT_REG, iobase);
2558 tmpbyte = inb(iobase + 1);
2559 tmpbyte &= SMSCSIOFLAT_UART1IRQSELECT_MASK;
2560 tmpbyte |= (conf->fir_irq & SMSCSIOFLAT_UART2IRQSELECT_MASK);
2561 outb(tmpbyte, iobase + 1);
2562 tmpbyte = inb(iobase + 1) & SMSCSIOFLAT_UART2IRQSELECT_MASK;
2563 if (tmpbyte != conf->fir_irq) {
2564 IRDA_WARNING("ERROR: could not configure FIR IRQ channel.\n");
2565 return -ENXIO;
2566 }
2567
2568
2569 outb(SMSCSIOFLAT_FIRBASEADDR_REG, iobase);
2570 outb((conf->fir_io >> 3), iobase + 1);
2571 tmpbyte = inb(iobase + 1);
2572 if (tmpbyte != (conf->fir_io >> 3) ) {
2573 IRDA_WARNING("ERROR: could not configure FIR I/O port.\n");
2574 return -ENXIO;
2575 }
2576
2577
2578 outb(SMSCSIOFLAT_FIRDMASELECT_REG, iobase);
2579 outb((conf->fir_dma & LPC47N227_FIRDMASELECT_MASK), iobase + 1);
2580 tmpbyte = inb(iobase + 1) & LPC47N227_FIRDMASELECT_MASK;
2581 if (tmpbyte != (conf->fir_dma & LPC47N227_FIRDMASELECT_MASK)) {
2582 IRDA_WARNING("ERROR: could not configure FIR DMA channel.\n");
2583 return -ENXIO;
2584 }
2585
2586 outb(SMSCSIOFLAT_UARTMODE0C_REG, iobase);
2587 tmpbyte = inb(iobase + 1);
2588 tmpbyte &= ~SMSCSIOFLAT_UART2MODE_MASK |
2589 SMSCSIOFLAT_UART2MODE_VAL_IRDA;
2590 outb(tmpbyte, iobase + 1);
2591
2592 outb(LPC47N227_APMBOOTDRIVE_REG, iobase);
2593 tmpbyte = inb(iobase + 1);
2594 outb(tmpbyte | LPC47N227_UART2AUTOPWRDOWN_MASK, iobase + 1);
2595
2596
2597 outb(0x0a, iobase);
2598 tmpbyte = inb(iobase + 1);
2599 outb(tmpbyte | 0x40, iobase + 1);
2600
2601 outb(LPC47N227_UART12POWER_REG, iobase);
2602 tmpbyte = inb(iobase + 1);
2603 outb(tmpbyte | LPC47N227_UART2POWERDOWN_MASK, iobase + 1);
2604
2605 outb(LPC47N227_FDCPOWERVALIDCONF_REG, iobase);
2606 tmpbyte = inb(iobase + 1);
2607 outb(tmpbyte | LPC47N227_VALID_MASK, iobase + 1);
2608
2609 outb(LPC47N227_CFGEXITKEY, iobase);
2610
2611 return 0;
2612}
2613
2614
2615#define VID 0x00
2616#define DID 0x02
2617#define PIRQ_A_D_ROUT 0x60
2618#define SIRQ_CNTL 0x64
2619#define PIRQ_E_H_ROUT 0x68
2620#define PCI_DMA_C 0x90
2621
2622#define COM_DEC 0xe0
2623#define GEN1_DEC 0xe4
2624#define LPC_EN 0xe6
2625#define GEN2_DEC 0xec
2626
2627
2628
2629
2630
2631static int __init preconfigure_through_82801(struct pci_dev *dev,
2632 struct
2633 smsc_ircc_subsystem_configuration
2634 *conf)
2635{
2636 unsigned short tmpword;
2637 unsigned char tmpbyte;
2638
2639 IRDA_MESSAGE("Setting up Intel 82801 controller and SMSC device\n");
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658 pci_read_config_byte(dev, COM_DEC, &tmpbyte);
2659 tmpbyte &= 0xf8;
2660 switch(conf->sir_io) {
2661 case 0x3f8:
2662 tmpbyte |= 0x00;
2663 break;
2664 case 0x2f8:
2665 tmpbyte |= 0x01;
2666 break;
2667 case 0x220:
2668 tmpbyte |= 0x02;
2669 break;
2670 case 0x228:
2671 tmpbyte |= 0x03;
2672 break;
2673 case 0x238:
2674 tmpbyte |= 0x04;
2675 break;
2676 case 0x2e8:
2677 tmpbyte |= 0x05;
2678 break;
2679 case 0x338:
2680 tmpbyte |= 0x06;
2681 break;
2682 case 0x3e8:
2683 tmpbyte |= 0x07;
2684 break;
2685 default:
2686 tmpbyte |= 0x01;
2687 }
2688 IRDA_DEBUG(1, "COM_DEC (write): 0x%02x\n", tmpbyte);
2689 pci_write_config_byte(dev, COM_DEC, tmpbyte);
2690
2691
2692 pci_read_config_word(dev, LPC_EN, &tmpword);
2693
2694
2695
2696 switch(conf->cfg_base) {
2697 case 0x04e:
2698 tmpword |= 0x2000;
2699 break;
2700 case 0x02e:
2701 tmpword |= 0x1000;
2702 break;
2703 case 0x062:
2704 tmpword |= 0x0800;
2705 break;
2706 case 0x060:
2707 tmpword |= 0x0400;
2708 break;
2709 default:
2710 IRDA_WARNING("Uncommon I/O base address: 0x%04x\n",
2711 conf->cfg_base);
2712 break;
2713 }
2714 tmpword &= 0xfffd;
2715 tmpword |= 0x0001;
2716 IRDA_DEBUG(1, "LPC_EN (write): 0x%04x\n", tmpword);
2717 pci_write_config_word(dev, LPC_EN, tmpword);
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735 pci_read_config_word(dev, PCI_DMA_C, &tmpword);
2736 switch(conf->fir_dma) {
2737 case 0x07:
2738 tmpword |= 0xc000;
2739 break;
2740 case 0x06:
2741 tmpword |= 0x3000;
2742 break;
2743 case 0x05:
2744 tmpword |= 0x0c00;
2745 break;
2746 case 0x03:
2747 tmpword |= 0x00c0;
2748 break;
2749 case 0x02:
2750 tmpword |= 0x0030;
2751 break;
2752 case 0x01:
2753 tmpword |= 0x000c;
2754 break;
2755 case 0x00:
2756 tmpword |= 0x0003;
2757 break;
2758 default:
2759 break;
2760 }
2761 IRDA_DEBUG(1, "PCI_DMA_C (write): 0x%04x\n", tmpword);
2762 pci_write_config_word(dev, PCI_DMA_C, tmpword);
2763
2764
2765
2766
2767
2768
2769
2770 tmpword = conf->fir_io & 0xfff8;
2771 tmpword |= 0x0001;
2772 IRDA_DEBUG(1, "GEN2_DEC (write): 0x%04x\n", tmpword);
2773 pci_write_config_word(dev, GEN2_DEC, tmpword);
2774
2775
2776 return preconfigure_smsc_chip(conf);
2777}
2778
2779
2780
2781
2782
2783
2784static void __init preconfigure_ali_port(struct pci_dev *dev,
2785 unsigned short port)
2786{
2787 unsigned char reg;
2788
2789 unsigned char mask;
2790 unsigned char tmpbyte;
2791
2792 switch(port) {
2793 case 0x0130:
2794 case 0x0178:
2795 reg = 0xb0;
2796 mask = 0x80;
2797 break;
2798 case 0x03f8:
2799 reg = 0xb4;
2800 mask = 0x80;
2801 break;
2802 case 0x02f8:
2803 reg = 0xb4;
2804 mask = 0x30;
2805 break;
2806 case 0x02e8:
2807 reg = 0xb4;
2808 mask = 0x08;
2809 break;
2810 default:
2811 IRDA_ERROR("Failed to configure unsupported port on ALi 1533 bridge: 0x%04x\n", port);
2812 return;
2813 }
2814
2815 pci_read_config_byte(dev, reg, &tmpbyte);
2816
2817 tmpbyte |= mask;
2818 pci_write_config_byte(dev, reg, tmpbyte);
2819 IRDA_MESSAGE("Activated ALi 1533 ISA bridge port 0x%04x.\n", port);
2820 return;
2821}
2822
2823static int __init preconfigure_through_ali(struct pci_dev *dev,
2824 struct
2825 smsc_ircc_subsystem_configuration
2826 *conf)
2827{
2828
2829 preconfigure_ali_port(dev, conf->sir_io);
2830 preconfigure_ali_port(dev, conf->fir_io);
2831
2832
2833 return preconfigure_smsc_chip(conf);
2834}
2835
2836static int __init smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg,
2837 unsigned short ircc_fir,
2838 unsigned short ircc_sir,
2839 unsigned char ircc_dma,
2840 unsigned char ircc_irq)
2841{
2842 struct pci_dev *dev = NULL;
2843 unsigned short ss_vendor = 0x0000;
2844 unsigned short ss_device = 0x0000;
2845 int ret = 0;
2846
2847 dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev);
2848
2849 while (dev != NULL) {
2850 struct smsc_ircc_subsystem_configuration *conf;
2851
2852
2853
2854
2855
2856
2857
2858 if (dev->subsystem_vendor != 0x0000U) {
2859 ss_vendor = dev->subsystem_vendor;
2860 ss_device = dev->subsystem_device;
2861 }
2862 conf = subsystem_configurations;
2863 for( ; conf->subvendor; conf++) {
2864 if(conf->vendor == dev->vendor &&
2865 conf->device == dev->device &&
2866 conf->subvendor == ss_vendor &&
2867
2868 (conf->subdevice == ss_device ||
2869 conf->subdevice == 0xffff)) {
2870 struct smsc_ircc_subsystem_configuration
2871 tmpconf;
2872
2873 memcpy(&tmpconf, conf,
2874 sizeof(struct smsc_ircc_subsystem_configuration));
2875
2876
2877
2878
2879
2880 if (ircc_cfg != 0)
2881 tmpconf.cfg_base = ircc_cfg;
2882 if (ircc_fir != 0)
2883 tmpconf.fir_io = ircc_fir;
2884 if (ircc_sir != 0)
2885 tmpconf.sir_io = ircc_sir;
2886 if (ircc_dma != DMA_INVAL)
2887 tmpconf.fir_dma = ircc_dma;
2888 if (ircc_irq != IRQ_INVAL)
2889 tmpconf.fir_irq = ircc_irq;
2890
2891 IRDA_MESSAGE("Detected unconfigured %s SMSC IrDA chip, pre-configuring device.\n", conf->name);
2892 if (conf->preconfigure)
2893 ret = conf->preconfigure(dev, &tmpconf);
2894 else
2895 ret = -ENODEV;
2896 }
2897 }
2898 dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev);
2899 }
2900
2901 return ret;
2902}
2903#endif
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919static void smsc_ircc_set_transceiver_smsc_ircc_atc(int fir_base, u32 speed)
2920{
2921 unsigned long jiffies_now, jiffies_timeout;
2922 u8 val;
2923
2924 jiffies_now = jiffies;
2925 jiffies_timeout = jiffies + SMSC_IRCC2_ATC_PROGRAMMING_TIMEOUT_JIFFIES;
2926
2927
2928 register_bank(fir_base, 4);
2929 outb((inb(fir_base + IRCC_ATC) & IRCC_ATC_MASK) | IRCC_ATC_nPROGREADY|IRCC_ATC_ENABLE,
2930 fir_base + IRCC_ATC);
2931
2932 while ((val = (inb(fir_base + IRCC_ATC) & IRCC_ATC_nPROGREADY)) &&
2933 !time_after(jiffies, jiffies_timeout))
2934 ;
2935
2936 if (val)
2937 IRDA_WARNING("%s(): ATC: 0x%02x\n", __func__,
2938 inb(fir_base + IRCC_ATC));
2939}
2940
2941
2942
2943
2944
2945
2946
2947
2948static int smsc_ircc_probe_transceiver_smsc_ircc_atc(int fir_base)
2949{
2950 return 0;
2951}
2952
2953
2954
2955
2956
2957
2958
2959
2960static void smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(int fir_base, u32 speed)
2961{
2962 u8 fast_mode;
2963
2964 switch (speed) {
2965 default:
2966 case 576000 :
2967 fast_mode = 0;
2968 break;
2969 case 1152000 :
2970 case 4000000 :
2971 fast_mode = IRCC_LCR_A_FAST;
2972 break;
2973 }
2974 register_bank(fir_base, 0);
2975 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast_mode, fir_base + IRCC_LCR_A);
2976}
2977
2978
2979
2980
2981
2982
2983
2984
2985static int smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(int fir_base)
2986{
2987 return 0;
2988}
2989
2990
2991
2992
2993
2994
2995
2996
2997static void smsc_ircc_set_transceiver_toshiba_sat1800(int fir_base, u32 speed)
2998{
2999 u8 fast_mode;
3000
3001 switch (speed) {
3002 default:
3003 case 576000 :
3004 fast_mode = 0;
3005 break;
3006 case 1152000 :
3007 case 4000000 :
3008 fast_mode = IRCC_LCR_A_GP_DATA;
3009 break;
3010
3011 }
3012
3013 register_bank(fir_base, 0);
3014 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast_mode, fir_base + IRCC_LCR_A);
3015}
3016
3017
3018
3019
3020
3021
3022
3023
3024static int smsc_ircc_probe_transceiver_toshiba_sat1800(int fir_base)
3025{
3026 return 0;
3027}
3028
3029
3030module_init(smsc_ircc_init);
3031module_exit(smsc_ircc_cleanup);
3032