spectrum_cs.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451
  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.h>
  27. #include <pcmcia/cistpl.h>
  28. #include <pcmcia/cisreg.h>
  29. #include <pcmcia/ds.h>
  30. #include "orinoco.h"
  31. /********************************************************************/
  32. /* Module stuff */
  33. /********************************************************************/
  34. MODULE_AUTHOR("Pavel Roskin <proski@gnu.org>");
  35. MODULE_DESCRIPTION("Driver for Symbol Spectrum24 Trilogy cards with firmware downloader");
  36. MODULE_LICENSE("Dual MPL/GPL");
  37. /* Module parameters */
  38. /* Some D-Link cards have buggy CIS. They do work at 5v properly, but
  39. * don't have any CIS entry for it. This workaround it... */
  40. static int ignore_cis_vcc; /* = 0 */
  41. module_param(ignore_cis_vcc, int, 0);
  42. MODULE_PARM_DESC(ignore_cis_vcc, "Allow voltage mismatch between card and socket");
  43. /********************************************************************/
  44. /* Data structures */
  45. /********************************************************************/
  46. /* PCMCIA specific device information (goes in the card field of
  47. * struct orinoco_private */
  48. struct orinoco_pccard {
  49. struct pcmcia_device *p_dev;
  50. };
  51. /********************************************************************/
  52. /* Function prototypes */
  53. /********************************************************************/
  54. static int spectrum_cs_config(struct pcmcia_device *link);
  55. static void spectrum_cs_release(struct pcmcia_device *link);
  56. /* Constants for the CISREG_CCSR register */
  57. #define HCR_RUN 0x07 /* run firmware after reset */
  58. #define HCR_IDLE 0x0E /* don't run firmware after reset */
  59. #define HCR_MEM16 0x10 /* memory width bit, should be preserved */
  60. /*
  61. * Reset the card using configuration registers COR and CCSR.
  62. * If IDLE is 1, stop the firmware, so that it can be safely rewritten.
  63. */
  64. static int
  65. spectrum_reset(struct pcmcia_device *link, int idle)
  66. {
  67. int ret;
  68. u8 save_cor;
  69. u8 ccsr;
  70. /* Doing it if hardware is gone is guaranteed crash */
  71. if (!pcmcia_dev_present(link))
  72. return -ENODEV;
  73. /* Save original COR value */
  74. ret = pcmcia_read_config_byte(link, CISREG_COR, &save_cor);
  75. if (ret)
  76. goto failed;
  77. /* Soft-Reset card */
  78. ret = pcmcia_write_config_byte(link, CISREG_COR,
  79. (save_cor | COR_SOFT_RESET));
  80. if (ret)
  81. goto failed;
  82. udelay(1000);
  83. /* Read CCSR */
  84. ret = pcmcia_read_config_byte(link, CISREG_CCSR, &ccsr);
  85. if (ret)
  86. goto failed;
  87. /*
  88. * Start or stop the firmware. Memory width bit should be
  89. * preserved from the value we've just read.
  90. */
  91. ccsr = (idle ? HCR_IDLE : HCR_RUN) | (ccsr & HCR_MEM16);
  92. ret = pcmcia_write_config_byte(link, CISREG_CCSR, ccsr);
  93. if (ret)
  94. goto failed;
  95. udelay(1000);
  96. /* Restore original COR configuration index */
  97. ret = pcmcia_write_config_byte(link, CISREG_COR,
  98. (save_cor & ~COR_SOFT_RESET));
  99. if (ret)
  100. goto failed;
  101. udelay(1000);
  102. return 0;
  103. failed:
  104. return -ENODEV;
  105. }
  106. /********************************************************************/
  107. /* Device methods */
  108. /********************************************************************/
  109. static int
  110. spectrum_cs_hard_reset(struct orinoco_private *priv)
  111. {
  112. struct orinoco_pccard *card = priv->card;
  113. struct pcmcia_device *link = card->p_dev;
  114. /* Soft reset using COR and HCR */
  115. spectrum_reset(link, 0);
  116. return 0;
  117. }
  118. static int
  119. spectrum_cs_stop_firmware(struct orinoco_private *priv, int idle)
  120. {
  121. struct orinoco_pccard *card = priv->card;
  122. struct pcmcia_device *link = card->p_dev;
  123. return spectrum_reset(link, idle);
  124. }
  125. /********************************************************************/
  126. /* PCMCIA stuff */
  127. /********************************************************************/
  128. /*
  129. * This creates an "instance" of the driver, allocating local data
  130. * structures for one device. The device is registered with Card
  131. * Services.
  132. *
  133. * The dev_link structure is initialized, but we don't actually
  134. * configure the card at this point -- we wait until we receive a card
  135. * insertion event. */
  136. static int
  137. spectrum_cs_probe(struct pcmcia_device *link)
  138. {
  139. struct orinoco_private *priv;
  140. struct orinoco_pccard *card;
  141. priv = alloc_orinocodev(sizeof(*card), &link->dev,
  142. spectrum_cs_hard_reset,
  143. spectrum_cs_stop_firmware);
  144. if (!priv)
  145. return -ENOMEM;
  146. card = priv->card;
  147. /* Link both structures together */
  148. card->p_dev = link;
  149. link->priv = priv;
  150. /* General socket configuration defaults can go here. In this
  151. * client, we assume very little, and rely on the CIS for
  152. * almost everything. In most clients, many details (i.e.,
  153. * number, sizes, and attributes of IO windows) are fixed by
  154. * the nature of the device, and can be hard-wired here. */
  155. link->conf.Attributes = 0;
  156. link->conf.IntType = INT_MEMORY_AND_IO;
  157. return spectrum_cs_config(link);
  158. } /* spectrum_cs_attach */
  159. /*
  160. * This deletes a driver "instance". The device is de-registered with
  161. * Card Services. If it has been released, all local data structures
  162. * are freed. Otherwise, the structures will be freed when the device
  163. * is released.
  164. */
  165. static void spectrum_cs_detach(struct pcmcia_device *link)
  166. {
  167. struct orinoco_private *priv = link->priv;
  168. orinoco_if_del(priv);
  169. spectrum_cs_release(link);
  170. free_orinocodev(priv);
  171. } /* spectrum_cs_detach */
  172. /*
  173. * spectrum_cs_config() is scheduled to run after a CARD_INSERTION
  174. * event is received, to configure the PCMCIA socket, and to make the
  175. * device available to the system.
  176. */
  177. static int spectrum_cs_config_check(struct pcmcia_device *p_dev,
  178. cistpl_cftable_entry_t *cfg,
  179. cistpl_cftable_entry_t *dflt,
  180. unsigned int vcc,
  181. void *priv_data)
  182. {
  183. if (cfg->index == 0)
  184. goto next_entry;
  185. /* Use power settings for Vcc and Vpp if present */
  186. /* Note that the CIS values need to be rescaled */
  187. if (cfg->vcc.present & (1 << CISTPL_POWER_VNOM)) {
  188. if (vcc != cfg->vcc.param[CISTPL_POWER_VNOM] / 10000) {
  189. DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
  190. __func__, vcc,
  191. cfg->vcc.param[CISTPL_POWER_VNOM] / 10000);
  192. if (!ignore_cis_vcc)
  193. goto next_entry;
  194. }
  195. } else if (dflt->vcc.present & (1 << CISTPL_POWER_VNOM)) {
  196. if (vcc != dflt->vcc.param[CISTPL_POWER_VNOM] / 10000) {
  197. DEBUG(2, "%s: Vcc mismatch (vcc = %d, CIS = %d)\n",
  198. __func__, vcc,
  199. dflt->vcc.param[CISTPL_POWER_VNOM] / 10000);
  200. if (!ignore_cis_vcc)
  201. goto next_entry;
  202. }
  203. }
  204. if (cfg->vpp1.present & (1 << CISTPL_POWER_VNOM))
  205. p_dev->conf.Vpp =
  206. cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000;
  207. else if (dflt->vpp1.present & (1 << CISTPL_POWER_VNOM))
  208. p_dev->conf.Vpp =
  209. dflt->vpp1.param[CISTPL_POWER_VNOM] / 10000;
  210. /* Do we need to allocate an interrupt? */
  211. p_dev->conf.Attributes |= CONF_ENABLE_IRQ;
  212. /* IO window settings */
  213. p_dev->resource[0]->end = p_dev->resource[1]->end = 0;
  214. if ((cfg->io.nwin > 0) || (dflt->io.nwin > 0)) {
  215. cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt->io;
  216. p_dev->io_lines = io->flags & CISTPL_IO_LINES_MASK;
  217. p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
  218. p_dev->resource[0]->flags |=
  219. pcmcia_io_cfg_data_width(io->flags);
  220. p_dev->resource[0]->start = io->win[0].base;
  221. p_dev->resource[0]->end = io->win[0].len;
  222. if (io->nwin > 1) {
  223. p_dev->resource[1]->flags = p_dev->resource[0]->flags;
  224. p_dev->resource[1]->start = io->win[1].base;
  225. p_dev->resource[1]->end = io->win[1].len;
  226. }
  227. /* This reserves IO space but doesn't actually enable it */
  228. if (pcmcia_request_io(p_dev) != 0)
  229. goto next_entry;
  230. }
  231. return 0;
  232. next_entry:
  233. pcmcia_disable_device(p_dev);
  234. return -ENODEV;
  235. };
  236. static int
  237. spectrum_cs_config(struct pcmcia_device *link)
  238. {
  239. struct orinoco_private *priv = link->priv;
  240. hermes_t *hw = &priv->hw;
  241. int ret;
  242. void __iomem *mem;
  243. /*
  244. * In this loop, we scan the CIS for configuration table
  245. * entries, each of which describes a valid card
  246. * configuration, including voltage, IO window, memory window,
  247. * and interrupt settings.
  248. *
  249. * We make no assumptions about the card to be configured: we
  250. * use just the information available in the CIS. In an ideal
  251. * world, this would work for any PCMCIA card, but it requires
  252. * a complete and accurate CIS. In practice, a driver usually
  253. * "knows" most of these things without consulting the CIS,
  254. * and most client drivers will only use the CIS to fill in
  255. * implementation-defined details.
  256. */
  257. ret = pcmcia_loop_config(link, spectrum_cs_config_check, NULL);
  258. if (ret) {
  259. if (!ignore_cis_vcc)
  260. printk(KERN_ERR PFX "GetNextTuple(): No matching "
  261. "CIS configuration. Maybe you need the "
  262. "ignore_cis_vcc=1 parameter.\n");
  263. goto failed;
  264. }
  265. ret = pcmcia_request_irq(link, orinoco_interrupt);
  266. if (ret)
  267. goto failed;
  268. /* We initialize the hermes structure before completing PCMCIA
  269. * configuration just in case the interrupt handler gets
  270. * called. */
  271. mem = ioport_map(link->resource[0]->start,
  272. resource_size(link->resource[0]));
  273. if (!mem)
  274. goto failed;
  275. hermes_struct_init(hw, mem, HERMES_16BIT_REGSPACING);
  276. hw->eeprom_pda = true;
  277. /*
  278. * This actually configures the PCMCIA socket -- setting up
  279. * the I/O windows and the interrupt mapping, and putting the
  280. * card and host interface into "Memory and IO" mode.
  281. */
  282. ret = pcmcia_request_configuration(link, &link->conf);
  283. if (ret)
  284. goto failed;
  285. /* Reset card */
  286. if (spectrum_cs_hard_reset(priv) != 0)
  287. goto failed;
  288. /* Initialise the main driver */
  289. if (orinoco_init(priv) != 0) {
  290. printk(KERN_ERR PFX "orinoco_init() failed\n");
  291. goto failed;
  292. }
  293. /* Register an interface with the stack */
  294. if (orinoco_if_add(priv, link->resource[0]->start,
  295. link->irq, NULL) != 0) {
  296. printk(KERN_ERR PFX "orinoco_if_add() failed\n");
  297. goto failed;
  298. }
  299. return 0;
  300. failed:
  301. spectrum_cs_release(link);
  302. return -ENODEV;
  303. } /* spectrum_cs_config */
  304. /*
  305. * After a card is removed, spectrum_cs_release() will unregister the
  306. * device, and release the PCMCIA configuration. If the device is
  307. * still open, this will be postponed until it is closed.
  308. */
  309. static void
  310. spectrum_cs_release(struct pcmcia_device *link)
  311. {
  312. struct orinoco_private *priv = link->priv;
  313. unsigned long flags;
  314. /* We're committed to taking the device away now, so mark the
  315. * hardware as unavailable */
  316. priv->hw.ops->lock_irqsave(&priv->lock, &flags);
  317. priv->hw_unavailable++;
  318. priv->hw.ops->unlock_irqrestore(&priv->lock, &flags);
  319. pcmcia_disable_device(link);
  320. if (priv->hw.iobase)
  321. ioport_unmap(priv->hw.iobase);
  322. } /* spectrum_cs_release */
  323. static int
  324. spectrum_cs_suspend(struct pcmcia_device *link)
  325. {
  326. struct orinoco_private *priv = link->priv;
  327. int err = 0;
  328. /* Mark the device as stopped, to block IO until later */
  329. orinoco_down(priv);
  330. return err;
  331. }
  332. static int
  333. spectrum_cs_resume(struct pcmcia_device *link)
  334. {
  335. struct orinoco_private *priv = link->priv;
  336. int err = orinoco_up(priv);
  337. return err;
  338. }
  339. /********************************************************************/
  340. /* Module initialization */
  341. /********************************************************************/
  342. /* Can't be declared "const" or the whole __initdata section will
  343. * become const */
  344. static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
  345. " (Pavel Roskin <proski@gnu.org>,"
  346. " David Gibson <hermes@gibson.dropbear.id.au>, et al)";
  347. static struct pcmcia_device_id spectrum_cs_ids[] = {
  348. PCMCIA_DEVICE_MANF_CARD(0x026c, 0x0001), /* Symbol Spectrum24 LA4137 */
  349. PCMCIA_DEVICE_MANF_CARD(0x0104, 0x0001), /* Socket Communications CF */
  350. PCMCIA_DEVICE_PROD_ID12("Intel", "PRO/Wireless LAN PC Card", 0x816cc815, 0x6fbf459a), /* 2011B, not 2011 */
  351. PCMCIA_DEVICE_NULL,
  352. };
  353. MODULE_DEVICE_TABLE(pcmcia, spectrum_cs_ids);
  354. static struct pcmcia_driver orinoco_driver = {
  355. .owner = THIS_MODULE,
  356. .drv = {
  357. .name = DRIVER_NAME,
  358. },
  359. .probe = spectrum_cs_probe,
  360. .remove = spectrum_cs_detach,
  361. .suspend = spectrum_cs_suspend,
  362. .resume = spectrum_cs_resume,
  363. .id_table = spectrum_cs_ids,
  364. };
  365. static int __init
  366. init_spectrum_cs(void)
  367. {
  368. printk(KERN_DEBUG "%s\n", version);
  369. return pcmcia_register_driver(&orinoco_driver);
  370. }
  371. static void __exit
  372. exit_spectrum_cs(void)
  373. {
  374. pcmcia_unregister_driver(&orinoco_driver);
  375. }
  376. module_init(init_spectrum_cs);
  377. module_exit(exit_spectrum_cs);