blob: 43e1aed4e4b28c33e3a6054eea55552edc49e3b4 [file] [log] [blame]
Pavel Roskin3a48c4c2005-09-01 20:10:06 -04001/*
2 * Driver for 802.11b cards using RAM-loadable Symbol firmware, such as
Pavel Roskin4ebe2eb2006-04-07 04:10:32 -04003 * Symbol Wireless Networker LA4137, CompactFlash cards by Socket
Pavel Roskin3a48c4c2005-09-01 20:10:06 -04004 * Communications and Intel PRO/Wireless 2011B.
5 *
6 * The driver implements Symbol firmware download. The rest is handled
David Kilroy47445cb2009-02-04 23:05:48 +00007 * in hermes.c and main.c.
Pavel Roskin3a48c4c2005-09-01 20:10:06 -04008 *
9 * Utilities for downloading the Symbol firmware are available at
10 * http://sourceforge.net/projects/orinoco/
11 *
12 * Copyright (C) 2002-2005 Pavel Roskin <proski@gnu.org>
13 * Portions based on orinoco_cs.c:
14 * Copyright (C) David Gibson, Linuxcare Australia
15 * Portions based on Spectrum24tDnld.c from original spectrum24 driver:
16 * Copyright (C) Symbol Technologies.
17 *
David Kilroy47445cb2009-02-04 23:05:48 +000018 * See copyright notice in file main.c.
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040019 */
20
21#define DRIVER_NAME "spectrum_cs"
22#define PFX DRIVER_NAME ": "
23
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040024#include <linux/module.h>
25#include <linux/kernel.h>
26#include <linux/init.h>
Pavel Roskinef846bf2005-09-23 04:18:07 -040027#include <linux/delay.h>
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040028#include <pcmcia/cs_types.h>
29#include <pcmcia/cs.h>
30#include <pcmcia/cistpl.h>
31#include <pcmcia/cisreg.h>
32#include <pcmcia/ds.h>
33
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040034#include "orinoco.h"
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040035
36/********************************************************************/
37/* Module stuff */
38/********************************************************************/
39
40MODULE_AUTHOR("Pavel Roskin <proski@gnu.org>");
41MODULE_DESCRIPTION("Driver for Symbol Spectrum24 Trilogy cards with firmware downloader");
42MODULE_LICENSE("Dual MPL/GPL");
43
44/* Module parameters */
45
46/* Some D-Link cards have buggy CIS. They do work at 5v properly, but
47 * don't have any CIS entry for it. This workaround it... */
48static int ignore_cis_vcc; /* = 0 */
49module_param(ignore_cis_vcc, int, 0);
50MODULE_PARM_DESC(ignore_cis_vcc, "Allow voltage mismatch between card and socket");
51
52/********************************************************************/
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040053/* Data structures */
54/********************************************************************/
55
56/* PCMCIA specific device information (goes in the card field of
57 * struct orinoco_private */
58struct orinoco_pccard {
Dominik Brodowskifd238232006-03-05 10:45:09 +010059 struct pcmcia_device *p_dev;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040060 dev_node_t node;
61};
62
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040063/********************************************************************/
64/* Function prototypes */
65/********************************************************************/
66
Dominik Brodowski15b99ac2006-03-31 17:26:06 +020067static int spectrum_cs_config(struct pcmcia_device *link);
Dominik Brodowskifba395e2006-03-31 17:21:06 +020068static void spectrum_cs_release(struct pcmcia_device *link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040069
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040070/* Constants for the CISREG_CCSR register */
71#define HCR_RUN 0x07 /* run firmware after reset */
72#define HCR_IDLE 0x0E /* don't run firmware after reset */
73#define HCR_MEM16 0x10 /* memory width bit, should be preserved */
74
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040075
76#define CS_CHECK(fn, ret) \
77 do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
78
79/*
80 * Reset the card using configuration registers COR and CCSR.
81 * If IDLE is 1, stop the firmware, so that it can be safely rewritten.
82 */
83static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +020084spectrum_reset(struct pcmcia_device *link, int idle)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040085{
86 int last_ret, last_fn;
87 conf_reg_t reg;
88 u_int save_cor;
89
90 /* Doing it if hardware is gone is guaranteed crash */
Richard Purdiec5ab9642006-08-22 18:55:44 +010091 if (!pcmcia_dev_present(link))
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040092 return -ENODEV;
93
94 /* Save original COR value */
95 reg.Function = 0;
96 reg.Action = CS_READ;
97 reg.Offset = CISREG_COR;
98 CS_CHECK(AccessConfigurationRegister,
Dominik Brodowskifba395e2006-03-31 17:21:06 +020099 pcmcia_access_configuration_register(link, &reg));
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400100 save_cor = reg.Value;
101
102 /* Soft-Reset card */
103 reg.Action = CS_WRITE;
104 reg.Offset = CISREG_COR;
105 reg.Value = (save_cor | COR_SOFT_RESET);
106 CS_CHECK(AccessConfigurationRegister,
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200107 pcmcia_access_configuration_register(link, &reg));
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400108 udelay(1000);
109
110 /* Read CCSR */
111 reg.Action = CS_READ;
112 reg.Offset = CISREG_CCSR;
113 CS_CHECK(AccessConfigurationRegister,
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200114 pcmcia_access_configuration_register(link, &reg));
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400115
116 /*
117 * Start or stop the firmware. Memory width bit should be
118 * preserved from the value we've just read.
119 */
120 reg.Action = CS_WRITE;
121 reg.Offset = CISREG_CCSR;
122 reg.Value = (idle ? HCR_IDLE : HCR_RUN) | (reg.Value & HCR_MEM16);
123 CS_CHECK(AccessConfigurationRegister,
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200124 pcmcia_access_configuration_register(link, &reg));
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400125 udelay(1000);
126
127 /* Restore original COR configuration index */
128 reg.Action = CS_WRITE;
129 reg.Offset = CISREG_COR;
130 reg.Value = (save_cor & ~COR_SOFT_RESET);
131 CS_CHECK(AccessConfigurationRegister,
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200132 pcmcia_access_configuration_register(link, &reg));
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400133 udelay(1000);
134 return 0;
135
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +0300136cs_failed:
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200137 cs_error(link, last_fn, last_ret);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400138 return -ENODEV;
139}
140
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400141/********************************************************************/
142/* Device methods */
143/********************************************************************/
144
145static int
146spectrum_cs_hard_reset(struct orinoco_private *priv)
147{
148 struct orinoco_pccard *card = priv->card;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200149 struct pcmcia_device *link = card->p_dev;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400150
David Kilroy3994d502008-08-21 23:27:54 +0100151 /* Soft reset using COR and HCR */
152 spectrum_reset(link, 0);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400153
154 return 0;
155}
156
David Kilroy3994d502008-08-21 23:27:54 +0100157static int
158spectrum_cs_stop_firmware(struct orinoco_private *priv, int idle)
159{
160 struct orinoco_pccard *card = priv->card;
161 struct pcmcia_device *link = card->p_dev;
162
163 return spectrum_reset(link, idle);
164}
165
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400166/********************************************************************/
167/* PCMCIA stuff */
168/********************************************************************/
169
170/*
171 * This creates an "instance" of the driver, allocating local data
172 * structures for one device. The device is registered with Card
173 * Services.
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +0300174 *
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400175 * The dev_link structure is initialized, but we don't actually
176 * configure the card at this point -- we wait until we receive a card
177 * insertion event. */
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100178static int
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200179spectrum_cs_probe(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400180{
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400181 struct orinoco_private *priv;
182 struct orinoco_pccard *card;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400183
David Kilroya2608362009-06-18 23:21:23 +0100184 priv = alloc_orinocodev(sizeof(*card), &handle_to_dev(link),
185 spectrum_cs_hard_reset,
186 spectrum_cs_stop_firmware);
187 if (!priv)
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100188 return -ENOMEM;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400189 card = priv->card;
190
191 /* Link both structures together */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200192 card->p_dev = link;
David Kilroya2608362009-06-18 23:21:23 +0100193 link->priv = priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400194
195 /* Interrupt setup */
Alan Cox47cbb112008-09-23 13:53:09 +0100196 link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING | IRQ_HANDLE_PRESENT;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400197 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
198 link->irq.Handler = orinoco_interrupt;
David Kilroya2608362009-06-18 23:21:23 +0100199 link->irq.Instance = priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400200
201 /* General socket configuration defaults can go here. In this
202 * client, we assume very little, and rely on the CIS for
203 * almost everything. In most clients, many details (i.e.,
204 * number, sizes, and attributes of IO windows) are fixed by
205 * the nature of the device, and can be hard-wired here. */
206 link->conf.Attributes = 0;
207 link->conf.IntType = INT_MEMORY_AND_IO;
208
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200209 return spectrum_cs_config(link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400210} /* spectrum_cs_attach */
211
212/*
213 * This deletes a driver "instance". The device is de-registered with
214 * Card Services. If it has been released, all local data structures
215 * are freed. Otherwise, the structures will be freed when the device
216 * is released.
217 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200218static void spectrum_cs_detach(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400219{
David Kilroya2608362009-06-18 23:21:23 +0100220 struct orinoco_private *priv = link->priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400221
Pavel Roskine4f4f982006-05-01 02:13:24 -0400222 if (link->dev_node)
David Kilroya2608362009-06-18 23:21:23 +0100223 unregister_netdev(priv->ndev);
Pavel Roskine4f4f982006-05-01 02:13:24 -0400224
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100225 spectrum_cs_release(link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400226
David Kilroya2608362009-06-18 23:21:23 +0100227 free_orinocodev(priv);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400228} /* spectrum_cs_detach */
229
230/*
231 * spectrum_cs_config() is scheduled to run after a CARD_INSERTION
232 * event is received, to configure the PCMCIA socket, and to make the
233 * device available to the system.
234 */
235
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200236static int spectrum_cs_config_check(struct pcmcia_device *p_dev,
237 cistpl_cftable_entry_t *cfg,
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200238 cistpl_cftable_entry_t *dflt,
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200239 unsigned int vcc,
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200240 void *priv_data)
241{
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200242 if (cfg->index == 0)
243 goto next_entry;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200244
245 /* Use power settings for Vcc and Vpp if present */
246 /* Note that the CIS values need to be rescaled */
247 if (cfg->vcc.present & (1 << CISTPL_POWER_VNOM)) {
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200248 if (vcc != cfg->vcc.param[CISTPL_POWER_VNOM] / 10000) {
David Kilroy62d714e2008-12-09 23:05:38 +0000249 DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
250 __func__, vcc,
251 cfg->vcc.param[CISTPL_POWER_VNOM] / 10000);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200252 if (!ignore_cis_vcc)
253 goto next_entry;
254 }
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200255 } else if (dflt->vcc.present & (1 << CISTPL_POWER_VNOM)) {
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200256 if (vcc != dflt->vcc.param[CISTPL_POWER_VNOM] / 10000) {
David Kilroy62d714e2008-12-09 23:05:38 +0000257 DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
258 __func__, vcc,
259 dflt->vcc.param[CISTPL_POWER_VNOM] / 10000);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200260 if (!ignore_cis_vcc)
261 goto next_entry;
262 }
263 }
264
265 if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM))
266 p_dev->conf.Vpp =
267 cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000;
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200268 else if (dflt->vpp1.present & (1 << CISTPL_POWER_VNOM))
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200269 p_dev->conf.Vpp =
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200270 dflt->vpp1.param[CISTPL_POWER_VNOM] / 10000;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200271
272 /* Do we need to allocate an interrupt? */
273 p_dev->conf.Attributes |= CONF_ENABLE_IRQ;
274
275 /* IO window settings */
276 p_dev->io.NumPorts1 = p_dev->io.NumPorts2 = 0;
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200277 if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) {
278 cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200279 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
280 if (!(io->flags & CISTPL_IO_8BIT))
281 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
282 if (!(io->flags & CISTPL_IO_16BIT))
283 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
284 p_dev->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK;
285 p_dev->io.BasePort1 = io->win[0].base;
286 p_dev->io.NumPorts1 = io->win[0].len;
287 if (io->nwin > 1) {
288 p_dev->io.Attributes2 = p_dev->io.Attributes1;
289 p_dev->io.BasePort2 = io->win[1].base;
290 p_dev->io.NumPorts2 = io->win[1].len;
291 }
292
293 /* This reserves IO space but doesn't actually enable it */
294 if (pcmcia_request_io(p_dev, &p_dev->io) != 0)
295 goto next_entry;
296 }
297 return 0;
298
299next_entry:
300 pcmcia_disable_device(p_dev);
301 return -ENODEV;
302};
303
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200304static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200305spectrum_cs_config(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400306{
David Kilroya2608362009-06-18 23:21:23 +0100307 struct orinoco_private *priv = link->priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400308 struct orinoco_pccard *card = priv->card;
David Kilroya2608362009-06-18 23:21:23 +0100309 struct net_device *dev = priv->ndev;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400310 hermes_t *hw = &priv->hw;
311 int last_fn, last_ret;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400312 void __iomem *mem;
313
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400314 /*
315 * In this loop, we scan the CIS for configuration table
316 * entries, each of which describes a valid card
317 * configuration, including voltage, IO window, memory window,
318 * and interrupt settings.
319 *
320 * We make no assumptions about the card to be configured: we
321 * use just the information available in the CIS. In an ideal
322 * world, this would work for any PCMCIA card, but it requires
323 * a complete and accurate CIS. In practice, a driver usually
324 * "knows" most of these things without consulting the CIS,
325 * and most client drivers will only use the CIS to fill in
326 * implementation-defined details.
327 */
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200328 last_ret = pcmcia_loop_config(link, spectrum_cs_config_check, NULL);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200329 if (last_ret) {
330 if (!ignore_cis_vcc)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400331 printk(KERN_ERR PFX "GetNextTuple(): No matching "
332 "CIS configuration. Maybe you need the "
333 "ignore_cis_vcc=1 parameter.\n");
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200334 cs_error(link, RequestIO, last_ret);
335 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400336 }
337
338 /*
339 * Allocate an interrupt line. Note that this does not assign
340 * a handler to the interrupt, unless the 'Handler' member of
341 * the irq structure is initialized.
342 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200343 CS_CHECK(RequestIRQ, pcmcia_request_irq(link, &link->irq));
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400344
345 /* We initialize the hermes structure before completing PCMCIA
346 * configuration just in case the interrupt handler gets
347 * called. */
348 mem = ioport_map(link->io.BasePort1, link->io.NumPorts1);
349 if (!mem)
350 goto cs_failed;
351
352 hermes_struct_init(hw, mem, HERMES_16BIT_REGSPACING);
353
354 /*
355 * This actually configures the PCMCIA socket -- setting up
356 * the I/O windows and the interrupt mapping, and putting the
357 * card and host interface into "Memory and IO" mode.
358 */
359 CS_CHECK(RequestConfiguration,
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200360 pcmcia_request_configuration(link, &link->conf));
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400361
362 /* Ok, we have the configuration, prepare to register the netdev */
363 dev->base_addr = link->io.BasePort1;
364 dev->irq = link->irq.AssignedIRQ;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400365 card->node.major = card->node.minor = 0;
366
David Kilroy3994d502008-08-21 23:27:54 +0100367 /* Reset card */
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +0300368 if (spectrum_cs_hard_reset(priv) != 0)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400369 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400370
David Kilroy8e638262009-06-18 23:21:24 +0100371 /* Initialise the main driver */
372 if (orinoco_init(priv) != 0) {
373 printk(KERN_ERR PFX "orinoco_init() failed\n");
374 goto failed;
375 }
376
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200377 SET_NETDEV_DEV(dev, &handle_to_dev(link));
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400378 /* Tell the stack we exist */
379 if (register_netdev(dev) != 0) {
380 printk(KERN_ERR PFX "register_netdev() failed\n");
381 goto failed;
382 }
383
384 /* At this point, the dev_node_t structure(s) needs to be
Dominik Brodowskifd238232006-03-05 10:45:09 +0100385 * initialized and arranged in a linked list at link->dev_node. */
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400386 strcpy(card->node.dev_name, dev->name);
Dominik Brodowskifd238232006-03-05 10:45:09 +0100387 link->dev_node = &card->node; /* link->dev_node being non-NULL is also
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +0300388 * used to indicate that the
389 * net_device has been registered */
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400390
391 /* Finally, report what we've done */
Pavel Roskin9a568da2006-05-01 02:13:26 -0400392 printk(KERN_DEBUG "%s: " DRIVER_NAME " at %s, irq %d, io "
Kay Sieversfb28ad32008-11-10 13:55:14 -0800393 "0x%04x-0x%04x\n", dev->name, dev_name(dev->dev.parent),
Pavel Roskin9a568da2006-05-01 02:13:26 -0400394 link->irq.AssignedIRQ, link->io.BasePort1,
395 link->io.BasePort1 + link->io.NumPorts1 - 1);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400396
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200397 return 0;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400398
399 cs_failed:
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200400 cs_error(link, last_fn, last_ret);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400401
402 failed:
403 spectrum_cs_release(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200404 return -ENODEV;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400405} /* spectrum_cs_config */
406
407/*
408 * After a card is removed, spectrum_cs_release() will unregister the
409 * device, and release the PCMCIA configuration. If the device is
410 * still open, this will be postponed until it is closed.
411 */
412static void
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200413spectrum_cs_release(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400414{
David Kilroya2608362009-06-18 23:21:23 +0100415 struct orinoco_private *priv = link->priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400416 unsigned long flags;
417
418 /* We're committed to taking the device away now, so mark the
419 * hardware as unavailable */
420 spin_lock_irqsave(&priv->lock, flags);
421 priv->hw_unavailable++;
422 spin_unlock_irqrestore(&priv->lock, flags);
423
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200424 pcmcia_disable_device(link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400425 if (priv->hw.iobase)
426 ioport_unmap(priv->hw.iobase);
427} /* spectrum_cs_release */
428
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100429
430static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200431spectrum_cs_suspend(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100432{
David Kilroya2608362009-06-18 23:21:23 +0100433 struct orinoco_private *priv = link->priv;
434 struct net_device *dev = priv->ndev;
David Kilroyc25bab52008-10-10 22:58:32 +0100435 unsigned long flags;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100436 int err = 0;
437
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100438 /* Mark the device as stopped, to block IO until later */
David Kilroyc25bab52008-10-10 22:58:32 +0100439 spin_lock_irqsave(&priv->lock, flags);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100440
David Kilroya2608362009-06-18 23:21:23 +0100441 err = __orinoco_down(priv);
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100442 if (err)
443 printk(KERN_WARNING "%s: Error %d downing interface\n",
444 dev->name, err);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100445
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100446 netif_device_detach(dev);
447 priv->hw_unavailable++;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100448
David Kilroyc25bab52008-10-10 22:58:32 +0100449 spin_unlock_irqrestore(&priv->lock, flags);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100450
Pavel Roskin6cbaa332006-05-01 02:13:28 -0400451 return err;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100452}
453
454static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200455spectrum_cs_resume(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100456{
David Kilroya2608362009-06-18 23:21:23 +0100457 struct orinoco_private *priv = link->priv;
458 struct net_device *dev = priv->ndev;
David Kilroyac7cafd2008-11-22 10:37:27 +0000459 unsigned long flags;
460 int err;
461
David Kilroya2608362009-06-18 23:21:23 +0100462 err = orinoco_reinit_firmware(priv);
David Kilroyac7cafd2008-11-22 10:37:27 +0000463 if (err) {
464 printk(KERN_ERR "%s: Error %d re-initializing firmware\n",
465 dev->name, err);
466 return -EIO;
467 }
468
469 spin_lock_irqsave(&priv->lock, flags);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100470
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100471 netif_device_attach(dev);
472 priv->hw_unavailable--;
David Kilroyac7cafd2008-11-22 10:37:27 +0000473
474 if (priv->open && !priv->hw_unavailable) {
David Kilroya2608362009-06-18 23:21:23 +0100475 err = __orinoco_up(priv);
David Kilroyac7cafd2008-11-22 10:37:27 +0000476 if (err)
477 printk(KERN_ERR "%s: Error %d restarting card\n",
478 dev->name, err);
479 }
480
481 spin_unlock_irqrestore(&priv->lock, flags);
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100482
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100483 return 0;
484}
485
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400486
487/********************************************************************/
488/* Module initialization */
489/********************************************************************/
490
491/* Can't be declared "const" or the whole __initdata section will
492 * become const */
493static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
494 " (Pavel Roskin <proski@gnu.org>,"
495 " David Gibson <hermes@gibson.dropbear.id.au>, et al)";
496
497static struct pcmcia_device_id spectrum_cs_ids[] = {
Pavel Roskin4ebe2eb2006-04-07 04:10:32 -0400498 PCMCIA_DEVICE_MANF_CARD(0x026c, 0x0001), /* Symbol Spectrum24 LA4137 */
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400499 PCMCIA_DEVICE_MANF_CARD(0x0104, 0x0001), /* Socket Communications CF */
Pavel Roskin9c8a11d2005-09-16 02:18:31 -0400500 PCMCIA_DEVICE_PROD_ID12("Intel", "PRO/Wireless LAN PC Card", 0x816cc815, 0x6fbf459a), /* 2011B, not 2011 */
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400501 PCMCIA_DEVICE_NULL,
502};
503MODULE_DEVICE_TABLE(pcmcia, spectrum_cs_ids);
504
505static struct pcmcia_driver orinoco_driver = {
506 .owner = THIS_MODULE,
507 .drv = {
508 .name = DRIVER_NAME,
509 },
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200510 .probe = spectrum_cs_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100511 .remove = spectrum_cs_detach,
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100512 .suspend = spectrum_cs_suspend,
513 .resume = spectrum_cs_resume,
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400514 .id_table = spectrum_cs_ids,
515};
516
517static int __init
518init_spectrum_cs(void)
519{
520 printk(KERN_DEBUG "%s\n", version);
521
522 return pcmcia_register_driver(&orinoco_driver);
523}
524
525static void __exit
526exit_spectrum_cs(void)
527{
528 pcmcia_unregister_driver(&orinoco_driver);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400529}
530
531module_init(init_spectrum_cs);
532module_exit(exit_spectrum_cs);