1 /*********************************************************************
2 * $Id: smsc-ircc2.c,v 1.19.2.5 2002/10/27 11:34:26 dip Exp $
4 * Description: Driver for the SMC Infrared Communications Controller
5 * Status: Experimental.
6 * Author: Daniele Peri (peri@csai.unipa.it)
11 * Copyright (c) 2002 Daniele Peri
12 * All Rights Reserved.
13 * Copyright (c) 2002 Jean Tourrilhes
14 * Copyright (c) 2006 Linus Walleij
17 * Based on smc-ircc.c:
19 * Copyright (c) 2001 Stefani Seibold
20 * Copyright (c) 1999-2001 Dag Brattli
21 * Copyright (c) 1998-1999 Thomas Davis,
25 * Copyright (c) 1997, 1998, 1999-2000 Dag Brattli, All Rights Reserved.
28 * This program is free software; you can redistribute it and/or
29 * modify it under the terms of the GNU General Public License as
30 * published by the Free Software Foundation; either version 2 of
31 * the License, or (at your option) any later version.
33 * This program is distributed in the hope that it will be useful,
34 * but WITHOUT ANY WARRANTY; without even the implied warranty of
35 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
36 * GNU General Public License for more details.
38 * You should have received a copy of the GNU General Public License
39 * along with this program; if not, write to the Free Software
40 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
43 ********************************************************************/
45 #include <linux/module.h>
46 #include <linux/kernel.h>
47 #include <linux/types.h>
48 #include <linux/skbuff.h>
49 #include <linux/netdevice.h>
50 #include <linux/ioport.h>
51 #include <linux/delay.h>
52 #include <linux/slab.h>
53 #include <linux/init.h>
54 #include <linux/rtnetlink.h>
55 #include <linux/serial_reg.h>
56 #include <linux/dma-mapping.h>
57 #include <linux/pnp.h>
58 #include <linux/platform_device.h>
62 #include <asm/byteorder.h>
64 #include <linux/spinlock.h>
67 #include <linux/pci.h>
70 #include <net/irda/wrapper.h>
71 #include <net/irda/irda.h>
72 #include <net/irda/irda_device.h>
74 #include "smsc-ircc2.h"
78 MODULE_AUTHOR("Daniele Peri <peri@csai.unipa.it>");
79 MODULE_DESCRIPTION("SMC IrCC SIR/FIR controller driver");
80 MODULE_LICENSE("GPL");
82 static int smsc_nopnp = 1;
83 module_param_named(nopnp, smsc_nopnp, bool, 0);
84 MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings, defaults to true");
87 static int ircc_dma = DMA_INVAL;
88 module_param(ircc_dma, int, 0);
89 MODULE_PARM_DESC(ircc_dma, "DMA channel");
92 static int ircc_irq = IRQ_INVAL;
93 module_param(ircc_irq, int, 0);
94 MODULE_PARM_DESC(ircc_irq, "IRQ line");
97 module_param(ircc_fir, int, 0);
98 MODULE_PARM_DESC(ircc_fir, "FIR Base Address");
101 module_param(ircc_sir, int, 0);
102 MODULE_PARM_DESC(ircc_sir, "SIR Base Address");
105 module_param(ircc_cfg, int, 0);
106 MODULE_PARM_DESC(ircc_cfg, "Configuration register base address");
108 static int ircc_transceiver;
109 module_param(ircc_transceiver, int, 0);
110 MODULE_PARM_DESC(ircc_transceiver, "Transceiver type");
115 struct smsc_ircc_subsystem_configuration {
116 unsigned short vendor; /* PCI vendor ID */
117 unsigned short device; /* PCI vendor ID */
118 unsigned short subvendor; /* PCI subsystem vendor ID */
119 unsigned short subdevice; /* PCI sybsystem device ID */
120 unsigned short sir_io; /* I/O port for SIR */
121 unsigned short fir_io; /* I/O port for FIR */
122 unsigned char fir_irq; /* FIR IRQ */
123 unsigned char fir_dma; /* FIR DMA */
124 unsigned short cfg_base; /* I/O port for chip configuration */
125 int (*preconfigure)(struct pci_dev *dev, struct smsc_ircc_subsystem_configuration *conf); /* Preconfig function */
126 const char *name; /* name shown as info */
130 struct smsc_transceiver {
132 void (*set_for_speed)(int fir_base, u32 speed);
133 int (*probe)(int fir_base);
146 struct smsc_chip_address {
147 unsigned int cfg_base;
151 /* Private data for each instance */
152 struct smsc_ircc_cb {
153 struct net_device *netdev; /* Yes! we are some kind of netdevice */
154 struct net_device_stats stats;
155 struct irlap_cb *irlap; /* The link layer we are binded to */
157 chipio_t io; /* IrDA controller information */
158 iobuff_t tx_buff; /* Transmit buffer */
159 iobuff_t rx_buff; /* Receive buffer */
160 dma_addr_t tx_buff_dma;
161 dma_addr_t rx_buff_dma;
163 struct qos_info qos; /* QoS capabilities for this device */
165 spinlock_t lock; /* For serializing operations */
168 __u32 flags; /* Interface flags */
170 int tx_buff_offsets[10]; /* Offsets between frames in tx_buff */
171 int tx_len; /* Number of frames in tx_buff */
174 struct platform_device *pldev;
179 #define SMSC_IRCC2_DRIVER_NAME "smsc-ircc2"
181 #define SMSC_IRCC2_C_IRDA_FALLBACK_SPEED 9600
182 #define SMSC_IRCC2_C_DEFAULT_TRANSCEIVER 1
183 #define SMSC_IRCC2_C_NET_TIMEOUT 0
184 #define SMSC_IRCC2_C_SIR_STOP 0
186 static const char *driver_name = SMSC_IRCC2_DRIVER_NAME;
190 static int smsc_ircc_open(unsigned int firbase, unsigned int sirbase, u8 dma, u8 irq);
191 static int smsc_ircc_present(unsigned int fir_base, unsigned int sir_base);
192 static void smsc_ircc_setup_io(struct smsc_ircc_cb *self, unsigned int fir_base, unsigned int sir_base, u8 dma, u8 irq);
193 static void smsc_ircc_setup_qos(struct smsc_ircc_cb *self);
194 static void smsc_ircc_init_chip(struct smsc_ircc_cb *self);
195 static int __exit smsc_ircc_close(struct smsc_ircc_cb *self);
196 static int smsc_ircc_dma_receive(struct smsc_ircc_cb *self);
197 static void smsc_ircc_dma_receive_complete(struct smsc_ircc_cb *self);
198 static void smsc_ircc_sir_receive(struct smsc_ircc_cb *self);
199 static int smsc_ircc_hard_xmit_sir(struct sk_buff *skb, struct net_device *dev);
200 static int smsc_ircc_hard_xmit_fir(struct sk_buff *skb, struct net_device *dev);
201 static void smsc_ircc_dma_xmit(struct smsc_ircc_cb *self, int bofs);
202 static void smsc_ircc_dma_xmit_complete(struct smsc_ircc_cb *self);
203 static void smsc_ircc_change_speed(struct smsc_ircc_cb *self, u32 speed);
204 static void smsc_ircc_set_sir_speed(struct smsc_ircc_cb *self, u32 speed);
205 static irqreturn_t smsc_ircc_interrupt(int irq, void *dev_id);
206 static irqreturn_t smsc_ircc_interrupt_sir(struct net_device *dev);
207 static void smsc_ircc_sir_start(struct smsc_ircc_cb *self);
208 #if SMSC_IRCC2_C_SIR_STOP
209 static void smsc_ircc_sir_stop(struct smsc_ircc_cb *self);
211 static void smsc_ircc_sir_write_wakeup(struct smsc_ircc_cb *self);
212 static int smsc_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len);
213 static int smsc_ircc_net_open(struct net_device *dev);
214 static int smsc_ircc_net_close(struct net_device *dev);
215 static int smsc_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
216 #if SMSC_IRCC2_C_NET_TIMEOUT
217 static void smsc_ircc_timeout(struct net_device *dev);
219 static struct net_device_stats *smsc_ircc_net_get_stats(struct net_device *dev);
220 static int smsc_ircc_is_receiving(struct smsc_ircc_cb *self);
221 static void smsc_ircc_probe_transceiver(struct smsc_ircc_cb *self);
222 static void smsc_ircc_set_transceiver_for_speed(struct smsc_ircc_cb *self, u32 speed);
223 static void smsc_ircc_sir_wait_hw_transmitter_finish(struct smsc_ircc_cb *self);
226 static int __init smsc_ircc_look_for_chips(void);
227 static const struct smsc_chip * __init smsc_ircc_probe(unsigned short cfg_base, u8 reg, const struct smsc_chip *chip, char *type);
228 static int __init smsc_superio_flat(const struct smsc_chip *chips, unsigned short cfg_base, char *type);
229 static int __init smsc_superio_paged(const struct smsc_chip *chips, unsigned short cfg_base, char *type);
230 static int __init smsc_superio_fdc(unsigned short cfg_base);
231 static int __init smsc_superio_lpc(unsigned short cfg_base);
233 static int __init preconfigure_smsc_chip(struct smsc_ircc_subsystem_configuration *conf);
234 static int __init preconfigure_through_82801(struct pci_dev *dev, struct smsc_ircc_subsystem_configuration *conf);
235 static void __init preconfigure_ali_port(struct pci_dev *dev,
236 unsigned short port);
237 static int __init preconfigure_through_ali(struct pci_dev *dev, struct smsc_ircc_subsystem_configuration *conf);
238 static int __init smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg,
239 unsigned short ircc_fir,
240 unsigned short ircc_sir,
241 unsigned char ircc_dma,
242 unsigned char ircc_irq);
245 /* Transceivers specific functions */
247 static void smsc_ircc_set_transceiver_toshiba_sat1800(int fir_base, u32 speed);
248 static int smsc_ircc_probe_transceiver_toshiba_sat1800(int fir_base);
249 static void smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(int fir_base, u32 speed);
250 static int smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(int fir_base);
251 static void smsc_ircc_set_transceiver_smsc_ircc_atc(int fir_base, u32 speed);
252 static int smsc_ircc_probe_transceiver_smsc_ircc_atc(int fir_base);
254 /* Power Management */
256 static int smsc_ircc_suspend(struct platform_device *dev, pm_message_t state);
257 static int smsc_ircc_resume(struct platform_device *dev);
259 static struct platform_driver smsc_ircc_driver = {
260 .suspend = smsc_ircc_suspend,
261 .resume = smsc_ircc_resume,
263 .name = SMSC_IRCC2_DRIVER_NAME,
267 /* Transceivers for SMSC-ircc */
269 static struct smsc_transceiver smsc_transceivers[] =
271 { "Toshiba Satellite 1800 (GP data pin select)", smsc_ircc_set_transceiver_toshiba_sat1800, smsc_ircc_probe_transceiver_toshiba_sat1800 },
272 { "Fast pin select", smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select, smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select },
273 { "ATC IRMode", smsc_ircc_set_transceiver_smsc_ircc_atc, smsc_ircc_probe_transceiver_smsc_ircc_atc },
276 #define SMSC_IRCC2_C_NUMBER_OF_TRANSCEIVERS (ARRAY_SIZE(smsc_transceivers) - 1)
278 /* SMC SuperIO chipsets definitions */
280 #define KEY55_1 0 /* SuperIO Configuration mode with Key <0x55> */
281 #define KEY55_2 1 /* SuperIO Configuration mode with Key <0x55,0x55> */
282 #define NoIRDA 2 /* SuperIO Chip has no IRDA Port */
283 #define SIR 0 /* SuperIO Chip has only slow IRDA */
284 #define FIR 4 /* SuperIO Chip has fast IRDA */
285 #define SERx4 8 /* SuperIO Chip supports 115,2 KBaud * 4=460,8 KBaud */
287 static struct smsc_chip __initdata fdc_chips_flat[] =
289 /* Base address 0x3f0 or 0x370 */
290 { "37C44", KEY55_1|NoIRDA, 0x00, 0x00 }, /* This chip cannot be detected */
291 { "37C665GT", KEY55_2|NoIRDA, 0x65, 0x01 },
292 { "37C665GT", KEY55_2|NoIRDA, 0x66, 0x01 },
293 { "37C669", KEY55_2|SIR|SERx4, 0x03, 0x02 },
294 { "37C669", KEY55_2|SIR|SERx4, 0x04, 0x02 }, /* ID? */
295 { "37C78", KEY55_2|NoIRDA, 0x78, 0x00 },
296 { "37N769", KEY55_1|FIR|SERx4, 0x28, 0x00 },
297 { "37N869", KEY55_1|FIR|SERx4, 0x29, 0x00 },
301 static struct smsc_chip __initdata fdc_chips_paged[] =
303 /* Base address 0x3f0 or 0x370 */
304 { "37B72X", KEY55_1|SIR|SERx4, 0x4c, 0x00 },
305 { "37B77X", KEY55_1|SIR|SERx4, 0x43, 0x00 },
306 { "37B78X", KEY55_1|SIR|SERx4, 0x44, 0x00 },
307 { "37B80X", KEY55_1|SIR|SERx4, 0x42, 0x00 },
308 { "37C67X", KEY55_1|FIR|SERx4, 0x40, 0x00 },
309 { "37C93X", KEY55_2|SIR|SERx4, 0x02, 0x01 },
310 { "37C93XAPM", KEY55_1|SIR|SERx4, 0x30, 0x01 },
311 { "37C93XFR", KEY55_2|FIR|SERx4, 0x03, 0x01 },
312 { "37M707", KEY55_1|SIR|SERx4, 0x42, 0x00 },
313 { "37M81X", KEY55_1|SIR|SERx4, 0x4d, 0x00 },
314 { "37N958FR", KEY55_1|FIR|SERx4, 0x09, 0x04 },
315 { "37N971", KEY55_1|FIR|SERx4, 0x0a, 0x00 },
316 { "37N972", KEY55_1|FIR|SERx4, 0x0b, 0x00 },
320 static struct smsc_chip __initdata lpc_chips_flat[] =
322 /* Base address 0x2E or 0x4E */
323 { "47N227", KEY55_1|FIR|SERx4, 0x5a, 0x00 },
324 { "47N227", KEY55_1|FIR|SERx4, 0x7a, 0x00 },
325 { "47N267", KEY55_1|FIR|SERx4, 0x5e, 0x00 },
329 static struct smsc_chip __initdata lpc_chips_paged[] =
331 /* Base address 0x2E or 0x4E */
332 { "47B27X", KEY55_1|SIR|SERx4, 0x51, 0x00 },
333 { "47B37X", KEY55_1|SIR|SERx4, 0x52, 0x00 },
334 { "47M10X", KEY55_1|SIR|SERx4, 0x59, 0x00 },
335 { "47M120", KEY55_1|NoIRDA|SERx4, 0x5c, 0x00 },
336 { "47M13X", KEY55_1|SIR|SERx4, 0x59, 0x00 },
337 { "47M14X", KEY55_1|SIR|SERx4, 0x5f, 0x00 },
338 { "47N252", KEY55_1|FIR|SERx4, 0x0e, 0x00 },
339 { "47S42X", KEY55_1|SIR|SERx4, 0x57, 0x00 },
343 #define SMSCSIO_TYPE_FDC 1
344 #define SMSCSIO_TYPE_LPC 2
345 #define SMSCSIO_TYPE_FLAT 4
346 #define SMSCSIO_TYPE_PAGED 8
348 static struct smsc_chip_address __initdata possible_addresses[] =
350 { 0x3f0, SMSCSIO_TYPE_FDC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
351 { 0x370, SMSCSIO_TYPE_FDC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
352 { 0xe0, SMSCSIO_TYPE_FDC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
353 { 0x2e, SMSCSIO_TYPE_LPC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
354 { 0x4e, SMSCSIO_TYPE_LPC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
360 static struct smsc_ircc_cb *dev_self[] = { NULL, NULL };
361 static unsigned short dev_count;
363 static inline void register_bank(int iobase, int bank)
365 outb(((inb(iobase + IRCC_MASTER) & 0xf0) | (bank & 0x07)),
366 iobase + IRCC_MASTER);
369 /* PNP hotplug support */
370 static const struct pnp_device_id smsc_ircc_pnp_table[] = {
371 { .id = "SMCf010", .driver_data = 0 },
372 /* and presumably others */
375 MODULE_DEVICE_TABLE(pnp, smsc_ircc_pnp_table);
377 static int pnp_driver_registered;
379 static int __init smsc_ircc_pnp_probe(struct pnp_dev *dev,
380 const struct pnp_device_id *dev_id)
382 unsigned int firbase, sirbase;
385 if (!(pnp_port_valid(dev, 0) && pnp_port_valid(dev, 1) &&
386 pnp_dma_valid(dev, 0) && pnp_irq_valid(dev, 0)))
389 sirbase = pnp_port_start(dev, 0);
390 firbase = pnp_port_start(dev, 1);
391 dma = pnp_dma(dev, 0);
392 irq = pnp_irq(dev, 0);
394 if (smsc_ircc_open(firbase, sirbase, dma, irq))
400 static struct pnp_driver smsc_ircc_pnp_driver = {
401 .name = "smsc-ircc2",
402 .id_table = smsc_ircc_pnp_table,
403 .probe = smsc_ircc_pnp_probe,
407 /*******************************************************************************
413 *******************************************************************************/
415 static int __init smsc_ircc_legacy_probe(void)
420 if (smsc_ircc_preconfigure_subsystems(ircc_cfg, ircc_fir, ircc_sir, ircc_dma, ircc_irq) < 0) {
421 /* Ignore errors from preconfiguration */
422 IRDA_ERROR("%s, Preconfiguration failed !\n", driver_name);
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);
430 if (smsc_ircc_open(ircc_fir, ircc_sir, ircc_dma, ircc_irq))
435 /* try user provided configuration register base address */
437 IRDA_MESSAGE(" Overriding configuration address "
438 "0x%04x\n", ircc_cfg);
439 if (!smsc_superio_fdc(ircc_cfg))
441 if (!smsc_superio_lpc(ircc_cfg))
445 if (smsc_ircc_look_for_chips() > 0)
452 * Function smsc_ircc_init ()
454 * Initialize chip. Just try to find out how many chips we are dealing with
457 static int __init smsc_ircc_init(void)
461 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
463 ret = platform_driver_register(&smsc_ircc_driver);
465 IRDA_ERROR("%s, Can't register driver!\n", driver_name);
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();
476 if (pnp_register_driver(&smsc_ircc_pnp_driver) == 0)
477 pnp_driver_registered = 1;
481 if (pnp_driver_registered)
482 pnp_unregister_driver(&smsc_ircc_pnp_driver);
483 platform_driver_unregister(&smsc_ircc_driver);
490 * Function smsc_ircc_open (firbase, sirbase, dma, irq)
492 * Try to open driver instance
495 static int __init smsc_ircc_open(unsigned int fir_base, unsigned int sir_base, u8 dma, u8 irq)
497 struct smsc_ircc_cb *self;
498 struct net_device *dev;
501 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
503 err = smsc_ircc_present(fir_base, sir_base);
508 if (dev_count >= ARRAY_SIZE(dev_self)) {
509 IRDA_WARNING("%s(), too many devices!\n", __FUNCTION__);
514 * Allocate new instance of the driver
516 dev = alloc_irdadev(sizeof(struct smsc_ircc_cb));
518 IRDA_WARNING("%s() can't allocate net device\n", __FUNCTION__);
522 dev->hard_start_xmit = smsc_ircc_hard_xmit_sir;
523 #if SMSC_IRCC2_C_NET_TIMEOUT
524 dev->tx_timeout = smsc_ircc_timeout;
525 dev->watchdog_timeo = HZ * 2; /* Allow enough time for speed change */
527 dev->open = smsc_ircc_net_open;
528 dev->stop = smsc_ircc_net_close;
529 dev->do_ioctl = smsc_ircc_net_ioctl;
530 dev->get_stats = smsc_ircc_net_get_stats;
532 self = netdev_priv(dev);
535 /* Make ifconfig display some details */
536 dev->base_addr = self->io.fir_base = fir_base;
537 dev->irq = self->io.irq = irq;
539 /* Need to store self somewhere */
540 dev_self[dev_count] = self;
541 spin_lock_init(&self->lock);
543 self->rx_buff.truesize = SMSC_IRCC2_RX_BUFF_TRUESIZE;
544 self->tx_buff.truesize = SMSC_IRCC2_TX_BUFF_TRUESIZE;
547 dma_alloc_coherent(NULL, self->rx_buff.truesize,
548 &self->rx_buff_dma, GFP_KERNEL);
549 if (self->rx_buff.head == NULL) {
550 IRDA_ERROR("%s, Can't allocate memory for receive buffer!\n",
556 dma_alloc_coherent(NULL, self->tx_buff.truesize,
557 &self->tx_buff_dma, GFP_KERNEL);
558 if (self->tx_buff.head == NULL) {
559 IRDA_ERROR("%s, Can't allocate memory for transmit buffer!\n",
564 memset(self->rx_buff.head, 0, self->rx_buff.truesize);
565 memset(self->tx_buff.head, 0, self->tx_buff.truesize);
567 self->rx_buff.in_frame = FALSE;
568 self->rx_buff.state = OUTSIDE_FRAME;
569 self->tx_buff.data = self->tx_buff.head;
570 self->rx_buff.data = self->rx_buff.head;
572 smsc_ircc_setup_io(self, fir_base, sir_base, dma, irq);
573 smsc_ircc_setup_qos(self);
574 smsc_ircc_init_chip(self);
576 if (ircc_transceiver > 0 &&
577 ircc_transceiver < SMSC_IRCC2_C_NUMBER_OF_TRANSCEIVERS)
578 self->transceiver = ircc_transceiver;
580 smsc_ircc_probe_transceiver(self);
582 err = register_netdev(self->netdev);
584 IRDA_ERROR("%s, Network device registration failed!\n",
589 self->pldev = platform_device_register_simple(SMSC_IRCC2_DRIVER_NAME,
591 if (IS_ERR(self->pldev)) {
592 err = PTR_ERR(self->pldev);
595 platform_set_drvdata(self->pldev, self);
597 IRDA_MESSAGE("IrDA: Registered device %s\n", dev->name);
603 unregister_netdev(self->netdev);
606 dma_free_coherent(NULL, self->tx_buff.truesize,
607 self->tx_buff.head, self->tx_buff_dma);
609 dma_free_coherent(NULL, self->rx_buff.truesize,
610 self->rx_buff.head, self->rx_buff_dma);
612 free_netdev(self->netdev);
613 dev_self[dev_count] = NULL;
615 release_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT);
616 release_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT);
622 * Function smsc_ircc_present(fir_base, sir_base)
624 * Check the smsc-ircc chip presence
627 static int smsc_ircc_present(unsigned int fir_base, unsigned int sir_base)
629 unsigned char low, high, chip, config, dma, irq, version;
631 if (!request_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT,
633 IRDA_WARNING("%s: can't get fir_base of 0x%03x\n",
634 __FUNCTION__, fir_base);
638 if (!request_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT,
640 IRDA_WARNING("%s: can't get sir_base of 0x%03x\n",
641 __FUNCTION__, sir_base);
645 register_bank(fir_base, 3);
647 high = inb(fir_base + IRCC_ID_HIGH);
648 low = inb(fir_base + IRCC_ID_LOW);
649 chip = inb(fir_base + IRCC_CHIP_ID);
650 version = inb(fir_base + IRCC_VERSION);
651 config = inb(fir_base + IRCC_INTERFACE);
652 dma = config & IRCC_INTERFACE_DMA_MASK;
653 irq = (config & IRCC_INTERFACE_IRQ_MASK) >> 4;
655 if (high != 0x10 || low != 0xb8 || (chip != 0xf1 && chip != 0xf2)) {
656 IRDA_WARNING("%s(), addr 0x%04x - no device found!\n",
657 __FUNCTION__, fir_base);
660 IRDA_MESSAGE("SMsC IrDA Controller found\n IrCC version %d.%d, "
661 "firport 0x%03x, sirport 0x%03x dma=%d, irq=%d\n",
662 chip & 0x0f, version, fir_base, sir_base, dma, irq);
667 release_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT);
669 release_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT);
675 * Function smsc_ircc_setup_io(self, fir_base, sir_base, dma, irq)
680 static void smsc_ircc_setup_io(struct smsc_ircc_cb *self,
681 unsigned int fir_base, unsigned int sir_base,
684 unsigned char config, chip_dma, chip_irq;
686 register_bank(fir_base, 3);
687 config = inb(fir_base + IRCC_INTERFACE);
688 chip_dma = config & IRCC_INTERFACE_DMA_MASK;
689 chip_irq = (config & IRCC_INTERFACE_IRQ_MASK) >> 4;
691 self->io.fir_base = fir_base;
692 self->io.sir_base = sir_base;
693 self->io.fir_ext = SMSC_IRCC2_FIR_CHIP_IO_EXTENT;
694 self->io.sir_ext = SMSC_IRCC2_SIR_CHIP_IO_EXTENT;
695 self->io.fifo_size = SMSC_IRCC2_FIFO_SIZE;
696 self->io.speed = SMSC_IRCC2_C_IRDA_FALLBACK_SPEED;
698 if (irq != IRQ_INVAL) {
700 IRDA_MESSAGE("%s, Overriding IRQ - chip says %d, using %d\n",
701 driver_name, chip_irq, irq);
704 self->io.irq = chip_irq;
706 if (dma != DMA_INVAL) {
708 IRDA_MESSAGE("%s, Overriding DMA - chip says %d, using %d\n",
709 driver_name, chip_dma, dma);
712 self->io.dma = chip_dma;
717 * Function smsc_ircc_setup_qos(self)
722 static void smsc_ircc_setup_qos(struct smsc_ircc_cb *self)
724 /* Initialize QoS for this device */
725 irda_init_max_qos_capabilies(&self->qos);
727 self->qos.baud_rate.bits = IR_9600|IR_19200|IR_38400|IR_57600|
728 IR_115200|IR_576000|IR_1152000|(IR_4000000 << 8);
730 self->qos.min_turn_time.bits = SMSC_IRCC2_MIN_TURN_TIME;
731 self->qos.window_size.bits = SMSC_IRCC2_WINDOW_SIZE;
732 irda_qos_bits_to_value(&self->qos);
736 * Function smsc_ircc_init_chip(self)
741 static void smsc_ircc_init_chip(struct smsc_ircc_cb *self)
743 int iobase = self->io.fir_base;
745 register_bank(iobase, 0);
746 outb(IRCC_MASTER_RESET, iobase + IRCC_MASTER);
747 outb(0x00, iobase + IRCC_MASTER);
749 register_bank(iobase, 1);
750 outb(((inb(iobase + IRCC_SCE_CFGA) & 0x87) | IRCC_CFGA_IRDA_SIR_A),
751 iobase + IRCC_SCE_CFGA);
753 #ifdef smsc_669 /* Uses pin 88/89 for Rx/Tx */
754 outb(((inb(iobase + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_COM),
755 iobase + IRCC_SCE_CFGB);
757 outb(((inb(iobase + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_IR),
758 iobase + IRCC_SCE_CFGB);
760 (void) inb(iobase + IRCC_FIFO_THRESHOLD);
761 outb(SMSC_IRCC2_FIFO_THRESHOLD, iobase + IRCC_FIFO_THRESHOLD);
763 register_bank(iobase, 4);
764 outb((inb(iobase + IRCC_CONTROL) & 0x30), iobase + IRCC_CONTROL);
766 register_bank(iobase, 0);
767 outb(0, iobase + IRCC_LCR_A);
769 smsc_ircc_set_sir_speed(self, SMSC_IRCC2_C_IRDA_FALLBACK_SPEED);
771 /* Power on device */
772 outb(0x00, iobase + IRCC_MASTER);
776 * Function smsc_ircc_net_ioctl (dev, rq, cmd)
778 * Process IOCTL commands for this device
781 static int smsc_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
783 struct if_irda_req *irq = (struct if_irda_req *) rq;
784 struct smsc_ircc_cb *self;
788 IRDA_ASSERT(dev != NULL, return -1;);
790 self = netdev_priv(dev);
792 IRDA_ASSERT(self != NULL, return -1;);
794 IRDA_DEBUG(2, "%s(), %s, (cmd=0x%X)\n", __FUNCTION__, dev->name, cmd);
797 case SIOCSBANDWIDTH: /* Set bandwidth */
798 if (!capable(CAP_NET_ADMIN))
801 /* Make sure we are the only one touching
802 * self->io.speed and the hardware - Jean II */
803 spin_lock_irqsave(&self->lock, flags);
804 smsc_ircc_change_speed(self, irq->ifr_baudrate);
805 spin_unlock_irqrestore(&self->lock, flags);
808 case SIOCSMEDIABUSY: /* Set media busy */
809 if (!capable(CAP_NET_ADMIN)) {
814 irda_device_set_media_busy(self->netdev, TRUE);
816 case SIOCGRECEIVING: /* Check if we are receiving right now */
817 irq->ifr_receiving = smsc_ircc_is_receiving(self);
821 if (!capable(CAP_NET_ADMIN)) {
825 smsc_ircc_sir_set_dtr_rts(dev, irq->ifr_dtr, irq->ifr_rts);
835 static struct net_device_stats *smsc_ircc_net_get_stats(struct net_device *dev)
837 struct smsc_ircc_cb *self = netdev_priv(dev);
842 #if SMSC_IRCC2_C_NET_TIMEOUT
844 * Function smsc_ircc_timeout (struct net_device *dev)
846 * The networking timeout management.
850 static void smsc_ircc_timeout(struct net_device *dev)
852 struct smsc_ircc_cb *self = netdev_priv(dev);
855 IRDA_WARNING("%s: transmit timed out, changing speed to: %d\n",
856 dev->name, self->io.speed);
857 spin_lock_irqsave(&self->lock, flags);
858 smsc_ircc_sir_start(self);
859 smsc_ircc_change_speed(self, self->io.speed);
860 dev->trans_start = jiffies;
861 netif_wake_queue(dev);
862 spin_unlock_irqrestore(&self->lock, flags);
867 * Function smsc_ircc_hard_xmit_sir (struct sk_buff *skb, struct net_device *dev)
869 * Transmits the current frame until FIFO is full, then
870 * waits until the next transmit interrupt, and continues until the
871 * frame is transmitted.
873 int smsc_ircc_hard_xmit_sir(struct sk_buff *skb, struct net_device *dev)
875 struct smsc_ircc_cb *self;
879 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
881 IRDA_ASSERT(dev != NULL, return 0;);
883 self = netdev_priv(dev);
884 IRDA_ASSERT(self != NULL, return 0;);
886 netif_stop_queue(dev);
888 /* Make sure test of self->io.speed & speed change are atomic */
889 spin_lock_irqsave(&self->lock, flags);
891 /* Check if we need to change the speed */
892 speed = irda_get_next_speed(skb);
893 if (speed != self->io.speed && speed != -1) {
894 /* Check for empty frame */
897 * We send frames one by one in SIR mode (no
898 * pipelining), so at this point, if we were sending
899 * a previous frame, we just received the interrupt
900 * telling us it is finished (UART_IIR_THRI).
901 * Therefore, waiting for the transmitter to really
902 * finish draining the fifo won't take too long.
903 * And the interrupt handler is not expected to run.
905 smsc_ircc_sir_wait_hw_transmitter_finish(self);
906 smsc_ircc_change_speed(self, speed);
907 spin_unlock_irqrestore(&self->lock, flags);
911 self->new_speed = speed;
915 self->tx_buff.data = self->tx_buff.head;
917 /* Copy skb to tx_buff while wrapping, stuffing and making CRC */
918 self->tx_buff.len = async_wrap_skb(skb, self->tx_buff.data,
919 self->tx_buff.truesize);
921 self->stats.tx_bytes += self->tx_buff.len;
923 /* Turn on transmit finished interrupt. Will fire immediately! */
924 outb(UART_IER_THRI, self->io.sir_base + UART_IER);
926 spin_unlock_irqrestore(&self->lock, flags);
934 * Function smsc_ircc_set_fir_speed (self, baud)
936 * Change the speed of the device
939 static void smsc_ircc_set_fir_speed(struct smsc_ircc_cb *self, u32 speed)
941 int fir_base, ir_mode, ctrl, fast;
943 IRDA_ASSERT(self != NULL, return;);
944 fir_base = self->io.fir_base;
946 self->io.speed = speed;
951 ir_mode = IRCC_CFGA_IRDA_HDLC;
954 IRDA_DEBUG(0, "%s(), handling baud of 576000\n", __FUNCTION__);
957 ir_mode = IRCC_CFGA_IRDA_HDLC;
958 ctrl = IRCC_1152 | IRCC_CRC;
959 fast = IRCC_LCR_A_FAST | IRCC_LCR_A_GP_DATA;
960 IRDA_DEBUG(0, "%s(), handling baud of 1152000\n",
964 ir_mode = IRCC_CFGA_IRDA_4PPM;
966 fast = IRCC_LCR_A_FAST;
967 IRDA_DEBUG(0, "%s(), handling baud of 4000000\n",
973 /* This causes an interrupt */
974 register_bank(fir_base, 0);
975 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast, fir_base + IRCC_LCR_A);
978 register_bank(fir_base, 1);
979 outb(((inb(fir_base + IRCC_SCE_CFGA) & IRCC_SCE_CFGA_BLOCK_CTRL_BITS_MASK) | ir_mode), fir_base + IRCC_SCE_CFGA);
981 register_bank(fir_base, 4);
982 outb((inb(fir_base + IRCC_CONTROL) & 0x30) | ctrl, fir_base + IRCC_CONTROL);
986 * Function smsc_ircc_fir_start(self)
988 * Change the speed of the device
991 static void smsc_ircc_fir_start(struct smsc_ircc_cb *self)
993 struct net_device *dev;
996 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
998 IRDA_ASSERT(self != NULL, return;);
1000 IRDA_ASSERT(dev != NULL, return;);
1002 fir_base = self->io.fir_base;
1004 /* Reset everything */
1006 /* Install FIR transmit handler */
1007 dev->hard_start_xmit = smsc_ircc_hard_xmit_fir;
1010 outb(inb(fir_base + IRCC_LCR_A) | IRCC_LCR_A_FIFO_RESET, fir_base + IRCC_LCR_A);
1012 /* Enable interrupt */
1013 /*outb(IRCC_IER_ACTIVE_FRAME|IRCC_IER_EOM, fir_base + IRCC_IER);*/
1015 register_bank(fir_base, 1);
1017 /* Select the TX/RX interface */
1018 #ifdef SMSC_669 /* Uses pin 88/89 for Rx/Tx */
1019 outb(((inb(fir_base + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_COM),
1020 fir_base + IRCC_SCE_CFGB);
1022 outb(((inb(fir_base + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_IR),
1023 fir_base + IRCC_SCE_CFGB);
1025 (void) inb(fir_base + IRCC_FIFO_THRESHOLD);
1027 /* Enable SCE interrupts */
1028 outb(0, fir_base + IRCC_MASTER);
1029 register_bank(fir_base, 0);
1030 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, fir_base + IRCC_IER);
1031 outb(IRCC_MASTER_INT_EN, fir_base + IRCC_MASTER);
1035 * Function smsc_ircc_fir_stop(self, baud)
1037 * Change the speed of the device
1040 static void smsc_ircc_fir_stop(struct smsc_ircc_cb *self)
1044 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1046 IRDA_ASSERT(self != NULL, return;);
1048 fir_base = self->io.fir_base;
1049 register_bank(fir_base, 0);
1050 /*outb(IRCC_MASTER_RESET, fir_base + IRCC_MASTER);*/
1051 outb(inb(fir_base + IRCC_LCR_B) & IRCC_LCR_B_SIP_ENABLE, fir_base + IRCC_LCR_B);
1056 * Function smsc_ircc_change_speed(self, baud)
1058 * Change the speed of the device
1060 * This function *must* be called with spinlock held, because it may
1061 * be called from the irq handler. - Jean II
1063 static void smsc_ircc_change_speed(struct smsc_ircc_cb *self, u32 speed)
1065 struct net_device *dev;
1066 int last_speed_was_sir;
1068 IRDA_DEBUG(0, "%s() changing speed to: %d\n", __FUNCTION__, speed);
1070 IRDA_ASSERT(self != NULL, return;);
1073 last_speed_was_sir = self->io.speed <= SMSC_IRCC2_MAX_SIR_SPEED;
1078 self->io.speed = speed;
1079 last_speed_was_sir = 0;
1080 smsc_ircc_fir_start(self);
1083 if (self->io.speed == 0)
1084 smsc_ircc_sir_start(self);
1087 if (!last_speed_was_sir) speed = self->io.speed;
1090 if (self->io.speed != speed)
1091 smsc_ircc_set_transceiver_for_speed(self, speed);
1093 self->io.speed = speed;
1095 if (speed <= SMSC_IRCC2_MAX_SIR_SPEED) {
1096 if (!last_speed_was_sir) {
1097 smsc_ircc_fir_stop(self);
1098 smsc_ircc_sir_start(self);
1100 smsc_ircc_set_sir_speed(self, speed);
1102 if (last_speed_was_sir) {
1103 #if SMSC_IRCC2_C_SIR_STOP
1104 smsc_ircc_sir_stop(self);
1106 smsc_ircc_fir_start(self);
1108 smsc_ircc_set_fir_speed(self, speed);
1111 self->tx_buff.len = 10;
1112 self->tx_buff.data = self->tx_buff.head;
1114 smsc_ircc_dma_xmit(self, 4000);
1116 /* Be ready for incoming frames */
1117 smsc_ircc_dma_receive(self);
1120 netif_wake_queue(dev);
1124 * Function smsc_ircc_set_sir_speed (self, speed)
1126 * Set speed of IrDA port to specified baudrate
1129 void smsc_ircc_set_sir_speed(struct smsc_ircc_cb *self, __u32 speed)
1132 int fcr; /* FIFO control reg */
1133 int lcr; /* Line control reg */
1136 IRDA_DEBUG(0, "%s(), Setting speed to: %d\n", __FUNCTION__, speed);
1138 IRDA_ASSERT(self != NULL, return;);
1139 iobase = self->io.sir_base;
1141 /* Update accounting for new speed */
1142 self->io.speed = speed;
1144 /* Turn off interrupts */
1145 outb(0, iobase + UART_IER);
1147 divisor = SMSC_IRCC2_MAX_SIR_SPEED / speed;
1149 fcr = UART_FCR_ENABLE_FIFO;
1152 * Use trigger level 1 to avoid 3 ms. timeout delay at 9600 bps, and
1153 * almost 1,7 ms at 19200 bps. At speeds above that we can just forget
1154 * about this timeout since it will always be fast enough.
1156 fcr |= self->io.speed < 38400 ?
1157 UART_FCR_TRIGGER_1 : UART_FCR_TRIGGER_14;
1159 /* IrDA ports use 8N1 */
1160 lcr = UART_LCR_WLEN8;
1162 outb(UART_LCR_DLAB | lcr, iobase + UART_LCR); /* Set DLAB */
1163 outb(divisor & 0xff, iobase + UART_DLL); /* Set speed */
1164 outb(divisor >> 8, iobase + UART_DLM);
1165 outb(lcr, iobase + UART_LCR); /* Set 8N1 */
1166 outb(fcr, iobase + UART_FCR); /* Enable FIFO's */
1168 /* Turn on interrups */
1169 outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
1171 IRDA_DEBUG(2, "%s() speed changed to: %d\n", __FUNCTION__, speed);
1176 * Function smsc_ircc_hard_xmit_fir (skb, dev)
1178 * Transmit the frame!
1181 static int smsc_ircc_hard_xmit_fir(struct sk_buff *skb, struct net_device *dev)
1183 struct smsc_ircc_cb *self;
1184 unsigned long flags;
1188 IRDA_ASSERT(dev != NULL, return 0;);
1189 self = netdev_priv(dev);
1190 IRDA_ASSERT(self != NULL, return 0;);
1192 netif_stop_queue(dev);
1194 /* Make sure test of self->io.speed & speed change are atomic */
1195 spin_lock_irqsave(&self->lock, flags);
1197 /* Check if we need to change the speed after this frame */
1198 speed = irda_get_next_speed(skb);
1199 if (speed != self->io.speed && speed != -1) {
1200 /* Check for empty frame */
1202 /* Note : you should make sure that speed changes
1203 * are not going to corrupt any outgoing frame.
1204 * Look at nsc-ircc for the gory details - Jean II */
1205 smsc_ircc_change_speed(self, speed);
1206 spin_unlock_irqrestore(&self->lock, flags);
1211 self->new_speed = speed;
1214 skb_copy_from_linear_data(skb, self->tx_buff.head, skb->len);
1216 self->tx_buff.len = skb->len;
1217 self->tx_buff.data = self->tx_buff.head;
1219 mtt = irda_get_mtt(skb);
1224 * Compute how many BOFs (STA or PA's) we need to waste the
1225 * min turn time given the speed of the link.
1227 bofs = mtt * (self->io.speed / 1000) / 8000;
1231 smsc_ircc_dma_xmit(self, bofs);
1233 /* Transmit frame */
1234 smsc_ircc_dma_xmit(self, 0);
1237 spin_unlock_irqrestore(&self->lock, flags);
1244 * Function smsc_ircc_dma_xmit (self, bofs)
1246 * Transmit data using DMA
1249 static void smsc_ircc_dma_xmit(struct smsc_ircc_cb *self, int bofs)
1251 int iobase = self->io.fir_base;
1254 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1257 register_bank(iobase, 0);
1258 outb(0x00, iobase + IRCC_LCR_B);
1260 register_bank(iobase, 1);
1261 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1262 iobase + IRCC_SCE_CFGB);
1264 self->io.direction = IO_XMIT;
1266 /* Set BOF additional count for generating the min turn time */
1267 register_bank(iobase, 4);
1268 outb(bofs & 0xff, iobase + IRCC_BOF_COUNT_LO);
1269 ctrl = inb(iobase + IRCC_CONTROL) & 0xf0;
1270 outb(ctrl | ((bofs >> 8) & 0x0f), iobase + IRCC_BOF_COUNT_HI);
1272 /* Set max Tx frame size */
1273 outb(self->tx_buff.len >> 8, iobase + IRCC_TX_SIZE_HI);
1274 outb(self->tx_buff.len & 0xff, iobase + IRCC_TX_SIZE_LO);
1276 /*outb(UART_MCR_OUT2, self->io.sir_base + UART_MCR);*/
1278 /* Enable burst mode chip Tx DMA */
1279 register_bank(iobase, 1);
1280 outb(inb(iobase + IRCC_SCE_CFGB) | IRCC_CFGB_DMA_ENABLE |
1281 IRCC_CFGB_DMA_BURST, iobase + IRCC_SCE_CFGB);
1283 /* Setup DMA controller (must be done after enabling chip DMA) */
1284 irda_setup_dma(self->io.dma, self->tx_buff_dma, self->tx_buff.len,
1287 /* Enable interrupt */
1289 register_bank(iobase, 0);
1290 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
1291 outb(IRCC_MASTER_INT_EN, iobase + IRCC_MASTER);
1293 /* Enable transmit */
1294 outb(IRCC_LCR_B_SCE_TRANSMIT | IRCC_LCR_B_SIP_ENABLE, iobase + IRCC_LCR_B);
1298 * Function smsc_ircc_dma_xmit_complete (self)
1300 * The transfer of a frame in finished. This function will only be called
1301 * by the interrupt handler
1304 static void smsc_ircc_dma_xmit_complete(struct smsc_ircc_cb *self)
1306 int iobase = self->io.fir_base;
1308 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1311 register_bank(iobase, 0);
1312 outb(0x00, iobase + IRCC_LCR_B);
1314 register_bank(iobase, 1);
1315 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1316 iobase + IRCC_SCE_CFGB);
1318 /* Check for underrun! */
1319 register_bank(iobase, 0);
1320 if (inb(iobase + IRCC_LSR) & IRCC_LSR_UNDERRUN) {
1321 self->stats.tx_errors++;
1322 self->stats.tx_fifo_errors++;
1324 /* Reset error condition */
1325 register_bank(iobase, 0);
1326 outb(IRCC_MASTER_ERROR_RESET, iobase + IRCC_MASTER);
1327 outb(0x00, iobase + IRCC_MASTER);
1329 self->stats.tx_packets++;
1330 self->stats.tx_bytes += self->tx_buff.len;
1333 /* Check if it's time to change the speed */
1334 if (self->new_speed) {
1335 smsc_ircc_change_speed(self, self->new_speed);
1336 self->new_speed = 0;
1339 netif_wake_queue(self->netdev);
1343 * Function smsc_ircc_dma_receive(self)
1345 * Get ready for receiving a frame. The device will initiate a DMA
1346 * if it starts to receive a frame.
1349 static int smsc_ircc_dma_receive(struct smsc_ircc_cb *self)
1351 int iobase = self->io.fir_base;
1353 /* Turn off chip DMA */
1354 register_bank(iobase, 1);
1355 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1356 iobase + IRCC_SCE_CFGB);
1360 register_bank(iobase, 0);
1361 outb(0x00, iobase + IRCC_LCR_B);
1363 /* Turn off chip DMA */
1364 register_bank(iobase, 1);
1365 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1366 iobase + IRCC_SCE_CFGB);
1368 self->io.direction = IO_RECV;
1369 self->rx_buff.data = self->rx_buff.head;
1371 /* Set max Rx frame size */
1372 register_bank(iobase, 4);
1373 outb((2050 >> 8) & 0x0f, iobase + IRCC_RX_SIZE_HI);
1374 outb(2050 & 0xff, iobase + IRCC_RX_SIZE_LO);
1376 /* Setup DMA controller */
1377 irda_setup_dma(self->io.dma, self->rx_buff_dma, self->rx_buff.truesize,
1380 /* Enable burst mode chip Rx DMA */
1381 register_bank(iobase, 1);
1382 outb(inb(iobase + IRCC_SCE_CFGB) | IRCC_CFGB_DMA_ENABLE |
1383 IRCC_CFGB_DMA_BURST, iobase + IRCC_SCE_CFGB);
1385 /* Enable interrupt */
1386 register_bank(iobase, 0);
1387 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
1388 outb(IRCC_MASTER_INT_EN, iobase + IRCC_MASTER);
1390 /* Enable receiver */
1391 register_bank(iobase, 0);
1392 outb(IRCC_LCR_B_SCE_RECEIVE | IRCC_LCR_B_SIP_ENABLE,
1393 iobase + IRCC_LCR_B);
1399 * Function smsc_ircc_dma_receive_complete(self)
1401 * Finished with receiving frames
1404 static void smsc_ircc_dma_receive_complete(struct smsc_ircc_cb *self)
1406 struct sk_buff *skb;
1407 int len, msgcnt, lsr;
1408 int iobase = self->io.fir_base;
1410 register_bank(iobase, 0);
1412 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1415 register_bank(iobase, 0);
1416 outb(0x00, iobase + IRCC_LCR_B);
1418 register_bank(iobase, 0);
1419 outb(inb(iobase + IRCC_LSAR) & ~IRCC_LSAR_ADDRESS_MASK, iobase + IRCC_LSAR);
1420 lsr= inb(iobase + IRCC_LSR);
1421 msgcnt = inb(iobase + IRCC_LCR_B) & 0x08;
1423 IRDA_DEBUG(2, "%s: dma count = %d\n", __FUNCTION__,
1424 get_dma_residue(self->io.dma));
1426 len = self->rx_buff.truesize - get_dma_residue(self->io.dma);
1428 /* Look for errors */
1429 if (lsr & (IRCC_LSR_FRAME_ERROR | IRCC_LSR_CRC_ERROR | IRCC_LSR_SIZE_ERROR)) {
1430 self->stats.rx_errors++;
1431 if (lsr & IRCC_LSR_FRAME_ERROR)
1432 self->stats.rx_frame_errors++;
1433 if (lsr & IRCC_LSR_CRC_ERROR)
1434 self->stats.rx_crc_errors++;
1435 if (lsr & IRCC_LSR_SIZE_ERROR)
1436 self->stats.rx_length_errors++;
1437 if (lsr & (IRCC_LSR_UNDERRUN | IRCC_LSR_OVERRUN))
1438 self->stats.rx_length_errors++;
1443 len -= self->io.speed < 4000000 ? 2 : 4;
1445 if (len < 2 || len > 2050) {
1446 IRDA_WARNING("%s(), bogus len=%d\n", __FUNCTION__, len);
1449 IRDA_DEBUG(2, "%s: msgcnt = %d, len=%d\n", __FUNCTION__, msgcnt, len);
1451 skb = dev_alloc_skb(len + 1);
1453 IRDA_WARNING("%s(), memory squeeze, dropping frame.\n",
1457 /* Make sure IP header gets aligned */
1458 skb_reserve(skb, 1);
1460 memcpy(skb_put(skb, len), self->rx_buff.data, len);
1461 self->stats.rx_packets++;
1462 self->stats.rx_bytes += len;
1464 skb->dev = self->netdev;
1465 skb_reset_mac_header(skb);
1466 skb->protocol = htons(ETH_P_IRDA);
1471 * Function smsc_ircc_sir_receive (self)
1473 * Receive one frame from the infrared port
1476 static void smsc_ircc_sir_receive(struct smsc_ircc_cb *self)
1481 IRDA_ASSERT(self != NULL, return;);
1483 iobase = self->io.sir_base;
1486 * Receive all characters in Rx FIFO, unwrap and unstuff them.
1487 * async_unwrap_char will deliver all found frames
1490 async_unwrap_char(self->netdev, &self->stats, &self->rx_buff,
1491 inb(iobase + UART_RX));
1493 /* Make sure we don't stay here to long */
1494 if (boguscount++ > 32) {
1495 IRDA_DEBUG(2, "%s(), breaking!\n", __FUNCTION__);
1498 } while (inb(iobase + UART_LSR) & UART_LSR_DR);
1503 * Function smsc_ircc_interrupt (irq, dev_id, regs)
1505 * An interrupt from the chip has arrived. Time to do some work
1508 static irqreturn_t smsc_ircc_interrupt(int irq, void *dev_id)
1510 struct net_device *dev = (struct net_device *) dev_id;
1511 struct smsc_ircc_cb *self;
1512 int iobase, iir, lcra, lsr;
1513 irqreturn_t ret = IRQ_NONE;
1516 printk(KERN_WARNING "%s: irq %d for unknown device.\n",
1521 self = netdev_priv(dev);
1522 IRDA_ASSERT(self != NULL, return IRQ_NONE;);
1524 /* Serialise the interrupt handler in various CPUs, stop Tx path */
1525 spin_lock(&self->lock);
1527 /* Check if we should use the SIR interrupt handler */
1528 if (self->io.speed <= SMSC_IRCC2_MAX_SIR_SPEED) {
1529 ret = smsc_ircc_interrupt_sir(dev);
1530 goto irq_ret_unlock;
1533 iobase = self->io.fir_base;
1535 register_bank(iobase, 0);
1536 iir = inb(iobase + IRCC_IIR);
1538 goto irq_ret_unlock;
1541 /* Disable interrupts */
1542 outb(0, iobase + IRCC_IER);
1543 lcra = inb(iobase + IRCC_LCR_A);
1544 lsr = inb(iobase + IRCC_LSR);
1546 IRDA_DEBUG(2, "%s(), iir = 0x%02x\n", __FUNCTION__, iir);
1548 if (iir & IRCC_IIR_EOM) {
1549 if (self->io.direction == IO_RECV)
1550 smsc_ircc_dma_receive_complete(self);
1552 smsc_ircc_dma_xmit_complete(self);
1554 smsc_ircc_dma_receive(self);
1557 if (iir & IRCC_IIR_ACTIVE_FRAME) {
1558 /*printk(KERN_WARNING "%s(): Active Frame\n", __FUNCTION__);*/
1561 /* Enable interrupts again */
1563 register_bank(iobase, 0);
1564 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
1567 spin_unlock(&self->lock);
1573 * Function irport_interrupt_sir (irq, dev_id)
1575 * Interrupt handler for SIR modes
1577 static irqreturn_t smsc_ircc_interrupt_sir(struct net_device *dev)
1579 struct smsc_ircc_cb *self = netdev_priv(dev);
1584 /* Already locked comming here in smsc_ircc_interrupt() */
1585 /*spin_lock(&self->lock);*/
1587 iobase = self->io.sir_base;
1589 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
1593 /* Clear interrupt */
1594 lsr = inb(iobase + UART_LSR);
1596 IRDA_DEBUG(4, "%s(), iir=%02x, lsr=%02x, iobase=%#x\n",
1597 __FUNCTION__, iir, lsr, iobase);
1601 IRDA_DEBUG(2, "%s(), RLSI\n", __FUNCTION__);
1604 /* Receive interrupt */
1605 smsc_ircc_sir_receive(self);
1608 if (lsr & UART_LSR_THRE)
1609 /* Transmitter ready for data */
1610 smsc_ircc_sir_write_wakeup(self);
1613 IRDA_DEBUG(0, "%s(), unhandled IIR=%#x\n",
1618 /* Make sure we don't stay here to long */
1619 if (boguscount++ > 100)
1622 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
1624 /*spin_unlock(&self->lock);*/
1631 * Function ircc_is_receiving (self)
1633 * Return TRUE is we are currently receiving a frame
1636 static int ircc_is_receiving(struct smsc_ircc_cb *self)
1641 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1643 IRDA_ASSERT(self != NULL, return FALSE;);
1645 IRDA_DEBUG(0, "%s: dma count = %d\n", __FUNCTION__,
1646 get_dma_residue(self->io.dma));
1648 status = (self->rx_buff.state != OUTSIDE_FRAME);
1654 static int smsc_ircc_request_irq(struct smsc_ircc_cb *self)
1658 error = request_irq(self->io.irq, smsc_ircc_interrupt, 0,
1659 self->netdev->name, self->netdev);
1661 IRDA_DEBUG(0, "%s(), unable to allocate irq=%d, err=%d\n",
1662 __FUNCTION__, self->io.irq, error);
1667 static void smsc_ircc_start_interrupts(struct smsc_ircc_cb *self)
1669 unsigned long flags;
1671 spin_lock_irqsave(&self->lock, flags);
1674 smsc_ircc_change_speed(self, SMSC_IRCC2_C_IRDA_FALLBACK_SPEED);
1676 spin_unlock_irqrestore(&self->lock, flags);
1679 static void smsc_ircc_stop_interrupts(struct smsc_ircc_cb *self)
1681 int iobase = self->io.fir_base;
1682 unsigned long flags;
1684 spin_lock_irqsave(&self->lock, flags);
1686 register_bank(iobase, 0);
1687 outb(0, iobase + IRCC_IER);
1688 outb(IRCC_MASTER_RESET, iobase + IRCC_MASTER);
1689 outb(0x00, iobase + IRCC_MASTER);
1691 spin_unlock_irqrestore(&self->lock, flags);
1696 * Function smsc_ircc_net_open (dev)
1701 static int smsc_ircc_net_open(struct net_device *dev)
1703 struct smsc_ircc_cb *self;
1706 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1708 IRDA_ASSERT(dev != NULL, return -1;);
1709 self = netdev_priv(dev);
1710 IRDA_ASSERT(self != NULL, return 0;);
1712 if (self->io.suspended) {
1713 IRDA_DEBUG(0, "%s(), device is suspended\n", __FUNCTION__);
1717 if (request_irq(self->io.irq, smsc_ircc_interrupt, 0, dev->name,
1719 IRDA_DEBUG(0, "%s(), unable to allocate irq=%d\n",
1720 __FUNCTION__, self->io.irq);
1724 smsc_ircc_start_interrupts(self);
1726 /* Give self a hardware name */
1727 /* It would be cool to offer the chip revision here - Jean II */
1728 sprintf(hwname, "SMSC @ 0x%03x", self->io.fir_base);
1731 * Open new IrLAP layer instance, now that everything should be
1732 * initialized properly
1734 self->irlap = irlap_open(dev, &self->qos, hwname);
1737 * Always allocate the DMA channel after the IRQ,
1738 * and clean up on failure.
1740 if (request_dma(self->io.dma, dev->name)) {
1741 smsc_ircc_net_close(dev);
1743 IRDA_WARNING("%s(), unable to allocate DMA=%d\n",
1744 __FUNCTION__, self->io.dma);
1748 netif_start_queue(dev);
1754 * Function smsc_ircc_net_close (dev)
1759 static int smsc_ircc_net_close(struct net_device *dev)
1761 struct smsc_ircc_cb *self;
1763 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1765 IRDA_ASSERT(dev != NULL, return -1;);
1766 self = netdev_priv(dev);
1767 IRDA_ASSERT(self != NULL, return 0;);
1770 netif_stop_queue(dev);
1772 /* Stop and remove instance of IrLAP */
1774 irlap_close(self->irlap);
1777 smsc_ircc_stop_interrupts(self);
1779 /* if we are called from smsc_ircc_resume we don't have IRQ reserved */
1780 if (!self->io.suspended)
1781 free_irq(self->io.irq, dev);
1783 disable_dma(self->io.dma);
1784 free_dma(self->io.dma);
1789 static int smsc_ircc_suspend(struct platform_device *dev, pm_message_t state)
1791 struct smsc_ircc_cb *self = platform_get_drvdata(dev);
1793 if (!self->io.suspended) {
1794 IRDA_DEBUG(1, "%s, Suspending\n", driver_name);
1797 if (netif_running(self->netdev)) {
1798 netif_device_detach(self->netdev);
1799 smsc_ircc_stop_interrupts(self);
1800 free_irq(self->io.irq, self->netdev);
1801 disable_dma(self->io.dma);
1803 self->io.suspended = 1;
1810 static int smsc_ircc_resume(struct platform_device *dev)
1812 struct smsc_ircc_cb *self = platform_get_drvdata(dev);
1814 if (self->io.suspended) {
1815 IRDA_DEBUG(1, "%s, Waking up\n", driver_name);
1818 smsc_ircc_init_chip(self);
1819 if (netif_running(self->netdev)) {
1820 if (smsc_ircc_request_irq(self)) {
1822 * Don't fail resume process, just kill this
1825 unregister_netdevice(self->netdev);
1827 enable_dma(self->io.dma);
1828 smsc_ircc_start_interrupts(self);
1829 netif_device_attach(self->netdev);
1832 self->io.suspended = 0;
1839 * Function smsc_ircc_close (self)
1841 * Close driver instance
1844 static int __exit smsc_ircc_close(struct smsc_ircc_cb *self)
1846 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1848 IRDA_ASSERT(self != NULL, return -1;);
1850 platform_device_unregister(self->pldev);
1852 /* Remove netdevice */
1853 unregister_netdev(self->netdev);
1855 smsc_ircc_stop_interrupts(self);
1857 /* Release the PORTS that this driver is using */
1858 IRDA_DEBUG(0, "%s(), releasing 0x%03x\n", __FUNCTION__,
1861 release_region(self->io.fir_base, self->io.fir_ext);
1863 IRDA_DEBUG(0, "%s(), releasing 0x%03x\n", __FUNCTION__,
1866 release_region(self->io.sir_base, self->io.sir_ext);
1868 if (self->tx_buff.head)
1869 dma_free_coherent(NULL, self->tx_buff.truesize,
1870 self->tx_buff.head, self->tx_buff_dma);
1872 if (self->rx_buff.head)
1873 dma_free_coherent(NULL, self->rx_buff.truesize,
1874 self->rx_buff.head, self->rx_buff_dma);
1876 free_netdev(self->netdev);
1881 static void __exit smsc_ircc_cleanup(void)
1885 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1887 for (i = 0; i < 2; i++) {
1889 smsc_ircc_close(dev_self[i]);
1892 if (pnp_driver_registered)
1893 pnp_unregister_driver(&smsc_ircc_pnp_driver);
1895 platform_driver_unregister(&smsc_ircc_driver);
1899 * Start SIR operations
1901 * This function *must* be called with spinlock held, because it may
1902 * be called from the irq handler (via smsc_ircc_change_speed()). - Jean II
1904 void smsc_ircc_sir_start(struct smsc_ircc_cb *self)
1906 struct net_device *dev;
1907 int fir_base, sir_base;
1909 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1911 IRDA_ASSERT(self != NULL, return;);
1913 IRDA_ASSERT(dev != NULL, return;);
1914 dev->hard_start_xmit = &smsc_ircc_hard_xmit_sir;
1916 fir_base = self->io.fir_base;
1917 sir_base = self->io.sir_base;
1919 /* Reset everything */
1920 outb(IRCC_MASTER_RESET, fir_base + IRCC_MASTER);
1922 #if SMSC_IRCC2_C_SIR_STOP
1923 /*smsc_ircc_sir_stop(self);*/
1926 register_bank(fir_base, 1);
1927 outb(((inb(fir_base + IRCC_SCE_CFGA) & IRCC_SCE_CFGA_BLOCK_CTRL_BITS_MASK) | IRCC_CFGA_IRDA_SIR_A), fir_base + IRCC_SCE_CFGA);
1929 /* Initialize UART */
1930 outb(UART_LCR_WLEN8, sir_base + UART_LCR); /* Reset DLAB */
1931 outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), sir_base + UART_MCR);
1933 /* Turn on interrups */
1934 outb(UART_IER_RLSI | UART_IER_RDI |UART_IER_THRI, sir_base + UART_IER);
1936 IRDA_DEBUG(3, "%s() - exit\n", __FUNCTION__);
1938 outb(0x00, fir_base + IRCC_MASTER);
1941 #if SMSC_IRCC2_C_SIR_STOP
1942 void smsc_ircc_sir_stop(struct smsc_ircc_cb *self)
1946 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1947 iobase = self->io.sir_base;
1950 outb(0, iobase + UART_MCR);
1952 /* Turn off interrupts */
1953 outb(0, iobase + UART_IER);
1958 * Function smsc_sir_write_wakeup (self)
1960 * Called by the SIR interrupt handler when there's room for more data.
1961 * If we have more packets to send, we send them here.
1964 static void smsc_ircc_sir_write_wakeup(struct smsc_ircc_cb *self)
1970 IRDA_ASSERT(self != NULL, return;);
1972 IRDA_DEBUG(4, "%s\n", __FUNCTION__);
1974 iobase = self->io.sir_base;
1976 /* Finished with frame? */
1977 if (self->tx_buff.len > 0) {
1978 /* Write data left in transmit buffer */
1979 actual = smsc_ircc_sir_write(iobase, self->io.fifo_size,
1980 self->tx_buff.data, self->tx_buff.len);
1981 self->tx_buff.data += actual;
1982 self->tx_buff.len -= actual;
1985 /*if (self->tx_buff.len ==0) {*/
1988 * Now serial buffer is almost free & we can start
1989 * transmission of another packet. But first we must check
1990 * if we need to change the speed of the hardware
1992 if (self->new_speed) {
1993 IRDA_DEBUG(5, "%s(), Changing speed to %d.\n",
1994 __FUNCTION__, self->new_speed);
1995 smsc_ircc_sir_wait_hw_transmitter_finish(self);
1996 smsc_ircc_change_speed(self, self->new_speed);
1997 self->new_speed = 0;
1999 /* Tell network layer that we want more frames */
2000 netif_wake_queue(self->netdev);
2002 self->stats.tx_packets++;
2004 if (self->io.speed <= 115200) {
2006 * Reset Rx FIFO to make sure that all reflected transmit data
2007 * is discarded. This is needed for half duplex operation
2009 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR;
2010 fcr |= self->io.speed < 38400 ?
2011 UART_FCR_TRIGGER_1 : UART_FCR_TRIGGER_14;
2013 outb(fcr, iobase + UART_FCR);
2015 /* Turn on receive interrupts */
2016 outb(UART_IER_RDI, iobase + UART_IER);
2022 * Function smsc_ircc_sir_write (iobase, fifo_size, buf, len)
2024 * Fill Tx FIFO with transmit data
2027 static int smsc_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len)
2031 /* Tx FIFO should be empty! */
2032 if (!(inb(iobase + UART_LSR) & UART_LSR_THRE)) {
2033 IRDA_WARNING("%s(), failed, fifo not empty!\n", __FUNCTION__);
2037 /* Fill FIFO with current frame */
2038 while (fifo_size-- > 0 && actual < len) {
2039 /* Transmit next byte */
2040 outb(buf[actual], iobase + UART_TX);
2047 * Function smsc_ircc_is_receiving (self)
2049 * Returns true is we are currently receiving data
2052 static int smsc_ircc_is_receiving(struct smsc_ircc_cb *self)
2054 return (self->rx_buff.state != OUTSIDE_FRAME);
2059 * Function smsc_ircc_probe_transceiver(self)
2061 * Tries to find the used Transceiver
2064 static void smsc_ircc_probe_transceiver(struct smsc_ircc_cb *self)
2068 IRDA_ASSERT(self != NULL, return;);
2070 for (i = 0; smsc_transceivers[i].name != NULL; i++)
2071 if (smsc_transceivers[i].probe(self->io.fir_base)) {
2072 IRDA_MESSAGE(" %s transceiver found\n",
2073 smsc_transceivers[i].name);
2074 self->transceiver= i + 1;
2078 IRDA_MESSAGE("No transceiver found. Defaulting to %s\n",
2079 smsc_transceivers[SMSC_IRCC2_C_DEFAULT_TRANSCEIVER].name);
2081 self->transceiver = SMSC_IRCC2_C_DEFAULT_TRANSCEIVER;
2086 * Function smsc_ircc_set_transceiver_for_speed(self, speed)
2088 * Set the transceiver according to the speed
2091 static void smsc_ircc_set_transceiver_for_speed(struct smsc_ircc_cb *self, u32 speed)
2095 trx = self->transceiver;
2097 smsc_transceivers[trx - 1].set_for_speed(self->io.fir_base, speed);
2101 * Function smsc_ircc_wait_hw_transmitter_finish ()
2103 * Wait for the real end of HW transmission
2105 * The UART is a strict FIFO, and we get called only when we have finished
2106 * pushing data to the FIFO, so the maximum amount of time we must wait
2107 * is only for the FIFO to drain out.
2109 * We use a simple calibrated loop. We may need to adjust the loop
2110 * delay (udelay) to balance I/O traffic and latency. And we also need to
2111 * adjust the maximum timeout.
2112 * It would probably be better to wait for the proper interrupt,
2113 * but it doesn't seem to be available.
2115 * We can't use jiffies or kernel timers because :
2116 * 1) We are called from the interrupt handler, which disable softirqs,
2117 * so jiffies won't be increased
2118 * 2) Jiffies granularity is usually very coarse (10ms), and we don't
2119 * want to wait that long to detect stuck hardware.
2123 static void smsc_ircc_sir_wait_hw_transmitter_finish(struct smsc_ircc_cb *self)
2125 int iobase = self->io.sir_base;
2126 int count = SMSC_IRCC2_HW_TRANSMITTER_TIMEOUT_US;
2128 /* Calibrated busy loop */
2129 while (count-- > 0 && !(inb(iobase + UART_LSR) & UART_LSR_TEMT))
2133 IRDA_DEBUG(0, "%s(): stuck transmitter\n", __FUNCTION__);
2139 * REVISIT we can be told about the device by PNP, and should use that info
2140 * instead of probing hardware and creating a platform_device ...
2143 static int __init smsc_ircc_look_for_chips(void)
2145 struct smsc_chip_address *address;
2147 unsigned int cfg_base, found;
2150 address = possible_addresses;
2152 while (address->cfg_base) {
2153 cfg_base = address->cfg_base;
2155 /*printk(KERN_WARNING "%s(): probing: 0x%02x for: 0x%02x\n", __FUNCTION__, cfg_base, address->type);*/
2157 if (address->type & SMSCSIO_TYPE_FDC) {
2159 if (address->type & SMSCSIO_TYPE_FLAT)
2160 if (!smsc_superio_flat(fdc_chips_flat, cfg_base, type))
2163 if (address->type & SMSCSIO_TYPE_PAGED)
2164 if (!smsc_superio_paged(fdc_chips_paged, cfg_base, type))
2167 if (address->type & SMSCSIO_TYPE_LPC) {
2169 if (address->type & SMSCSIO_TYPE_FLAT)
2170 if (!smsc_superio_flat(lpc_chips_flat, cfg_base, type))
2173 if (address->type & SMSCSIO_TYPE_PAGED)
2174 if (!smsc_superio_paged(lpc_chips_paged, cfg_base, type))
2183 * Function smsc_superio_flat (chip, base, type)
2185 * Try to get configuration of a smc SuperIO chip with flat register model
2188 static int __init smsc_superio_flat(const struct smsc_chip *chips, unsigned short cfgbase, char *type)
2190 unsigned short firbase, sirbase;
2194 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
2196 if (smsc_ircc_probe(cfgbase, SMSCSIOFLAT_DEVICEID_REG, chips, type) == NULL)
2199 outb(SMSCSIOFLAT_UARTMODE0C_REG, cfgbase);
2200 mode = inb(cfgbase + 1);
2202 /*printk(KERN_WARNING "%s(): mode: 0x%02x\n", __FUNCTION__, mode);*/
2204 if (!(mode & SMSCSIOFLAT_UART2MODE_VAL_IRDA))
2205 IRDA_WARNING("%s(): IrDA not enabled\n", __FUNCTION__);
2207 outb(SMSCSIOFLAT_UART2BASEADDR_REG, cfgbase);
2208 sirbase = inb(cfgbase + 1) << 2;
2211 outb(SMSCSIOFLAT_FIRBASEADDR_REG, cfgbase);
2212 firbase = inb(cfgbase + 1) << 3;
2215 outb(SMSCSIOFLAT_FIRDMASELECT_REG, cfgbase);
2216 dma = inb(cfgbase + 1) & SMSCSIOFLAT_FIRDMASELECT_MASK;
2219 outb(SMSCSIOFLAT_UARTIRQSELECT_REG, cfgbase);
2220 irq = inb(cfgbase + 1) & SMSCSIOFLAT_UART2IRQSELECT_MASK;
2222 IRDA_MESSAGE("%s(): fir: 0x%02x, sir: 0x%02x, dma: %02d, irq: %d, mode: 0x%02x\n", __FUNCTION__, firbase, sirbase, dma, irq, mode);
2224 if (firbase && smsc_ircc_open(firbase, sirbase, dma, irq) == 0)
2227 /* Exit configuration */
2228 outb(SMSCSIO_CFGEXITKEY, cfgbase);
2234 * Function smsc_superio_paged (chip, base, type)
2236 * Try to get configuration of a smc SuperIO chip with paged register model
2239 static int __init smsc_superio_paged(const struct smsc_chip *chips, unsigned short cfg_base, char *type)
2241 unsigned short fir_io, sir_io;
2244 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
2246 if (smsc_ircc_probe(cfg_base, 0x20, chips, type) == NULL)
2249 /* Select logical device (UART2) */
2250 outb(0x07, cfg_base);
2251 outb(0x05, cfg_base + 1);
2254 outb(0x60, cfg_base);
2255 sir_io = inb(cfg_base + 1) << 8;
2256 outb(0x61, cfg_base);
2257 sir_io |= inb(cfg_base + 1);
2260 outb(0x62, cfg_base);
2261 fir_io = inb(cfg_base + 1) << 8;
2262 outb(0x63, cfg_base);
2263 fir_io |= inb(cfg_base + 1);
2264 outb(0x2b, cfg_base); /* ??? */
2266 if (fir_io && smsc_ircc_open(fir_io, sir_io, ircc_dma, ircc_irq) == 0)
2269 /* Exit configuration */
2270 outb(SMSCSIO_CFGEXITKEY, cfg_base);
2276 static int __init smsc_access(unsigned short cfg_base, unsigned char reg)
2278 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
2280 outb(reg, cfg_base);
2281 return inb(cfg_base) != reg ? -1 : 0;
2284 static const struct smsc_chip * __init smsc_ircc_probe(unsigned short cfg_base, u8 reg, const struct smsc_chip *chip, char *type)
2286 u8 devid, xdevid, rev;
2288 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
2290 /* Leave configuration */
2292 outb(SMSCSIO_CFGEXITKEY, cfg_base);
2294 if (inb(cfg_base) == SMSCSIO_CFGEXITKEY) /* not a smc superio chip */
2297 outb(reg, cfg_base);
2299 xdevid = inb(cfg_base + 1);
2301 /* Enter configuration */
2303 outb(SMSCSIO_CFGACCESSKEY, cfg_base);
2306 if (smsc_access(cfg_base,0x55)) /* send second key and check */
2310 /* probe device ID */
2312 if (smsc_access(cfg_base, reg))
2315 devid = inb(cfg_base + 1);
2317 if (devid == 0 || devid == 0xff) /* typical values for unused port */
2320 /* probe revision ID */
2322 if (smsc_access(cfg_base, reg + 1))
2325 rev = inb(cfg_base + 1);
2327 if (rev >= 128) /* i think this will make no sense */
2330 if (devid == xdevid) /* protection against false positives */
2333 /* Check for expected device ID; are there others? */
2335 while (chip->devid != devid) {
2339 if (chip->name == NULL)
2343 IRDA_MESSAGE("found SMC SuperIO Chip (devid=0x%02x rev=%02X base=0x%04x): %s%s\n",
2344 devid, rev, cfg_base, type, chip->name);
2346 if (chip->rev > rev) {
2347 IRDA_MESSAGE("Revision higher than expected\n");
2351 if (chip->flags & NoIRDA)
2352 IRDA_MESSAGE("chipset does not support IRDA\n");
2357 static int __init smsc_superio_fdc(unsigned short cfg_base)
2361 if (!request_region(cfg_base, 2, driver_name)) {
2362 IRDA_WARNING("%s: can't get cfg_base of 0x%03x\n",
2363 __FUNCTION__, cfg_base);
2365 if (!smsc_superio_flat(fdc_chips_flat, cfg_base, "FDC") ||
2366 !smsc_superio_paged(fdc_chips_paged, cfg_base, "FDC"))
2369 release_region(cfg_base, 2);
2375 static int __init smsc_superio_lpc(unsigned short cfg_base)
2379 if (!request_region(cfg_base, 2, driver_name)) {
2380 IRDA_WARNING("%s: can't get cfg_base of 0x%03x\n",
2381 __FUNCTION__, cfg_base);
2383 if (!smsc_superio_flat(lpc_chips_flat, cfg_base, "LPC") ||
2384 !smsc_superio_paged(lpc_chips_paged, cfg_base, "LPC"))
2387 release_region(cfg_base, 2);
2393 * Look for some specific subsystem setups that need
2394 * pre-configuration not properly done by the BIOS (especially laptops)
2395 * This code is based in part on smcinit.c, tosh1800-smcinit.c
2396 * and tosh2450-smcinit.c. The table lists the device entries
2397 * for ISA bridges with an LPC (Low Pin Count) controller which
2398 * handles the communication with the SMSC device. After the LPC
2399 * controller is initialized through PCI, the SMSC device is initialized
2400 * through a dedicated port in the ISA port-mapped I/O area, this latter
2401 * area is used to configure the SMSC device with default
2402 * SIR and FIR I/O ports, DMA and IRQ. Different vendors have
2403 * used different sets of parameters and different control port
2404 * addresses making a subsystem device table necessary.
2407 #define PCIID_VENDOR_INTEL 0x8086
2408 #define PCIID_VENDOR_ALI 0x10b9
2409 static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __initdata = {
2411 * Subsystems needing entries:
2412 * 0x10b9:0x1533 0x103c:0x0850 HP nx9010 family
2413 * 0x10b9:0x1533 0x0e11:0x005a Compaq nc4000 family
2414 * 0x8086:0x24cc 0x0e11:0x002a HP nx9000 family
2418 .vendor = PCIID_VENDOR_INTEL, /* Intel 82801DBM LPC bridge */
2420 .subvendor = 0x103c,
2421 .subdevice = 0x08bc,
2427 .preconfigure = preconfigure_through_82801,
2428 .name = "HP nx5000 family",
2431 .vendor = PCIID_VENDOR_INTEL, /* Intel 82801DBM LPC bridge */
2433 .subvendor = 0x103c,
2434 .subdevice = 0x088c,
2435 /* Quite certain these are the same for nc8000 as for nc6000 */
2441 .preconfigure = preconfigure_through_82801,
2442 .name = "HP nc8000 family",
2445 .vendor = PCIID_VENDOR_INTEL, /* Intel 82801DBM LPC bridge */
2447 .subvendor = 0x103c,
2448 .subdevice = 0x0890,
2454 .preconfigure = preconfigure_through_82801,
2455 .name = "HP nc6000 family",
2458 .vendor = PCIID_VENDOR_INTEL, /* Intel 82801DBM LPC bridge */
2460 .subvendor = 0x0e11,
2461 .subdevice = 0x0860,
2462 /* I assume these are the same for x1000 as for the others */
2468 .preconfigure = preconfigure_through_82801,
2469 .name = "Compaq x1000 family",
2472 /* Intel 82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge */
2473 .vendor = PCIID_VENDOR_INTEL,
2475 .subvendor = 0x1179,
2476 .subdevice = 0xffff, /* 0xffff is "any" */
2482 .preconfigure = preconfigure_through_82801,
2483 .name = "Toshiba laptop with Intel 82801DB/DBL LPC bridge",
2486 .vendor = PCIID_VENDOR_INTEL, /* Intel 82801CAM ISA bridge */
2488 .subvendor = 0x1179,
2489 .subdevice = 0xffff, /* 0xffff is "any" */
2495 .preconfigure = preconfigure_through_82801,
2496 .name = "Toshiba laptop with Intel 82801CAM ISA bridge",
2499 /* 82801DBM (ICH4-M) LPC Interface Bridge */
2500 .vendor = PCIID_VENDOR_INTEL,
2502 .subvendor = 0x1179,
2503 .subdevice = 0xffff, /* 0xffff is "any" */
2509 .preconfigure = preconfigure_through_82801,
2510 .name = "Toshiba laptop with Intel 8281DBM LPC bridge",
2513 /* ALi M1533/M1535 PCI to ISA Bridge [Aladdin IV/V/V+] */
2514 .vendor = PCIID_VENDOR_ALI,
2516 .subvendor = 0x1179,
2517 .subdevice = 0xffff, /* 0xffff is "any" */
2523 .preconfigure = preconfigure_through_ali,
2524 .name = "Toshiba laptop with ALi ISA bridge",
2531 * This sets up the basic SMSC parameters
2532 * (FIR port, SIR port, FIR DMA, FIR IRQ)
2533 * through the chip configuration port.
2535 static int __init preconfigure_smsc_chip(struct
2536 smsc_ircc_subsystem_configuration
2539 unsigned short iobase = conf->cfg_base;
2540 unsigned char tmpbyte;
2542 outb(LPC47N227_CFGACCESSKEY, iobase); // enter configuration state
2543 outb(SMSCSIOFLAT_DEVICEID_REG, iobase); // set for device ID
2544 tmpbyte = inb(iobase +1); // Read device ID
2546 "Detected Chip id: 0x%02x, setting up registers...\n",
2549 /* Disable UART1 and set up SIR I/O port */
2550 outb(0x24, iobase); // select CR24 - UART1 base addr
2551 outb(0x00, iobase + 1); // disable UART1
2552 outb(SMSCSIOFLAT_UART2BASEADDR_REG, iobase); // select CR25 - UART2 base addr
2553 outb( (conf->sir_io >> 2), iobase + 1); // bits 2-9 of 0x3f8
2554 tmpbyte = inb(iobase + 1);
2555 if (tmpbyte != (conf->sir_io >> 2) ) {
2556 IRDA_WARNING("ERROR: could not configure SIR ioport.\n");
2557 IRDA_WARNING("Try to supply ircc_cfg argument.\n");
2561 /* Set up FIR IRQ channel for UART2 */
2562 outb(SMSCSIOFLAT_UARTIRQSELECT_REG, iobase); // select CR28 - UART1,2 IRQ select
2563 tmpbyte = inb(iobase + 1);
2564 tmpbyte &= SMSCSIOFLAT_UART1IRQSELECT_MASK; // Do not touch the UART1 portion
2565 tmpbyte |= (conf->fir_irq & SMSCSIOFLAT_UART2IRQSELECT_MASK);
2566 outb(tmpbyte, iobase + 1);
2567 tmpbyte = inb(iobase + 1) & SMSCSIOFLAT_UART2IRQSELECT_MASK;
2568 if (tmpbyte != conf->fir_irq) {
2569 IRDA_WARNING("ERROR: could not configure FIR IRQ channel.\n");
2573 /* Set up FIR I/O port */
2574 outb(SMSCSIOFLAT_FIRBASEADDR_REG, iobase); // CR2B - SCE (FIR) base addr
2575 outb((conf->fir_io >> 3), iobase + 1);
2576 tmpbyte = inb(iobase + 1);
2577 if (tmpbyte != (conf->fir_io >> 3) ) {
2578 IRDA_WARNING("ERROR: could not configure FIR I/O port.\n");
2582 /* Set up FIR DMA channel */
2583 outb(SMSCSIOFLAT_FIRDMASELECT_REG, iobase); // CR2C - SCE (FIR) DMA select
2584 outb((conf->fir_dma & LPC47N227_FIRDMASELECT_MASK), iobase + 1); // DMA
2585 tmpbyte = inb(iobase + 1) & LPC47N227_FIRDMASELECT_MASK;
2586 if (tmpbyte != (conf->fir_dma & LPC47N227_FIRDMASELECT_MASK)) {
2587 IRDA_WARNING("ERROR: could not configure FIR DMA channel.\n");
2591 outb(SMSCSIOFLAT_UARTMODE0C_REG, iobase); // CR0C - UART mode
2592 tmpbyte = inb(iobase + 1);
2593 tmpbyte &= ~SMSCSIOFLAT_UART2MODE_MASK |
2594 SMSCSIOFLAT_UART2MODE_VAL_IRDA;
2595 outb(tmpbyte, iobase + 1); // enable IrDA (HPSIR) mode, high speed
2597 outb(LPC47N227_APMBOOTDRIVE_REG, iobase); // CR07 - Auto Pwr Mgt/boot drive sel
2598 tmpbyte = inb(iobase + 1);
2599 outb(tmpbyte | LPC47N227_UART2AUTOPWRDOWN_MASK, iobase + 1); // enable UART2 autopower down
2601 /* This one was not part of tosh1800 */
2602 outb(0x0a, iobase); // CR0a - ecp fifo / ir mux
2603 tmpbyte = inb(iobase + 1);
2604 outb(tmpbyte | 0x40, iobase + 1); // send active device to ir port
2606 outb(LPC47N227_UART12POWER_REG, iobase); // CR02 - UART 1,2 power
2607 tmpbyte = inb(iobase + 1);
2608 outb(tmpbyte | LPC47N227_UART2POWERDOWN_MASK, iobase + 1); // UART2 power up mode, UART1 power down
2610 outb(LPC47N227_FDCPOWERVALIDCONF_REG, iobase); // CR00 - FDC Power/valid config cycle
2611 tmpbyte = inb(iobase + 1);
2612 outb(tmpbyte | LPC47N227_VALID_MASK, iobase + 1); // valid config cycle done
2614 outb(LPC47N227_CFGEXITKEY, iobase); // Exit configuration
2619 /* 82801CAM generic registers */
2622 #define PIRQ_A_D_ROUT 0x60
2623 #define SIRQ_CNTL 0x64
2624 #define PIRQ_E_H_ROUT 0x68
2625 #define PCI_DMA_C 0x90
2626 /* LPC-specific registers */
2627 #define COM_DEC 0xe0
2628 #define GEN1_DEC 0xe4
2630 #define GEN2_DEC 0xec
2632 * Sets up the I/O range using the 82801CAM ISA bridge, 82801DBM LPC bridge
2633 * or Intel 82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge.
2634 * They all work the same way!
2636 static int __init preconfigure_through_82801(struct pci_dev *dev,
2638 smsc_ircc_subsystem_configuration
2641 unsigned short tmpword;
2642 unsigned char tmpbyte;
2644 IRDA_MESSAGE("Setting up Intel 82801 controller and SMSC device\n");
2646 * Select the range for the COMA COM port (SIR)
2649 * Bit 6-4, COMB decode range
2651 * Bit 2-0, COMA decode range
2654 * 000 = 0x3f8-0x3ff (COM1)
2655 * 001 = 0x2f8-0x2ff (COM2)
2659 * 101 = 0x2e8-0x2ef (COM4)
2661 * 111 = 0x3e8-0x3ef (COM3)
2663 pci_read_config_byte(dev, COM_DEC, &tmpbyte);
2664 tmpbyte &= 0xf8; /* mask COMA bits */
2665 switch(conf->sir_io) {
2691 tmpbyte |= 0x01; /* COM2 default */
2693 IRDA_DEBUG(1, "COM_DEC (write): 0x%02x\n", tmpbyte);
2694 pci_write_config_byte(dev, COM_DEC, tmpbyte);
2696 /* Enable Low Pin Count interface */
2697 pci_read_config_word(dev, LPC_EN, &tmpword);
2698 /* These seem to be set up at all times,
2699 * just make sure it is properly set.
2701 switch(conf->cfg_base) {
2715 IRDA_WARNING("Uncommon I/O base address: 0x%04x\n",
2719 tmpword &= 0xfffd; /* disable LPC COMB */
2720 tmpword |= 0x0001; /* set bit 0 : enable LPC COMA addr range (GEN2) */
2721 IRDA_DEBUG(1, "LPC_EN (write): 0x%04x\n", tmpword);
2722 pci_write_config_word(dev, LPC_EN, tmpword);
2725 * Configure LPC DMA channel
2727 * Bit 15-14: DMA channel 7 select
2728 * Bit 13-12: DMA channel 6 select
2729 * Bit 11-10: DMA channel 5 select
2731 * Bit 7-6: DMA channel 3 select
2732 * Bit 5-4: DMA channel 2 select
2733 * Bit 3-2: DMA channel 1 select
2734 * Bit 1-0: DMA channel 0 select
2735 * 00 = Reserved value
2737 * 10 = Reserved value
2740 pci_read_config_word(dev, PCI_DMA_C, &tmpword);
2741 switch(conf->fir_dma) {
2764 break; /* do not change settings */
2766 IRDA_DEBUG(1, "PCI_DMA_C (write): 0x%04x\n", tmpword);
2767 pci_write_config_word(dev, PCI_DMA_C, tmpword);
2771 * Bit 15-4: Generic I/O range
2772 * Bit 3-1: reserved (read as 0)
2773 * Bit 0: enable GEN2 range on LPC I/F
2775 tmpword = conf->fir_io & 0xfff8;
2777 IRDA_DEBUG(1, "GEN2_DEC (write): 0x%04x\n", tmpword);
2778 pci_write_config_word(dev, GEN2_DEC, tmpword);
2780 /* Pre-configure chip */
2781 return preconfigure_smsc_chip(conf);
2785 * Pre-configure a certain port on the ALi 1533 bridge.
2786 * This is based on reverse-engineering since ALi does not
2787 * provide any data sheet for the 1533 chip.
2789 static void __init preconfigure_ali_port(struct pci_dev *dev,
2790 unsigned short port)
2793 /* These bits obviously control the different ports */
2795 unsigned char tmpbyte;
2816 IRDA_ERROR("Failed to configure unsupported port on ALi 1533 bridge: 0x%04x\n", port);
2820 pci_read_config_byte(dev, reg, &tmpbyte);
2821 /* Turn on the right bits */
2823 pci_write_config_byte(dev, reg, tmpbyte);
2824 IRDA_MESSAGE("Activated ALi 1533 ISA bridge port 0x%04x.\n", port);
2828 static int __init preconfigure_through_ali(struct pci_dev *dev,
2830 smsc_ircc_subsystem_configuration
2833 /* Configure the two ports on the ALi 1533 */
2834 preconfigure_ali_port(dev, conf->sir_io);
2835 preconfigure_ali_port(dev, conf->fir_io);
2837 /* Pre-configure chip */
2838 return preconfigure_smsc_chip(conf);
2841 static int __init smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg,
2842 unsigned short ircc_fir,
2843 unsigned short ircc_sir,
2844 unsigned char ircc_dma,
2845 unsigned char ircc_irq)
2847 struct pci_dev *dev = NULL;
2848 unsigned short ss_vendor = 0x0000;
2849 unsigned short ss_device = 0x0000;
2852 dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev);
2854 while (dev != NULL) {
2855 struct smsc_ircc_subsystem_configuration *conf;
2858 * Cache the subsystem vendor/device:
2859 * some manufacturers fail to set this for all components,
2860 * so we save it in case there is just 0x0000 0x0000 on the
2861 * device we want to check.
2863 if (dev->subsystem_vendor != 0x0000U) {
2864 ss_vendor = dev->subsystem_vendor;
2865 ss_device = dev->subsystem_device;
2867 conf = subsystem_configurations;
2868 for( ; conf->subvendor; conf++) {
2869 if(conf->vendor == dev->vendor &&
2870 conf->device == dev->device &&
2871 conf->subvendor == ss_vendor &&
2872 /* Sometimes these are cached values */
2873 (conf->subdevice == ss_device ||
2874 conf->subdevice == 0xffff)) {
2875 struct smsc_ircc_subsystem_configuration
2878 memcpy(&tmpconf, conf,
2879 sizeof(struct smsc_ircc_subsystem_configuration));
2882 * Override the default values with anything
2883 * passed in as parameter
2886 tmpconf.cfg_base = ircc_cfg;
2888 tmpconf.fir_io = ircc_fir;
2890 tmpconf.sir_io = ircc_sir;
2891 if (ircc_dma != DMA_INVAL)
2892 tmpconf.fir_dma = ircc_dma;
2893 if (ircc_irq != IRQ_INVAL)
2894 tmpconf.fir_irq = ircc_irq;
2896 IRDA_MESSAGE("Detected unconfigured %s SMSC IrDA chip, pre-configuring device.\n", conf->name);
2897 if (conf->preconfigure)
2898 ret = conf->preconfigure(dev, &tmpconf);
2903 dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev);
2908 #endif // CONFIG_PCI
2910 /************************************************
2912 * Transceivers specific functions
2914 ************************************************/
2918 * Function smsc_ircc_set_transceiver_smsc_ircc_atc(fir_base, speed)
2920 * Program transceiver through smsc-ircc ATC circuitry
2924 static void smsc_ircc_set_transceiver_smsc_ircc_atc(int fir_base, u32 speed)
2926 unsigned long jiffies_now, jiffies_timeout;
2929 jiffies_now = jiffies;
2930 jiffies_timeout = jiffies + SMSC_IRCC2_ATC_PROGRAMMING_TIMEOUT_JIFFIES;
2933 register_bank(fir_base, 4);
2934 outb((inb(fir_base + IRCC_ATC) & IRCC_ATC_MASK) | IRCC_ATC_nPROGREADY|IRCC_ATC_ENABLE,
2935 fir_base + IRCC_ATC);
2937 while ((val = (inb(fir_base + IRCC_ATC) & IRCC_ATC_nPROGREADY)) &&
2938 !time_after(jiffies, jiffies_timeout))
2942 IRDA_WARNING("%s(): ATC: 0x%02x\n", __FUNCTION__,
2943 inb(fir_base + IRCC_ATC));
2947 * Function smsc_ircc_probe_transceiver_smsc_ircc_atc(fir_base)
2949 * Probe transceiver smsc-ircc ATC circuitry
2953 static int smsc_ircc_probe_transceiver_smsc_ircc_atc(int fir_base)
2959 * Function smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(self, speed)
2965 static void smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(int fir_base, u32 speed)
2976 fast_mode = IRCC_LCR_A_FAST;
2979 register_bank(fir_base, 0);
2980 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast_mode, fir_base + IRCC_LCR_A);
2984 * Function smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(fir_base)
2990 static int smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(int fir_base)
2996 * Function smsc_ircc_set_transceiver_toshiba_sat1800(fir_base, speed)
3002 static void smsc_ircc_set_transceiver_toshiba_sat1800(int fir_base, u32 speed)
3013 fast_mode = /*IRCC_LCR_A_FAST |*/ IRCC_LCR_A_GP_DATA;
3017 /* This causes an interrupt */
3018 register_bank(fir_base, 0);
3019 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast_mode, fir_base + IRCC_LCR_A);
3023 * Function smsc_ircc_probe_transceiver_toshiba_sat1800(fir_base)
3029 static int smsc_ircc_probe_transceiver_toshiba_sat1800(int fir_base)
3035 module_init(smsc_ircc_init);
3036 module_exit(smsc_ircc_cleanup);