blob: 140b7cdb1f7e8186f43e896a75a0ecf09af9278a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*********************************************************************
2 * $Id: smsc-ircc2.c,v 1.19.2.5 2002/10/27 11:34:26 dip Exp $
3 *
4 * Description: Driver for the SMC Infrared Communications Controller
5 * Status: Experimental.
6 * Author: Daniele Peri (peri@csai.unipa.it)
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07007 * Created at:
8 * Modified at:
9 * Modified by:
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Copyright (c) 2002 Daniele Peri
12 * All Rights Reserved.
13 * Copyright (c) 2002 Jean Tourrilhes
14 *
15 *
16 * Based on smc-ircc.c:
17 *
18 * Copyright (c) 2001 Stefani Seibold
19 * Copyright (c) 1999-2001 Dag Brattli
Dmitry Torokhov527b6af2005-09-06 15:19:17 -070020 * Copyright (c) 1998-1999 Thomas Davis,
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 *
22 * and irport.c:
23 *
24 * Copyright (c) 1997, 1998, 1999-2000 Dag Brattli, All Rights Reserved.
25 *
Dmitry Torokhov527b6af2005-09-06 15:19:17 -070026 *
27 * This program is free software; you can redistribute it and/or
28 * modify it under the terms of the GNU General Public License as
29 * published by the Free Software Foundation; either version 2 of
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * the License, or (at your option) any later version.
Dmitry Torokhov527b6af2005-09-06 15:19:17 -070031 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 * This program is distributed in the hope that it will be useful,
33 * but WITHOUT ANY WARRANTY; without even the implied warranty of
34 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 * GNU General Public License for more details.
Dmitry Torokhov527b6af2005-09-06 15:19:17 -070036 *
37 * You should have received a copy of the GNU General Public License
38 * along with this program; if not, write to the Free Software
39 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 * MA 02111-1307 USA
41 *
42 ********************************************************************/
43
44#include <linux/module.h>
45#include <linux/kernel.h>
46#include <linux/types.h>
47#include <linux/skbuff.h>
48#include <linux/netdevice.h>
49#include <linux/ioport.h>
50#include <linux/delay.h>
51#include <linux/slab.h>
52#include <linux/init.h>
53#include <linux/rtnetlink.h>
54#include <linux/serial_reg.h>
55#include <linux/dma-mapping.h>
56
57#include <asm/io.h>
58#include <asm/dma.h>
59#include <asm/byteorder.h>
60
61#include <linux/spinlock.h>
62#include <linux/pm.h>
63
64#include <net/irda/wrapper.h>
65#include <net/irda/irda.h>
66#include <net/irda/irda_device.h>
67
68#include "smsc-ircc2.h"
69#include "smsc-sio.h"
70
Dmitry Torokhov98b77772005-09-06 15:19:19 -070071
72MODULE_AUTHOR("Daniele Peri <peri@csai.unipa.it>");
73MODULE_DESCRIPTION("SMC IrCC SIR/FIR controller driver");
74MODULE_LICENSE("GPL");
75
Dmitry Torokhov98b77772005-09-06 15:19:19 -070076static int ircc_dma = 255;
77module_param(ircc_dma, int, 0);
78MODULE_PARM_DESC(ircc_dma, "DMA channel");
79
80static int ircc_irq = 255;
81module_param(ircc_irq, int, 0);
82MODULE_PARM_DESC(ircc_irq, "IRQ line");
83
84static int ircc_fir;
85module_param(ircc_fir, int, 0);
86MODULE_PARM_DESC(ircc_fir, "FIR Base Address");
87
88static int ircc_sir;
89module_param(ircc_sir, int, 0);
90MODULE_PARM_DESC(ircc_sir, "SIR Base Address");
91
92static int ircc_cfg;
93module_param(ircc_cfg, int, 0);
94MODULE_PARM_DESC(ircc_cfg, "Configuration register base address");
95
96static int ircc_transceiver;
97module_param(ircc_transceiver, int, 0);
98MODULE_PARM_DESC(ircc_transceiver, "Transceiver type");
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/* Types */
101
102struct smsc_transceiver {
103 char *name;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700104 void (*set_for_speed)(int fir_base, u32 speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 int (*probe)(int fir_base);
106};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108struct smsc_chip {
109 char *name;
110 #if 0
111 u8 type;
112 #endif
113 u16 flags;
114 u8 devid;
115 u8 rev;
116};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118struct smsc_chip_address {
119 unsigned int cfg_base;
120 unsigned int type;
121};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123/* Private data for each instance */
124struct smsc_ircc_cb {
125 struct net_device *netdev; /* Yes! we are some kind of netdevice */
126 struct net_device_stats stats;
127 struct irlap_cb *irlap; /* The link layer we are binded to */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 chipio_t io; /* IrDA controller information */
130 iobuff_t tx_buff; /* Transmit buffer */
131 iobuff_t rx_buff; /* Receive buffer */
132 dma_addr_t tx_buff_dma;
133 dma_addr_t rx_buff_dma;
134
135 struct qos_info qos; /* QoS capabilities for this device */
136
137 spinlock_t lock; /* For serializing operations */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 __u32 new_speed;
140 __u32 flags; /* Interface flags */
141
142 int tx_buff_offsets[10]; /* Offsets between frames in tx_buff */
143 int tx_len; /* Number of frames in tx_buff */
144
145 int transceiver;
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700146 struct platform_device *pldev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
149/* Constants */
150
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700151#define SMSC_IRCC2_DRIVER_NAME "smsc-ircc2"
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#define SMSC_IRCC2_C_IRDA_FALLBACK_SPEED 9600
154#define SMSC_IRCC2_C_DEFAULT_TRANSCEIVER 1
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700155#define SMSC_IRCC2_C_NET_TIMEOUT 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#define SMSC_IRCC2_C_SIR_STOP 0
157
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700158static const char *driver_name = SMSC_IRCC2_DRIVER_NAME;
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/* Prototypes */
161
162static int smsc_ircc_open(unsigned int firbase, unsigned int sirbase, u8 dma, u8 irq);
163static int smsc_ircc_present(unsigned int fir_base, unsigned int sir_base);
164static void smsc_ircc_setup_io(struct smsc_ircc_cb *self, unsigned int fir_base, unsigned int sir_base, u8 dma, u8 irq);
165static void smsc_ircc_setup_qos(struct smsc_ircc_cb *self);
166static void smsc_ircc_init_chip(struct smsc_ircc_cb *self);
167static int __exit smsc_ircc_close(struct smsc_ircc_cb *self);
Dmitry Torokhov80a90582005-09-06 15:19:21 -0700168static int smsc_ircc_dma_receive(struct smsc_ircc_cb *self);
169static void smsc_ircc_dma_receive_complete(struct smsc_ircc_cb *self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170static void smsc_ircc_sir_receive(struct smsc_ircc_cb *self);
171static int smsc_ircc_hard_xmit_sir(struct sk_buff *skb, struct net_device *dev);
172static int smsc_ircc_hard_xmit_fir(struct sk_buff *skb, struct net_device *dev);
Dmitry Torokhov80a90582005-09-06 15:19:21 -0700173static void smsc_ircc_dma_xmit(struct smsc_ircc_cb *self, int bofs);
174static void smsc_ircc_dma_xmit_complete(struct smsc_ircc_cb *self);
Dmitry Torokhov0fa2f492005-09-06 15:19:24 -0700175static void smsc_ircc_change_speed(struct smsc_ircc_cb *self, u32 speed);
176static void smsc_ircc_set_sir_speed(struct smsc_ircc_cb *self, u32 speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static irqreturn_t smsc_ircc_interrupt(int irq, void *dev_id, struct pt_regs *regs);
178static irqreturn_t smsc_ircc_interrupt_sir(struct net_device *dev);
179static void smsc_ircc_sir_start(struct smsc_ircc_cb *self);
180#if SMSC_IRCC2_C_SIR_STOP
181static void smsc_ircc_sir_stop(struct smsc_ircc_cb *self);
182#endif
183static void smsc_ircc_sir_write_wakeup(struct smsc_ircc_cb *self);
184static int smsc_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len);
185static int smsc_ircc_net_open(struct net_device *dev);
186static int smsc_ircc_net_close(struct net_device *dev);
187static int smsc_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
188#if SMSC_IRCC2_C_NET_TIMEOUT
189static void smsc_ircc_timeout(struct net_device *dev);
190#endif
191static struct net_device_stats *smsc_ircc_net_get_stats(struct net_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192static int smsc_ircc_is_receiving(struct smsc_ircc_cb *self);
193static void smsc_ircc_probe_transceiver(struct smsc_ircc_cb *self);
194static void smsc_ircc_set_transceiver_for_speed(struct smsc_ircc_cb *self, u32 speed);
195static void smsc_ircc_sir_wait_hw_transmitter_finish(struct smsc_ircc_cb *self);
196
197/* Probing */
198static int __init smsc_ircc_look_for_chips(void);
Dmitry Torokhovb6158d22005-09-06 15:19:20 -0700199static const struct smsc_chip * __init smsc_ircc_probe(unsigned short cfg_base, u8 reg, const struct smsc_chip *chip, char *type);
200static int __init smsc_superio_flat(const struct smsc_chip *chips, unsigned short cfg_base, char *type);
201static int __init smsc_superio_paged(const struct smsc_chip *chips, unsigned short cfg_base, char *type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static int __init smsc_superio_fdc(unsigned short cfg_base);
203static int __init smsc_superio_lpc(unsigned short cfg_base);
204
205/* Transceivers specific functions */
206
207static void smsc_ircc_set_transceiver_toshiba_sat1800(int fir_base, u32 speed);
208static int smsc_ircc_probe_transceiver_toshiba_sat1800(int fir_base);
209static void smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(int fir_base, u32 speed);
210static int smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(int fir_base);
211static void smsc_ircc_set_transceiver_smsc_ircc_atc(int fir_base, u32 speed);
212static int smsc_ircc_probe_transceiver_smsc_ircc_atc(int fir_base);
213
214/* Power Management */
215
Russell King9480e302005-10-28 09:52:56 -0700216static int smsc_ircc_suspend(struct device *dev, pm_message_t state);
217static int smsc_ircc_resume(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700219static struct device_driver smsc_ircc_driver = {
220 .name = SMSC_IRCC2_DRIVER_NAME,
221 .bus = &platform_bus_type,
222 .suspend = smsc_ircc_suspend,
223 .resume = smsc_ircc_resume,
224};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226/* Transceivers for SMSC-ircc */
227
Dmitry Torokhovb6158d22005-09-06 15:19:20 -0700228static struct smsc_transceiver smsc_transceivers[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700230 { "Toshiba Satellite 1800 (GP data pin select)", smsc_ircc_set_transceiver_toshiba_sat1800, smsc_ircc_probe_transceiver_toshiba_sat1800 },
231 { "Fast pin select", smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select, smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select },
232 { "ATC IRMode", smsc_ircc_set_transceiver_smsc_ircc_atc, smsc_ircc_probe_transceiver_smsc_ircc_atc },
233 { NULL, NULL }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234};
Dmitry Torokhova956f4c2005-09-06 15:19:20 -0700235#define SMSC_IRCC2_C_NUMBER_OF_TRANSCEIVERS (ARRAY_SIZE(smsc_transceivers) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237/* SMC SuperIO chipsets definitions */
238
239#define KEY55_1 0 /* SuperIO Configuration mode with Key <0x55> */
240#define KEY55_2 1 /* SuperIO Configuration mode with Key <0x55,0x55> */
241#define NoIRDA 2 /* SuperIO Chip has no IRDA Port */
242#define SIR 0 /* SuperIO Chip has only slow IRDA */
243#define FIR 4 /* SuperIO Chip has fast IRDA */
244#define SERx4 8 /* SuperIO Chip supports 115,2 KBaud * 4=460,8 KBaud */
245
Dmitry Torokhovb6158d22005-09-06 15:19:20 -0700246static struct smsc_chip __initdata fdc_chips_flat[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 /* Base address 0x3f0 or 0x370 */
249 { "37C44", KEY55_1|NoIRDA, 0x00, 0x00 }, /* This chip cannot be detected */
250 { "37C665GT", KEY55_2|NoIRDA, 0x65, 0x01 },
251 { "37C665GT", KEY55_2|NoIRDA, 0x66, 0x01 },
252 { "37C669", KEY55_2|SIR|SERx4, 0x03, 0x02 },
253 { "37C669", KEY55_2|SIR|SERx4, 0x04, 0x02 }, /* ID? */
254 { "37C78", KEY55_2|NoIRDA, 0x78, 0x00 },
255 { "37N769", KEY55_1|FIR|SERx4, 0x28, 0x00 },
256 { "37N869", KEY55_1|FIR|SERx4, 0x29, 0x00 },
257 { NULL }
258};
259
Dmitry Torokhovb6158d22005-09-06 15:19:20 -0700260static struct smsc_chip __initdata fdc_chips_paged[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 /* Base address 0x3f0 or 0x370 */
263 { "37B72X", KEY55_1|SIR|SERx4, 0x4c, 0x00 },
264 { "37B77X", KEY55_1|SIR|SERx4, 0x43, 0x00 },
265 { "37B78X", KEY55_1|SIR|SERx4, 0x44, 0x00 },
266 { "37B80X", KEY55_1|SIR|SERx4, 0x42, 0x00 },
267 { "37C67X", KEY55_1|FIR|SERx4, 0x40, 0x00 },
268 { "37C93X", KEY55_2|SIR|SERx4, 0x02, 0x01 },
269 { "37C93XAPM", KEY55_1|SIR|SERx4, 0x30, 0x01 },
270 { "37C93XFR", KEY55_2|FIR|SERx4, 0x03, 0x01 },
271 { "37M707", KEY55_1|SIR|SERx4, 0x42, 0x00 },
272 { "37M81X", KEY55_1|SIR|SERx4, 0x4d, 0x00 },
273 { "37N958FR", KEY55_1|FIR|SERx4, 0x09, 0x04 },
274 { "37N971", KEY55_1|FIR|SERx4, 0x0a, 0x00 },
275 { "37N972", KEY55_1|FIR|SERx4, 0x0b, 0x00 },
276 { NULL }
277};
278
Dmitry Torokhovb6158d22005-09-06 15:19:20 -0700279static struct smsc_chip __initdata lpc_chips_flat[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 /* Base address 0x2E or 0x4E */
282 { "47N227", KEY55_1|FIR|SERx4, 0x5a, 0x00 },
283 { "47N267", KEY55_1|FIR|SERx4, 0x5e, 0x00 },
284 { NULL }
285};
286
Dmitry Torokhovb6158d22005-09-06 15:19:20 -0700287static struct smsc_chip __initdata lpc_chips_paged[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 /* Base address 0x2E or 0x4E */
290 { "47B27X", KEY55_1|SIR|SERx4, 0x51, 0x00 },
291 { "47B37X", KEY55_1|SIR|SERx4, 0x52, 0x00 },
292 { "47M10X", KEY55_1|SIR|SERx4, 0x59, 0x00 },
293 { "47M120", KEY55_1|NoIRDA|SERx4, 0x5c, 0x00 },
294 { "47M13X", KEY55_1|SIR|SERx4, 0x59, 0x00 },
295 { "47M14X", KEY55_1|SIR|SERx4, 0x5f, 0x00 },
296 { "47N252", KEY55_1|FIR|SERx4, 0x0e, 0x00 },
297 { "47S42X", KEY55_1|SIR|SERx4, 0x57, 0x00 },
298 { NULL }
299};
300
301#define SMSCSIO_TYPE_FDC 1
302#define SMSCSIO_TYPE_LPC 2
303#define SMSCSIO_TYPE_FLAT 4
304#define SMSCSIO_TYPE_PAGED 8
305
Dmitry Torokhovb6158d22005-09-06 15:19:20 -0700306static struct smsc_chip_address __initdata possible_addresses[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700308 { 0x3f0, SMSCSIO_TYPE_FDC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
309 { 0x370, SMSCSIO_TYPE_FDC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
310 { 0xe0, SMSCSIO_TYPE_FDC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
311 { 0x2e, SMSCSIO_TYPE_LPC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
312 { 0x4e, SMSCSIO_TYPE_LPC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
313 { 0, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314};
315
316/* Globals */
317
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700318static struct smsc_ircc_cb *dev_self[] = { NULL, NULL };
319static unsigned short dev_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321static inline void register_bank(int iobase, int bank)
322{
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700323 outb(((inb(iobase + IRCC_MASTER) & 0xf0) | (bank & 0x07)),
324 iobase + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327
328/*******************************************************************************
329 *
330 *
331 * SMSC-ircc stuff
332 *
333 *
334 *******************************************************************************/
335
336/*
337 * Function smsc_ircc_init ()
338 *
339 * Initialize chip. Just try to find out how many chips we are dealing with
340 * and where they are
341 */
342static int __init smsc_ircc_init(void)
343{
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700344 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
347
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700348 ret = driver_register(&smsc_ircc_driver);
349 if (ret) {
350 IRDA_ERROR("%s, Can't register driver!\n", driver_name);
351 return ret;
352 }
353
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700354 dev_count = 0;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700355
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700356 if (ircc_fir > 0 && ircc_sir > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 IRDA_MESSAGE(" Overriding FIR address 0x%04x\n", ircc_fir);
358 IRDA_MESSAGE(" Overriding SIR address 0x%04x\n", ircc_sir);
359
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700360 if (smsc_ircc_open(ircc_fir, ircc_sir, ircc_dma, ircc_irq))
361 ret = -ENODEV;
362 } else {
Brice Goglin505db032005-09-06 15:19:25 -0700363 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700365 /* try user provided configuration register base address */
366 if (ircc_cfg > 0) {
367 IRDA_MESSAGE(" Overriding configuration address "
368 "0x%04x\n", ircc_cfg);
369 if (!smsc_superio_fdc(ircc_cfg))
370 ret = 0;
371 if (!smsc_superio_lpc(ircc_cfg))
372 ret = 0;
373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700375 if (smsc_ircc_look_for_chips() > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 ret = 0;
377 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700378
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700379 if (ret)
380 driver_unregister(&smsc_ircc_driver);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return ret;
383}
384
385/*
386 * Function smsc_ircc_open (firbase, sirbase, dma, irq)
387 *
388 * Try to open driver instance
389 *
390 */
391static int __init smsc_ircc_open(unsigned int fir_base, unsigned int sir_base, u8 dma, u8 irq)
392{
393 struct smsc_ircc_cb *self;
394 struct net_device *dev;
395 int err;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
398
399 err = smsc_ircc_present(fir_base, sir_base);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700400 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 goto err_out;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 err = -ENOMEM;
Dmitry Torokhova956f4c2005-09-06 15:19:20 -0700404 if (dev_count >= ARRAY_SIZE(dev_self)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 IRDA_WARNING("%s(), too many devices!\n", __FUNCTION__);
406 goto err_out1;
407 }
408
409 /*
410 * Allocate new instance of the driver
411 */
412 dev = alloc_irdadev(sizeof(struct smsc_ircc_cb));
413 if (!dev) {
414 IRDA_WARNING("%s() can't allocate net device\n", __FUNCTION__);
415 goto err_out1;
416 }
417
418 SET_MODULE_OWNER(dev);
419
420 dev->hard_start_xmit = smsc_ircc_hard_xmit_sir;
421#if SMSC_IRCC2_C_NET_TIMEOUT
422 dev->tx_timeout = smsc_ircc_timeout;
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700423 dev->watchdog_timeo = HZ * 2; /* Allow enough time for speed change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424#endif
425 dev->open = smsc_ircc_net_open;
426 dev->stop = smsc_ircc_net_close;
427 dev->do_ioctl = smsc_ircc_net_ioctl;
428 dev->get_stats = smsc_ircc_net_get_stats;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700429
Dmitry Torokhovda0841a2005-09-06 15:19:23 -0700430 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 self->netdev = dev;
432
433 /* Make ifconfig display some details */
434 dev->base_addr = self->io.fir_base = fir_base;
435 dev->irq = self->io.irq = irq;
436
437 /* Need to store self somewhere */
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700438 dev_self[dev_count] = self;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 spin_lock_init(&self->lock);
440
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700441 self->rx_buff.truesize = SMSC_IRCC2_RX_BUFF_TRUESIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 self->tx_buff.truesize = SMSC_IRCC2_TX_BUFF_TRUESIZE;
443
444 self->rx_buff.head =
445 dma_alloc_coherent(NULL, self->rx_buff.truesize,
446 &self->rx_buff_dma, GFP_KERNEL);
447 if (self->rx_buff.head == NULL) {
448 IRDA_ERROR("%s, Can't allocate memory for receive buffer!\n",
449 driver_name);
450 goto err_out2;
451 }
452
453 self->tx_buff.head =
454 dma_alloc_coherent(NULL, self->tx_buff.truesize,
455 &self->tx_buff_dma, GFP_KERNEL);
456 if (self->tx_buff.head == NULL) {
457 IRDA_ERROR("%s, Can't allocate memory for transmit buffer!\n",
458 driver_name);
459 goto err_out3;
460 }
461
462 memset(self->rx_buff.head, 0, self->rx_buff.truesize);
463 memset(self->tx_buff.head, 0, self->tx_buff.truesize);
464
465 self->rx_buff.in_frame = FALSE;
466 self->rx_buff.state = OUTSIDE_FRAME;
467 self->tx_buff.data = self->tx_buff.head;
468 self->rx_buff.data = self->rx_buff.head;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 smsc_ircc_setup_io(self, fir_base, sir_base, dma, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 smsc_ircc_setup_qos(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 smsc_ircc_init_chip(self);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700473
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700474 if (ircc_transceiver > 0 &&
475 ircc_transceiver < SMSC_IRCC2_C_NUMBER_OF_TRANSCEIVERS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 self->transceiver = ircc_transceiver;
477 else
478 smsc_ircc_probe_transceiver(self);
479
480 err = register_netdev(self->netdev);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700481 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 IRDA_ERROR("%s, Network device registration failed!\n",
483 driver_name);
484 goto err_out4;
485 }
486
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700487 self->pldev = platform_device_register_simple(SMSC_IRCC2_DRIVER_NAME,
488 dev_count, NULL, 0);
489 if (IS_ERR(self->pldev)) {
490 err = PTR_ERR(self->pldev);
491 goto err_out5;
492 }
493 dev_set_drvdata(&self->pldev->dev, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 IRDA_MESSAGE("IrDA: Registered device %s\n", dev->name);
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700496 dev_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 return 0;
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700499
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700500 err_out5:
501 unregister_netdev(self->netdev);
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 err_out4:
504 dma_free_coherent(NULL, self->tx_buff.truesize,
505 self->tx_buff.head, self->tx_buff_dma);
506 err_out3:
507 dma_free_coherent(NULL, self->rx_buff.truesize,
508 self->rx_buff.head, self->rx_buff_dma);
509 err_out2:
510 free_netdev(self->netdev);
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700511 dev_self[dev_count] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 err_out1:
513 release_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT);
514 release_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT);
515 err_out:
516 return err;
517}
518
519/*
520 * Function smsc_ircc_present(fir_base, sir_base)
521 *
522 * Check the smsc-ircc chip presence
523 *
524 */
525static int smsc_ircc_present(unsigned int fir_base, unsigned int sir_base)
526{
527 unsigned char low, high, chip, config, dma, irq, version;
528
529 if (!request_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT,
530 driver_name)) {
531 IRDA_WARNING("%s: can't get fir_base of 0x%03x\n",
532 __FUNCTION__, fir_base);
533 goto out1;
534 }
535
536 if (!request_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT,
537 driver_name)) {
538 IRDA_WARNING("%s: can't get sir_base of 0x%03x\n",
539 __FUNCTION__, sir_base);
540 goto out2;
541 }
542
543 register_bank(fir_base, 3);
544
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700545 high = inb(fir_base + IRCC_ID_HIGH);
546 low = inb(fir_base + IRCC_ID_LOW);
547 chip = inb(fir_base + IRCC_CHIP_ID);
548 version = inb(fir_base + IRCC_VERSION);
549 config = inb(fir_base + IRCC_INTERFACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 dma = config & IRCC_INTERFACE_DMA_MASK;
551 irq = (config & IRCC_INTERFACE_IRQ_MASK) >> 4;
552
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700553 if (high != 0x10 || low != 0xb8 || (chip != 0xf1 && chip != 0xf2)) {
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700554 IRDA_WARNING("%s(), addr 0x%04x - no device found!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 __FUNCTION__, fir_base);
556 goto out3;
557 }
558 IRDA_MESSAGE("SMsC IrDA Controller found\n IrCC version %d.%d, "
559 "firport 0x%03x, sirport 0x%03x dma=%d, irq=%d\n",
560 chip & 0x0f, version, fir_base, sir_base, dma, irq);
561
562 return 0;
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 out3:
565 release_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT);
566 out2:
567 release_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT);
568 out1:
569 return -ENODEV;
570}
571
572/*
573 * Function smsc_ircc_setup_io(self, fir_base, sir_base, dma, irq)
574 *
575 * Setup I/O
576 *
577 */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700578static void smsc_ircc_setup_io(struct smsc_ircc_cb *self,
579 unsigned int fir_base, unsigned int sir_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 u8 dma, u8 irq)
581{
582 unsigned char config, chip_dma, chip_irq;
583
584 register_bank(fir_base, 3);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700585 config = inb(fir_base + IRCC_INTERFACE);
586 chip_dma = config & IRCC_INTERFACE_DMA_MASK;
587 chip_irq = (config & IRCC_INTERFACE_IRQ_MASK) >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 self->io.fir_base = fir_base;
590 self->io.sir_base = sir_base;
591 self->io.fir_ext = SMSC_IRCC2_FIR_CHIP_IO_EXTENT;
592 self->io.sir_ext = SMSC_IRCC2_SIR_CHIP_IO_EXTENT;
593 self->io.fifo_size = SMSC_IRCC2_FIFO_SIZE;
594 self->io.speed = SMSC_IRCC2_C_IRDA_FALLBACK_SPEED;
595
596 if (irq < 255) {
597 if (irq != chip_irq)
598 IRDA_MESSAGE("%s, Overriding IRQ - chip says %d, using %d\n",
599 driver_name, chip_irq, irq);
600 self->io.irq = irq;
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700601 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 self->io.irq = chip_irq;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700603
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 if (dma < 255) {
605 if (dma != chip_dma)
606 IRDA_MESSAGE("%s, Overriding DMA - chip says %d, using %d\n",
607 driver_name, chip_dma, dma);
608 self->io.dma = dma;
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700609 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 self->io.dma = chip_dma;
611
612}
613
614/*
615 * Function smsc_ircc_setup_qos(self)
616 *
617 * Setup qos
618 *
619 */
620static void smsc_ircc_setup_qos(struct smsc_ircc_cb *self)
621{
622 /* Initialize QoS for this device */
623 irda_init_max_qos_capabilies(&self->qos);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 self->qos.baud_rate.bits = IR_9600|IR_19200|IR_38400|IR_57600|
626 IR_115200|IR_576000|IR_1152000|(IR_4000000 << 8);
627
628 self->qos.min_turn_time.bits = SMSC_IRCC2_MIN_TURN_TIME;
629 self->qos.window_size.bits = SMSC_IRCC2_WINDOW_SIZE;
630 irda_qos_bits_to_value(&self->qos);
631}
632
633/*
634 * Function smsc_ircc_init_chip(self)
635 *
636 * Init chip
637 *
638 */
639static void smsc_ircc_init_chip(struct smsc_ircc_cb *self)
640{
Dmitry Torokhove812cb52005-10-30 15:00:14 -0800641 int iobase = self->io.fir_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700644 outb(IRCC_MASTER_RESET, iobase + IRCC_MASTER);
645 outb(0x00, iobase + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 register_bank(iobase, 1);
Dmitry Torokhove812cb52005-10-30 15:00:14 -0800648 outb(((inb(iobase + IRCC_SCE_CFGA) & 0x87) | IRCC_CFGA_IRDA_SIR_A),
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700649 iobase + IRCC_SCE_CFGA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651#ifdef smsc_669 /* Uses pin 88/89 for Rx/Tx */
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700652 outb(((inb(iobase + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_COM),
653 iobase + IRCC_SCE_CFGB);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700654#else
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700655 outb(((inb(iobase + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_IR),
656 iobase + IRCC_SCE_CFGB);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700657#endif
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700658 (void) inb(iobase + IRCC_FIFO_THRESHOLD);
659 outb(SMSC_IRCC2_FIFO_THRESHOLD, iobase + IRCC_FIFO_THRESHOLD);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 register_bank(iobase, 4);
Dmitry Torokhove812cb52005-10-30 15:00:14 -0800662 outb((inb(iobase + IRCC_CONTROL) & 0x30), iobase + IRCC_CONTROL);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 register_bank(iobase, 0);
Dmitry Torokhove812cb52005-10-30 15:00:14 -0800665 outb(0, iobase + IRCC_LCR_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 smsc_ircc_set_sir_speed(self, SMSC_IRCC2_C_IRDA_FALLBACK_SPEED);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 /* Power on device */
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700670 outb(0x00, iobase + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
673/*
674 * Function smsc_ircc_net_ioctl (dev, rq, cmd)
675 *
676 * Process IOCTL commands for this device
677 *
678 */
679static int smsc_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
680{
681 struct if_irda_req *irq = (struct if_irda_req *) rq;
682 struct smsc_ircc_cb *self;
683 unsigned long flags;
684 int ret = 0;
685
686 IRDA_ASSERT(dev != NULL, return -1;);
687
Dmitry Torokhovda0841a2005-09-06 15:19:23 -0700688 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 IRDA_ASSERT(self != NULL, return -1;);
691
692 IRDA_DEBUG(2, "%s(), %s, (cmd=0x%X)\n", __FUNCTION__, dev->name, cmd);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 switch (cmd) {
695 case SIOCSBANDWIDTH: /* Set bandwidth */
696 if (!capable(CAP_NET_ADMIN))
697 ret = -EPERM;
698 else {
699 /* Make sure we are the only one touching
700 * self->io.speed and the hardware - Jean II */
701 spin_lock_irqsave(&self->lock, flags);
702 smsc_ircc_change_speed(self, irq->ifr_baudrate);
703 spin_unlock_irqrestore(&self->lock, flags);
704 }
705 break;
706 case SIOCSMEDIABUSY: /* Set media busy */
707 if (!capable(CAP_NET_ADMIN)) {
708 ret = -EPERM;
709 break;
710 }
711
712 irda_device_set_media_busy(self->netdev, TRUE);
713 break;
714 case SIOCGRECEIVING: /* Check if we are receiving right now */
715 irq->ifr_receiving = smsc_ircc_is_receiving(self);
716 break;
717 #if 0
718 case SIOCSDTRRTS:
719 if (!capable(CAP_NET_ADMIN)) {
720 ret = -EPERM;
721 break;
722 }
723 smsc_ircc_sir_set_dtr_rts(dev, irq->ifr_dtr, irq->ifr_rts);
724 break;
725 #endif
726 default:
727 ret = -EOPNOTSUPP;
728 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return ret;
731}
732
733static struct net_device_stats *smsc_ircc_net_get_stats(struct net_device *dev)
734{
Dmitry Torokhovda0841a2005-09-06 15:19:23 -0700735 struct smsc_ircc_cb *self = netdev_priv(dev);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return &self->stats;
738}
739
740#if SMSC_IRCC2_C_NET_TIMEOUT
741/*
742 * Function smsc_ircc_timeout (struct net_device *dev)
743 *
744 * The networking timeout management.
745 *
746 */
747
748static void smsc_ircc_timeout(struct net_device *dev)
749{
Dmitry Torokhovda0841a2005-09-06 15:19:23 -0700750 struct smsc_ircc_cb *self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 unsigned long flags;
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 IRDA_WARNING("%s: transmit timed out, changing speed to: %d\n",
754 dev->name, self->io.speed);
755 spin_lock_irqsave(&self->lock, flags);
756 smsc_ircc_sir_start(self);
757 smsc_ircc_change_speed(self, self->io.speed);
758 dev->trans_start = jiffies;
759 netif_wake_queue(dev);
760 spin_unlock_irqrestore(&self->lock, flags);
761}
762#endif
763
764/*
765 * Function smsc_ircc_hard_xmit_sir (struct sk_buff *skb, struct net_device *dev)
766 *
767 * Transmits the current frame until FIFO is full, then
768 * waits until the next transmit interrupt, and continues until the
769 * frame is transmitted.
770 */
771int smsc_ircc_hard_xmit_sir(struct sk_buff *skb, struct net_device *dev)
772{
773 struct smsc_ircc_cb *self;
774 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 s32 speed;
776
777 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
778
779 IRDA_ASSERT(dev != NULL, return 0;);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700780
Dmitry Torokhovda0841a2005-09-06 15:19:23 -0700781 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 IRDA_ASSERT(self != NULL, return 0;);
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 netif_stop_queue(dev);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 /* Make sure test of self->io.speed & speed change are atomic */
787 spin_lock_irqsave(&self->lock, flags);
788
789 /* Check if we need to change the speed */
790 speed = irda_get_next_speed(skb);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700791 if (speed != self->io.speed && speed != -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 /* Check for empty frame */
793 if (!skb->len) {
794 /*
795 * We send frames one by one in SIR mode (no
796 * pipelining), so at this point, if we were sending
797 * a previous frame, we just received the interrupt
798 * telling us it is finished (UART_IIR_THRI).
799 * Therefore, waiting for the transmitter to really
800 * finish draining the fifo won't take too long.
801 * And the interrupt handler is not expected to run.
802 * - Jean II */
803 smsc_ircc_sir_wait_hw_transmitter_finish(self);
804 smsc_ircc_change_speed(self, speed);
805 spin_unlock_irqrestore(&self->lock, flags);
806 dev_kfree_skb(skb);
807 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700809 self->new_speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 }
811
812 /* Init tx buffer */
813 self->tx_buff.data = self->tx_buff.head;
814
815 /* Copy skb to tx_buff while wrapping, stuffing and making CRC */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700816 self->tx_buff.len = async_wrap_skb(skb, self->tx_buff.data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 self->tx_buff.truesize);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 self->stats.tx_bytes += self->tx_buff.len;
820
821 /* Turn on transmit finished interrupt. Will fire immediately! */
Dmitry Torokhov80a90582005-09-06 15:19:21 -0700822 outb(UART_IER_THRI, self->io.sir_base + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 spin_unlock_irqrestore(&self->lock, flags);
825
826 dev_kfree_skb(skb);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return 0;
829}
830
831/*
832 * Function smsc_ircc_set_fir_speed (self, baud)
833 *
834 * Change the speed of the device
835 *
836 */
837static void smsc_ircc_set_fir_speed(struct smsc_ircc_cb *self, u32 speed)
838{
839 int fir_base, ir_mode, ctrl, fast;
840
841 IRDA_ASSERT(self != NULL, return;);
842 fir_base = self->io.fir_base;
843
844 self->io.speed = speed;
845
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700846 switch (speed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 default:
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700848 case 576000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 ir_mode = IRCC_CFGA_IRDA_HDLC;
850 ctrl = IRCC_CRC;
851 fast = 0;
852 IRDA_DEBUG(0, "%s(), handling baud of 576000\n", __FUNCTION__);
853 break;
854 case 1152000:
855 ir_mode = IRCC_CFGA_IRDA_HDLC;
856 ctrl = IRCC_1152 | IRCC_CRC;
857 fast = IRCC_LCR_A_FAST | IRCC_LCR_A_GP_DATA;
858 IRDA_DEBUG(0, "%s(), handling baud of 1152000\n",
859 __FUNCTION__);
860 break;
861 case 4000000:
862 ir_mode = IRCC_CFGA_IRDA_4PPM;
863 ctrl = IRCC_CRC;
864 fast = IRCC_LCR_A_FAST;
865 IRDA_DEBUG(0, "%s(), handling baud of 4000000\n",
866 __FUNCTION__);
867 break;
868 }
869 #if 0
870 Now in tranceiver!
871 /* This causes an interrupt */
872 register_bank(fir_base, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700873 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast, fir_base + IRCC_LCR_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 #endif
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 register_bank(fir_base, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700877 outb(((inb(fir_base + IRCC_SCE_CFGA) & IRCC_SCE_CFGA_BLOCK_CTRL_BITS_MASK) | ir_mode), fir_base + IRCC_SCE_CFGA);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 register_bank(fir_base, 4);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700880 outb((inb(fir_base + IRCC_CONTROL) & 0x30) | ctrl, fir_base + IRCC_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
883/*
884 * Function smsc_ircc_fir_start(self)
885 *
886 * Change the speed of the device
887 *
888 */
889static void smsc_ircc_fir_start(struct smsc_ircc_cb *self)
890{
891 struct net_device *dev;
892 int fir_base;
893
894 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
895
896 IRDA_ASSERT(self != NULL, return;);
897 dev = self->netdev;
898 IRDA_ASSERT(dev != NULL, return;);
899
900 fir_base = self->io.fir_base;
901
902 /* Reset everything */
903
904 /* Install FIR transmit handler */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700905 dev->hard_start_xmit = smsc_ircc_hard_xmit_fir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 /* Clear FIFO */
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700908 outb(inb(fir_base + IRCC_LCR_A) | IRCC_LCR_A_FIFO_RESET, fir_base + IRCC_LCR_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 /* Enable interrupt */
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700911 /*outb(IRCC_IER_ACTIVE_FRAME|IRCC_IER_EOM, fir_base + IRCC_IER);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 register_bank(fir_base, 1);
914
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700915 /* Select the TX/RX interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916#ifdef SMSC_669 /* Uses pin 88/89 for Rx/Tx */
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700917 outb(((inb(fir_base + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_COM),
918 fir_base + IRCC_SCE_CFGB);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700919#else
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700920 outb(((inb(fir_base + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_IR),
921 fir_base + IRCC_SCE_CFGB);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700922#endif
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700923 (void) inb(fir_base + IRCC_FIFO_THRESHOLD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 /* Enable SCE interrupts */
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700926 outb(0, fir_base + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 register_bank(fir_base, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700928 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, fir_base + IRCC_IER);
929 outb(IRCC_MASTER_INT_EN, fir_base + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
932/*
933 * Function smsc_ircc_fir_stop(self, baud)
934 *
935 * Change the speed of the device
936 *
937 */
938static void smsc_ircc_fir_stop(struct smsc_ircc_cb *self)
939{
940 int fir_base;
941
942 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700943
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 IRDA_ASSERT(self != NULL, return;);
945
946 fir_base = self->io.fir_base;
947 register_bank(fir_base, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700948 /*outb(IRCC_MASTER_RESET, fir_base + IRCC_MASTER);*/
949 outb(inb(fir_base + IRCC_LCR_B) & IRCC_LCR_B_SIP_ENABLE, fir_base + IRCC_LCR_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950}
951
952
953/*
954 * Function smsc_ircc_change_speed(self, baud)
955 *
956 * Change the speed of the device
957 *
958 * This function *must* be called with spinlock held, because it may
959 * be called from the irq handler. - Jean II
960 */
Dmitry Torokhov0fa2f492005-09-06 15:19:24 -0700961static void smsc_ircc_change_speed(struct smsc_ircc_cb *self, u32 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 int last_speed_was_sir;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 IRDA_DEBUG(0, "%s() changing speed to: %d\n", __FUNCTION__, speed);
967
968 IRDA_ASSERT(self != NULL, return;);
969 dev = self->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 last_speed_was_sir = self->io.speed <= SMSC_IRCC2_MAX_SIR_SPEED;
972
973 #if 0
974 /* Temp Hack */
975 speed= 1152000;
976 self->io.speed = speed;
977 last_speed_was_sir = 0;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700978 smsc_ircc_fir_start(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 #endif
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700980
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700981 if (self->io.speed == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 smsc_ircc_sir_start(self);
983
984 #if 0
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700985 if (!last_speed_was_sir) speed = self->io.speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 #endif
987
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700988 if (self->io.speed != speed)
989 smsc_ircc_set_transceiver_for_speed(self, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 self->io.speed = speed;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700992
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700993 if (speed <= SMSC_IRCC2_MAX_SIR_SPEED) {
994 if (!last_speed_was_sir) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 smsc_ircc_fir_stop(self);
996 smsc_ircc_sir_start(self);
997 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700998 smsc_ircc_set_sir_speed(self, speed);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700999 } else {
1000 if (last_speed_was_sir) {
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001001 #if SMSC_IRCC2_C_SIR_STOP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 smsc_ircc_sir_stop(self);
1003 #endif
1004 smsc_ircc_fir_start(self);
1005 }
1006 smsc_ircc_set_fir_speed(self, speed);
1007
1008 #if 0
1009 self->tx_buff.len = 10;
1010 self->tx_buff.data = self->tx_buff.head;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001011
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001012 smsc_ircc_dma_xmit(self, 4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 #endif
1014 /* Be ready for incoming frames */
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001015 smsc_ircc_dma_receive(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 netif_wake_queue(dev);
1019}
1020
1021/*
1022 * Function smsc_ircc_set_sir_speed (self, speed)
1023 *
1024 * Set speed of IrDA port to specified baudrate
1025 *
1026 */
Dmitry Torokhov0fa2f492005-09-06 15:19:24 -07001027void smsc_ircc_set_sir_speed(struct smsc_ircc_cb *self, __u32 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001029 int iobase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 int fcr; /* FIFO control reg */
1031 int lcr; /* Line control reg */
1032 int divisor;
1033
1034 IRDA_DEBUG(0, "%s(), Setting speed to: %d\n", __FUNCTION__, speed);
1035
1036 IRDA_ASSERT(self != NULL, return;);
1037 iobase = self->io.sir_base;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 /* Update accounting for new speed */
1040 self->io.speed = speed;
1041
1042 /* Turn off interrupts */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001043 outb(0, iobase + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001045 divisor = SMSC_IRCC2_MAX_SIR_SPEED / speed;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 fcr = UART_FCR_ENABLE_FIFO;
1048
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001049 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 * Use trigger level 1 to avoid 3 ms. timeout delay at 9600 bps, and
1051 * almost 1,7 ms at 19200 bps. At speeds above that we can just forget
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001052 * about this timeout since it will always be fast enough.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001054 fcr |= self->io.speed < 38400 ?
1055 UART_FCR_TRIGGER_1 : UART_FCR_TRIGGER_14;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 /* IrDA ports use 8N1 */
1058 lcr = UART_LCR_WLEN8;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001059
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001060 outb(UART_LCR_DLAB | lcr, iobase + UART_LCR); /* Set DLAB */
1061 outb(divisor & 0xff, iobase + UART_DLL); /* Set speed */
1062 outb(divisor >> 8, iobase + UART_DLM);
1063 outb(lcr, iobase + UART_LCR); /* Set 8N1 */
1064 outb(fcr, iobase + UART_FCR); /* Enable FIFO's */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 /* Turn on interrups */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001067 outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069 IRDA_DEBUG(2, "%s() speed changed to: %d\n", __FUNCTION__, speed);
1070}
1071
1072
1073/*
1074 * Function smsc_ircc_hard_xmit_fir (skb, dev)
1075 *
1076 * Transmit the frame!
1077 *
1078 */
1079static int smsc_ircc_hard_xmit_fir(struct sk_buff *skb, struct net_device *dev)
1080{
1081 struct smsc_ircc_cb *self;
1082 unsigned long flags;
1083 s32 speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 int mtt;
1085
1086 IRDA_ASSERT(dev != NULL, return 0;);
Dmitry Torokhovda0841a2005-09-06 15:19:23 -07001087 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 IRDA_ASSERT(self != NULL, return 0;);
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 netif_stop_queue(dev);
1091
1092 /* Make sure test of self->io.speed & speed change are atomic */
1093 spin_lock_irqsave(&self->lock, flags);
1094
1095 /* Check if we need to change the speed after this frame */
1096 speed = irda_get_next_speed(skb);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001097 if (speed != self->io.speed && speed != -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 /* Check for empty frame */
1099 if (!skb->len) {
1100 /* Note : you should make sure that speed changes
1101 * are not going to corrupt any outgoing frame.
1102 * Look at nsc-ircc for the gory details - Jean II */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001103 smsc_ircc_change_speed(self, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 spin_unlock_irqrestore(&self->lock, flags);
1105 dev_kfree_skb(skb);
1106 return 0;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001107 }
1108
1109 self->new_speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 memcpy(self->tx_buff.head, skb->data, skb->len);
1113
1114 self->tx_buff.len = skb->len;
1115 self->tx_buff.data = self->tx_buff.head;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001116
1117 mtt = irda_get_mtt(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 if (mtt) {
1119 int bofs;
1120
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001121 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 * Compute how many BOFs (STA or PA's) we need to waste the
1123 * min turn time given the speed of the link.
1124 */
1125 bofs = mtt * (self->io.speed / 1000) / 8000;
1126 if (bofs > 4095)
1127 bofs = 4095;
1128
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001129 smsc_ircc_dma_xmit(self, bofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 } else {
1131 /* Transmit frame */
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001132 smsc_ircc_dma_xmit(self, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 spin_unlock_irqrestore(&self->lock, flags);
1136 dev_kfree_skb(skb);
1137
1138 return 0;
1139}
1140
1141/*
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001142 * Function smsc_ircc_dma_xmit (self, bofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 *
1144 * Transmit data using DMA
1145 *
1146 */
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001147static void smsc_ircc_dma_xmit(struct smsc_ircc_cb *self, int bofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001149 int iobase = self->io.fir_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 u8 ctrl;
1151
1152 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1153#if 1
1154 /* Disable Rx */
1155 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001156 outb(0x00, iobase + IRCC_LCR_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157#endif
1158 register_bank(iobase, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001159 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1160 iobase + IRCC_SCE_CFGB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 self->io.direction = IO_XMIT;
1163
1164 /* Set BOF additional count for generating the min turn time */
1165 register_bank(iobase, 4);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001166 outb(bofs & 0xff, iobase + IRCC_BOF_COUNT_LO);
1167 ctrl = inb(iobase + IRCC_CONTROL) & 0xf0;
1168 outb(ctrl | ((bofs >> 8) & 0x0f), iobase + IRCC_BOF_COUNT_HI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 /* Set max Tx frame size */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001171 outb(self->tx_buff.len >> 8, iobase + IRCC_TX_SIZE_HI);
1172 outb(self->tx_buff.len & 0xff, iobase + IRCC_TX_SIZE_LO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 /*outb(UART_MCR_OUT2, self->io.sir_base + UART_MCR);*/
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 /* Enable burst mode chip Tx DMA */
1177 register_bank(iobase, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001178 outb(inb(iobase + IRCC_SCE_CFGB) | IRCC_CFGB_DMA_ENABLE |
1179 IRCC_CFGB_DMA_BURST, iobase + IRCC_SCE_CFGB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 /* Setup DMA controller (must be done after enabling chip DMA) */
1182 irda_setup_dma(self->io.dma, self->tx_buff_dma, self->tx_buff.len,
1183 DMA_TX_MODE);
1184
1185 /* Enable interrupt */
1186
1187 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001188 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
1189 outb(IRCC_MASTER_INT_EN, iobase + IRCC_MASTER);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 /* Enable transmit */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001192 outb(IRCC_LCR_B_SCE_TRANSMIT | IRCC_LCR_B_SIP_ENABLE, iobase + IRCC_LCR_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193}
1194
1195/*
1196 * Function smsc_ircc_dma_xmit_complete (self)
1197 *
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001198 * The transfer of a frame in finished. This function will only be called
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 * by the interrupt handler
1200 *
1201 */
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001202static void smsc_ircc_dma_xmit_complete(struct smsc_ircc_cb *self)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001204 int iobase = self->io.fir_base;
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1207#if 0
1208 /* Disable Tx */
1209 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001210 outb(0x00, iobase + IRCC_LCR_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211#endif
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001212 register_bank(iobase, 1);
1213 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1214 iobase + IRCC_SCE_CFGB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 /* Check for underrun! */
1217 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001218 if (inb(iobase + IRCC_LSR) & IRCC_LSR_UNDERRUN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 self->stats.tx_errors++;
1220 self->stats.tx_fifo_errors++;
1221
1222 /* Reset error condition */
1223 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001224 outb(IRCC_MASTER_ERROR_RESET, iobase + IRCC_MASTER);
1225 outb(0x00, iobase + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 } else {
1227 self->stats.tx_packets++;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001228 self->stats.tx_bytes += self->tx_buff.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230
1231 /* Check if it's time to change the speed */
1232 if (self->new_speed) {
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001233 smsc_ircc_change_speed(self, self->new_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 self->new_speed = 0;
1235 }
1236
1237 netif_wake_queue(self->netdev);
1238}
1239
1240/*
1241 * Function smsc_ircc_dma_receive(self)
1242 *
1243 * Get ready for receiving a frame. The device will initiate a DMA
1244 * if it starts to receive a frame.
1245 *
1246 */
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001247static int smsc_ircc_dma_receive(struct smsc_ircc_cb *self)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001249 int iobase = self->io.fir_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250#if 0
1251 /* Turn off chip DMA */
1252 register_bank(iobase, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001253 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1254 iobase + IRCC_SCE_CFGB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255#endif
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 /* Disable Tx */
1258 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001259 outb(0x00, iobase + IRCC_LCR_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261 /* Turn off chip DMA */
1262 register_bank(iobase, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001263 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1264 iobase + IRCC_SCE_CFGB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 self->io.direction = IO_RECV;
1267 self->rx_buff.data = self->rx_buff.head;
1268
1269 /* Set max Rx frame size */
1270 register_bank(iobase, 4);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001271 outb((2050 >> 8) & 0x0f, iobase + IRCC_RX_SIZE_HI);
1272 outb(2050 & 0xff, iobase + IRCC_RX_SIZE_LO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 /* Setup DMA controller */
1275 irda_setup_dma(self->io.dma, self->rx_buff_dma, self->rx_buff.truesize,
1276 DMA_RX_MODE);
1277
1278 /* Enable burst mode chip Rx DMA */
1279 register_bank(iobase, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001280 outb(inb(iobase + IRCC_SCE_CFGB) | IRCC_CFGB_DMA_ENABLE |
1281 IRCC_CFGB_DMA_BURST, iobase + IRCC_SCE_CFGB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
1283 /* Enable interrupt */
1284 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001285 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
1286 outb(IRCC_MASTER_INT_EN, iobase + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 /* Enable receiver */
1289 register_bank(iobase, 0);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001290 outb(IRCC_LCR_B_SCE_RECEIVE | IRCC_LCR_B_SIP_ENABLE,
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001291 iobase + IRCC_LCR_B);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return 0;
1294}
1295
1296/*
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001297 * Function smsc_ircc_dma_receive_complete(self)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 *
1299 * Finished with receiving frames
1300 *
1301 */
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001302static void smsc_ircc_dma_receive_complete(struct smsc_ircc_cb *self)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
1304 struct sk_buff *skb;
1305 int len, msgcnt, lsr;
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001306 int iobase = self->io.fir_base;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 register_bank(iobase, 0);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1311#if 0
1312 /* Disable Rx */
1313 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001314 outb(0x00, iobase + IRCC_LCR_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315#endif
1316 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001317 outb(inb(iobase + IRCC_LSAR) & ~IRCC_LSAR_ADDRESS_MASK, iobase + IRCC_LSAR);
1318 lsr= inb(iobase + IRCC_LSR);
1319 msgcnt = inb(iobase + IRCC_LCR_B) & 0x08;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
1321 IRDA_DEBUG(2, "%s: dma count = %d\n", __FUNCTION__,
1322 get_dma_residue(self->io.dma));
1323
1324 len = self->rx_buff.truesize - get_dma_residue(self->io.dma);
1325
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001326 /* Look for errors */
1327 if (lsr & (IRCC_LSR_FRAME_ERROR | IRCC_LSR_CRC_ERROR | IRCC_LSR_SIZE_ERROR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 self->stats.rx_errors++;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001329 if (lsr & IRCC_LSR_FRAME_ERROR)
1330 self->stats.rx_frame_errors++;
1331 if (lsr & IRCC_LSR_CRC_ERROR)
1332 self->stats.rx_crc_errors++;
1333 if (lsr & IRCC_LSR_SIZE_ERROR)
1334 self->stats.rx_length_errors++;
1335 if (lsr & (IRCC_LSR_UNDERRUN | IRCC_LSR_OVERRUN))
1336 self->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return;
1338 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001340 /* Remove CRC */
1341 len -= self->io.speed < 4000000 ? 2 : 4;
1342
1343 if (len < 2 || len > 2050) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 IRDA_WARNING("%s(), bogus len=%d\n", __FUNCTION__, len);
1345 return;
1346 }
1347 IRDA_DEBUG(2, "%s: msgcnt = %d, len=%d\n", __FUNCTION__, msgcnt, len);
1348
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001349 skb = dev_alloc_skb(len + 1);
1350 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 IRDA_WARNING("%s(), memory squeeze, dropping frame.\n",
1352 __FUNCTION__);
1353 return;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 /* Make sure IP header gets aligned */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001356 skb_reserve(skb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
1358 memcpy(skb_put(skb, len), self->rx_buff.data, len);
1359 self->stats.rx_packets++;
1360 self->stats.rx_bytes += len;
1361
1362 skb->dev = self->netdev;
1363 skb->mac.raw = skb->data;
1364 skb->protocol = htons(ETH_P_IRDA);
1365 netif_rx(skb);
1366}
1367
1368/*
1369 * Function smsc_ircc_sir_receive (self)
1370 *
1371 * Receive one frame from the infrared port
1372 *
1373 */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001374static void smsc_ircc_sir_receive(struct smsc_ircc_cb *self)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
1376 int boguscount = 0;
1377 int iobase;
1378
1379 IRDA_ASSERT(self != NULL, return;);
1380
1381 iobase = self->io.sir_base;
1382
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001383 /*
1384 * Receive all characters in Rx FIFO, unwrap and unstuff them.
1385 * async_unwrap_char will deliver all found frames
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 */
1387 do {
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001388 async_unwrap_char(self->netdev, &self->stats, &self->rx_buff,
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001389 inb(iobase + UART_RX));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 /* Make sure we don't stay here to long */
1392 if (boguscount++ > 32) {
1393 IRDA_DEBUG(2, "%s(), breaking!\n", __FUNCTION__);
1394 break;
1395 }
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001396 } while (inb(iobase + UART_LSR) & UART_LSR_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397}
1398
1399
1400/*
1401 * Function smsc_ircc_interrupt (irq, dev_id, regs)
1402 *
1403 * An interrupt from the chip has arrived. Time to do some work
1404 *
1405 */
1406static irqreturn_t smsc_ircc_interrupt(int irq, void *dev_id, struct pt_regs *regs)
1407{
1408 struct net_device *dev = (struct net_device *) dev_id;
1409 struct smsc_ircc_cb *self;
1410 int iobase, iir, lcra, lsr;
1411 irqreturn_t ret = IRQ_NONE;
1412
1413 if (dev == NULL) {
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001414 printk(KERN_WARNING "%s: irq %d for unknown device.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 driver_name, irq);
1416 goto irq_ret;
1417 }
Dmitry Torokhovda0841a2005-09-06 15:19:23 -07001418
1419 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 IRDA_ASSERT(self != NULL, return IRQ_NONE;);
1421
1422 /* Serialise the interrupt handler in various CPUs, stop Tx path */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001423 spin_lock(&self->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 /* Check if we should use the SIR interrupt handler */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001426 if (self->io.speed <= SMSC_IRCC2_MAX_SIR_SPEED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 ret = smsc_ircc_interrupt_sir(dev);
1428 goto irq_ret_unlock;
1429 }
1430
1431 iobase = self->io.fir_base;
1432
1433 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001434 iir = inb(iobase + IRCC_IIR);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001435 if (iir == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 goto irq_ret_unlock;
1437 ret = IRQ_HANDLED;
1438
1439 /* Disable interrupts */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001440 outb(0, iobase + IRCC_IER);
1441 lcra = inb(iobase + IRCC_LCR_A);
1442 lsr = inb(iobase + IRCC_LSR);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 IRDA_DEBUG(2, "%s(), iir = 0x%02x\n", __FUNCTION__, iir);
1445
1446 if (iir & IRCC_IIR_EOM) {
1447 if (self->io.direction == IO_RECV)
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001448 smsc_ircc_dma_receive_complete(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 else
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001450 smsc_ircc_dma_xmit_complete(self);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001451
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001452 smsc_ircc_dma_receive(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
1454
1455 if (iir & IRCC_IIR_ACTIVE_FRAME) {
1456 /*printk(KERN_WARNING "%s(): Active Frame\n", __FUNCTION__);*/
1457 }
1458
1459 /* Enable interrupts again */
1460
1461 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001462 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 irq_ret_unlock:
1465 spin_unlock(&self->lock);
1466 irq_ret:
1467 return ret;
1468}
1469
1470/*
1471 * Function irport_interrupt_sir (irq, dev_id, regs)
1472 *
1473 * Interrupt handler for SIR modes
1474 */
1475static irqreturn_t smsc_ircc_interrupt_sir(struct net_device *dev)
1476{
Dmitry Torokhovda0841a2005-09-06 15:19:23 -07001477 struct smsc_ircc_cb *self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 int boguscount = 0;
1479 int iobase;
1480 int iir, lsr;
1481
1482 /* Already locked comming here in smsc_ircc_interrupt() */
1483 /*spin_lock(&self->lock);*/
1484
1485 iobase = self->io.sir_base;
1486
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001487 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if (iir == 0)
1489 return IRQ_NONE;
1490 while (iir) {
1491 /* Clear interrupt */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001492 lsr = inb(iobase + UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001494 IRDA_DEBUG(4, "%s(), iir=%02x, lsr=%02x, iobase=%#x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 __FUNCTION__, iir, lsr, iobase);
1496
1497 switch (iir) {
1498 case UART_IIR_RLSI:
1499 IRDA_DEBUG(2, "%s(), RLSI\n", __FUNCTION__);
1500 break;
1501 case UART_IIR_RDI:
1502 /* Receive interrupt */
1503 smsc_ircc_sir_receive(self);
1504 break;
1505 case UART_IIR_THRI:
1506 if (lsr & UART_LSR_THRE)
1507 /* Transmitter ready for data */
1508 smsc_ircc_sir_write_wakeup(self);
1509 break;
1510 default:
1511 IRDA_DEBUG(0, "%s(), unhandled IIR=%#x\n",
1512 __FUNCTION__, iir);
1513 break;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001514 }
1515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 /* Make sure we don't stay here to long */
1517 if (boguscount++ > 100)
1518 break;
1519
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001520 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
1522 /*spin_unlock(&self->lock);*/
1523 return IRQ_HANDLED;
1524}
1525
1526
1527#if 0 /* unused */
1528/*
1529 * Function ircc_is_receiving (self)
1530 *
1531 * Return TRUE is we are currently receiving a frame
1532 *
1533 */
1534static int ircc_is_receiving(struct smsc_ircc_cb *self)
1535{
1536 int status = FALSE;
1537 /* int iobase; */
1538
1539 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1540
1541 IRDA_ASSERT(self != NULL, return FALSE;);
1542
1543 IRDA_DEBUG(0, "%s: dma count = %d\n", __FUNCTION__,
1544 get_dma_residue(self->io.dma));
1545
1546 status = (self->rx_buff.state != OUTSIDE_FRAME);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 return status;
1549}
1550#endif /* unused */
1551
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001552static int smsc_ircc_request_irq(struct smsc_ircc_cb *self)
1553{
1554 int error;
1555
1556 error = request_irq(self->io.irq, smsc_ircc_interrupt, 0,
1557 self->netdev->name, self->netdev);
1558 if (error)
1559 IRDA_DEBUG(0, "%s(), unable to allocate irq=%d, err=%d\n",
1560 __FUNCTION__, self->io.irq, error);
1561
1562 return error;
1563}
1564
1565static void smsc_ircc_start_interrupts(struct smsc_ircc_cb *self)
1566{
1567 unsigned long flags;
1568
1569 spin_lock_irqsave(&self->lock, flags);
1570
1571 self->io.speed = 0;
1572 smsc_ircc_change_speed(self, SMSC_IRCC2_C_IRDA_FALLBACK_SPEED);
1573
1574 spin_unlock_irqrestore(&self->lock, flags);
1575}
1576
1577static void smsc_ircc_stop_interrupts(struct smsc_ircc_cb *self)
1578{
1579 int iobase = self->io.fir_base;
1580 unsigned long flags;
1581
1582 spin_lock_irqsave(&self->lock, flags);
1583
1584 register_bank(iobase, 0);
1585 outb(0, iobase + IRCC_IER);
1586 outb(IRCC_MASTER_RESET, iobase + IRCC_MASTER);
1587 outb(0x00, iobase + IRCC_MASTER);
1588
1589 spin_unlock_irqrestore(&self->lock, flags);
1590}
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593/*
1594 * Function smsc_ircc_net_open (dev)
1595 *
1596 * Start the device
1597 *
1598 */
1599static int smsc_ircc_net_open(struct net_device *dev)
1600{
1601 struct smsc_ircc_cb *self;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 char hwname[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 IRDA_ASSERT(dev != NULL, return -1;);
Dmitry Torokhovda0841a2005-09-06 15:19:23 -07001607 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 IRDA_ASSERT(self != NULL, return 0;);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001609
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001610 if (self->io.suspended) {
1611 IRDA_DEBUG(0, "%s(), device is suspended\n", __FUNCTION__);
1612 return -EAGAIN;
1613 }
1614
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001615 if (request_irq(self->io.irq, smsc_ircc_interrupt, 0, dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 (void *) dev)) {
1617 IRDA_DEBUG(0, "%s(), unable to allocate irq=%d\n",
1618 __FUNCTION__, self->io.irq);
1619 return -EAGAIN;
1620 }
1621
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001622 smsc_ircc_start_interrupts(self);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 /* Give self a hardware name */
1625 /* It would be cool to offer the chip revision here - Jean II */
1626 sprintf(hwname, "SMSC @ 0x%03x", self->io.fir_base);
1627
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001628 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 * Open new IrLAP layer instance, now that everything should be
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001630 * initialized properly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 */
1632 self->irlap = irlap_open(dev, &self->qos, hwname);
1633
1634 /*
1635 * Always allocate the DMA channel after the IRQ,
1636 * and clean up on failure.
1637 */
1638 if (request_dma(self->io.dma, dev->name)) {
1639 smsc_ircc_net_close(dev);
1640
1641 IRDA_WARNING("%s(), unable to allocate DMA=%d\n",
1642 __FUNCTION__, self->io.dma);
1643 return -EAGAIN;
1644 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 netif_start_queue(dev);
1647
1648 return 0;
1649}
1650
1651/*
1652 * Function smsc_ircc_net_close (dev)
1653 *
1654 * Stop the device
1655 *
1656 */
1657static int smsc_ircc_net_close(struct net_device *dev)
1658{
1659 struct smsc_ircc_cb *self;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
1661 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 IRDA_ASSERT(dev != NULL, return -1;);
Dmitry Torokhovda0841a2005-09-06 15:19:23 -07001664 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 IRDA_ASSERT(self != NULL, return 0;);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 /* Stop device */
1668 netif_stop_queue(dev);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 /* Stop and remove instance of IrLAP */
1671 if (self->irlap)
1672 irlap_close(self->irlap);
1673 self->irlap = NULL;
1674
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001675 smsc_ircc_stop_interrupts(self);
1676
1677 /* if we are called from smsc_ircc_resume we don't have IRQ reserved */
1678 if (!self->io.suspended)
1679 free_irq(self->io.irq, dev);
1680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 disable_dma(self->io.dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 free_dma(self->io.dma);
1683
1684 return 0;
1685}
1686
Russell King9480e302005-10-28 09:52:56 -07001687static int smsc_ircc_suspend(struct device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -07001689 struct smsc_ircc_cb *self = dev_get_drvdata(dev);
1690
Russell King9480e302005-10-28 09:52:56 -07001691 if (!self->io.suspended) {
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001692 IRDA_DEBUG(1, "%s, Suspending\n", driver_name);
1693
1694 rtnl_lock();
1695 if (netif_running(self->netdev)) {
1696 netif_device_detach(self->netdev);
1697 smsc_ircc_stop_interrupts(self);
1698 free_irq(self->io.irq, self->netdev);
1699 disable_dma(self->io.dma);
1700 }
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001701 self->io.suspended = 1;
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001702 rtnl_unlock();
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001703 }
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -07001704
1705 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706}
1707
Russell King9480e302005-10-28 09:52:56 -07001708static int smsc_ircc_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -07001710 struct smsc_ircc_cb *self = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Russell King9480e302005-10-28 09:52:56 -07001712 if (self->io.suspended) {
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001713 IRDA_DEBUG(1, "%s, Waking up\n", driver_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001715 rtnl_lock();
1716 smsc_ircc_init_chip(self);
1717 if (netif_running(self->netdev)) {
1718 if (smsc_ircc_request_irq(self)) {
1719 /*
1720 * Don't fail resume process, just kill this
1721 * network interface
1722 */
1723 unregister_netdevice(self->netdev);
1724 } else {
1725 enable_dma(self->io.dma);
1726 smsc_ircc_start_interrupts(self);
1727 netif_device_attach(self->netdev);
1728 }
1729 }
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -07001730 self->io.suspended = 0;
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001731 rtnl_unlock();
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -07001732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 return 0;
1734}
1735
1736/*
1737 * Function smsc_ircc_close (self)
1738 *
1739 * Close driver instance
1740 *
1741 */
1742static int __exit smsc_ircc_close(struct smsc_ircc_cb *self)
1743{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1745
1746 IRDA_ASSERT(self != NULL, return -1;);
1747
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -07001748 platform_device_unregister(self->pldev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750 /* Remove netdevice */
1751 unregister_netdev(self->netdev);
1752
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001753 smsc_ircc_stop_interrupts(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
1755 /* Release the PORTS that this driver is using */
1756 IRDA_DEBUG(0, "%s(), releasing 0x%03x\n", __FUNCTION__,
1757 self->io.fir_base);
1758
1759 release_region(self->io.fir_base, self->io.fir_ext);
1760
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001761 IRDA_DEBUG(0, "%s(), releasing 0x%03x\n", __FUNCTION__,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 self->io.sir_base);
1763
1764 release_region(self->io.sir_base, self->io.sir_ext);
1765
1766 if (self->tx_buff.head)
1767 dma_free_coherent(NULL, self->tx_buff.truesize,
1768 self->tx_buff.head, self->tx_buff_dma);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 if (self->rx_buff.head)
1771 dma_free_coherent(NULL, self->rx_buff.truesize,
1772 self->rx_buff.head, self->rx_buff_dma);
1773
1774 free_netdev(self->netdev);
1775
1776 return 0;
1777}
1778
1779static void __exit smsc_ircc_cleanup(void)
1780{
1781 int i;
1782
1783 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
1784
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001785 for (i = 0; i < 2; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 if (dev_self[i])
1787 smsc_ircc_close(dev_self[i]);
1788 }
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -07001789
1790 driver_unregister(&smsc_ircc_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791}
1792
1793/*
1794 * Start SIR operations
1795 *
1796 * This function *must* be called with spinlock held, because it may
1797 * be called from the irq handler (via smsc_ircc_change_speed()). - Jean II
1798 */
1799void smsc_ircc_sir_start(struct smsc_ircc_cb *self)
1800{
1801 struct net_device *dev;
1802 int fir_base, sir_base;
1803
1804 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1805
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001806 IRDA_ASSERT(self != NULL, return;);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001807 dev = self->netdev;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001808 IRDA_ASSERT(dev != NULL, return;);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 dev->hard_start_xmit = &smsc_ircc_hard_xmit_sir;
1810
1811 fir_base = self->io.fir_base;
1812 sir_base = self->io.sir_base;
1813
1814 /* Reset everything */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001815 outb(IRCC_MASTER_RESET, fir_base + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 #if SMSC_IRCC2_C_SIR_STOP
1818 /*smsc_ircc_sir_stop(self);*/
1819 #endif
1820
1821 register_bank(fir_base, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001822 outb(((inb(fir_base + IRCC_SCE_CFGA) & IRCC_SCE_CFGA_BLOCK_CTRL_BITS_MASK) | IRCC_CFGA_IRDA_SIR_A), fir_base + IRCC_SCE_CFGA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
1824 /* Initialize UART */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001825 outb(UART_LCR_WLEN8, sir_base + UART_LCR); /* Reset DLAB */
1826 outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), sir_base + UART_MCR);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 /* Turn on interrups */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001829 outb(UART_IER_RLSI | UART_IER_RDI |UART_IER_THRI, sir_base + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831 IRDA_DEBUG(3, "%s() - exit\n", __FUNCTION__);
1832
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001833 outb(0x00, fir_base + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834}
1835
1836#if SMSC_IRCC2_C_SIR_STOP
1837void smsc_ircc_sir_stop(struct smsc_ircc_cb *self)
1838{
1839 int iobase;
1840
1841 IRDA_DEBUG(3, "%s\n", __FUNCTION__);
1842 iobase = self->io.sir_base;
1843
1844 /* Reset UART */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001845 outb(0, iobase + UART_MCR);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 /* Turn off interrupts */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001848 outb(0, iobase + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849}
1850#endif
1851
1852/*
1853 * Function smsc_sir_write_wakeup (self)
1854 *
1855 * Called by the SIR interrupt handler when there's room for more data.
1856 * If we have more packets to send, we send them here.
1857 *
1858 */
1859static void smsc_ircc_sir_write_wakeup(struct smsc_ircc_cb *self)
1860{
1861 int actual = 0;
1862 int iobase;
1863 int fcr;
1864
1865 IRDA_ASSERT(self != NULL, return;);
1866
1867 IRDA_DEBUG(4, "%s\n", __FUNCTION__);
1868
1869 iobase = self->io.sir_base;
1870
1871 /* Finished with frame? */
1872 if (self->tx_buff.len > 0) {
1873 /* Write data left in transmit buffer */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001874 actual = smsc_ircc_sir_write(iobase, self->io.fifo_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 self->tx_buff.data, self->tx_buff.len);
1876 self->tx_buff.data += actual;
1877 self->tx_buff.len -= actual;
1878 } else {
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001879
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 /*if (self->tx_buff.len ==0) {*/
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001881
1882 /*
1883 * Now serial buffer is almost free & we can start
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 * transmission of another packet. But first we must check
1885 * if we need to change the speed of the hardware
1886 */
1887 if (self->new_speed) {
1888 IRDA_DEBUG(5, "%s(), Changing speed to %d.\n",
1889 __FUNCTION__, self->new_speed);
1890 smsc_ircc_sir_wait_hw_transmitter_finish(self);
1891 smsc_ircc_change_speed(self, self->new_speed);
1892 self->new_speed = 0;
1893 } else {
1894 /* Tell network layer that we want more frames */
1895 netif_wake_queue(self->netdev);
1896 }
1897 self->stats.tx_packets++;
1898
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001899 if (self->io.speed <= 115200) {
1900 /*
1901 * Reset Rx FIFO to make sure that all reflected transmit data
1902 * is discarded. This is needed for half duplex operation
1903 */
1904 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR;
1905 fcr |= self->io.speed < 38400 ?
1906 UART_FCR_TRIGGER_1 : UART_FCR_TRIGGER_14;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001908 outb(fcr, iobase + UART_FCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001910 /* Turn on receive interrupts */
1911 outb(UART_IER_RDI, iobase + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 }
1913 }
1914}
1915
1916/*
1917 * Function smsc_ircc_sir_write (iobase, fifo_size, buf, len)
1918 *
1919 * Fill Tx FIFO with transmit data
1920 *
1921 */
1922static int smsc_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len)
1923{
1924 int actual = 0;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 /* Tx FIFO should be empty! */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001927 if (!(inb(iobase + UART_LSR) & UART_LSR_THRE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 IRDA_WARNING("%s(), failed, fifo not empty!\n", __FUNCTION__);
1929 return 0;
1930 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 /* Fill FIFO with current frame */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001933 while (fifo_size-- > 0 && actual < len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 /* Transmit next byte */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001935 outb(buf[actual], iobase + UART_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 actual++;
1937 }
1938 return actual;
1939}
1940
1941/*
1942 * Function smsc_ircc_is_receiving (self)
1943 *
1944 * Returns true is we are currently receiving data
1945 *
1946 */
1947static int smsc_ircc_is_receiving(struct smsc_ircc_cb *self)
1948{
1949 return (self->rx_buff.state != OUTSIDE_FRAME);
1950}
1951
1952
1953/*
1954 * Function smsc_ircc_probe_transceiver(self)
1955 *
1956 * Tries to find the used Transceiver
1957 *
1958 */
1959static void smsc_ircc_probe_transceiver(struct smsc_ircc_cb *self)
1960{
1961 unsigned int i;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 IRDA_ASSERT(self != NULL, return;);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001964
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001965 for (i = 0; smsc_transceivers[i].name != NULL; i++)
1966 if (smsc_transceivers[i].probe(self->io.fir_base)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 IRDA_MESSAGE(" %s transceiver found\n",
1968 smsc_transceivers[i].name);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001969 self->transceiver= i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 return;
1971 }
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 IRDA_MESSAGE("No transceiver found. Defaulting to %s\n",
1974 smsc_transceivers[SMSC_IRCC2_C_DEFAULT_TRANSCEIVER].name);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001975
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001976 self->transceiver = SMSC_IRCC2_C_DEFAULT_TRANSCEIVER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977}
1978
1979
1980/*
1981 * Function smsc_ircc_set_transceiver_for_speed(self, speed)
1982 *
1983 * Set the transceiver according to the speed
1984 *
1985 */
1986static void smsc_ircc_set_transceiver_for_speed(struct smsc_ircc_cb *self, u32 speed)
1987{
1988 unsigned int trx;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 trx = self->transceiver;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001991 if (trx > 0)
1992 smsc_transceivers[trx - 1].set_for_speed(self->io.fir_base, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993}
1994
1995/*
1996 * Function smsc_ircc_wait_hw_transmitter_finish ()
1997 *
1998 * Wait for the real end of HW transmission
1999 *
2000 * The UART is a strict FIFO, and we get called only when we have finished
2001 * pushing data to the FIFO, so the maximum amount of time we must wait
2002 * is only for the FIFO to drain out.
2003 *
2004 * We use a simple calibrated loop. We may need to adjust the loop
2005 * delay (udelay) to balance I/O traffic and latency. And we also need to
2006 * adjust the maximum timeout.
2007 * It would probably be better to wait for the proper interrupt,
2008 * but it doesn't seem to be available.
2009 *
2010 * We can't use jiffies or kernel timers because :
2011 * 1) We are called from the interrupt handler, which disable softirqs,
2012 * so jiffies won't be increased
2013 * 2) Jiffies granularity is usually very coarse (10ms), and we don't
2014 * want to wait that long to detect stuck hardware.
2015 * Jean II
2016 */
2017
2018static void smsc_ircc_sir_wait_hw_transmitter_finish(struct smsc_ircc_cb *self)
2019{
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002020 int iobase = self->io.sir_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 int count = SMSC_IRCC2_HW_TRANSMITTER_TIMEOUT_US;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 /* Calibrated busy loop */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002024 while (count-- > 0 && !(inb(iobase + UART_LSR) & UART_LSR_TEMT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 udelay(1);
2026
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002027 if (count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 IRDA_DEBUG(0, "%s(): stuck transmitter\n", __FUNCTION__);
2029}
2030
2031
2032/* PROBING
2033 *
2034 *
2035 */
2036
2037static int __init smsc_ircc_look_for_chips(void)
2038{
Dmitry Torokhovb6158d22005-09-06 15:19:20 -07002039 struct smsc_chip_address *address;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002040 char *type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 unsigned int cfg_base, found;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 found = 0;
2044 address = possible_addresses;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002045
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002046 while (address->cfg_base) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 cfg_base = address->cfg_base;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 /*printk(KERN_WARNING "%s(): probing: 0x%02x for: 0x%02x\n", __FUNCTION__, cfg_base, address->type);*/
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002050
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002051 if (address->type & SMSCSIO_TYPE_FDC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 type = "FDC";
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002053 if (address->type & SMSCSIO_TYPE_FLAT)
2054 if (!smsc_superio_flat(fdc_chips_flat, cfg_base, type))
2055 found++;
2056
2057 if (address->type & SMSCSIO_TYPE_PAGED)
2058 if (!smsc_superio_paged(fdc_chips_paged, cfg_base, type))
2059 found++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 }
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002061 if (address->type & SMSCSIO_TYPE_LPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 type = "LPC";
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002063 if (address->type & SMSCSIO_TYPE_FLAT)
2064 if (!smsc_superio_flat(lpc_chips_flat, cfg_base, type))
2065 found++;
2066
2067 if (address->type & SMSCSIO_TYPE_PAGED)
2068 if (!smsc_superio_paged(lpc_chips_paged, cfg_base, type))
2069 found++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 }
2071 address++;
2072 }
2073 return found;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002074}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076/*
2077 * Function smsc_superio_flat (chip, base, type)
2078 *
2079 * Try to get configuration of a smc SuperIO chip with flat register model
2080 *
2081 */
Dmitry Torokhovb6158d22005-09-06 15:19:20 -07002082static int __init smsc_superio_flat(const struct smsc_chip *chips, unsigned short cfgbase, char *type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
2084 unsigned short firbase, sirbase;
2085 u8 mode, dma, irq;
2086 int ret = -ENODEV;
2087
2088 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
2089
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002090 if (smsc_ircc_probe(cfgbase, SMSCSIOFLAT_DEVICEID_REG, chips, type) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 return ret;
2092
2093 outb(SMSCSIOFLAT_UARTMODE0C_REG, cfgbase);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002094 mode = inb(cfgbase + 1);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 /*printk(KERN_WARNING "%s(): mode: 0x%02x\n", __FUNCTION__, mode);*/
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002097
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002098 if (!(mode & SMSCSIOFLAT_UART2MODE_VAL_IRDA))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 IRDA_WARNING("%s(): IrDA not enabled\n", __FUNCTION__);
2100
2101 outb(SMSCSIOFLAT_UART2BASEADDR_REG, cfgbase);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002102 sirbase = inb(cfgbase + 1) << 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002104 /* FIR iobase */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 outb(SMSCSIOFLAT_FIRBASEADDR_REG, cfgbase);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002106 firbase = inb(cfgbase + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
2108 /* DMA */
2109 outb(SMSCSIOFLAT_FIRDMASELECT_REG, cfgbase);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002110 dma = inb(cfgbase + 1) & SMSCSIOFLAT_FIRDMASELECT_MASK;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 /* IRQ */
2113 outb(SMSCSIOFLAT_UARTIRQSELECT_REG, cfgbase);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002114 irq = inb(cfgbase + 1) & SMSCSIOFLAT_UART2IRQSELECT_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
2116 IRDA_MESSAGE("%s(): fir: 0x%02x, sir: 0x%02x, dma: %02d, irq: %d, mode: 0x%02x\n", __FUNCTION__, firbase, sirbase, dma, irq, mode);
2117
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002118 if (firbase && smsc_ircc_open(firbase, sirbase, dma, irq) == 0)
2119 ret = 0;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 /* Exit configuration */
2122 outb(SMSCSIO_CFGEXITKEY, cfgbase);
2123
2124 return ret;
2125}
2126
2127/*
2128 * Function smsc_superio_paged (chip, base, type)
2129 *
2130 * Try to get configuration of a smc SuperIO chip with paged register model
2131 *
2132 */
Dmitry Torokhovb6158d22005-09-06 15:19:20 -07002133static int __init smsc_superio_paged(const struct smsc_chip *chips, unsigned short cfg_base, char *type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
2135 unsigned short fir_io, sir_io;
2136 int ret = -ENODEV;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
2139
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002140 if (smsc_ircc_probe(cfg_base, 0x20, chips, type) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 return ret;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 /* Select logical device (UART2) */
2144 outb(0x07, cfg_base);
2145 outb(0x05, cfg_base + 1);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 /* SIR iobase */
2148 outb(0x60, cfg_base);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002149 sir_io = inb(cfg_base + 1) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 outb(0x61, cfg_base);
2151 sir_io |= inb(cfg_base + 1);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002152
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 /* Read FIR base */
2154 outb(0x62, cfg_base);
2155 fir_io = inb(cfg_base + 1) << 8;
2156 outb(0x63, cfg_base);
2157 fir_io |= inb(cfg_base + 1);
2158 outb(0x2b, cfg_base); /* ??? */
2159
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002160 if (fir_io && smsc_ircc_open(fir_io, sir_io, ircc_dma, ircc_irq) == 0)
2161 ret = 0;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 /* Exit configuration */
2164 outb(SMSCSIO_CFGEXITKEY, cfg_base);
2165
2166 return ret;
2167}
2168
2169
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002170static int __init smsc_access(unsigned short cfg_base, unsigned char reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171{
2172 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
2173
2174 outb(reg, cfg_base);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002175 return inb(cfg_base) != reg ? -1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176}
2177
Dmitry Torokhovb6158d22005-09-06 15:19:20 -07002178static const struct smsc_chip * __init smsc_ircc_probe(unsigned short cfg_base, u8 reg, const struct smsc_chip *chip, char *type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002180 u8 devid, xdevid, rev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
2182 IRDA_DEBUG(1, "%s\n", __FUNCTION__);
2183
2184 /* Leave configuration */
2185
2186 outb(SMSCSIO_CFGEXITKEY, cfg_base);
2187
2188 if (inb(cfg_base) == SMSCSIO_CFGEXITKEY) /* not a smc superio chip */
2189 return NULL;
2190
2191 outb(reg, cfg_base);
2192
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002193 xdevid = inb(cfg_base + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195 /* Enter configuration */
2196
2197 outb(SMSCSIO_CFGACCESSKEY, cfg_base);
2198
2199 #if 0
2200 if (smsc_access(cfg_base,0x55)) /* send second key and check */
2201 return NULL;
2202 #endif
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 /* probe device ID */
2205
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002206 if (smsc_access(cfg_base, reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return NULL;
2208
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002209 devid = inb(cfg_base + 1);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002210
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002211 if (devid == 0 || devid == 0xff) /* typical values for unused port */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 return NULL;
2213
2214 /* probe revision ID */
2215
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002216 if (smsc_access(cfg_base, reg + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 return NULL;
2218
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002219 rev = inb(cfg_base + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002221 if (rev >= 128) /* i think this will make no sense */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 return NULL;
2223
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002224 if (devid == xdevid) /* protection against false positives */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 return NULL;
2226
2227 /* Check for expected device ID; are there others? */
2228
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002229 while (chip->devid != devid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
2231 chip++;
2232
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002233 if (chip->name == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 return NULL;
2235 }
2236
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002237 IRDA_MESSAGE("found SMC SuperIO Chip (devid=0x%02x rev=%02X base=0x%04x): %s%s\n",
2238 devid, rev, cfg_base, type, chip->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002240 if (chip->rev > rev) {
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002241 IRDA_MESSAGE("Revision higher than expected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 return NULL;
2243 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002244
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002245 if (chip->flags & NoIRDA)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 IRDA_MESSAGE("chipset does not support IRDA\n");
2247
2248 return chip;
2249}
2250
2251static int __init smsc_superio_fdc(unsigned short cfg_base)
2252{
2253 int ret = -1;
2254
2255 if (!request_region(cfg_base, 2, driver_name)) {
2256 IRDA_WARNING("%s: can't get cfg_base of 0x%03x\n",
2257 __FUNCTION__, cfg_base);
2258 } else {
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002259 if (!smsc_superio_flat(fdc_chips_flat, cfg_base, "FDC") ||
2260 !smsc_superio_paged(fdc_chips_paged, cfg_base, "FDC"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 ret = 0;
2262
2263 release_region(cfg_base, 2);
2264 }
2265
2266 return ret;
2267}
2268
2269static int __init smsc_superio_lpc(unsigned short cfg_base)
2270{
2271 int ret = -1;
2272
2273 if (!request_region(cfg_base, 2, driver_name)) {
2274 IRDA_WARNING("%s: can't get cfg_base of 0x%03x\n",
2275 __FUNCTION__, cfg_base);
2276 } else {
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002277 if (!smsc_superio_flat(lpc_chips_flat, cfg_base, "LPC") ||
2278 !smsc_superio_paged(lpc_chips_paged, cfg_base, "LPC"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 ret = 0;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 release_region(cfg_base, 2);
2282 }
2283 return ret;
2284}
2285
2286/************************************************
2287 *
2288 * Transceivers specific functions
2289 *
2290 ************************************************/
2291
2292
2293/*
2294 * Function smsc_ircc_set_transceiver_smsc_ircc_atc(fir_base, speed)
2295 *
2296 * Program transceiver through smsc-ircc ATC circuitry
2297 *
2298 */
2299
2300static void smsc_ircc_set_transceiver_smsc_ircc_atc(int fir_base, u32 speed)
2301{
2302 unsigned long jiffies_now, jiffies_timeout;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002303 u8 val;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002304
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002305 jiffies_now = jiffies;
2306 jiffies_timeout = jiffies + SMSC_IRCC2_ATC_PROGRAMMING_TIMEOUT_JIFFIES;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 /* ATC */
2309 register_bank(fir_base, 4);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002310 outb((inb(fir_base + IRCC_ATC) & IRCC_ATC_MASK) | IRCC_ATC_nPROGREADY|IRCC_ATC_ENABLE,
2311 fir_base + IRCC_ATC);
2312
2313 while ((val = (inb(fir_base + IRCC_ATC) & IRCC_ATC_nPROGREADY)) &&
2314 !time_after(jiffies, jiffies_timeout))
2315 /* empty */;
2316
2317 if (val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 IRDA_WARNING("%s(): ATC: 0x%02x\n", __FUNCTION__,
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002319 inb(fir_base + IRCC_ATC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320}
2321
2322/*
2323 * Function smsc_ircc_probe_transceiver_smsc_ircc_atc(fir_base)
2324 *
2325 * Probe transceiver smsc-ircc ATC circuitry
2326 *
2327 */
2328
2329static int smsc_ircc_probe_transceiver_smsc_ircc_atc(int fir_base)
2330{
2331 return 0;
2332}
2333
2334/*
2335 * Function smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(self, speed)
2336 *
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002337 * Set transceiver
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 *
2339 */
2340
2341static void smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(int fir_base, u32 speed)
2342{
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002343 u8 fast_mode;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002344
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002345 switch (speed) {
2346 default:
2347 case 576000 :
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002348 fast_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 break;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002350 case 1152000 :
2351 case 4000000 :
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 fast_mode = IRCC_LCR_A_FAST;
2353 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 }
2355 register_bank(fir_base, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002356 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast_mode, fir_base + IRCC_LCR_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357}
2358
2359/*
2360 * Function smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(fir_base)
2361 *
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002362 * Probe transceiver
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 *
2364 */
2365
2366static int smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(int fir_base)
2367{
2368 return 0;
2369}
2370
2371/*
2372 * Function smsc_ircc_set_transceiver_toshiba_sat1800(fir_base, speed)
2373 *
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002374 * Set transceiver
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 *
2376 */
2377
2378static void smsc_ircc_set_transceiver_toshiba_sat1800(int fir_base, u32 speed)
2379{
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002380 u8 fast_mode;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002381
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002382 switch (speed) {
2383 default:
2384 case 576000 :
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002385 fast_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 break;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002387 case 1152000 :
2388 case 4000000 :
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 fast_mode = /*IRCC_LCR_A_FAST |*/ IRCC_LCR_A_GP_DATA;
2390 break;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002391
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 }
2393 /* This causes an interrupt */
2394 register_bank(fir_base, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002395 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast_mode, fir_base + IRCC_LCR_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396}
2397
2398/*
2399 * Function smsc_ircc_probe_transceiver_toshiba_sat1800(fir_base)
2400 *
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002401 * Probe transceiver
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 *
2403 */
2404
2405static int smsc_ircc_probe_transceiver_toshiba_sat1800(int fir_base)
2406{
2407 return 0;
2408}
2409
2410
2411module_init(smsc_ircc_init);
2412module_exit(smsc_ircc_cleanup);