1 /*********************************************************************
3 * Description: Driver for the SMC Infrared Communications Controller
4 * Author: Daniele Peri (peri@csai.unipa.it)
9 * Copyright (c) 2002 Daniele Peri
10 * All Rights Reserved.
11 * Copyright (c) 2002 Jean Tourrilhes
12 * Copyright (c) 2006 Linus Walleij
15 * Based on smc-ircc.c:
17 * Copyright (c) 2001 Stefani Seibold
18 * Copyright (c) 1999-2001 Dag Brattli
19 * Copyright (c) 1998-1999 Thomas Davis,
23 * Copyright (c) 1997, 1998, 1999-2000 Dag Brattli, All Rights Reserved.
26 * This program is free software; you can redistribute it and/or
27 * modify it under the terms of the GNU General Public License as
28 * published by the Free Software Foundation; either version 2 of
29 * the License, or (at your option) any later version.
31 * This program is distributed in the hope that it will be useful,
32 * but WITHOUT ANY WARRANTY; without even the implied warranty of
33 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 * GNU General Public License for more details.
36 * You should have received a copy of the GNU General Public License
37 * along with this program; if not, see <http://www.gnu.org/licenses/>.
39 ********************************************************************/
41 #include <linux/module.h>
42 #include <linux/kernel.h>
43 #include <linux/types.h>
44 #include <linux/skbuff.h>
45 #include <linux/netdevice.h>
46 #include <linux/ioport.h>
47 #include <linux/delay.h>
48 #include <linux/init.h>
49 #include <linux/interrupt.h>
50 #include <linux/rtnetlink.h>
51 #include <linux/serial_reg.h>
52 #include <linux/dma-mapping.h>
53 #include <linux/pnp.h>
54 #include <linux/platform_device.h>
55 #include <linux/gfp.h>
59 #include <asm/byteorder.h>
61 #include <linux/spinlock.h>
64 #include <linux/pci.h>
67 #include <net/irda/wrapper.h>
68 #include <net/irda/irda.h>
69 #include <net/irda/irda_device.h>
71 #include "smsc-ircc2.h"
75 MODULE_AUTHOR("Daniele Peri <peri@csai.unipa.it>");
76 MODULE_DESCRIPTION("SMC IrCC SIR/FIR controller driver");
77 MODULE_LICENSE("GPL");
79 static bool smsc_nopnp
= true;
80 module_param_named(nopnp
, smsc_nopnp
, bool, 0);
81 MODULE_PARM_DESC(nopnp
, "Do not use PNP to detect controller settings, defaults to true");
84 static int ircc_dma
= DMA_INVAL
;
85 module_param(ircc_dma
, int, 0);
86 MODULE_PARM_DESC(ircc_dma
, "DMA channel");
89 static int ircc_irq
= IRQ_INVAL
;
90 module_param(ircc_irq
, int, 0);
91 MODULE_PARM_DESC(ircc_irq
, "IRQ line");
94 module_param(ircc_fir
, int, 0);
95 MODULE_PARM_DESC(ircc_fir
, "FIR Base Address");
98 module_param(ircc_sir
, int, 0);
99 MODULE_PARM_DESC(ircc_sir
, "SIR Base Address");
102 module_param(ircc_cfg
, int, 0);
103 MODULE_PARM_DESC(ircc_cfg
, "Configuration register base address");
105 static int ircc_transceiver
;
106 module_param(ircc_transceiver
, int, 0);
107 MODULE_PARM_DESC(ircc_transceiver
, "Transceiver type");
112 struct smsc_ircc_subsystem_configuration
{
113 unsigned short vendor
; /* PCI vendor ID */
114 unsigned short device
; /* PCI vendor ID */
115 unsigned short subvendor
; /* PCI subsystem vendor ID */
116 unsigned short subdevice
; /* PCI subsystem device ID */
117 unsigned short sir_io
; /* I/O port for SIR */
118 unsigned short fir_io
; /* I/O port for FIR */
119 unsigned char fir_irq
; /* FIR IRQ */
120 unsigned char fir_dma
; /* FIR DMA */
121 unsigned short cfg_base
; /* I/O port for chip configuration */
122 int (*preconfigure
)(struct pci_dev
*dev
, struct smsc_ircc_subsystem_configuration
*conf
); /* Preconfig function */
123 const char *name
; /* name shown as info */
127 struct smsc_transceiver
{
129 void (*set_for_speed
)(int fir_base
, u32 speed
);
130 int (*probe
)(int fir_base
);
143 struct smsc_chip_address
{
144 unsigned int cfg_base
;
148 /* Private data for each instance */
149 struct smsc_ircc_cb
{
150 struct net_device
*netdev
; /* Yes! we are some kind of netdevice */
151 struct irlap_cb
*irlap
; /* The link layer we are binded to */
153 chipio_t io
; /* IrDA controller information */
154 iobuff_t tx_buff
; /* Transmit buffer */
155 iobuff_t rx_buff
; /* Receive buffer */
156 dma_addr_t tx_buff_dma
;
157 dma_addr_t rx_buff_dma
;
159 struct qos_info qos
; /* QoS capabilities for this device */
161 spinlock_t lock
; /* For serializing operations */
164 __u32 flags
; /* Interface flags */
166 int tx_buff_offsets
[10]; /* Offsets between frames in tx_buff */
167 int tx_len
; /* Number of frames in tx_buff */
170 struct platform_device
*pldev
;
175 #define SMSC_IRCC2_DRIVER_NAME "smsc-ircc2"
177 #define SMSC_IRCC2_C_IRDA_FALLBACK_SPEED 9600
178 #define SMSC_IRCC2_C_DEFAULT_TRANSCEIVER 1
179 #define SMSC_IRCC2_C_NET_TIMEOUT 0
180 #define SMSC_IRCC2_C_SIR_STOP 0
182 static const char *driver_name
= SMSC_IRCC2_DRIVER_NAME
;
186 static int smsc_ircc_open(unsigned int firbase
, unsigned int sirbase
, u8 dma
, u8 irq
);
187 static int smsc_ircc_present(unsigned int fir_base
, unsigned int sir_base
);
188 static void smsc_ircc_setup_io(struct smsc_ircc_cb
*self
, unsigned int fir_base
, unsigned int sir_base
, u8 dma
, u8 irq
);
189 static void smsc_ircc_setup_qos(struct smsc_ircc_cb
*self
);
190 static void smsc_ircc_init_chip(struct smsc_ircc_cb
*self
);
191 static int __exit
smsc_ircc_close(struct smsc_ircc_cb
*self
);
192 static int smsc_ircc_dma_receive(struct smsc_ircc_cb
*self
);
193 static void smsc_ircc_dma_receive_complete(struct smsc_ircc_cb
*self
);
194 static void smsc_ircc_sir_receive(struct smsc_ircc_cb
*self
);
195 static netdev_tx_t
smsc_ircc_hard_xmit_sir(struct sk_buff
*skb
,
196 struct net_device
*dev
);
197 static netdev_tx_t
smsc_ircc_hard_xmit_fir(struct sk_buff
*skb
,
198 struct net_device
*dev
);
199 static void smsc_ircc_dma_xmit(struct smsc_ircc_cb
*self
, int bofs
);
200 static void smsc_ircc_dma_xmit_complete(struct smsc_ircc_cb
*self
);
201 static void smsc_ircc_change_speed(struct smsc_ircc_cb
*self
, u32 speed
);
202 static void smsc_ircc_set_sir_speed(struct smsc_ircc_cb
*self
, u32 speed
);
203 static irqreturn_t
smsc_ircc_interrupt(int irq
, void *dev_id
);
204 static irqreturn_t
smsc_ircc_interrupt_sir(struct net_device
*dev
);
205 static void smsc_ircc_sir_start(struct smsc_ircc_cb
*self
);
206 #if SMSC_IRCC2_C_SIR_STOP
207 static void smsc_ircc_sir_stop(struct smsc_ircc_cb
*self
);
209 static void smsc_ircc_sir_write_wakeup(struct smsc_ircc_cb
*self
);
210 static int smsc_ircc_sir_write(int iobase
, int fifo_size
, __u8
*buf
, int len
);
211 static int smsc_ircc_net_open(struct net_device
*dev
);
212 static int smsc_ircc_net_close(struct net_device
*dev
);
213 static int smsc_ircc_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
214 #if SMSC_IRCC2_C_NET_TIMEOUT
215 static void smsc_ircc_timeout(struct net_device
*dev
);
217 static int smsc_ircc_is_receiving(struct smsc_ircc_cb
*self
);
218 static void smsc_ircc_probe_transceiver(struct smsc_ircc_cb
*self
);
219 static void smsc_ircc_set_transceiver_for_speed(struct smsc_ircc_cb
*self
, u32 speed
);
220 static void smsc_ircc_sir_wait_hw_transmitter_finish(struct smsc_ircc_cb
*self
);
223 static int __init
smsc_ircc_look_for_chips(void);
224 static const struct smsc_chip
* __init
smsc_ircc_probe(unsigned short cfg_base
, u8 reg
, const struct smsc_chip
*chip
, char *type
);
225 static int __init
smsc_superio_flat(const struct smsc_chip
*chips
, unsigned short cfg_base
, char *type
);
226 static int __init
smsc_superio_paged(const struct smsc_chip
*chips
, unsigned short cfg_base
, char *type
);
227 static int __init
smsc_superio_fdc(unsigned short cfg_base
);
228 static int __init
smsc_superio_lpc(unsigned short cfg_base
);
230 static int __init
preconfigure_smsc_chip(struct smsc_ircc_subsystem_configuration
*conf
);
231 static int __init
preconfigure_through_82801(struct pci_dev
*dev
, struct smsc_ircc_subsystem_configuration
*conf
);
232 static void __init
preconfigure_ali_port(struct pci_dev
*dev
,
233 unsigned short port
);
234 static int __init
preconfigure_through_ali(struct pci_dev
*dev
, struct smsc_ircc_subsystem_configuration
*conf
);
235 static int __init
smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg
,
236 unsigned short ircc_fir
,
237 unsigned short ircc_sir
,
238 unsigned char ircc_dma
,
239 unsigned char ircc_irq
);
242 /* Transceivers specific functions */
244 static void smsc_ircc_set_transceiver_toshiba_sat1800(int fir_base
, u32 speed
);
245 static int smsc_ircc_probe_transceiver_toshiba_sat1800(int fir_base
);
246 static void smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(int fir_base
, u32 speed
);
247 static int smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(int fir_base
);
248 static void smsc_ircc_set_transceiver_smsc_ircc_atc(int fir_base
, u32 speed
);
249 static int smsc_ircc_probe_transceiver_smsc_ircc_atc(int fir_base
);
251 /* Power Management */
253 static int smsc_ircc_suspend(struct platform_device
*dev
, pm_message_t state
);
254 static int smsc_ircc_resume(struct platform_device
*dev
);
256 static struct platform_driver smsc_ircc_driver
= {
257 .suspend
= smsc_ircc_suspend
,
258 .resume
= smsc_ircc_resume
,
260 .name
= SMSC_IRCC2_DRIVER_NAME
,
264 /* Transceivers for SMSC-ircc */
266 static struct smsc_transceiver smsc_transceivers
[] =
268 { "Toshiba Satellite 1800 (GP data pin select)", smsc_ircc_set_transceiver_toshiba_sat1800
, smsc_ircc_probe_transceiver_toshiba_sat1800
},
269 { "Fast pin select", smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select
, smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select
},
270 { "ATC IRMode", smsc_ircc_set_transceiver_smsc_ircc_atc
, smsc_ircc_probe_transceiver_smsc_ircc_atc
},
273 #define SMSC_IRCC2_C_NUMBER_OF_TRANSCEIVERS (ARRAY_SIZE(smsc_transceivers) - 1)
275 /* SMC SuperIO chipsets definitions */
277 #define KEY55_1 0 /* SuperIO Configuration mode with Key <0x55> */
278 #define KEY55_2 1 /* SuperIO Configuration mode with Key <0x55,0x55> */
279 #define NoIRDA 2 /* SuperIO Chip has no IRDA Port */
280 #define SIR 0 /* SuperIO Chip has only slow IRDA */
281 #define FIR 4 /* SuperIO Chip has fast IRDA */
282 #define SERx4 8 /* SuperIO Chip supports 115,2 KBaud * 4=460,8 KBaud */
284 static struct smsc_chip __initdata fdc_chips_flat
[] =
286 /* Base address 0x3f0 or 0x370 */
287 { "37C44", KEY55_1
|NoIRDA
, 0x00, 0x00 }, /* This chip cannot be detected */
288 { "37C665GT", KEY55_2
|NoIRDA
, 0x65, 0x01 },
289 { "37C665GT", KEY55_2
|NoIRDA
, 0x66, 0x01 },
290 { "37C669", KEY55_2
|SIR
|SERx4
, 0x03, 0x02 },
291 { "37C669", KEY55_2
|SIR
|SERx4
, 0x04, 0x02 }, /* ID? */
292 { "37C78", KEY55_2
|NoIRDA
, 0x78, 0x00 },
293 { "37N769", KEY55_1
|FIR
|SERx4
, 0x28, 0x00 },
294 { "37N869", KEY55_1
|FIR
|SERx4
, 0x29, 0x00 },
298 static struct smsc_chip __initdata fdc_chips_paged
[] =
300 /* Base address 0x3f0 or 0x370 */
301 { "37B72X", KEY55_1
|SIR
|SERx4
, 0x4c, 0x00 },
302 { "37B77X", KEY55_1
|SIR
|SERx4
, 0x43, 0x00 },
303 { "37B78X", KEY55_1
|SIR
|SERx4
, 0x44, 0x00 },
304 { "37B80X", KEY55_1
|SIR
|SERx4
, 0x42, 0x00 },
305 { "37C67X", KEY55_1
|FIR
|SERx4
, 0x40, 0x00 },
306 { "37C93X", KEY55_2
|SIR
|SERx4
, 0x02, 0x01 },
307 { "37C93XAPM", KEY55_1
|SIR
|SERx4
, 0x30, 0x01 },
308 { "37C93XFR", KEY55_2
|FIR
|SERx4
, 0x03, 0x01 },
309 { "37M707", KEY55_1
|SIR
|SERx4
, 0x42, 0x00 },
310 { "37M81X", KEY55_1
|SIR
|SERx4
, 0x4d, 0x00 },
311 { "37N958FR", KEY55_1
|FIR
|SERx4
, 0x09, 0x04 },
312 { "37N971", KEY55_1
|FIR
|SERx4
, 0x0a, 0x00 },
313 { "37N972", KEY55_1
|FIR
|SERx4
, 0x0b, 0x00 },
317 static struct smsc_chip __initdata lpc_chips_flat
[] =
319 /* Base address 0x2E or 0x4E */
320 { "47N227", KEY55_1
|FIR
|SERx4
, 0x5a, 0x00 },
321 { "47N227", KEY55_1
|FIR
|SERx4
, 0x7a, 0x00 },
322 { "47N267", KEY55_1
|FIR
|SERx4
, 0x5e, 0x00 },
326 static struct smsc_chip __initdata lpc_chips_paged
[] =
328 /* Base address 0x2E or 0x4E */
329 { "47B27X", KEY55_1
|SIR
|SERx4
, 0x51, 0x00 },
330 { "47B37X", KEY55_1
|SIR
|SERx4
, 0x52, 0x00 },
331 { "47M10X", KEY55_1
|SIR
|SERx4
, 0x59, 0x00 },
332 { "47M120", KEY55_1
|NoIRDA
|SERx4
, 0x5c, 0x00 },
333 { "47M13X", KEY55_1
|SIR
|SERx4
, 0x59, 0x00 },
334 { "47M14X", KEY55_1
|SIR
|SERx4
, 0x5f, 0x00 },
335 { "47N252", KEY55_1
|FIR
|SERx4
, 0x0e, 0x00 },
336 { "47S42X", KEY55_1
|SIR
|SERx4
, 0x57, 0x00 },
340 #define SMSCSIO_TYPE_FDC 1
341 #define SMSCSIO_TYPE_LPC 2
342 #define SMSCSIO_TYPE_FLAT 4
343 #define SMSCSIO_TYPE_PAGED 8
345 static struct smsc_chip_address __initdata possible_addresses
[] =
347 { 0x3f0, SMSCSIO_TYPE_FDC
|SMSCSIO_TYPE_FLAT
|SMSCSIO_TYPE_PAGED
},
348 { 0x370, SMSCSIO_TYPE_FDC
|SMSCSIO_TYPE_FLAT
|SMSCSIO_TYPE_PAGED
},
349 { 0xe0, SMSCSIO_TYPE_FDC
|SMSCSIO_TYPE_FLAT
|SMSCSIO_TYPE_PAGED
},
350 { 0x2e, SMSCSIO_TYPE_LPC
|SMSCSIO_TYPE_FLAT
|SMSCSIO_TYPE_PAGED
},
351 { 0x4e, SMSCSIO_TYPE_LPC
|SMSCSIO_TYPE_FLAT
|SMSCSIO_TYPE_PAGED
},
357 static struct smsc_ircc_cb
*dev_self
[] = { NULL
, NULL
};
358 static unsigned short dev_count
;
360 static inline void register_bank(int iobase
, int bank
)
362 outb(((inb(iobase
+ IRCC_MASTER
) & 0xf0) | (bank
& 0x07)),
363 iobase
+ IRCC_MASTER
);
366 /* PNP hotplug support */
367 static const struct pnp_device_id smsc_ircc_pnp_table
[] = {
368 { .id
= "SMCf010", .driver_data
= 0 },
369 /* and presumably others */
372 MODULE_DEVICE_TABLE(pnp
, smsc_ircc_pnp_table
);
374 static int pnp_driver_registered
;
377 static int smsc_ircc_pnp_probe(struct pnp_dev
*dev
,
378 const struct pnp_device_id
*dev_id
)
380 unsigned int firbase
, sirbase
;
383 if (!(pnp_port_valid(dev
, 0) && pnp_port_valid(dev
, 1) &&
384 pnp_dma_valid(dev
, 0) && pnp_irq_valid(dev
, 0)))
387 sirbase
= pnp_port_start(dev
, 0);
388 firbase
= pnp_port_start(dev
, 1);
389 dma
= pnp_dma(dev
, 0);
390 irq
= pnp_irq(dev
, 0);
392 if (smsc_ircc_open(firbase
, sirbase
, dma
, irq
))
398 static struct pnp_driver smsc_ircc_pnp_driver
= {
399 .name
= "smsc-ircc2",
400 .id_table
= smsc_ircc_pnp_table
,
401 .probe
= smsc_ircc_pnp_probe
,
403 #else /* CONFIG_PNP */
404 static struct pnp_driver smsc_ircc_pnp_driver
;
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 net_err_ratelimited("%s, Preconfiguration failed !\n",
427 if (ircc_fir
> 0 && ircc_sir
> 0) {
428 net_info_ratelimited(" Overriding FIR address 0x%04x\n",
430 net_info_ratelimited(" Overriding SIR address 0x%04x\n",
433 if (smsc_ircc_open(ircc_fir
, ircc_sir
, ircc_dma
, ircc_irq
))
438 /* try user provided configuration register base address */
440 net_info_ratelimited(" Overriding configuration address 0x%04x\n",
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 pr_debug("%s\n", __func__
);
466 ret
= platform_driver_register(&smsc_ircc_driver
);
468 net_err_ratelimited("%s, Can't register driver!\n",
475 if (smsc_nopnp
|| !pnp_platform_devices
||
476 ircc_cfg
|| ircc_fir
|| ircc_sir
||
477 ircc_dma
!= DMA_INVAL
|| ircc_irq
!= IRQ_INVAL
) {
478 ret
= smsc_ircc_legacy_probe();
480 if (pnp_register_driver(&smsc_ircc_pnp_driver
) == 0)
481 pnp_driver_registered
= 1;
485 if (pnp_driver_registered
)
486 pnp_unregister_driver(&smsc_ircc_pnp_driver
);
487 platform_driver_unregister(&smsc_ircc_driver
);
493 static netdev_tx_t
smsc_ircc_net_xmit(struct sk_buff
*skb
,
494 struct net_device
*dev
)
496 struct smsc_ircc_cb
*self
= netdev_priv(dev
);
498 if (self
->io
.speed
> 115200)
499 return smsc_ircc_hard_xmit_fir(skb
, dev
);
501 return smsc_ircc_hard_xmit_sir(skb
, dev
);
504 static const struct net_device_ops smsc_ircc_netdev_ops
= {
505 .ndo_open
= smsc_ircc_net_open
,
506 .ndo_stop
= smsc_ircc_net_close
,
507 .ndo_do_ioctl
= smsc_ircc_net_ioctl
,
508 .ndo_start_xmit
= smsc_ircc_net_xmit
,
509 #if SMSC_IRCC2_C_NET_TIMEOUT
510 .ndo_tx_timeout
= smsc_ircc_timeout
,
515 * Function smsc_ircc_open (firbase, sirbase, dma, irq)
517 * Try to open driver instance
520 static int smsc_ircc_open(unsigned int fir_base
, unsigned int sir_base
, u8 dma
, u8 irq
)
522 struct smsc_ircc_cb
*self
;
523 struct net_device
*dev
;
526 pr_debug("%s\n", __func__
);
528 err
= smsc_ircc_present(fir_base
, sir_base
);
533 if (dev_count
>= ARRAY_SIZE(dev_self
)) {
534 net_warn_ratelimited("%s(), too many devices!\n", __func__
);
539 * Allocate new instance of the driver
541 dev
= alloc_irdadev(sizeof(struct smsc_ircc_cb
));
543 net_warn_ratelimited("%s() can't allocate net device\n",
548 #if SMSC_IRCC2_C_NET_TIMEOUT
549 dev
->watchdog_timeo
= HZ
* 2; /* Allow enough time for speed change */
551 dev
->netdev_ops
= &smsc_ircc_netdev_ops
;
553 self
= netdev_priv(dev
);
556 /* Make ifconfig display some details */
557 dev
->base_addr
= self
->io
.fir_base
= fir_base
;
558 dev
->irq
= self
->io
.irq
= irq
;
560 /* Need to store self somewhere */
561 dev_self
[dev_count
] = self
;
562 spin_lock_init(&self
->lock
);
564 self
->rx_buff
.truesize
= SMSC_IRCC2_RX_BUFF_TRUESIZE
;
565 self
->tx_buff
.truesize
= SMSC_IRCC2_TX_BUFF_TRUESIZE
;
568 dma_zalloc_coherent(NULL
, self
->rx_buff
.truesize
,
569 &self
->rx_buff_dma
, GFP_KERNEL
);
570 if (self
->rx_buff
.head
== NULL
)
574 dma_zalloc_coherent(NULL
, self
->tx_buff
.truesize
,
575 &self
->tx_buff_dma
, GFP_KERNEL
);
576 if (self
->tx_buff
.head
== NULL
)
579 self
->rx_buff
.in_frame
= FALSE
;
580 self
->rx_buff
.state
= OUTSIDE_FRAME
;
581 self
->tx_buff
.data
= self
->tx_buff
.head
;
582 self
->rx_buff
.data
= self
->rx_buff
.head
;
584 smsc_ircc_setup_io(self
, fir_base
, sir_base
, dma
, irq
);
585 smsc_ircc_setup_qos(self
);
586 smsc_ircc_init_chip(self
);
588 if (ircc_transceiver
> 0 &&
589 ircc_transceiver
< SMSC_IRCC2_C_NUMBER_OF_TRANSCEIVERS
)
590 self
->transceiver
= ircc_transceiver
;
592 smsc_ircc_probe_transceiver(self
);
594 err
= register_netdev(self
->netdev
);
596 net_err_ratelimited("%s, Network device registration failed!\n",
601 self
->pldev
= platform_device_register_simple(SMSC_IRCC2_DRIVER_NAME
,
603 if (IS_ERR(self
->pldev
)) {
604 err
= PTR_ERR(self
->pldev
);
607 platform_set_drvdata(self
->pldev
, self
);
609 net_info_ratelimited("IrDA: Registered device %s\n", dev
->name
);
615 unregister_netdev(self
->netdev
);
618 dma_free_coherent(NULL
, self
->tx_buff
.truesize
,
619 self
->tx_buff
.head
, self
->tx_buff_dma
);
621 dma_free_coherent(NULL
, self
->rx_buff
.truesize
,
622 self
->rx_buff
.head
, self
->rx_buff_dma
);
624 free_netdev(self
->netdev
);
625 dev_self
[dev_count
] = NULL
;
627 release_region(fir_base
, SMSC_IRCC2_FIR_CHIP_IO_EXTENT
);
628 release_region(sir_base
, SMSC_IRCC2_SIR_CHIP_IO_EXTENT
);
634 * Function smsc_ircc_present(fir_base, sir_base)
636 * Check the smsc-ircc chip presence
639 static int smsc_ircc_present(unsigned int fir_base
, unsigned int sir_base
)
641 unsigned char low
, high
, chip
, config
, dma
, irq
, version
;
643 if (!request_region(fir_base
, SMSC_IRCC2_FIR_CHIP_IO_EXTENT
,
645 net_warn_ratelimited("%s: can't get fir_base of 0x%03x\n",
650 if (!request_region(sir_base
, SMSC_IRCC2_SIR_CHIP_IO_EXTENT
,
652 net_warn_ratelimited("%s: can't get sir_base of 0x%03x\n",
657 register_bank(fir_base
, 3);
659 high
= inb(fir_base
+ IRCC_ID_HIGH
);
660 low
= inb(fir_base
+ IRCC_ID_LOW
);
661 chip
= inb(fir_base
+ IRCC_CHIP_ID
);
662 version
= inb(fir_base
+ IRCC_VERSION
);
663 config
= inb(fir_base
+ IRCC_INTERFACE
);
664 dma
= config
& IRCC_INTERFACE_DMA_MASK
;
665 irq
= (config
& IRCC_INTERFACE_IRQ_MASK
) >> 4;
667 if (high
!= 0x10 || low
!= 0xb8 || (chip
!= 0xf1 && chip
!= 0xf2)) {
668 net_warn_ratelimited("%s(), addr 0x%04x - no device found!\n",
672 net_info_ratelimited("SMsC IrDA Controller found\n IrCC version %d.%d, firport 0x%03x, sirport 0x%03x dma=%d, irq=%d\n",
673 chip
& 0x0f, version
,
674 fir_base
, sir_base
, dma
, irq
);
679 release_region(sir_base
, SMSC_IRCC2_SIR_CHIP_IO_EXTENT
);
681 release_region(fir_base
, SMSC_IRCC2_FIR_CHIP_IO_EXTENT
);
687 * Function smsc_ircc_setup_io(self, fir_base, sir_base, dma, irq)
692 static void smsc_ircc_setup_io(struct smsc_ircc_cb
*self
,
693 unsigned int fir_base
, unsigned int sir_base
,
696 unsigned char config
, chip_dma
, chip_irq
;
698 register_bank(fir_base
, 3);
699 config
= inb(fir_base
+ IRCC_INTERFACE
);
700 chip_dma
= config
& IRCC_INTERFACE_DMA_MASK
;
701 chip_irq
= (config
& IRCC_INTERFACE_IRQ_MASK
) >> 4;
703 self
->io
.fir_base
= fir_base
;
704 self
->io
.sir_base
= sir_base
;
705 self
->io
.fir_ext
= SMSC_IRCC2_FIR_CHIP_IO_EXTENT
;
706 self
->io
.sir_ext
= SMSC_IRCC2_SIR_CHIP_IO_EXTENT
;
707 self
->io
.fifo_size
= SMSC_IRCC2_FIFO_SIZE
;
708 self
->io
.speed
= SMSC_IRCC2_C_IRDA_FALLBACK_SPEED
;
710 if (irq
!= IRQ_INVAL
) {
712 net_info_ratelimited("%s, Overriding IRQ - chip says %d, using %d\n",
713 driver_name
, chip_irq
, irq
);
716 self
->io
.irq
= chip_irq
;
718 if (dma
!= DMA_INVAL
) {
720 net_info_ratelimited("%s, Overriding DMA - chip says %d, using %d\n",
721 driver_name
, chip_dma
, dma
);
724 self
->io
.dma
= chip_dma
;
729 * Function smsc_ircc_setup_qos(self)
734 static void smsc_ircc_setup_qos(struct smsc_ircc_cb
*self
)
736 /* Initialize QoS for this device */
737 irda_init_max_qos_capabilies(&self
->qos
);
739 self
->qos
.baud_rate
.bits
= IR_9600
|IR_19200
|IR_38400
|IR_57600
|
740 IR_115200
|IR_576000
|IR_1152000
|(IR_4000000
<< 8);
742 self
->qos
.min_turn_time
.bits
= SMSC_IRCC2_MIN_TURN_TIME
;
743 self
->qos
.window_size
.bits
= SMSC_IRCC2_WINDOW_SIZE
;
744 irda_qos_bits_to_value(&self
->qos
);
748 * Function smsc_ircc_init_chip(self)
753 static void smsc_ircc_init_chip(struct smsc_ircc_cb
*self
)
755 int iobase
= self
->io
.fir_base
;
757 register_bank(iobase
, 0);
758 outb(IRCC_MASTER_RESET
, iobase
+ IRCC_MASTER
);
759 outb(0x00, iobase
+ IRCC_MASTER
);
761 register_bank(iobase
, 1);
762 outb(((inb(iobase
+ IRCC_SCE_CFGA
) & 0x87) | IRCC_CFGA_IRDA_SIR_A
),
763 iobase
+ IRCC_SCE_CFGA
);
765 #ifdef smsc_669 /* Uses pin 88/89 for Rx/Tx */
766 outb(((inb(iobase
+ IRCC_SCE_CFGB
) & 0x3f) | IRCC_CFGB_MUX_COM
),
767 iobase
+ IRCC_SCE_CFGB
);
769 outb(((inb(iobase
+ IRCC_SCE_CFGB
) & 0x3f) | IRCC_CFGB_MUX_IR
),
770 iobase
+ IRCC_SCE_CFGB
);
772 (void) inb(iobase
+ IRCC_FIFO_THRESHOLD
);
773 outb(SMSC_IRCC2_FIFO_THRESHOLD
, iobase
+ IRCC_FIFO_THRESHOLD
);
775 register_bank(iobase
, 4);
776 outb((inb(iobase
+ IRCC_CONTROL
) & 0x30), iobase
+ IRCC_CONTROL
);
778 register_bank(iobase
, 0);
779 outb(0, iobase
+ IRCC_LCR_A
);
781 smsc_ircc_set_sir_speed(self
, SMSC_IRCC2_C_IRDA_FALLBACK_SPEED
);
783 /* Power on device */
784 outb(0x00, iobase
+ IRCC_MASTER
);
788 * Function smsc_ircc_net_ioctl (dev, rq, cmd)
790 * Process IOCTL commands for this device
793 static int smsc_ircc_net_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
795 struct if_irda_req
*irq
= (struct if_irda_req
*) rq
;
796 struct smsc_ircc_cb
*self
;
800 IRDA_ASSERT(dev
!= NULL
, return -1;);
802 self
= netdev_priv(dev
);
804 IRDA_ASSERT(self
!= NULL
, return -1;);
806 pr_debug("%s(), %s, (cmd=0x%X)\n", __func__
, dev
->name
, cmd
);
809 case SIOCSBANDWIDTH
: /* Set bandwidth */
810 if (!capable(CAP_NET_ADMIN
))
813 /* Make sure we are the only one touching
814 * self->io.speed and the hardware - Jean II */
815 spin_lock_irqsave(&self
->lock
, flags
);
816 smsc_ircc_change_speed(self
, irq
->ifr_baudrate
);
817 spin_unlock_irqrestore(&self
->lock
, flags
);
820 case SIOCSMEDIABUSY
: /* Set media busy */
821 if (!capable(CAP_NET_ADMIN
)) {
826 irda_device_set_media_busy(self
->netdev
, TRUE
);
828 case SIOCGRECEIVING
: /* Check if we are receiving right now */
829 irq
->ifr_receiving
= smsc_ircc_is_receiving(self
);
833 if (!capable(CAP_NET_ADMIN
)) {
837 smsc_ircc_sir_set_dtr_rts(dev
, irq
->ifr_dtr
, irq
->ifr_rts
);
847 #if SMSC_IRCC2_C_NET_TIMEOUT
849 * Function smsc_ircc_timeout (struct net_device *dev)
851 * The networking timeout management.
855 static void smsc_ircc_timeout(struct net_device
*dev
)
857 struct smsc_ircc_cb
*self
= netdev_priv(dev
);
860 net_warn_ratelimited("%s: transmit timed out, changing speed to: %d\n",
861 dev
->name
, self
->io
.speed
);
862 spin_lock_irqsave(&self
->lock
, flags
);
863 smsc_ircc_sir_start(self
);
864 smsc_ircc_change_speed(self
, self
->io
.speed
);
865 netif_trans_update(dev
); /* prevent tx timeout */
866 netif_wake_queue(dev
);
867 spin_unlock_irqrestore(&self
->lock
, flags
);
872 * Function smsc_ircc_hard_xmit_sir (struct sk_buff *skb, struct net_device *dev)
874 * Transmits the current frame until FIFO is full, then
875 * waits until the next transmit interrupt, and continues until the
876 * frame is transmitted.
878 static netdev_tx_t
smsc_ircc_hard_xmit_sir(struct sk_buff
*skb
,
879 struct net_device
*dev
)
881 struct smsc_ircc_cb
*self
;
885 pr_debug("%s\n", __func__
);
887 IRDA_ASSERT(dev
!= NULL
, return NETDEV_TX_OK
;);
889 self
= netdev_priv(dev
);
890 IRDA_ASSERT(self
!= NULL
, return NETDEV_TX_OK
;);
892 netif_stop_queue(dev
);
894 /* Make sure test of self->io.speed & speed change are atomic */
895 spin_lock_irqsave(&self
->lock
, flags
);
897 /* Check if we need to change the speed */
898 speed
= irda_get_next_speed(skb
);
899 if (speed
!= self
->io
.speed
&& speed
!= -1) {
900 /* Check for empty frame */
903 * We send frames one by one in SIR mode (no
904 * pipelining), so at this point, if we were sending
905 * a previous frame, we just received the interrupt
906 * telling us it is finished (UART_IIR_THRI).
907 * Therefore, waiting for the transmitter to really
908 * finish draining the fifo won't take too long.
909 * And the interrupt handler is not expected to run.
911 smsc_ircc_sir_wait_hw_transmitter_finish(self
);
912 smsc_ircc_change_speed(self
, speed
);
913 spin_unlock_irqrestore(&self
->lock
, flags
);
917 self
->new_speed
= speed
;
921 self
->tx_buff
.data
= self
->tx_buff
.head
;
923 /* Copy skb to tx_buff while wrapping, stuffing and making CRC */
924 self
->tx_buff
.len
= async_wrap_skb(skb
, self
->tx_buff
.data
,
925 self
->tx_buff
.truesize
);
927 dev
->stats
.tx_bytes
+= self
->tx_buff
.len
;
929 /* Turn on transmit finished interrupt. Will fire immediately! */
930 outb(UART_IER_THRI
, self
->io
.sir_base
+ UART_IER
);
932 spin_unlock_irqrestore(&self
->lock
, flags
);
940 * Function smsc_ircc_set_fir_speed (self, baud)
942 * Change the speed of the device
945 static void smsc_ircc_set_fir_speed(struct smsc_ircc_cb
*self
, u32 speed
)
947 int fir_base
, ir_mode
, ctrl
, fast
;
949 IRDA_ASSERT(self
!= NULL
, return;);
950 fir_base
= self
->io
.fir_base
;
952 self
->io
.speed
= speed
;
957 ir_mode
= IRCC_CFGA_IRDA_HDLC
;
960 pr_debug("%s(), handling baud of 576000\n", __func__
);
963 ir_mode
= IRCC_CFGA_IRDA_HDLC
;
964 ctrl
= IRCC_1152
| IRCC_CRC
;
965 fast
= IRCC_LCR_A_FAST
| IRCC_LCR_A_GP_DATA
;
966 pr_debug("%s(), handling baud of 1152000\n",
970 ir_mode
= IRCC_CFGA_IRDA_4PPM
;
972 fast
= IRCC_LCR_A_FAST
;
973 pr_debug("%s(), handling baud of 4000000\n",
979 /* This causes an interrupt */
980 register_bank(fir_base
, 0);
981 outb((inb(fir_base
+ IRCC_LCR_A
) & 0xbf) | fast
, fir_base
+ IRCC_LCR_A
);
984 register_bank(fir_base
, 1);
985 outb(((inb(fir_base
+ IRCC_SCE_CFGA
) & IRCC_SCE_CFGA_BLOCK_CTRL_BITS_MASK
) | ir_mode
), fir_base
+ IRCC_SCE_CFGA
);
987 register_bank(fir_base
, 4);
988 outb((inb(fir_base
+ IRCC_CONTROL
) & 0x30) | ctrl
, fir_base
+ IRCC_CONTROL
);
992 * Function smsc_ircc_fir_start(self)
994 * Change the speed of the device
997 static void smsc_ircc_fir_start(struct smsc_ircc_cb
*self
)
999 struct net_device
*dev
;
1002 pr_debug("%s\n", __func__
);
1004 IRDA_ASSERT(self
!= NULL
, return;);
1006 IRDA_ASSERT(dev
!= NULL
, return;);
1008 fir_base
= self
->io
.fir_base
;
1010 /* Reset everything */
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 pr_debug("%s\n", __func__
);
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 pr_debug("%s() changing speed to: %d\n", __func__
, 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 static 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 pr_debug("%s(), Setting speed to: %d\n", __func__
, 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 pr_debug("%s() speed changed to: %d\n", __func__
, speed
);
1179 * Function smsc_ircc_hard_xmit_fir (skb, dev)
1181 * Transmit the frame!
1184 static netdev_tx_t
smsc_ircc_hard_xmit_fir(struct sk_buff
*skb
,
1185 struct net_device
*dev
)
1187 struct smsc_ircc_cb
*self
;
1188 unsigned long flags
;
1192 IRDA_ASSERT(dev
!= NULL
, return NETDEV_TX_OK
;);
1193 self
= netdev_priv(dev
);
1194 IRDA_ASSERT(self
!= NULL
, return NETDEV_TX_OK
;);
1196 netif_stop_queue(dev
);
1198 /* Make sure test of self->io.speed & speed change are atomic */
1199 spin_lock_irqsave(&self
->lock
, flags
);
1201 /* Check if we need to change the speed after this frame */
1202 speed
= irda_get_next_speed(skb
);
1203 if (speed
!= self
->io
.speed
&& speed
!= -1) {
1204 /* Check for empty frame */
1206 /* Note : you should make sure that speed changes
1207 * are not going to corrupt any outgoing frame.
1208 * Look at nsc-ircc for the gory details - Jean II */
1209 smsc_ircc_change_speed(self
, speed
);
1210 spin_unlock_irqrestore(&self
->lock
, flags
);
1212 return NETDEV_TX_OK
;
1215 self
->new_speed
= speed
;
1218 skb_copy_from_linear_data(skb
, self
->tx_buff
.head
, skb
->len
);
1220 self
->tx_buff
.len
= skb
->len
;
1221 self
->tx_buff
.data
= self
->tx_buff
.head
;
1223 mtt
= irda_get_mtt(skb
);
1228 * Compute how many BOFs (STA or PA's) we need to waste the
1229 * min turn time given the speed of the link.
1231 bofs
= mtt
* (self
->io
.speed
/ 1000) / 8000;
1235 smsc_ircc_dma_xmit(self
, bofs
);
1237 /* Transmit frame */
1238 smsc_ircc_dma_xmit(self
, 0);
1241 spin_unlock_irqrestore(&self
->lock
, flags
);
1244 return NETDEV_TX_OK
;
1248 * Function smsc_ircc_dma_xmit (self, bofs)
1250 * Transmit data using DMA
1253 static void smsc_ircc_dma_xmit(struct smsc_ircc_cb
*self
, int bofs
)
1255 int iobase
= self
->io
.fir_base
;
1258 pr_debug("%s\n", __func__
);
1261 register_bank(iobase
, 0);
1262 outb(0x00, iobase
+ IRCC_LCR_B
);
1264 register_bank(iobase
, 1);
1265 outb(inb(iobase
+ IRCC_SCE_CFGB
) & ~IRCC_CFGB_DMA_ENABLE
,
1266 iobase
+ IRCC_SCE_CFGB
);
1268 self
->io
.direction
= IO_XMIT
;
1270 /* Set BOF additional count for generating the min turn time */
1271 register_bank(iobase
, 4);
1272 outb(bofs
& 0xff, iobase
+ IRCC_BOF_COUNT_LO
);
1273 ctrl
= inb(iobase
+ IRCC_CONTROL
) & 0xf0;
1274 outb(ctrl
| ((bofs
>> 8) & 0x0f), iobase
+ IRCC_BOF_COUNT_HI
);
1276 /* Set max Tx frame size */
1277 outb(self
->tx_buff
.len
>> 8, iobase
+ IRCC_TX_SIZE_HI
);
1278 outb(self
->tx_buff
.len
& 0xff, iobase
+ IRCC_TX_SIZE_LO
);
1280 /*outb(UART_MCR_OUT2, self->io.sir_base + UART_MCR);*/
1282 /* Enable burst mode chip Tx DMA */
1283 register_bank(iobase
, 1);
1284 outb(inb(iobase
+ IRCC_SCE_CFGB
) | IRCC_CFGB_DMA_ENABLE
|
1285 IRCC_CFGB_DMA_BURST
, iobase
+ IRCC_SCE_CFGB
);
1287 /* Setup DMA controller (must be done after enabling chip DMA) */
1288 irda_setup_dma(self
->io
.dma
, self
->tx_buff_dma
, self
->tx_buff
.len
,
1291 /* Enable interrupt */
1293 register_bank(iobase
, 0);
1294 outb(IRCC_IER_ACTIVE_FRAME
| IRCC_IER_EOM
, iobase
+ IRCC_IER
);
1295 outb(IRCC_MASTER_INT_EN
, iobase
+ IRCC_MASTER
);
1297 /* Enable transmit */
1298 outb(IRCC_LCR_B_SCE_TRANSMIT
| IRCC_LCR_B_SIP_ENABLE
, iobase
+ IRCC_LCR_B
);
1302 * Function smsc_ircc_dma_xmit_complete (self)
1304 * The transfer of a frame in finished. This function will only be called
1305 * by the interrupt handler
1308 static void smsc_ircc_dma_xmit_complete(struct smsc_ircc_cb
*self
)
1310 int iobase
= self
->io
.fir_base
;
1312 pr_debug("%s\n", __func__
);
1315 register_bank(iobase
, 0);
1316 outb(0x00, iobase
+ IRCC_LCR_B
);
1318 register_bank(iobase
, 1);
1319 outb(inb(iobase
+ IRCC_SCE_CFGB
) & ~IRCC_CFGB_DMA_ENABLE
,
1320 iobase
+ IRCC_SCE_CFGB
);
1322 /* Check for underrun! */
1323 register_bank(iobase
, 0);
1324 if (inb(iobase
+ IRCC_LSR
) & IRCC_LSR_UNDERRUN
) {
1325 self
->netdev
->stats
.tx_errors
++;
1326 self
->netdev
->stats
.tx_fifo_errors
++;
1328 /* Reset error condition */
1329 register_bank(iobase
, 0);
1330 outb(IRCC_MASTER_ERROR_RESET
, iobase
+ IRCC_MASTER
);
1331 outb(0x00, iobase
+ IRCC_MASTER
);
1333 self
->netdev
->stats
.tx_packets
++;
1334 self
->netdev
->stats
.tx_bytes
+= self
->tx_buff
.len
;
1337 /* Check if it's time to change the speed */
1338 if (self
->new_speed
) {
1339 smsc_ircc_change_speed(self
, self
->new_speed
);
1340 self
->new_speed
= 0;
1343 netif_wake_queue(self
->netdev
);
1347 * Function smsc_ircc_dma_receive(self)
1349 * Get ready for receiving a frame. The device will initiate a DMA
1350 * if it starts to receive a frame.
1353 static int smsc_ircc_dma_receive(struct smsc_ircc_cb
*self
)
1355 int iobase
= self
->io
.fir_base
;
1357 /* Turn off chip DMA */
1358 register_bank(iobase
, 1);
1359 outb(inb(iobase
+ IRCC_SCE_CFGB
) & ~IRCC_CFGB_DMA_ENABLE
,
1360 iobase
+ IRCC_SCE_CFGB
);
1364 register_bank(iobase
, 0);
1365 outb(0x00, iobase
+ IRCC_LCR_B
);
1367 /* Turn off chip DMA */
1368 register_bank(iobase
, 1);
1369 outb(inb(iobase
+ IRCC_SCE_CFGB
) & ~IRCC_CFGB_DMA_ENABLE
,
1370 iobase
+ IRCC_SCE_CFGB
);
1372 self
->io
.direction
= IO_RECV
;
1373 self
->rx_buff
.data
= self
->rx_buff
.head
;
1375 /* Set max Rx frame size */
1376 register_bank(iobase
, 4);
1377 outb((2050 >> 8) & 0x0f, iobase
+ IRCC_RX_SIZE_HI
);
1378 outb(2050 & 0xff, iobase
+ IRCC_RX_SIZE_LO
);
1380 /* Setup DMA controller */
1381 irda_setup_dma(self
->io
.dma
, self
->rx_buff_dma
, self
->rx_buff
.truesize
,
1384 /* Enable burst mode chip Rx DMA */
1385 register_bank(iobase
, 1);
1386 outb(inb(iobase
+ IRCC_SCE_CFGB
) | IRCC_CFGB_DMA_ENABLE
|
1387 IRCC_CFGB_DMA_BURST
, iobase
+ IRCC_SCE_CFGB
);
1389 /* Enable interrupt */
1390 register_bank(iobase
, 0);
1391 outb(IRCC_IER_ACTIVE_FRAME
| IRCC_IER_EOM
, iobase
+ IRCC_IER
);
1392 outb(IRCC_MASTER_INT_EN
, iobase
+ IRCC_MASTER
);
1394 /* Enable receiver */
1395 register_bank(iobase
, 0);
1396 outb(IRCC_LCR_B_SCE_RECEIVE
| IRCC_LCR_B_SIP_ENABLE
,
1397 iobase
+ IRCC_LCR_B
);
1403 * Function smsc_ircc_dma_receive_complete(self)
1405 * Finished with receiving frames
1408 static void smsc_ircc_dma_receive_complete(struct smsc_ircc_cb
*self
)
1410 struct sk_buff
*skb
;
1411 int len
, msgcnt
, lsr
;
1412 int iobase
= self
->io
.fir_base
;
1414 register_bank(iobase
, 0);
1416 pr_debug("%s\n", __func__
);
1419 register_bank(iobase
, 0);
1420 outb(0x00, iobase
+ IRCC_LCR_B
);
1422 register_bank(iobase
, 0);
1423 outb(inb(iobase
+ IRCC_LSAR
) & ~IRCC_LSAR_ADDRESS_MASK
, iobase
+ IRCC_LSAR
);
1424 lsr
= inb(iobase
+ IRCC_LSR
);
1425 msgcnt
= inb(iobase
+ IRCC_LCR_B
) & 0x08;
1427 pr_debug("%s: dma count = %d\n", __func__
,
1428 get_dma_residue(self
->io
.dma
));
1430 len
= self
->rx_buff
.truesize
- get_dma_residue(self
->io
.dma
);
1432 /* Look for errors */
1433 if (lsr
& (IRCC_LSR_FRAME_ERROR
| IRCC_LSR_CRC_ERROR
| IRCC_LSR_SIZE_ERROR
)) {
1434 self
->netdev
->stats
.rx_errors
++;
1435 if (lsr
& IRCC_LSR_FRAME_ERROR
)
1436 self
->netdev
->stats
.rx_frame_errors
++;
1437 if (lsr
& IRCC_LSR_CRC_ERROR
)
1438 self
->netdev
->stats
.rx_crc_errors
++;
1439 if (lsr
& IRCC_LSR_SIZE_ERROR
)
1440 self
->netdev
->stats
.rx_length_errors
++;
1441 if (lsr
& (IRCC_LSR_UNDERRUN
| IRCC_LSR_OVERRUN
))
1442 self
->netdev
->stats
.rx_length_errors
++;
1447 len
-= self
->io
.speed
< 4000000 ? 2 : 4;
1449 if (len
< 2 || len
> 2050) {
1450 net_warn_ratelimited("%s(), bogus len=%d\n", __func__
, len
);
1453 pr_debug("%s: msgcnt = %d, len=%d\n", __func__
, msgcnt
, len
);
1455 skb
= dev_alloc_skb(len
+ 1);
1459 /* Make sure IP header gets aligned */
1460 skb_reserve(skb
, 1);
1462 memcpy(skb_put(skb
, len
), self
->rx_buff
.data
, len
);
1463 self
->netdev
->stats
.rx_packets
++;
1464 self
->netdev
->stats
.rx_bytes
+= len
;
1466 skb
->dev
= self
->netdev
;
1467 skb_reset_mac_header(skb
);
1468 skb
->protocol
= htons(ETH_P_IRDA
);
1473 * Function smsc_ircc_sir_receive (self)
1475 * Receive one frame from the infrared port
1478 static void smsc_ircc_sir_receive(struct smsc_ircc_cb
*self
)
1483 IRDA_ASSERT(self
!= NULL
, return;);
1485 iobase
= self
->io
.sir_base
;
1488 * Receive all characters in Rx FIFO, unwrap and unstuff them.
1489 * async_unwrap_char will deliver all found frames
1492 async_unwrap_char(self
->netdev
, &self
->netdev
->stats
, &self
->rx_buff
,
1493 inb(iobase
+ UART_RX
));
1495 /* Make sure we don't stay here to long */
1496 if (boguscount
++ > 32) {
1497 pr_debug("%s(), breaking!\n", __func__
);
1500 } while (inb(iobase
+ UART_LSR
) & UART_LSR_DR
);
1505 * Function smsc_ircc_interrupt (irq, dev_id, regs)
1507 * An interrupt from the chip has arrived. Time to do some work
1510 static irqreturn_t
smsc_ircc_interrupt(int dummy
, void *dev_id
)
1512 struct net_device
*dev
= dev_id
;
1513 struct smsc_ircc_cb
*self
= netdev_priv(dev
);
1514 int iobase
, iir
, lcra
, lsr
;
1515 irqreturn_t ret
= IRQ_NONE
;
1517 /* Serialise the interrupt handler in various CPUs, stop Tx path */
1518 spin_lock(&self
->lock
);
1520 /* Check if we should use the SIR interrupt handler */
1521 if (self
->io
.speed
<= SMSC_IRCC2_MAX_SIR_SPEED
) {
1522 ret
= smsc_ircc_interrupt_sir(dev
);
1523 goto irq_ret_unlock
;
1526 iobase
= self
->io
.fir_base
;
1528 register_bank(iobase
, 0);
1529 iir
= inb(iobase
+ IRCC_IIR
);
1531 goto irq_ret_unlock
;
1534 /* Disable interrupts */
1535 outb(0, iobase
+ IRCC_IER
);
1536 lcra
= inb(iobase
+ IRCC_LCR_A
);
1537 lsr
= inb(iobase
+ IRCC_LSR
);
1539 pr_debug("%s(), iir = 0x%02x\n", __func__
, iir
);
1541 if (iir
& IRCC_IIR_EOM
) {
1542 if (self
->io
.direction
== IO_RECV
)
1543 smsc_ircc_dma_receive_complete(self
);
1545 smsc_ircc_dma_xmit_complete(self
);
1547 smsc_ircc_dma_receive(self
);
1550 if (iir
& IRCC_IIR_ACTIVE_FRAME
) {
1551 /*printk(KERN_WARNING "%s(): Active Frame\n", __func__);*/
1554 /* Enable interrupts again */
1556 register_bank(iobase
, 0);
1557 outb(IRCC_IER_ACTIVE_FRAME
| IRCC_IER_EOM
, iobase
+ IRCC_IER
);
1560 spin_unlock(&self
->lock
);
1566 * Function irport_interrupt_sir (irq, dev_id)
1568 * Interrupt handler for SIR modes
1570 static irqreturn_t
smsc_ircc_interrupt_sir(struct net_device
*dev
)
1572 struct smsc_ircc_cb
*self
= netdev_priv(dev
);
1577 /* Already locked coming here in smsc_ircc_interrupt() */
1578 /*spin_lock(&self->lock);*/
1580 iobase
= self
->io
.sir_base
;
1582 iir
= inb(iobase
+ UART_IIR
) & UART_IIR_ID
;
1586 /* Clear interrupt */
1587 lsr
= inb(iobase
+ UART_LSR
);
1589 pr_debug("%s(), iir=%02x, lsr=%02x, iobase=%#x\n",
1590 __func__
, iir
, lsr
, iobase
);
1594 pr_debug("%s(), RLSI\n", __func__
);
1597 /* Receive interrupt */
1598 smsc_ircc_sir_receive(self
);
1601 if (lsr
& UART_LSR_THRE
)
1602 /* Transmitter ready for data */
1603 smsc_ircc_sir_write_wakeup(self
);
1606 pr_debug("%s(), unhandled IIR=%#x\n",
1611 /* Make sure we don't stay here to long */
1612 if (boguscount
++ > 100)
1615 iir
= inb(iobase
+ UART_IIR
) & UART_IIR_ID
;
1617 /*spin_unlock(&self->lock);*/
1624 * Function ircc_is_receiving (self)
1626 * Return TRUE is we are currently receiving a frame
1629 static int ircc_is_receiving(struct smsc_ircc_cb
*self
)
1634 pr_debug("%s\n", __func__
);
1636 IRDA_ASSERT(self
!= NULL
, return FALSE
;);
1638 pr_debug("%s: dma count = %d\n", __func__
,
1639 get_dma_residue(self
->io
.dma
));
1641 status
= (self
->rx_buff
.state
!= OUTSIDE_FRAME
);
1647 static int smsc_ircc_request_irq(struct smsc_ircc_cb
*self
)
1651 error
= request_irq(self
->io
.irq
, smsc_ircc_interrupt
, 0,
1652 self
->netdev
->name
, self
->netdev
);
1654 pr_debug("%s(), unable to allocate irq=%d, err=%d\n",
1655 __func__
, self
->io
.irq
, error
);
1660 static void smsc_ircc_start_interrupts(struct smsc_ircc_cb
*self
)
1662 unsigned long flags
;
1664 spin_lock_irqsave(&self
->lock
, flags
);
1667 smsc_ircc_change_speed(self
, SMSC_IRCC2_C_IRDA_FALLBACK_SPEED
);
1669 spin_unlock_irqrestore(&self
->lock
, flags
);
1672 static void smsc_ircc_stop_interrupts(struct smsc_ircc_cb
*self
)
1674 int iobase
= self
->io
.fir_base
;
1675 unsigned long flags
;
1677 spin_lock_irqsave(&self
->lock
, flags
);
1679 register_bank(iobase
, 0);
1680 outb(0, iobase
+ IRCC_IER
);
1681 outb(IRCC_MASTER_RESET
, iobase
+ IRCC_MASTER
);
1682 outb(0x00, iobase
+ IRCC_MASTER
);
1684 spin_unlock_irqrestore(&self
->lock
, flags
);
1689 * Function smsc_ircc_net_open (dev)
1694 static int smsc_ircc_net_open(struct net_device
*dev
)
1696 struct smsc_ircc_cb
*self
;
1699 pr_debug("%s\n", __func__
);
1701 IRDA_ASSERT(dev
!= NULL
, return -1;);
1702 self
= netdev_priv(dev
);
1703 IRDA_ASSERT(self
!= NULL
, return 0;);
1705 if (self
->io
.suspended
) {
1706 pr_debug("%s(), device is suspended\n", __func__
);
1710 if (request_irq(self
->io
.irq
, smsc_ircc_interrupt
, 0, dev
->name
,
1712 pr_debug("%s(), unable to allocate irq=%d\n",
1713 __func__
, self
->io
.irq
);
1717 smsc_ircc_start_interrupts(self
);
1719 /* Give self a hardware name */
1720 /* It would be cool to offer the chip revision here - Jean II */
1721 sprintf(hwname
, "SMSC @ 0x%03x", self
->io
.fir_base
);
1724 * Open new IrLAP layer instance, now that everything should be
1725 * initialized properly
1727 self
->irlap
= irlap_open(dev
, &self
->qos
, hwname
);
1730 * Always allocate the DMA channel after the IRQ,
1731 * and clean up on failure.
1733 if (request_dma(self
->io
.dma
, dev
->name
)) {
1734 smsc_ircc_net_close(dev
);
1736 net_warn_ratelimited("%s(), unable to allocate DMA=%d\n",
1737 __func__
, self
->io
.dma
);
1741 netif_start_queue(dev
);
1747 * Function smsc_ircc_net_close (dev)
1752 static int smsc_ircc_net_close(struct net_device
*dev
)
1754 struct smsc_ircc_cb
*self
;
1756 pr_debug("%s\n", __func__
);
1758 IRDA_ASSERT(dev
!= NULL
, return -1;);
1759 self
= netdev_priv(dev
);
1760 IRDA_ASSERT(self
!= NULL
, return 0;);
1763 netif_stop_queue(dev
);
1765 /* Stop and remove instance of IrLAP */
1767 irlap_close(self
->irlap
);
1770 smsc_ircc_stop_interrupts(self
);
1772 /* if we are called from smsc_ircc_resume we don't have IRQ reserved */
1773 if (!self
->io
.suspended
)
1774 free_irq(self
->io
.irq
, dev
);
1776 disable_dma(self
->io
.dma
);
1777 free_dma(self
->io
.dma
);
1782 static int smsc_ircc_suspend(struct platform_device
*dev
, pm_message_t state
)
1784 struct smsc_ircc_cb
*self
= platform_get_drvdata(dev
);
1786 if (!self
->io
.suspended
) {
1787 pr_debug("%s, Suspending\n", driver_name
);
1790 if (netif_running(self
->netdev
)) {
1791 netif_device_detach(self
->netdev
);
1792 smsc_ircc_stop_interrupts(self
);
1793 free_irq(self
->io
.irq
, self
->netdev
);
1794 disable_dma(self
->io
.dma
);
1796 self
->io
.suspended
= 1;
1803 static int smsc_ircc_resume(struct platform_device
*dev
)
1805 struct smsc_ircc_cb
*self
= platform_get_drvdata(dev
);
1807 if (self
->io
.suspended
) {
1808 pr_debug("%s, Waking up\n", driver_name
);
1811 smsc_ircc_init_chip(self
);
1812 if (netif_running(self
->netdev
)) {
1813 if (smsc_ircc_request_irq(self
)) {
1815 * Don't fail resume process, just kill this
1818 unregister_netdevice(self
->netdev
);
1820 enable_dma(self
->io
.dma
);
1821 smsc_ircc_start_interrupts(self
);
1822 netif_device_attach(self
->netdev
);
1825 self
->io
.suspended
= 0;
1832 * Function smsc_ircc_close (self)
1834 * Close driver instance
1837 static int __exit
smsc_ircc_close(struct smsc_ircc_cb
*self
)
1839 pr_debug("%s\n", __func__
);
1841 IRDA_ASSERT(self
!= NULL
, return -1;);
1843 platform_device_unregister(self
->pldev
);
1845 /* Remove netdevice */
1846 unregister_netdev(self
->netdev
);
1848 smsc_ircc_stop_interrupts(self
);
1850 /* Release the PORTS that this driver is using */
1851 pr_debug("%s(), releasing 0x%03x\n", __func__
,
1854 release_region(self
->io
.fir_base
, self
->io
.fir_ext
);
1856 pr_debug("%s(), releasing 0x%03x\n", __func__
,
1859 release_region(self
->io
.sir_base
, self
->io
.sir_ext
);
1861 if (self
->tx_buff
.head
)
1862 dma_free_coherent(NULL
, self
->tx_buff
.truesize
,
1863 self
->tx_buff
.head
, self
->tx_buff_dma
);
1865 if (self
->rx_buff
.head
)
1866 dma_free_coherent(NULL
, self
->rx_buff
.truesize
,
1867 self
->rx_buff
.head
, self
->rx_buff_dma
);
1869 free_netdev(self
->netdev
);
1874 static void __exit
smsc_ircc_cleanup(void)
1878 pr_debug("%s\n", __func__
);
1880 for (i
= 0; i
< 2; i
++) {
1882 smsc_ircc_close(dev_self
[i
]);
1885 if (pnp_driver_registered
)
1886 pnp_unregister_driver(&smsc_ircc_pnp_driver
);
1888 platform_driver_unregister(&smsc_ircc_driver
);
1892 * Start SIR operations
1894 * This function *must* be called with spinlock held, because it may
1895 * be called from the irq handler (via smsc_ircc_change_speed()). - Jean II
1897 static void smsc_ircc_sir_start(struct smsc_ircc_cb
*self
)
1899 struct net_device
*dev
;
1900 int fir_base
, sir_base
;
1902 pr_debug("%s\n", __func__
);
1904 IRDA_ASSERT(self
!= NULL
, return;);
1906 IRDA_ASSERT(dev
!= NULL
, return;);
1908 fir_base
= self
->io
.fir_base
;
1909 sir_base
= self
->io
.sir_base
;
1911 /* Reset everything */
1912 outb(IRCC_MASTER_RESET
, fir_base
+ IRCC_MASTER
);
1914 #if SMSC_IRCC2_C_SIR_STOP
1915 /*smsc_ircc_sir_stop(self);*/
1918 register_bank(fir_base
, 1);
1919 outb(((inb(fir_base
+ IRCC_SCE_CFGA
) & IRCC_SCE_CFGA_BLOCK_CTRL_BITS_MASK
) | IRCC_CFGA_IRDA_SIR_A
), fir_base
+ IRCC_SCE_CFGA
);
1921 /* Initialize UART */
1922 outb(UART_LCR_WLEN8
, sir_base
+ UART_LCR
); /* Reset DLAB */
1923 outb((UART_MCR_DTR
| UART_MCR_RTS
| UART_MCR_OUT2
), sir_base
+ UART_MCR
);
1925 /* Turn on interrups */
1926 outb(UART_IER_RLSI
| UART_IER_RDI
|UART_IER_THRI
, sir_base
+ UART_IER
);
1928 pr_debug("%s() - exit\n", __func__
);
1930 outb(0x00, fir_base
+ IRCC_MASTER
);
1933 #if SMSC_IRCC2_C_SIR_STOP
1934 void smsc_ircc_sir_stop(struct smsc_ircc_cb
*self
)
1938 pr_debug("%s\n", __func__
);
1939 iobase
= self
->io
.sir_base
;
1942 outb(0, iobase
+ UART_MCR
);
1944 /* Turn off interrupts */
1945 outb(0, iobase
+ UART_IER
);
1950 * Function smsc_sir_write_wakeup (self)
1952 * Called by the SIR interrupt handler when there's room for more data.
1953 * If we have more packets to send, we send them here.
1956 static void smsc_ircc_sir_write_wakeup(struct smsc_ircc_cb
*self
)
1962 IRDA_ASSERT(self
!= NULL
, return;);
1964 pr_debug("%s\n", __func__
);
1966 iobase
= self
->io
.sir_base
;
1968 /* Finished with frame? */
1969 if (self
->tx_buff
.len
> 0) {
1970 /* Write data left in transmit buffer */
1971 actual
= smsc_ircc_sir_write(iobase
, self
->io
.fifo_size
,
1972 self
->tx_buff
.data
, self
->tx_buff
.len
);
1973 self
->tx_buff
.data
+= actual
;
1974 self
->tx_buff
.len
-= actual
;
1977 /*if (self->tx_buff.len ==0) {*/
1980 * Now serial buffer is almost free & we can start
1981 * transmission of another packet. But first we must check
1982 * if we need to change the speed of the hardware
1984 if (self
->new_speed
) {
1985 pr_debug("%s(), Changing speed to %d.\n",
1986 __func__
, self
->new_speed
);
1987 smsc_ircc_sir_wait_hw_transmitter_finish(self
);
1988 smsc_ircc_change_speed(self
, self
->new_speed
);
1989 self
->new_speed
= 0;
1991 /* Tell network layer that we want more frames */
1992 netif_wake_queue(self
->netdev
);
1994 self
->netdev
->stats
.tx_packets
++;
1996 if (self
->io
.speed
<= 115200) {
1998 * Reset Rx FIFO to make sure that all reflected transmit data
1999 * is discarded. This is needed for half duplex operation
2001 fcr
= UART_FCR_ENABLE_FIFO
| UART_FCR_CLEAR_RCVR
;
2002 fcr
|= self
->io
.speed
< 38400 ?
2003 UART_FCR_TRIGGER_1
: UART_FCR_TRIGGER_14
;
2005 outb(fcr
, iobase
+ UART_FCR
);
2007 /* Turn on receive interrupts */
2008 outb(UART_IER_RDI
, iobase
+ UART_IER
);
2014 * Function smsc_ircc_sir_write (iobase, fifo_size, buf, len)
2016 * Fill Tx FIFO with transmit data
2019 static int smsc_ircc_sir_write(int iobase
, int fifo_size
, __u8
*buf
, int len
)
2023 /* Tx FIFO should be empty! */
2024 if (!(inb(iobase
+ UART_LSR
) & UART_LSR_THRE
)) {
2025 net_warn_ratelimited("%s(), failed, fifo not empty!\n",
2030 /* Fill FIFO with current frame */
2031 while (fifo_size
-- > 0 && actual
< len
) {
2032 /* Transmit next byte */
2033 outb(buf
[actual
], iobase
+ UART_TX
);
2040 * Function smsc_ircc_is_receiving (self)
2042 * Returns true is we are currently receiving data
2045 static int smsc_ircc_is_receiving(struct smsc_ircc_cb
*self
)
2047 return self
->rx_buff
.state
!= OUTSIDE_FRAME
;
2052 * Function smsc_ircc_probe_transceiver(self)
2054 * Tries to find the used Transceiver
2057 static void smsc_ircc_probe_transceiver(struct smsc_ircc_cb
*self
)
2061 IRDA_ASSERT(self
!= NULL
, return;);
2063 for (i
= 0; smsc_transceivers
[i
].name
!= NULL
; i
++)
2064 if (smsc_transceivers
[i
].probe(self
->io
.fir_base
)) {
2065 net_info_ratelimited(" %s transceiver found\n",
2066 smsc_transceivers
[i
].name
);
2067 self
->transceiver
= i
+ 1;
2071 net_info_ratelimited("No transceiver found. Defaulting to %s\n",
2072 smsc_transceivers
[SMSC_IRCC2_C_DEFAULT_TRANSCEIVER
].name
);
2074 self
->transceiver
= SMSC_IRCC2_C_DEFAULT_TRANSCEIVER
;
2079 * Function smsc_ircc_set_transceiver_for_speed(self, speed)
2081 * Set the transceiver according to the speed
2084 static void smsc_ircc_set_transceiver_for_speed(struct smsc_ircc_cb
*self
, u32 speed
)
2088 trx
= self
->transceiver
;
2090 smsc_transceivers
[trx
- 1].set_for_speed(self
->io
.fir_base
, speed
);
2094 * Function smsc_ircc_wait_hw_transmitter_finish ()
2096 * Wait for the real end of HW transmission
2098 * The UART is a strict FIFO, and we get called only when we have finished
2099 * pushing data to the FIFO, so the maximum amount of time we must wait
2100 * is only for the FIFO to drain out.
2102 * We use a simple calibrated loop. We may need to adjust the loop
2103 * delay (udelay) to balance I/O traffic and latency. And we also need to
2104 * adjust the maximum timeout.
2105 * It would probably be better to wait for the proper interrupt,
2106 * but it doesn't seem to be available.
2108 * We can't use jiffies or kernel timers because :
2109 * 1) We are called from the interrupt handler, which disable softirqs,
2110 * so jiffies won't be increased
2111 * 2) Jiffies granularity is usually very coarse (10ms), and we don't
2112 * want to wait that long to detect stuck hardware.
2116 static void smsc_ircc_sir_wait_hw_transmitter_finish(struct smsc_ircc_cb
*self
)
2118 int iobase
= self
->io
.sir_base
;
2119 int count
= SMSC_IRCC2_HW_TRANSMITTER_TIMEOUT_US
;
2121 /* Calibrated busy loop */
2122 while (count
-- > 0 && !(inb(iobase
+ UART_LSR
) & UART_LSR_TEMT
))
2126 pr_debug("%s(): stuck transmitter\n", __func__
);
2132 * REVISIT we can be told about the device by PNP, and should use that info
2133 * instead of probing hardware and creating a platform_device ...
2136 static int __init
smsc_ircc_look_for_chips(void)
2138 struct smsc_chip_address
*address
;
2140 unsigned int cfg_base
, found
;
2143 address
= possible_addresses
;
2145 while (address
->cfg_base
) {
2146 cfg_base
= address
->cfg_base
;
2148 /*printk(KERN_WARNING "%s(): probing: 0x%02x for: 0x%02x\n", __func__, cfg_base, address->type);*/
2150 if (address
->type
& SMSCSIO_TYPE_FDC
) {
2152 if (address
->type
& SMSCSIO_TYPE_FLAT
)
2153 if (!smsc_superio_flat(fdc_chips_flat
, cfg_base
, type
))
2156 if (address
->type
& SMSCSIO_TYPE_PAGED
)
2157 if (!smsc_superio_paged(fdc_chips_paged
, cfg_base
, type
))
2160 if (address
->type
& SMSCSIO_TYPE_LPC
) {
2162 if (address
->type
& SMSCSIO_TYPE_FLAT
)
2163 if (!smsc_superio_flat(lpc_chips_flat
, cfg_base
, type
))
2166 if (address
->type
& SMSCSIO_TYPE_PAGED
)
2167 if (!smsc_superio_paged(lpc_chips_paged
, cfg_base
, type
))
2176 * Function smsc_superio_flat (chip, base, type)
2178 * Try to get configuration of a smc SuperIO chip with flat register model
2181 static int __init
smsc_superio_flat(const struct smsc_chip
*chips
, unsigned short cfgbase
, char *type
)
2183 unsigned short firbase
, sirbase
;
2187 pr_debug("%s\n", __func__
);
2189 if (smsc_ircc_probe(cfgbase
, SMSCSIOFLAT_DEVICEID_REG
, chips
, type
) == NULL
)
2192 outb(SMSCSIOFLAT_UARTMODE0C_REG
, cfgbase
);
2193 mode
= inb(cfgbase
+ 1);
2195 /*printk(KERN_WARNING "%s(): mode: 0x%02x\n", __func__, mode);*/
2197 if (!(mode
& SMSCSIOFLAT_UART2MODE_VAL_IRDA
))
2198 net_warn_ratelimited("%s(): IrDA not enabled\n", __func__
);
2200 outb(SMSCSIOFLAT_UART2BASEADDR_REG
, cfgbase
);
2201 sirbase
= inb(cfgbase
+ 1) << 2;
2204 outb(SMSCSIOFLAT_FIRBASEADDR_REG
, cfgbase
);
2205 firbase
= inb(cfgbase
+ 1) << 3;
2208 outb(SMSCSIOFLAT_FIRDMASELECT_REG
, cfgbase
);
2209 dma
= inb(cfgbase
+ 1) & SMSCSIOFLAT_FIRDMASELECT_MASK
;
2212 outb(SMSCSIOFLAT_UARTIRQSELECT_REG
, cfgbase
);
2213 irq
= inb(cfgbase
+ 1) & SMSCSIOFLAT_UART2IRQSELECT_MASK
;
2215 net_info_ratelimited("%s(): fir: 0x%02x, sir: 0x%02x, dma: %02d, irq: %d, mode: 0x%02x\n",
2216 __func__
, firbase
, sirbase
, dma
, irq
, mode
);
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 pr_debug("%s\n", __func__
);
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 pr_debug("%s\n", __func__
);
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 pr_debug("%s\n", __func__
);
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 net_info_ratelimited("found SMC SuperIO Chip (devid=0x%02x rev=%02X base=0x%04x): %s%s\n",
2338 devid
, rev
, cfg_base
, type
, chip
->name
);
2340 if (chip
->rev
> rev
) {
2341 net_info_ratelimited("Revision higher than expected\n");
2345 if (chip
->flags
& NoIRDA
)
2346 net_info_ratelimited("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 net_warn_ratelimited("%s: can't get cfg_base of 0x%03x\n",
2357 __func__
, 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 net_warn_ratelimited("%s: can't get cfg_base of 0x%03x\n",
2375 __func__
, 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 static struct smsc_ircc_subsystem_configuration subsystem_configurations
[] __initdata
= {
2403 * Subsystems needing entries:
2404 * 0x10b9:0x1533 0x103c:0x0850 HP nx9010 family
2405 * 0x10b9:0x1533 0x0e11:0x005a Compaq nc4000 family
2406 * 0x8086:0x24cc 0x0e11:0x002a HP nx9000 family
2410 .vendor
= PCI_VENDOR_ID_INTEL
, /* Intel 82801DBM LPC bridge */
2412 .subvendor
= 0x103c,
2413 .subdevice
= 0x08bc,
2419 .preconfigure
= preconfigure_through_82801
,
2420 .name
= "HP nx5000 family",
2423 .vendor
= PCI_VENDOR_ID_INTEL
, /* Intel 82801DBM LPC bridge */
2425 .subvendor
= 0x103c,
2426 .subdevice
= 0x088c,
2427 /* Quite certain these are the same for nc8000 as for nc6000 */
2433 .preconfigure
= preconfigure_through_82801
,
2434 .name
= "HP nc8000 family",
2437 .vendor
= PCI_VENDOR_ID_INTEL
, /* Intel 82801DBM LPC bridge */
2439 .subvendor
= 0x103c,
2440 .subdevice
= 0x0890,
2446 .preconfigure
= preconfigure_through_82801
,
2447 .name
= "HP nc6000 family",
2450 .vendor
= PCI_VENDOR_ID_INTEL
, /* Intel 82801DBM LPC bridge */
2452 .subvendor
= 0x0e11,
2453 .subdevice
= 0x0860,
2454 /* I assume these are the same for x1000 as for the others */
2460 .preconfigure
= preconfigure_through_82801
,
2461 .name
= "Compaq x1000 family",
2464 /* Intel 82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge */
2465 .vendor
= PCI_VENDOR_ID_INTEL
,
2467 .subvendor
= 0x1179,
2468 .subdevice
= 0xffff, /* 0xffff is "any" */
2474 .preconfigure
= preconfigure_through_82801
,
2475 .name
= "Toshiba laptop with Intel 82801DB/DBL LPC bridge",
2478 .vendor
= PCI_VENDOR_ID_INTEL
, /* Intel 82801CAM ISA bridge */
2480 .subvendor
= 0x1179,
2481 .subdevice
= 0xffff, /* 0xffff is "any" */
2487 .preconfigure
= preconfigure_through_82801
,
2488 .name
= "Toshiba laptop with Intel 82801CAM ISA bridge",
2491 /* 82801DBM (ICH4-M) LPC Interface Bridge */
2492 .vendor
= PCI_VENDOR_ID_INTEL
,
2494 .subvendor
= 0x1179,
2495 .subdevice
= 0xffff, /* 0xffff is "any" */
2501 .preconfigure
= preconfigure_through_82801
,
2502 .name
= "Toshiba laptop with Intel 8281DBM LPC bridge",
2505 /* ALi M1533/M1535 PCI to ISA Bridge [Aladdin IV/V/V+] */
2506 .vendor
= PCI_VENDOR_ID_AL
,
2508 .subvendor
= 0x1179,
2509 .subdevice
= 0xffff, /* 0xffff is "any" */
2515 .preconfigure
= preconfigure_through_ali
,
2516 .name
= "Toshiba laptop with ALi ISA bridge",
2523 * This sets up the basic SMSC parameters
2524 * (FIR port, SIR port, FIR DMA, FIR IRQ)
2525 * through the chip configuration port.
2527 static int __init
preconfigure_smsc_chip(struct
2528 smsc_ircc_subsystem_configuration
2531 unsigned short iobase
= conf
->cfg_base
;
2532 unsigned char tmpbyte
;
2534 outb(LPC47N227_CFGACCESSKEY
, iobase
); // enter configuration state
2535 outb(SMSCSIOFLAT_DEVICEID_REG
, iobase
); // set for device ID
2536 tmpbyte
= inb(iobase
+1); // Read device ID
2537 pr_debug("Detected Chip id: 0x%02x, setting up registers...\n",
2540 /* Disable UART1 and set up SIR I/O port */
2541 outb(0x24, iobase
); // select CR24 - UART1 base addr
2542 outb(0x00, iobase
+ 1); // disable UART1
2543 outb(SMSCSIOFLAT_UART2BASEADDR_REG
, iobase
); // select CR25 - UART2 base addr
2544 outb( (conf
->sir_io
>> 2), iobase
+ 1); // bits 2-9 of 0x3f8
2545 tmpbyte
= inb(iobase
+ 1);
2546 if (tmpbyte
!= (conf
->sir_io
>> 2) ) {
2547 net_warn_ratelimited("ERROR: could not configure SIR ioport\n");
2548 net_warn_ratelimited("Try to supply ircc_cfg argument\n");
2552 /* Set up FIR IRQ channel for UART2 */
2553 outb(SMSCSIOFLAT_UARTIRQSELECT_REG
, iobase
); // select CR28 - UART1,2 IRQ select
2554 tmpbyte
= inb(iobase
+ 1);
2555 tmpbyte
&= SMSCSIOFLAT_UART1IRQSELECT_MASK
; // Do not touch the UART1 portion
2556 tmpbyte
|= (conf
->fir_irq
& SMSCSIOFLAT_UART2IRQSELECT_MASK
);
2557 outb(tmpbyte
, iobase
+ 1);
2558 tmpbyte
= inb(iobase
+ 1) & SMSCSIOFLAT_UART2IRQSELECT_MASK
;
2559 if (tmpbyte
!= conf
->fir_irq
) {
2560 net_warn_ratelimited("ERROR: could not configure FIR IRQ channel\n");
2564 /* Set up FIR I/O port */
2565 outb(SMSCSIOFLAT_FIRBASEADDR_REG
, iobase
); // CR2B - SCE (FIR) base addr
2566 outb((conf
->fir_io
>> 3), iobase
+ 1);
2567 tmpbyte
= inb(iobase
+ 1);
2568 if (tmpbyte
!= (conf
->fir_io
>> 3) ) {
2569 net_warn_ratelimited("ERROR: could not configure FIR I/O port\n");
2573 /* Set up FIR DMA channel */
2574 outb(SMSCSIOFLAT_FIRDMASELECT_REG
, iobase
); // CR2C - SCE (FIR) DMA select
2575 outb((conf
->fir_dma
& LPC47N227_FIRDMASELECT_MASK
), iobase
+ 1); // DMA
2576 tmpbyte
= inb(iobase
+ 1) & LPC47N227_FIRDMASELECT_MASK
;
2577 if (tmpbyte
!= (conf
->fir_dma
& LPC47N227_FIRDMASELECT_MASK
)) {
2578 net_warn_ratelimited("ERROR: could not configure FIR DMA channel\n");
2582 outb(SMSCSIOFLAT_UARTMODE0C_REG
, iobase
); // CR0C - UART mode
2583 tmpbyte
= inb(iobase
+ 1);
2584 tmpbyte
&= ~SMSCSIOFLAT_UART2MODE_MASK
|
2585 SMSCSIOFLAT_UART2MODE_VAL_IRDA
;
2586 outb(tmpbyte
, iobase
+ 1); // enable IrDA (HPSIR) mode, high speed
2588 outb(LPC47N227_APMBOOTDRIVE_REG
, iobase
); // CR07 - Auto Pwr Mgt/boot drive sel
2589 tmpbyte
= inb(iobase
+ 1);
2590 outb(tmpbyte
| LPC47N227_UART2AUTOPWRDOWN_MASK
, iobase
+ 1); // enable UART2 autopower down
2592 /* This one was not part of tosh1800 */
2593 outb(0x0a, iobase
); // CR0a - ecp fifo / ir mux
2594 tmpbyte
= inb(iobase
+ 1);
2595 outb(tmpbyte
| 0x40, iobase
+ 1); // send active device to ir port
2597 outb(LPC47N227_UART12POWER_REG
, iobase
); // CR02 - UART 1,2 power
2598 tmpbyte
= inb(iobase
+ 1);
2599 outb(tmpbyte
| LPC47N227_UART2POWERDOWN_MASK
, iobase
+ 1); // UART2 power up mode, UART1 power down
2601 outb(LPC47N227_FDCPOWERVALIDCONF_REG
, iobase
); // CR00 - FDC Power/valid config cycle
2602 tmpbyte
= inb(iobase
+ 1);
2603 outb(tmpbyte
| LPC47N227_VALID_MASK
, iobase
+ 1); // valid config cycle done
2605 outb(LPC47N227_CFGEXITKEY
, iobase
); // Exit configuration
2610 /* 82801CAM generic registers */
2613 #define PIRQ_A_D_ROUT 0x60
2614 #define SIRQ_CNTL 0x64
2615 #define PIRQ_E_H_ROUT 0x68
2616 #define PCI_DMA_C 0x90
2617 /* LPC-specific registers */
2618 #define COM_DEC 0xe0
2619 #define GEN1_DEC 0xe4
2621 #define GEN2_DEC 0xec
2623 * Sets up the I/O range using the 82801CAM ISA bridge, 82801DBM LPC bridge
2624 * or Intel 82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge.
2625 * They all work the same way!
2627 static int __init
preconfigure_through_82801(struct pci_dev
*dev
,
2629 smsc_ircc_subsystem_configuration
2632 unsigned short tmpword
;
2633 unsigned char tmpbyte
;
2635 net_info_ratelimited("Setting up Intel 82801 controller and SMSC device\n");
2637 * Select the range for the COMA COM port (SIR)
2640 * Bit 6-4, COMB decode range
2642 * Bit 2-0, COMA decode range
2645 * 000 = 0x3f8-0x3ff (COM1)
2646 * 001 = 0x2f8-0x2ff (COM2)
2650 * 101 = 0x2e8-0x2ef (COM4)
2652 * 111 = 0x3e8-0x3ef (COM3)
2654 pci_read_config_byte(dev
, COM_DEC
, &tmpbyte
);
2655 tmpbyte
&= 0xf8; /* mask COMA bits */
2656 switch(conf
->sir_io
) {
2682 tmpbyte
|= 0x01; /* COM2 default */
2684 pr_debug("COM_DEC (write): 0x%02x\n", tmpbyte
);
2685 pci_write_config_byte(dev
, COM_DEC
, tmpbyte
);
2687 /* Enable Low Pin Count interface */
2688 pci_read_config_word(dev
, LPC_EN
, &tmpword
);
2689 /* These seem to be set up at all times,
2690 * just make sure it is properly set.
2692 switch(conf
->cfg_base
) {
2706 net_warn_ratelimited("Uncommon I/O base address: 0x%04x\n",
2710 tmpword
&= 0xfffd; /* disable LPC COMB */
2711 tmpword
|= 0x0001; /* set bit 0 : enable LPC COMA addr range (GEN2) */
2712 pr_debug("LPC_EN (write): 0x%04x\n", tmpword
);
2713 pci_write_config_word(dev
, LPC_EN
, tmpword
);
2716 * Configure LPC DMA channel
2718 * Bit 15-14: DMA channel 7 select
2719 * Bit 13-12: DMA channel 6 select
2720 * Bit 11-10: DMA channel 5 select
2722 * Bit 7-6: DMA channel 3 select
2723 * Bit 5-4: DMA channel 2 select
2724 * Bit 3-2: DMA channel 1 select
2725 * Bit 1-0: DMA channel 0 select
2726 * 00 = Reserved value
2728 * 10 = Reserved value
2731 pci_read_config_word(dev
, PCI_DMA_C
, &tmpword
);
2732 switch(conf
->fir_dma
) {
2755 break; /* do not change settings */
2757 pr_debug("PCI_DMA_C (write): 0x%04x\n", tmpword
);
2758 pci_write_config_word(dev
, PCI_DMA_C
, tmpword
);
2762 * Bit 15-4: Generic I/O range
2763 * Bit 3-1: reserved (read as 0)
2764 * Bit 0: enable GEN2 range on LPC I/F
2766 tmpword
= conf
->fir_io
& 0xfff8;
2768 pr_debug("GEN2_DEC (write): 0x%04x\n", tmpword
);
2769 pci_write_config_word(dev
, GEN2_DEC
, tmpword
);
2771 /* Pre-configure chip */
2772 return preconfigure_smsc_chip(conf
);
2776 * Pre-configure a certain port on the ALi 1533 bridge.
2777 * This is based on reverse-engineering since ALi does not
2778 * provide any data sheet for the 1533 chip.
2780 static void __init
preconfigure_ali_port(struct pci_dev
*dev
,
2781 unsigned short port
)
2784 /* These bits obviously control the different ports */
2786 unsigned char tmpbyte
;
2807 net_err_ratelimited("Failed to configure unsupported port on ALi 1533 bridge: 0x%04x\n",
2812 pci_read_config_byte(dev
, reg
, &tmpbyte
);
2813 /* Turn on the right bits */
2815 pci_write_config_byte(dev
, reg
, tmpbyte
);
2816 net_info_ratelimited("Activated ALi 1533 ISA bridge port 0x%04x\n",
2820 static int __init
preconfigure_through_ali(struct pci_dev
*dev
,
2822 smsc_ircc_subsystem_configuration
2825 /* Configure the two ports on the ALi 1533 */
2826 preconfigure_ali_port(dev
, conf
->sir_io
);
2827 preconfigure_ali_port(dev
, conf
->fir_io
);
2829 /* Pre-configure chip */
2830 return preconfigure_smsc_chip(conf
);
2833 static int __init
smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg
,
2834 unsigned short ircc_fir
,
2835 unsigned short ircc_sir
,
2836 unsigned char ircc_dma
,
2837 unsigned char ircc_irq
)
2839 struct pci_dev
*dev
= NULL
;
2840 unsigned short ss_vendor
= 0x0000;
2841 unsigned short ss_device
= 0x0000;
2844 for_each_pci_dev(dev
) {
2845 struct smsc_ircc_subsystem_configuration
*conf
;
2848 * Cache the subsystem vendor/device:
2849 * some manufacturers fail to set this for all components,
2850 * so we save it in case there is just 0x0000 0x0000 on the
2851 * device we want to check.
2853 if (dev
->subsystem_vendor
!= 0x0000U
) {
2854 ss_vendor
= dev
->subsystem_vendor
;
2855 ss_device
= dev
->subsystem_device
;
2857 conf
= subsystem_configurations
;
2858 for( ; conf
->subvendor
; conf
++) {
2859 if(conf
->vendor
== dev
->vendor
&&
2860 conf
->device
== dev
->device
&&
2861 conf
->subvendor
== ss_vendor
&&
2862 /* Sometimes these are cached values */
2863 (conf
->subdevice
== ss_device
||
2864 conf
->subdevice
== 0xffff)) {
2865 struct smsc_ircc_subsystem_configuration
2868 memcpy(&tmpconf
, conf
,
2869 sizeof(struct smsc_ircc_subsystem_configuration
));
2872 * Override the default values with anything
2873 * passed in as parameter
2876 tmpconf
.cfg_base
= ircc_cfg
;
2878 tmpconf
.fir_io
= ircc_fir
;
2880 tmpconf
.sir_io
= ircc_sir
;
2881 if (ircc_dma
!= DMA_INVAL
)
2882 tmpconf
.fir_dma
= ircc_dma
;
2883 if (ircc_irq
!= IRQ_INVAL
)
2884 tmpconf
.fir_irq
= ircc_irq
;
2886 net_info_ratelimited("Detected unconfigured %s SMSC IrDA chip, pre-configuring device\n",
2888 if (conf
->preconfigure
)
2889 ret
= conf
->preconfigure(dev
, &tmpconf
);
2898 #endif // CONFIG_PCI
2900 /************************************************
2902 * Transceivers specific functions
2904 ************************************************/
2908 * Function smsc_ircc_set_transceiver_smsc_ircc_atc(fir_base, speed)
2910 * Program transceiver through smsc-ircc ATC circuitry
2914 static void smsc_ircc_set_transceiver_smsc_ircc_atc(int fir_base
, u32 speed
)
2916 unsigned long jiffies_now
, jiffies_timeout
;
2919 jiffies_now
= jiffies
;
2920 jiffies_timeout
= jiffies
+ SMSC_IRCC2_ATC_PROGRAMMING_TIMEOUT_JIFFIES
;
2923 register_bank(fir_base
, 4);
2924 outb((inb(fir_base
+ IRCC_ATC
) & IRCC_ATC_MASK
) | IRCC_ATC_nPROGREADY
|IRCC_ATC_ENABLE
,
2925 fir_base
+ IRCC_ATC
);
2927 while ((val
= (inb(fir_base
+ IRCC_ATC
) & IRCC_ATC_nPROGREADY
)) &&
2928 !time_after(jiffies
, jiffies_timeout
))
2932 net_warn_ratelimited("%s(): ATC: 0x%02x\n",
2933 __func__
, inb(fir_base
+ IRCC_ATC
));
2937 * Function smsc_ircc_probe_transceiver_smsc_ircc_atc(fir_base)
2939 * Probe transceiver smsc-ircc ATC circuitry
2943 static int smsc_ircc_probe_transceiver_smsc_ircc_atc(int fir_base
)
2949 * Function smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(self, speed)
2955 static void smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(int fir_base
, u32 speed
)
2966 fast_mode
= IRCC_LCR_A_FAST
;
2969 register_bank(fir_base
, 0);
2970 outb((inb(fir_base
+ IRCC_LCR_A
) & 0xbf) | fast_mode
, fir_base
+ IRCC_LCR_A
);
2974 * Function smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(fir_base)
2980 static int smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(int fir_base
)
2986 * Function smsc_ircc_set_transceiver_toshiba_sat1800(fir_base, speed)
2992 static void smsc_ircc_set_transceiver_toshiba_sat1800(int fir_base
, u32 speed
)
3003 fast_mode
= /*IRCC_LCR_A_FAST |*/ IRCC_LCR_A_GP_DATA
;
3007 /* This causes an interrupt */
3008 register_bank(fir_base
, 0);
3009 outb((inb(fir_base
+ IRCC_LCR_A
) & 0xbf) | fast_mode
, fir_base
+ IRCC_LCR_A
);
3013 * Function smsc_ircc_probe_transceiver_toshiba_sat1800(fir_base)
3019 static int smsc_ircc_probe_transceiver_toshiba_sat1800(int fir_base
)
3025 module_init(smsc_ircc_init
);
3026 module_exit(smsc_ircc_cleanup
);