main.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. /*
  2. * IPWireless 3G PCMCIA Network Driver
  3. *
  4. * Original code
  5. * by Stephen Blackheath <stephen@blacksapphire.com>,
  6. * Ben Martel <benm@symmetric.co.nz>
  7. *
  8. * Copyrighted as follows:
  9. * Copyright (C) 2004 by Symmetric Systems Ltd (NZ)
  10. *
  11. * Various driver changes and rewrites, port to new kernels
  12. * Copyright (C) 2006-2007 Jiri Kosina
  13. *
  14. * Misc code cleanups and updates
  15. * Copyright (C) 2007 David Sterba
  16. */
  17. #include "hardware.h"
  18. #include "network.h"
  19. #include "main.h"
  20. #include "tty.h"
  21. #include <linux/delay.h>
  22. #include <linux/init.h>
  23. #include <linux/io.h>
  24. #include <linux/kernel.h>
  25. #include <linux/module.h>
  26. #include <linux/sched.h>
  27. #include <linux/slab.h>
  28. #include <pcmcia/cisreg.h>
  29. #include <pcmcia/device_id.h>
  30. #include <pcmcia/ss.h>
  31. #include <pcmcia/ds.h>
  32. static const struct pcmcia_device_id ipw_ids[] = {
  33. PCMCIA_DEVICE_MANF_CARD(0x02f2, 0x0100),
  34. PCMCIA_DEVICE_MANF_CARD(0x02f2, 0x0200),
  35. PCMCIA_DEVICE_NULL
  36. };
  37. MODULE_DEVICE_TABLE(pcmcia, ipw_ids);
  38. static void ipwireless_detach(struct pcmcia_device *link);
  39. /*
  40. * Module params
  41. */
  42. /* Debug mode: more verbose, print sent/recv bytes */
  43. int ipwireless_debug;
  44. int ipwireless_loopback;
  45. int ipwireless_out_queue = 10;
  46. module_param_named(debug, ipwireless_debug, int, 0);
  47. module_param_named(loopback, ipwireless_loopback, int, 0);
  48. module_param_named(out_queue, ipwireless_out_queue, int, 0);
  49. MODULE_PARM_DESC(debug, "switch on debug messages [0]");
  50. MODULE_PARM_DESC(loopback,
  51. "debug: enable ras_raw channel [0]");
  52. MODULE_PARM_DESC(out_queue, "debug: set size of outgoing PPP queue [10]");
  53. /* Executes in process context. */
  54. static void signalled_reboot_work(struct work_struct *work_reboot)
  55. {
  56. struct ipw_dev *ipw = container_of(work_reboot, struct ipw_dev,
  57. work_reboot);
  58. struct pcmcia_device *link = ipw->link;
  59. pcmcia_reset_card(link->socket);
  60. }
  61. static void signalled_reboot_callback(void *callback_data)
  62. {
  63. struct ipw_dev *ipw = (struct ipw_dev *) callback_data;
  64. /* Delegate to process context. */
  65. schedule_work(&ipw->work_reboot);
  66. }
  67. static int ipwireless_probe(struct pcmcia_device *p_dev, void *priv_data)
  68. {
  69. struct ipw_dev *ipw = priv_data;
  70. int ret;
  71. p_dev->resource[0]->flags &= ~IO_DATA_PATH_WIDTH;
  72. p_dev->resource[0]->flags |= IO_DATA_PATH_WIDTH_AUTO;
  73. /* 0x40 causes it to generate level mode interrupts. */
  74. /* 0x04 enables IREQ pin. */
  75. p_dev->config_index |= 0x44;
  76. p_dev->io_lines = 16;
  77. ret = pcmcia_request_io(p_dev);
  78. if (ret)
  79. return ret;
  80. if (!request_region(p_dev->resource[0]->start,
  81. resource_size(p_dev->resource[0]),
  82. IPWIRELESS_PCCARD_NAME)) {
  83. ret = -EBUSY;
  84. goto exit;
  85. }
  86. p_dev->resource[2]->flags |=
  87. WIN_DATA_WIDTH_16 | WIN_MEMORY_TYPE_CM | WIN_ENABLE;
  88. ret = pcmcia_request_window(p_dev, p_dev->resource[2], 0);
  89. if (ret != 0)
  90. goto exit1;
  91. ret = pcmcia_map_mem_page(p_dev, p_dev->resource[2], p_dev->card_addr);
  92. if (ret != 0)
  93. goto exit1;
  94. ipw->is_v2_card = resource_size(p_dev->resource[2]) == 0x100;
  95. ipw->common_memory = ioremap(p_dev->resource[2]->start,
  96. resource_size(p_dev->resource[2]));
  97. if (!request_mem_region(p_dev->resource[2]->start,
  98. resource_size(p_dev->resource[2]),
  99. IPWIRELESS_PCCARD_NAME)) {
  100. ret = -EBUSY;
  101. goto exit2;
  102. }
  103. p_dev->resource[3]->flags |= WIN_DATA_WIDTH_16 | WIN_MEMORY_TYPE_AM |
  104. WIN_ENABLE;
  105. p_dev->resource[3]->end = 0; /* this used to be 0x1000 */
  106. ret = pcmcia_request_window(p_dev, p_dev->resource[3], 0);
  107. if (ret != 0)
  108. goto exit3;
  109. ret = pcmcia_map_mem_page(p_dev, p_dev->resource[3], 0);
  110. if (ret != 0)
  111. goto exit3;
  112. ipw->attr_memory = ioremap(p_dev->resource[3]->start,
  113. resource_size(p_dev->resource[3]));
  114. if (!request_mem_region(p_dev->resource[3]->start,
  115. resource_size(p_dev->resource[3]),
  116. IPWIRELESS_PCCARD_NAME)) {
  117. ret = -EBUSY;
  118. goto exit4;
  119. }
  120. return 0;
  121. exit4:
  122. iounmap(ipw->attr_memory);
  123. exit3:
  124. release_mem_region(p_dev->resource[2]->start,
  125. resource_size(p_dev->resource[2]));
  126. exit2:
  127. iounmap(ipw->common_memory);
  128. exit1:
  129. release_region(p_dev->resource[0]->start,
  130. resource_size(p_dev->resource[0]));
  131. exit:
  132. pcmcia_disable_device(p_dev);
  133. return ret;
  134. }
  135. static int config_ipwireless(struct ipw_dev *ipw)
  136. {
  137. struct pcmcia_device *link = ipw->link;
  138. int ret = 0;
  139. ipw->is_v2_card = 0;
  140. link->config_flags |= CONF_AUTO_SET_IO | CONF_AUTO_SET_IOMEM |
  141. CONF_ENABLE_IRQ;
  142. ret = pcmcia_loop_config(link, ipwireless_probe, ipw);
  143. if (ret != 0)
  144. return ret;
  145. INIT_WORK(&ipw->work_reboot, signalled_reboot_work);
  146. ipwireless_init_hardware_v1(ipw->hardware, link->resource[0]->start,
  147. ipw->attr_memory, ipw->common_memory,
  148. ipw->is_v2_card, signalled_reboot_callback,
  149. ipw);
  150. ret = pcmcia_request_irq(link, ipwireless_interrupt);
  151. if (ret != 0)
  152. goto exit;
  153. printk(KERN_INFO IPWIRELESS_PCCARD_NAME ": Card type %s\n",
  154. ipw->is_v2_card ? "V2/V3" : "V1");
  155. printk(KERN_INFO IPWIRELESS_PCCARD_NAME
  156. ": I/O ports %pR, irq %d\n", link->resource[0],
  157. (unsigned int) link->irq);
  158. if (ipw->attr_memory && ipw->common_memory)
  159. printk(KERN_INFO IPWIRELESS_PCCARD_NAME
  160. ": attr memory %pR, common memory %pR\n",
  161. link->resource[3],
  162. link->resource[2]);
  163. ipw->network = ipwireless_network_create(ipw->hardware);
  164. if (!ipw->network)
  165. goto exit;
  166. ipw->tty = ipwireless_tty_create(ipw->hardware, ipw->network);
  167. if (!ipw->tty)
  168. goto exit;
  169. ipwireless_init_hardware_v2_v3(ipw->hardware);
  170. /*
  171. * Do the RequestConfiguration last, because it enables interrupts.
  172. * Then we don't get any interrupts before we're ready for them.
  173. */
  174. ret = pcmcia_enable_device(link);
  175. if (ret != 0)
  176. goto exit;
  177. return 0;
  178. exit:
  179. if (ipw->common_memory) {
  180. release_mem_region(link->resource[2]->start,
  181. resource_size(link->resource[2]));
  182. iounmap(ipw->common_memory);
  183. }
  184. if (ipw->attr_memory) {
  185. release_mem_region(link->resource[3]->start,
  186. resource_size(link->resource[3]));
  187. iounmap(ipw->attr_memory);
  188. }
  189. pcmcia_disable_device(link);
  190. return -1;
  191. }
  192. static void release_ipwireless(struct ipw_dev *ipw)
  193. {
  194. release_region(ipw->link->resource[0]->start,
  195. resource_size(ipw->link->resource[0]));
  196. if (ipw->common_memory) {
  197. release_mem_region(ipw->link->resource[2]->start,
  198. resource_size(ipw->link->resource[2]));
  199. iounmap(ipw->common_memory);
  200. }
  201. if (ipw->attr_memory) {
  202. release_mem_region(ipw->link->resource[3]->start,
  203. resource_size(ipw->link->resource[3]));
  204. iounmap(ipw->attr_memory);
  205. }
  206. pcmcia_disable_device(ipw->link);
  207. }
  208. /*
  209. * ipwireless_attach() creates an "instance" of the driver, allocating
  210. * local data structures for one device (one interface). The device
  211. * is registered with Card Services.
  212. *
  213. * The pcmcia_device structure is initialized, but we don't actually
  214. * configure the card at this point -- we wait until we receive a
  215. * card insertion event.
  216. */
  217. static int ipwireless_attach(struct pcmcia_device *link)
  218. {
  219. struct ipw_dev *ipw;
  220. int ret;
  221. ipw = kzalloc(sizeof(struct ipw_dev), GFP_KERNEL);
  222. if (!ipw)
  223. return -ENOMEM;
  224. ipw->link = link;
  225. link->priv = ipw;
  226. ipw->hardware = ipwireless_hardware_create();
  227. if (!ipw->hardware) {
  228. kfree(ipw);
  229. return -ENOMEM;
  230. }
  231. /* RegisterClient will call config_ipwireless */
  232. ret = config_ipwireless(ipw);
  233. if (ret != 0) {
  234. ipwireless_detach(link);
  235. return ret;
  236. }
  237. return 0;
  238. }
  239. /*
  240. * This deletes a driver "instance". The device is de-registered with
  241. * Card Services. If it has been released, all local data structures
  242. * are freed. Otherwise, the structures will be freed when the device
  243. * is released.
  244. */
  245. static void ipwireless_detach(struct pcmcia_device *link)
  246. {
  247. struct ipw_dev *ipw = link->priv;
  248. release_ipwireless(ipw);
  249. if (ipw->tty != NULL)
  250. ipwireless_tty_free(ipw->tty);
  251. if (ipw->network != NULL)
  252. ipwireless_network_free(ipw->network);
  253. if (ipw->hardware != NULL)
  254. ipwireless_hardware_free(ipw->hardware);
  255. kfree(ipw);
  256. }
  257. static struct pcmcia_driver me = {
  258. .owner = THIS_MODULE,
  259. .probe = ipwireless_attach,
  260. .remove = ipwireless_detach,
  261. .name = IPWIRELESS_PCCARD_NAME,
  262. .id_table = ipw_ids
  263. };
  264. /*
  265. * Module insertion : initialisation of the module.
  266. * Register the card with cardmgr...
  267. */
  268. static int __init init_ipwireless(void)
  269. {
  270. int ret;
  271. ret = ipwireless_tty_init();
  272. if (ret != 0)
  273. return ret;
  274. ret = pcmcia_register_driver(&me);
  275. if (ret != 0)
  276. ipwireless_tty_release();
  277. return ret;
  278. }
  279. /*
  280. * Module removal
  281. */
  282. static void __exit exit_ipwireless(void)
  283. {
  284. pcmcia_unregister_driver(&me);
  285. ipwireless_tty_release();
  286. }
  287. module_init(init_ipwireless);
  288. module_exit(exit_ipwireless);
  289. MODULE_AUTHOR(IPWIRELESS_PCMCIA_AUTHOR);
  290. MODULE_DESCRIPTION(IPWIRELESS_PCCARD_NAME " " IPWIRELESS_PCMCIA_VERSION);
  291. MODULE_LICENSE("GPL");