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/
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/cistpl.h>
29 #include <pcmcia/cisreg.h>
30 #include <pcmcia/ds.h>
34 /********************************************************************/
36 /********************************************************************/
39 MODULE_DESCRIPTION("Driver for Symbol Spectrum24 Trilogy cards with firmware downloader");
40 MODULE_LICENSE("Dual MPL/GPL");
42 /* Module parameters */
44 /* Some D-Link cards have buggy CIS. They do work at 5v properly, but
45 * don't have any CIS entry for it. This workaround it... */
46 static int ignore_cis_vcc; /* = 0 */
47 module_param(ignore_cis_vcc, int, 0);
48 MODULE_PARM_DESC(ignore_cis_vcc, "Allow voltage mismatch between card and socket");
50 /********************************************************************/
52 /********************************************************************/
54 /* PCMCIA specific device information (goes in the card field of
55 * struct orinoco_private */
56 struct orinoco_pccard {
57 struct pcmcia_device *p_dev;
60 /********************************************************************/
61 /* Function prototypes */
62 /********************************************************************/
64 static int spectrum_cs_config(struct pcmcia_device *link);
65 static void spectrum_cs_release(struct pcmcia_device *link);
67 /* Constants for the CISREG_CCSR register */
68 #define HCR_RUN 0x07 /* run firmware after reset */
69 #define HCR_IDLE 0x0E /* don't run firmware after reset */
70 #define HCR_MEM16 0x10 /* memory width bit, should be preserved */
74 * Reset the card using configuration registers COR and CCSR.
75 * If IDLE is 1, stop the firmware, so that it can be safely rewritten.
78 spectrum_reset(struct pcmcia_device *link, int idle)
84 /* Doing it if hardware is gone is guaranteed crash */
85 if (!pcmcia_dev_present(link))
88 /* Save original COR value */
89 ret = pcmcia_read_config_byte(link, CISREG_COR, &save_cor);
94 ret = pcmcia_write_config_byte(link, CISREG_COR,
95 (save_cor | COR_SOFT_RESET));
101 ret = pcmcia_read_config_byte(link, CISREG_CCSR, &ccsr);
106 * Start or stop the firmware. Memory width bit should be
107 * preserved from the value we've just read.
109 ccsr = (idle ? HCR_IDLE : HCR_RUN) | (ccsr & HCR_MEM16);
110 ret = pcmcia_write_config_byte(link, CISREG_CCSR, ccsr);
115 /* Restore original COR configuration index */
116 ret = pcmcia_write_config_byte(link, CISREG_COR,
117 (save_cor & ~COR_SOFT_RESET));
127 /********************************************************************/
129 /********************************************************************/
132 spectrum_cs_hard_reset(struct orinoco_private *priv)
134 struct orinoco_pccard *card = priv->card;
135 struct pcmcia_device *link = card->p_dev;
137 /* Soft reset using COR and HCR */
138 spectrum_reset(link, 0);
144 spectrum_cs_stop_firmware(struct orinoco_private *priv, int idle)
146 struct orinoco_pccard *card = priv->card;
147 struct pcmcia_device *link = card->p_dev;
149 return spectrum_reset(link, idle);
152 /********************************************************************/
154 /********************************************************************/
157 spectrum_cs_probe(struct pcmcia_device *link)
159 struct orinoco_private *priv;
160 struct orinoco_pccard *card;
162 priv = alloc_orinocodev(sizeof(*card), &link->dev,
163 spectrum_cs_hard_reset,
164 spectrum_cs_stop_firmware);
169 /* Link both structures together */
173 return spectrum_cs_config(link);
174 } /* spectrum_cs_attach */
176 static void spectrum_cs_detach(struct pcmcia_device *link)
178 struct orinoco_private *priv = link->priv;
180 orinoco_if_del(priv);
182 spectrum_cs_release(link);
184 free_orinocodev(priv);
185 } /* spectrum_cs_detach */
187 static int spectrum_cs_config_check(struct pcmcia_device *p_dev,
190 if (p_dev->config_index == 0)
193 return pcmcia_request_io(p_dev);
197 spectrum_cs_config(struct pcmcia_device *link)
199 struct orinoco_private *priv = link->priv;
200 hermes_t *hw = &priv->hw;
204 link->config_flags |= CONF_AUTO_SET_VPP | CONF_AUTO_CHECK_VCC |
205 CONF_AUTO_SET_IO | CONF_ENABLE_IRQ;
207 link->config_flags &= ~CONF_AUTO_CHECK_VCC;
208 ret = pcmcia_loop_config(link, spectrum_cs_config_check, NULL);
211 printk(KERN_ERR PFX "GetNextTuple(): No matching "
212 "CIS configuration. Maybe you need the "
213 "ignore_cis_vcc=1 parameter.\n");
217 mem = ioport_map(link->resource[0]->start,
218 resource_size(link->resource[0]));
222 /* We initialize the hermes structure before completing PCMCIA
223 * configuration just in case the interrupt handler gets
225 hermes_struct_init(hw, mem, HERMES_16BIT_REGSPACING);
226 hw->eeprom_pda = true;
228 ret = pcmcia_request_irq(link, orinoco_interrupt);
232 ret = pcmcia_enable_device(link);
237 if (spectrum_cs_hard_reset(priv) != 0)
240 /* Initialise the main driver */
241 if (orinoco_init(priv) != 0) {
242 printk(KERN_ERR PFX "orinoco_init() failed\n");
246 /* Register an interface with the stack */
247 if (orinoco_if_add(priv, link->resource[0]->start,
248 link->irq, NULL) != 0) {
249 printk(KERN_ERR PFX "orinoco_if_add() failed\n");
256 spectrum_cs_release(link);
258 } /* spectrum_cs_config */
261 spectrum_cs_release(struct pcmcia_device *link)
263 struct orinoco_private *priv = link->priv;
266 /* We're committed to taking the device away now, so mark the
267 * hardware as unavailable */
268 priv->hw.ops->lock_irqsave(&priv->lock, &flags);
269 priv->hw_unavailable++;
270 priv->hw.ops->unlock_irqrestore(&priv->lock, &flags);
272 pcmcia_disable_device(link);
274 ioport_unmap(priv->hw.iobase);
275 } /* spectrum_cs_release */
279 spectrum_cs_suspend(struct pcmcia_device *link)
281 struct orinoco_private *priv = link->priv;
284 /* Mark the device as stopped, to block IO until later */
291 spectrum_cs_resume(struct pcmcia_device *link)
293 struct orinoco_private *priv = link->priv;
294 int err = orinoco_up(priv);
300 /********************************************************************/
301 /* Module initialization */
302 /********************************************************************/
304 static struct pcmcia_device_id spectrum_cs_ids[] = {
305 PCMCIA_DEVICE_MANF_CARD(0x026c, 0x0001), /* Symbol Spectrum24 LA4137 */
306 PCMCIA_DEVICE_MANF_CARD(0x0104, 0x0001), /* Socket Communications CF */
307 PCMCIA_DEVICE_PROD_ID12("Intel", "PRO/Wireless LAN PC Card", 0x816cc815, 0x6fbf459a), /* 2011B, not 2011 */
310 MODULE_DEVICE_TABLE(pcmcia, spectrum_cs_ids);
312 static struct pcmcia_driver orinoco_driver = {
313 .owner = THIS_MODULE,
315 .probe = spectrum_cs_probe,
316 .remove = spectrum_cs_detach,
317 .suspend = spectrum_cs_suspend,
318 .resume = spectrum_cs_resume,
319 .id_table = spectrum_cs_ids,
323 init_spectrum_cs(void)
325 return pcmcia_register_driver(&orinoco_driver);
329 exit_spectrum_cs(void)
331 pcmcia_unregister_driver(&orinoco_driver);
334 module_init(init_spectrum_cs);
335 module_exit(exit_spectrum_cs);