orinoco_pci.c 7.4 KB
Newer Older
L
Linus Torvalds 已提交
1
/* orinoco_pci.c
A
Andrey Borzenkov 已提交
2
 *
3 4 5 6
 * Driver for Prism 2.5/3 devices that have a direct PCI interface
 * (i.e. these are not PCMCIA cards in a PCMCIA-to-PCI bridge).
 * The card contains only one PCI region, which contains all the usual
 * hermes registers, as well as the COR register.
L
Linus Torvalds 已提交
7
 *
8
 * Current maintainers are:
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
 * 	Pavel Roskin <proski AT gnu.org>
 * and	David Gibson <hermes AT gibson.dropbear.id.au>
 *
 * Some of this code is borrowed from orinoco_plx.c
 *	Copyright (C) 2001 Daniel Barlow <dan AT telent.net>
 * Some of this code is "inspired" by linux-wlan-ng-0.1.10, but nothing
 * has been copied from it. linux-wlan-ng-0.1.10 is originally :
 *	Copyright (C) 1999 AbsoluteValue Systems, Inc.  All Rights Reserved.
 * This file originally written by:
 *	Copyright (C) 2001 Jean Tourrilhes <jt AT hpl.hp.com>
 * And is now maintained by:
 *	(C) Copyright David Gibson, IBM Corp. 2002-2003.
 *
 * The contents of this file are subject to the Mozilla Public License
 * Version 1.1 (the "License"); you may not use this file except in
 * compliance with the License. You may obtain a copy of the License
 * at http://www.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "AS IS"
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
 * the License for the specific language governing rights and
 * limitations under the License.
 *
 * Alternatively, the contents of this file may be used under the
 * terms of the GNU General Public License version 2 (the "GPL"), in
 * which case the provisions of the GPL are applicable instead of the
 * above.  If you wish to allow the use of your version of this file
 * only under the terms of the GPL and not to allow others to use your
 * version of this file under the MPL, indicate your decision by
 * deleting the provisions above and replace them with the notice and
 * other provisions required by the GPL.  If you do not delete the
 * provisions above, a recipient may use your version of this file
 * under either the MPL or the GPL.
 */

#define DRIVER_NAME "orinoco_pci"
#define PFX DRIVER_NAME ": "

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
50
#include <linux/delay.h>
L
Linus Torvalds 已提交
51 52 53
#include <linux/pci.h>

#include "orinoco.h"
54
#include "orinoco_pci.h"
L
Linus Torvalds 已提交
55

56
/* Offset of the COR register of the PCI card */
L
Linus Torvalds 已提交
57
#define HERMES_PCI_COR		(0x26)
58 59

/* Bitmask to reset the card */
L
Linus Torvalds 已提交
60
#define HERMES_PCI_COR_MASK	(0x0080)
61

L
Linus Torvalds 已提交
62 63 64 65 66 67 68 69
/* Magic timeouts for doing the reset.
 * Those times are straight from wlan-ng, and it is claimed that they
 * are necessary. Alan will kill me. Take your time and grab a coffee. */
#define HERMES_PCI_COR_ONT	(250)		/* ms */
#define HERMES_PCI_COR_OFFT	(500)		/* ms */
#define HERMES_PCI_COR_BUSYT	(500)		/* ms */

/*
70
 * Do a soft reset of the card using the Configuration Option Register
L
Linus Torvalds 已提交
71 72 73 74 75 76 77 78 79 80 81
 * We need this to get going...
 * This is the part of the code that is strongly inspired from wlan-ng
 *
 * Note : This code is done with irq enabled. This mean that many
 * interrupts will occur while we are there. This is why we use the
 * jiffies to regulate time instead of a straight mdelay(). Usually we
 * need only around 245 iteration of the loop to do 250 ms delay.
 *
 * Note bis : Don't try to access HERMES_CMD during the reset phase.
 * It just won't work !
 */
