blob: b455ffe8850ceda13255ad13e5a52d236b3ae8b2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Description: Driver for the SMC Infrared Communications Controller
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Author: Daniele Peri (peri@csai.unipa.it)
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07005 * Created at:
6 * Modified at:
7 * Modified by:
8 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Copyright (c) 2002 Daniele Peri
10 * All Rights Reserved.
11 * Copyright (c) 2002 Jean Tourrilhes
Linus Walleijc1e14a62006-04-05 22:33:59 -070012 * Copyright (c) 2006 Linus Walleij
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
14 *
15 * Based on smc-ircc.c:
16 *
17 * Copyright (c) 2001 Stefani Seibold
18 * Copyright (c) 1999-2001 Dag Brattli
Dmitry Torokhov527b6af2005-09-06 15:19:17 -070019 * Copyright (c) 1998-1999 Thomas Davis,
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 *
21 * and irport.c:
22 *
23 * Copyright (c) 1997, 1998, 1999-2000 Dag Brattli, All Rights Reserved.
24 *
Dmitry Torokhov527b6af2005-09-06 15:19:17 -070025 *
26 * This program is free software; you can redistribute it and/or
27 * modify it under the terms of the GNU General Public License as
28 * published by the Free Software Foundation; either version 2 of
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * the License, or (at your option) any later version.
Dmitry Torokhov527b6af2005-09-06 15:19:17 -070030 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 * This program is distributed in the hope that it will be useful,
32 * but WITHOUT ANY WARRANTY; without even the implied warranty of
33 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 * GNU General Public License for more details.
Dmitry Torokhov527b6af2005-09-06 15:19:17 -070035 *
36 * You should have received a copy of the GNU General Public License
Jeff Kirshere8478de2013-12-06 06:28:44 -080037 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 *
39 ********************************************************************/
40
41#include <linux/module.h>
42#include <linux/kernel.h>
43#include <linux/types.h>
44#include <linux/skbuff.h>
45#include <linux/netdevice.h>
46#include <linux/ioport.h>
47#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000049#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <linux/rtnetlink.h>
51#include <linux/serial_reg.h>
52#include <linux/dma-mapping.h>
David Brownelld94c77b2006-05-09 15:26:11 -070053#include <linux/pnp.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010054#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090055#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
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>
Linus Walleijc1e14a62006-04-05 22:33:59 -070063#ifdef CONFIG_PCI
64#include <linux/pci.h>
65#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67#include <net/irda/wrapper.h>
68#include <net/irda/irda.h>
69#include <net/irda/irda_device.h>
70
71#include "smsc-ircc2.h"
72#include "smsc-sio.h"
73
Dmitry Torokhov98b77772005-09-06 15:19:19 -070074
75MODULE_AUTHOR("Daniele Peri <peri@csai.unipa.it>");
76MODULE_DESCRIPTION("SMC IrCC SIR/FIR controller driver");
77MODULE_LICENSE("GPL");
78
Rusty Russelleb939922011-12-19 14:08:01 +000079static bool smsc_nopnp = true;
Bjorn Helgaasd0d4f692007-05-08 00:36:05 -070080module_param_named(nopnp, smsc_nopnp, bool, 0);
Jonathan Bastien-Filiatrault32db9272007-09-26 22:34:25 -070081MODULE_PARM_DESC(nopnp, "Do not use PNP to detect controller settings, defaults to true");
Bjorn Helgaasd0d4f692007-05-08 00:36:05 -070082
Bjorn Helgaas916f11c2007-05-08 00:36:02 -070083#define DMA_INVAL 255
84static int ircc_dma = DMA_INVAL;
Dmitry Torokhov98b77772005-09-06 15:19:19 -070085module_param(ircc_dma, int, 0);
86MODULE_PARM_DESC(ircc_dma, "DMA channel");
87
Bjorn Helgaas916f11c2007-05-08 00:36:02 -070088#define IRQ_INVAL 255
89static int ircc_irq = IRQ_INVAL;
Dmitry Torokhov98b77772005-09-06 15:19:19 -070090module_param(ircc_irq, int, 0);
91MODULE_PARM_DESC(ircc_irq, "IRQ line");
92
93static int ircc_fir;
94module_param(ircc_fir, int, 0);
95MODULE_PARM_DESC(ircc_fir, "FIR Base Address");
96
97static int ircc_sir;
98module_param(ircc_sir, int, 0);
99MODULE_PARM_DESC(ircc_sir, "SIR Base Address");
100
101static int ircc_cfg;
102module_param(ircc_cfg, int, 0);
103MODULE_PARM_DESC(ircc_cfg, "Configuration register base address");
104
105static int ircc_transceiver;
106module_param(ircc_transceiver, int, 0);
107MODULE_PARM_DESC(ircc_transceiver, "Transceiver type");
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/* Types */
110
Linus Walleijc1e14a62006-04-05 22:33:59 -0700111#ifdef CONFIG_PCI
112struct smsc_ircc_subsystem_configuration {
113 unsigned short vendor; /* PCI vendor ID */
114 unsigned short device; /* PCI vendor ID */
115 unsigned short subvendor; /* PCI subsystem vendor ID */
Jean Delvare83cf0a92009-10-20 11:11:52 +0200116 unsigned short subdevice; /* PCI subsystem device ID */
Linus Walleijc1e14a62006-04-05 22:33:59 -0700117 unsigned short sir_io; /* I/O port for SIR */
118 unsigned short fir_io; /* I/O port for FIR */
119 unsigned char fir_irq; /* FIR IRQ */
120 unsigned char fir_dma; /* FIR DMA */
121 unsigned short cfg_base; /* I/O port for chip configuration */
122 int (*preconfigure)(struct pci_dev *dev, struct smsc_ircc_subsystem_configuration *conf); /* Preconfig function */
123 const char *name; /* name shown as info */
124};
125#endif
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127struct smsc_transceiver {
128 char *name;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700129 void (*set_for_speed)(int fir_base, u32 speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 int (*probe)(int fir_base);
131};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133struct smsc_chip {
134 char *name;
135 #if 0
136 u8 type;
137 #endif
138 u16 flags;
139 u8 devid;
140 u8 rev;
141};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143struct smsc_chip_address {
144 unsigned int cfg_base;
145 unsigned int type;
146};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148/* Private data for each instance */
149struct smsc_ircc_cb {
150 struct net_device *netdev; /* Yes! we are some kind of netdevice */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 struct irlap_cb *irlap; /* The link layer we are binded to */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 chipio_t io; /* IrDA controller information */
154 iobuff_t tx_buff; /* Transmit buffer */
155 iobuff_t rx_buff; /* Receive buffer */
156 dma_addr_t tx_buff_dma;
157 dma_addr_t rx_buff_dma;
158
159 struct qos_info qos; /* QoS capabilities for this device */
160
161 spinlock_t lock; /* For serializing operations */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 __u32 new_speed;
164 __u32 flags; /* Interface flags */
165
166 int tx_buff_offsets[10]; /* Offsets between frames in tx_buff */
167 int tx_len; /* Number of frames in tx_buff */
168
169 int transceiver;
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700170 struct platform_device *pldev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171};
172
173/* Constants */
174
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700175#define SMSC_IRCC2_DRIVER_NAME "smsc-ircc2"
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#define SMSC_IRCC2_C_IRDA_FALLBACK_SPEED 9600
178#define SMSC_IRCC2_C_DEFAULT_TRANSCEIVER 1
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700179#define SMSC_IRCC2_C_NET_TIMEOUT 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#define SMSC_IRCC2_C_SIR_STOP 0
181
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700182static const char *driver_name = SMSC_IRCC2_DRIVER_NAME;
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184/* Prototypes */
185
186static int smsc_ircc_open(unsigned int firbase, unsigned int sirbase, u8 dma, u8 irq);
187static int smsc_ircc_present(unsigned int fir_base, unsigned int sir_base);
188static void smsc_ircc_setup_io(struct smsc_ircc_cb *self, unsigned int fir_base, unsigned int sir_base, u8 dma, u8 irq);
189static void smsc_ircc_setup_qos(struct smsc_ircc_cb *self);
190static void smsc_ircc_init_chip(struct smsc_ircc_cb *self);
191static int __exit smsc_ircc_close(struct smsc_ircc_cb *self);
Dmitry Torokhov80a90582005-09-06 15:19:21 -0700192static int smsc_ircc_dma_receive(struct smsc_ircc_cb *self);
193static void smsc_ircc_dma_receive_complete(struct smsc_ircc_cb *self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194static void smsc_ircc_sir_receive(struct smsc_ircc_cb *self);
Stephen Hemminger6518bbb2009-08-31 19:50:50 +0000195static netdev_tx_t smsc_ircc_hard_xmit_sir(struct sk_buff *skb,
196 struct net_device *dev);
197static netdev_tx_t smsc_ircc_hard_xmit_fir(struct sk_buff *skb,
198 struct net_device *dev);
Dmitry Torokhov80a90582005-09-06 15:19:21 -0700199static void smsc_ircc_dma_xmit(struct smsc_ircc_cb *self, int bofs);
200static void smsc_ircc_dma_xmit_complete(struct smsc_ircc_cb *self);
Dmitry Torokhov0fa2f492005-09-06 15:19:24 -0700201static void smsc_ircc_change_speed(struct smsc_ircc_cb *self, u32 speed);
202static void smsc_ircc_set_sir_speed(struct smsc_ircc_cb *self, u32 speed);
David Howells7d12e782006-10-05 14:55:46 +0100203static irqreturn_t smsc_ircc_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204static irqreturn_t smsc_ircc_interrupt_sir(struct net_device *dev);
205static void smsc_ircc_sir_start(struct smsc_ircc_cb *self);
206#if SMSC_IRCC2_C_SIR_STOP
207static void smsc_ircc_sir_stop(struct smsc_ircc_cb *self);
208#endif
209static void smsc_ircc_sir_write_wakeup(struct smsc_ircc_cb *self);
210static int smsc_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len);
211static int smsc_ircc_net_open(struct net_device *dev);
212static int smsc_ircc_net_close(struct net_device *dev);
213static int smsc_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
214#if SMSC_IRCC2_C_NET_TIMEOUT
215static void smsc_ircc_timeout(struct net_device *dev);
216#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217static int smsc_ircc_is_receiving(struct smsc_ircc_cb *self);
218static void smsc_ircc_probe_transceiver(struct smsc_ircc_cb *self);
219static void smsc_ircc_set_transceiver_for_speed(struct smsc_ircc_cb *self, u32 speed);
220static void smsc_ircc_sir_wait_hw_transmitter_finish(struct smsc_ircc_cb *self);
221
222/* Probing */
David S. Miller948252c2011-05-31 19:27:48 -0700223static int __init smsc_ircc_look_for_chips(void);
224static const struct smsc_chip * __init smsc_ircc_probe(unsigned short cfg_base, u8 reg, const struct smsc_chip *chip, char *type);
225static int __init smsc_superio_flat(const struct smsc_chip *chips, unsigned short cfg_base, char *type);
226static int __init smsc_superio_paged(const struct smsc_chip *chips, unsigned short cfg_base, char *type);
227static int __init smsc_superio_fdc(unsigned short cfg_base);
228static int __init smsc_superio_lpc(unsigned short cfg_base);
Linus Walleijc1e14a62006-04-05 22:33:59 -0700229#ifdef CONFIG_PCI
David S. Miller948252c2011-05-31 19:27:48 -0700230static int __init preconfigure_smsc_chip(struct smsc_ircc_subsystem_configuration *conf);
231static int __init preconfigure_through_82801(struct pci_dev *dev, struct smsc_ircc_subsystem_configuration *conf);
232static void __init preconfigure_ali_port(struct pci_dev *dev,
Linus Walleij08d09992006-04-14 16:03:33 -0700233 unsigned short port);
David S. Miller948252c2011-05-31 19:27:48 -0700234static int __init preconfigure_through_ali(struct pci_dev *dev, struct smsc_ircc_subsystem_configuration *conf);
235static int __init smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg,
Linus Walleijc1e14a62006-04-05 22:33:59 -0700236 unsigned short ircc_fir,
237 unsigned short ircc_sir,
238 unsigned char ircc_dma,
239 unsigned char ircc_irq);
240#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242/* Transceivers specific functions */
243
244static void smsc_ircc_set_transceiver_toshiba_sat1800(int fir_base, u32 speed);
245static int smsc_ircc_probe_transceiver_toshiba_sat1800(int fir_base);
246static void smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(int fir_base, u32 speed);
247static int smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(int fir_base);
248static void smsc_ircc_set_transceiver_smsc_ircc_atc(int fir_base, u32 speed);
249static int smsc_ircc_probe_transceiver_smsc_ircc_atc(int fir_base);
250
251/* Power Management */
252
Russell King3ae5eae2005-11-09 22:32:44 +0000253static int smsc_ircc_suspend(struct platform_device *dev, pm_message_t state);
254static int smsc_ircc_resume(struct platform_device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Russell King3ae5eae2005-11-09 22:32:44 +0000256static struct platform_driver smsc_ircc_driver = {
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700257 .suspend = smsc_ircc_suspend,
258 .resume = smsc_ircc_resume,
Russell King3ae5eae2005-11-09 22:32:44 +0000259 .driver = {
260 .name = SMSC_IRCC2_DRIVER_NAME,
261 },
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700262};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264/* Transceivers for SMSC-ircc */
265
Dmitry Torokhovb6158d22005-09-06 15:19:20 -0700266static struct smsc_transceiver smsc_transceivers[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700268 { "Toshiba Satellite 1800 (GP data pin select)", smsc_ircc_set_transceiver_toshiba_sat1800, smsc_ircc_probe_transceiver_toshiba_sat1800 },
269 { "Fast pin select", smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select, smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select },
270 { "ATC IRMode", smsc_ircc_set_transceiver_smsc_ircc_atc, smsc_ircc_probe_transceiver_smsc_ircc_atc },
271 { NULL, NULL }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272};
Dmitry Torokhova956f4c2005-09-06 15:19:20 -0700273#define SMSC_IRCC2_C_NUMBER_OF_TRANSCEIVERS (ARRAY_SIZE(smsc_transceivers) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275/* SMC SuperIO chipsets definitions */
276
277#define KEY55_1 0 /* SuperIO Configuration mode with Key <0x55> */
278#define KEY55_2 1 /* SuperIO Configuration mode with Key <0x55,0x55> */
279#define NoIRDA 2 /* SuperIO Chip has no IRDA Port */
280#define SIR 0 /* SuperIO Chip has only slow IRDA */
281#define FIR 4 /* SuperIO Chip has fast IRDA */
282#define SERx4 8 /* SuperIO Chip supports 115,2 KBaud * 4=460,8 KBaud */
283
Dmitry Torokhovb6158d22005-09-06 15:19:20 -0700284static struct smsc_chip __initdata fdc_chips_flat[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 /* Base address 0x3f0 or 0x370 */
287 { "37C44", KEY55_1|NoIRDA, 0x00, 0x00 }, /* This chip cannot be detected */
288 { "37C665GT", KEY55_2|NoIRDA, 0x65, 0x01 },
289 { "37C665GT", KEY55_2|NoIRDA, 0x66, 0x01 },
290 { "37C669", KEY55_2|SIR|SERx4, 0x03, 0x02 },
291 { "37C669", KEY55_2|SIR|SERx4, 0x04, 0x02 }, /* ID? */
292 { "37C78", KEY55_2|NoIRDA, 0x78, 0x00 },
293 { "37N769", KEY55_1|FIR|SERx4, 0x28, 0x00 },
294 { "37N869", KEY55_1|FIR|SERx4, 0x29, 0x00 },
295 { NULL }
296};
297
Dmitry Torokhovb6158d22005-09-06 15:19:20 -0700298static struct smsc_chip __initdata fdc_chips_paged[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 /* Base address 0x3f0 or 0x370 */
301 { "37B72X", KEY55_1|SIR|SERx4, 0x4c, 0x00 },
302 { "37B77X", KEY55_1|SIR|SERx4, 0x43, 0x00 },
303 { "37B78X", KEY55_1|SIR|SERx4, 0x44, 0x00 },
304 { "37B80X", KEY55_1|SIR|SERx4, 0x42, 0x00 },
305 { "37C67X", KEY55_1|FIR|SERx4, 0x40, 0x00 },
306 { "37C93X", KEY55_2|SIR|SERx4, 0x02, 0x01 },
307 { "37C93XAPM", KEY55_1|SIR|SERx4, 0x30, 0x01 },
308 { "37C93XFR", KEY55_2|FIR|SERx4, 0x03, 0x01 },
309 { "37M707", KEY55_1|SIR|SERx4, 0x42, 0x00 },
310 { "37M81X", KEY55_1|SIR|SERx4, 0x4d, 0x00 },
311 { "37N958FR", KEY55_1|FIR|SERx4, 0x09, 0x04 },
312 { "37N971", KEY55_1|FIR|SERx4, 0x0a, 0x00 },
313 { "37N972", KEY55_1|FIR|SERx4, 0x0b, 0x00 },
314 { NULL }
315};
316
Dmitry Torokhovb6158d22005-09-06 15:19:20 -0700317static struct smsc_chip __initdata lpc_chips_flat[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 /* Base address 0x2E or 0x4E */
320 { "47N227", KEY55_1|FIR|SERx4, 0x5a, 0x00 },
Peter Kovarafdf27c2007-03-16 20:39:25 -0700321 { "47N227", KEY55_1|FIR|SERx4, 0x7a, 0x00 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 { "47N267", KEY55_1|FIR|SERx4, 0x5e, 0x00 },
323 { NULL }
324};
325
Dmitry Torokhovb6158d22005-09-06 15:19:20 -0700326static struct smsc_chip __initdata lpc_chips_paged[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 /* Base address 0x2E or 0x4E */
329 { "47B27X", KEY55_1|SIR|SERx4, 0x51, 0x00 },
330 { "47B37X", KEY55_1|SIR|SERx4, 0x52, 0x00 },
331 { "47M10X", KEY55_1|SIR|SERx4, 0x59, 0x00 },
332 { "47M120", KEY55_1|NoIRDA|SERx4, 0x5c, 0x00 },
333 { "47M13X", KEY55_1|SIR|SERx4, 0x59, 0x00 },
334 { "47M14X", KEY55_1|SIR|SERx4, 0x5f, 0x00 },
335 { "47N252", KEY55_1|FIR|SERx4, 0x0e, 0x00 },
336 { "47S42X", KEY55_1|SIR|SERx4, 0x57, 0x00 },
337 { NULL }
338};
339
340#define SMSCSIO_TYPE_FDC 1
341#define SMSCSIO_TYPE_LPC 2
342#define SMSCSIO_TYPE_FLAT 4
343#define SMSCSIO_TYPE_PAGED 8
344
Dmitry Torokhovb6158d22005-09-06 15:19:20 -0700345static struct smsc_chip_address __initdata possible_addresses[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700347 { 0x3f0, SMSCSIO_TYPE_FDC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
348 { 0x370, SMSCSIO_TYPE_FDC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
349 { 0xe0, SMSCSIO_TYPE_FDC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
350 { 0x2e, SMSCSIO_TYPE_LPC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
351 { 0x4e, SMSCSIO_TYPE_LPC|SMSCSIO_TYPE_FLAT|SMSCSIO_TYPE_PAGED },
352 { 0, 0 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353};
354
355/* Globals */
356
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700357static struct smsc_ircc_cb *dev_self[] = { NULL, NULL };
358static unsigned short dev_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360static inline void register_bank(int iobase, int bank)
361{
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700362 outb(((inb(iobase + IRCC_MASTER) & 0xf0) | (bank & 0x07)),
363 iobase + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
David Brownelld94c77b2006-05-09 15:26:11 -0700366/* PNP hotplug support */
David S. Miller948252c2011-05-31 19:27:48 -0700367static const struct pnp_device_id smsc_ircc_pnp_table[] = {
David Brownelld94c77b2006-05-09 15:26:11 -0700368 { .id = "SMCf010", .driver_data = 0 },
369 /* and presumably others */
370 { }
371};
372MODULE_DEVICE_TABLE(pnp, smsc_ircc_pnp_table);
Bjorn Helgaasd0d4f692007-05-08 00:36:05 -0700373
374static int pnp_driver_registered;
375
Ingo Molnar7a1aa302008-05-05 01:06:54 -0700376#ifdef CONFIG_PNP
Bill Pemberton45ac9362012-12-03 09:24:13 -0500377static int smsc_ircc_pnp_probe(struct pnp_dev *dev,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +0000378 const struct pnp_device_id *dev_id)
Bjorn Helgaasd0d4f692007-05-08 00:36:05 -0700379{
380 unsigned int firbase, sirbase;
381 u8 dma, irq;
382
383 if (!(pnp_port_valid(dev, 0) && pnp_port_valid(dev, 1) &&
384 pnp_dma_valid(dev, 0) && pnp_irq_valid(dev, 0)))
385 return -EINVAL;
386
387 sirbase = pnp_port_start(dev, 0);
388 firbase = pnp_port_start(dev, 1);
389 dma = pnp_dma(dev, 0);
390 irq = pnp_irq(dev, 0);
391
392 if (smsc_ircc_open(firbase, sirbase, dma, irq))
393 return -ENODEV;
394
395 return 0;
396}
397
398static struct pnp_driver smsc_ircc_pnp_driver = {
399 .name = "smsc-ircc2",
400 .id_table = smsc_ircc_pnp_table,
401 .probe = smsc_ircc_pnp_probe,
402};
Ingo Molnar7a1aa302008-05-05 01:06:54 -0700403#else /* CONFIG_PNP */
404static struct pnp_driver smsc_ircc_pnp_driver;
405#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407/*******************************************************************************
408 *
409 *
410 * SMSC-ircc stuff
411 *
412 *
413 *******************************************************************************/
414
Bjorn Helgaasd0d4f692007-05-08 00:36:05 -0700415static int __init smsc_ircc_legacy_probe(void)
416{
417 int ret = 0;
418
Bjorn Helgaas7c31d2f2007-06-27 14:09:50 -0700419#ifdef CONFIG_PCI
420 if (smsc_ircc_preconfigure_subsystems(ircc_cfg, ircc_fir, ircc_sir, ircc_dma, ircc_irq) < 0) {
421 /* Ignore errors from preconfiguration */
Joe Perches6c910232014-11-11 13:37:30 -0800422 net_err_ratelimited("%s, Preconfiguration failed !\n",
423 driver_name);
Bjorn Helgaas7c31d2f2007-06-27 14:09:50 -0700424 }
425#endif
426
Bjorn Helgaasd0d4f692007-05-08 00:36:05 -0700427 if (ircc_fir > 0 && ircc_sir > 0) {
Joe Perches6c910232014-11-11 13:37:30 -0800428 net_info_ratelimited(" Overriding FIR address 0x%04x\n",
429 ircc_fir);
430 net_info_ratelimited(" Overriding SIR address 0x%04x\n",
431 ircc_sir);
Bjorn Helgaasd0d4f692007-05-08 00:36:05 -0700432
433 if (smsc_ircc_open(ircc_fir, ircc_sir, ircc_dma, ircc_irq))
434 ret = -ENODEV;
435 } else {
436 ret = -ENODEV;
437
438 /* try user provided configuration register base address */
439 if (ircc_cfg > 0) {
Joe Perches6c910232014-11-11 13:37:30 -0800440 net_info_ratelimited(" Overriding configuration address 0x%04x\n",
441 ircc_cfg);
Bjorn Helgaasd0d4f692007-05-08 00:36:05 -0700442 if (!smsc_superio_fdc(ircc_cfg))
443 ret = 0;
444 if (!smsc_superio_lpc(ircc_cfg))
445 ret = 0;
446 }
447
448 if (smsc_ircc_look_for_chips() > 0)
449 ret = 0;
450 }
451 return ret;
452}
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454/*
455 * Function smsc_ircc_init ()
456 *
457 * Initialize chip. Just try to find out how many chips we are dealing with
458 * and where they are
459 */
460static int __init smsc_ircc_init(void)
461{
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700462 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Joe Perches955a9d202014-11-11 14:44:57 -0800464 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Russell King3ae5eae2005-11-09 22:32:44 +0000466 ret = platform_driver_register(&smsc_ircc_driver);
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700467 if (ret) {
Joe Perches6c910232014-11-11 13:37:30 -0800468 net_err_ratelimited("%s, Can't register driver!\n",
469 driver_name);
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700470 return ret;
471 }
472
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700473 dev_count = 0;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700474
Bjorn Helgaasd0d4f692007-05-08 00:36:05 -0700475 if (smsc_nopnp || !pnp_platform_devices ||
476 ircc_cfg || ircc_fir || ircc_sir ||
477 ircc_dma != DMA_INVAL || ircc_irq != IRQ_INVAL) {
478 ret = smsc_ircc_legacy_probe();
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700479 } else {
Bjorn Helgaasd0d4f692007-05-08 00:36:05 -0700480 if (pnp_register_driver(&smsc_ircc_pnp_driver) == 0)
481 pnp_driver_registered = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700483
Bjorn Helgaasd0d4f692007-05-08 00:36:05 -0700484 if (ret) {
485 if (pnp_driver_registered)
486 pnp_unregister_driver(&smsc_ircc_pnp_driver);
Russell King3ae5eae2005-11-09 22:32:44 +0000487 platform_driver_unregister(&smsc_ircc_driver);
Bjorn Helgaasd0d4f692007-05-08 00:36:05 -0700488 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return ret;
491}
492
Stephen Hemminger6518bbb2009-08-31 19:50:50 +0000493static netdev_tx_t smsc_ircc_net_xmit(struct sk_buff *skb,
494 struct net_device *dev)
Stephen Hemminger02087be2009-03-20 19:35:42 +0000495{
496 struct smsc_ircc_cb *self = netdev_priv(dev);
497
498 if (self->io.speed > 115200)
499 return smsc_ircc_hard_xmit_fir(skb, dev);
500 else
501 return smsc_ircc_hard_xmit_sir(skb, dev);
502}
503
504static const struct net_device_ops smsc_ircc_netdev_ops = {
505 .ndo_open = smsc_ircc_net_open,
506 .ndo_stop = smsc_ircc_net_close,
507 .ndo_do_ioctl = smsc_ircc_net_ioctl,
508 .ndo_start_xmit = smsc_ircc_net_xmit,
509#if SMSC_IRCC2_C_NET_TIMEOUT
510 .ndo_tx_timeout = smsc_ircc_timeout,
511#endif
512};
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514/*
515 * Function smsc_ircc_open (firbase, sirbase, dma, irq)
516 *
517 * Try to open driver instance
518 *
519 */
Bill Pemberton45ac9362012-12-03 09:24:13 -0500520static int smsc_ircc_open(unsigned int fir_base, unsigned int sir_base, u8 dma, u8 irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
522 struct smsc_ircc_cb *self;
523 struct net_device *dev;
524 int err;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700525
Joe Perches955a9d202014-11-11 14:44:57 -0800526 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 err = smsc_ircc_present(fir_base, sir_base);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700529 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 goto err_out;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 err = -ENOMEM;
Dmitry Torokhova956f4c2005-09-06 15:19:20 -0700533 if (dev_count >= ARRAY_SIZE(dev_self)) {
Joe Perches6c910232014-11-11 13:37:30 -0800534 net_warn_ratelimited("%s(), too many devices!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 goto err_out1;
536 }
537
538 /*
539 * Allocate new instance of the driver
540 */
541 dev = alloc_irdadev(sizeof(struct smsc_ircc_cb));
542 if (!dev) {
Joe Perches6c910232014-11-11 13:37:30 -0800543 net_warn_ratelimited("%s() can't allocate net device\n",
544 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 goto err_out1;
546 }
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548#if SMSC_IRCC2_C_NET_TIMEOUT
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700549 dev->watchdog_timeo = HZ * 2; /* Allow enough time for speed change */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550#endif
Stephen Hemminger02087be2009-03-20 19:35:42 +0000551 dev->netdev_ops = &smsc_ircc_netdev_ops;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700552
Dmitry Torokhovda0841a2005-09-06 15:19:23 -0700553 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 self->netdev = dev;
555
556 /* Make ifconfig display some details */
557 dev->base_addr = self->io.fir_base = fir_base;
558 dev->irq = self->io.irq = irq;
559
560 /* Need to store self somewhere */
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700561 dev_self[dev_count] = self;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 spin_lock_init(&self->lock);
563
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700564 self->rx_buff.truesize = SMSC_IRCC2_RX_BUFF_TRUESIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 self->tx_buff.truesize = SMSC_IRCC2_TX_BUFF_TRUESIZE;
566
567 self->rx_buff.head =
Joe Perchesede23fa2013-08-26 22:45:23 -0700568 dma_zalloc_coherent(NULL, self->rx_buff.truesize,
569 &self->rx_buff_dma, GFP_KERNEL);
Joe Perchesd0320f72013-03-14 13:07:21 +0000570 if (self->rx_buff.head == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 goto err_out2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 self->tx_buff.head =
Joe Perchesede23fa2013-08-26 22:45:23 -0700574 dma_zalloc_coherent(NULL, self->tx_buff.truesize,
575 &self->tx_buff_dma, GFP_KERNEL);
Joe Perchesd0320f72013-03-14 13:07:21 +0000576 if (self->tx_buff.head == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 goto err_out3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 self->rx_buff.in_frame = FALSE;
580 self->rx_buff.state = OUTSIDE_FRAME;
581 self->tx_buff.data = self->tx_buff.head;
582 self->rx_buff.data = self->rx_buff.head;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 smsc_ircc_setup_io(self, fir_base, sir_base, dma, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 smsc_ircc_setup_qos(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 smsc_ircc_init_chip(self);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700587
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700588 if (ircc_transceiver > 0 &&
589 ircc_transceiver < SMSC_IRCC2_C_NUMBER_OF_TRANSCEIVERS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 self->transceiver = ircc_transceiver;
591 else
592 smsc_ircc_probe_transceiver(self);
593
594 err = register_netdev(self->netdev);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700595 if (err) {
Joe Perches6c910232014-11-11 13:37:30 -0800596 net_err_ratelimited("%s, Network device registration failed!\n",
597 driver_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 goto err_out4;
599 }
600
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700601 self->pldev = platform_device_register_simple(SMSC_IRCC2_DRIVER_NAME,
602 dev_count, NULL, 0);
603 if (IS_ERR(self->pldev)) {
604 err = PTR_ERR(self->pldev);
605 goto err_out5;
606 }
Russell King3ae5eae2005-11-09 22:32:44 +0000607 platform_set_drvdata(self->pldev, self);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Joe Perches6c910232014-11-11 13:37:30 -0800609 net_info_ratelimited("IrDA: Registered device %s\n", dev->name);
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700610 dev_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
612 return 0;
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700613
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700614 err_out5:
615 unregister_netdev(self->netdev);
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 err_out4:
618 dma_free_coherent(NULL, self->tx_buff.truesize,
619 self->tx_buff.head, self->tx_buff_dma);
620 err_out3:
621 dma_free_coherent(NULL, self->rx_buff.truesize,
622 self->rx_buff.head, self->rx_buff_dma);
623 err_out2:
624 free_netdev(self->netdev);
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -0700625 dev_self[dev_count] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 err_out1:
627 release_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT);
628 release_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT);
629 err_out:
630 return err;
631}
632
633/*
634 * Function smsc_ircc_present(fir_base, sir_base)
635 *
636 * Check the smsc-ircc chip presence
637 *
638 */
639static int smsc_ircc_present(unsigned int fir_base, unsigned int sir_base)
640{
641 unsigned char low, high, chip, config, dma, irq, version;
642
643 if (!request_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT,
644 driver_name)) {
Joe Perches6c910232014-11-11 13:37:30 -0800645 net_warn_ratelimited("%s: can't get fir_base of 0x%03x\n",
646 __func__, fir_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 goto out1;
648 }
649
650 if (!request_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT,
651 driver_name)) {
Joe Perches6c910232014-11-11 13:37:30 -0800652 net_warn_ratelimited("%s: can't get sir_base of 0x%03x\n",
653 __func__, sir_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 goto out2;
655 }
656
657 register_bank(fir_base, 3);
658
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700659 high = inb(fir_base + IRCC_ID_HIGH);
660 low = inb(fir_base + IRCC_ID_LOW);
661 chip = inb(fir_base + IRCC_CHIP_ID);
662 version = inb(fir_base + IRCC_VERSION);
663 config = inb(fir_base + IRCC_INTERFACE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 dma = config & IRCC_INTERFACE_DMA_MASK;
665 irq = (config & IRCC_INTERFACE_IRQ_MASK) >> 4;
666
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700667 if (high != 0x10 || low != 0xb8 || (chip != 0xf1 && chip != 0xf2)) {
Joe Perches6c910232014-11-11 13:37:30 -0800668 net_warn_ratelimited("%s(), addr 0x%04x - no device found!\n",
669 __func__, fir_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 goto out3;
671 }
Joe Perches6c910232014-11-11 13:37:30 -0800672 net_info_ratelimited("SMsC IrDA Controller found\n IrCC version %d.%d, firport 0x%03x, sirport 0x%03x dma=%d, irq=%d\n",
673 chip & 0x0f, version,
674 fir_base, sir_base, dma, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 return 0;
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 out3:
679 release_region(sir_base, SMSC_IRCC2_SIR_CHIP_IO_EXTENT);
680 out2:
681 release_region(fir_base, SMSC_IRCC2_FIR_CHIP_IO_EXTENT);
682 out1:
683 return -ENODEV;
684}
685
686/*
687 * Function smsc_ircc_setup_io(self, fir_base, sir_base, dma, irq)
688 *
689 * Setup I/O
690 *
691 */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700692static void smsc_ircc_setup_io(struct smsc_ircc_cb *self,
693 unsigned int fir_base, unsigned int sir_base,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 u8 dma, u8 irq)
695{
696 unsigned char config, chip_dma, chip_irq;
697
698 register_bank(fir_base, 3);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700699 config = inb(fir_base + IRCC_INTERFACE);
700 chip_dma = config & IRCC_INTERFACE_DMA_MASK;
701 chip_irq = (config & IRCC_INTERFACE_IRQ_MASK) >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 self->io.fir_base = fir_base;
704 self->io.sir_base = sir_base;
705 self->io.fir_ext = SMSC_IRCC2_FIR_CHIP_IO_EXTENT;
706 self->io.sir_ext = SMSC_IRCC2_SIR_CHIP_IO_EXTENT;
707 self->io.fifo_size = SMSC_IRCC2_FIFO_SIZE;
708 self->io.speed = SMSC_IRCC2_C_IRDA_FALLBACK_SPEED;
709
Bjorn Helgaas916f11c2007-05-08 00:36:02 -0700710 if (irq != IRQ_INVAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (irq != chip_irq)
Joe Perches6c910232014-11-11 13:37:30 -0800712 net_info_ratelimited("%s, Overriding IRQ - chip says %d, using %d\n",
713 driver_name, chip_irq, irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 self->io.irq = irq;
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700715 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 self->io.irq = chip_irq;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700717
Bjorn Helgaas916f11c2007-05-08 00:36:02 -0700718 if (dma != DMA_INVAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (dma != chip_dma)
Joe Perches6c910232014-11-11 13:37:30 -0800720 net_info_ratelimited("%s, Overriding DMA - chip says %d, using %d\n",
721 driver_name, chip_dma, dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 self->io.dma = dma;
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700723 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 self->io.dma = chip_dma;
725
726}
727
728/*
729 * Function smsc_ircc_setup_qos(self)
730 *
731 * Setup qos
732 *
733 */
734static void smsc_ircc_setup_qos(struct smsc_ircc_cb *self)
735{
736 /* Initialize QoS for this device */
737 irda_init_max_qos_capabilies(&self->qos);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 self->qos.baud_rate.bits = IR_9600|IR_19200|IR_38400|IR_57600|
740 IR_115200|IR_576000|IR_1152000|(IR_4000000 << 8);
741
742 self->qos.min_turn_time.bits = SMSC_IRCC2_MIN_TURN_TIME;
743 self->qos.window_size.bits = SMSC_IRCC2_WINDOW_SIZE;
744 irda_qos_bits_to_value(&self->qos);
745}
746
747/*
748 * Function smsc_ircc_init_chip(self)
749 *
750 * Init chip
751 *
752 */
753static void smsc_ircc_init_chip(struct smsc_ircc_cb *self)
754{
Dmitry Torokhove812cb52005-10-30 15:00:14 -0800755 int iobase = self->io.fir_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700758 outb(IRCC_MASTER_RESET, iobase + IRCC_MASTER);
759 outb(0x00, iobase + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 register_bank(iobase, 1);
Dmitry Torokhove812cb52005-10-30 15:00:14 -0800762 outb(((inb(iobase + IRCC_SCE_CFGA) & 0x87) | IRCC_CFGA_IRDA_SIR_A),
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700763 iobase + IRCC_SCE_CFGA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765#ifdef smsc_669 /* Uses pin 88/89 for Rx/Tx */
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700766 outb(((inb(iobase + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_COM),
767 iobase + IRCC_SCE_CFGB);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700768#else
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700769 outb(((inb(iobase + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_IR),
770 iobase + IRCC_SCE_CFGB);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700771#endif
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700772 (void) inb(iobase + IRCC_FIFO_THRESHOLD);
773 outb(SMSC_IRCC2_FIFO_THRESHOLD, iobase + IRCC_FIFO_THRESHOLD);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 register_bank(iobase, 4);
Dmitry Torokhove812cb52005-10-30 15:00:14 -0800776 outb((inb(iobase + IRCC_CONTROL) & 0x30), iobase + IRCC_CONTROL);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 register_bank(iobase, 0);
Dmitry Torokhove812cb52005-10-30 15:00:14 -0800779 outb(0, iobase + IRCC_LCR_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781 smsc_ircc_set_sir_speed(self, SMSC_IRCC2_C_IRDA_FALLBACK_SPEED);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /* Power on device */
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700784 outb(0x00, iobase + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
787/*
788 * Function smsc_ircc_net_ioctl (dev, rq, cmd)
789 *
790 * Process IOCTL commands for this device
791 *
792 */
793static int smsc_ircc_net_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
794{
795 struct if_irda_req *irq = (struct if_irda_req *) rq;
796 struct smsc_ircc_cb *self;
797 unsigned long flags;
798 int ret = 0;
799
800 IRDA_ASSERT(dev != NULL, return -1;);
801
Dmitry Torokhovda0841a2005-09-06 15:19:23 -0700802 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 IRDA_ASSERT(self != NULL, return -1;);
805
Joe Perches955a9d202014-11-11 14:44:57 -0800806 pr_debug("%s(), %s, (cmd=0x%X)\n", __func__, dev->name, cmd);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 switch (cmd) {
809 case SIOCSBANDWIDTH: /* Set bandwidth */
810 if (!capable(CAP_NET_ADMIN))
811 ret = -EPERM;
812 else {
813 /* Make sure we are the only one touching
814 * self->io.speed and the hardware - Jean II */
815 spin_lock_irqsave(&self->lock, flags);
816 smsc_ircc_change_speed(self, irq->ifr_baudrate);
817 spin_unlock_irqrestore(&self->lock, flags);
818 }
819 break;
820 case SIOCSMEDIABUSY: /* Set media busy */
821 if (!capable(CAP_NET_ADMIN)) {
822 ret = -EPERM;
823 break;
824 }
825
826 irda_device_set_media_busy(self->netdev, TRUE);
827 break;
828 case SIOCGRECEIVING: /* Check if we are receiving right now */
829 irq->ifr_receiving = smsc_ircc_is_receiving(self);
830 break;
831 #if 0
832 case SIOCSDTRRTS:
833 if (!capable(CAP_NET_ADMIN)) {
834 ret = -EPERM;
835 break;
836 }
837 smsc_ircc_sir_set_dtr_rts(dev, irq->ifr_dtr, irq->ifr_rts);
838 break;
839 #endif
840 default:
841 ret = -EOPNOTSUPP;
842 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 return ret;
845}
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847#if SMSC_IRCC2_C_NET_TIMEOUT
848/*
849 * Function smsc_ircc_timeout (struct net_device *dev)
850 *
851 * The networking timeout management.
852 *
853 */
854
855static void smsc_ircc_timeout(struct net_device *dev)
856{
Dmitry Torokhovda0841a2005-09-06 15:19:23 -0700857 struct smsc_ircc_cb *self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 unsigned long flags;
859
Joe Perches6c910232014-11-11 13:37:30 -0800860 net_warn_ratelimited("%s: transmit timed out, changing speed to: %d\n",
861 dev->name, self->io.speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 spin_lock_irqsave(&self->lock, flags);
863 smsc_ircc_sir_start(self);
864 smsc_ircc_change_speed(self, self->io.speed);
Eric Dumazet1ae5dc32010-05-10 05:01:31 -0700865 dev->trans_start = jiffies; /* prevent tx timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 netif_wake_queue(dev);
867 spin_unlock_irqrestore(&self->lock, flags);
868}
869#endif
870
871/*
872 * Function smsc_ircc_hard_xmit_sir (struct sk_buff *skb, struct net_device *dev)
873 *
874 * Transmits the current frame until FIFO is full, then
875 * waits until the next transmit interrupt, and continues until the
876 * frame is transmitted.
877 */
Stephen Hemminger6518bbb2009-08-31 19:50:50 +0000878static netdev_tx_t smsc_ircc_hard_xmit_sir(struct sk_buff *skb,
879 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
881 struct smsc_ircc_cb *self;
882 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 s32 speed;
884
Joe Perches955a9d202014-11-11 14:44:57 -0800885 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Patrick McHardyec634fe2009-07-05 19:23:38 -0700887 IRDA_ASSERT(dev != NULL, return NETDEV_TX_OK;);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700888
Dmitry Torokhovda0841a2005-09-06 15:19:23 -0700889 self = netdev_priv(dev);
Patrick McHardyec634fe2009-07-05 19:23:38 -0700890 IRDA_ASSERT(self != NULL, return NETDEV_TX_OK;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 netif_stop_queue(dev);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /* Make sure test of self->io.speed & speed change are atomic */
895 spin_lock_irqsave(&self->lock, flags);
896
897 /* Check if we need to change the speed */
898 speed = irda_get_next_speed(skb);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700899 if (speed != self->io.speed && speed != -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /* Check for empty frame */
901 if (!skb->len) {
902 /*
903 * We send frames one by one in SIR mode (no
904 * pipelining), so at this point, if we were sending
905 * a previous frame, we just received the interrupt
906 * telling us it is finished (UART_IIR_THRI).
907 * Therefore, waiting for the transmitter to really
908 * finish draining the fifo won't take too long.
909 * And the interrupt handler is not expected to run.
910 * - Jean II */
911 smsc_ircc_sir_wait_hw_transmitter_finish(self);
912 smsc_ircc_change_speed(self, speed);
913 spin_unlock_irqrestore(&self->lock, flags);
914 dev_kfree_skb(skb);
Patrick McHardyec634fe2009-07-05 19:23:38 -0700915 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700917 self->new_speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 }
919
920 /* Init tx buffer */
921 self->tx_buff.data = self->tx_buff.head;
922
923 /* Copy skb to tx_buff while wrapping, stuffing and making CRC */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700924 self->tx_buff.len = async_wrap_skb(skb, self->tx_buff.data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 self->tx_buff.truesize);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700926
Stephen Hemmingeraf049082009-01-06 10:40:43 -0800927 dev->stats.tx_bytes += self->tx_buff.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 /* Turn on transmit finished interrupt. Will fire immediately! */
Dmitry Torokhov80a90582005-09-06 15:19:21 -0700930 outb(UART_IER_THRI, self->io.sir_base + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 spin_unlock_irqrestore(&self->lock, flags);
933
934 dev_kfree_skb(skb);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700935
Patrick McHardyec634fe2009-07-05 19:23:38 -0700936 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
939/*
940 * Function smsc_ircc_set_fir_speed (self, baud)
941 *
942 * Change the speed of the device
943 *
944 */
945static void smsc_ircc_set_fir_speed(struct smsc_ircc_cb *self, u32 speed)
946{
947 int fir_base, ir_mode, ctrl, fast;
948
949 IRDA_ASSERT(self != NULL, return;);
950 fir_base = self->io.fir_base;
951
952 self->io.speed = speed;
953
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700954 switch (speed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 default:
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700956 case 576000:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 ir_mode = IRCC_CFGA_IRDA_HDLC;
958 ctrl = IRCC_CRC;
959 fast = 0;
Joe Perches955a9d202014-11-11 14:44:57 -0800960 pr_debug("%s(), handling baud of 576000\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 break;
962 case 1152000:
963 ir_mode = IRCC_CFGA_IRDA_HDLC;
964 ctrl = IRCC_1152 | IRCC_CRC;
965 fast = IRCC_LCR_A_FAST | IRCC_LCR_A_GP_DATA;
Joe Perches955a9d202014-11-11 14:44:57 -0800966 pr_debug("%s(), handling baud of 1152000\n",
967 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 break;
969 case 4000000:
970 ir_mode = IRCC_CFGA_IRDA_4PPM;
971 ctrl = IRCC_CRC;
972 fast = IRCC_LCR_A_FAST;
Joe Perches955a9d202014-11-11 14:44:57 -0800973 pr_debug("%s(), handling baud of 4000000\n",
974 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 break;
976 }
977 #if 0
978 Now in tranceiver!
979 /* This causes an interrupt */
980 register_bank(fir_base, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700981 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast, fir_base + IRCC_LCR_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 #endif
Dmitry Torokhov527b6af2005-09-06 15:19:17 -0700983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 register_bank(fir_base, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700985 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 -0700986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 register_bank(fir_base, 4);
Dmitry Torokhov98b77772005-09-06 15:19:19 -0700988 outb((inb(fir_base + IRCC_CONTROL) & 0x30) | ctrl, fir_base + IRCC_CONTROL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
990
991/*
992 * Function smsc_ircc_fir_start(self)
993 *
994 * Change the speed of the device
995 *
996 */
997static void smsc_ircc_fir_start(struct smsc_ircc_cb *self)
998{
999 struct net_device *dev;
1000 int fir_base;
1001
Joe Perches955a9d202014-11-11 14:44:57 -08001002 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 IRDA_ASSERT(self != NULL, return;);
1005 dev = self->netdev;
1006 IRDA_ASSERT(dev != NULL, return;);
1007
1008 fir_base = self->io.fir_base;
1009
1010 /* Reset everything */
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 /* Clear FIFO */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001013 outb(inb(fir_base + IRCC_LCR_A) | IRCC_LCR_A_FIFO_RESET, fir_base + IRCC_LCR_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 /* Enable interrupt */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001016 /*outb(IRCC_IER_ACTIVE_FRAME|IRCC_IER_EOM, fir_base + IRCC_IER);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 register_bank(fir_base, 1);
1019
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001020 /* Select the TX/RX interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021#ifdef SMSC_669 /* Uses pin 88/89 for Rx/Tx */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001022 outb(((inb(fir_base + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_COM),
1023 fir_base + IRCC_SCE_CFGB);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001024#else
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001025 outb(((inb(fir_base + IRCC_SCE_CFGB) & 0x3f) | IRCC_CFGB_MUX_IR),
1026 fir_base + IRCC_SCE_CFGB);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001027#endif
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001028 (void) inb(fir_base + IRCC_FIFO_THRESHOLD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 /* Enable SCE interrupts */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001031 outb(0, fir_base + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 register_bank(fir_base, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001033 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, fir_base + IRCC_IER);
1034 outb(IRCC_MASTER_INT_EN, fir_base + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035}
1036
1037/*
1038 * Function smsc_ircc_fir_stop(self, baud)
1039 *
1040 * Change the speed of the device
1041 *
1042 */
1043static void smsc_ircc_fir_stop(struct smsc_ircc_cb *self)
1044{
1045 int fir_base;
1046
Joe Perches955a9d202014-11-11 14:44:57 -08001047 pr_debug("%s\n", __func__);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 IRDA_ASSERT(self != NULL, return;);
1050
1051 fir_base = self->io.fir_base;
1052 register_bank(fir_base, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001053 /*outb(IRCC_MASTER_RESET, fir_base + IRCC_MASTER);*/
1054 outb(inb(fir_base + IRCC_LCR_B) & IRCC_LCR_B_SIP_ENABLE, fir_base + IRCC_LCR_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
1056
1057
1058/*
1059 * Function smsc_ircc_change_speed(self, baud)
1060 *
1061 * Change the speed of the device
1062 *
1063 * This function *must* be called with spinlock held, because it may
1064 * be called from the irq handler. - Jean II
1065 */
Dmitry Torokhov0fa2f492005-09-06 15:19:24 -07001066static void smsc_ircc_change_speed(struct smsc_ircc_cb *self, u32 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 int last_speed_was_sir;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001070
Joe Perches955a9d202014-11-11 14:44:57 -08001071 pr_debug("%s() changing speed to: %d\n", __func__, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 IRDA_ASSERT(self != NULL, return;);
1074 dev = self->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 last_speed_was_sir = self->io.speed <= SMSC_IRCC2_MAX_SIR_SPEED;
1077
1078 #if 0
1079 /* Temp Hack */
1080 speed= 1152000;
1081 self->io.speed = speed;
1082 last_speed_was_sir = 0;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001083 smsc_ircc_fir_start(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 #endif
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001085
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001086 if (self->io.speed == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 smsc_ircc_sir_start(self);
1088
1089 #if 0
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001090 if (!last_speed_was_sir) speed = self->io.speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 #endif
1092
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001093 if (self->io.speed != speed)
1094 smsc_ircc_set_transceiver_for_speed(self, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 self->io.speed = speed;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001097
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001098 if (speed <= SMSC_IRCC2_MAX_SIR_SPEED) {
1099 if (!last_speed_was_sir) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 smsc_ircc_fir_stop(self);
1101 smsc_ircc_sir_start(self);
1102 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001103 smsc_ircc_set_sir_speed(self, speed);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001104 } else {
1105 if (last_speed_was_sir) {
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001106 #if SMSC_IRCC2_C_SIR_STOP
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 smsc_ircc_sir_stop(self);
1108 #endif
1109 smsc_ircc_fir_start(self);
1110 }
1111 smsc_ircc_set_fir_speed(self, speed);
1112
1113 #if 0
1114 self->tx_buff.len = 10;
1115 self->tx_buff.data = self->tx_buff.head;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001116
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001117 smsc_ircc_dma_xmit(self, 4000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 #endif
1119 /* Be ready for incoming frames */
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001120 smsc_ircc_dma_receive(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 netif_wake_queue(dev);
1124}
1125
1126/*
1127 * Function smsc_ircc_set_sir_speed (self, speed)
1128 *
1129 * Set speed of IrDA port to specified baudrate
1130 *
1131 */
Hannes Eder0e49e642008-12-26 00:03:19 -08001132static void smsc_ircc_set_sir_speed(struct smsc_ircc_cb *self, __u32 speed)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001134 int iobase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 int fcr; /* FIFO control reg */
1136 int lcr; /* Line control reg */
1137 int divisor;
1138
Joe Perches955a9d202014-11-11 14:44:57 -08001139 pr_debug("%s(), Setting speed to: %d\n", __func__, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
1141 IRDA_ASSERT(self != NULL, return;);
1142 iobase = self->io.sir_base;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 /* Update accounting for new speed */
1145 self->io.speed = speed;
1146
1147 /* Turn off interrupts */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001148 outb(0, iobase + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001150 divisor = SMSC_IRCC2_MAX_SIR_SPEED / speed;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001151
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 fcr = UART_FCR_ENABLE_FIFO;
1153
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001154 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 * Use trigger level 1 to avoid 3 ms. timeout delay at 9600 bps, and
1156 * almost 1,7 ms at 19200 bps. At speeds above that we can just forget
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001157 * about this timeout since it will always be fast enough.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001159 fcr |= self->io.speed < 38400 ?
1160 UART_FCR_TRIGGER_1 : UART_FCR_TRIGGER_14;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 /* IrDA ports use 8N1 */
1163 lcr = UART_LCR_WLEN8;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001164
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001165 outb(UART_LCR_DLAB | lcr, iobase + UART_LCR); /* Set DLAB */
1166 outb(divisor & 0xff, iobase + UART_DLL); /* Set speed */
1167 outb(divisor >> 8, iobase + UART_DLM);
1168 outb(lcr, iobase + UART_LCR); /* Set 8N1 */
1169 outb(fcr, iobase + UART_FCR); /* Enable FIFO's */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
1171 /* Turn on interrups */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001172 outb(UART_IER_RLSI | UART_IER_RDI | UART_IER_THRI, iobase + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Joe Perches955a9d202014-11-11 14:44:57 -08001174 pr_debug("%s() speed changed to: %d\n", __func__, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
1177
1178/*
1179 * Function smsc_ircc_hard_xmit_fir (skb, dev)
1180 *
1181 * Transmit the frame!
1182 *
1183 */
Stephen Hemminger6518bbb2009-08-31 19:50:50 +00001184static netdev_tx_t smsc_ircc_hard_xmit_fir(struct sk_buff *skb,
1185 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
1187 struct smsc_ircc_cb *self;
1188 unsigned long flags;
1189 s32 speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 int mtt;
1191
Patrick McHardyec634fe2009-07-05 19:23:38 -07001192 IRDA_ASSERT(dev != NULL, return NETDEV_TX_OK;);
Dmitry Torokhovda0841a2005-09-06 15:19:23 -07001193 self = netdev_priv(dev);
Patrick McHardyec634fe2009-07-05 19:23:38 -07001194 IRDA_ASSERT(self != NULL, return NETDEV_TX_OK;);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 netif_stop_queue(dev);
1197
1198 /* Make sure test of self->io.speed & speed change are atomic */
1199 spin_lock_irqsave(&self->lock, flags);
1200
1201 /* Check if we need to change the speed after this frame */
1202 speed = irda_get_next_speed(skb);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001203 if (speed != self->io.speed && speed != -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 /* Check for empty frame */
1205 if (!skb->len) {
1206 /* Note : you should make sure that speed changes
1207 * are not going to corrupt any outgoing frame.
1208 * Look at nsc-ircc for the gory details - Jean II */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001209 smsc_ircc_change_speed(self, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 spin_unlock_irqrestore(&self->lock, flags);
1211 dev_kfree_skb(skb);
Patrick McHardyec634fe2009-07-05 19:23:38 -07001212 return NETDEV_TX_OK;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001213 }
1214
1215 self->new_speed = speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001217
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -03001218 skb_copy_from_linear_data(skb, self->tx_buff.head, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 self->tx_buff.len = skb->len;
1221 self->tx_buff.data = self->tx_buff.head;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001222
1223 mtt = irda_get_mtt(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (mtt) {
1225 int bofs;
1226
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001227 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 * Compute how many BOFs (STA or PA's) we need to waste the
1229 * min turn time given the speed of the link.
1230 */
1231 bofs = mtt * (self->io.speed / 1000) / 8000;
1232 if (bofs > 4095)
1233 bofs = 4095;
1234
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001235 smsc_ircc_dma_xmit(self, bofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 } else {
1237 /* Transmit frame */
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001238 smsc_ircc_dma_xmit(self, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 spin_unlock_irqrestore(&self->lock, flags);
1242 dev_kfree_skb(skb);
1243
Patrick McHardyec634fe2009-07-05 19:23:38 -07001244 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
1247/*
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001248 * Function smsc_ircc_dma_xmit (self, bofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 *
1250 * Transmit data using DMA
1251 *
1252 */
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001253static void smsc_ircc_dma_xmit(struct smsc_ircc_cb *self, int bofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001255 int iobase = self->io.fir_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 u8 ctrl;
1257
Joe Perches955a9d202014-11-11 14:44:57 -08001258 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259#if 1
1260 /* Disable Rx */
1261 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001262 outb(0x00, iobase + IRCC_LCR_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263#endif
1264 register_bank(iobase, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001265 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1266 iobase + IRCC_SCE_CFGB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 self->io.direction = IO_XMIT;
1269
1270 /* Set BOF additional count for generating the min turn time */
1271 register_bank(iobase, 4);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001272 outb(bofs & 0xff, iobase + IRCC_BOF_COUNT_LO);
1273 ctrl = inb(iobase + IRCC_CONTROL) & 0xf0;
1274 outb(ctrl | ((bofs >> 8) & 0x0f), iobase + IRCC_BOF_COUNT_HI);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
1276 /* Set max Tx frame size */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001277 outb(self->tx_buff.len >> 8, iobase + IRCC_TX_SIZE_HI);
1278 outb(self->tx_buff.len & 0xff, iobase + IRCC_TX_SIZE_LO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 /*outb(UART_MCR_OUT2, self->io.sir_base + UART_MCR);*/
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 /* Enable burst mode chip Tx DMA */
1283 register_bank(iobase, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001284 outb(inb(iobase + IRCC_SCE_CFGB) | IRCC_CFGB_DMA_ENABLE |
1285 IRCC_CFGB_DMA_BURST, iobase + IRCC_SCE_CFGB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 /* Setup DMA controller (must be done after enabling chip DMA) */
1288 irda_setup_dma(self->io.dma, self->tx_buff_dma, self->tx_buff.len,
1289 DMA_TX_MODE);
1290
1291 /* Enable interrupt */
1292
1293 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001294 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
1295 outb(IRCC_MASTER_INT_EN, iobase + IRCC_MASTER);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 /* Enable transmit */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001298 outb(IRCC_LCR_B_SCE_TRANSMIT | IRCC_LCR_B_SIP_ENABLE, iobase + IRCC_LCR_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301/*
1302 * Function smsc_ircc_dma_xmit_complete (self)
1303 *
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001304 * The transfer of a frame in finished. This function will only be called
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 * by the interrupt handler
1306 *
1307 */
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001308static void smsc_ircc_dma_xmit_complete(struct smsc_ircc_cb *self)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001310 int iobase = self->io.fir_base;
1311
Joe Perches955a9d202014-11-11 14:44:57 -08001312 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313#if 0
1314 /* Disable Tx */
1315 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001316 outb(0x00, iobase + IRCC_LCR_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317#endif
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001318 register_bank(iobase, 1);
1319 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1320 iobase + IRCC_SCE_CFGB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 /* Check for underrun! */
1323 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001324 if (inb(iobase + IRCC_LSR) & IRCC_LSR_UNDERRUN) {
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001325 self->netdev->stats.tx_errors++;
1326 self->netdev->stats.tx_fifo_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328 /* Reset error condition */
1329 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001330 outb(IRCC_MASTER_ERROR_RESET, iobase + IRCC_MASTER);
1331 outb(0x00, iobase + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 } else {
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001333 self->netdev->stats.tx_packets++;
1334 self->netdev->stats.tx_bytes += self->tx_buff.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 }
1336
1337 /* Check if it's time to change the speed */
1338 if (self->new_speed) {
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001339 smsc_ircc_change_speed(self, self->new_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 self->new_speed = 0;
1341 }
1342
1343 netif_wake_queue(self->netdev);
1344}
1345
1346/*
1347 * Function smsc_ircc_dma_receive(self)
1348 *
1349 * Get ready for receiving a frame. The device will initiate a DMA
1350 * if it starts to receive a frame.
1351 *
1352 */
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001353static int smsc_ircc_dma_receive(struct smsc_ircc_cb *self)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001355 int iobase = self->io.fir_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356#if 0
1357 /* Turn off chip DMA */
1358 register_bank(iobase, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001359 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1360 iobase + IRCC_SCE_CFGB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361#endif
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 /* Disable Tx */
1364 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001365 outb(0x00, iobase + IRCC_LCR_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 /* Turn off chip DMA */
1368 register_bank(iobase, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001369 outb(inb(iobase + IRCC_SCE_CFGB) & ~IRCC_CFGB_DMA_ENABLE,
1370 iobase + IRCC_SCE_CFGB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 self->io.direction = IO_RECV;
1373 self->rx_buff.data = self->rx_buff.head;
1374
1375 /* Set max Rx frame size */
1376 register_bank(iobase, 4);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001377 outb((2050 >> 8) & 0x0f, iobase + IRCC_RX_SIZE_HI);
1378 outb(2050 & 0xff, iobase + IRCC_RX_SIZE_LO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 /* Setup DMA controller */
1381 irda_setup_dma(self->io.dma, self->rx_buff_dma, self->rx_buff.truesize,
1382 DMA_RX_MODE);
1383
1384 /* Enable burst mode chip Rx DMA */
1385 register_bank(iobase, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001386 outb(inb(iobase + IRCC_SCE_CFGB) | IRCC_CFGB_DMA_ENABLE |
1387 IRCC_CFGB_DMA_BURST, iobase + IRCC_SCE_CFGB);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 /* Enable interrupt */
1390 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001391 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
1392 outb(IRCC_MASTER_INT_EN, iobase + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 /* Enable receiver */
1395 register_bank(iobase, 0);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001396 outb(IRCC_LCR_B_SCE_RECEIVE | IRCC_LCR_B_SIP_ENABLE,
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001397 iobase + IRCC_LCR_B);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return 0;
1400}
1401
1402/*
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001403 * Function smsc_ircc_dma_receive_complete(self)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 *
1405 * Finished with receiving frames
1406 *
1407 */
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001408static void smsc_ircc_dma_receive_complete(struct smsc_ircc_cb *self)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
1410 struct sk_buff *skb;
1411 int len, msgcnt, lsr;
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001412 int iobase = self->io.fir_base;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 register_bank(iobase, 0);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001415
Joe Perches955a9d202014-11-11 14:44:57 -08001416 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417#if 0
1418 /* Disable Rx */
1419 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001420 outb(0x00, iobase + IRCC_LCR_B);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421#endif
1422 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001423 outb(inb(iobase + IRCC_LSAR) & ~IRCC_LSAR_ADDRESS_MASK, iobase + IRCC_LSAR);
1424 lsr= inb(iobase + IRCC_LSR);
1425 msgcnt = inb(iobase + IRCC_LCR_B) & 0x08;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Joe Perches955a9d202014-11-11 14:44:57 -08001427 pr_debug("%s: dma count = %d\n", __func__,
1428 get_dma_residue(self->io.dma));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 len = self->rx_buff.truesize - get_dma_residue(self->io.dma);
1431
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001432 /* Look for errors */
1433 if (lsr & (IRCC_LSR_FRAME_ERROR | IRCC_LSR_CRC_ERROR | IRCC_LSR_SIZE_ERROR)) {
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001434 self->netdev->stats.rx_errors++;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001435 if (lsr & IRCC_LSR_FRAME_ERROR)
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001436 self->netdev->stats.rx_frame_errors++;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001437 if (lsr & IRCC_LSR_CRC_ERROR)
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001438 self->netdev->stats.rx_crc_errors++;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001439 if (lsr & IRCC_LSR_SIZE_ERROR)
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001440 self->netdev->stats.rx_length_errors++;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001441 if (lsr & (IRCC_LSR_UNDERRUN | IRCC_LSR_OVERRUN))
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001442 self->netdev->stats.rx_length_errors++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 return;
1444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001446 /* Remove CRC */
1447 len -= self->io.speed < 4000000 ? 2 : 4;
1448
1449 if (len < 2 || len > 2050) {
Joe Perches6c910232014-11-11 13:37:30 -08001450 net_warn_ratelimited("%s(), bogus len=%d\n", __func__, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 return;
1452 }
Joe Perches955a9d202014-11-11 14:44:57 -08001453 pr_debug("%s: msgcnt = %d, len=%d\n", __func__, msgcnt, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001455 skb = dev_alloc_skb(len + 1);
Joe Perches6c910232014-11-11 13:37:30 -08001456 if (!skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return;
Joe Perches6c910232014-11-11 13:37:30 -08001458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 /* Make sure IP header gets aligned */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001460 skb_reserve(skb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 memcpy(skb_put(skb, len), self->rx_buff.data, len);
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001463 self->netdev->stats.rx_packets++;
1464 self->netdev->stats.rx_bytes += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 skb->dev = self->netdev;
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001467 skb_reset_mac_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 skb->protocol = htons(ETH_P_IRDA);
1469 netif_rx(skb);
1470}
1471
1472/*
1473 * Function smsc_ircc_sir_receive (self)
1474 *
1475 * Receive one frame from the infrared port
1476 *
1477 */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001478static void smsc_ircc_sir_receive(struct smsc_ircc_cb *self)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
1480 int boguscount = 0;
1481 int iobase;
1482
1483 IRDA_ASSERT(self != NULL, return;);
1484
1485 iobase = self->io.sir_base;
1486
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001487 /*
1488 * Receive all characters in Rx FIFO, unwrap and unstuff them.
1489 * async_unwrap_char will deliver all found frames
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 */
1491 do {
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001492 async_unwrap_char(self->netdev, &self->netdev->stats, &self->rx_buff,
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001493 inb(iobase + UART_RX));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 /* Make sure we don't stay here to long */
1496 if (boguscount++ > 32) {
Joe Perches955a9d202014-11-11 14:44:57 -08001497 pr_debug("%s(), breaking!\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 break;
1499 }
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001500 } while (inb(iobase + UART_LSR) & UART_LSR_DR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
1503
1504/*
1505 * Function smsc_ircc_interrupt (irq, dev_id, regs)
1506 *
1507 * An interrupt from the chip has arrived. Time to do some work
1508 *
1509 */
Jeff Garzik28fc1f52007-10-29 05:46:16 -04001510static irqreturn_t smsc_ircc_interrupt(int dummy, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
Jeff Garzik28fc1f52007-10-29 05:46:16 -04001512 struct net_device *dev = dev_id;
1513 struct smsc_ircc_cb *self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 int iobase, iir, lcra, lsr;
1515 irqreturn_t ret = IRQ_NONE;
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 /* Serialise the interrupt handler in various CPUs, stop Tx path */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001518 spin_lock(&self->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
1520 /* Check if we should use the SIR interrupt handler */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001521 if (self->io.speed <= SMSC_IRCC2_MAX_SIR_SPEED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 ret = smsc_ircc_interrupt_sir(dev);
1523 goto irq_ret_unlock;
1524 }
1525
1526 iobase = self->io.fir_base;
1527
1528 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001529 iir = inb(iobase + IRCC_IIR);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001530 if (iir == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 goto irq_ret_unlock;
1532 ret = IRQ_HANDLED;
1533
1534 /* Disable interrupts */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001535 outb(0, iobase + IRCC_IER);
1536 lcra = inb(iobase + IRCC_LCR_A);
1537 lsr = inb(iobase + IRCC_LSR);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001538
Joe Perches955a9d202014-11-11 14:44:57 -08001539 pr_debug("%s(), iir = 0x%02x\n", __func__, iir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541 if (iir & IRCC_IIR_EOM) {
1542 if (self->io.direction == IO_RECV)
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001543 smsc_ircc_dma_receive_complete(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 else
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001545 smsc_ircc_dma_xmit_complete(self);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001546
Dmitry Torokhov80a90582005-09-06 15:19:21 -07001547 smsc_ircc_dma_receive(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
1549
1550 if (iir & IRCC_IIR_ACTIVE_FRAME) {
Harvey Harrisona97a6f12008-07-30 17:20:18 -07001551 /*printk(KERN_WARNING "%s(): Active Frame\n", __func__);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553
1554 /* Enable interrupts again */
1555
1556 register_bank(iobase, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001557 outb(IRCC_IER_ACTIVE_FRAME | IRCC_IER_EOM, iobase + IRCC_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559 irq_ret_unlock:
1560 spin_unlock(&self->lock);
Jeff Garzik28fc1f52007-10-29 05:46:16 -04001561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 return ret;
1563}
1564
1565/*
David Howells7d12e782006-10-05 14:55:46 +01001566 * Function irport_interrupt_sir (irq, dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 *
1568 * Interrupt handler for SIR modes
1569 */
1570static irqreturn_t smsc_ircc_interrupt_sir(struct net_device *dev)
1571{
Dmitry Torokhovda0841a2005-09-06 15:19:23 -07001572 struct smsc_ircc_cb *self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 int boguscount = 0;
1574 int iobase;
1575 int iir, lsr;
1576
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001577 /* Already locked coming here in smsc_ircc_interrupt() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 /*spin_lock(&self->lock);*/
1579
1580 iobase = self->io.sir_base;
1581
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001582 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (iir == 0)
1584 return IRQ_NONE;
1585 while (iir) {
1586 /* Clear interrupt */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001587 lsr = inb(iobase + UART_LSR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
Joe Perches955a9d202014-11-11 14:44:57 -08001589 pr_debug("%s(), iir=%02x, lsr=%02x, iobase=%#x\n",
1590 __func__, iir, lsr, iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 switch (iir) {
1593 case UART_IIR_RLSI:
Joe Perches955a9d202014-11-11 14:44:57 -08001594 pr_debug("%s(), RLSI\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 break;
1596 case UART_IIR_RDI:
1597 /* Receive interrupt */
1598 smsc_ircc_sir_receive(self);
1599 break;
1600 case UART_IIR_THRI:
1601 if (lsr & UART_LSR_THRE)
1602 /* Transmitter ready for data */
1603 smsc_ircc_sir_write_wakeup(self);
1604 break;
1605 default:
Joe Perches955a9d202014-11-11 14:44:57 -08001606 pr_debug("%s(), unhandled IIR=%#x\n",
1607 __func__, iir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 break;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001609 }
1610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 /* Make sure we don't stay here to long */
1612 if (boguscount++ > 100)
1613 break;
1614
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001615 iir = inb(iobase + UART_IIR) & UART_IIR_ID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 }
1617 /*spin_unlock(&self->lock);*/
1618 return IRQ_HANDLED;
1619}
1620
1621
1622#if 0 /* unused */
1623/*
1624 * Function ircc_is_receiving (self)
1625 *
1626 * Return TRUE is we are currently receiving a frame
1627 *
1628 */
1629static int ircc_is_receiving(struct smsc_ircc_cb *self)
1630{
1631 int status = FALSE;
1632 /* int iobase; */
1633
Joe Perches955a9d202014-11-11 14:44:57 -08001634 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 IRDA_ASSERT(self != NULL, return FALSE;);
1637
Joe Perches955a9d202014-11-11 14:44:57 -08001638 pr_debug("%s: dma count = %d\n", __func__,
1639 get_dma_residue(self->io.dma));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 status = (self->rx_buff.state != OUTSIDE_FRAME);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 return status;
1644}
1645#endif /* unused */
1646
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001647static int smsc_ircc_request_irq(struct smsc_ircc_cb *self)
1648{
1649 int error;
1650
1651 error = request_irq(self->io.irq, smsc_ircc_interrupt, 0,
1652 self->netdev->name, self->netdev);
1653 if (error)
Joe Perches955a9d202014-11-11 14:44:57 -08001654 pr_debug("%s(), unable to allocate irq=%d, err=%d\n",
1655 __func__, self->io.irq, error);
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001656
1657 return error;
1658}
1659
1660static void smsc_ircc_start_interrupts(struct smsc_ircc_cb *self)
1661{
1662 unsigned long flags;
1663
1664 spin_lock_irqsave(&self->lock, flags);
1665
1666 self->io.speed = 0;
1667 smsc_ircc_change_speed(self, SMSC_IRCC2_C_IRDA_FALLBACK_SPEED);
1668
1669 spin_unlock_irqrestore(&self->lock, flags);
1670}
1671
1672static void smsc_ircc_stop_interrupts(struct smsc_ircc_cb *self)
1673{
1674 int iobase = self->io.fir_base;
1675 unsigned long flags;
1676
1677 spin_lock_irqsave(&self->lock, flags);
1678
1679 register_bank(iobase, 0);
1680 outb(0, iobase + IRCC_IER);
1681 outb(IRCC_MASTER_RESET, iobase + IRCC_MASTER);
1682 outb(0x00, iobase + IRCC_MASTER);
1683
1684 spin_unlock_irqrestore(&self->lock, flags);
1685}
1686
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688/*
1689 * Function smsc_ircc_net_open (dev)
1690 *
1691 * Start the device
1692 *
1693 */
1694static int smsc_ircc_net_open(struct net_device *dev)
1695{
1696 struct smsc_ircc_cb *self;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 char hwname[16];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Joe Perches955a9d202014-11-11 14:44:57 -08001699 pr_debug("%s\n", __func__);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 IRDA_ASSERT(dev != NULL, return -1;);
Dmitry Torokhovda0841a2005-09-06 15:19:23 -07001702 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 IRDA_ASSERT(self != NULL, return 0;);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001704
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001705 if (self->io.suspended) {
Joe Perches955a9d202014-11-11 14:44:57 -08001706 pr_debug("%s(), device is suspended\n", __func__);
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001707 return -EAGAIN;
1708 }
1709
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001710 if (request_irq(self->io.irq, smsc_ircc_interrupt, 0, dev->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 (void *) dev)) {
Joe Perches955a9d202014-11-11 14:44:57 -08001712 pr_debug("%s(), unable to allocate irq=%d\n",
1713 __func__, self->io.irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 return -EAGAIN;
1715 }
1716
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001717 smsc_ircc_start_interrupts(self);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 /* Give self a hardware name */
1720 /* It would be cool to offer the chip revision here - Jean II */
1721 sprintf(hwname, "SMSC @ 0x%03x", self->io.fir_base);
1722
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001723 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 * Open new IrLAP layer instance, now that everything should be
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001725 * initialized properly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 */
1727 self->irlap = irlap_open(dev, &self->qos, hwname);
1728
1729 /*
1730 * Always allocate the DMA channel after the IRQ,
1731 * and clean up on failure.
1732 */
1733 if (request_dma(self->io.dma, dev->name)) {
1734 smsc_ircc_net_close(dev);
1735
Joe Perches6c910232014-11-11 13:37:30 -08001736 net_warn_ratelimited("%s(), unable to allocate DMA=%d\n",
1737 __func__, self->io.dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return -EAGAIN;
1739 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 netif_start_queue(dev);
1742
1743 return 0;
1744}
1745
1746/*
1747 * Function smsc_ircc_net_close (dev)
1748 *
1749 * Stop the device
1750 *
1751 */
1752static int smsc_ircc_net_close(struct net_device *dev)
1753{
1754 struct smsc_ircc_cb *self;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Joe Perches955a9d202014-11-11 14:44:57 -08001756 pr_debug("%s\n", __func__);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 IRDA_ASSERT(dev != NULL, return -1;);
Dmitry Torokhovda0841a2005-09-06 15:19:23 -07001759 self = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 IRDA_ASSERT(self != NULL, return 0;);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 /* Stop device */
1763 netif_stop_queue(dev);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 /* Stop and remove instance of IrLAP */
1766 if (self->irlap)
1767 irlap_close(self->irlap);
1768 self->irlap = NULL;
1769
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001770 smsc_ircc_stop_interrupts(self);
1771
1772 /* if we are called from smsc_ircc_resume we don't have IRQ reserved */
1773 if (!self->io.suspended)
1774 free_irq(self->io.irq, dev);
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 disable_dma(self->io.dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 free_dma(self->io.dma);
1778
1779 return 0;
1780}
1781
Russell King3ae5eae2005-11-09 22:32:44 +00001782static int smsc_ircc_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783{
Russell King3ae5eae2005-11-09 22:32:44 +00001784 struct smsc_ircc_cb *self = platform_get_drvdata(dev);
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -07001785
Russell King9480e302005-10-28 09:52:56 -07001786 if (!self->io.suspended) {
Joe Perches955a9d202014-11-11 14:44:57 -08001787 pr_debug("%s, Suspending\n", driver_name);
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001788
1789 rtnl_lock();
1790 if (netif_running(self->netdev)) {
1791 netif_device_detach(self->netdev);
1792 smsc_ircc_stop_interrupts(self);
1793 free_irq(self->io.irq, self->netdev);
1794 disable_dma(self->io.dma);
1795 }
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001796 self->io.suspended = 1;
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001797 rtnl_unlock();
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001798 }
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -07001799
1800 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802
Russell King3ae5eae2005-11-09 22:32:44 +00001803static int smsc_ircc_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
Russell King3ae5eae2005-11-09 22:32:44 +00001805 struct smsc_ircc_cb *self = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Russell King9480e302005-10-28 09:52:56 -07001807 if (self->io.suspended) {
Joe Perches955a9d202014-11-11 14:44:57 -08001808 pr_debug("%s, Waking up\n", driver_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001810 rtnl_lock();
1811 smsc_ircc_init_chip(self);
1812 if (netif_running(self->netdev)) {
1813 if (smsc_ircc_request_irq(self)) {
1814 /*
1815 * Don't fail resume process, just kill this
1816 * network interface
1817 */
1818 unregister_netdevice(self->netdev);
1819 } else {
1820 enable_dma(self->io.dma);
1821 smsc_ircc_start_interrupts(self);
1822 netif_device_attach(self->netdev);
1823 }
1824 }
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -07001825 self->io.suspended = 0;
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001826 rtnl_unlock();
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -07001827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return 0;
1829}
1830
1831/*
1832 * Function smsc_ircc_close (self)
1833 *
1834 * Close driver instance
1835 *
1836 */
1837static int __exit smsc_ircc_close(struct smsc_ircc_cb *self)
1838{
Joe Perches955a9d202014-11-11 14:44:57 -08001839 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841 IRDA_ASSERT(self != NULL, return -1;);
1842
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -07001843 platform_device_unregister(self->pldev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
1845 /* Remove netdevice */
1846 unregister_netdev(self->netdev);
1847
Dmitry Torokhove812cb52005-10-30 15:00:14 -08001848 smsc_ircc_stop_interrupts(self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 /* Release the PORTS that this driver is using */
Joe Perches955a9d202014-11-11 14:44:57 -08001851 pr_debug("%s(), releasing 0x%03x\n", __func__,
1852 self->io.fir_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
1854 release_region(self->io.fir_base, self->io.fir_ext);
1855
Joe Perches955a9d202014-11-11 14:44:57 -08001856 pr_debug("%s(), releasing 0x%03x\n", __func__,
1857 self->io.sir_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859 release_region(self->io.sir_base, self->io.sir_ext);
1860
1861 if (self->tx_buff.head)
1862 dma_free_coherent(NULL, self->tx_buff.truesize,
1863 self->tx_buff.head, self->tx_buff_dma);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 if (self->rx_buff.head)
1866 dma_free_coherent(NULL, self->rx_buff.truesize,
1867 self->rx_buff.head, self->rx_buff_dma);
1868
1869 free_netdev(self->netdev);
1870
1871 return 0;
1872}
1873
1874static void __exit smsc_ircc_cleanup(void)
1875{
1876 int i;
1877
Joe Perches955a9d202014-11-11 14:44:57 -08001878 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001880 for (i = 0; i < 2; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 if (dev_self[i])
1882 smsc_ircc_close(dev_self[i]);
1883 }
Dmitry Torokhov6bb3b2c2005-09-06 15:19:22 -07001884
Bjorn Helgaasd0d4f692007-05-08 00:36:05 -07001885 if (pnp_driver_registered)
1886 pnp_unregister_driver(&smsc_ircc_pnp_driver);
1887
Russell King3ae5eae2005-11-09 22:32:44 +00001888 platform_driver_unregister(&smsc_ircc_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889}
1890
1891/*
1892 * Start SIR operations
1893 *
1894 * This function *must* be called with spinlock held, because it may
1895 * be called from the irq handler (via smsc_ircc_change_speed()). - Jean II
1896 */
Hannes Eder0e49e642008-12-26 00:03:19 -08001897static void smsc_ircc_sir_start(struct smsc_ircc_cb *self)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
1899 struct net_device *dev;
1900 int fir_base, sir_base;
1901
Joe Perches955a9d202014-11-11 14:44:57 -08001902 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001904 IRDA_ASSERT(self != NULL, return;);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001905 dev = self->netdev;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001906 IRDA_ASSERT(dev != NULL, return;);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
1908 fir_base = self->io.fir_base;
1909 sir_base = self->io.sir_base;
1910
1911 /* Reset everything */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001912 outb(IRCC_MASTER_RESET, fir_base + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 #if SMSC_IRCC2_C_SIR_STOP
1915 /*smsc_ircc_sir_stop(self);*/
1916 #endif
1917
1918 register_bank(fir_base, 1);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001919 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 -07001920
1921 /* Initialize UART */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001922 outb(UART_LCR_WLEN8, sir_base + UART_LCR); /* Reset DLAB */
1923 outb((UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2), sir_base + UART_MCR);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 /* Turn on interrups */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001926 outb(UART_IER_RLSI | UART_IER_RDI |UART_IER_THRI, sir_base + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Joe Perches955a9d202014-11-11 14:44:57 -08001928 pr_debug("%s() - exit\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001930 outb(0x00, fir_base + IRCC_MASTER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
1932
1933#if SMSC_IRCC2_C_SIR_STOP
1934void smsc_ircc_sir_stop(struct smsc_ircc_cb *self)
1935{
1936 int iobase;
1937
Joe Perches955a9d202014-11-11 14:44:57 -08001938 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 iobase = self->io.sir_base;
1940
1941 /* Reset UART */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001942 outb(0, iobase + UART_MCR);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 /* Turn off interrupts */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001945 outb(0, iobase + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
1947#endif
1948
1949/*
1950 * Function smsc_sir_write_wakeup (self)
1951 *
1952 * Called by the SIR interrupt handler when there's room for more data.
1953 * If we have more packets to send, we send them here.
1954 *
1955 */
1956static void smsc_ircc_sir_write_wakeup(struct smsc_ircc_cb *self)
1957{
1958 int actual = 0;
1959 int iobase;
1960 int fcr;
1961
1962 IRDA_ASSERT(self != NULL, return;);
1963
Joe Perches955a9d202014-11-11 14:44:57 -08001964 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 iobase = self->io.sir_base;
1967
1968 /* Finished with frame? */
1969 if (self->tx_buff.len > 0) {
1970 /* Write data left in transmit buffer */
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001971 actual = smsc_ircc_sir_write(iobase, self->io.fifo_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 self->tx_buff.data, self->tx_buff.len);
1973 self->tx_buff.data += actual;
1974 self->tx_buff.len -= actual;
1975 } else {
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 /*if (self->tx_buff.len ==0) {*/
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07001978
1979 /*
1980 * Now serial buffer is almost free & we can start
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 * transmission of another packet. But first we must check
1982 * if we need to change the speed of the hardware
1983 */
1984 if (self->new_speed) {
Joe Perches955a9d202014-11-11 14:44:57 -08001985 pr_debug("%s(), Changing speed to %d.\n",
1986 __func__, self->new_speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 smsc_ircc_sir_wait_hw_transmitter_finish(self);
1988 smsc_ircc_change_speed(self, self->new_speed);
1989 self->new_speed = 0;
1990 } else {
1991 /* Tell network layer that we want more frames */
1992 netif_wake_queue(self->netdev);
1993 }
Stephen Hemmingeraf049082009-01-06 10:40:43 -08001994 self->netdev->stats.tx_packets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Dmitry Torokhov98b77772005-09-06 15:19:19 -07001996 if (self->io.speed <= 115200) {
1997 /*
1998 * Reset Rx FIFO to make sure that all reflected transmit data
1999 * is discarded. This is needed for half duplex operation
2000 */
2001 fcr = UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR;
2002 fcr |= self->io.speed < 38400 ?
2003 UART_FCR_TRIGGER_1 : UART_FCR_TRIGGER_14;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002005 outb(fcr, iobase + UART_FCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002007 /* Turn on receive interrupts */
2008 outb(UART_IER_RDI, iobase + UART_IER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 }
2010 }
2011}
2012
2013/*
2014 * Function smsc_ircc_sir_write (iobase, fifo_size, buf, len)
2015 *
2016 * Fill Tx FIFO with transmit data
2017 *
2018 */
2019static int smsc_ircc_sir_write(int iobase, int fifo_size, __u8 *buf, int len)
2020{
2021 int actual = 0;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002022
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 /* Tx FIFO should be empty! */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002024 if (!(inb(iobase + UART_LSR) & UART_LSR_THRE)) {
Joe Perches6c910232014-11-11 13:37:30 -08002025 net_warn_ratelimited("%s(), failed, fifo not empty!\n",
2026 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return 0;
2028 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 /* Fill FIFO with current frame */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002031 while (fifo_size-- > 0 && actual < len) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 /* Transmit next byte */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002033 outb(buf[actual], iobase + UART_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 actual++;
2035 }
2036 return actual;
2037}
2038
2039/*
2040 * Function smsc_ircc_is_receiving (self)
2041 *
2042 * Returns true is we are currently receiving data
2043 *
2044 */
2045static int smsc_ircc_is_receiving(struct smsc_ircc_cb *self)
2046{
Eric Dumazet807540b2010-09-23 05:40:09 +00002047 return self->rx_buff.state != OUTSIDE_FRAME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048}
2049
2050
2051/*
2052 * Function smsc_ircc_probe_transceiver(self)
2053 *
2054 * Tries to find the used Transceiver
2055 *
2056 */
2057static void smsc_ircc_probe_transceiver(struct smsc_ircc_cb *self)
2058{
2059 unsigned int i;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 IRDA_ASSERT(self != NULL, return;);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002062
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002063 for (i = 0; smsc_transceivers[i].name != NULL; i++)
2064 if (smsc_transceivers[i].probe(self->io.fir_base)) {
Joe Perches6c910232014-11-11 13:37:30 -08002065 net_info_ratelimited(" %s transceiver found\n",
2066 smsc_transceivers[i].name);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002067 self->transceiver= i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 return;
2069 }
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002070
Joe Perches6c910232014-11-11 13:37:30 -08002071 net_info_ratelimited("No transceiver found. Defaulting to %s\n",
2072 smsc_transceivers[SMSC_IRCC2_C_DEFAULT_TRANSCEIVER].name);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002073
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002074 self->transceiver = SMSC_IRCC2_C_DEFAULT_TRANSCEIVER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075}
2076
2077
2078/*
2079 * Function smsc_ircc_set_transceiver_for_speed(self, speed)
2080 *
2081 * Set the transceiver according to the speed
2082 *
2083 */
2084static void smsc_ircc_set_transceiver_for_speed(struct smsc_ircc_cb *self, u32 speed)
2085{
2086 unsigned int trx;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 trx = self->transceiver;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002089 if (trx > 0)
2090 smsc_transceivers[trx - 1].set_for_speed(self->io.fir_base, speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091}
2092
2093/*
2094 * Function smsc_ircc_wait_hw_transmitter_finish ()
2095 *
2096 * Wait for the real end of HW transmission
2097 *
2098 * The UART is a strict FIFO, and we get called only when we have finished
2099 * pushing data to the FIFO, so the maximum amount of time we must wait
2100 * is only for the FIFO to drain out.
2101 *
2102 * We use a simple calibrated loop. We may need to adjust the loop
2103 * delay (udelay) to balance I/O traffic and latency. And we also need to
2104 * adjust the maximum timeout.
2105 * It would probably be better to wait for the proper interrupt,
2106 * but it doesn't seem to be available.
2107 *
2108 * We can't use jiffies or kernel timers because :
2109 * 1) We are called from the interrupt handler, which disable softirqs,
2110 * so jiffies won't be increased
2111 * 2) Jiffies granularity is usually very coarse (10ms), and we don't
2112 * want to wait that long to detect stuck hardware.
2113 * Jean II
2114 */
2115
2116static void smsc_ircc_sir_wait_hw_transmitter_finish(struct smsc_ircc_cb *self)
2117{
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002118 int iobase = self->io.sir_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 int count = SMSC_IRCC2_HW_TRANSMITTER_TIMEOUT_US;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 /* Calibrated busy loop */
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002122 while (count-- > 0 && !(inb(iobase + UART_LSR) & UART_LSR_TEMT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 udelay(1);
2124
Roel Kluinadbf7f02009-06-05 12:54:44 +02002125 if (count < 0)
Joe Perches955a9d202014-11-11 14:44:57 -08002126 pr_debug("%s(): stuck transmitter\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127}
2128
2129
2130/* PROBING
2131 *
David Brownelld94c77b2006-05-09 15:26:11 -07002132 * REVISIT we can be told about the device by PNP, and should use that info
2133 * instead of probing hardware and creating a platform_device ...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 */
2135
2136static int __init smsc_ircc_look_for_chips(void)
2137{
Dmitry Torokhovb6158d22005-09-06 15:19:20 -07002138 struct smsc_chip_address *address;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002139 char *type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 unsigned int cfg_base, found;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 found = 0;
2143 address = possible_addresses;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002144
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002145 while (address->cfg_base) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 cfg_base = address->cfg_base;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002147
Harvey Harrisona97a6f12008-07-30 17:20:18 -07002148 /*printk(KERN_WARNING "%s(): probing: 0x%02x for: 0x%02x\n", __func__, cfg_base, address->type);*/
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002149
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002150 if (address->type & SMSCSIO_TYPE_FDC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 type = "FDC";
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002152 if (address->type & SMSCSIO_TYPE_FLAT)
2153 if (!smsc_superio_flat(fdc_chips_flat, cfg_base, type))
2154 found++;
2155
2156 if (address->type & SMSCSIO_TYPE_PAGED)
2157 if (!smsc_superio_paged(fdc_chips_paged, cfg_base, type))
2158 found++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 }
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002160 if (address->type & SMSCSIO_TYPE_LPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 type = "LPC";
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002162 if (address->type & SMSCSIO_TYPE_FLAT)
2163 if (!smsc_superio_flat(lpc_chips_flat, cfg_base, type))
2164 found++;
2165
2166 if (address->type & SMSCSIO_TYPE_PAGED)
2167 if (!smsc_superio_paged(lpc_chips_paged, cfg_base, type))
2168 found++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 }
2170 address++;
2171 }
2172 return found;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002173}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175/*
2176 * Function smsc_superio_flat (chip, base, type)
2177 *
2178 * Try to get configuration of a smc SuperIO chip with flat register model
2179 *
2180 */
Dmitry Torokhovb6158d22005-09-06 15:19:20 -07002181static int __init smsc_superio_flat(const struct smsc_chip *chips, unsigned short cfgbase, char *type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182{
2183 unsigned short firbase, sirbase;
2184 u8 mode, dma, irq;
2185 int ret = -ENODEV;
2186
Joe Perches955a9d202014-11-11 14:44:57 -08002187 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002189 if (smsc_ircc_probe(cfgbase, SMSCSIOFLAT_DEVICEID_REG, chips, type) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 return ret;
2191
2192 outb(SMSCSIOFLAT_UARTMODE0C_REG, cfgbase);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002193 mode = inb(cfgbase + 1);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002194
Harvey Harrisona97a6f12008-07-30 17:20:18 -07002195 /*printk(KERN_WARNING "%s(): mode: 0x%02x\n", __func__, mode);*/
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002196
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002197 if (!(mode & SMSCSIOFLAT_UART2MODE_VAL_IRDA))
Joe Perches6c910232014-11-11 13:37:30 -08002198 net_warn_ratelimited("%s(): IrDA not enabled\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199
2200 outb(SMSCSIOFLAT_UART2BASEADDR_REG, cfgbase);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002201 sirbase = inb(cfgbase + 1) << 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002203 /* FIR iobase */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 outb(SMSCSIOFLAT_FIRBASEADDR_REG, cfgbase);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002205 firbase = inb(cfgbase + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207 /* DMA */
2208 outb(SMSCSIOFLAT_FIRDMASELECT_REG, cfgbase);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002209 dma = inb(cfgbase + 1) & SMSCSIOFLAT_FIRDMASELECT_MASK;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 /* IRQ */
2212 outb(SMSCSIOFLAT_UARTIRQSELECT_REG, cfgbase);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002213 irq = inb(cfgbase + 1) & SMSCSIOFLAT_UART2IRQSELECT_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Joe Perches6c910232014-11-11 13:37:30 -08002215 net_info_ratelimited("%s(): fir: 0x%02x, sir: 0x%02x, dma: %02d, irq: %d, mode: 0x%02x\n",
2216 __func__, firbase, sirbase, dma, irq, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002218 if (firbase && smsc_ircc_open(firbase, sirbase, dma, irq) == 0)
2219 ret = 0;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 /* Exit configuration */
2222 outb(SMSCSIO_CFGEXITKEY, cfgbase);
2223
2224 return ret;
2225}
2226
2227/*
2228 * Function smsc_superio_paged (chip, base, type)
2229 *
2230 * Try to get configuration of a smc SuperIO chip with paged register model
2231 *
2232 */
Dmitry Torokhovb6158d22005-09-06 15:19:20 -07002233static int __init smsc_superio_paged(const struct smsc_chip *chips, unsigned short cfg_base, char *type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234{
2235 unsigned short fir_io, sir_io;
2236 int ret = -ENODEV;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002237
Joe Perches955a9d202014-11-11 14:44:57 -08002238 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002240 if (smsc_ircc_probe(cfg_base, 0x20, chips, type) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 return ret;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 /* Select logical device (UART2) */
2244 outb(0x07, cfg_base);
2245 outb(0x05, cfg_base + 1);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002246
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 /* SIR iobase */
2248 outb(0x60, cfg_base);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002249 sir_io = inb(cfg_base + 1) << 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 outb(0x61, cfg_base);
2251 sir_io |= inb(cfg_base + 1);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 /* Read FIR base */
2254 outb(0x62, cfg_base);
2255 fir_io = inb(cfg_base + 1) << 8;
2256 outb(0x63, cfg_base);
2257 fir_io |= inb(cfg_base + 1);
2258 outb(0x2b, cfg_base); /* ??? */
2259
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002260 if (fir_io && smsc_ircc_open(fir_io, sir_io, ircc_dma, ircc_irq) == 0)
2261 ret = 0;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 /* Exit configuration */
2264 outb(SMSCSIO_CFGEXITKEY, cfg_base);
2265
2266 return ret;
2267}
2268
2269
David S. Miller948252c2011-05-31 19:27:48 -07002270static int __init smsc_access(unsigned short cfg_base, unsigned char reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
Joe Perches955a9d202014-11-11 14:44:57 -08002272 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
2274 outb(reg, cfg_base);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002275 return inb(cfg_base) != reg ? -1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276}
2277
David S. Miller948252c2011-05-31 19:27:48 -07002278static 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 -07002279{
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002280 u8 devid, xdevid, rev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Joe Perches955a9d202014-11-11 14:44:57 -08002282 pr_debug("%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
2284 /* Leave configuration */
2285
2286 outb(SMSCSIO_CFGEXITKEY, cfg_base);
2287
2288 if (inb(cfg_base) == SMSCSIO_CFGEXITKEY) /* not a smc superio chip */
2289 return NULL;
2290
2291 outb(reg, cfg_base);
2292
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002293 xdevid = inb(cfg_base + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
2295 /* Enter configuration */
2296
2297 outb(SMSCSIO_CFGACCESSKEY, cfg_base);
2298
2299 #if 0
2300 if (smsc_access(cfg_base,0x55)) /* send second key and check */
2301 return NULL;
2302 #endif
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002303
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 /* probe device ID */
2305
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002306 if (smsc_access(cfg_base, reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 return NULL;
2308
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002309 devid = inb(cfg_base + 1);
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002310
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002311 if (devid == 0 || devid == 0xff) /* typical values for unused port */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 return NULL;
2313
2314 /* probe revision ID */
2315
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002316 if (smsc_access(cfg_base, reg + 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 return NULL;
2318
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002319 rev = inb(cfg_base + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002321 if (rev >= 128) /* i think this will make no sense */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 return NULL;
2323
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002324 if (devid == xdevid) /* protection against false positives */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 return NULL;
2326
2327 /* Check for expected device ID; are there others? */
2328
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002329 while (chip->devid != devid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
2331 chip++;
2332
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002333 if (chip->name == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 return NULL;
2335 }
2336
Joe Perches6c910232014-11-11 13:37:30 -08002337 net_info_ratelimited("found SMC SuperIO Chip (devid=0x%02x rev=%02X base=0x%04x): %s%s\n",
2338 devid, rev, cfg_base, type, chip->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002340 if (chip->rev > rev) {
Joe Perches6c910232014-11-11 13:37:30 -08002341 net_info_ratelimited("Revision higher than expected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 return NULL;
2343 }
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002344
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002345 if (chip->flags & NoIRDA)
Joe Perches6c910232014-11-11 13:37:30 -08002346 net_info_ratelimited("chipset does not support IRDA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
2348 return chip;
2349}
2350
2351static int __init smsc_superio_fdc(unsigned short cfg_base)
2352{
2353 int ret = -1;
2354
2355 if (!request_region(cfg_base, 2, driver_name)) {
Joe Perches6c910232014-11-11 13:37:30 -08002356 net_warn_ratelimited("%s: can't get cfg_base of 0x%03x\n",
2357 __func__, cfg_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 } else {
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002359 if (!smsc_superio_flat(fdc_chips_flat, cfg_base, "FDC") ||
2360 !smsc_superio_paged(fdc_chips_paged, cfg_base, "FDC"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 ret = 0;
2362
2363 release_region(cfg_base, 2);
2364 }
2365
2366 return ret;
2367}
2368
2369static int __init smsc_superio_lpc(unsigned short cfg_base)
2370{
2371 int ret = -1;
2372
2373 if (!request_region(cfg_base, 2, driver_name)) {
Joe Perches6c910232014-11-11 13:37:30 -08002374 net_warn_ratelimited("%s: can't get cfg_base of 0x%03x\n",
2375 __func__, cfg_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 } else {
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002377 if (!smsc_superio_flat(lpc_chips_flat, cfg_base, "LPC") ||
2378 !smsc_superio_paged(lpc_chips_paged, cfg_base, "LPC"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 ret = 0;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 release_region(cfg_base, 2);
2382 }
2383 return ret;
2384}
2385
Linus Walleijc1e14a62006-04-05 22:33:59 -07002386/*
2387 * Look for some specific subsystem setups that need
2388 * pre-configuration not properly done by the BIOS (especially laptops)
2389 * This code is based in part on smcinit.c, tosh1800-smcinit.c
2390 * and tosh2450-smcinit.c. The table lists the device entries
Linus Walleij08d09992006-04-14 16:03:33 -07002391 * for ISA bridges with an LPC (Low Pin Count) controller which
2392 * handles the communication with the SMSC device. After the LPC
2393 * controller is initialized through PCI, the SMSC device is initialized
2394 * through a dedicated port in the ISA port-mapped I/O area, this latter
2395 * area is used to configure the SMSC device with default
2396 * SIR and FIR I/O ports, DMA and IRQ. Different vendors have
2397 * used different sets of parameters and different control port
2398 * addresses making a subsystem device table necessary.
Linus Walleijc1e14a62006-04-05 22:33:59 -07002399 */
2400#ifdef CONFIG_PCI
David S. Miller948252c2011-05-31 19:27:48 -07002401static struct smsc_ircc_subsystem_configuration subsystem_configurations[] __initdata = {
Linus Walleij (LD/EAB895de092006-09-27 22:49:23 -07002402 /*
2403 * Subsystems needing entries:
2404 * 0x10b9:0x1533 0x103c:0x0850 HP nx9010 family
2405 * 0x10b9:0x1533 0x0e11:0x005a Compaq nc4000 family
2406 * 0x8086:0x24cc 0x0e11:0x002a HP nx9000 family
2407 */
2408 {
2409 /* Guessed entry */
Jon Mason5ee5a072011-08-03 06:42:42 +00002410 .vendor = PCI_VENDOR_ID_INTEL, /* Intel 82801DBM LPC bridge */
Linus Walleij (LD/EAB895de092006-09-27 22:49:23 -07002411 .device = 0x24cc,
2412 .subvendor = 0x103c,
2413 .subdevice = 0x08bc,
2414 .sir_io = 0x02f8,
2415 .fir_io = 0x0130,
2416 .fir_irq = 0x05,
2417 .fir_dma = 0x03,
2418 .cfg_base = 0x004e,
2419 .preconfigure = preconfigure_through_82801,
2420 .name = "HP nx5000 family",
2421 },
Linus Walleijc1e14a62006-04-05 22:33:59 -07002422 {
Jon Mason5ee5a072011-08-03 06:42:42 +00002423 .vendor = PCI_VENDOR_ID_INTEL, /* Intel 82801DBM LPC bridge */
Linus Walleijc1e14a62006-04-05 22:33:59 -07002424 .device = 0x24cc,
2425 .subvendor = 0x103c,
2426 .subdevice = 0x088c,
Linus Walleij08d09992006-04-14 16:03:33 -07002427 /* Quite certain these are the same for nc8000 as for nc6000 */
2428 .sir_io = 0x02f8,
Linus Walleijc1e14a62006-04-05 22:33:59 -07002429 .fir_io = 0x0130,
Linus Walleij08d09992006-04-14 16:03:33 -07002430 .fir_irq = 0x05,
Linus Walleijc1e14a62006-04-05 22:33:59 -07002431 .fir_dma = 0x03,
2432 .cfg_base = 0x004e,
2433 .preconfigure = preconfigure_through_82801,
Linus Walleij (LD/EAB895de092006-09-27 22:49:23 -07002434 .name = "HP nc8000 family",
Linus Walleijc1e14a62006-04-05 22:33:59 -07002435 },
2436 {
Jon Mason5ee5a072011-08-03 06:42:42 +00002437 .vendor = PCI_VENDOR_ID_INTEL, /* Intel 82801DBM LPC bridge */
Linus Walleijc1e14a62006-04-05 22:33:59 -07002438 .device = 0x24cc,
2439 .subvendor = 0x103c,
2440 .subdevice = 0x0890,
2441 .sir_io = 0x02f8,
2442 .fir_io = 0x0130,
Linus Walleij08d09992006-04-14 16:03:33 -07002443 .fir_irq = 0x05,
Linus Walleijc1e14a62006-04-05 22:33:59 -07002444 .fir_dma = 0x03,
2445 .cfg_base = 0x004e,
2446 .preconfigure = preconfigure_through_82801,
Linus Walleij (LD/EAB895de092006-09-27 22:49:23 -07002447 .name = "HP nc6000 family",
2448 },
2449 {
Jon Mason5ee5a072011-08-03 06:42:42 +00002450 .vendor = PCI_VENDOR_ID_INTEL, /* Intel 82801DBM LPC bridge */
Linus Walleij (LD/EAB895de092006-09-27 22:49:23 -07002451 .device = 0x24cc,
2452 .subvendor = 0x0e11,
2453 .subdevice = 0x0860,
2454 /* I assume these are the same for x1000 as for the others */
2455 .sir_io = 0x02e8,
2456 .fir_io = 0x02f8,
2457 .fir_irq = 0x07,
2458 .fir_dma = 0x03,
2459 .cfg_base = 0x002e,
2460 .preconfigure = preconfigure_through_82801,
2461 .name = "Compaq x1000 family",
Linus Walleijc1e14a62006-04-05 22:33:59 -07002462 },
2463 {
Linus Walleij08d09992006-04-14 16:03:33 -07002464 /* Intel 82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge */
Jon Mason5ee5a072011-08-03 06:42:42 +00002465 .vendor = PCI_VENDOR_ID_INTEL,
Linus Walleijc1e14a62006-04-05 22:33:59 -07002466 .device = 0x24c0,
2467 .subvendor = 0x1179,
Linus Walleij08d09992006-04-14 16:03:33 -07002468 .subdevice = 0xffff, /* 0xffff is "any" */
Linus Walleijc1e14a62006-04-05 22:33:59 -07002469 .sir_io = 0x03f8,
2470 .fir_io = 0x0130,
2471 .fir_irq = 0x07,
2472 .fir_dma = 0x01,
2473 .cfg_base = 0x002e,
2474 .preconfigure = preconfigure_through_82801,
Linus Walleij08d09992006-04-14 16:03:33 -07002475 .name = "Toshiba laptop with Intel 82801DB/DBL LPC bridge",
Linus Walleijc1e14a62006-04-05 22:33:59 -07002476 },
2477 {
Jon Mason5ee5a072011-08-03 06:42:42 +00002478 .vendor = PCI_VENDOR_ID_INTEL, /* Intel 82801CAM ISA bridge */
Linus Walleij08d09992006-04-14 16:03:33 -07002479 .device = 0x248c,
Linus Walleijc1e14a62006-04-05 22:33:59 -07002480 .subvendor = 0x1179,
Linus Walleij08d09992006-04-14 16:03:33 -07002481 .subdevice = 0xffff, /* 0xffff is "any" */
Linus Walleijc1e14a62006-04-05 22:33:59 -07002482 .sir_io = 0x03f8,
2483 .fir_io = 0x0130,
2484 .fir_irq = 0x03,
2485 .fir_dma = 0x03,
2486 .cfg_base = 0x002e,
2487 .preconfigure = preconfigure_through_82801,
Linus Walleij08d09992006-04-14 16:03:33 -07002488 .name = "Toshiba laptop with Intel 82801CAM ISA bridge",
Linus Walleijc1e14a62006-04-05 22:33:59 -07002489 },
2490 {
Linus Walleij08d09992006-04-14 16:03:33 -07002491 /* 82801DBM (ICH4-M) LPC Interface Bridge */
Jon Mason5ee5a072011-08-03 06:42:42 +00002492 .vendor = PCI_VENDOR_ID_INTEL,
Linus Walleij08d09992006-04-14 16:03:33 -07002493 .device = 0x24cc,
2494 .subvendor = 0x1179,
2495 .subdevice = 0xffff, /* 0xffff is "any" */
2496 .sir_io = 0x03f8,
2497 .fir_io = 0x0130,
2498 .fir_irq = 0x03,
2499 .fir_dma = 0x03,
2500 .cfg_base = 0x002e,
2501 .preconfigure = preconfigure_through_82801,
2502 .name = "Toshiba laptop with Intel 8281DBM LPC bridge",
2503 },
2504 {
2505 /* ALi M1533/M1535 PCI to ISA Bridge [Aladdin IV/V/V+] */
Jon Mason5ee5a072011-08-03 06:42:42 +00002506 .vendor = PCI_VENDOR_ID_AL,
Linus Walleijc1e14a62006-04-05 22:33:59 -07002507 .device = 0x1533,
2508 .subvendor = 0x1179,
Linus Walleij08d09992006-04-14 16:03:33 -07002509 .subdevice = 0xffff, /* 0xffff is "any" */
Linus Walleijc1e14a62006-04-05 22:33:59 -07002510 .sir_io = 0x02e8,
2511 .fir_io = 0x02f8,
2512 .fir_irq = 0x07,
2513 .fir_dma = 0x03,
2514 .cfg_base = 0x002e,
2515 .preconfigure = preconfigure_through_ali,
Linus Walleij08d09992006-04-14 16:03:33 -07002516 .name = "Toshiba laptop with ALi ISA bridge",
Linus Walleijc1e14a62006-04-05 22:33:59 -07002517 },
2518 { } // Terminator
2519};
2520
2521
2522/*
Linus Walleij08d09992006-04-14 16:03:33 -07002523 * This sets up the basic SMSC parameters
2524 * (FIR port, SIR port, FIR DMA, FIR IRQ)
Linus Walleijc1e14a62006-04-05 22:33:59 -07002525 * through the chip configuration port.
2526 */
David S. Miller948252c2011-05-31 19:27:48 -07002527static int __init preconfigure_smsc_chip(struct
Linus Walleij08d09992006-04-14 16:03:33 -07002528 smsc_ircc_subsystem_configuration
2529 *conf)
Linus Walleijc1e14a62006-04-05 22:33:59 -07002530{
2531 unsigned short iobase = conf->cfg_base;
2532 unsigned char tmpbyte;
2533
2534 outb(LPC47N227_CFGACCESSKEY, iobase); // enter configuration state
2535 outb(SMSCSIOFLAT_DEVICEID_REG, iobase); // set for device ID
2536 tmpbyte = inb(iobase +1); // Read device ID
Joe Perches955a9d202014-11-11 14:44:57 -08002537 pr_debug("Detected Chip id: 0x%02x, setting up registers...\n",
2538 tmpbyte);
Linus Walleijc1e14a62006-04-05 22:33:59 -07002539
2540 /* Disable UART1 and set up SIR I/O port */
2541 outb(0x24, iobase); // select CR24 - UART1 base addr
2542 outb(0x00, iobase + 1); // disable UART1
2543 outb(SMSCSIOFLAT_UART2BASEADDR_REG, iobase); // select CR25 - UART2 base addr
2544 outb( (conf->sir_io >> 2), iobase + 1); // bits 2-9 of 0x3f8
2545 tmpbyte = inb(iobase + 1);
2546 if (tmpbyte != (conf->sir_io >> 2) ) {
Joe Perches6c910232014-11-11 13:37:30 -08002547 net_warn_ratelimited("ERROR: could not configure SIR ioport\n");
2548 net_warn_ratelimited("Try to supply ircc_cfg argument\n");
Linus Walleijc1e14a62006-04-05 22:33:59 -07002549 return -ENXIO;
2550 }
2551
2552 /* Set up FIR IRQ channel for UART2 */
2553 outb(SMSCSIOFLAT_UARTIRQSELECT_REG, iobase); // select CR28 - UART1,2 IRQ select
2554 tmpbyte = inb(iobase + 1);
2555 tmpbyte &= SMSCSIOFLAT_UART1IRQSELECT_MASK; // Do not touch the UART1 portion
2556 tmpbyte |= (conf->fir_irq & SMSCSIOFLAT_UART2IRQSELECT_MASK);
2557 outb(tmpbyte, iobase + 1);
2558 tmpbyte = inb(iobase + 1) & SMSCSIOFLAT_UART2IRQSELECT_MASK;
2559 if (tmpbyte != conf->fir_irq) {
Joe Perches6c910232014-11-11 13:37:30 -08002560 net_warn_ratelimited("ERROR: could not configure FIR IRQ channel\n");
Linus Walleijc1e14a62006-04-05 22:33:59 -07002561 return -ENXIO;
2562 }
2563
2564 /* Set up FIR I/O port */
2565 outb(SMSCSIOFLAT_FIRBASEADDR_REG, iobase); // CR2B - SCE (FIR) base addr
2566 outb((conf->fir_io >> 3), iobase + 1);
2567 tmpbyte = inb(iobase + 1);
2568 if (tmpbyte != (conf->fir_io >> 3) ) {
Joe Perches6c910232014-11-11 13:37:30 -08002569 net_warn_ratelimited("ERROR: could not configure FIR I/O port\n");
Linus Walleijc1e14a62006-04-05 22:33:59 -07002570 return -ENXIO;
2571 }
2572
2573 /* Set up FIR DMA channel */
2574 outb(SMSCSIOFLAT_FIRDMASELECT_REG, iobase); // CR2C - SCE (FIR) DMA select
2575 outb((conf->fir_dma & LPC47N227_FIRDMASELECT_MASK), iobase + 1); // DMA
2576 tmpbyte = inb(iobase + 1) & LPC47N227_FIRDMASELECT_MASK;
2577 if (tmpbyte != (conf->fir_dma & LPC47N227_FIRDMASELECT_MASK)) {
Joe Perches6c910232014-11-11 13:37:30 -08002578 net_warn_ratelimited("ERROR: could not configure FIR DMA channel\n");
Linus Walleijc1e14a62006-04-05 22:33:59 -07002579 return -ENXIO;
2580 }
2581
2582 outb(SMSCSIOFLAT_UARTMODE0C_REG, iobase); // CR0C - UART mode
2583 tmpbyte = inb(iobase + 1);
Linus Walleij08d09992006-04-14 16:03:33 -07002584 tmpbyte &= ~SMSCSIOFLAT_UART2MODE_MASK |
2585 SMSCSIOFLAT_UART2MODE_VAL_IRDA;
Linus Walleijc1e14a62006-04-05 22:33:59 -07002586 outb(tmpbyte, iobase + 1); // enable IrDA (HPSIR) mode, high speed
2587
2588 outb(LPC47N227_APMBOOTDRIVE_REG, iobase); // CR07 - Auto Pwr Mgt/boot drive sel
2589 tmpbyte = inb(iobase + 1);
2590 outb(tmpbyte | LPC47N227_UART2AUTOPWRDOWN_MASK, iobase + 1); // enable UART2 autopower down
2591
2592 /* This one was not part of tosh1800 */
2593 outb(0x0a, iobase); // CR0a - ecp fifo / ir mux
2594 tmpbyte = inb(iobase + 1);
2595 outb(tmpbyte | 0x40, iobase + 1); // send active device to ir port
2596
2597 outb(LPC47N227_UART12POWER_REG, iobase); // CR02 - UART 1,2 power
2598 tmpbyte = inb(iobase + 1);
2599 outb(tmpbyte | LPC47N227_UART2POWERDOWN_MASK, iobase + 1); // UART2 power up mode, UART1 power down
2600
2601 outb(LPC47N227_FDCPOWERVALIDCONF_REG, iobase); // CR00 - FDC Power/valid config cycle
2602 tmpbyte = inb(iobase + 1);
2603 outb(tmpbyte | LPC47N227_VALID_MASK, iobase + 1); // valid config cycle done
2604
2605 outb(LPC47N227_CFGEXITKEY, iobase); // Exit configuration
2606
2607 return 0;
2608}
2609
Linus Walleij08d09992006-04-14 16:03:33 -07002610/* 82801CAM generic registers */
Linus Walleijc1e14a62006-04-05 22:33:59 -07002611#define VID 0x00
2612#define DID 0x02
Linus Walleij08d09992006-04-14 16:03:33 -07002613#define PIRQ_A_D_ROUT 0x60
2614#define SIRQ_CNTL 0x64
2615#define PIRQ_E_H_ROUT 0x68
Linus Walleijc1e14a62006-04-05 22:33:59 -07002616#define PCI_DMA_C 0x90
Linus Walleij08d09992006-04-14 16:03:33 -07002617/* LPC-specific registers */
Linus Walleijc1e14a62006-04-05 22:33:59 -07002618#define COM_DEC 0xe0
Linus Walleij08d09992006-04-14 16:03:33 -07002619#define GEN1_DEC 0xe4
Linus Walleijc1e14a62006-04-05 22:33:59 -07002620#define LPC_EN 0xe6
2621#define GEN2_DEC 0xec
2622/*
Linus Walleij08d09992006-04-14 16:03:33 -07002623 * Sets up the I/O range using the 82801CAM ISA bridge, 82801DBM LPC bridge
2624 * or Intel 82801DB/DBL (ICH4/ICH4-L) LPC Interface Bridge.
2625 * They all work the same way!
Linus Walleijc1e14a62006-04-05 22:33:59 -07002626 */
David S. Miller948252c2011-05-31 19:27:48 -07002627static int __init preconfigure_through_82801(struct pci_dev *dev,
Linus Walleij08d09992006-04-14 16:03:33 -07002628 struct
2629 smsc_ircc_subsystem_configuration
2630 *conf)
Linus Walleijc1e14a62006-04-05 22:33:59 -07002631{
2632 unsigned short tmpword;
Linus Walleij08d09992006-04-14 16:03:33 -07002633 unsigned char tmpbyte;
Linus Walleijc1e14a62006-04-05 22:33:59 -07002634
Joe Perches6c910232014-11-11 13:37:30 -08002635 net_info_ratelimited("Setting up Intel 82801 controller and SMSC device\n");
Linus Walleij08d09992006-04-14 16:03:33 -07002636 /*
2637 * Select the range for the COMA COM port (SIR)
2638 * Register COM_DEC:
2639 * Bit 7: reserved
2640 * Bit 6-4, COMB decode range
2641 * Bit 3: reserved
2642 * Bit 2-0, COMA decode range
2643 *
2644 * Decode ranges:
2645 * 000 = 0x3f8-0x3ff (COM1)
2646 * 001 = 0x2f8-0x2ff (COM2)
2647 * 010 = 0x220-0x227
2648 * 011 = 0x228-0x22f
2649 * 100 = 0x238-0x23f
2650 * 101 = 0x2e8-0x2ef (COM4)
2651 * 110 = 0x338-0x33f
2652 * 111 = 0x3e8-0x3ef (COM3)
2653 */
2654 pci_read_config_byte(dev, COM_DEC, &tmpbyte);
2655 tmpbyte &= 0xf8; /* mask COMA bits */
2656 switch(conf->sir_io) {
2657 case 0x3f8:
2658 tmpbyte |= 0x00;
2659 break;
2660 case 0x2f8:
2661 tmpbyte |= 0x01;
2662 break;
2663 case 0x220:
2664 tmpbyte |= 0x02;
2665 break;
2666 case 0x228:
2667 tmpbyte |= 0x03;
2668 break;
2669 case 0x238:
2670 tmpbyte |= 0x04;
2671 break;
2672 case 0x2e8:
2673 tmpbyte |= 0x05;
2674 break;
2675 case 0x338:
2676 tmpbyte |= 0x06;
2677 break;
2678 case 0x3e8:
2679 tmpbyte |= 0x07;
2680 break;
2681 default:
2682 tmpbyte |= 0x01; /* COM2 default */
2683 }
Joe Perches955a9d202014-11-11 14:44:57 -08002684 pr_debug("COM_DEC (write): 0x%02x\n", tmpbyte);
Linus Walleij08d09992006-04-14 16:03:33 -07002685 pci_write_config_byte(dev, COM_DEC, tmpbyte);
Linus Walleijc1e14a62006-04-05 22:33:59 -07002686
Linus Walleij08d09992006-04-14 16:03:33 -07002687 /* Enable Low Pin Count interface */
2688 pci_read_config_word(dev, LPC_EN, &tmpword);
2689 /* These seem to be set up at all times,
2690 * just make sure it is properly set.
2691 */
2692 switch(conf->cfg_base) {
2693 case 0x04e:
2694 tmpword |= 0x2000;
2695 break;
2696 case 0x02e:
2697 tmpword |= 0x1000;
2698 break;
2699 case 0x062:
2700 tmpword |= 0x0800;
2701 break;
2702 case 0x060:
2703 tmpword |= 0x0400;
2704 break;
2705 default:
Joe Perches6c910232014-11-11 13:37:30 -08002706 net_warn_ratelimited("Uncommon I/O base address: 0x%04x\n",
2707 conf->cfg_base);
Linus Walleij08d09992006-04-14 16:03:33 -07002708 break;
2709 }
2710 tmpword &= 0xfffd; /* disable LPC COMB */
2711 tmpword |= 0x0001; /* set bit 0 : enable LPC COMA addr range (GEN2) */
Joe Perches955a9d202014-11-11 14:44:57 -08002712 pr_debug("LPC_EN (write): 0x%04x\n", tmpword);
Linus Walleijc1e14a62006-04-05 22:33:59 -07002713 pci_write_config_word(dev, LPC_EN, tmpword);
2714
Linus Walleij08d09992006-04-14 16:03:33 -07002715 /*
2716 * Configure LPC DMA channel
2717 * PCI_DMA_C bits:
2718 * Bit 15-14: DMA channel 7 select
2719 * Bit 13-12: DMA channel 6 select
2720 * Bit 11-10: DMA channel 5 select
2721 * Bit 9-8: Reserved
2722 * Bit 7-6: DMA channel 3 select
2723 * Bit 5-4: DMA channel 2 select
2724 * Bit 3-2: DMA channel 1 select
2725 * Bit 1-0: DMA channel 0 select
2726 * 00 = Reserved value
2727 * 01 = PC/PCI DMA
2728 * 10 = Reserved value
2729 * 11 = LPC I/F DMA
2730 */
2731 pci_read_config_word(dev, PCI_DMA_C, &tmpword);
2732 switch(conf->fir_dma) {
2733 case 0x07:
2734 tmpword |= 0xc000;
2735 break;
2736 case 0x06:
2737 tmpword |= 0x3000;
2738 break;
2739 case 0x05:
2740 tmpword |= 0x0c00;
2741 break;
2742 case 0x03:
2743 tmpword |= 0x00c0;
2744 break;
2745 case 0x02:
2746 tmpword |= 0x0030;
2747 break;
2748 case 0x01:
2749 tmpword |= 0x000c;
2750 break;
2751 case 0x00:
2752 tmpword |= 0x0003;
2753 break;
2754 default:
2755 break; /* do not change settings */
2756 }
Joe Perches955a9d202014-11-11 14:44:57 -08002757 pr_debug("PCI_DMA_C (write): 0x%04x\n", tmpword);
Linus Walleij08d09992006-04-14 16:03:33 -07002758 pci_write_config_word(dev, PCI_DMA_C, tmpword);
2759
2760 /*
2761 * GEN2_DEC bits:
2762 * Bit 15-4: Generic I/O range
2763 * Bit 3-1: reserved (read as 0)
2764 * Bit 0: enable GEN2 range on LPC I/F
2765 */
2766 tmpword = conf->fir_io & 0xfff8;
2767 tmpword |= 0x0001;
Joe Perches955a9d202014-11-11 14:44:57 -08002768 pr_debug("GEN2_DEC (write): 0x%04x\n", tmpword);
Linus Walleij08d09992006-04-14 16:03:33 -07002769 pci_write_config_word(dev, GEN2_DEC, tmpword);
Linus Walleijc1e14a62006-04-05 22:33:59 -07002770
2771 /* Pre-configure chip */
Linus Walleij08d09992006-04-14 16:03:33 -07002772 return preconfigure_smsc_chip(conf);
2773}
Linus Walleijc1e14a62006-04-05 22:33:59 -07002774
Linus Walleij08d09992006-04-14 16:03:33 -07002775/*
2776 * Pre-configure a certain port on the ALi 1533 bridge.
2777 * This is based on reverse-engineering since ALi does not
2778 * provide any data sheet for the 1533 chip.
2779 */
David S. Miller948252c2011-05-31 19:27:48 -07002780static void __init preconfigure_ali_port(struct pci_dev *dev,
Linus Walleij08d09992006-04-14 16:03:33 -07002781 unsigned short port)
2782{
2783 unsigned char reg;
2784 /* These bits obviously control the different ports */
2785 unsigned char mask;
2786 unsigned char tmpbyte;
2787
2788 switch(port) {
2789 case 0x0130:
2790 case 0x0178:
2791 reg = 0xb0;
2792 mask = 0x80;
2793 break;
2794 case 0x03f8:
2795 reg = 0xb4;
2796 mask = 0x80;
2797 break;
2798 case 0x02f8:
2799 reg = 0xb4;
2800 mask = 0x30;
2801 break;
2802 case 0x02e8:
2803 reg = 0xb4;
2804 mask = 0x08;
2805 break;
2806 default:
Joe Perches6c910232014-11-11 13:37:30 -08002807 net_err_ratelimited("Failed to configure unsupported port on ALi 1533 bridge: 0x%04x\n",
2808 port);
Linus Walleij08d09992006-04-14 16:03:33 -07002809 return;
2810 }
2811
2812 pci_read_config_byte(dev, reg, &tmpbyte);
2813 /* Turn on the right bits */
2814 tmpbyte |= mask;
2815 pci_write_config_byte(dev, reg, tmpbyte);
Joe Perches6c910232014-11-11 13:37:30 -08002816 net_info_ratelimited("Activated ALi 1533 ISA bridge port 0x%04x\n",
2817 port);
Linus Walleijc1e14a62006-04-05 22:33:59 -07002818}
2819
David S. Miller948252c2011-05-31 19:27:48 -07002820static int __init preconfigure_through_ali(struct pci_dev *dev,
Linus Walleij08d09992006-04-14 16:03:33 -07002821 struct
2822 smsc_ircc_subsystem_configuration
2823 *conf)
Linus Walleijc1e14a62006-04-05 22:33:59 -07002824{
Linus Walleij08d09992006-04-14 16:03:33 -07002825 /* Configure the two ports on the ALi 1533 */
2826 preconfigure_ali_port(dev, conf->sir_io);
2827 preconfigure_ali_port(dev, conf->fir_io);
2828
2829 /* Pre-configure chip */
2830 return preconfigure_smsc_chip(conf);
Linus Walleijc1e14a62006-04-05 22:33:59 -07002831}
2832
David S. Miller948252c2011-05-31 19:27:48 -07002833static int __init smsc_ircc_preconfigure_subsystems(unsigned short ircc_cfg,
Linus Walleijc1e14a62006-04-05 22:33:59 -07002834 unsigned short ircc_fir,
2835 unsigned short ircc_sir,
2836 unsigned char ircc_dma,
2837 unsigned char ircc_irq)
2838{
2839 struct pci_dev *dev = NULL;
2840 unsigned short ss_vendor = 0x0000;
2841 unsigned short ss_device = 0x0000;
2842 int ret = 0;
2843
Kulikov Vasiliy2e4e7a92010-07-03 06:04:15 +00002844 for_each_pci_dev(dev) {
David S. Miller948252c2011-05-31 19:27:48 -07002845 struct smsc_ircc_subsystem_configuration *conf;
Linus Walleijc1e14a62006-04-05 22:33:59 -07002846
2847 /*
Linus Walleij08d09992006-04-14 16:03:33 -07002848 * Cache the subsystem vendor/device:
2849 * some manufacturers fail to set this for all components,
2850 * so we save it in case there is just 0x0000 0x0000 on the
2851 * device we want to check.
Linus Walleijc1e14a62006-04-05 22:33:59 -07002852 */
2853 if (dev->subsystem_vendor != 0x0000U) {
2854 ss_vendor = dev->subsystem_vendor;
2855 ss_device = dev->subsystem_device;
2856 }
2857 conf = subsystem_configurations;
2858 for( ; conf->subvendor; conf++) {
2859 if(conf->vendor == dev->vendor &&
2860 conf->device == dev->device &&
Linus Walleij08d09992006-04-14 16:03:33 -07002861 conf->subvendor == ss_vendor &&
2862 /* Sometimes these are cached values */
2863 (conf->subdevice == ss_device ||
2864 conf->subdevice == 0xffff)) {
2865 struct smsc_ircc_subsystem_configuration
2866 tmpconf;
Linus Walleijc1e14a62006-04-05 22:33:59 -07002867
Linus Walleij08d09992006-04-14 16:03:33 -07002868 memcpy(&tmpconf, conf,
2869 sizeof(struct smsc_ircc_subsystem_configuration));
Linus Walleijc1e14a62006-04-05 22:33:59 -07002870
Linus Walleij08d09992006-04-14 16:03:33 -07002871 /*
2872 * Override the default values with anything
2873 * passed in as parameter
2874 */
Linus Walleijc1e14a62006-04-05 22:33:59 -07002875 if (ircc_cfg != 0)
2876 tmpconf.cfg_base = ircc_cfg;
2877 if (ircc_fir != 0)
2878 tmpconf.fir_io = ircc_fir;
2879 if (ircc_sir != 0)
2880 tmpconf.sir_io = ircc_sir;
Bjorn Helgaas916f11c2007-05-08 00:36:02 -07002881 if (ircc_dma != DMA_INVAL)
Linus Walleijc1e14a62006-04-05 22:33:59 -07002882 tmpconf.fir_dma = ircc_dma;
Bjorn Helgaas916f11c2007-05-08 00:36:02 -07002883 if (ircc_irq != IRQ_INVAL)
Linus Walleijc1e14a62006-04-05 22:33:59 -07002884 tmpconf.fir_irq = ircc_irq;
2885
Joe Perches6c910232014-11-11 13:37:30 -08002886 net_info_ratelimited("Detected unconfigured %s SMSC IrDA chip, pre-configuring device\n",
2887 conf->name);
Linus Walleijc1e14a62006-04-05 22:33:59 -07002888 if (conf->preconfigure)
2889 ret = conf->preconfigure(dev, &tmpconf);
2890 else
2891 ret = -ENODEV;
2892 }
2893 }
Linus Walleijc1e14a62006-04-05 22:33:59 -07002894 }
2895
2896 return ret;
2897}
2898#endif // CONFIG_PCI
2899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900/************************************************
2901 *
2902 * Transceivers specific functions
2903 *
2904 ************************************************/
2905
2906
2907/*
2908 * Function smsc_ircc_set_transceiver_smsc_ircc_atc(fir_base, speed)
2909 *
2910 * Program transceiver through smsc-ircc ATC circuitry
2911 *
2912 */
2913
2914static void smsc_ircc_set_transceiver_smsc_ircc_atc(int fir_base, u32 speed)
2915{
2916 unsigned long jiffies_now, jiffies_timeout;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002917 u8 val;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002918
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002919 jiffies_now = jiffies;
2920 jiffies_timeout = jiffies + SMSC_IRCC2_ATC_PROGRAMMING_TIMEOUT_JIFFIES;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002921
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 /* ATC */
2923 register_bank(fir_base, 4);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002924 outb((inb(fir_base + IRCC_ATC) & IRCC_ATC_MASK) | IRCC_ATC_nPROGREADY|IRCC_ATC_ENABLE,
2925 fir_base + IRCC_ATC);
2926
2927 while ((val = (inb(fir_base + IRCC_ATC) & IRCC_ATC_nPROGREADY)) &&
2928 !time_after(jiffies, jiffies_timeout))
2929 /* empty */;
2930
2931 if (val)
Joe Perches6c910232014-11-11 13:37:30 -08002932 net_warn_ratelimited("%s(): ATC: 0x%02x\n",
2933 __func__, inb(fir_base + IRCC_ATC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934}
2935
2936/*
2937 * Function smsc_ircc_probe_transceiver_smsc_ircc_atc(fir_base)
2938 *
2939 * Probe transceiver smsc-ircc ATC circuitry
2940 *
2941 */
2942
2943static int smsc_ircc_probe_transceiver_smsc_ircc_atc(int fir_base)
2944{
2945 return 0;
2946}
2947
2948/*
2949 * Function smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(self, speed)
2950 *
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002951 * Set transceiver
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 *
2953 */
2954
2955static void smsc_ircc_set_transceiver_smsc_ircc_fast_pin_select(int fir_base, u32 speed)
2956{
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002957 u8 fast_mode;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002958
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002959 switch (speed) {
2960 default:
2961 case 576000 :
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002962 fast_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 break;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002964 case 1152000 :
2965 case 4000000 :
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 fast_mode = IRCC_LCR_A_FAST;
2967 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 }
2969 register_bank(fir_base, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002970 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast_mode, fir_base + IRCC_LCR_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971}
2972
2973/*
2974 * Function smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(fir_base)
2975 *
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002976 * Probe transceiver
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 *
2978 */
2979
2980static int smsc_ircc_probe_transceiver_smsc_ircc_fast_pin_select(int fir_base)
2981{
2982 return 0;
2983}
2984
2985/*
2986 * Function smsc_ircc_set_transceiver_toshiba_sat1800(fir_base, speed)
2987 *
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002988 * Set transceiver
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 *
2990 */
2991
2992static void smsc_ircc_set_transceiver_toshiba_sat1800(int fir_base, u32 speed)
2993{
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002994 u8 fast_mode;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002995
Dmitry Torokhov98b77772005-09-06 15:19:19 -07002996 switch (speed) {
2997 default:
2998 case 576000 :
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07002999 fast_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 break;
Dmitry Torokhov98b77772005-09-06 15:19:19 -07003001 case 1152000 :
3002 case 4000000 :
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 fast_mode = /*IRCC_LCR_A_FAST |*/ IRCC_LCR_A_GP_DATA;
3004 break;
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07003005
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 }
3007 /* This causes an interrupt */
3008 register_bank(fir_base, 0);
Dmitry Torokhov98b77772005-09-06 15:19:19 -07003009 outb((inb(fir_base + IRCC_LCR_A) & 0xbf) | fast_mode, fir_base + IRCC_LCR_A);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010}
3011
3012/*
3013 * Function smsc_ircc_probe_transceiver_toshiba_sat1800(fir_base)
3014 *
Dmitry Torokhov527b6af2005-09-06 15:19:17 -07003015 * Probe transceiver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 *
3017 */
3018
3019static int smsc_ircc_probe_transceiver_toshiba_sat1800(int fir_base)
3020{
3021 return 0;
3022}
3023
3024
3025module_init(smsc_ircc_init);
3026module_exit(smsc_ircc_cleanup);