blob: 4f8f55eab955d68db2d33098591648ca7588e4af [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.h>
29#include <pcmcia/cistpl.h>
30#include <pcmcia/cisreg.h>
31#include <pcmcia/ds.h>
32
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040033#include "orinoco.h"
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040034
35/********************************************************************/
36/* Module stuff */
37/********************************************************************/
38
39MODULE_AUTHOR("Pavel Roskin <proski@gnu.org>");
40MODULE_DESCRIPTION("Driver for Symbol Spectrum24 Trilogy cards with firmware downloader");
41MODULE_LICENSE("Dual MPL/GPL");
42
43/* Module parameters */
44
45/* Some D-Link cards have buggy CIS. They do work at 5v properly, but
46 * don't have any CIS entry for it. This workaround it... */
47static int ignore_cis_vcc; /* = 0 */
48module_param(ignore_cis_vcc, int, 0);
49MODULE_PARM_DESC(ignore_cis_vcc, "Allow voltage mismatch between card and socket");
50
51/********************************************************************/
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040052/* Data structures */
53/********************************************************************/
54
55/* PCMCIA specific device information (goes in the card field of
56 * struct orinoco_private */
57struct orinoco_pccard {
Dominik Brodowskifd238232006-03-05 10:45:09 +010058 struct pcmcia_device *p_dev;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040059};
60
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040061/********************************************************************/
62/* Function prototypes */
63/********************************************************************/
64
Dominik Brodowski15b99ac2006-03-31 17:26:06 +020065static int spectrum_cs_config(struct pcmcia_device *link);
Dominik Brodowskifba395e2006-03-31 17:21:06 +020066static void spectrum_cs_release(struct pcmcia_device *link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040067
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040068/* Constants for the CISREG_CCSR register */
69#define HCR_RUN 0x07 /* run firmware after reset */
70#define HCR_IDLE 0x0E /* don't run firmware after reset */
71#define HCR_MEM16 0x10 /* memory width bit, should be preserved */
72
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040073
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040074/*
75 * Reset the card using configuration registers COR and CCSR.
76 * If IDLE is 1, stop the firmware, so that it can be safely rewritten.
77 */
78static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +020079spectrum_reset(struct pcmcia_device *link, int idle)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040080{
Dominik Brodowski2caff142009-10-24 15:53:36 +020081 int ret;
Dominik Brodowski1d5cc192010-07-24 12:23:21 +020082 u8 save_cor;
83 u8 ccsr;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040084
85 /* Doing it if hardware is gone is guaranteed crash */
Richard Purdiec5ab9642006-08-22 18:55:44 +010086 if (!pcmcia_dev_present(link))
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040087 return -ENODEV;
88
89 /* Save original COR value */
Dominik Brodowski1d5cc192010-07-24 12:23:21 +020090 ret = pcmcia_read_config_byte(link, CISREG_COR, &save_cor);
Dominik Brodowski2caff142009-10-24 15:53:36 +020091 if (ret)
92 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040093
94 /* Soft-Reset card */
Dominik Brodowski1d5cc192010-07-24 12:23:21 +020095 ret = pcmcia_write_config_byte(link, CISREG_COR,
96 (save_cor | COR_SOFT_RESET));
Dominik Brodowski2caff142009-10-24 15:53:36 +020097 if (ret)
98 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040099 udelay(1000);
100
101 /* Read CCSR */
Dominik Brodowski1d5cc192010-07-24 12:23:21 +0200102 ret = pcmcia_read_config_byte(link, CISREG_CCSR, &ccsr);
Dominik Brodowski2caff142009-10-24 15:53:36 +0200103 if (ret)
104 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400105
106 /*
107 * Start or stop the firmware. Memory width bit should be
108 * preserved from the value we've just read.
109 */
Dominik Brodowski1d5cc192010-07-24 12:23:21 +0200110 ccsr = (idle ? HCR_IDLE : HCR_RUN) | (ccsr & HCR_MEM16);
111 ret = pcmcia_write_config_byte(link, CISREG_CCSR, ccsr);
Dominik Brodowski2caff142009-10-24 15:53:36 +0200112 if (ret)
113 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400114 udelay(1000);
115
116 /* Restore original COR configuration index */
Dominik Brodowski1d5cc192010-07-24 12:23:21 +0200117 ret = pcmcia_write_config_byte(link, CISREG_COR,
118 (save_cor & ~COR_SOFT_RESET));
Dominik Brodowski2caff142009-10-24 15:53:36 +0200119 if (ret)
120 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400121 udelay(1000);
122 return 0;
123
Dominik Brodowski2caff142009-10-24 15:53:36 +0200124failed:
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400125 return -ENODEV;
126}
127
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400128/********************************************************************/
129/* Device methods */
130/********************************************************************/
131
132static int
133spectrum_cs_hard_reset(struct orinoco_private *priv)
134{
135 struct orinoco_pccard *card = priv->card;
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200136 struct pcmcia_device *link = card->p_dev;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400137
David Kilroy3994d502008-08-21 23:27:54 +0100138 /* Soft reset using COR and HCR */
139 spectrum_reset(link, 0);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400140
141 return 0;
142}
143
David Kilroy3994d502008-08-21 23:27:54 +0100144static int
145spectrum_cs_stop_firmware(struct orinoco_private *priv, int idle)
146{
147 struct orinoco_pccard *card = priv->card;
148 struct pcmcia_device *link = card->p_dev;
149
150 return spectrum_reset(link, idle);
151}
152
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400153/********************************************************************/
154/* PCMCIA stuff */
155/********************************************************************/
156
157/*
158 * This creates an "instance" of the driver, allocating local data
159 * structures for one device. The device is registered with Card
160 * Services.
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +0300161 *
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400162 * The dev_link structure is initialized, but we don't actually
163 * configure the card at this point -- we wait until we receive a card
164 * insertion event. */
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100165static int
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200166spectrum_cs_probe(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400167{
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400168 struct orinoco_private *priv;
169 struct orinoco_pccard *card;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400170
Dominik Brodowskidd2e5a12009-11-03 10:27:34 +0100171 priv = alloc_orinocodev(sizeof(*card), &link->dev,
David Kilroya2608362009-06-18 23:21:23 +0100172 spectrum_cs_hard_reset,
173 spectrum_cs_stop_firmware);
174 if (!priv)
Dominik Brodowskif8cfa612005-11-14 21:25:51 +0100175 return -ENOMEM;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400176 card = priv->card;
177
178 /* Link both structures together */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200179 card->p_dev = link;
David Kilroya2608362009-06-18 23:21:23 +0100180 link->priv = priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400181
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400182 /* General socket configuration defaults can go here. In this
183 * client, we assume very little, and rely on the CIS for
184 * almost everything. In most clients, many details (i.e.,
185 * number, sizes, and attributes of IO windows) are fixed by
186 * the nature of the device, and can be hard-wired here. */
187 link->conf.Attributes = 0;
188 link->conf.IntType = INT_MEMORY_AND_IO;
189
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200190 return spectrum_cs_config(link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400191} /* spectrum_cs_attach */
192
193/*
194 * This deletes a driver "instance". The device is de-registered with
195 * Card Services. If it has been released, all local data structures
196 * are freed. Otherwise, the structures will be freed when the device
197 * is released.
198 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200199static void spectrum_cs_detach(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400200{
David Kilroya2608362009-06-18 23:21:23 +0100201 struct orinoco_private *priv = link->priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400202
Dominik Brodowskic7c2fa02010-03-20 19:39:26 +0100203 orinoco_if_del(priv);
Pavel Roskine4f4f982006-05-01 02:13:24 -0400204
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100205 spectrum_cs_release(link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400206
David Kilroya2608362009-06-18 23:21:23 +0100207 free_orinocodev(priv);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400208} /* spectrum_cs_detach */
209
210/*
211 * spectrum_cs_config() is scheduled to run after a CARD_INSERTION
212 * event is received, to configure the PCMCIA socket, and to make the
213 * device available to the system.
214 */
215
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200216static int spectrum_cs_config_check(struct pcmcia_device *p_dev,
217 cistpl_cftable_entry_t *cfg,
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200218 cistpl_cftable_entry_t *dflt,
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200219 unsigned int vcc,
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200220 void *priv_data)
221{
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200222 if (cfg->index == 0)
223 goto next_entry;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200224
225 /* Use power settings for Vcc and Vpp if present */
226 /* Note that the CIS values need to be rescaled */
227 if (cfg->vcc.present & (1 << CISTPL_POWER_VNOM)) {
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200228 if (vcc != cfg->vcc.param[CISTPL_POWER_VNOM] / 10000) {
David Kilroy62d714e2008-12-09 23:05:38 +0000229 DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
230 __func__, vcc,
231 cfg->vcc.param[CISTPL_POWER_VNOM] / 10000);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200232 if (!ignore_cis_vcc)
233 goto next_entry;
234 }
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200235 } else if (dflt->vcc.present & (1 << CISTPL_POWER_VNOM)) {
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200236 if (vcc != dflt->vcc.param[CISTPL_POWER_VNOM] / 10000) {
David Kilroy62d714e2008-12-09 23:05:38 +0000237 DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
238 __func__, vcc,
239 dflt->vcc.param[CISTPL_POWER_VNOM] / 10000);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200240 if (!ignore_cis_vcc)
241 goto next_entry;
242 }
243 }
244
245 if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM))
246 p_dev->conf.Vpp =
247 cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000;
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200248 else if (dflt->vpp1.present & (1 << CISTPL_POWER_VNOM))
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200249 p_dev->conf.Vpp =
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200250 dflt->vpp1.param[CISTPL_POWER_VNOM] / 10000;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200251
252 /* Do we need to allocate an interrupt? */
253 p_dev->conf.Attributes |= CONF_ENABLE_IRQ;
254
255 /* IO window settings */
256 p_dev->io.NumPorts1 = p_dev->io.NumPorts2 = 0;
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200257 if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) {
258 cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200259 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
260 if (!(io->flags & CISTPL_IO_8BIT))
261 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
262 if (!(io->flags & CISTPL_IO_16BIT))
263 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
264 p_dev->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK;
265 p_dev->io.BasePort1 = io->win[0].base;
266 p_dev->io.NumPorts1 = io->win[0].len;
267 if (io->nwin > 1) {
268 p_dev->io.Attributes2 = p_dev->io.Attributes1;
269 p_dev->io.BasePort2 = io->win[1].base;
270 p_dev->io.NumPorts2 = io->win[1].len;
271 }
272
273 /* This reserves IO space but doesn't actually enable it */
274 if (pcmcia_request_io(p_dev, &p_dev->io) != 0)
275 goto next_entry;
276 }
277 return 0;
278
279next_entry:
280 pcmcia_disable_device(p_dev);
281 return -ENODEV;
282};
283
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200284static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200285spectrum_cs_config(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400286{
David Kilroya2608362009-06-18 23:21:23 +0100287 struct orinoco_private *priv = link->priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400288 hermes_t *hw = &priv->hw;
Dominik Brodowski2caff142009-10-24 15:53:36 +0200289 int ret;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400290 void __iomem *mem;
291
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400292 /*
293 * In this loop, we scan the CIS for configuration table
294 * entries, each of which describes a valid card
295 * configuration, including voltage, IO window, memory window,
296 * and interrupt settings.
297 *
298 * We make no assumptions about the card to be configured: we
299 * use just the information available in the CIS. In an ideal
300 * world, this would work for any PCMCIA card, but it requires
301 * a complete and accurate CIS. In practice, a driver usually
302 * "knows" most of these things without consulting the CIS,
303 * and most client drivers will only use the CIS to fill in
304 * implementation-defined details.
305 */
Dominik Brodowski2caff142009-10-24 15:53:36 +0200306 ret = pcmcia_loop_config(link, spectrum_cs_config_check, NULL);
307 if (ret) {
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200308 if (!ignore_cis_vcc)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400309 printk(KERN_ERR PFX "GetNextTuple(): No matching "
310 "CIS configuration. Maybe you need the "
311 "ignore_cis_vcc=1 parameter.\n");
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200312 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400313 }
314
Dominik Brodowskieb141202010-03-07 12:21:16 +0100315 ret = pcmcia_request_irq(link, orinoco_interrupt);
Dominik Brodowski2caff142009-10-24 15:53:36 +0200316 if (ret)
317 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400318
319 /* We initialize the hermes structure before completing PCMCIA
320 * configuration just in case the interrupt handler gets
321 * called. */
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200322 mem = ioport_map(link->resource[0]->start,
323 resource_size(link->resource[0]));
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400324 if (!mem)
Dominik Brodowski2caff142009-10-24 15:53:36 +0200325 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400326
327 hermes_struct_init(hw, mem, HERMES_16BIT_REGSPACING);
David Kilroy07cefe72010-05-01 14:05:43 +0100328 hw->eeprom_pda = true;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400329
330 /*
331 * This actually configures the PCMCIA socket -- setting up
332 * the I/O windows and the interrupt mapping, and putting the
333 * card and host interface into "Memory and IO" mode.
334 */
Dominik Brodowski2caff142009-10-24 15:53:36 +0200335 ret = pcmcia_request_configuration(link, &link->conf);
336 if (ret)
337 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400338
David Kilroy3994d502008-08-21 23:27:54 +0100339 /* Reset card */
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +0300340 if (spectrum_cs_hard_reset(priv) != 0)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400341 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400342
David Kilroy8e638262009-06-18 23:21:24 +0100343 /* Initialise the main driver */
344 if (orinoco_init(priv) != 0) {
345 printk(KERN_ERR PFX "orinoco_init() failed\n");
346 goto failed;
347 }
348
David Kilroy53819562009-06-18 23:21:28 +0100349 /* Register an interface with the stack */
Dominik Brodowski9a017a92010-07-24 15:58:54 +0200350 if (orinoco_if_add(priv, link->resource[0]->start,
Linus Torvaldsf8965462010-05-20 21:04:44 -0700351 link->irq, NULL) != 0) {
David Kilroy53819562009-06-18 23:21:28 +0100352 printk(KERN_ERR PFX "orinoco_if_add() failed\n");
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400353 goto failed;
354 }
355
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200356 return 0;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400357
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400358 failed:
359 spectrum_cs_release(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200360 return -ENODEV;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400361} /* spectrum_cs_config */
362
363/*
364 * After a card is removed, spectrum_cs_release() will unregister the
365 * device, and release the PCMCIA configuration. If the device is
366 * still open, this will be postponed until it is closed.
367 */
368static void
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200369spectrum_cs_release(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400370{
David Kilroya2608362009-06-18 23:21:23 +0100371 struct orinoco_private *priv = link->priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400372 unsigned long flags;
373
374 /* We're committed to taking the device away now, so mark the
375 * hardware as unavailable */
David Kilroybcad6e82010-05-01 14:05:40 +0100376 priv->hw.ops->lock_irqsave(&priv->lock, &flags);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400377 priv->hw_unavailable++;
David Kilroybcad6e82010-05-01 14:05:40 +0100378 priv->hw.ops->unlock_irqrestore(&priv->lock, &flags);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400379
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200380 pcmcia_disable_device(link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400381 if (priv->hw.iobase)
382 ioport_unmap(priv->hw.iobase);
383} /* spectrum_cs_release */
384
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100385
386static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200387spectrum_cs_suspend(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100388{
David Kilroya2608362009-06-18 23:21:23 +0100389 struct orinoco_private *priv = link->priv;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100390 int err = 0;
391
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100392 /* Mark the device as stopped, to block IO until later */
David Kilroy6415f7d2009-06-18 23:21:30 +0100393 orinoco_down(priv);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100394
Pavel Roskin6cbaa332006-05-01 02:13:28 -0400395 return err;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100396}
397
398static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200399spectrum_cs_resume(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100400{
David Kilroya2608362009-06-18 23:21:23 +0100401 struct orinoco_private *priv = link->priv;
David Kilroy6415f7d2009-06-18 23:21:30 +0100402 int err = orinoco_up(priv);
David Kilroyac7cafd2008-11-22 10:37:27 +0000403
David Kilroy6415f7d2009-06-18 23:21:30 +0100404 return err;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100405}
406
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400407
408/********************************************************************/
409/* Module initialization */
410/********************************************************************/
411
412/* Can't be declared "const" or the whole __initdata section will
413 * become const */
414static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
415 " (Pavel Roskin <proski@gnu.org>,"
416 " David Gibson <hermes@gibson.dropbear.id.au>, et al)";
417
418static struct pcmcia_device_id spectrum_cs_ids[] = {
Pavel Roskin4ebe2eb2006-04-07 04:10:32 -0400419 PCMCIA_DEVICE_MANF_CARD(0x026c, 0x0001), /* Symbol Spectrum24 LA4137 */
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400420 PCMCIA_DEVICE_MANF_CARD(0x0104, 0x0001), /* Socket Communications CF */
Pavel Roskin9c8a11d2005-09-16 02:18:31 -0400421 PCMCIA_DEVICE_PROD_ID12("Intel", "PRO/Wireless LAN PC Card", 0x816cc815, 0x6fbf459a), /* 2011B, not 2011 */
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400422 PCMCIA_DEVICE_NULL,
423};
424MODULE_DEVICE_TABLE(pcmcia, spectrum_cs_ids);
425
426static struct pcmcia_driver orinoco_driver = {
427 .owner = THIS_MODULE,
428 .drv = {
429 .name = DRIVER_NAME,
430 },
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200431 .probe = spectrum_cs_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100432 .remove = spectrum_cs_detach,
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100433 .suspend = spectrum_cs_suspend,
434 .resume = spectrum_cs_resume,
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400435 .id_table = spectrum_cs_ids,
436};
437
438static int __init
439init_spectrum_cs(void)
440{
441 printk(KERN_DEBUG "%s\n", version);
442
443 return pcmcia_register_driver(&orinoco_driver);
444}
445
446static void __exit
447exit_spectrum_cs(void)
448{
449 pcmcia_unregister_driver(&orinoco_driver);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400450}
451
452module_init(init_spectrum_cs);
453module_exit(exit_spectrum_cs);