spectrum_cs.c 13 KB

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