blob: b51a9adc80f6274648af92d4338cc37b5719b500 [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};
61
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040062/********************************************************************/
63/* Function prototypes */
64/********************************************************************/
65
Dominik Brodowski15b99ac2006-03-31 17:26:06 +020066static int spectrum_cs_config(struct pcmcia_device *link);
Dominik Brodowskifba395e2006-03-31 17:21:06 +020067static void spectrum_cs_release(struct pcmcia_device *link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040068
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040069/* Constants for the CISREG_CCSR register */
70#define HCR_RUN 0x07 /* run firmware after reset */
71#define HCR_IDLE 0x0E /* don't run firmware after reset */
72#define HCR_MEM16 0x10 /* memory width bit, should be preserved */
73
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040074
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040075/*
76 * Reset the card using configuration registers COR and CCSR.
77 * If IDLE is 1, stop the firmware, so that it can be safely rewritten.
78 */
79static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +020080spectrum_reset(struct pcmcia_device *link, int idle)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040081{
Dominik Brodowski2caff142009-10-24 15:53:36 +020082 int ret;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040083 conf_reg_t reg;
84 u_int save_cor;
85
86 /* Doing it if hardware is gone is guaranteed crash */
Richard Purdiec5ab9642006-08-22 18:55:44 +010087 if (!pcmcia_dev_present(link))
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040088 return -ENODEV;
89
90 /* Save original COR value */
91 reg.Function = 0;
92 reg.Action = CS_READ;
93 reg.Offset = CISREG_COR;
Dominik Brodowski2caff142009-10-24 15:53:36 +020094 ret = pcmcia_access_configuration_register(link, &reg);
95 if (ret)
96 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -040097 save_cor = reg.Value;
98
99 /* Soft-Reset card */
100 reg.Action = CS_WRITE;
101 reg.Offset = CISREG_COR;
102 reg.Value = (save_cor | COR_SOFT_RESET);
Dominik Brodowski2caff142009-10-24 15:53:36 +0200103 ret = pcmcia_access_configuration_register(link, &reg);
104 if (ret)
105 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400106 udelay(1000);
107
108 /* Read CCSR */
109 reg.Action = CS_READ;
110 reg.Offset = CISREG_CCSR;
Dominik Brodowski2caff142009-10-24 15:53:36 +0200111 ret = pcmcia_access_configuration_register(link, &reg);
112 if (ret)
113 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400114
115 /*
116 * Start or stop the firmware. Memory width bit should be
117 * preserved from the value we've just read.
118 */
119 reg.Action = CS_WRITE;
120 reg.Offset = CISREG_CCSR;
121 reg.Value = (idle ? HCR_IDLE : HCR_RUN) | (reg.Value & HCR_MEM16);
Dominik Brodowski2caff142009-10-24 15:53:36 +0200122 ret = pcmcia_access_configuration_register(link, &reg);
123 if (ret)
124 goto failed;
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);
Dominik Brodowski2caff142009-10-24 15:53:36 +0200131 ret = pcmcia_access_configuration_register(link, &reg);
132 if (ret)
133 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400134 udelay(1000);
135 return 0;
136
Dominik Brodowski2caff142009-10-24 15:53:36 +0200137failed:
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
Dominik Brodowskidd2e5a12009-11-03 10:27:34 +0100184 priv = alloc_orinocodev(sizeof(*card), &link->dev,
David Kilroya2608362009-06-18 23:21:23 +0100185 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
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400195 /* General socket configuration defaults can go here. In this
196 * client, we assume very little, and rely on the CIS for
197 * almost everything. In most clients, many details (i.e.,
198 * number, sizes, and attributes of IO windows) are fixed by
199 * the nature of the device, and can be hard-wired here. */
200 link->conf.Attributes = 0;
201 link->conf.IntType = INT_MEMORY_AND_IO;
202
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200203 return spectrum_cs_config(link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400204} /* spectrum_cs_attach */
205
206/*
207 * This deletes a driver "instance". The device is de-registered with
208 * Card Services. If it has been released, all local data structures
209 * are freed. Otherwise, the structures will be freed when the device
210 * is released.
211 */
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200212static void spectrum_cs_detach(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400213{
David Kilroya2608362009-06-18 23:21:23 +0100214 struct orinoco_private *priv = link->priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400215
Dominik Brodowskic7c2fa02010-03-20 19:39:26 +0100216 orinoco_if_del(priv);
Pavel Roskine4f4f982006-05-01 02:13:24 -0400217
Dominik Brodowskie2d40962006-03-02 00:09:29 +0100218 spectrum_cs_release(link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400219
David Kilroya2608362009-06-18 23:21:23 +0100220 free_orinocodev(priv);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400221} /* spectrum_cs_detach */
222
223/*
224 * spectrum_cs_config() is scheduled to run after a CARD_INSERTION
225 * event is received, to configure the PCMCIA socket, and to make the
226 * device available to the system.
227 */
228
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200229static int spectrum_cs_config_check(struct pcmcia_device *p_dev,
230 cistpl_cftable_entry_t *cfg,
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200231 cistpl_cftable_entry_t *dflt,
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200232 unsigned int vcc,
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200233 void *priv_data)
234{
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200235 if (cfg->index == 0)
236 goto next_entry;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200237
238 /* Use power settings for Vcc and Vpp if present */
239 /* Note that the CIS values need to be rescaled */
240 if (cfg->vcc.present & (1 << CISTPL_POWER_VNOM)) {
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200241 if (vcc != cfg->vcc.param[CISTPL_POWER_VNOM] / 10000) {
David Kilroy62d714e2008-12-09 23:05:38 +0000242 DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
243 __func__, vcc,
244 cfg->vcc.param[CISTPL_POWER_VNOM] / 10000);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200245 if (!ignore_cis_vcc)
246 goto next_entry;
247 }
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200248 } else if (dflt->vcc.present & (1 << CISTPL_POWER_VNOM)) {
Dominik Brodowskiad913c12008-08-02 16:12:00 +0200249 if (vcc != dflt->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 dflt->vcc.param[CISTPL_POWER_VNOM] / 10000);
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200253 if (!ignore_cis_vcc)
254 goto next_entry;
255 }
256 }
257
258 if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM))
259 p_dev->conf.Vpp =
260 cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000;
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200261 else if (dflt->vpp1.present & (1 << CISTPL_POWER_VNOM))
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200262 p_dev->conf.Vpp =
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200263 dflt->vpp1.param[CISTPL_POWER_VNOM] / 10000;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200264
265 /* Do we need to allocate an interrupt? */
266 p_dev->conf.Attributes |= CONF_ENABLE_IRQ;
267
268 /* IO window settings */
269 p_dev->io.NumPorts1 = p_dev->io.NumPorts2 = 0;
Dominik Brodowski8e2fc392008-08-02 15:30:31 +0200270 if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) {
271 cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io;
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200272 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
273 if (!(io->flags & CISTPL_IO_8BIT))
274 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
275 if (!(io->flags & CISTPL_IO_16BIT))
276 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
277 p_dev->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK;
278 p_dev->io.BasePort1 = io->win[0].base;
279 p_dev->io.NumPorts1 = io->win[0].len;
280 if (io->nwin > 1) {
281 p_dev->io.Attributes2 = p_dev->io.Attributes1;
282 p_dev->io.BasePort2 = io->win[1].base;
283 p_dev->io.NumPorts2 = io->win[1].len;
284 }
285
286 /* This reserves IO space but doesn't actually enable it */
287 if (pcmcia_request_io(p_dev, &p_dev->io) != 0)
288 goto next_entry;
289 }
290 return 0;
291
292next_entry:
293 pcmcia_disable_device(p_dev);
294 return -ENODEV;
295};
296
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200297static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200298spectrum_cs_config(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400299{
David Kilroya2608362009-06-18 23:21:23 +0100300 struct orinoco_private *priv = link->priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400301 hermes_t *hw = &priv->hw;
Dominik Brodowski2caff142009-10-24 15:53:36 +0200302 int ret;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400303 void __iomem *mem;
304
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400305 /*
306 * In this loop, we scan the CIS for configuration table
307 * entries, each of which describes a valid card
308 * configuration, including voltage, IO window, memory window,
309 * and interrupt settings.
310 *
311 * We make no assumptions about the card to be configured: we
312 * use just the information available in the CIS. In an ideal
313 * world, this would work for any PCMCIA card, but it requires
314 * a complete and accurate CIS. In practice, a driver usually
315 * "knows" most of these things without consulting the CIS,
316 * and most client drivers will only use the CIS to fill in
317 * implementation-defined details.
318 */
Dominik Brodowski2caff142009-10-24 15:53:36 +0200319 ret = pcmcia_loop_config(link, spectrum_cs_config_check, NULL);
320 if (ret) {
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200321 if (!ignore_cis_vcc)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400322 printk(KERN_ERR PFX "GetNextTuple(): No matching "
323 "CIS configuration. Maybe you need the "
324 "ignore_cis_vcc=1 parameter.\n");
Dominik Brodowskib54bf942008-08-02 14:28:43 +0200325 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400326 }
327
Dominik Brodowskieb141202010-03-07 12:21:16 +0100328 ret = pcmcia_request_irq(link, orinoco_interrupt);
Dominik Brodowski2caff142009-10-24 15:53:36 +0200329 if (ret)
330 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400331
332 /* We initialize the hermes structure before completing PCMCIA
333 * configuration just in case the interrupt handler gets
334 * called. */
335 mem = ioport_map(link->io.BasePort1, link->io.NumPorts1);
336 if (!mem)
Dominik Brodowski2caff142009-10-24 15:53:36 +0200337 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400338
339 hermes_struct_init(hw, mem, HERMES_16BIT_REGSPACING);
David Kilroy07cefe72010-05-01 14:05:43 +0100340 hw->eeprom_pda = true;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400341
342 /*
343 * This actually configures the PCMCIA socket -- setting up
344 * the I/O windows and the interrupt mapping, and putting the
345 * card and host interface into "Memory and IO" mode.
346 */
Dominik Brodowski2caff142009-10-24 15:53:36 +0200347 ret = pcmcia_request_configuration(link, &link->conf);
348 if (ret)
349 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400350
David Kilroy3994d502008-08-21 23:27:54 +0100351 /* Reset card */
Andrey Borzenkovd14c7c12009-01-25 23:08:43 +0300352 if (spectrum_cs_hard_reset(priv) != 0)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400353 goto failed;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400354
David Kilroy8e638262009-06-18 23:21:24 +0100355 /* Initialise the main driver */
356 if (orinoco_init(priv) != 0) {
357 printk(KERN_ERR PFX "orinoco_init() failed\n");
358 goto failed;
359 }
360
David Kilroy53819562009-06-18 23:21:28 +0100361 /* Register an interface with the stack */
362 if (orinoco_if_add(priv, link->io.BasePort1,
Linus Torvaldsf8965462010-05-20 21:04:44 -0700363 link->irq, NULL) != 0) {
David Kilroy53819562009-06-18 23:21:28 +0100364 printk(KERN_ERR PFX "orinoco_if_add() failed\n");
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400365 goto failed;
366 }
367
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200368 return 0;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400369
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400370 failed:
371 spectrum_cs_release(link);
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200372 return -ENODEV;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400373} /* spectrum_cs_config */
374
375/*
376 * After a card is removed, spectrum_cs_release() will unregister the
377 * device, and release the PCMCIA configuration. If the device is
378 * still open, this will be postponed until it is closed.
379 */
380static void
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200381spectrum_cs_release(struct pcmcia_device *link)
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400382{
David Kilroya2608362009-06-18 23:21:23 +0100383 struct orinoco_private *priv = link->priv;
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400384 unsigned long flags;
385
386 /* We're committed to taking the device away now, so mark the
387 * hardware as unavailable */
David Kilroybcad6e82010-05-01 14:05:40 +0100388 priv->hw.ops->lock_irqsave(&priv->lock, &flags);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400389 priv->hw_unavailable++;
David Kilroybcad6e82010-05-01 14:05:40 +0100390 priv->hw.ops->unlock_irqrestore(&priv->lock, &flags);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400391
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200392 pcmcia_disable_device(link);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400393 if (priv->hw.iobase)
394 ioport_unmap(priv->hw.iobase);
395} /* spectrum_cs_release */
396
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100397
398static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200399spectrum_cs_suspend(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;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100402 int err = 0;
403
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100404 /* Mark the device as stopped, to block IO until later */
David Kilroy6415f7d2009-06-18 23:21:30 +0100405 orinoco_down(priv);
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100406
Pavel Roskin6cbaa332006-05-01 02:13:28 -0400407 return err;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100408}
409
410static int
Dominik Brodowskifba395e2006-03-31 17:21:06 +0200411spectrum_cs_resume(struct pcmcia_device *link)
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100412{
David Kilroya2608362009-06-18 23:21:23 +0100413 struct orinoco_private *priv = link->priv;
David Kilroy6415f7d2009-06-18 23:21:30 +0100414 int err = orinoco_up(priv);
David Kilroyac7cafd2008-11-22 10:37:27 +0000415
David Kilroy6415f7d2009-06-18 23:21:30 +0100416 return err;
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100417}
418
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400419
420/********************************************************************/
421/* Module initialization */
422/********************************************************************/
423
424/* Can't be declared "const" or the whole __initdata section will
425 * become const */
426static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
427 " (Pavel Roskin <proski@gnu.org>,"
428 " David Gibson <hermes@gibson.dropbear.id.au>, et al)";
429
430static struct pcmcia_device_id spectrum_cs_ids[] = {
Pavel Roskin4ebe2eb2006-04-07 04:10:32 -0400431 PCMCIA_DEVICE_MANF_CARD(0x026c, 0x0001), /* Symbol Spectrum24 LA4137 */
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400432 PCMCIA_DEVICE_MANF_CARD(0x0104, 0x0001), /* Socket Communications CF */
Pavel Roskin9c8a11d2005-09-16 02:18:31 -0400433 PCMCIA_DEVICE_PROD_ID12("Intel", "PRO/Wireless LAN PC Card", 0x816cc815, 0x6fbf459a), /* 2011B, not 2011 */
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400434 PCMCIA_DEVICE_NULL,
435};
436MODULE_DEVICE_TABLE(pcmcia, spectrum_cs_ids);
437
438static struct pcmcia_driver orinoco_driver = {
439 .owner = THIS_MODULE,
440 .drv = {
441 .name = DRIVER_NAME,
442 },
Dominik Brodowski15b99ac2006-03-31 17:26:06 +0200443 .probe = spectrum_cs_probe,
Dominik Brodowskicc3b4862005-11-14 21:23:14 +0100444 .remove = spectrum_cs_detach,
Dominik Brodowski98e4c282005-11-14 21:21:18 +0100445 .suspend = spectrum_cs_suspend,
446 .resume = spectrum_cs_resume,
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400447 .id_table = spectrum_cs_ids,
448};
449
450static int __init
451init_spectrum_cs(void)
452{
453 printk(KERN_DEBUG "%s\n", version);
454
455 return pcmcia_register_driver(&orinoco_driver);
456}
457
458static void __exit
459exit_spectrum_cs(void)
460{
461 pcmcia_unregister_driver(&orinoco_driver);
Pavel Roskin3a48c4c2005-09-01 20:10:06 -0400462}
463
464module_init(init_spectrum_cs);
465module_exit(exit_spectrum_cs);