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;
380 static int __init smsc_ircc_pnp_probe(struct pnp_dev *dev,
381 const struct pnp_device_id *dev_id)
383 unsigned int firbase, sirbase;
386 if (!(pnp_port_valid(dev, 0) && pnp_port_valid(dev, 1) &&
387 pnp_dma_valid(dev, 0) && pnp_irq_valid(dev, 0)))
390 sirbase = pnp_port_start(dev, 0);
391 firbase = pnp_port_start(dev, 1);
392 dma = pnp_dma(dev, 0);
393 irq = pnp_irq(dev, 0);
395 if (smsc_ircc_open(firbase, sirbase, dma, irq))
401 static struct pnp_driver smsc_ircc_pnp_driver = {
402 .name = "smsc-ircc2",
403 .id_table = smsc_ircc_pnp_table,
404 .probe = smsc_ircc_pnp_probe,
406 #else /* CONFIG_PNP */
407 static struct pnp_driver smsc_ircc_pnp_driver;
410 /*******************************************************************************
416 *******************************************************************************/
418 static int __init smsc_ircc_legacy_probe(void)
423 if (smsc_ircc_preconfigure_subsystems(ircc_cfg, ircc_fir, ircc_sir, ircc_dma, ircc_irq) < 0) {
424 /* Ignore errors from preconfiguration */
425 IRDA_ERROR("%s, Preconfiguration failed !\n", driver_name);
429 if (ircc_fir > 0 && ircc_sir > 0) {
430 IRDA_MESSAGE(" Overriding FIR address 0x%04x\n", ircc_fir);
431 IRDA_MESSAGE(" Overriding SIR address 0x%04x\n", ircc_sir);
433 if (smsc_ircc_open(ircc_fir, ircc_sir, ircc_dma, ircc_irq))
438 /* try user provided configuration register base address */
440 IRDA_MESSAGE(" Overriding configuration address "
441 "0x%04x\n", ircc_cfg);
442 if (!smsc_superio_fdc(ircc_cfg))
444 if (!smsc_superio_lpc(ircc_cfg))
448 if (smsc_ircc_look_for_chips() > 0)
455 * Function smsc_ircc_init ()
457 * Initialize chip. Just try to find out how many chips we are dealing with
460 static int __init smsc_ircc_init(void)
464 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
466 ret = platform_driver_register(&smsc_ircc_driver);
468 IRDA_ERROR("%s, Can't register driver!\n", driver_name);
474 if (smsc_nopnp || !pnp_platform_devices ||
475 ircc_cfg || ircc_fir || ircc_sir ||
476 ircc_dma != DMA_INVAL || ircc_irq != IRQ_INVAL) {
477 ret = smsc_ircc_legacy_probe();
479 if (pnp_register_driver(&smsc_ircc_pnp_driver) == 0)
480 pnp_driver_registered = 1;
484 if (pnp_driver_registered)
485 pnp_unregister_driver(&smsc_ircc_pnp_driver);
486 platform_driver_unregister(&smsc_ircc_driver);
493 * Function smsc_ircc_open (firbase, sirbase, dma, irq)
495 * Try to open driver instance
498 static int __init smsc_ircc_open(unsigned int fir_base, unsigned int sir_base, u8 dma, u8 irq)
500 struct smsc_ircc_cb *self;
501 struct net_device *dev;
504 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
506 err = smsc_ircc_present(fir_base, sir_base);
511 if (dev_count >= ARRAY_SIZE(dev_self)) {
512 IRDA_WARNING("%s(), too many devices!\n", __FUNCTION__);
517 * Allocate new instance of the driver
519 dev = alloc_irdadev(sizeof(struct smsc_ircc_cb));
521 IRDA_WARNING("%s() can't allocate net device\n", __FUNCTION__);
525 dev->hard_start_xmit = smsc_ircc_hard_xmit_sir;
526 #if SMSC_IRCC2_C_NET_TIMEOUT
527 dev->tx_timeout = smsc_ircc_timeout;
528 dev->watchdog_timeo = HZ * 2; /* Allow enough time for speed change */
530 dev->open = smsc_ircc_net_open;
531 dev->stop = smsc_ircc_net_close;
532 dev->do_ioctl = smsc_ircc_net_ioctl;
533 dev->get_stats = smsc_ircc_net_get_stats;
535 self = netdev_priv(dev);
538 /* Make ifconfig display some details */
539 dev->base_addr = self->io.fir_base = fir_base;
540 dev->irq = self->io.irq = irq;
542 /* Need to store self somewhere */
543 dev_self[dev_count] = self;
544 spin_lock_init(&self->lock);
546 self->rx_buff.truesize = SMSC_IRCC2_RX_BUFF_TRUESIZE;
547 self->tx_buff.truesize = SMSC_IRCC2_TX_BUFF_TRUESIZE;
550 dma_alloc_coherent(NULL, self->rx_buff.truesize,
551 &self->rx_buff_dma, GFP_KERNEL);
552 if (self->rx_buff.head == NULL) {
553 IRDA_ERROR("%s, Can't allocate memory for receive buffer!\n",
559 dma_alloc_coherent(NULL, self->tx_buff.truesize,
560 &self->tx_buff_dma, GFP_KERNEL);
561 if (self->tx_buff.head == NULL) {
562 IRDA_ERROR("%s, Can't allocate memory for transmit buffer!\n",
567 memset(self->rx_buff.head, 0, self->rx_buff.truesize);
568 memset(self->tx_buff.head, 0, self->tx_buff.truesize);
570 self->rx_buff.in_frame = FALSE;
571 self->rx_buff.state = OUTSIDE_FRAME;
572 self->tx_buff.data = self->tx_buff.head;
573 self->rx_buff.data = self->rx_buff.head;
575 smsc_ircc_setup_io(self, fir_base, sir_base, dma, irq);
576 smsc_ircc_setup_qos(self);
577 smsc_ircc_init_chip(self);
579 if (ircc_transceiver > 0 &&
580 ircc_transceiver < SMSC_IRCC2_C_NUMBER_OF_TRANSCEIVERS)
581 self->transceiver = ircc_transceiver;
583 smsc_ircc_probe_transceiver(self);
585 err = register_netdev(self->netdev);
587 IRDA_ERROR("%s, Network device registration failed!\n",
592 self->pldev = platform_device_register_simple(SMSC_IRCC2_DRIVER_NAME,
594 if (IS_ERR(self->pldev)) {
595 err = PTR_ERR(self->pldev);
598 platform_set_drvdata(self->pldev, self);
600 IRDA_MESSAGE("IrDA: Registered device %s\n", dev->name);
606 unregister_netdev(self->netdev);
609 dma_free_coherent(NULL, self->tx_buff.truesize,
610 self->tx_buff.head, self->tx_buff_dma);
612 dma_free_coherent(NULL, self->rx_buff.truesize,
613 self->rx_buff.head, self->rx_buff_dma);
615 free_netdev(self->netdev);
616 dev_self[dev_count] = NULL;
618 release_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT);
619 release_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT);
625 * Function smsc_ircc_present(fir_base, sir_base)
627 * Check the smsc-ircc chip presence
630 static int smsc_ircc_present(unsigned int fir_base, unsigned int sir_base)
632 unsigned char low, high, chip, config, dma, irq, version;
634 if (!request_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT,
636 IRDA_WARNING("%s: can't get fir_base of 0x%03x\n",
637 __FUNCTION__, fir_base);
641 if (!request_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT,
643 IRDA_WARNING("%s: can't get sir_base of 0x%03x\n",
644 __FUNCTION__, sir_base);
648 register_bank(fir_base, 3);
650 high = inb(fir_base + IRCC_ID_HIGH);
651 low = inb(fir_base + IRCC_ID_LOW);
652 chip = inb(fir_base + IRCC_CHIP_ID);
653 version = inb(fir_base + IRCC_VERSION);
654 config = inb(fir_base + IRCC_INTERFACE);
655 dma = config & IRCC_INTERFACE_DMA_MASK;
656 irq = (config & IRCC_INTERFACE_IRQ_MASK) >> 4;
658 if (high != 0x10 || low != 0xb8 || (chip != 0xf1 && chip != 0xf2)) {
659 IRDA_WARNING("%s(), addr 0x%04x - no device found!\n",
660 __FUNCTION__, fir_base);
663 IRDA_MESSAGE("SMsC IrDA Controller found\n IrCC version %d.%d, "
664 "firport 0x%03x, sirport 0x%03x dma=%d, irq=%d\n",
665 chip & 0x0f, version, fir_base, sir_base, dma, irq);
670 release_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT);
672 release_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT);
678 * Function smsc_ircc_setup_io(self, fir_base, sir_base, dma, irq)
683 static void smsc_ircc_setup_io(struct smsc_ircc_cb *self,
684 unsigned int fir_base, unsigned int sir_base,
687 unsigned char config, chip_dma, chip_irq;
689 register_bank(fir_base, 3);
690 config = inb(fir_base + IRCC_INTERFACE);
691 chip_dma = config & IRCC_INTERFACE_DMA_MASK;
692 chip_irq = (config & IRCC_INTERFACE_IRQ_MASK) >> 4;
694 self->io.fir_base = fir_base;
695 self->io.sir_base = sir_base;
696 self->io.fir_ext = SMSC_IRCC2_FIR_CHIP_IO_EXTENT;
697 self->io.sir_ext = SMSC_IRCC2_SIR_CHIP_IO_EXTENT;
698 self->io.fifo_size = SMSC_IRCC2_FIFO_SIZE;
699 self->io.speed = SMSC_IRCC2_C_IRDA_FALLBACK_SPEED;
701 if (irq != IRQ_INVAL) {
703 IRDA_MESSAGE("%s, Overriding IRQ - chip says %d, using %d\n",
704 driver_name, chip_irq, irq);
707 self->io.irq = chip_irq;
709 if (dma != DMA_INVAL) {
711 IRDA_MESSAGE("%s, Overriding DMA - chip says %d, using %d\n",
712 driver_name, chip_dma, dma);
715 self->io.dma = chip_dma;
720 * Function smsc_ircc_setup_qos(self)
725 static void smsc_ircc_setup_qos(struct smsc_ircc_cb *self)
727 /* Initialize QoS for this device */
728 irda_init_max_qos_capabilies(&self->qos);
730 self->qos.baud_rate.bits = IR_9600|IR_19200|IR_38400|IR_57600|
731 IR_115200|IR_576000|IR_1152000|(IR_4000000 << 8);
733 self->qos.min_turn_time.bits = SMSC_IRCC2_MIN_TURN_TIME;
734 self->qos.window_size.bits = SMSC_IRCC2_WINDOW_SIZE;
735 irda_qos_bits_to_value(&self->qos);
739 * Function smsc_ircc_init_chip(self)
744 static void smsc_ircc_init_chip(struct smsc_ircc_cb *self)
746 int iobase = self->io.fir_base;
748 register_bank(iobase, 0);
749 outb(IRCC_MASTER_RESET, iobase + IRCC_MASTER);
750 outb(0x00, iobase + IRCC_MASTER);
752 register_bank(iobase, 1);
753 outb(((inb(iobase + IRCC_SCE_CFGA) & 0x87) | IRCC_CFGA_IRDA_SIR_A),
754 iobase + IRCC_SCE_CFGA);
756 #ifdef smsc_669 /* Uses pin 88/89 for Rx/Tx */
757 outb(((inb(iobase + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_COM),
758 iobase + IRCC_SCE_CFGB);
760 outb(((inb(iobase + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_IR),
761 iobase + IRCC_SCE_CFGB);
763 (void) inb(iobase + IRCC_FIFO_THRESHOLD);
764 outb(SMSC_IRCC2_FIFO_THRESHOLD, iobase + IRCC_FIFO_THRESHOLD);
766 register_bank(iobase, 4);
767 outb((inb(iobase + IRCC_CONTROL) & 0x30), iobase + IRCC_CONTROL);
769 register_bank(iobase, 0);
770 outb(0, iobase + IRCC_LCR_A);
772 smsc_ircc_set_sir_speed(self, SMSC_IRCC2_C_IRDA_FALLBACK_SPEED);
774 /* Power on device */
775 outb(0x00, iobase + IRCC_MASTER);
779 * Function smsc_ircc_net_ioctl (dev, rq, cmd)
781 * Process IOCTL commands for this device
784 static int smsc_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
786 struct if_irda_req *irq = (struct if_irda_req *) rq;
787 struct smsc_ircc_cb *self;
791 IRDA_ASSERT(dev != NULL, return -1;);
793 self = netdev_priv(dev);
795 IRDA_ASSERT(self != NULL, return -1;);
797 IRDA_DEBUG(2, "%s(), %s, (cmd=0x%X)\n", __FUNCTION__, dev->name, cmd);
800 case SIOCSBANDWIDTH: /* Set bandwidth */
801 if (!capable(CAP_NET_ADMIN))
804 /* Make sure we are the only one touching
805 * self->io.speed and the hardware - Jean II */
806 spin_lock_irqsave(&self->lock, flags);
807 smsc_ircc_change_speed(self, irq->ifr_baudrate);
808 spin_unlock_irqrestore(&self->lock, flags);
811 case SIOCSMEDIABUSY: /* Set media busy */
812 if (!capable(CAP_NET_ADMIN)) {
817 irda_device_set_media_busy(self->netdev, TRUE);
819 case SIOCGRECEIVING: /* Check if we are receiving right now */
820 irq->ifr_receiving = smsc_ircc_is_receiving(self);
824 if (!capable(CAP_NET_ADMIN)) {
828 smsc_ircc_sir_set_dtr_rts(dev, irq->ifr_dtr, irq->ifr_rts);
838 static struct net_device_stats *smsc_ircc_net_get_stats(struct net_device *dev)
840 struct smsc_ircc_cb *self = netdev_priv(dev);
845 #if SMSC_IRCC2_C_NET_TIMEOUT
847 * Function smsc_ircc_timeout (struct net_device *dev)
849 * The networking timeout management.
853 static void smsc_ircc_timeout(struct net_device *dev)
855 struct smsc_ircc_cb *self = netdev_priv(dev);
858 IRDA_WARNING("%s: transmit timed out, changing speed to: %d\n",
859 dev->name, self->io.speed);
860 spin_lock_irqsave(&self->lock, flags);
861 smsc_ircc_sir_start(self);
862 smsc_ircc_change_speed(self, self->io.speed);
863 dev->trans_start = jiffies;
864 netif_wake_queue(dev);
865 spin_unlock_irqrestore(&self->lock, flags);
870 * Function smsc_ircc_hard_xmit_sir (struct sk_buff *skb, struct net_device *dev)
872 * Transmits the current frame until FIFO is full, then
873 * waits until the next transmit interrupt, and continues until the
874 * frame is transmitted.
876 int smsc_ircc_hard_xmit_sir(struct sk_buff *skb, struct net_device *dev)
878 struct smsc_ircc_cb *self;
882 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
884 IRDA_ASSERT(dev != NULL, return 0;);
886 self = netdev_priv(dev);
887 IRDA_ASSERT(self != NULL, return 0;);
889 netif_stop_queue(dev);
891 /* Make sure test of self->io.speed & speed change are atomic */
892 spin_lock_irqsave(&self->lock, flags);
894 /* Check if we need to change the speed */
895 speed = irda_get_next_speed(skb);
896 if (speed != self->io.speed && speed != -1) {
897 /* Check for empty frame */
900 * We send frames one by one in SIR mode (no
901 * pipelining), so at this point, if we were sending
902 * a previous frame, we just received the interrupt
903 * telling us it is finished (UART_IIR_THRI).
904 * Therefore, waiting for the transmitter to really
905 * finish draining the fifo won't take too long.
906 * And the interrupt handler is not expected to run.
908 smsc_ircc_sir_wait_hw_transmitter_finish(self);
909 smsc_ircc_change_speed(self, speed);
910 spin_unlock_irqrestore(&self->lock, flags);
914 self->new_speed = speed;
918 self->tx_buff.data = self->tx_buff.head;
920 /* Copy skb to tx_buff while wrapping, stuffing and making CRC */
921 self->tx_buff.len = async_wrap_skb(skb, self->tx_buff.data,
922 self->tx_buff.truesize);
924 self->stats.tx_bytes += self->tx_buff.len;
926 /* Turn on transmit finished interrupt. Will fire immediately! */
927 outb(UART_IER_THRI, self->io.sir_base + UART_IER);
929 spin_unlock_irqrestore(&self->lock, flags);
937 * Function smsc_ircc_set_fir_speed (self, baud)
939 * Change the speed of the device
942 static void smsc_ircc_set_fir_speed(struct smsc_ircc_cb *self, u32 speed)
944 int fir_base, ir_mode, ctrl, fast;
946 IRDA_ASSERT(self != NULL, return;);
947 fir_base = self->io.fir_base;
949 self->io.speed = speed;
954 ir_mode = IRCC_CFGA_IRDA_HDLC;
957 IRDA_DEBUG(0, "%s(), handling baud of 576000\n", __FUNCTION__);
960 ir_mode = IRCC_CFGA_IRDA_HDLC;
961 ctrl = IRCC_1152 | IRCC_CRC;
962 fast = IRCC_LCR_A_FAST | IRCC_LCR_A_GP_DATA;
963 IRDA_DEBUG(0, "%s(), handling baud of 1152000\n",
967 ir_mode = IRCC_CFGA_IRDA_4PPM;
969 fast = IRCC_LCR_A_FAST;
970 IRDA_DEBUG(0, "%s(), handling baud of 4000000\n",
976 /* This causes an interrupt */
977 register_bank(fir_base, 0);
978 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast, fir_base + IRCC_LCR_A);
981 register_bank(fir_base, 1);
982 outb(((inb(fir_base + IRCC_SCE_CFGA) & IRCC_SCE_CFGA_BLOCK_CTRL_BITS_MASK) | ir_mode), fir_base + IRCC_SCE_CFGA);
984 register_bank(fir_base, 4);
985 outb((inb(fir_base + IRCC_CONTROL) & 0x30) | ctrl, fir_base + IRCC_CONTROL);
989 * Function smsc_ircc_fir_start(self)
991 * Change the speed of the device
994 static void smsc_ircc_fir_start(struct smsc_ircc_cb *self)
996 struct net_device *dev;
999 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1001 IRDA_ASSERT(self != NULL, return;);
1003 IRDA_ASSERT(dev != NULL, return;);
1005 fir_base = self->io.fir_base;
1007 /* Reset everything */
1009 /* Install FIR transmit handler */
1010 dev->hard_start_xmit = smsc_ircc_hard_xmit_fir;
1013 outb(inb(fir_base + IRCC_LCR_A) | IRCC_LCR_A_FIFO_RESET, fir_base + IRCC_LCR_A);
1015 /* Enable interrupt */
1016 /*outb(IRCC_IER_ACTIVE_FRAME|IRCC_IER_EOM, fir_base + IRCC_IER);*/
1018 register_bank(fir_base, 1);
1020 /* Select the TX/RX interface */
1021 #ifdef SMSC_669 /* Uses pin 88/89 for Rx/Tx */
1022 outb(((inb(fir_base + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_COM),
1023 fir_base + IRCC_SCE_CFGB);
1025 outb(((inb(fir_base + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_IR),
1026 fir_base + IRCC_SCE_CFGB);
1028 (void) inb(fir_base + IRCC_FIFO_THRESHOLD);
1030 /* Enable SCE interrupts */
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);
1038 * Function smsc_ircc_fir_stop(self, baud)
1040 * Change the speed of the device
1043 static void smsc_ircc_fir_stop(struct smsc_ircc_cb *self)
1047 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1049 IRDA_ASSERT(self != NULL, return;);
1051 fir_base = self->io.fir_base;
1052 register_bank(fir_base, 0);
1053 /*outb(IRCC_MASTER_RESET, fir_base + IRCC_MASTER);*/
1054 outb(inb(fir_base + IRCC_LCR_B) & IRCC_LCR_B_SIP_ENABLE, fir_base + IRCC_LCR_B);
1059 * Function smsc_ircc_change_speed(self, baud)
1061 * Change the speed of the device
1063 * This function *must* be called with spinlock held, because it may
1064 * be called from the irq handler. - Jean II
1066 static void smsc_ircc_change_speed(struct smsc_ircc_cb *self, u32 speed)
1068 struct net_device *dev;
1069 int last_speed_was_sir;
1071 IRDA_DEBUG(0, "%s() changing speed to: %d\n", __FUNCTION__, speed);
1073 IRDA_ASSERT(self != NULL, return;);
1076 last_speed_was_sir = self->io.speed <= SMSC_IRCC2_MAX_SIR_SPEED;
1081 self->io.speed = speed;
1082 last_speed_was_sir = 0;
1083 smsc_ircc_fir_start(self);
1086 if (self->io.speed == 0)
1087 smsc_ircc_sir_start(self);
1090 if (!last_speed_was_sir) speed = self->io.speed;
1093 if (self->io.speed != speed)
1094 smsc_ircc_set_transceiver_for_speed(self, speed);
1096 self->io.speed = speed;
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);
1103 smsc_ircc_set_sir_speed(self, speed);
1105 if (last_speed_was_sir) {
1106 #if SMSC_IRCC2_C_SIR_STOP
1107 smsc_ircc_sir_stop(self);
1109 smsc_ircc_fir_start(self);
1111 smsc_ircc_set_fir_speed(self, speed);
1114 self->tx_buff.len = 10;
1115 self->tx_buff.data = self->tx_buff.head;
1117 smsc_ircc_dma_xmit(self, 4000);
1119 /* Be ready for incoming frames */
1120 smsc_ircc_dma_receive(self);
1123 netif_wake_queue(dev);
1127 * Function smsc_ircc_set_sir_speed (self, speed)
1129 * Set speed of IrDA port to specified baudrate
1132 void smsc_ircc_set_sir_speed(struct smsc_ircc_cb *self, __u32 speed)
1135 int fcr; /* FIFO control reg */
1136 int lcr; /* Line control reg */
1139 IRDA_DEBUG(0, "%s(), Setting speed to: %d\n", __FUNCTION__, speed);
1141 IRDA_ASSERT(self != NULL, return;);
1142 iobase = self->io.sir_base;
1144 /* Update accounting for new speed */
1145 self->io.speed = speed;
1147 /* Turn off interrupts */
1148 outb(0, iobase + UART_IER);
1150 divisor = SMSC_IRCC2_MAX_SIR_SPEED / speed;
1152 fcr = UART_FCR_ENABLE_FIFO;
1155 * Use trigger level 1 to avoid 3 ms. timeout delay at 9600 bps, and
1156 * almost 1,7 ms at 19200 bps. At speeds above that we can just forget
1157 * about this timeout since it will always be fast enough.
1159 fcr |= self->io.speed < 38400 ?
1160 UART_FCR_TRIGGER_1 : UART_FCR_TRIGGER_14;
1162 /* IrDA ports use 8N1 */
1163 lcr = UART_LCR_WLEN8;
1165 outb(UART_LCR_DLAB | lcr, iobase + UART_LCR); /* Set DLAB */
1166 outb(divisor & 0xff, iobase + UART_DLL); /* Set speed */
1167 outb(divisor >> 8, iobase + UART_DLM);
1168 outb(lcr, iobase + UART_LCR); /* Set 8N1 */
1169 outb(fcr, iobase + UART_FCR); /* Enable FIFO's */
1171 /* Turn on interrups */
1172 outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
1174 IRDA_DEBUG(2, "%s() speed changed to: %d\n", __FUNCTION__, speed);
1179 * Function smsc_ircc_hard_xmit_fir (skb, dev)
1181 * Transmit the frame!
1184 static int smsc_ircc_hard_xmit_fir(struct sk_buff *skb, struct net_device *dev)
1186 struct smsc_ircc_cb *self;
1187 unsigned long flags;
1191 IRDA_ASSERT(dev != NULL, return 0;);
1192 self = netdev_priv(dev);
1193 IRDA_ASSERT(self != NULL, return 0;);
1195 netif_stop_queue(dev);
1197 /* Make sure test of self->io.speed & speed change are atomic */
1198 spin_lock_irqsave(&self->lock, flags);
1200 /* Check if we need to change the speed after this frame */
1201 speed = irda_get_next_speed(skb);
1202 if (speed != self->io.speed && speed != -1) {
1203 /* Check for empty frame */
1205 /* Note : you should make sure that speed changes
1206 * are not going to corrupt any outgoing frame.
1207 * Look at nsc-ircc for the gory details - Jean II */
1208 smsc_ircc_change_speed(self, speed);
1209 spin_unlock_irqrestore(&self->lock, flags);
1214 self->new_speed = speed;
1217 skb_copy_from_linear_data(skb, self->tx_buff.head, skb->len);
1219 self->tx_buff.len = skb->len;
1220 self->tx_buff.data = self->tx_buff.head;
1222 mtt = irda_get_mtt(skb);
1227 * Compute how many BOFs (STA or PA's) we need to waste the
1228 * min turn time given the speed of the link.
1230 bofs = mtt * (self->io.speed / 1000) / 8000;
1234 smsc_ircc_dma_xmit(self, bofs);
1236 /* Transmit frame */
1237 smsc_ircc_dma_xmit(self, 0);
1240 spin_unlock_irqrestore(&self->lock, flags);
1247 * Function smsc_ircc_dma_xmit (self, bofs)
1249 * Transmit data using DMA
1252 static void smsc_ircc_dma_xmit(struct smsc_ircc_cb *self, int bofs)
1254 int iobase = self->io.fir_base;
1257 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1260 register_bank(iobase, 0);
1261 outb(0x00, iobase + IRCC_LCR_B);
1263 register_bank(iobase, 1);
1264 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1265 iobase + IRCC_SCE_CFGB);
1267 self->io.direction = IO_XMIT;
1269 /* Set BOF additional count for generating the min turn time */
1270 register_bank(iobase, 4);
1271 outb(bofs & 0xff, iobase + IRCC_BOF_COUNT_LO);
1272 ctrl = inb(iobase + IRCC_CONTROL) & 0xf0;
1273 outb(ctrl | ((bofs >> 8) & 0x0f), iobase + IRCC_BOF_COUNT_HI);
1275 /* Set max Tx frame size */
1276 outb(self->tx_buff.len >> 8, iobase + IRCC_TX_SIZE_HI);
1277 outb(self->tx_buff.len & 0xff, iobase + IRCC_TX_SIZE_LO);
1279 /*outb(UART_MCR_OUT2, self->io.sir_base + UART_MCR);*/
1281 /* Enable burst mode chip Tx DMA */
1282 register_bank(iobase, 1);
1283 outb(inb(iobase + IRCC_SCE_CFGB) | IRCC_CFGB_DMA_ENABLE |
1284 IRCC_CFGB_DMA_BURST, iobase + IRCC_SCE_CFGB);
1286 /* Setup DMA controller (must be done after enabling chip DMA) */
1287 irda_setup_dma(self->io.dma, self->tx_buff_dma, self->tx_buff.len,
1290 /* Enable interrupt */
1292 register_bank(iobase, 0);
1293 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
1294 outb(IRCC_MASTER_INT_EN, iobase + IRCC_MASTER);
1296 /* Enable transmit */
1297 outb(IRCC_LCR_B_SCE_TRANSMIT | IRCC_LCR_B_SIP_ENABLE, iobase + IRCC_LCR_B);
1301 * Function smsc_ircc_dma_xmit_complete (self)
1303 * The transfer of a frame in finished. This function will only be called
1304 * by the interrupt handler
1307 static void smsc_ircc_dma_xmit_complete(struct smsc_ircc_cb *self)
1309 int iobase = self->io.fir_base;
1311 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1314 register_bank(iobase, 0);
1315 outb(0x00, iobase + IRCC_LCR_B);
1317 register_bank(iobase, 1);
1318 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1319 iobase + IRCC_SCE_CFGB);
1321 /* Check for underrun! */
1322 register_bank(iobase, 0);
1323 if (inb(iobase + IRCC_LSR) & IRCC_LSR_UNDERRUN) {
1324 self->stats.tx_errors++;
1325 self->stats.tx_fifo_errors++;
1327 /* Reset error condition */
1328 register_bank(iobase, 0);
1329 outb(IRCC_MASTER_ERROR_RESET, iobase + IRCC_MASTER);
1330 outb(0x00, iobase + IRCC_MASTER);
1332 self->stats.tx_packets++;
1333 self->stats.tx_bytes += self->tx_buff.len;
1336 /* Check if it's time to change the speed */
1337 if (self->new_speed) {
1338 smsc_ircc_change_speed(self, self->new_speed);
1339 self->new_speed = 0;
1342 netif_wake_queue(self->netdev);
1346 * Function smsc_ircc_dma_receive(self)
1348 * Get ready for receiving a frame. The device will initiate a DMA
1349 * if it starts to receive a frame.
1352 static int smsc_ircc_dma_receive(struct smsc_ircc_cb *self)
1354 int iobase = self->io.fir_base;
1356 /* Turn off chip DMA */
1357 register_bank(iobase, 1);
1358 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1359 iobase + IRCC_SCE_CFGB);
1363 register_bank(iobase, 0);
1364 outb(0x00, iobase + IRCC_LCR_B);
1366 /* Turn off chip DMA */
1367 register_bank(iobase, 1);
1368 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1369 iobase + IRCC_SCE_CFGB);
1371 self->io.direction = IO_RECV;
1372 self->rx_buff.data = self->rx_buff.head;
1374 /* Set max Rx frame size */
1375 register_bank(iobase, 4);
1376 outb((2050 >> 8) & 0x0f, iobase + IRCC_RX_SIZE_HI);
1377 outb(2050 & 0xff, iobase + IRCC_RX_SIZE_LO);
1379 /* Setup DMA controller */
1380 irda_setup_dma(self->io.dma, self->rx_buff_dma, self->rx_buff.truesize,
1383 /* Enable burst mode chip Rx DMA */
1384 register_bank(iobase, 1);
1385 outb(inb(iobase + IRCC_SCE_CFGB) | IRCC_CFGB_DMA_ENABLE |
1386 IRCC_CFGB_DMA_BURST, iobase + IRCC_SCE_CFGB);
1388 /* Enable interrupt */
1389 register_bank(iobase, 0);
1390 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
1391 outb(IRCC_MASTER_INT_EN, iobase + IRCC_MASTER);
1393 /* Enable receiver */
1394 register_bank(iobase, 0);
1395 outb(IRCC_LCR_B_SCE_RECEIVE | IRCC_LCR_B_SIP_ENABLE,
1396 iobase + IRCC_LCR_B);
1402 * Function smsc_ircc_dma_receive_complete(self)
1404 * Finished with receiving frames
1407 static void smsc_ircc_dma_receive_complete(struct smsc_ircc_cb *self)
1409 struct sk_buff *skb;
1410 int len, msgcnt, lsr;
1411 int iobase = self->io.fir_base;
1413 register_bank(iobase, 0);
1415 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1418 register_bank(iobase, 0);
1419 outb(0x00, iobase + IRCC_LCR_B);
1421 register_bank(iobase, 0);
1422 outb(inb(iobase + IRCC_LSAR) & ~IRCC_LSAR_ADDRESS_MASK, iobase + IRCC_LSAR);
1423 lsr= inb(iobase + IRCC_LSR);
1424 msgcnt = inb(iobase + IRCC_LCR_B) & 0x08;
1426 IRDA_DEBUG(2, "%s: dma count = %d\n", __FUNCTION__,
1427 get_dma_residue(self->io.dma));
1429 len = self->rx_buff.truesize - get_dma_residue(self->io.dma);
1431 /* Look for errors */
1432 if (lsr & (IRCC_LSR_FRAME_ERROR | IRCC_LSR_CRC_ERROR | IRCC_LSR_SIZE_ERROR)) {
1433 self->stats.rx_errors++;
1434 if (lsr & IRCC_LSR_FRAME_ERROR)
1435 self->stats.rx_frame_errors++;
1436 if (lsr & IRCC_LSR_CRC_ERROR)
1437 self->stats.rx_crc_errors++;
1438 if (lsr & IRCC_LSR_SIZE_ERROR)
1439 self->stats.rx_length_errors++;
1440 if (lsr & (IRCC_LSR_UNDERRUN | IRCC_LSR_OVERRUN))
1441 self->stats.rx_length_errors++;
1446 len -= self->io.speed < 4000000 ? 2 : 4;
1448 if (len < 2 || len > 2050) {
1449 IRDA_WARNING("%s(), bogus len=%d\n", __FUNCTION__, len);
1452 IRDA_DEBUG(2, "%s: msgcnt = %d, len=%d\n", __FUNCTION__, msgcnt, len);
1454 skb = dev_alloc_skb(len + 1);
1456 IRDA_WARNING("%s(), memory squeeze, dropping frame.\n",
1460 /* Make sure IP header gets aligned */
1461 skb_reserve(skb, 1);
1463 memcpy(skb_put(skb, len), self->rx_buff.data, len);
1464 self->stats.rx_packets++;
1465 self->stats.rx_bytes += len;
1467 skb->dev = self->netdev;
1468 skb_reset_mac_header(skb);
1469 skb->protocol = htons(ETH_P_IRDA);
1474 * Function smsc_ircc_sir_receive (self)
1476 * Receive one frame from the infrared port
1479 static void smsc_ircc_sir_receive(struct smsc_ircc_cb *self)
1484 IRDA_ASSERT(self != NULL, return;);
1486 iobase = self->io.sir_base;
1489 * Receive all characters in Rx FIFO, unwrap and unstuff them.
1490 * async_unwrap_char will deliver all found frames
1493 async_unwrap_char(self->netdev, &self->stats, &self->rx_buff,
1494 inb(iobase + UART_RX));
1496 /* Make sure we don't stay here to long */
1497 if (boguscount++ > 32) {
1498 IRDA_DEBUG(2, "%s(), breaking!\n", __FUNCTION__);
1501 } while (inb(iobase + UART_LSR) & UART_LSR_DR);
1506 * Function smsc_ircc_interrupt (irq, dev_id, regs)
1508 * An interrupt from the chip has arrived. Time to do some work
1511 static irqreturn_t smsc_ircc_interrupt(int dummy, void *dev_id)
1513 struct net_device *dev = dev_id;
1514 struct smsc_ircc_cb *self = netdev_priv(dev);
1515 int iobase, iir, lcra, lsr;
1516 irqreturn_t ret = IRQ_NONE;
1518 /* Serialise the interrupt handler in various CPUs, stop Tx path */
1519 spin_lock(&self->lock);
1521 /* Check if we should use the SIR interrupt handler */
1522 if (self->io.speed <= SMSC_IRCC2_MAX_SIR_SPEED) {
1523 ret = smsc_ircc_interrupt_sir(dev);
1524 goto irq_ret_unlock;
1527 iobase = self->io.fir_base;
1529 register_bank(iobase, 0);
1530 iir = inb(iobase + IRCC_IIR);
1532 goto irq_ret_unlock;
1535 /* Disable interrupts */
1536 outb(0, iobase + IRCC_IER);
1537 lcra = inb(iobase + IRCC_LCR_A);
1538 lsr = inb(iobase + IRCC_LSR);
1540 IRDA_DEBUG(2, "%s(), iir = 0x%02x\n", __FUNCTION__, iir);
1542 if (iir & IRCC_IIR_EOM) {
1543 if (self->io.direction == IO_RECV)
1544 smsc_ircc_dma_receive_complete(self);
1546 smsc_ircc_dma_xmit_complete(self);
1548 smsc_ircc_dma_receive(self);
1551 if (iir & IRCC_IIR_ACTIVE_FRAME) {
1552 /*printk(KERN_WARNING "%s(): Active Frame\n", __FUNCTION__);*/
1555 /* Enable interrupts again */
1557 register_bank(iobase, 0);
1558 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
1561 spin_unlock(&self->lock);
1567 * Function irport_interrupt_sir (irq, dev_id)
1569 * Interrupt handler for SIR modes
1571 static irqreturn_t smsc_ircc_interrupt_sir(struct net_device *dev)
1573 struct smsc_ircc_cb *self = netdev_priv(dev);
1578 /* Already locked comming here in smsc_ircc_interrupt() */
1579 /*spin_lock(&self->lock);*/
1581 iobase = self->io.sir_base;
1583 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
1587 /* Clear interrupt */
1588 lsr = inb(iobase + UART_LSR);
1590 IRDA_DEBUG(4, "%s(), iir=%02x, lsr=%02x, iobase=%#x\n",
1591 __FUNCTION__, iir, lsr, iobase);
1595 IRDA_DEBUG(2, "%s(), RLSI\n", __FUNCTION__);
1598 /* Receive interrupt */
1599 smsc_ircc_sir_receive(self);
1602 if (lsr & UART_LSR_THRE)
1603 /* Transmitter ready for data */
1604 smsc_ircc_sir_write_wakeup(self);
1607 IRDA_DEBUG(0, "%s(), unhandled IIR=%#x\n",
1612 /* Make sure we don't stay here to long */
1613 if (boguscount++ > 100)
1616 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
1618 /*spin_unlock(&self->lock);*/
1625 * Function ircc_is_receiving (self)
1627 * Return TRUE is we are currently receiving a frame
1630 static int ircc_is_receiving(struct smsc_ircc_cb *self)
1635 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1637 IRDA_ASSERT(self != NULL, return FALSE;);
1639 IRDA_DEBUG(0, "%s: dma count = %d\n", __FUNCTION__,
1640 get_dma_residue(self->io.dma));
1642 status = (self->rx_buff.state != OUTSIDE_FRAME);
1648 static int smsc_ircc_request_irq(struct smsc_ircc_cb *self)
1652 error = request_irq(self->io.irq, smsc_ircc_interrupt, 0,
1653 self->netdev->name, self->netdev);
1655 IRDA_DEBUG(0, "%s(), unable to allocate irq=%d, err=%d\n",
1656 __FUNCTION__, self->io.irq, error);
1661 static void smsc_ircc_start_interrupts(struct smsc_ircc_cb *self)
1663 unsigned long flags;
1665 spin_lock_irqsave(&self->lock, flags);
1668 smsc_ircc_change_speed(self, SMSC_IRCC2_C_IRDA_FALLBACK_SPEED);
1670 spin_unlock_irqrestore(&self->lock, flags);
1673 static void smsc_ircc_stop_interrupts(struct smsc_ircc_cb *self)
1675 int iobase = self->io.fir_base;
1676 unsigned long flags;
1678 spin_lock_irqsave(&self->lock, flags);
1680 register_bank(iobase, 0);
1681 outb(0, iobase + IRCC_IER);
1682 outb(IRCC_MASTER_RESET, iobase + IRCC_MASTER);
1683 outb(0x00, iobase + IRCC_MASTER);
1685 spin_unlock_irqrestore(&self->lock, flags);
1690 * Function smsc_ircc_net_open (dev)
1695 static int smsc_ircc_net_open(struct net_device *dev)
1697 struct smsc_ircc_cb *self;
1700 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1702 IRDA_ASSERT(dev != NULL, return -1;);
1703 self = netdev_priv(dev);
1704 IRDA_ASSERT(self != NULL, return 0;);
1706 if (self->io.suspended) {
1707 IRDA_DEBUG(0, "%s(), device is suspended\n", __FUNCTION__);
1711 if (request_irq(self->io.irq, smsc_ircc_interrupt, 0, dev->name,
1713 IRDA_DEBUG(0, "%s(), unable to allocate irq=%d\n",
1714 __FUNCTION__, self->io.irq);
1718 smsc_ircc_start_interrupts(self);
1720 /* Give self a hardware name */
1721 /* It would be cool to offer the chip revision here - Jean II */
1722 sprintf(hwname, "SMSC @ 0x%03x", self->io.fir_base);
1725 * Open new IrLAP layer instance, now that everything should be
1726 * initialized properly
1728 self->irlap = irlap_open(dev, &self->qos, hwname);
1731 * Always allocate the DMA channel after the IRQ,
1732 * and clean up on failure.
1734 if (request_dma(self->io.dma, dev->name)) {
1735 smsc_ircc_net_close(dev);
1737 IRDA_WARNING("%s(), unable to allocate DMA=%d\n",
1738 __FUNCTION__, self->io.dma);
1742 netif_start_queue(dev);
1748 * Function smsc_ircc_net_close (dev)
1753 static int smsc_ircc_net_close(struct net_device *dev)
1755 struct smsc_ircc_cb *self;
1757 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1759 IRDA_ASSERT(dev != NULL, return -1;);
1760 self = netdev_priv(dev);
1761 IRDA_ASSERT(self != NULL, return 0;);
1764 netif_stop_queue(dev);
1766 /* Stop and remove instance of IrLAP */
1768 irlap_close(self->irlap);
1771 smsc_ircc_stop_interrupts(self);
1773 /* if we are called from smsc_ircc_resume we don't have IRQ reserved */
1774 if (!self->io.suspended)
1775 free_irq(self->io.irq, dev);
1777 disable_dma(self->io.dma);
1778 free_dma(self->io.dma);
1783 static int smsc_ircc_suspend(struct platform_device *dev, pm_message_t state)
1785 struct smsc_ircc_cb *self = platform_get_drvdata(dev);
1787 if (!self->io.suspended) {
1788 IRDA_DEBUG(1, "%s, Suspending\n", driver_name);
1791 if (netif_running(self->netdev)) {
1792 netif_device_detach(self->netdev);
1793 smsc_ircc_stop_interrupts(self);
1794 free_irq(self->io.irq, self->netdev);
1795 disable_dma(self->io.dma);
1797 self->io.suspended = 1;
1804 static int smsc_ircc_resume(struct platform_device *dev)
1806 struct smsc_ircc_cb *self = platform_get_drvdata(dev);
1808 if (self->io.suspended) {
1809 IRDA_DEBUG(1, "%s, Waking up\n", driver_name);
1812 smsc_ircc_init_chip(self);
1813 if (netif_running(self->netdev)) {
1814 if (smsc_ircc_request_irq(self)) {
1816 * Don't fail resume process, just kill this
1819 unregister_netdevice(self->netdev);
1821 enable_dma(self->io.dma);
1822 smsc_ircc_start_interrupts(self);
1823 netif_device_attach(self->netdev);
1826 self->io.suspended = 0;
1833 * Function smsc_ircc_close (self)
1835 * Close driver instance
1838 static int __exit smsc_ircc_close(struct smsc_ircc_cb *self)
1840 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1842 IRDA_ASSERT(self != NULL, return -1;);
1844 platform_device_unregister(self->pldev);
1846 /* Remove netdevice */
1847 unregister_netdev(self->netdev);
1849 smsc_ircc_stop_interrupts(self);
1851 /* Release the PORTS that this driver is using */
1852 IRDA_DEBUG(0, "%s(), releasing 0x%03x\n", __FUNCTION__,
1855 release_region(self->io.fir_base, self->io.fir_ext);
1857 IRDA_DEBUG(0, "%s(), releasing 0x%03x\n", __FUNCTION__,
1860 release_region(self->io.sir_base, self->io.sir_ext);
1862 if (self->tx_buff.head)
1863 dma_free_coherent(NULL, self->tx_buff.truesize,
1864 self->tx_buff.head, self->tx_buff_dma);
1866 if (self->rx_buff.head)
1867 dma_free_coherent(NULL, self->rx_buff.truesize,
1868 self->rx_buff.head, self->rx_buff_dma);
1870 free_netdev(self->netdev);
1875 static void __exit smsc_ircc_cleanup(void)
1879 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1881 for (i = 0; i < 2; i++) {
1883 smsc_ircc_close(dev_self[i]);
1886 if (pnp_driver_registered)
1887 pnp_unregister_driver(&smsc_ircc_pnp_driver);
1889 platform_driver_unregister(&smsc_ircc_driver);
1893 * Start SIR operations
1895 * This function *must* be called with spinlock held, because it may
1896 * be called from the irq handler (via smsc_ircc_change_speed()). - Jean II
1898 void smsc_ircc_sir_start(struct smsc_ircc_cb *self)
1900 struct net_device *dev;
1901 int fir_base, sir_base;
1903 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1905 IRDA_ASSERT(self != NULL, return;);
1907 IRDA_ASSERT(dev != NULL, return;);
1908 dev->hard_start_xmit = &smsc_ircc_hard_xmit_sir;
1910 fir_base = self->io.fir_base;
1911 sir_base = self->io.sir_base;
1913 /* Reset everything */
1914 outb(IRCC_MASTER_RESET, fir_base + IRCC_MASTER);
1916 #if SMSC_IRCC2_C_SIR_STOP
1917 /*smsc_ircc_sir_stop(self);*/
1920 register_bank(fir_base, 1);
1921 outb(((inb(fir_base + IRCC_SCE_CFGA) & IRCC_SCE_CFGA_BLOCK_CTRL_BITS_MASK) | IRCC_CFGA_IRDA_SIR_A), fir_base + IRCC_SCE_CFGA);
1923 /* Initialize UART */
1924 outb(UART_LCR_WLEN8, sir_base + UART_LCR); /* Reset DLAB */
1925 outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), sir_base + UART_MCR);
1927 /* Turn on interrups */
1928 outb(UART_IER_RLSI | UART_IER_RDI |UART_IER_THRI, sir_base + UART_IER);
1930 IRDA_DEBUG(3, "%s() - exit\n", __FUNCTION__);
1932 outb(0x00, fir_base + IRCC_MASTER);
1935 #if SMSC_IRCC2_C_SIR_STOP
1936 void smsc_ircc_sir_stop(struct smsc_ircc_cb *self)
1940 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1941 iobase = self->io.sir_base;
1944 outb(0, iobase + UART_MCR);
1946 /* Turn off interrupts */
1947 outb(0, iobase + UART_IER);
1952 * Function smsc_sir_write_wakeup (self)
1954 * Called by the SIR interrupt handler when there's room for more data.
1955 * If we have more packets to send, we send them here.
1958 static void smsc_ircc_sir_write_wakeup(struct smsc_ircc_cb *self)
1964 IRDA_ASSERT(self != NULL, return;);
1966 IRDA_DEBUG(4, "%s\n", __FUNCTION__);
1968 iobase = self->io.sir_base;
1970 /* Finished with frame? */
1971 if (self->tx_buff.len > 0) {
1972 /* Write data left in transmit buffer */
1973 actual = smsc_ircc_sir_write(iobase, self->io.fifo_size,
1974 self->tx_buff.data, self->tx_buff.len);
1975 self->tx_buff.data += actual;
1976 self->tx_buff.len -= actual;
1979 /*if (self->tx_buff.len ==0) {*/
1982 * Now serial buffer is almost free & we can start
1983 * transmission of another packet. But first we must check
1984 * if we need to change the speed of the hardware
1986 if (self->new_speed) {
1987 IRDA_DEBUG(5, "%s(), Changing speed to %d.\n",
1988 __FUNCTION__, self->new_speed);
1989 smsc_ircc_sir_wait_hw_transmitter_finish(self);
1990 smsc_ircc_change_speed(self, self->new_speed);
1991 self->new_speed = 0;
1993 /* Tell network layer that we want more frames */
1994 netif_wake_queue(self->netdev);
1996 self->stats.tx_packets++;
1998 if (self->io.speed <= 115200) {
2000 * Reset Rx FIFO to make sure that all reflected transmit data
2001 * is discarded. This is needed for half duplex operation
2003 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR;
2004 fcr |= self->io.speed < 38400 ?
2005 UART_FCR_TRIGGER_1 : UART_FCR_TRIGGER_14;
2007 outb(fcr, iobase + UART_FCR);
2009 /* Turn on receive interrupts */
2010 outb(UART_IER_RDI, iobase + UART_IER);
2016 * Function smsc_ircc_sir_write (iobase, fifo_size, buf, len)
2018 * Fill Tx FIFO with transmit data
2021 static int smsc_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len)
2025 /* Tx FIFO should be empty! */
2026 if (!(inb(iobase + UART_LSR) & UART_LSR_THRE)) {
2027 IRDA_WARNING("%s(), failed, fifo not empty!\n", __FUNCTION__);
2031 /* Fill FIFO with current frame */
2032 while (fifo_size-- > 0 && actual < len) {
2033 /* Transmit next byte */
2034 outb(buf[actual], iobase + UART_TX);
2041 * Function smsc_ircc_is_receiving (self)
2043 * Returns true is we are currently receiving data
2046 static int smsc_ircc_is_receiving(struct smsc_ircc_cb *self)
2048 return (self->rx_buff.state != OUTSIDE_FRAME);
2053 * Function smsc_ircc_probe_transceiver(self)
2055 * Tries to find the used Transceiver
2058 static void smsc_ircc_probe_transceiver(struct smsc_ircc_cb *self)
2062 IRDA_ASSERT(self != NULL, return;);
2064 for (i = 0; smsc_transceivers[i].name != NULL; i++)
2065 if (smsc_transceivers[i].probe(self->io.fir_base)) {
2066 IRDA_MESSAGE(" %s transceiver found\n",
2067 smsc_transceivers[i].name);
2068 self->transceiver= i + 1;
2072 IRDA_MESSAGE("No transceiver found. Defaulting to %s\n",
2073 smsc_transceivers[SMSC_IRCC2_C_DEFAULT_TRANSCEIVER].name);
2075 self->transceiver = SMSC_IRCC2_C_DEFAULT_TRANSCEIVER;
2080 * Function smsc_ircc_set_transceiver_for_speed(self, speed)
2082 * Set the transceiver according to the speed
2085 static void smsc_ircc_set_transceiver_for_speed(struct smsc_ircc_cb *self, u32 speed)
2089 trx = self->transceiver;
2091 smsc_transceivers[trx - 1].set_for_speed(self->io.fir_base, speed);
2095 * Function smsc_ircc_wait_hw_transmitter_finish ()
2097 * Wait for the real end of HW transmission
2099 * The UART is a strict FIFO, and we get called only when we have finished
2100 * pushing data to the FIFO, so the maximum amount of time we must wait
2101 * is only for the FIFO to drain out.
2103 * We use a simple calibrated loop. We may need to adjust the loop
2104 * delay (udelay) to balance I/O traffic and latency. And we also need to
2105 * adjust the maximum timeout.
2106 * It would probably be better to wait for the proper interrupt,
2107 * but it doesn't seem to be available.
2109 * We can't use jiffies or kernel timers because :
2110 * 1) We are called from the interrupt handler, which disable softirqs,
2111 * so jiffies won't be increased
2112 * 2) Jiffies granularity is usually very coarse (10ms), and we don't
2113 * want to wait that long to detect stuck hardware.
2117 static void smsc_ircc_sir_wait_hw_transmitter_finish(struct smsc_ircc_cb *self)
2119 int iobase = self->io.sir_base;
2120 int count = SMSC_IRCC2_HW_TRANSMITTER_TIMEOUT_US;
2122 /* Calibrated busy loop */
2123 while (count-- > 0 && !(inb(iobase + UART_LSR) & UART_LSR_TEMT))
2127 IRDA_DEBUG(0, "%s(): stuck transmitter\n", __FUNCTION__);
2133 * REVISIT we can be told about the device by PNP, and should use that info
2134 * instead of probing hardware and creating a platform_device ...
2137 static int __init smsc_ircc_look_for_chips(void)
2139 struct smsc_chip_address *address;
2141 unsigned int cfg_base, found;
2144 address = possible_addresses;
2146 while (address->cfg_base) {
2147 cfg_base = address->cfg_base;
2149 /*printk(KERN_WARNING "%s(): probing: 0x%02x for: 0x%02x\n", __FUNCTION__, cfg_base, address->type);*/
2151 if (address->type & SMSCSIO_TYPE_FDC) {
2153 if (address->type & SMSCSIO_TYPE_FLAT)
2154 if (!smsc_superio_flat(fdc_chips_flat, cfg_base, type))
2157 if (address->type & SMSCSIO_TYPE_PAGED)
2158 if (!smsc_superio_paged(fdc_chips_paged, cfg_base, type))
2161 if (address->type & SMSCSIO_TYPE_LPC) {
2163 if (address->type & SMSCSIO_TYPE_FLAT)
2164 if (!smsc_superio_flat(lpc_chips_flat, cfg_base, type))
2167 if (address->type & SMSCSIO_TYPE_PAGED)
2168 if (!smsc_superio_paged(lpc_chips_paged, cfg_base, type))
2177 * Function smsc_superio_flat (chip, base, type)
2179 * Try to get configuration of a smc SuperIO chip with flat register model
2182 static int __init smsc_superio_flat(const struct smsc_chip *chips, unsigned short cfgbase, char *type)
2184 unsigned short firbase, sirbase;
2188 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
2190 if (smsc_ircc_probe(cfgbase, SMSCSIOFLAT_DEVICEID_REG, chips, type) == NULL)
2193 outb(SMSCSIOFLAT_UARTMODE0C_REG, cfgbase);
2194 mode = inb(cfgbase + 1);
2196 /*printk(KERN_WARNING "%s(): mode: 0x%02x\n", __FUNCTION__, mode);*/
2198 if (!(mode & SMSCSIOFLAT_UART2MODE_VAL_IRDA))
2199 IRDA_WARNING("%s(): IrDA not enabled\n", __FUNCTION__);
2201 outb(SMSCSIOFLAT_UART2BASEADDR_REG, cfgbase);
2202 sirbase = inb(cfgbase + 1) << 2;
2205 outb(SMSCSIOFLAT_FIRBASEADDR_REG, cfgbase);
2206 firbase = inb(cfgbase + 1) << 3;
2209 outb(SMSCSIOFLAT_FIRDMASELECT_REG, cfgbase);
2210 dma = inb(cfgbase + 1) & SMSCSIOFLAT_FIRDMASELECT_MASK;
2213 outb(SMSCSIOFLAT_UARTIRQSELECT_REG, cfgbase);
2214 irq = inb(cfgbase + 1) & SMSCSIOFLAT_UART2IRQSELECT_MASK;
2216 IRDA_MESSAGE("%s(): fir: 0x%02x, sir: 0x%02x, dma: %02d, irq: %d, mode: 0x%02x\n", __FUNCTION__, firbase, sirbase, dma, irq, mode);
2218 if (firbase && smsc_ircc_open(firbase, sirbase, dma, irq) == 0)
2221 /* Exit configuration */
2222 outb(SMSCSIO_CFGEXITKEY, cfgbase);
2228 * Function smsc_superio_paged (chip, base, type)
2230 * Try to get configuration of a smc SuperIO chip with paged register model
2233 static int __init smsc_superio_paged(const struct smsc_chip *chips, unsigned short cfg_base, char *type)
2235 unsigned short fir_io, sir_io;
2238 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
2240 if (smsc_ircc_probe(cfg_base, 0x20, chips, type) == NULL)
2243 /* Select logical device (UART2) */
2244 outb(0x07, cfg_base);
2245 outb(0x05, cfg_base + 1);
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);
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); /* ??? */
2260 if (fir_io && smsc_ircc_open(fir_io, sir_io, ircc_dma, ircc_irq) == 0)
2263 /* Exit configuration */
2264 outb(SMSCSIO_CFGEXITKEY, cfg_base);
2270 static int __init smsc_access(unsigned short cfg_base, unsigned char reg)
2272 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
2274 outb(reg, cfg_base);
2275 return inb(cfg_base) != reg ? -1 : 0;
2278 static const struct smsc_chip * __init smsc_ircc_probe(unsigned short cfg_base, u8 reg, const struct smsc_chip *chip, char *type)
2280 u8 devid, xdevid, rev;
2282 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
2284 /* Leave configuration */
2286 outb(SMSCSIO_CFGEXITKEY, cfg_base);
2288 if (inb(cfg_base) == SMSCSIO_CFGEXITKEY) /* not a smc superio chip */
2291 outb(reg, cfg_base);
2293 xdevid = inb(cfg_base + 1);
2295 /* Enter configuration */
2297 outb(SMSCSIO_CFGACCESSKEY, cfg_base);
2300 if (smsc_access(cfg_base,0x55)) /* send second key and check */
2304 /* probe device ID */
2306 if (smsc_access(cfg_base, reg))
2309 devid = inb(cfg_base + 1);
2311 if (devid == 0 || devid == 0xff) /* typical values for unused port */
2314 /* probe revision ID */
2316 if (smsc_access(cfg_base, reg + 1))
2319 rev = inb(cfg_base + 1);
2321 if (rev >= 128) /* i think this will make no sense */
2324 if (devid == xdevid) /* protection against false positives */
2327 /* Check for expected device ID; are there others? */
2329 while (chip->devid != devid) {
2333 if (chip->name == NULL)
2337 IRDA_MESSAGE("found SMC SuperIO Chip (devid=0x%02x rev=%02X base=0x%04x): %s%s\n",
2338 devid, rev, cfg_base, type, chip->name);
2340 if (chip->rev > rev) {
2341 IRDA_MESSAGE("Revision higher than expected\n");
2345 if (chip->flags & NoIRDA)
2346 IRDA_MESSAGE("chipset does not support IRDA\n");
2351 static int __init smsc_superio_fdc(unsigned short cfg_base)
2355 if (!request_region(cfg_base, 2, driver_name)) {
2356 IRDA_WARNING("%s: can't get cfg_base of 0x%03x\n",
2357 __FUNCTION__, cfg_base);
2359 if (!smsc_superio_flat(fdc_chips_flat, cfg_base, "FDC") ||
2360 !smsc_superio_paged(fdc_chips_paged, cfg_base, "FDC"))
2363 release_region(cfg_base, 2);
2369 static int __init smsc_superio_lpc(unsigned short cfg_base)
2373 if (!request_region(cfg_base, 2, driver_name)) {
2374 IRDA_WARNING("%s: can't get cfg_base of 0x%03x\n",
2375 __FUNCTION__, cfg_base);
2377 if (!smsc_superio_flat(lpc_chips_flat, cfg_base, "LPC") ||
2378 !smsc_superio_paged(lpc_chips_paged, cfg_base, "LPC"))
2381 release_region(cfg_base, 2);
2387 * Look for some specific subsystem setups that need
2388 * pre-configuration not properly done by the BIOS (especially laptops)
2389 * This code is based in part on smcinit.c, tosh1800-smcinit.c
2390 * and tosh2450-smcinit.c. The table lists the device entries
2391 * for ISA bridges with an LPC (Low Pin Count) controller which
2392 * handles the communication with the SMSC device. After the LPC
2393 * controller is initialized through PCI, the SMSC device is initialized
2394 * through a dedicated port in the ISA port-mapped I/O area, this latter
2395 * area is used to configure the SMSC device with default
2396 * SIR and FIR I/O ports, DMA and IRQ. Different vendors have
2397 * used different sets of parameters and different control port
2398 * addresses making a subsystem device table necessary.
2401 #define PCIID_VENDOR_INTEL 0x8086
2402 #define PCIID_VENDOR_ALI 0x10b9
2403 static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __initdata = {
2405 * Subsystems needing entries:
2406 * 0x10b9:0x1533 0x103c:0x0850 HP nx9010 family
2407 * 0x10b9:0x1533 0x0e11:0x005a Compaq nc4000 family
2408 * 0x8086:0x24cc 0x0e11:0x002a HP nx9000 family
2412 .vendor = PCIID_VENDOR_INTEL, /* Intel 82801DBM LPC bridge */
2414 .subvendor = 0x103c,
2415 .subdevice = 0x08bc,
2421 .preconfigure = preconfigure_through_82801,
2422 .name = "HP nx5000 family",
2425 .vendor = PCIID_VENDOR_INTEL, /* Intel 82801DBM LPC bridge */
2427 .subvendor = 0x103c,
2428 .subdevice = 0x088c,
2429 /* Quite certain these are the same for nc8000 as for nc6000 */
2435 .preconfigure = preconfigure_through_82801,
2436 .name = "HP nc8000 family",
2439 .vendor = PCIID_VENDOR_INTEL, /* Intel 82801DBM LPC bridge */
2441 .subvendor = 0x103c,
2442 .subdevice = 0x0890,
2448 .preconfigure = preconfigure_through_82801,
2449 .name = "HP nc6000 family",
2452 .vendor = PCIID_VENDOR_INTEL, /* Intel 82801DBM LPC bridge */
2454 .subvendor = 0x0e11,
2455 .subdevice = 0x0860,
2456 /* I assume these are the same for x1000 as for the others */
2462 .preconfigure = preconfigure_through_82801,
2463 .name = "Compaq x1000 family",
2466 /* Intel 82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge */
2467 .vendor = PCIID_VENDOR_INTEL,
2469 .subvendor = 0x1179,
2470 .subdevice = 0xffff, /* 0xffff is "any" */
2476 .preconfigure = preconfigure_through_82801,
2477 .name = "Toshiba laptop with Intel 82801DB/DBL LPC bridge",
2480 .vendor = PCIID_VENDOR_INTEL, /* Intel 82801CAM ISA bridge */
2482 .subvendor = 0x1179,
2483 .subdevice = 0xffff, /* 0xffff is "any" */
2489 .preconfigure = preconfigure_through_82801,
2490 .name = "Toshiba laptop with Intel 82801CAM ISA bridge",
2493 /* 82801DBM (ICH4-M) LPC Interface Bridge */
2494 .vendor = PCIID_VENDOR_INTEL,
2496 .subvendor = 0x1179,
2497 .subdevice = 0xffff, /* 0xffff is "any" */
2503 .preconfigure = preconfigure_through_82801,
2504 .name = "Toshiba laptop with Intel 8281DBM LPC bridge",
2507 /* ALi M1533/M1535 PCI to ISA Bridge [Aladdin IV/V/V+] */
2508 .vendor = PCIID_VENDOR_ALI,
2510 .subvendor = 0x1179,
2511 .subdevice = 0xffff, /* 0xffff is "any" */
2517 .preconfigure = preconfigure_through_ali,
2518 .name = "Toshiba laptop with ALi ISA bridge",
2525 * This sets up the basic SMSC parameters
2526 * (FIR port, SIR port, FIR DMA, FIR IRQ)
2527 * through the chip configuration port.
2529 static int __init preconfigure_smsc_chip(struct
2530 smsc_ircc_subsystem_configuration
2533 unsigned short iobase = conf->cfg_base;
2534 unsigned char tmpbyte;
2536 outb(LPC47N227_CFGACCESSKEY, iobase); // enter configuration state
2537 outb(SMSCSIOFLAT_DEVICEID_REG, iobase); // set for device ID
2538 tmpbyte = inb(iobase +1); // Read device ID
2540 "Detected Chip id: 0x%02x, setting up registers...\n",
2543 /* Disable UART1 and set up SIR I/O port */
2544 outb(0x24, iobase); // select CR24 - UART1 base addr
2545 outb(0x00, iobase + 1); // disable UART1
2546 outb(SMSCSIOFLAT_UART2BASEADDR_REG, iobase); // select CR25 - UART2 base addr
2547 outb( (conf->sir_io >> 2), iobase + 1); // bits 2-9 of 0x3f8
2548 tmpbyte = inb(iobase + 1);
2549 if (tmpbyte != (conf->sir_io >> 2) ) {
2550 IRDA_WARNING("ERROR: could not configure SIR ioport.\n");
2551 IRDA_WARNING("Try to supply ircc_cfg argument.\n");
2555 /* Set up FIR IRQ channel for UART2 */
2556 outb(SMSCSIOFLAT_UARTIRQSELECT_REG, iobase); // select CR28 - UART1,2 IRQ select
2557 tmpbyte = inb(iobase + 1);
2558 tmpbyte &= SMSCSIOFLAT_UART1IRQSELECT_MASK; // Do not touch the UART1 portion
2559 tmpbyte |= (conf->fir_irq & SMSCSIOFLAT_UART2IRQSELECT_MASK);
2560 outb(tmpbyte, iobase + 1);
2561 tmpbyte = inb(iobase + 1) & SMSCSIOFLAT_UART2IRQSELECT_MASK;
2562 if (tmpbyte != conf->fir_irq) {
2563 IRDA_WARNING("ERROR: could not configure FIR IRQ channel.\n");
2567 /* Set up FIR I/O port */
2568 outb(SMSCSIOFLAT_FIRBASEADDR_REG, iobase); // CR2B - SCE (FIR) base addr
2569 outb((conf->fir_io >> 3), iobase + 1);
2570 tmpbyte = inb(iobase + 1);
2571 if (tmpbyte != (conf->fir_io >> 3) ) {
2572 IRDA_WARNING("ERROR: could not configure FIR I/O port.\n");
2576 /* Set up FIR DMA channel */
2577 outb(SMSCSIOFLAT_FIRDMASELECT_REG, iobase); // CR2C - SCE (FIR) DMA select
2578 outb((conf->fir_dma & LPC47N227_FIRDMASELECT_MASK), iobase + 1); // DMA
2579 tmpbyte = inb(iobase + 1) & LPC47N227_FIRDMASELECT_MASK;
2580 if (tmpbyte != (conf->fir_dma & LPC47N227_FIRDMASELECT_MASK)) {
2581 IRDA_WARNING("ERROR: could not configure FIR DMA channel.\n");
2585 outb(SMSCSIOFLAT_UARTMODE0C_REG, iobase); // CR0C - UART mode
2586 tmpbyte = inb(iobase + 1);
2587 tmpbyte &= ~SMSCSIOFLAT_UART2MODE_MASK |
2588 SMSCSIOFLAT_UART2MODE_VAL_IRDA;
2589 outb(tmpbyte, iobase + 1); // enable IrDA (HPSIR) mode, high speed
2591 outb(LPC47N227_APMBOOTDRIVE_REG, iobase); // CR07 - Auto Pwr Mgt/boot drive sel
2592 tmpbyte = inb(iobase + 1);
2593 outb(tmpbyte | LPC47N227_UART2AUTOPWRDOWN_MASK, iobase + 1); // enable UART2 autopower down
2595 /* This one was not part of tosh1800 */
2596 outb(0x0a, iobase); // CR0a - ecp fifo / ir mux
2597 tmpbyte = inb(iobase + 1);
2598 outb(tmpbyte | 0x40, iobase + 1); // send active device to ir port
2600 outb(LPC47N227_UART12POWER_REG, iobase); // CR02 - UART 1,2 power
2601 tmpbyte = inb(iobase + 1);
2602 outb(tmpbyte | LPC47N227_UART2POWERDOWN_MASK, iobase + 1); // UART2 power up mode, UART1 power down
2604 outb(LPC47N227_FDCPOWERVALIDCONF_REG, iobase); // CR00 - FDC Power/valid config cycle
2605 tmpbyte = inb(iobase + 1);
2606 outb(tmpbyte | LPC47N227_VALID_MASK, iobase + 1); // valid config cycle done
2608 outb(LPC47N227_CFGEXITKEY, iobase); // Exit configuration
2613 /* 82801CAM generic registers */
2616 #define PIRQ_A_D_ROUT 0x60
2617 #define SIRQ_CNTL 0x64
2618 #define PIRQ_E_H_ROUT 0x68
2619 #define PCI_DMA_C 0x90
2620 /* LPC-specific registers */
2621 #define COM_DEC 0xe0
2622 #define GEN1_DEC 0xe4
2624 #define GEN2_DEC 0xec
2626 * Sets up the I/O range using the 82801CAM ISA bridge, 82801DBM LPC bridge
2627 * or Intel 82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge.
2628 * They all work the same way!
2630 static int __init preconfigure_through_82801(struct pci_dev *dev,
2632 smsc_ircc_subsystem_configuration
2635 unsigned short tmpword;
2636 unsigned char tmpbyte;
2638 IRDA_MESSAGE("Setting up Intel 82801 controller and SMSC device\n");
2640 * Select the range for the COMA COM port (SIR)
2643 * Bit 6-4, COMB decode range
2645 * Bit 2-0, COMA decode range
2648 * 000 = 0x3f8-0x3ff (COM1)
2649 * 001 = 0x2f8-0x2ff (COM2)
2653 * 101 = 0x2e8-0x2ef (COM4)
2655 * 111 = 0x3e8-0x3ef (COM3)
2657 pci_read_config_byte(dev, COM_DEC, &tmpbyte);
2658 tmpbyte &= 0xf8; /* mask COMA bits */
2659 switch(conf->sir_io) {
2685 tmpbyte |= 0x01; /* COM2 default */
2687 IRDA_DEBUG(1, "COM_DEC (write): 0x%02x\n", tmpbyte);
2688 pci_write_config_byte(dev, COM_DEC, tmpbyte);
2690 /* Enable Low Pin Count interface */
2691 pci_read_config_word(dev, LPC_EN, &tmpword);
2692 /* These seem to be set up at all times,
2693 * just make sure it is properly set.
2695 switch(conf->cfg_base) {
2709 IRDA_WARNING("Uncommon I/O base address: 0x%04x\n",
2713 tmpword &= 0xfffd; /* disable LPC COMB */
2714 tmpword |= 0x0001; /* set bit 0 : enable LPC COMA addr range (GEN2) */
2715 IRDA_DEBUG(1, "LPC_EN (write): 0x%04x\n", tmpword);
2716 pci_write_config_word(dev, LPC_EN, tmpword);
2719 * Configure LPC DMA channel
2721 * Bit 15-14: DMA channel 7 select
2722 * Bit 13-12: DMA channel 6 select
2723 * Bit 11-10: DMA channel 5 select
2725 * Bit 7-6: DMA channel 3 select
2726 * Bit 5-4: DMA channel 2 select
2727 * Bit 3-2: DMA channel 1 select
2728 * Bit 1-0: DMA channel 0 select
2729 * 00 = Reserved value
2731 * 10 = Reserved value
2734 pci_read_config_word(dev, PCI_DMA_C, &tmpword);
2735 switch(conf->fir_dma) {
2758 break; /* do not change settings */
2760 IRDA_DEBUG(1, "PCI_DMA_C (write): 0x%04x\n", tmpword);
2761 pci_write_config_word(dev, PCI_DMA_C, tmpword);
2765 * Bit 15-4: Generic I/O range
2766 * Bit 3-1: reserved (read as 0)
2767 * Bit 0: enable GEN2 range on LPC I/F
2769 tmpword = conf->fir_io & 0xfff8;
2771 IRDA_DEBUG(1, "GEN2_DEC (write): 0x%04x\n", tmpword);
2772 pci_write_config_word(dev, GEN2_DEC, tmpword);
2774 /* Pre-configure chip */
2775 return preconfigure_smsc_chip(conf);
2779 * Pre-configure a certain port on the ALi 1533 bridge.
2780 * This is based on reverse-engineering since ALi does not
2781 * provide any data sheet for the 1533 chip.
2783 static void __init preconfigure_ali_port(struct pci_dev *dev,
2784 unsigned short port)
2787 /* These bits obviously control the different ports */
2789 unsigned char tmpbyte;
2810 IRDA_ERROR("Failed to configure unsupported port on ALi 1533 bridge: 0x%04x\n", port);
2814 pci_read_config_byte(dev, reg, &tmpbyte);
2815 /* Turn on the right bits */
2817 pci_write_config_byte(dev, reg, tmpbyte);
2818 IRDA_MESSAGE("Activated ALi 1533 ISA bridge port 0x%04x.\n", port);
2822 static int __init preconfigure_through_ali(struct pci_dev *dev,
2824 smsc_ircc_subsystem_configuration
2827 /* Configure the two ports on the ALi 1533 */
2828 preconfigure_ali_port(dev, conf->sir_io);
2829 preconfigure_ali_port(dev, conf->fir_io);
2831 /* Pre-configure chip */
2832 return preconfigure_smsc_chip(conf);
2835 static int __init smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg,
2836 unsigned short ircc_fir,
2837 unsigned short ircc_sir,
2838 unsigned char ircc_dma,
2839 unsigned char ircc_irq)
2841 struct pci_dev *dev = NULL;
2842 unsigned short ss_vendor = 0x0000;
2843 unsigned short ss_device = 0x0000;
2846 dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev);
2848 while (dev != NULL) {
2849 struct smsc_ircc_subsystem_configuration *conf;
2852 * Cache the subsystem vendor/device:
2853 * some manufacturers fail to set this for all components,
2854 * so we save it in case there is just 0x0000 0x0000 on the
2855 * device we want to check.
2857 if (dev->subsystem_vendor != 0x0000U) {
2858 ss_vendor = dev->subsystem_vendor;
2859 ss_device = dev->subsystem_device;
2861 conf = subsystem_configurations;
2862 for( ; conf->subvendor; conf++) {
2863 if(conf->vendor == dev->vendor &&
2864 conf->device == dev->device &&
2865 conf->subvendor == ss_vendor &&
2866 /* Sometimes these are cached values */
2867 (conf->subdevice == ss_device ||
2868 conf->subdevice == 0xffff)) {
2869 struct smsc_ircc_subsystem_configuration
2872 memcpy(&tmpconf, conf,
2873 sizeof(struct smsc_ircc_subsystem_configuration));
2876 * Override the default values with anything
2877 * passed in as parameter
2880 tmpconf.cfg_base = ircc_cfg;
2882 tmpconf.fir_io = ircc_fir;
2884 tmpconf.sir_io = ircc_sir;
2885 if (ircc_dma != DMA_INVAL)
2886 tmpconf.fir_dma = ircc_dma;
2887 if (ircc_irq != IRQ_INVAL)
2888 tmpconf.fir_irq = ircc_irq;
2890 IRDA_MESSAGE("Detected unconfigured %s SMSC IrDA chip, pre-configuring device.\n", conf->name);
2891 if (conf->preconfigure)
2892 ret = conf->preconfigure(dev, &tmpconf);
2897 dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev);
2902 #endif // CONFIG_PCI
2904 /************************************************
2906 * Transceivers specific functions
2908 ************************************************/
2912 * Function smsc_ircc_set_transceiver_smsc_ircc_atc(fir_base, speed)
2914 * Program transceiver through smsc-ircc ATC circuitry
2918 static void smsc_ircc_set_transceiver_smsc_ircc_atc(int fir_base, u32 speed)
2920 unsigned long jiffies_now, jiffies_timeout;
2923 jiffies_now = jiffies;
2924 jiffies_timeout = jiffies + SMSC_IRCC2_ATC_PROGRAMMING_TIMEOUT_JIFFIES;
2927 register_bank(fir_base, 4);
2928 outb((inb(fir_base + IRCC_ATC) & IRCC_ATC_MASK) | IRCC_ATC_nPROGREADY|IRCC_ATC_ENABLE,
2929 fir_base + IRCC_ATC);
2931 while ((val = (inb(fir_base + IRCC_ATC) & IRCC_ATC_nPROGREADY)) &&
2932 !time_after(jiffies, jiffies_timeout))
2936 IRDA_WARNING("%s(): ATC: 0x%02x\n", __FUNCTION__,
2937 inb(fir_base + IRCC_ATC));
2941 * Function smsc_ircc_probe_transceiver_smsc_ircc_atc(fir_base)
2943 * Probe transceiver smsc-ircc ATC circuitry
2947 static int smsc_ircc_probe_transceiver_smsc_ircc_atc(int fir_base)
2953 * Function smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(self, speed)
2959 static void smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(int fir_base, u32 speed)
2970 fast_mode = IRCC_LCR_A_FAST;
2973 register_bank(fir_base, 0);
2974 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast_mode, fir_base + IRCC_LCR_A);
2978 * Function smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(fir_base)
2984 static int smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(int fir_base)
2990 * Function smsc_ircc_set_transceiver_toshiba_sat1800(fir_base, speed)
2996 static void smsc_ircc_set_transceiver_toshiba_sat1800(int fir_base, u32 speed)
3007 fast_mode = /*IRCC_LCR_A_FAST |*/ IRCC_LCR_A_GP_DATA;
3011 /* This causes an interrupt */
3012 register_bank(fir_base, 0);
3013 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast_mode, fir_base + IRCC_LCR_A);
3017 * Function smsc_ircc_probe_transceiver_toshiba_sat1800(fir_base)
3023 static int smsc_ircc_probe_transceiver_toshiba_sat1800(int fir_base)
3029 module_init(smsc_ircc_init);
3030 module_exit(smsc_ircc_cleanup);