spectrum_cs.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  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.
  5. *
  6. * The driver implements Symbol firmware download. The rest is handled
  7. * in hermes.c and main.c.
  8. *
  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. *
  18. * See copyright notice in file main.c.
  19. */
  20. #define DRIVER_NAME "spectrum_cs"
  21. #define PFX DRIVER_NAME ": "
  22. #include <linux/module.h>
  23. #include <linux/kernel.h>
  24. #include <linux/init.h>
  25. #include <linux/delay.h>
  26. #include <pcmcia/cs_types.h>
  27. #include <pcmcia/cs.h>
  28. #include <pcmcia/cistpl.h>
  29. #include <pcmcia/cisreg.h>
  30. #include <pcmcia/ds.h>
  31. #include "orinoco.h"
  32. /********************************************************************/
  33. /* Module stuff */
  34. /********************************************************************/
  35. MODULE_AUTHOR("Pavel Roskin <proski@gnu.org>");
  36. MODULE_DESCRIPTION("Driver for Symbol Spectrum24 Trilogy cards with firmware downloader");
  37. MODULE_LICENSE("Dual MPL/GPL");
  38. /* Module parameters */
  39. /* Some D-Link cards have buggy CIS. They do work at 5v properly, but
  40. * don't have any CIS entry for it. This workaround it... */
  41. static int ignore_cis_vcc; /* = 0 */
  42. module_param(ignore_cis_vcc, int, 0);
  43. MODULE_PARM_DESC(ignore_cis_vcc, "Allow voltage mismatch between card and socket");
  44. /********************************************************************/
  45. /* Data structures */
  46. /********************************************************************/
  47. /* PCMCIA specific device information (goes in the card field of
  48. * struct orinoco_private */
  49. struct orinoco_pccard {
  50. struct pcmcia_device *p_dev;
  51. dev_node_t node;
  52. };
  53. /********************************************************************/
  54. /* Function prototypes */
  55. /********************************************************************/
  56. static int spectrum_cs_config(struct pcmcia_device *link);
  57. static void spectrum_cs_release(struct pcmcia_device *link);
  58. /* Constants for the CISREG_CCSR register */
  59. #define HCR_RUN 0x07 /* run firmware after reset */
  60. #define HCR_IDLE 0x0E /* don't run firmware after reset */
  61. #define HCR_MEM16 0x10 /* memory width bit, should be preserved */
  62. #define CS_CHECK(fn, ret) \
  63. do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
  64. /*
  65. * Reset the card using configuration registers COR and CCSR.
  66. * If IDLE is 1, stop the firmware, so that it can be safely rewritten.
  67. */
  68. static int
  69. spectrum_reset(struct pcmcia_device *link, int idle)
  70. {
  71. int last_ret, last_fn;
  72. conf_reg_t reg;
  73. u_int save_cor;
  74. /* Doing it if hardware is gone is guaranteed crash */
  75. if (!pcmcia_dev_present(link))
  76. return -ENODEV;
  77. /* Save original COR value */
  78. reg.Function = 0;
  79. reg.Action = CS_READ;
  80. reg.Offset = CISREG_COR;
  81. CS_CHECK(AccessConfigurationRegister,
  82. pcmcia_access_configuration_register(link, &reg));
  83. save_cor = reg.Value;
  84. /* Soft-Reset card */
  85. reg.Action = CS_WRITE;
  86. reg.Offset = CISREG_COR;
  87. reg.Value = (save_cor | COR_SOFT_RESET);
  88. CS_CHECK(AccessConfigurationRegister,
  89. pcmcia_access_configuration_register(link, &reg));
  90. udelay(1000);
  91. /* Read CCSR */
  92. reg.Action = CS_READ;
  93. reg.Offset = CISREG_CCSR;
  94. CS_CHECK(AccessConfigurationRegister,
  95. pcmcia_access_configuration_register(link, &reg));
  96. /*
  97. * Start or stop the firmware. Memory width bit should be
  98. * preserved from the value we've just read.
  99. */
  100. reg.Action = CS_WRITE;
  101. reg.Offset = CISREG_CCSR;
  102. reg.Value = (idle ? HCR_IDLE : HCR_RUN) | (reg.Value & HCR_MEM16);
  103. CS_CHECK(AccessConfigurationRegister,
  104. pcmcia_access_configuration_register(link, &reg));
  105. udelay(1000);
  106. /* Restore original COR configuration index */
  107. reg.Action = CS_WRITE;
  108. reg.Offset = CISREG_COR;
  109. reg.Value = (save_cor & ~COR_SOFT_RESET);
  110. CS_CHECK(AccessConfigurationRegister,
  111. pcmcia_access_configuration_register(link, &reg));
  112. udelay(1000);
  113. return 0;
  114. cs_failed:
  115. cs_error(link, last_fn, last_ret);
  116. return -ENODEV;
  117. }
  118. /********************************************************************/
  119. /* Device methods */
  120. /********************************************************************/
  121. static int
  122. spectrum_cs_hard_reset(struct orinoco_private *priv)
  123. {
  124. struct orinoco_pccard *card = priv->card;
  125. struct pcmcia_device *link = card->p_dev;
  126. /* Soft reset using COR and HCR */
  127. spectrum_reset(link, 0);
  128. return 0;
  129. }
  130. static int
  131. spectrum_cs_stop_firmware(struct orinoco_private *priv, int idle)
  132. {
  133. struct orinoco_pccard *card = priv->card;
  134. struct pcmcia_device *link = card->p_dev;
  135. return spectrum_reset(link, idle);
  136. }
  137. /********************************************************************/
  138. /* PCMCIA stuff */
  139. /********************************************************************/
  140. /*
  141. * This creates an "instance" of the driver, allocating local data
  142. * structures for one device. The device is registered with Card
  143. * Services.
  144. *
  145. * The dev_link structure is initialized, but we don't actually
  146. * configure the card at this point -- we wait until we receive a card
  147. * insertion event. */
  148. static int
  149. spectrum_cs_probe(struct pcmcia_device *link)
  150. {
  151. struct net_device *dev;
  152. struct orinoco_private *priv;
  153. struct orinoco_pccard *card;
  154. dev = alloc_orinocodev(sizeof(*card), &handle_to_dev(link),
  155. spectrum_cs_hard_reset,
  156. spectrum_cs_stop_firmware);
  157. if (!dev)
  158. return -ENOMEM;
  159. priv = netdev_priv(dev);
  160. card = priv->card;
  161. /* Link both structures together */
  162. card->p_dev = link;
  163. link->priv = dev;
  164. /* Interrupt setup */
  165. link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING | IRQ_HANDLE_PRESENT;
  166. link->irq.IRQInfo1 = IRQ_LEVEL_ID;
  167. link->irq.Handler = orinoco_interrupt;
  168. link->irq.Instance = dev;
  169. /* General socket configuration defaults can go here. In this
  170. * client, we assume very little, and rely on the CIS for
  171. * almost everything. In most clients, many details (i.e.,
  172. * number, sizes, and attributes of IO windows) are fixed by
  173. * the nature of the device, and can be hard-wired here. */
  174. link->conf.Attributes = 0;
  175. link->conf.IntType = INT_MEMORY_AND_IO;
  176. return spectrum_cs_config(link);
  177. } /* spectrum_cs_attach */
  178. /*
  179. * This deletes a driver "instance". The device is de-registered with
  180. * Card Services. If it has been released, all local data structures
  181. * are freed. Otherwise, the structures will be freed when the device
  182. * is released.
  183. */
  184. static void spectrum_cs_detach(struct pcmcia_device *link)
  185. {
  186. struct net_device *dev = link->priv;
  187. if (link->dev_node)
  188. unregister_netdev(dev);
  189. spectrum_cs_release(link);
  190. free_orinocodev(dev);
  191. } /* spectrum_cs_detach */
  192. /*
  193. * spectrum_cs_config() is scheduled to run after a CARD_INSERTION
  194. * event is received, to configure the PCMCIA socket, and to make the
  195. * device available to the system.
  196. */
  197. static int spectrum_cs_config_check(struct pcmcia_device *p_dev,
  198. cistpl_cftable_entry_t *cfg,
  199. cistpl_cftable_entry_t *dflt,
  200. unsigned int vcc,
  201. void *priv_data)
  202. {
  203. if (cfg->index == 0)
  204. goto next_entry;
  205. /* Use power settings for Vcc and Vpp if present */
  206. /* Note that the CIS values need to be rescaled */
  207. if (cfg->vcc.present & (1 << CISTPL_POWER_VNOM)) {
  208. if (vcc != cfg->vcc.param[CISTPL_POWER_VNOM] / 10000) {
  209. DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
  210. __func__, vcc,
  211. cfg->vcc.param[CISTPL_POWER_VNOM] / 10000);
  212. if (!ignore_cis_vcc)
  213. goto next_entry;
  214. }
  215. } else if (dflt->vcc.present & (1 << CISTPL_POWER_VNOM)) {
  216. if (vcc != dflt->vcc.param[CISTPL_POWER_VNOM] / 10000) {
  217. DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
  218. __func__, vcc,
  219. dflt->vcc.param[CISTPL_POWER_VNOM] / 10000);
  220. if (!ignore_cis_vcc)
  221. goto next_entry;
  222. }
  223. }
  224. if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM))
  225. p_dev->conf.Vpp =
  226. cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000;
  227. else if (dflt->vpp1.present & (1 << CISTPL_POWER_VNOM))
  228. p_dev->conf.Vpp =
  229. dflt->vpp1.param[CISTPL_POWER_VNOM] / 10000;
  230. /* Do we need to allocate an interrupt? */
  231. p_dev->conf.Attributes |= CONF_ENABLE_IRQ;
  232. /* IO window settings */
  233. p_dev->io.NumPorts1 = p_dev->io.NumPorts2 = 0;
  234. if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) {
  235. cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io;
  236. p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
  237. if (!(io->flags & CISTPL_IO_8BIT))
  238. p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
  239. if (!(io->flags & CISTPL_IO_16BIT))
  240. p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
  241. p_dev->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK;
  242. p_dev->io.BasePort1 = io->win[0].base;
  243. p_dev->io.NumPorts1 = io->win[0].len;
  244. if (io->nwin > 1) {
  245. p_dev->io.Attributes2 = p_dev->io.Attributes1;
  246. p_dev->io.BasePort2 = io->win[1].base;
  247. p_dev->io.NumPorts2 = io->win[1].len;
  248. }
  249. /* This reserves IO space but doesn't actually enable it */
  250. if (pcmcia_request_io(p_dev, &p_dev->io) != 0)
  251. goto next_entry;
  252. }
  253. return 0;
  254. next_entry:
  255. pcmcia_disable_device(p_dev);
  256. return -ENODEV;
  257. };
  258. static int
  259. spectrum_cs_config(struct pcmcia_device *link)
  260. {
  261. struct net_device *dev = link->priv;
  262. struct orinoco_private *priv = netdev_priv(dev);
  263. struct orinoco_pccard *card = priv->card;
  264. hermes_t *hw = &priv->hw;
  265. int last_fn, last_ret;
  266. void __iomem *mem;
  267. /*
  268. * In this loop, we scan the CIS for configuration table
  269. * entries, each of which describes a valid card
  270. * configuration, including voltage, IO window, memory window,
  271. * and interrupt settings.
  272. *
  273. * We make no assumptions about the card to be configured: we
  274. * use just the information available in the CIS. In an ideal
  275. * world, this would work for any PCMCIA card, but it requires
  276. * a complete and accurate CIS. In practice, a driver usually
  277. * "knows" most of these things without consulting the CIS,
  278. * and most client drivers will only use the CIS to fill in
  279. * implementation-defined details.
  280. */
  281. last_ret = pcmcia_loop_config(link, spectrum_cs_config_check, NULL);
  282. if (last_ret) {
  283. if (!ignore_cis_vcc)
  284. printk(KERN_ERR PFX "GetNextTuple(): No matching "
  285. "CIS configuration. Maybe you need the "
  286. "ignore_cis_vcc=1 parameter.\n");
  287. cs_error(link, RequestIO, last_ret);
  288. goto failed;
  289. }
  290. /*
  291. * Allocate an interrupt line. Note that this does not assign
  292. * a handler to the interrupt, unless the 'Handler' member of
  293. * the irq structure is initialized.
  294. */
  295. CS_CHECK(RequestIRQ, pcmcia_request_irq(link, &link->irq));
  296. /* We initialize the hermes structure before completing PCMCIA
  297. * configuration just in case the interrupt handler gets
  298. * called. */
  299. mem = ioport_map(link->io.BasePort1, link->io.NumPorts1);
  300. if (!mem)
  301. goto cs_failed;
  302. hermes_struct_init(hw, mem, HERMES_16BIT_REGSPACING);
  303. /*
  304. * This actually configures the PCMCIA socket -- setting up
  305. * the I/O windows and the interrupt mapping, and putting the
  306. * card and host interface into "Memory and IO" mode.
  307. */
  308. CS_CHECK(RequestConfiguration,
  309. pcmcia_request_configuration(link, &link->conf));
  310. /* Ok, we have the configuration, prepare to register the netdev */
  311. dev->base_addr = link->io.BasePort1;
  312. dev->irq = link->irq.AssignedIRQ;
  313. card->node.major = card->node.minor = 0;
  314. /* Reset card */
  315. if (spectrum_cs_hard_reset(priv) != 0)
  316. goto failed;
  317. SET_NETDEV_DEV(dev, &handle_to_dev(link));
  318. /* Tell the stack we exist */
  319. if (register_netdev(dev) != 0) {
  320. printk(KERN_ERR PFX "register_netdev() failed\n");
  321. goto failed;
  322. }
  323. /* At this point, the dev_node_t structure(s) needs to be
  324. * initialized and arranged in a linked list at link->dev_node. */
  325. strcpy(card->node.dev_name, dev->name);
  326. link->dev_node = &card->node; /* link->dev_node being non-NULL is also
  327. * used to indicate that the
  328. * net_device has been registered */
  329. /* Finally, report what we've done */
  330. printk(KERN_DEBUG "%s: " DRIVER_NAME " at %s, irq %d, io "
  331. "0x%04x-0x%04x\n", dev->name, dev_name(dev->dev.parent),
  332. link->irq.AssignedIRQ, link->io.BasePort1,
  333. link->io.BasePort1 + link->io.NumPorts1 - 1);
  334. return 0;
  335. cs_failed:
  336. cs_error(link, last_fn, last_ret);
  337. failed:
  338. spectrum_cs_release(link);
  339. return -ENODEV;
  340. } /* spectrum_cs_config */
  341. /*
  342. * After a card is removed, spectrum_cs_release() will unregister the
  343. * device, and release the PCMCIA configuration. If the device is
  344. * still open, this will be postponed until it is closed.
  345. */
  346. static void
  347. spectrum_cs_release(struct pcmcia_device *link)
  348. {
  349. struct net_device *dev = link->priv;
  350. struct orinoco_private *priv = netdev_priv(dev);
  351. unsigned long flags;
  352. /* We're committed to taking the device away now, so mark the
  353. * hardware as unavailable */
  354. spin_lock_irqsave(&priv->lock, flags);
  355. priv->hw_unavailable++;
  356. spin_unlock_irqrestore(&priv->lock, flags);
  357. pcmcia_disable_device(link);
  358. if (priv->hw.iobase)
  359. ioport_unmap(priv->hw.iobase);
  360. } /* spectrum_cs_release */
  361. static int
  362. spectrum_cs_suspend(struct pcmcia_device *link)
  363. {
  364. struct net_device *dev = link->priv;
  365. struct orinoco_private *priv = netdev_priv(dev);
  366. unsigned long flags;
  367. int err = 0;
  368. /* Mark the device as stopped, to block IO until later */
  369. spin_lock_irqsave(&priv->lock, flags);
  370. err = __orinoco_down(dev);
  371. if (err)
  372. printk(KERN_WARNING "%s: Error %d downing interface\n",
  373. dev->name, err);
  374. netif_device_detach(dev);
  375. priv->hw_unavailable++;
  376. spin_unlock_irqrestore(&priv->lock, flags);
  377. return err;
  378. }
  379. static int
  380. spectrum_cs_resume(struct pcmcia_device *link)
  381. {
  382. struct net_device *dev = link->priv;
  383. struct orinoco_private *priv = netdev_priv(dev);
  384. unsigned long flags;
  385. int err;
  386. err = orinoco_reinit_firmware(dev);
  387. if (err) {
  388. printk(KERN_ERR "%s: Error %d re-initializing firmware\n",
  389. dev->name, err);
  390. return -EIO;
  391. }
  392. spin_lock_irqsave(&priv->lock, flags);
  393. netif_device_attach(dev);
  394. priv->hw_unavailable--;
  395. if (priv->open && !priv->hw_unavailable) {
  396. err = __orinoco_up(dev);
  397. if (err)
  398. printk(KERN_ERR "%s: Error %d restarting card\n",
  399. dev->name, err);
  400. }
  401. spin_unlock_irqrestore(&priv->lock, flags);
  402. return 0;
  403. }
  404. /********************************************************************/
  405. /* Module initialization */
  406. /********************************************************************/
  407. /* Can't be declared "const" or the whole __initdata section will
  408. * become const */
  409. static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
  410. " (Pavel Roskin <proski@gnu.org>,"
  411. " David Gibson <hermes@gibson.dropbear.id.au>, et al)";
  412. static struct pcmcia_device_id spectrum_cs_ids[] = {
  413. PCMCIA_DEVICE_MANF_CARD(0x026c, 0x0001), /* Symbol Spectrum24 LA4137 */
  414. PCMCIA_DEVICE_MANF_CARD(0x0104, 0x0001), /* Socket Communications CF */
  415. PCMCIA_DEVICE_PROD_ID12("Intel", "PRO/Wireless LAN PC Card", 0x816cc815, 0x6fbf459a), /* 2011B, not 2011 */
  416. PCMCIA_DEVICE_NULL,
  417. };
  418. MODULE_DEVICE_TABLE(pcmcia, spectrum_cs_ids);
  419. static struct pcmcia_driver orinoco_driver = {
  420. .owner = THIS_MODULE,
  421. .drv = {
  422. .name = DRIVER_NAME,
  423. },
  424. .probe = spectrum_cs_probe,
  425. .remove = spectrum_cs_detach,
  426. .suspend = spectrum_cs_suspend,
  427. .resume = spectrum_cs_resume,
  428. .id_table = spectrum_cs_ids,
  429. };
  430. static int __init
  431. init_spectrum_cs(void)
  432. {
  433. printk(KERN_DEBUG "%s\n", version);
  434. return pcmcia_register_driver(&orinoco_driver);
  435. }
  436. static void __exit
  437. exit_spectrum_cs(void)
  438. {
  439. pcmcia_unregister_driver(&orinoco_driver);
  440. }
  441. module_init(init_spectrum_cs);
  442. module_exit(exit_spectrum_cs);