airport.c 6.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/* airport.c
 *
 * A driver for "Hermes" chipset based Apple Airport wireless
 * card.
 *
D
David Kilroy 已提交
6
 * Copyright notice & release notes in file main.c
A
Andrey Borzenkov 已提交
7
 *
L
Linus Torvalds 已提交
8
 * Note specific to airport stub:
A
Andrey Borzenkov 已提交
9
 *
L
Linus Torvalds 已提交
10 11 12 13 14 15 16 17 18 19
 *  0.05 : first version of the new split driver
 *  0.06 : fix possible hang on powerup, add sleep support
 */

#define DRIVER_NAME "airport"
#define PFX DRIVER_NAME ": "

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
20
#include <linux/delay.h>
L
Linus Torvalds 已提交
21 22 23 24 25 26 27 28 29
#include <asm/pmac_feature.h>

#include "orinoco.h"

#define AIRPORT_IO_LEN	(0x1000)	/* one page */

struct airport {
	struct macio_dev *mdev;
	void __iomem *vaddr;
30
	unsigned int irq;
L
Linus Torvalds 已提交
31 32 33 34 35
	int irq_requested;
	int ndev_registered;
};

static int
36
airport_suspend(struct macio_dev *mdev, pm_message_t state)
L
Linus Torvalds 已提交
37
{
38 39
	struct orinoco_private *priv = dev_get_drvdata(&mdev->ofdev.dev);
	struct net_device *dev = priv->ndev;
40
	struct airport *card = priv->card;
L
Linus Torvalds 已提交
41 42 43 44 45 46 47 48 49 50 51 52
	unsigned long flags;
	int err;

	printk(KERN_DEBUG "%s: Airport entering sleep mode\n", dev->name);

	err = orinoco_lock(priv, &flags);
	if (err) {
		printk(KERN_ERR "%s: hw_unavailable on PBOOK_SLEEP_NOW\n",
		       dev->name);
		return 0;
	}

53
	orinoco_down(priv);
L
Linus Torvalds 已提交
54 55
	orinoco_unlock(priv, &flags);

56
	disable_irq(card->irq);
A
Andrey Borzenkov 已提交
57 58
	pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE,
			  macio_get_of_node(mdev), 0, 0);
L
Linus Torvalds 已提交
59 60 61 62 63 64 65

	return 0;
}

static int
airport_resume(struct macio_dev *mdev)
{
66 67
	struct orinoco_private *priv = dev_get_drvdata(&mdev->ofdev.dev);
	struct net_device *dev = priv->ndev;
68
	struct airport *card = priv->card;
L
Linus Torvalds 已提交
69 70 71 72 73
	unsigned long flags;
	int err;

	printk(KERN_DEBUG "%s: Airport waking up\n", dev->name);

A
Andrey Borzenkov 已提交
74 75
	pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE,
			  macio_get_of_node(mdev), 0, 1);
L
Linus Torvalds 已提交
76 77
	msleep(200);

78
	enable_irq(card->irq);
L
Linus Torvalds 已提交
79 80

	spin_lock_irqsave(&priv->lock, flags);
81
	err = orinoco_up(priv);
L
Linus Torvalds 已提交
82 83
	spin_unlock_irqrestore(&priv->lock, flags);

84
	return err;
L
Linus Torvalds 已提交
85 86 87 88 89
}

static int
airport_detach(struct macio_dev *mdev)
{
90
	struct orinoco_private *priv = dev_get_drvdata(&mdev->ofdev.dev);
L
Linus Torvalds 已提交
91 92 93
	struct airport *card = priv->card;

	if (card->ndev_registered)
94
		orinoco_if_del(priv);
L
Linus Torvalds 已提交
95 96 97
	card->ndev_registered = 0;

	if (card->irq_requested)
98
		free_irq(card->irq, priv);
L
Linus Torvalds 已提交
99 100 101 102 103 104 105 106
	card->irq_requested = 0;

	if (card->vaddr)
		iounmap(card->vaddr);
	card->vaddr = NULL;

	macio_release_resource(mdev, 0);

A
Andrey Borzenkov 已提交
107 108
	pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE,
			  macio_get_of_node(mdev), 0, 0);
L
Linus Torvalds 已提交
109 110 111
	ssleep(1);

	macio_set_drvdata(mdev, NULL);
112
	free_orinocodev(priv);
L
Linus Torvalds 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128

	return 0;
}

static int airport_hard_reset(struct orinoco_private *priv)
{
	/* It would be nice to power cycle the Airport for a real hard
	 * reset, but for some reason although it appears to
	 * re-initialize properly, it falls in a screaming heap
	 * shortly afterwards. */
#if 0
	struct airport *card = priv->card;

	/* Vitally important.  If we don't do this it seems we get an
	 * interrupt somewhere during the power cycle, since
	 * hw_unavailable is already set it doesn't get ACKed, we get
129
	 * into an interrupt loop and the PMU decides to turn us
L
Linus Torvalds 已提交
130
	 * off. */
131
	disable_irq(card->irq);
L
Linus Torvalds 已提交
132

A
Andrey Borzenkov 已提交
133 134
	pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE,
			  macio_get_of_node(card->mdev), 0, 0);