82
static int orinoco_pci_cor_reset(struct orinoco_private *priv)
L
Linus Torvalds 已提交
83 84
{
	hermes_t *hw = &priv->hw;
85 86
	unsigned long timeout;
	u16 reg;
L
Linus Torvalds 已提交
87

88
	/* Assert the reset until the card notices */
L
Linus Torvalds 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
	hermes_write_regn(hw, PCI_COR, HERMES_PCI_COR_MASK);
	mdelay(HERMES_PCI_COR_ONT);

	/* Give time for the card to recover from this hard effort */
	hermes_write_regn(hw, PCI_COR, 0x0000);
	mdelay(HERMES_PCI_COR_OFFT);

	/* The card is ready when it's no longer busy */
	timeout = jiffies + (HERMES_PCI_COR_BUSYT * HZ / 1000);
	reg = hermes_read_regn(hw, CMD);
	while (time_before(jiffies, timeout) && (reg & HERMES_CMD_BUSY)) {
		mdelay(1);
		reg = hermes_read_regn(hw, CMD);
	}

	/* Still busy? */
	if (reg & HERMES_CMD_BUSY) {
		printk(KERN_ERR PFX "Busy timeout\n");
		return -ETIMEDOUT;
	}

	return 0;
}

static int orinoco_pci_init_one(struct pci_dev *pdev,
				const struct pci_device_id *ent)
{
116 117
	int err;
	struct orinoco_private *priv;
L
Linus Torvalds 已提交
118
	struct orinoco_pci_card *card;
119
	void __iomem *hermes_io;
L
Linus Torvalds 已提交
120 121 122 123 124 125 126 127

	err = pci_enable_device(pdev);
	if (err) {
		printk(KERN_ERR PFX "Cannot enable PCI device\n");
		return err;
	}

	err = pci_request_regions(pdev, DRIVER_NAME);
128
	if (err) {
L
Linus Torvalds 已提交
129 130 131 132
		printk(KERN_ERR PFX "Cannot obtain PCI resources\n");
		goto fail_resources;
	}

133 134 135
	hermes_io = pci_iomap(pdev, 0, 0);
	if (!hermes_io) {
		printk(KERN_ERR PFX "Cannot remap chipset registers\n");
136
		err = -EIO;
137
		goto fail_map_hermes;
L
Linus Torvalds 已提交
138 139 140
	}

	/* Allocate network device */
141 142 143
	priv = alloc_orinocodev(sizeof(*card), &pdev->dev,
				orinoco_pci_cor_reset, NULL);
	if (!priv) {
144
		printk(KERN_ERR PFX "Cannot allocate network device\n");
L
Linus Torvalds 已提交
145 146 147 148 149 150
		err = -ENOMEM;
		goto fail_alloc;
	}

	card = priv->card;

151
	hermes_struct_init(&priv->hw, hermes_io, HERMES_32BIT_REGSPACING);
L
Linus Torvalds 已提交
152

153
	err = request_irq(pdev->irq, orinoco_interrupt, IRQF_SHARED,
154
			  DRIVER_NAME, priv);
L
Linus Torvalds 已提交
155 156 157 158 159 160 161 162 163 164 165 166
	if (err) {
		printk(KERN_ERR PFX "Cannot allocate IRQ %d\n", pdev->irq);
		err = -EBUSY;
		goto fail_irq;
	}

	err = orinoco_pci_cor_reset(priv);
	if (err) {
		printk(KERN_ERR PFX "Initial reset failed\n");
		goto fail;
	}

167 168 169 170 171 172
	err = orinoco_init(priv);
	if (err) {
		printk(KERN_ERR PFX "orinoco_init() failed\n");
		goto fail;
	}

173
	err = orinoco_if_add(priv, 0, 0, NULL);
L
Linus Torvalds 已提交
174
	if (err) {
175
		printk(KERN_ERR PFX "orinoco_if_add() failed\n");
L
Linus Torvalds 已提交
176 177 178
		goto fail;
	}

179
	pci_set_drvdata(pdev, priv);
L
Linus Torvalds 已提交
180 181 182 183

	return 0;

 fail:
184
	free_irq(pdev->irq, priv);
L
Linus Torvalds 已提交
185 186 187

 fail_irq:
	pci_set_drvdata(pdev, NULL);
188
	free_orinocodev(priv);
L
Linus Torvalds 已提交
189 190

 fail_alloc:
191
	pci_iounmap(pdev, hermes_io);
L
Linus Torvalds 已提交
192

193
 fail_map_hermes:
L
Linus Torvalds 已提交
194 195 196 197 198 199 200 201 202 203
	pci_release_regions(pdev);

 fail_resources:
	pci_disable_device(pdev);

	return err;
}

