blob: c609371d15255dca58cb2d45276bfa0de59bbdcc [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
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040076/*
77 * Reset the card using configuration registers COR and CCSR.
78 * If IDLE is 1, stop the firmware, so that it can be safely rewritten.
79 */
80static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +020081spectrum_reset(struct pcmcia_device *link, int idle)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040082{
Dominik Brodowski2caff142009-10-24 15:53:36 +020083 int ret;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040084 conf_reg_t reg;
85 u_int save_cor;
86
87 /* Doing it if hardware is gone is guaranteed crash */
Richard Purdiec5ab9642006-08-22 18:55:44 +010088 if (!pcmcia_dev_present(link))
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040089 return -ENODEV;
90
91 /* Save original COR value */
92 reg.Function = 0;
93 reg.Action = CS_READ;
94 reg.Offset = CISREG_COR;
Dominik Brodowski2caff142009-10-24 15:53:36 +020095 ret = pcmcia_access_configuration_register(link, &reg);
96 if (ret)
97 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040098 save_cor = reg.Value;
99
100 /* Soft-Reset card */
101 reg.Action = CS_WRITE;
102 reg.Offset = CISREG_COR;
103 reg.Value = (save_cor | COR_SOFT_RESET);
Dominik Brodowski2caff142009-10-24 15:53:36 +0200104 ret = pcmcia_access_configuration_register(link, &reg);
105 if (ret)
106 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400107 udelay(1000);
108
109 /* Read CCSR */
110 reg.Action = CS_READ;
111 reg.Offset = CISREG_CCSR;
Dominik Brodowski2caff142009-10-24 15:53:36 +0200112 ret = pcmcia_access_configuration_register(link, &reg);
113 if (ret)
114 goto failed;
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);
Dominik Brodowski2caff142009-10-24 15:53:36 +0200123 ret = pcmcia_access_configuration_register(link, &reg);
124 if (ret)
125 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400126 udelay(1000);
127
128 /* Restore original COR configuration index */
129 reg.Action = CS_WRITE;
130 reg.Offset = CISREG_COR;
131 reg.Value = (save_cor & ~COR_SOFT_RESET);
Dominik Brodowski2caff142009-10-24 15:53:36 +0200132 ret = pcmcia_access_configuration_register(link, &reg);
133 if (ret)
134 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400135 udelay(1000);
136 return 0;
137
Dominik Brodowski2caff142009-10-24 15:53:36 +0200138failed:
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400139 return -ENODEV;
140}
141
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400142/********************************************************************/
143/* Device methods */
144/********************************************************************/
145
146static int
147spectrum_cs_hard_reset(struct orinoco_private *priv)
148{
149 struct orinoco_pccard *card = priv->card;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200150 struct pcmcia_device *link = card->p_dev;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400151
David Kilroy3994d502008-08-21 23:27:54 +0100152 /* Soft reset using COR and HCR */
153 spectrum_reset(link, 0);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400154
155 return 0;
156}
157
David Kilroy3994d502008-08-21 23:27:54 +0100158static int
159spectrum_cs_stop_firmware(struct orinoco_private *priv, int idle)
160{
161 struct orinoco_pccard *card = priv->card;
162 struct pcmcia_device *link = card->p_dev;
163
164 return spectrum_reset(link, idle);
165}
166
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400167/********************************************************************/
168/* PCMCIA stuff */
169/********************************************************************/
170
171/*
172 * This creates an "instance" of the driver, allocating local data
173 * structures for one device. The device is registered with Card
174 * Services.
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +0300175 *
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400176 * The dev_link structure is initialized, but we don't actually
177 * configure the card at this point -- we wait until we receive a card
178 * insertion event. */
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100179static int
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200180spectrum_cs_probe(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400181{
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400182 struct orinoco_private *priv;
183 struct orinoco_pccard *card;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400184
Dominik Brodowskidd2e5a12009-11-03 10:27:34 +0100185 priv = alloc_orinocodev(sizeof(*card), &link->dev,
David Kilroya2608362009-06-18 23:21:23 +0100186 spectrum_cs_hard_reset,
187 spectrum_cs_stop_firmware);
188 if (!priv)
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100189 return -ENOMEM;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400190 card = priv->card;
191
192 /* Link both structures together */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200193 card->p_dev = link;
David Kilroya2608362009-06-18 23:21:23 +0100194 link->priv = priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400195
196 /* Interrupt setup */
Alan Cox47cbb112008-09-23 13:53:09 +0100197 link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING | IRQ_HANDLE_PRESENT;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400198 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
199 link->irq.Handler = orinoco_interrupt;
David Kilroya2608362009-06-18 23:21:23 +0100200 link->irq.Instance = priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400201
202 /* General socket configuration defaults can go here. In this
203 * client, we assume very little, and rely on the CIS for
204 * almost everything. In most clients, many details (i.e.,
205 * number, sizes, and attributes of IO windows) are fixed by
206 * the nature of the device, and can be hard-wired here. */
207 link->conf.Attributes = 0;
208 link->conf.IntType = INT_MEMORY_AND_IO;
209
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200210 return spectrum_cs_config(link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400211} /* spectrum_cs_attach */
212
213/*
214 * This deletes a driver "instance". The device is de-registered with
215 * Card Services. If it has been released, all local data structures
216 * are freed. Otherwise, the structures will be freed when the device
217 * is released.
218 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200219static void spectrum_cs_detach(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400220{
David Kilroya2608362009-06-18 23:21:23 +0100221 struct orinoco_private *priv = link->priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400222
Pavel Roskine4f4f982006-05-01 02:13:24 -0400223 if (link->dev_node)
David Kilroy53819562009-06-18 23:21:28 +0100224 orinoco_if_del(priv);
Pavel Roskine4f4f982006-05-01 02:13:24 -0400225
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100226 spectrum_cs_release(link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400227
David Kilroya2608362009-06-18 23:21:23 +0100228 free_orinocodev(priv);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400229} /* spectrum_cs_detach */
230
231/*
232 * spectrum_cs_config() is scheduled to run after a CARD_INSERTION
233 * event is received, to configure the PCMCIA socket, and to make the
234 * device available to the system.
235 */
236
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200237static int spectrum_cs_config_check(struct pcmcia_device *p_dev,
238 cistpl_cftable_entry_t *cfg,
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200239 cistpl_cftable_entry_t *dflt,
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200240 unsigned int vcc,
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200241 void *priv_data)
242{
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200243 if (cfg->index == 0)
244 goto next_entry;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200245
246 /* Use power settings for Vcc and Vpp if present */
247 /* Note that the CIS values need to be rescaled */
248 if (cfg->vcc.present & (1 << CISTPL_POWER_VNOM)) {
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200249 if (vcc != cfg->vcc.param[CISTPL_POWER_VNOM] / 10000) {
David Kilroy62d714e2008-12-09 23:05:38 +0000250 DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
251 __func__, vcc,
252 cfg->vcc.param[CISTPL_POWER_VNOM] / 10000);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200253 if (!ignore_cis_vcc)
254 goto next_entry;
255 }
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200256 } else if (dflt->vcc.present & (1 << CISTPL_POWER_VNOM)) {
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200257 if (vcc != dflt->vcc.param[CISTPL_POWER_VNOM] / 10000) {
David Kilroy62d714e2008-12-09 23:05:38 +0000258 DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
259 __func__, vcc,
260 dflt->vcc.param[CISTPL_POWER_VNOM] / 10000);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200261 if (!ignore_cis_vcc)
262 goto next_entry;
263 }
264 }
265
266 if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM))
267 p_dev->conf.Vpp =
268 cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000;
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200269 else if (dflt->vpp1.present & (1 << CISTPL_POWER_VNOM))
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200270 p_dev->conf.Vpp =
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200271 dflt->vpp1.param[CISTPL_POWER_VNOM] / 10000;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200272
273 /* Do we need to allocate an interrupt? */
274 p_dev->conf.Attributes |= CONF_ENABLE_IRQ;
275
276 /* IO window settings */
277 p_dev->io.NumPorts1 = p_dev->io.NumPorts2 = 0;
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200278 if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) {
279 cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200280 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
281 if (!(io->flags & CISTPL_IO_8BIT))
282 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
283 if (!(io->flags & CISTPL_IO_16BIT))
284 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
285 p_dev->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK;
286 p_dev->io.BasePort1 = io->win[0].base;
287 p_dev->io.NumPorts1 = io->win[0].len;
288 if (io->nwin > 1) {
289 p_dev->io.Attributes2 = p_dev->io.Attributes1;
290 p_dev->io.BasePort2 = io->win[1].base;
291 p_dev->io.NumPorts2 = io->win[1].len;
292 }
293
294 /* This reserves IO space but doesn't actually enable it */
295 if (pcmcia_request_io(p_dev, &p_dev->io) != 0)
296 goto next_entry;
297 }
298 return 0;
299
300next_entry:
301 pcmcia_disable_device(p_dev);
302 return -ENODEV;
303};
304
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200305static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200306spectrum_cs_config(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400307{
David Kilroya2608362009-06-18 23:21:23 +0100308 struct orinoco_private *priv = link->priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400309 struct orinoco_pccard *card = priv->card;
310 hermes_t *hw = &priv->hw;
Dominik Brodowski2caff142009-10-24 15:53:36 +0200311 int 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 Brodowski2caff142009-10-24 15:53:36 +0200328 ret = pcmcia_loop_config(link, spectrum_cs_config_check, NULL);
329 if (ret) {
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200330 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 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400335 }
336
337 /*
338 * Allocate an interrupt line. Note that this does not assign
339 * a handler to the interrupt, unless the 'Handler' member of
340 * the irq structure is initialized.
341 */
Dominik Brodowski2caff142009-10-24 15:53:36 +0200342 ret = pcmcia_request_irq(link, &link->irq);
343 if (ret)
344 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400345
346 /* We initialize the hermes structure before completing PCMCIA
347 * configuration just in case the interrupt handler gets
348 * called. */
349 mem = ioport_map(link->io.BasePort1, link->io.NumPorts1);
350 if (!mem)
Dominik Brodowski2caff142009-10-24 15:53:36 +0200351 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400352
353 hermes_struct_init(hw, mem, HERMES_16BIT_REGSPACING);
354
355 /*
356 * This actually configures the PCMCIA socket -- setting up
357 * the I/O windows and the interrupt mapping, and putting the
358 * card and host interface into "Memory and IO" mode.
359 */
Dominik Brodowski2caff142009-10-24 15:53:36 +0200360 ret = pcmcia_request_configuration(link, &link->conf);
361 if (ret)
362 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400363
364 /* Ok, we have the configuration, prepare to register the netdev */
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
David Kilroy53819562009-06-18 23:21:28 +0100377 /* Register an interface with the stack */
378 if (orinoco_if_add(priv, link->io.BasePort1,
379 link->irq.AssignedIRQ) != 0) {
380 printk(KERN_ERR PFX "orinoco_if_add() failed\n");
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400381 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. */
David Kilroy53819562009-06-18 23:21:28 +0100386 strcpy(card->node.dev_name, priv->ndev->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 */
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200390 return 0;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400391
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400392 failed:
393 spectrum_cs_release(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200394 return -ENODEV;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400395} /* spectrum_cs_config */
396
397/*
398 * After a card is removed, spectrum_cs_release() will unregister the
399 * device, and release the PCMCIA configuration. If the device is
400 * still open, this will be postponed until it is closed.
401 */
402static void
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200403spectrum_cs_release(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400404{
David Kilroya2608362009-06-18 23:21:23 +0100405 struct orinoco_private *priv = link->priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400406 unsigned long flags;
407
408 /* We're committed to taking the device away now, so mark the
409 * hardware as unavailable */
410 spin_lock_irqsave(&priv->lock, flags);
411 priv->hw_unavailable++;
412 spin_unlock_irqrestore(&priv->lock, flags);
413
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200414 pcmcia_disable_device(link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400415 if (priv->hw.iobase)
416 ioport_unmap(priv->hw.iobase);
417} /* spectrum_cs_release */
418
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100419
420static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200421spectrum_cs_suspend(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100422{
David Kilroya2608362009-06-18 23:21:23 +0100423 struct orinoco_private *priv = link->priv;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100424 int err = 0;
425
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100426 /* Mark the device as stopped, to block IO until later */
David Kilroy6415f7d2009-06-18 23:21:30 +0100427 orinoco_down(priv);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100428
Pavel Roskin6cbaa332006-05-01 02:13:28 -0400429 return err;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100430}
431
432static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200433spectrum_cs_resume(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100434{
David Kilroya2608362009-06-18 23:21:23 +0100435 struct orinoco_private *priv = link->priv;
David Kilroy6415f7d2009-06-18 23:21:30 +0100436 int err = orinoco_up(priv);
David Kilroyac7cafd2008-11-22 10:37:27 +0000437
David Kilroy6415f7d2009-06-18 23:21:30 +0100438 return err;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100439}
440
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400441
442/********************************************************************/
443/* Module initialization */
444/********************************************************************/
445
446/* Can't be declared "const" or the whole __initdata section will
447 * become const */
448static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
449 " (Pavel Roskin <proski@gnu.org>,"
450 " David Gibson <hermes@gibson.dropbear.id.au>, et al)";
451
452static struct pcmcia_device_id spectrum_cs_ids[] = {
Pavel Roskin4ebe2eb2006-04-07 04:10:32 -0400453 PCMCIA_DEVICE_MANF_CARD(0x026c, 0x0001), /* Symbol Spectrum24 LA4137 */
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400454 PCMCIA_DEVICE_MANF_CARD(0x0104, 0x0001), /* Socket Communications CF */
Pavel Roskin9c8a11d2005-09-16 02:18:31 -0400455 PCMCIA_DEVICE_PROD_ID12("Intel", "PRO/Wireless LAN PC Card", 0x816cc815, 0x6fbf459a), /* 2011B, not 2011 */
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400456 PCMCIA_DEVICE_NULL,
457};
458MODULE_DEVICE_TABLE(pcmcia, spectrum_cs_ids);
459
460static struct pcmcia_driver orinoco_driver = {
461 .owner = THIS_MODULE,
462 .drv = {
463 .name = DRIVER_NAME,
464 },
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200465 .probe = spectrum_cs_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100466 .remove = spectrum_cs_detach,
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100467 .suspend = spectrum_cs_suspend,
468 .resume = spectrum_cs_resume,
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400469 .id_table = spectrum_cs_ids,
470};
471
472static int __init
473init_spectrum_cs(void)
474{
475 printk(KERN_DEBUG "%s\n", version);
476
477 return pcmcia_register_driver(&orinoco_driver);
478}
479
480static void __exit
481exit_spectrum_cs(void)
482{
483 pcmcia_unregister_driver(&orinoco_driver);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400484}
485
486module_init(init_spectrum_cs);
487module_exit(exit_spectrum_cs);