L
Linus Torvalds 已提交
135
	ssleep(1);
A
Andrey Borzenkov 已提交
136 137
	pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE,
			  macio_get_of_node(card->mdev), 0, 1);
L
Linus Torvalds 已提交
138 139
	ssleep(1);

140
	enable_irq(card->irq);
L
Linus Torvalds 已提交
141 142 143 144 145 146 147
	ssleep(1);
#endif

	return 0;
}

static int
148
airport_attach(struct macio_dev *mdev, const struct of_device_id *match)
L
Linus Torvalds 已提交
149 150 151 152 153 154 155 156 157 158 159 160
{
	struct orinoco_private *priv;
	struct airport *card;
	unsigned long phys_addr;
	hermes_t *hw;

	if (macio_resource_count(mdev) < 1 || macio_irq_count(mdev) < 1) {
		printk(KERN_ERR PFX "Wrong interrupt/addresses in OF tree\n");
		return -ENODEV;
	}

	/* Allocate space for private device-specific data */
161 162 163
	priv = alloc_orinocodev(sizeof(*card), &mdev->ofdev.dev,
				airport_hard_reset, NULL);
	if (!priv) {
L
Linus Torvalds 已提交
164 165 166 167 168 169 170 171
		printk(KERN_ERR PFX "Cannot allocate network device\n");
		return -ENODEV;
	}
	card = priv->card;

	hw = &priv->hw;
	card->mdev = mdev;

172
	if (macio_request_resource(mdev, 0, DRIVER_NAME)) {
L
Linus Torvalds 已提交
173
		printk(KERN_ERR PFX "can't request IO resource !\n");
174
		free_orinocodev(priv);
L
Linus Torvalds 已提交
175 176 177
		return -EBUSY;
	}

178
	macio_set_drvdata(mdev, priv);
L
Linus Torvalds 已提交
179 180

	/* Setup interrupts & base address */
181
	card->irq = macio_irq(mdev, 0);
L
Linus Torvalds 已提交
182 183 184 185 186 187 188 189 190
	phys_addr = macio_resource_start(mdev, 0);  /* Physical address */
	printk(KERN_DEBUG PFX "Physical address %lx\n", phys_addr);
	card->vaddr = ioremap(phys_addr, AIRPORT_IO_LEN);
	if (!card->vaddr) {
		printk(KERN_ERR PFX "ioremap() failed\n");
		goto failed;
	}

	hermes_struct_init(hw, card->vaddr, HERMES_16BIT_REGSPACING);
A
Andrey Borzenkov 已提交
191

L
Linus Torvalds 已提交
192
	/* Power up card */
A
Andrey Borzenkov 已提交
193 194
	pmac_call_feature(PMAC_FTR_AIRPORT_ENABLE,
			  macio_get_of_node(mdev), 0, 1);
L
Linus Torvalds 已提交
195 196 197 198 199
	ssleep(1);

	/* Reset it before we get the interrupt */
	hermes_init(hw);

200 201
	if (request_irq(card->irq, orinoco_interrupt, 0, DRIVER_NAME, priv)) {
		printk(KERN_ERR PFX "Couldn't get IRQ %d\n", card->irq);
L
Linus Torvalds 已提交
202 203 204 205
		goto failed;
	}
	card->irq_requested = 1;

206 207 208 209 210 211
	/* Initialise the main driver */
	if (orinoco_init(priv) != 0) {
		printk(KERN_ERR PFX "orinoco_init() failed\n");
		goto failed;
	}

212
	/* Register an interface with the stack */
213
	if (orinoco_if_add(priv, phys_addr, card->irq) != 0) {
214
		printk(KERN_ERR PFX "orinoco_if_add() failed\n");
L
Linus Torvalds 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
		goto failed;
	}
	card->ndev_registered = 1;
	return 0;
 failed:
	airport_detach(mdev);
	return -ENODEV;
}				/* airport_attach */


static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
	" (Benjamin Herrenschmidt <benh@kernel.crashing.org>)";
MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
MODULE_DESCRIPTION("Driver for the Apple Airport wireless card.");
MODULE_LICENSE("Dual MPL/GPL");

A
Andrey Borzenkov 已提交
231
static struct of_device_id airport_match[] =
L
Linus Torvalds 已提交
232 233 234 235 236 237 238
{
	{
	.name 		= "radio",
	},
	{},
};

A
Andrey Borzenkov 已提交
239
MODULE_DEVICE_TABLE(of, airport_match);
240

A
Andrey Borzenkov 已提交
241
static struct macio_driver airport_driver = {
L
Linus Torvalds 已提交
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
	.name 		= DRIVER_NAME,
	.match_table	= airport_match,
	.probe		= airport_attach,
	.remove		= airport_detach,
	.suspend	= airport_suspend,
	.resume		= airport_resume,
};

static int __init
init_airport(void)
{
	printk(KERN_DEBUG "%s\n", version);

	return macio_register_driver(&airport_driver);
}

static void __exit
exit_airport(void)
{
261
	macio_unregister_driver(&airport_driver);
L
Linus Torvalds 已提交
262 263 264 265
}

module_init(init_airport);
module_exit(exit_airport);