blob: 58257b40c043f5eb37eab5c110859af15a86d80e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2002 Intersil Americas Inc.
3 * Copyright (C) 2003 Herbert Valerio Riedel <hvr@gnu.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 */
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/module.h>
21#include <linux/pci.h>
22#include <linux/delay.h>
23#include <linux/init.h> /* For __init, __exit */
Matthias Gehre910638a2006-03-28 01:56:48 -080024#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include "prismcompat.h"
27#include "islpci_dev.h"
28#include "islpci_mgt.h" /* for pc_debug */
29#include "isl_oid.h"
30
31#define DRV_NAME "prism54"
32#define DRV_VERSION "1.2"
33
34MODULE_AUTHOR("[Intersil] R.Bastings and W.Termorshuizen, The prism54.org Development Team <prism54-devel@prism54.org>");
35MODULE_DESCRIPTION("The Prism54 802.11 Wireless LAN adapter");
36MODULE_LICENSE("GPL");
37
38static int init_pcitm = 0;
39module_param(init_pcitm, int, 0);
40
41/* In this order: vendor, device, subvendor, subdevice, class, class_mask,
Dmitry Torokhov93b2dd12006-10-08 00:38:15 -040042 * driver_data
43 * If you have an update for this please contact prism54-devel@prism54.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * The latest list can be found at http://prism54.org/supported_cards.php */
45static const struct pci_device_id prism54_id_tbl[] = {
46 /* Intersil PRISM Duette/Prism GT Wireless LAN adapter */
47 {
48 0x1260, 0x3890,
49 PCI_ANY_ID, PCI_ANY_ID,
50 0, 0, 0
51 },
52
53 /* 3COM 3CRWE154G72 Wireless LAN adapter */
54 {
55 0x10b7, 0x6001,
56 PCI_ANY_ID, PCI_ANY_ID,
57 0, 0, 0
58 },
59
60 /* Intersil PRISM Indigo Wireless LAN adapter */
61 {
62 0x1260, 0x3877,
63 PCI_ANY_ID, PCI_ANY_ID,
64 0, 0, 0
65 },
66
67 /* Intersil PRISM Javelin/Xbow Wireless LAN adapter */
68 {
69 0x1260, 0x3886,
70 PCI_ANY_ID, PCI_ANY_ID,
71 0, 0, 0
72 },
73
74 /* End of list */
75 {0,0,0,0,0,0,0}
76};
77
78/* register the device with the Hotplug facilities of the kernel */
79MODULE_DEVICE_TABLE(pci, prism54_id_tbl);
80
81static int prism54_probe(struct pci_dev *, const struct pci_device_id *);
82static void prism54_remove(struct pci_dev *);
Pavel Machek05adc3b2005-04-16 15:25:25 -070083static int prism54_suspend(struct pci_dev *, pm_message_t state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static int prism54_resume(struct pci_dev *);
85
86static struct pci_driver prism54_driver = {
87 .name = DRV_NAME,
88 .id_table = prism54_id_tbl,
89 .probe = prism54_probe,
90 .remove = prism54_remove,
91 .suspend = prism54_suspend,
92 .resume = prism54_resume,
93 /* .enable_wake ; we don't support this yet */
94};
95
96/******************************************************************************
97 Module initialization functions
98******************************************************************************/
99
100int
101prism54_probe(struct pci_dev *pdev, const struct pci_device_id *id)
102{
103 struct net_device *ndev;
104 u8 latency_tmr;
105 u32 mem_addr;
106 islpci_private *priv;
107 int rvalue;
108
109 /* Enable the pci device */
110 if (pci_enable_device(pdev)) {
111 printk(KERN_ERR "%s: pci_enable_device() failed.\n", DRV_NAME);
112 return -ENODEV;
113 }
114
115 /* check whether the latency timer is set correctly */
116 pci_read_config_byte(pdev, PCI_LATENCY_TIMER, &latency_tmr);
117#if VERBOSE > SHOW_ERROR_MESSAGES
118 DEBUG(SHOW_TRACING, "latency timer: %x\n", latency_tmr);
119#endif
120 if (latency_tmr < PCIDEVICE_LATENCY_TIMER_MIN) {
121 /* set the latency timer */
122 pci_write_config_byte(pdev, PCI_LATENCY_TIMER,
123 PCIDEVICE_LATENCY_TIMER_VAL);
124 }
125
126 /* enable PCI DMA */
Matthias Gehre910638a2006-03-28 01:56:48 -0800127 if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 printk(KERN_ERR "%s: 32-bit PCI DMA not supported", DRV_NAME);
129 goto do_pci_disable_device;
130 }
131
132 /* 0x40 is the programmable timer to configure the response timeout (TRDY_TIMEOUT)
133 * 0x41 is the programmable timer to configure the retry timeout (RETRY_TIMEOUT)
Dmitry Torokhov93b2dd12006-10-08 00:38:15 -0400134 * The RETRY_TIMEOUT is used to set the number of retries that the core, as a
135 * Master, will perform before abandoning a cycle. The default value for
136 * RETRY_TIMEOUT is 0x80, which far exceeds the PCI 2.1 requirement for new
137 * devices. A write of zero to the RETRY_TIMEOUT register disables this
138 * function to allow use with any non-compliant legacy devices that may
139 * execute more retries.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 *
Dmitry Torokhov93b2dd12006-10-08 00:38:15 -0400141 * Writing zero to both these two registers will disable both timeouts and
142 * *can* solve problems caused by devices that are slow to respond.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 * Make this configurable - MSW
144 */
145 if ( init_pcitm >= 0 ) {
146 pci_write_config_byte(pdev, 0x40, (u8)init_pcitm);
147 pci_write_config_byte(pdev, 0x41, (u8)init_pcitm);
148 } else {
149 printk(KERN_INFO "PCI TRDY/RETRY unchanged\n");
150 }
151
152 /* request the pci device I/O regions */
153 rvalue = pci_request_regions(pdev, DRV_NAME);
154 if (rvalue) {
155 printk(KERN_ERR "%s: pci_request_regions failure (rc=%d)\n",
156 DRV_NAME, rvalue);
157 goto do_pci_disable_device;
158 }
159
160 /* check if the memory window is indeed set */
161 rvalue = pci_read_config_dword(pdev, PCI_BASE_ADDRESS_0, &mem_addr);
162 if (rvalue || !mem_addr) {
163 printk(KERN_ERR "%s: PCI device memory region not configured; fix your BIOS or CardBus bridge/drivers\n",
164 DRV_NAME);
165 goto do_pci_release_regions;
166 }
167
168 /* enable PCI bus-mastering */
169 DEBUG(SHOW_TRACING, "%s: pci_set_master(pdev)\n", DRV_NAME);
170 pci_set_master(pdev);
171
172 /* enable MWI */
John W. Linvillee72ba2d2006-11-14 20:08:53 -0500173 if (!pci_set_mwi(pdev))
174 printk(KERN_INFO "%s: pci_set_mwi(pdev) succeeded\n", DRV_NAME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 /* setup the network device interface and its structure */
177 if (!(ndev = islpci_setup(pdev))) {
178 /* error configuring the driver as a network device */
179 printk(KERN_ERR "%s: could not configure network device\n",
180 DRV_NAME);
John W. Linville02e0e5e2006-11-07 20:53:48 -0500181 goto do_pci_clear_mwi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183
184 priv = netdev_priv(ndev);
185 islpci_set_state(priv, PRV_STATE_PREBOOT); /* we are attempting to boot */
186
187 /* card is in unknown state yet, might have some interrupts pending */
188 isl38xx_disable_interrupts(priv->device_base);
189
190 /* request for the interrupt before uploading the firmware */
191 rvalue = request_irq(pdev->irq, &islpci_interrupt,
Thomas Gleixner1fb9df52006-07-01 19:29:39 -0700192 IRQF_SHARED, ndev->name, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 if (rvalue) {
195 /* error, could not hook the handler to the irq */
196 printk(KERN_ERR "%s: could not install IRQ handler\n",
197 ndev->name);
198 goto do_unregister_netdev;
199 }
200
201 /* firmware upload is triggered in islpci_open */
202
203 return 0;
204
205 do_unregister_netdev:
206 unregister_netdev(ndev);
207 islpci_free_memory(priv);
208 pci_set_drvdata(pdev, NULL);
209 free_netdev(ndev);
210 priv = NULL;
John W. Linville02e0e5e2006-11-07 20:53:48 -0500211 do_pci_clear_mwi:
212 pci_clear_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 do_pci_release_regions:
214 pci_release_regions(pdev);
215 do_pci_disable_device:
216 pci_disable_device(pdev);
217 return -EIO;
218}
219
220/* set by cleanup_module */
221static volatile int __in_cleanup_module = 0;
222
223/* this one removes one(!!) instance only */
224void
225prism54_remove(struct pci_dev *pdev)
226{
227 struct net_device *ndev = pci_get_drvdata(pdev);
228 islpci_private *priv = ndev ? netdev_priv(ndev) : NULL;
229 BUG_ON(!priv);
230
231 if (!__in_cleanup_module) {
232 printk(KERN_DEBUG "%s: hot unplug detected\n", ndev->name);
233 islpci_set_state(priv, PRV_STATE_OFF);
234 }
235
236 printk(KERN_DEBUG "%s: removing device\n", ndev->name);
237
238 unregister_netdev(ndev);
239
240 /* free the interrupt request */
241
242 if (islpci_get_state(priv) != PRV_STATE_OFF) {
243 isl38xx_disable_interrupts(priv->device_base);
244 islpci_set_state(priv, PRV_STATE_OFF);
245 /* This bellow causes a lockup at rmmod time. It might be
Dmitry Torokhov93b2dd12006-10-08 00:38:15 -0400246 * because some interrupts still linger after rmmod time,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 * see bug #17 */
248 /* pci_set_power_state(pdev, 3);*/ /* try to power-off */
249 }
250
251 free_irq(pdev->irq, priv);
252
253 /* free the PCI memory and unmap the remapped page */
254 islpci_free_memory(priv);
255
256 pci_set_drvdata(pdev, NULL);
257 free_netdev(ndev);
258 priv = NULL;
259
John W. Linville02e0e5e2006-11-07 20:53:48 -0500260 pci_clear_mwi(pdev);
261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 pci_release_regions(pdev);
263
264 pci_disable_device(pdev);
265}
266
267int
Pavel Machek05adc3b2005-04-16 15:25:25 -0700268prism54_suspend(struct pci_dev *pdev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 struct net_device *ndev = pci_get_drvdata(pdev);
271 islpci_private *priv = ndev ? netdev_priv(ndev) : NULL;
272 BUG_ON(!priv);
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 pci_save_state(pdev);
276
277 /* tell the device not to trigger interrupts for now... */
278 isl38xx_disable_interrupts(priv->device_base);
279
280 /* from now on assume the hardware was already powered down
281 and don't touch it anymore */
282 islpci_set_state(priv, PRV_STATE_OFF);
283
284 netif_stop_queue(ndev);
285 netif_device_detach(ndev);
286
287 return 0;
288}
289
290int
291prism54_resume(struct pci_dev *pdev)
292{
293 struct net_device *ndev = pci_get_drvdata(pdev);
294 islpci_private *priv = ndev ? netdev_priv(ndev) : NULL;
John W. Linville02e0e5e2006-11-07 20:53:48 -0500295 int err;
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 BUG_ON(!priv);
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 printk(KERN_NOTICE "%s: got resume request\n", ndev->name);
300
John W. Linville02e0e5e2006-11-07 20:53:48 -0500301 err = pci_enable_device(pdev);
302 if (err) {
303 printk(KERN_ERR "%s: pci_enable_device failed on resume\n",
304 ndev->name);
305 return err;
306 }
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 pci_restore_state(pdev);
309
310 /* alright let's go into the PREBOOT state */
311 islpci_reset(priv, 1);
312
313 netif_device_attach(ndev);
314 netif_start_queue(ndev);
315
316 return 0;
317}
318
319static int __init
320prism54_module_init(void)
321{
322 printk(KERN_INFO "Loaded %s driver, version %s\n",
323 DRV_NAME, DRV_VERSION);
324
325 __bug_on_wrong_struct_sizes ();
326
Jeff Garzik29917622006-08-19 17:48:59 -0400327 return pci_register_driver(&prism54_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
330/* by the time prism54_module_exit() terminates, as a postcondition
331 * all instances will have been destroyed by calls to
332 * prism54_remove() */
333static void __exit
334prism54_module_exit(void)
335{
336 __in_cleanup_module = 1;
337
338 pci_unregister_driver(&prism54_driver);
339
340 printk(KERN_INFO "Unloaded %s driver\n", DRV_NAME);
341
342 __in_cleanup_module = 0;
343}
344
345/* register entry points */
346module_init(prism54_module_init);
347module_exit(prism54_module_exit);
348/* EOF */