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