static void __devexit orinoco_pci_remove_one(struct pci_dev *pdev)
{
204
	struct orinoco_private *priv = pci_get_drvdata(pdev);
L
Linus Torvalds 已提交
205

206
	orinoco_if_del(priv);
207
	free_irq(pdev->irq, priv);
L
Linus Torvalds 已提交
208
	pci_set_drvdata(pdev, NULL);
209
	free_orinocodev(priv);
210
	pci_iounmap(pdev, priv->hw.iobase);
L
Linus Torvalds 已提交
211 212 213 214
	pci_release_regions(pdev);
	pci_disable_device(pdev);
}

215
static DEFINE_PCI_DEVICE_TABLE(orinoco_pci_id_table) = {
L
Linus Torvalds 已提交
216 217 218 219 220 221 222 223 224
	/* Intersil Prism 3 */
	{0x1260, 0x3872, PCI_ANY_ID, PCI_ANY_ID,},
	/* Intersil Prism 2.5 */
	{0x1260, 0x3873, PCI_ANY_ID, PCI_ANY_ID,},
	/* Samsung MagicLAN SWL-2210P */
	{0x167d, 0xa000, PCI_ANY_ID, PCI_ANY_ID,},
	{0,},
};

225
MODULE_DEVICE_TABLE(pci, orinoco_pci_id_table);
L
Linus Torvalds 已提交
226 227 228

static struct pci_driver orinoco_pci_driver = {
	.name		= DRIVER_NAME,
229
	.id_table	= orinoco_pci_id_table,
L
Linus Torvalds 已提交
230 231 232 233 234 235 236 237 238 239
	.probe		= orinoco_pci_init_one,
	.remove		= __devexit_p(orinoco_pci_remove_one),
	.suspend	= orinoco_pci_suspend,
	.resume		= orinoco_pci_resume,
};

static char version[] __initdata = DRIVER_NAME " " DRIVER_VERSION
	" (Pavel Roskin <proski@gnu.org>,"
	" David Gibson <hermes@gibson.dropbear.id.au> &"
	" Jean Tourrilhes <jt@hpl.hp.com>)";
A
Andrey Borzenkov 已提交
240 241
MODULE_AUTHOR("Pavel Roskin <proski@gnu.org> &"
	      " David Gibson <hermes@gibson.dropbear.id.au>");
L
Linus Torvalds 已提交
242 243 244 245 246 247
MODULE_DESCRIPTION("Driver for wireless LAN cards using direct PCI interface");
MODULE_LICENSE("Dual MPL/GPL");

static int __init orinoco_pci_init(void)
{
	printk(KERN_DEBUG "%s\n", version);
248
	return pci_register_driver(&orinoco_pci_driver);
L
Linus Torvalds 已提交
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
}

static void __exit orinoco_pci_exit(void)
{
	pci_unregister_driver(&orinoco_pci_driver);
}

module_init(orinoco_pci_init);
module_exit(orinoco_pci_exit);

/*
 * Local variables:
 *  c-indent-level: 8
 *  c-basic-offset: 8
 *  tab-width: 8
 * End:
 */