orinoco: allow driver to specify netdev_ops
[orinoco_usb.git] / drivers / net / wireless / orinoco / spectrum_cs.c
blob708082f70817a110b29159e01fc4667481f8b447
1 /*
2 * Driver for 802.11b cards using RAM-loadable Symbol firmware, such as
3 * Symbol Wireless Networker LA4137, CompactFlash cards by Socket
4 * Communications and Intel PRO/Wireless 2011B.
6 * The driver implements Symbol firmware download. The rest is handled
7 * in hermes.c and main.c.
9 * Utilities for downloading the Symbol firmware are available at
10 * http://sourceforge.net/projects/orinoco/
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.
18 * See copyright notice in file main.c.
21 #define DRIVER_NAME "spectrum_cs"
22 #define PFX DRIVER_NAME ": "
24 #include <linux/module.h>
25 #include <linux/kernel.h>
26 #include <linux/init.h>
27 #include <linux/delay.h>
28 #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>
34 #include "orinoco.h"
36 /********************************************************************/
37 /* Module stuff */
38 /********************************************************************/
40 MODULE_AUTHOR("Pavel Roskin <proski@gnu.org>");
41 MODULE_DESCRIPTION("Driver for Symbol Spectrum24 Trilogy cards with firmware downloader");
42 MODULE_LICENSE("Dual MPL/GPL");
44 /* Module parameters */
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... */
48 static int ignore_cis_vcc; /* = 0 */
49 module_param(ignore_cis_vcc, int, 0);
50 MODULE_PARM_DESC(ignore_cis_vcc, "Allow voltage mismatch between card and socket");
52 /********************************************************************/
53 /* Data structures */
54 /********************************************************************/
56 /* PCMCIA specific device information (goes in the card field of
57 * struct orinoco_private */
58 struct orinoco_pccard {
59 struct pcmcia_device *p_dev;
60 dev_node_t node;
63 /********************************************************************/
64 /* Function prototypes */
65 /********************************************************************/
67 static int spectrum_cs_config(struct pcmcia_device *link);
68 static void spectrum_cs_release(struct pcmcia_device *link);
70 /* 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 */
76 #define CS_CHECK(fn, ret) \
77 do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
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.
83 static int
84 spectrum_reset(struct pcmcia_device *link, int idle)
86 int last_ret, last_fn;
87 conf_reg_t reg;
88 u_int save_cor;
90 /* Doing it if hardware is gone is guaranteed crash */
91 if (!pcmcia_dev_present(link))
92 return -ENODEV;
94 /* Save original COR value */
95 reg.Function = 0;
96 reg.Action = CS_READ;
97 reg.Offset = CISREG_COR;
98 CS_CHECK(AccessConfigurationRegister,
99 pcmcia_access_configuration_register(link, &reg));
100 save_cor = reg.Value;
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,
107 pcmcia_access_configuration_register(link, &reg));
108 udelay(1000);
110 /* Read CCSR */
111 reg.Action = CS_READ;
112 reg.Offset = CISREG_CCSR;
113 CS_CHECK(AccessConfigurationRegister,
114 pcmcia_access_configuration_register(link, &reg));
117 * Start or stop the firmware. Memory width bit should be
118 * preserved from the value we've just read.
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,
124 pcmcia_access_configuration_register(link, &reg));
125 udelay(1000);
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,
132 pcmcia_access_configuration_register(link, &reg));
133 udelay(1000);
134 return 0;
136 cs_failed:
137 cs_error(link, last_fn, last_ret);
138 return -ENODEV;
141 /********************************************************************/
142 /* Device methods */
143 /********************************************************************/
145 static int
146 spectrum_cs_hard_reset(struct orinoco_private *priv)
148 struct orinoco_pccard *card = priv->card;
149 struct pcmcia_device *link = card->p_dev;
151 /* Soft reset using COR and HCR */
152 spectrum_reset(link, 0);
154 return 0;
157 static int
158 spectrum_cs_stop_firmware(struct orinoco_private *priv, int idle)
160 struct orinoco_pccard *card = priv->card;
161 struct pcmcia_device *link = card->p_dev;
163 return spectrum_reset(link, idle);
166 /********************************************************************/
167 /* PCMCIA stuff */
168 /********************************************************************/
171 * This creates an "instance" of the driver, allocating local data
172 * structures for one device. The device is registered with Card
173 * Services.
175 * 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. */
178 static int
179 spectrum_cs_probe(struct pcmcia_device *link)
181 struct orinoco_private *priv;
182 struct orinoco_pccard *card;
184 priv = alloc_orinocodev(sizeof(*card), &handle_to_dev(link),
185 spectrum_cs_hard_reset,
186 spectrum_cs_stop_firmware);
187 if (!priv)
188 return -ENOMEM;
189 card = priv->card;
191 /* Link both structures together */
192 card->p_dev = link;
193 link->priv = priv;
195 /* Interrupt setup */
196 link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING | IRQ_HANDLE_PRESENT;
197 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
198 link->irq.Handler = orinoco_interrupt;
199 link->irq.Instance = priv;
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;
209 return spectrum_cs_config(link);
210 } /* spectrum_cs_attach */
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.
218 static void spectrum_cs_detach(struct pcmcia_device *link)
220 struct orinoco_private *priv = link->priv;
222 if (link->dev_node)
223 orinoco_if_del(priv);
225 spectrum_cs_release(link);
227 free_orinocodev(priv);
228 } /* spectrum_cs_detach */
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.
236 static int spectrum_cs_config_check(struct pcmcia_device *p_dev,
237 cistpl_cftable_entry_t *cfg,
238 cistpl_cftable_entry_t *dflt,
239 unsigned int vcc,
240 void *priv_data)
242 if (cfg->index == 0)
243 goto next_entry;
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)) {
248 if (vcc != cfg->vcc.param[CISTPL_POWER_VNOM] / 10000) {
249 DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
250 __func__, vcc,
251 cfg->vcc.param[CISTPL_POWER_VNOM] / 10000);
252 if (!ignore_cis_vcc)
253 goto next_entry;
255 } else if (dflt->vcc.present & (1 << CISTPL_POWER_VNOM)) {
256 if (vcc != dflt->vcc.param[CISTPL_POWER_VNOM] / 10000) {
257 DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
258 __func__, vcc,
259 dflt->vcc.param[CISTPL_POWER_VNOM] / 10000);
260 if (!ignore_cis_vcc)
261 goto next_entry;
265 if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM))
266 p_dev->conf.Vpp =
267 cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000;
268 else if (dflt->vpp1.present & (1 << CISTPL_POWER_VNOM))
269 p_dev->conf.Vpp =
270 dflt->vpp1.param[CISTPL_POWER_VNOM] / 10000;
272 /* Do we need to allocate an interrupt? */
273 p_dev->conf.Attributes |= CONF_ENABLE_IRQ;
275 /* IO window settings */
276 p_dev->io.NumPorts1 = p_dev->io.NumPorts2 = 0;
277 if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) {
278 cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io;
279 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;
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;
297 return 0;
299 next_entry:
300 pcmcia_disable_device(p_dev);
301 return -ENODEV;
304 static int
305 spectrum_cs_config(struct pcmcia_device *link)
307 struct orinoco_private *priv = link->priv;
308 struct orinoco_pccard *card = priv->card;
309 hermes_t *hw = &priv->hw;
310 int last_fn, last_ret;
311 void __iomem *mem;
314 * In this loop, we scan the CIS for configuration table
315 * entries, each of which describes a valid card
316 * configuration, including voltage, IO window, memory window,
317 * and interrupt settings.
319 * We make no assumptions about the card to be configured: we
320 * use just the information available in the CIS. In an ideal
321 * world, this would work for any PCMCIA card, but it requires
322 * a complete and accurate CIS. In practice, a driver usually
323 * "knows" most of these things without consulting the CIS,
324 * and most client drivers will only use the CIS to fill in
325 * implementation-defined details.
327 last_ret = pcmcia_loop_config(link, spectrum_cs_config_check, NULL);
328 if (last_ret) {
329 if (!ignore_cis_vcc)
330 printk(KERN_ERR PFX "GetNextTuple(): No matching "
331 "CIS configuration. Maybe you need the "
332 "ignore_cis_vcc=1 parameter.\n");
333 cs_error(link, RequestIO, last_ret);
334 goto failed;
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.
342 CS_CHECK(RequestIRQ, pcmcia_request_irq(link, &link->irq));
344 /* We initialize the hermes structure before completing PCMCIA
345 * configuration just in case the interrupt handler gets
346 * called. */
347 mem = ioport_map(link->io.BasePort1, link->io.NumPorts1);
348 if (!mem)
349 goto cs_failed;
351 hermes_struct_init(hw, mem, HERMES_16BIT_REGSPACING);
354 * This actually configures the PCMCIA socket -- setting up
355 * the I/O windows and the interrupt mapping, and putting the
356 * card and host interface into "Memory and IO" mode.
358 CS_CHECK(RequestConfiguration,
359 pcmcia_request_configuration(link, &link->conf));
361 /* Ok, we have the configuration, prepare to register the netdev */
362 card->node.major = card->node.minor = 0;
364 /* Reset card */
365 if (spectrum_cs_hard_reset(priv) != 0)
366 goto failed;
368 /* Initialise the main driver */
369 if (orinoco_init(priv) != 0) {
370 printk(KERN_ERR PFX "orinoco_init() failed\n");
371 goto failed;
374 /* Register an interface with the stack */
375 if (orinoco_if_add(priv, link->io.BasePort1,
376 link->irq.AssignedIRQ, NULL) != 0) {
377 printk(KERN_ERR PFX "orinoco_if_add() failed\n");
378 goto failed;
381 /* At this point, the dev_node_t structure(s) needs to be
382 * initialized and arranged in a linked list at link->dev_node. */
383 strcpy(card->node.dev_name, priv->ndev->name);
384 link->dev_node = &card->node; /* link->dev_node being non-NULL is also
385 * used to indicate that the
386 * net_device has been registered */
387 return 0;
389 cs_failed:
390 cs_error(link, last_fn, last_ret);
392 failed:
393 spectrum_cs_release(link);
394 return -ENODEV;
395 } /* spectrum_cs_config */
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.
402 static void
403 spectrum_cs_release(struct pcmcia_device *link)
405 struct orinoco_private *priv = link->priv;
406 unsigned long flags;
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);
414 pcmcia_disable_device(link);
415 if (priv->hw.iobase)
416 ioport_unmap(priv->hw.iobase);
417 } /* spectrum_cs_release */
420 static int
421 spectrum_cs_suspend(struct pcmcia_device *link)
423 struct orinoco_private *priv = link->priv;
424 int err = 0;
426 /* Mark the device as stopped, to block IO until later */
427 orinoco_down(priv);
429 return err;
432 static int
433 spectrum_cs_resume(struct pcmcia_device *link)
435 struct orinoco_private *priv = link->priv;
436 int err = orinoco_up(priv);
438 return err;
442 /********************************************************************/
443 /* Module initialization */
444 /********************************************************************/
446 /* Can't be declared "const" or the whole __initdata section will
447 * become const */
448 static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
449 " (Pavel Roskin <proski@gnu.org>,"
450 " David Gibson <hermes@gibson.dropbear.id.au>, et al)";
452 static struct pcmcia_device_id spectrum_cs_ids[] = {
453 PCMCIA_DEVICE_MANF_CARD(0x026c, 0x0001), /* Symbol Spectrum24 LA4137 */
454 PCMCIA_DEVICE_MANF_CARD(0x0104, 0x0001), /* Socket Communications CF */
455 PCMCIA_DEVICE_PROD_ID12("Intel", "PRO/Wireless LAN PC Card", 0x816cc815, 0x6fbf459a), /* 2011B, not 2011 */
456 PCMCIA_DEVICE_NULL,
458 MODULE_DEVICE_TABLE(pcmcia, spectrum_cs_ids);
460 static struct pcmcia_driver orinoco_driver = {
461 .owner = THIS_MODULE,
462 .drv = {
463 .name = DRIVER_NAME,
465 .probe = spectrum_cs_probe,
466 .remove = spectrum_cs_detach,
467 .suspend = spectrum_cs_suspend,
468 .resume = spectrum_cs_resume,
469 .id_table = spectrum_cs_ids,
472 static int __init
473 init_spectrum_cs(void)
475 printk(KERN_DEBUG "%s\n", version);
477 return pcmcia_register_driver(&orinoco_driver);
480 static void __exit
481 exit_spectrum_cs(void)
483 pcmcia_unregister_driver(&orinoco_driver);
486 module_init(init_spectrum_cs);
487 module_exit(exit_spectrum_cs);