airport.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:8k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* airport.c 0.11b
  2.  *
  3.  * A driver for "Hermes" chipset based Apple Airport wireless
  4.  * card.
  5.  *
  6.  * Copyright notice & release notes in file orinoco.c
  7.  * 
  8.  * Note specific to airport stub:
  9.  * 
  10.  *  0.05 : first version of the new split driver
  11.  *  0.06 : fix possible hang on powerup, add sleep support
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/module.h>
  15. #include <linux/kernel.h>
  16. #include <linux/init.h>
  17. #include <linux/sched.h>
  18. #include <linux/ptrace.h>
  19. #include <linux/slab.h>
  20. #include <linux/string.h>
  21. #include <linux/timer.h>
  22. #include <linux/ioport.h>
  23. #include <asm/uaccess.h>
  24. #include <asm/io.h>
  25. #include <asm/system.h>
  26. #include <linux/proc_fs.h>
  27. #include <linux/netdevice.h>
  28. #include <linux/if_arp.h>
  29. #include <linux/etherdevice.h>
  30. #include <linux/wireless.h>
  31. #include <linux/list.h>
  32. #include <linux/adb.h>
  33. #include <linux/pmu.h>
  34. #include <asm/prom.h>
  35. #include <asm/machdep.h>
  36. #include <asm/pmac_feature.h>
  37. #include <asm/irq.h>
  38. #include "hermes.h"
  39. #include "orinoco.h"
  40. static char version[] __initdata = "airport.c 0.11b (Benjamin Herrenschmidt <benh@kernel.crashing.org>)";
  41. MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
  42. MODULE_DESCRIPTION("Driver for the Apple Airport wireless card.");
  43. MODULE_LICENSE("Dual MPL/GPL");
  44. EXPORT_NO_SYMBOLS;
  45. #define AIRPORT_IO_LEN (0x1000) /* one page */
  46. struct airport {
  47. struct device_node* node;
  48. void *vaddr;
  49. int irq_requested;
  50. int ndev_registered;
  51. int open;
  52. };
  53. #ifdef CONFIG_PMAC_PBOOK
  54. static int airport_sleep_notify(struct pmu_sleep_notifier *self, int when);
  55. static struct pmu_sleep_notifier airport_sleep_notifier = {
  56. airport_sleep_notify, SLEEP_LEVEL_NET,
  57. };
  58. #endif
  59. /*
  60.  * Function prototypes
  61.  */
  62. static struct net_device *airport_attach(struct device_node *of_node);
  63. static void airport_detach(struct net_device *dev);
  64. static int airport_open(struct net_device *dev);
  65. static int airport_stop(struct net_device *dev);
  66. /*
  67.    A linked list of "instances" of the dummy device.  Each actual
  68.    PCMCIA card corresponds to one device instance, and is described
  69.    by one dev_link_t structure (defined in ds.h).
  70.    You may not want to use a linked list for this -- for example, the
  71.    memory card driver uses an array of dev_link_t pointers, where minor
  72.    device numbers are used to derive the corresponding array index.
  73. */
  74. static struct net_device *airport_dev;
  75. static int
  76. airport_open(struct net_device *dev)
  77. {
  78. struct orinoco_private *priv = dev->priv;
  79. struct airport* card = (struct airport *)priv->card;
  80. int rc;
  81. TRACE_ENTER(dev->name);
  82. netif_device_attach(dev);
  83. rc = orinoco_reset(priv);
  84. if (rc)
  85. airport_stop(dev);
  86. else {
  87. card->open = 1;
  88. netif_start_queue(dev);
  89. }
  90. TRACE_EXIT(dev->name);
  91. return rc;
  92. }
  93. static int
  94. airport_stop(struct net_device *dev)
  95. {
  96. struct orinoco_private *priv = dev->priv;
  97. struct airport* card = (struct airport *)priv->card;
  98. TRACE_ENTER(dev->name);
  99. netif_stop_queue(dev);
  100. orinoco_shutdown(priv);
  101. card->open = 0;
  102. TRACE_EXIT(dev->name);
  103. return 0;
  104. }
  105. #ifdef CONFIG_PMAC_PBOOK
  106. static int
  107. airport_sleep_notify(struct pmu_sleep_notifier *self, int when)
  108. {
  109. struct net_device *dev = airport_dev;
  110. struct orinoco_private *priv = (struct orinoco_private *)dev->priv;
  111. struct hermes *hw = &priv->hw;
  112. struct airport* card = (struct airport *)priv->card;
  113. int rc;
  114. if (! airport_dev)
  115. return PBOOK_SLEEP_OK;
  116. switch (when) {
  117. case PBOOK_SLEEP_REQUEST:
  118. break;
  119. case PBOOK_SLEEP_REJECT:
  120. break;
  121. case PBOOK_SLEEP_NOW:
  122. printk(KERN_INFO "%s: Airport entering sleep moden", dev->name);
  123. if (card->open) {
  124. netif_stop_queue(dev);
  125. orinoco_shutdown(priv);
  126. netif_device_detach(dev);
  127. }
  128. disable_irq(dev->irq);
  129. pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE, card->node, 0, 0);
  130. break;
  131. case PBOOK_WAKE:
  132. printk(KERN_INFO "%s: Airport waking upn", dev->name);
  133. pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE, card->node, 0, 1);
  134. mdelay(200);
  135. hermes_reset(hw);
  136. rc = orinoco_reset(priv);
  137. if (rc)
  138. printk(KERN_ERR "airport: Error %d re-initing card !n", rc);
  139. else if (card->open)
  140. netif_device_attach(dev);
  141. enable_irq(dev->irq);
  142. break;
  143. }
  144. return PBOOK_SLEEP_OK;
  145. }
  146. #endif /* CONFIG_PMAC_PBOOK */
  147. static struct net_device *
  148. airport_attach(struct device_node* of_node)
  149. {
  150. struct orinoco_private *priv;
  151. struct net_device *dev;
  152. struct airport *card;
  153. unsigned long phys_addr;
  154. hermes_t *hw;
  155. TRACE_ENTER("orinoco");
  156. if (of_node->n_addrs < 1 || of_node->n_intrs < 1) {
  157. printk(KERN_ERR "airport: wrong interrupt/addresses in OF treen");
  158. return NULL;
  159. }
  160. /* Allocate space for private device-specific data */
  161. dev = alloc_orinocodev(sizeof(*card));
  162. if (! dev) {
  163. printk(KERN_ERR "airport: can't allocate device datasn");
  164. return NULL;
  165. }
  166. priv = dev->priv;
  167. card = priv->card;
  168. hw = &priv->hw;
  169. card->node = of_node;
  170. if (! request_OF_resource(of_node, 0, " (airport)")) {
  171. printk(KERN_ERR "airport: can't request IO resource !n");
  172. kfree(dev);
  173. return NULL;
  174. }
  175. dev->name[0] = ''; /* register_netdev will give us an ethX name */
  176. SET_MODULE_OWNER(dev);
  177. /* Overrides */
  178. dev->open = airport_open;
  179. dev->stop = airport_stop;
  180. /* Setup interrupts & base address */
  181. dev->irq = of_node->intrs[0].line;
  182. phys_addr = of_node->addrs[0].address; /* Physical address */
  183. dev->base_addr = phys_addr;
  184. card->vaddr = ioremap(phys_addr, AIRPORT_IO_LEN);
  185. if (! card->vaddr) {
  186. printk("airport: ioremap() failedn");
  187. goto failed;
  188. }
  189. hermes_struct_init(hw, (ulong)card->vaddr,
  190. HERMES_MEM, HERMES_16BIT_REGSPACING);
  191. /* Power up card */
  192. pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE, card->node, 0, 1);
  193. current->state = TASK_UNINTERRUPTIBLE;
  194. schedule_timeout(HZ);
  195. /* Reset it before we get the interrupt */
  196. hermes_reset(hw);
  197. if (request_irq(dev->irq, orinoco_interrupt, 0, "Airport", (void *)priv)) {
  198. printk(KERN_ERR "airport: Couldn't get IRQ %dn", dev->irq);
  199. goto failed;
  200. }
  201. card->irq_requested = 1;
  202. /* Tell the stack we exist */
  203. if (register_netdev(dev) != 0) {
  204. printk(KERN_ERR "airport: register_netdev() failedn");
  205. goto failed;
  206. }
  207. printk(KERN_DEBUG "airport: card registered for interface %sn", dev->name);
  208. card->ndev_registered = 1;
  209. /* And give us the proc nodes for debugging */
  210. if (orinoco_proc_dev_init(priv) != 0)
  211. printk(KERN_ERR "airport: Failed to create /proc node for %sn",
  212.        dev->name);
  213. #ifdef CONFIG_PMAC_PBOOK
  214. pmu_register_sleep_notifier(&airport_sleep_notifier);
  215. #endif
  216. return dev;
  217. failed:
  218. airport_detach(dev);
  219. return NULL;
  220. } /* airport_attach */
  221. /*======================================================================
  222.   This deletes a driver "instance".  
  223.   ======================================================================*/
  224. static void
  225. airport_detach(struct net_device *dev)
  226. {
  227. struct orinoco_private *priv = dev->priv;
  228. struct airport *card = priv->card;
  229. /* Unregister proc entry */
  230. orinoco_proc_dev_cleanup(priv);
  231. #ifdef CONFIG_PMAC_PBOOK
  232. pmu_unregister_sleep_notifier(&airport_sleep_notifier);
  233. #endif
  234. if (card->ndev_registered)
  235. unregister_netdev(dev);
  236. card->ndev_registered = 0;
  237. if (card->irq_requested)
  238. free_irq(dev->irq, priv);
  239. card->irq_requested = 0;
  240. if (card->vaddr)
  241. iounmap(card->vaddr);
  242. card->vaddr = 0;
  243. dev->base_addr = 0;
  244. release_OF_resource(card->node, 0);
  245. pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE, card->node, 0, 0);
  246. current->state = TASK_UNINTERRUPTIBLE;
  247. schedule_timeout(HZ);
  248. kfree(dev);
  249. } /* airport_detach */
  250. static int __init
  251. init_airport(void)
  252. {
  253. struct device_node* airport_node;
  254. printk(KERN_DEBUG "%sn", version);
  255. MOD_INC_USE_COUNT;
  256. /* Lookup card in device tree */
  257. airport_node = find_devices("radio");
  258. if (airport_node && !strcmp(airport_node->parent->name, "mac-io"))
  259. airport_dev = airport_attach(airport_node);
  260. MOD_DEC_USE_COUNT;
  261. return airport_dev ? 0 : -ENODEV;
  262. }
  263. static void __exit
  264. exit_airport(void)
  265. {
  266. if (airport_dev)
  267. airport_detach(airport_dev);
  268. airport_dev = NULL;
  269. }
  270. module_init(init_airport);
  271. module_exit(exit_airport);