Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* airport.c |
| 2 | * |
| 3 | * A driver for "Hermes" chipset based Apple Airport wireless |
| 4 | * card. |
| 5 | * |
David Kilroy | 47445cb | 2009-02-04 23:05:48 +0000 | [diff] [blame] | 6 | * Copyright notice & release notes in file main.c |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 7 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * Note specific to airport stub: |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 9 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * 0.05 : first version of the new split driver |
| 11 | * 0.06 : fix possible hang on powerup, add sleep support |
| 12 | */ |
| 13 | |
| 14 | #define DRIVER_NAME "airport" |
| 15 | #define PFX DRIVER_NAME ": " |
| 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/module.h> |
| 18 | #include <linux/kernel.h> |
| 19 | #include <linux/init.h> |
Pavel Roskin | ef846bf | 2005-09-23 04:18:07 -0400 | [diff] [blame] | 20 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <asm/pmac_feature.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | #include "orinoco.h" |
| 24 | |
| 25 | #define AIRPORT_IO_LEN (0x1000) /* one page */ |
| 26 | |
| 27 | struct airport { |
| 28 | struct macio_dev *mdev; |
| 29 | void __iomem *vaddr; |
David Kilroy | ef96b5c | 2009-06-18 23:21:29 +0100 | [diff] [blame] | 30 | unsigned int irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | int irq_requested; |
| 32 | int ndev_registered; |
| 33 | }; |
| 34 | |
| 35 | static int |
Pavel Machek | 05adc3b | 2005-04-16 15:25:25 -0700 | [diff] [blame] | 36 | airport_suspend(struct macio_dev *mdev, pm_message_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | { |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 38 | struct orinoco_private *priv = dev_get_drvdata(&mdev->ofdev.dev); |
| 39 | struct net_device *dev = priv->ndev; |
David Kilroy | ef96b5c | 2009-06-18 23:21:29 +0100 | [diff] [blame] | 40 | struct airport *card = priv->card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | unsigned long flags; |
| 42 | int err; |
| 43 | |
| 44 | printk(KERN_DEBUG "%s: Airport entering sleep mode\n", dev->name); |
| 45 | |
| 46 | err = orinoco_lock(priv, &flags); |
| 47 | if (err) { |
| 48 | printk(KERN_ERR "%s: hw_unavailable on PBOOK_SLEEP_NOW\n", |
| 49 | dev->name); |
| 50 | return 0; |
| 51 | } |
| 52 | |
David Kilroy | 6415f7d | 2009-06-18 23:21:30 +0100 | [diff] [blame] | 53 | orinoco_down(priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | orinoco_unlock(priv, &flags); |
| 55 | |
David Kilroy | ef96b5c | 2009-06-18 23:21:29 +0100 | [diff] [blame] | 56 | disable_irq(card->irq); |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 57 | pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE, |
| 58 | macio_get_of_node(mdev), 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | return 0; |
| 61 | } |
| 62 | |
| 63 | static int |
| 64 | airport_resume(struct macio_dev *mdev) |
| 65 | { |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 66 | struct orinoco_private *priv = dev_get_drvdata(&mdev->ofdev.dev); |
| 67 | struct net_device *dev = priv->ndev; |
David Kilroy | ef96b5c | 2009-06-18 23:21:29 +0100 | [diff] [blame] | 68 | struct airport *card = priv->card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | unsigned long flags; |
| 70 | int err; |
| 71 | |
| 72 | printk(KERN_DEBUG "%s: Airport waking up\n", dev->name); |
| 73 | |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 74 | pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE, |
| 75 | macio_get_of_node(mdev), 0, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | msleep(200); |
| 77 | |
David Kilroy | ef96b5c | 2009-06-18 23:21:29 +0100 | [diff] [blame] | 78 | enable_irq(card->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
David Kilroy | bcad6e8 | 2010-05-01 14:05:40 +0100 | [diff] [blame] | 80 | priv->hw.ops->lock_irqsave(&priv->lock, &flags); |
David Kilroy | 6415f7d | 2009-06-18 23:21:30 +0100 | [diff] [blame] | 81 | err = orinoco_up(priv); |
David Kilroy | bcad6e8 | 2010-05-01 14:05:40 +0100 | [diff] [blame] | 82 | priv->hw.ops->unlock_irqrestore(&priv->lock, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
David Kilroy | 6415f7d | 2009-06-18 23:21:30 +0100 | [diff] [blame] | 84 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | static int |
| 88 | airport_detach(struct macio_dev *mdev) |
| 89 | { |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 90 | struct orinoco_private *priv = dev_get_drvdata(&mdev->ofdev.dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | struct airport *card = priv->card; |
| 92 | |
| 93 | if (card->ndev_registered) |
David Kilroy | 5381956 | 2009-06-18 23:21:28 +0100 | [diff] [blame] | 94 | orinoco_if_del(priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | card->ndev_registered = 0; |
| 96 | |
| 97 | if (card->irq_requested) |
David Kilroy | ef96b5c | 2009-06-18 23:21:29 +0100 | [diff] [blame] | 98 | free_irq(card->irq, priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | card->irq_requested = 0; |
| 100 | |
| 101 | if (card->vaddr) |
| 102 | iounmap(card->vaddr); |
| 103 | card->vaddr = NULL; |
| 104 | |
| 105 | macio_release_resource(mdev, 0); |
| 106 | |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 107 | pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE, |
| 108 | macio_get_of_node(mdev), 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | ssleep(1); |
| 110 | |
| 111 | macio_set_drvdata(mdev, NULL); |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 112 | free_orinocodev(priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
| 114 | return 0; |
| 115 | } |
| 116 | |
| 117 | static int airport_hard_reset(struct orinoco_private *priv) |
| 118 | { |
| 119 | /* It would be nice to power cycle the Airport for a real hard |
| 120 | * reset, but for some reason although it appears to |
| 121 | * re-initialize properly, it falls in a screaming heap |
| 122 | * shortly afterwards. */ |
| 123 | #if 0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | struct airport *card = priv->card; |
| 125 | |
| 126 | /* Vitally important. If we don't do this it seems we get an |
| 127 | * interrupt somewhere during the power cycle, since |
| 128 | * hw_unavailable is already set it doesn't get ACKed, we get |
Michael Opdenacker | 59c5159 | 2007-05-09 08:57:56 +0200 | [diff] [blame] | 129 | * into an interrupt loop and the PMU decides to turn us |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | * off. */ |
David Kilroy | ef96b5c | 2009-06-18 23:21:29 +0100 | [diff] [blame] | 131 | disable_irq(card->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 133 | pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE, |
| 134 | macio_get_of_node(card->mdev), 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | ssleep(1); |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 136 | pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE, |
| 137 | macio_get_of_node(card->mdev), 0, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | ssleep(1); |
| 139 | |
David Kilroy | ef96b5c | 2009-06-18 23:21:29 +0100 | [diff] [blame] | 140 | enable_irq(card->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | ssleep(1); |
| 142 | #endif |
| 143 | |
| 144 | return 0; |
| 145 | } |
| 146 | |
| 147 | static int |
Jeff Mahoney | 5e65577 | 2005-07-06 15:44:41 -0400 | [diff] [blame] | 148 | airport_attach(struct macio_dev *mdev, const struct of_device_id *match) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | { |
| 150 | struct orinoco_private *priv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | struct airport *card; |
| 152 | unsigned long phys_addr; |
Pavel Roskin | 933d594 | 2011-07-13 11:19:57 -0400 | [diff] [blame] | 153 | struct hermes *hw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
| 155 | if (macio_resource_count(mdev) < 1 || macio_irq_count(mdev) < 1) { |
| 156 | printk(KERN_ERR PFX "Wrong interrupt/addresses in OF tree\n"); |
| 157 | return -ENODEV; |
| 158 | } |
| 159 | |
| 160 | /* Allocate space for private device-specific data */ |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 161 | priv = alloc_orinocodev(sizeof(*card), &mdev->ofdev.dev, |
| 162 | airport_hard_reset, NULL); |
| 163 | if (!priv) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | printk(KERN_ERR PFX "Cannot allocate network device\n"); |
| 165 | return -ENODEV; |
| 166 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | card = priv->card; |
| 168 | |
| 169 | hw = &priv->hw; |
| 170 | card->mdev = mdev; |
| 171 | |
David Kilroy | 5381956 | 2009-06-18 23:21:28 +0100 | [diff] [blame] | 172 | if (macio_request_resource(mdev, 0, DRIVER_NAME)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | printk(KERN_ERR PFX "can't request IO resource !\n"); |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 174 | free_orinocodev(priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | return -EBUSY; |
| 176 | } |
| 177 | |
David Kilroy | a260836 | 2009-06-18 23:21:23 +0100 | [diff] [blame] | 178 | macio_set_drvdata(mdev, priv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | |
| 180 | /* Setup interrupts & base address */ |
David Kilroy | ef96b5c | 2009-06-18 23:21:29 +0100 | [diff] [blame] | 181 | card->irq = macio_irq(mdev, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | phys_addr = macio_resource_start(mdev, 0); /* Physical address */ |
| 183 | printk(KERN_DEBUG PFX "Physical address %lx\n", phys_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | card->vaddr = ioremap(phys_addr, AIRPORT_IO_LEN); |
| 185 | if (!card->vaddr) { |
| 186 | printk(KERN_ERR PFX "ioremap() failed\n"); |
| 187 | goto failed; |
| 188 | } |
| 189 | |
| 190 | hermes_struct_init(hw, card->vaddr, HERMES_16BIT_REGSPACING); |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | /* Power up card */ |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 193 | pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE, |
| 194 | macio_get_of_node(mdev), 0, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | ssleep(1); |
| 196 | |
| 197 | /* Reset it before we get the interrupt */ |
David Kilroy | b42f207 | 2010-05-01 14:05:38 +0100 | [diff] [blame] | 198 | hw->ops->init(hw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
David Kilroy | ef96b5c | 2009-06-18 23:21:29 +0100 | [diff] [blame] | 200 | if (request_irq(card->irq, orinoco_interrupt, 0, DRIVER_NAME, priv)) { |
| 201 | printk(KERN_ERR PFX "Couldn't get IRQ %d\n", card->irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | goto failed; |
| 203 | } |
| 204 | card->irq_requested = 1; |
| 205 | |
David Kilroy | 8e63826 | 2009-06-18 23:21:24 +0100 | [diff] [blame] | 206 | /* Initialise the main driver */ |
| 207 | if (orinoco_init(priv) != 0) { |
| 208 | printk(KERN_ERR PFX "orinoco_init() failed\n"); |
| 209 | goto failed; |
| 210 | } |
| 211 | |
David Kilroy | 5381956 | 2009-06-18 23:21:28 +0100 | [diff] [blame] | 212 | /* Register an interface with the stack */ |
David Kilroy | 593ef09 | 2010-05-01 14:05:39 +0100 | [diff] [blame] | 213 | if (orinoco_if_add(priv, phys_addr, card->irq, NULL) != 0) { |
David Kilroy | 5381956 | 2009-06-18 23:21:28 +0100 | [diff] [blame] | 214 | printk(KERN_ERR PFX "orinoco_if_add() failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | goto failed; |
| 216 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | card->ndev_registered = 1; |
| 218 | return 0; |
| 219 | failed: |
| 220 | airport_detach(mdev); |
| 221 | return -ENODEV; |
| 222 | } /* airport_attach */ |
| 223 | |
| 224 | |
| 225 | static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION |
| 226 | " (Benjamin Herrenschmidt <benh@kernel.crashing.org>)"; |
| 227 | MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>"); |
| 228 | MODULE_DESCRIPTION("Driver for the Apple Airport wireless card."); |
| 229 | MODULE_LICENSE("Dual MPL/GPL"); |
| 230 | |
Pavel Roskin | 933d594 | 2011-07-13 11:19:57 -0400 | [diff] [blame] | 231 | static struct of_device_id airport_match[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | { |
Pavel Roskin | 933d594 | 2011-07-13 11:19:57 -0400 | [diff] [blame] | 233 | .name = "radio", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | }, |
| 235 | {}, |
| 236 | }; |
| 237 | |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 238 | MODULE_DEVICE_TABLE(of, airport_match); |
Jeff Mahoney | 5e65577 | 2005-07-06 15:44:41 -0400 | [diff] [blame] | 239 | |
Andrey Borzenkov | d14c7c1 | 2009-01-25 23:08:43 +0300 | [diff] [blame] | 240 | static struct macio_driver airport_driver = { |
Benjamin Herrenschmidt | c2cdf6a | 2010-06-02 17:09:18 +1000 | [diff] [blame] | 241 | .driver = { |
Pavel Roskin | 933d594 | 2011-07-13 11:19:57 -0400 | [diff] [blame] | 242 | .name = DRIVER_NAME, |
Benjamin Herrenschmidt | c2cdf6a | 2010-06-02 17:09:18 +1000 | [diff] [blame] | 243 | .owner = THIS_MODULE, |
| 244 | .of_match_table = airport_match, |
| 245 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | .probe = airport_attach, |
| 247 | .remove = airport_detach, |
| 248 | .suspend = airport_suspend, |
| 249 | .resume = airport_resume, |
| 250 | }; |
| 251 | |
| 252 | static int __init |
| 253 | init_airport(void) |
| 254 | { |
| 255 | printk(KERN_DEBUG "%s\n", version); |
| 256 | |
| 257 | return macio_register_driver(&airport_driver); |
| 258 | } |
| 259 | |
| 260 | static void __exit |
| 261 | exit_airport(void) |
| 262 | { |
Pavel Roskin | d070d85 | 2008-12-09 12:32:15 -0500 | [diff] [blame] | 263 | macio_unregister_driver(&airport_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | module_init(init_airport); |
| 267 | module_exit(exit_airport); |