blob: 63c2cc408e154705967677b287e0b4da85a5e727 [file] [log] [blame]
Ivo van Doorn95ea3622007-09-25 17:57:13 -07001/*
Gertjan van Wingerde9c9a0d12009-11-08 16:39:55 +01002 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
Ivo van Doorn95ea3622007-09-25 17:57:13 -07003 <http://rt2x00.serialmonkey.com>
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, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the
17 Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21/*
22 Module: rt2x00pci
23 Abstract: rt2x00 generic pci device routines.
24 */
25
Ivo van Doorn95ea3622007-09-25 17:57:13 -070026#include <linux/dma-mapping.h>
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Ivo van Doorn95ea3622007-09-25 17:57:13 -070031
32#include "rt2x00.h"
33#include "rt2x00pci.h"
34
35/*
Ivo van Doornc9c3b1a2008-11-10 19:41:40 +010036 * Register access.
37 */
38int rt2x00pci_regbusy_read(struct rt2x00_dev *rt2x00dev,
39 const unsigned int offset,
40 const struct rt2x00_field32 field,
41 u32 *reg)
42{
43 unsigned int i;
44
Alban Browaeysc70762f2009-12-04 23:46:57 +010045 if (!test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
46 return 0;
47
Ivo van Doornc9c3b1a2008-11-10 19:41:40 +010048 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
49 rt2x00pci_register_read(rt2x00dev, offset, reg);
50 if (!rt2x00_get_field32(*reg, field))
51 return 1;
52 udelay(REGISTER_BUSY_DELAY);
53 }
54
55 ERROR(rt2x00dev, "Indirect register access failed: "
56 "offset=0x%.08x, value=0x%.08x\n", offset, *reg);
57 *reg = ~0;
58
59 return 0;
60}
61EXPORT_SYMBOL_GPL(rt2x00pci_regbusy_read);
62
Ivo van Doorn95ea3622007-09-25 17:57:13 -070063void rt2x00pci_rxdone(struct rt2x00_dev *rt2x00dev)
64{
Ivo van Doorn181d6902008-02-05 16:42:23 -050065 struct data_queue *queue = rt2x00dev->rx;
66 struct queue_entry *entry;
Ivo van Doornb8be63f2008-05-10 13:46:03 +020067 struct queue_entry_priv_pci *entry_priv;
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +020068 struct skb_frame_desc *skbdesc;
Ivo van Doorn95ea3622007-09-25 17:57:13 -070069
70 while (1) {
Ivo van Doorn181d6902008-02-05 16:42:23 -050071 entry = rt2x00queue_get_entry(queue, Q_INDEX);
Ivo van Doornb8be63f2008-05-10 13:46:03 +020072 entry_priv = entry->priv_data;
Ivo van Doorn95ea3622007-09-25 17:57:13 -070073
Ivo van Doorn798b7ad2008-11-08 15:25:33 +010074 if (rt2x00dev->ops->lib->get_entry_state(entry))
Ivo van Doorn95ea3622007-09-25 17:57:13 -070075 break;
76
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +020077 /*
78 * Fill in desc fields of the skb descriptor
79 */
80 skbdesc = get_skb_frame_desc(entry->skb);
81 skbdesc->desc = entry_priv->desc;
82 skbdesc->desc_len = entry->queue->desc_size;
Ivo van Doorn95ea3622007-09-25 17:57:13 -070083
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +020084 /*
85 * Send the frame to rt2x00lib for further processing.
86 */
87 rt2x00lib_rxdone(rt2x00dev, entry);
Ivo van Doorn95ea3622007-09-25 17:57:13 -070088 }
89}
90EXPORT_SYMBOL_GPL(rt2x00pci_rxdone);
91
Ivo van Doorn95ea3622007-09-25 17:57:13 -070092/*
93 * Device initialization handlers.
94 */
Ivo van Doorn181d6902008-02-05 16:42:23 -050095static int rt2x00pci_alloc_queue_dma(struct rt2x00_dev *rt2x00dev,
96 struct data_queue *queue)
Ivo van Doorn95ea3622007-09-25 17:57:13 -070097{
Ivo van Doornb8be63f2008-05-10 13:46:03 +020098 struct queue_entry_priv_pci *entry_priv;
Ivo van Doorn30b3a232008-02-17 17:33:24 +010099 void *addr;
Ivo van Doorn9c9dd2c2008-02-10 22:46:52 +0100100 dma_addr_t dma;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700101 unsigned int i;
102
103 /*
104 * Allocate DMA memory for descriptor and buffer.
105 */
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200106 addr = dma_alloc_coherent(rt2x00dev->dev,
107 queue->limit * queue->desc_size,
108 &dma, GFP_KERNEL | GFP_DMA);
Ivo van Doorn30b3a232008-02-17 17:33:24 +0100109 if (!addr)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700110 return -ENOMEM;
111
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200112 memset(addr, 0, queue->limit * queue->desc_size);
Ivo van Doorn9c9dd2c2008-02-10 22:46:52 +0100113
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700114 /*
Ivo van Doorn181d6902008-02-05 16:42:23 -0500115 * Initialize all queue entries to contain valid addresses.
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700116 */
Ivo van Doorn181d6902008-02-05 16:42:23 -0500117 for (i = 0; i < queue->limit; i++) {
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200118 entry_priv = queue->entries[i].priv_data;
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200119 entry_priv->desc = addr + i * queue->desc_size;
120 entry_priv->desc_dma = dma + i * queue->desc_size;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700121 }
122
123 return 0;
124}
125
Ivo van Doorn181d6902008-02-05 16:42:23 -0500126static void rt2x00pci_free_queue_dma(struct rt2x00_dev *rt2x00dev,
127 struct data_queue *queue)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700128{
Ivo van Doornb8be63f2008-05-10 13:46:03 +0200129 struct queue_entry_priv_pci *entry_priv =
130 queue->entries[0].priv_data;
Ivo van Doorn181d6902008-02-05 16:42:23 -0500131
Gertjan van Wingerdec4da0042008-06-16 19:56:31 +0200132 if (entry_priv->desc)
133 dma_free_coherent(rt2x00dev->dev,
134 queue->limit * queue->desc_size,
135 entry_priv->desc, entry_priv->desc_dma);
136 entry_priv->desc = NULL;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700137}
138
139int rt2x00pci_initialize(struct rt2x00_dev *rt2x00dev)
140{
Ivo van Doorn181d6902008-02-05 16:42:23 -0500141 struct data_queue *queue;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700142 int status;
143
144 /*
145 * Allocate DMA
146 */
Ivo van Doorn181d6902008-02-05 16:42:23 -0500147 queue_for_each(rt2x00dev, queue) {
148 status = rt2x00pci_alloc_queue_dma(rt2x00dev, queue);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700149 if (status)
150 goto exit;
151 }
152
153 /*
154 * Register interrupt handler.
155 */
Helmut Schaa78e256c2010-07-11 12:26:48 +0200156 status = request_threaded_irq(rt2x00dev->irq,
157 rt2x00dev->ops->lib->irq_handler,
158 rt2x00dev->ops->lib->irq_handler_thread,
159 IRQF_SHARED, rt2x00dev->name, rt2x00dev);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700160 if (status) {
161 ERROR(rt2x00dev, "IRQ %d allocation failed (error %d).\n",
Ivo van Doorn440ddada2009-03-28 20:51:24 +0100162 rt2x00dev->irq, status);
Ivo van Doornb30cdfc2008-05-05 17:24:03 +0200163 goto exit;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700164 }
165
166 return 0;
167
168exit:
Ivo van Doornb30cdfc2008-05-05 17:24:03 +0200169 queue_for_each(rt2x00dev, queue)
170 rt2x00pci_free_queue_dma(rt2x00dev, queue);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700171
172 return status;
173}
174EXPORT_SYMBOL_GPL(rt2x00pci_initialize);
175
176void rt2x00pci_uninitialize(struct rt2x00_dev *rt2x00dev)
177{
Ivo van Doorn181d6902008-02-05 16:42:23 -0500178 struct data_queue *queue;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700179
180 /*
181 * Free irq line.
182 */
Helmut Schaa52a9bd22010-05-19 08:47:59 +0200183 free_irq(rt2x00dev->irq, rt2x00dev);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700184
185 /*
186 * Free DMA
187 */
Ivo van Doorn181d6902008-02-05 16:42:23 -0500188 queue_for_each(rt2x00dev, queue)
189 rt2x00pci_free_queue_dma(rt2x00dev, queue);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700190}
191EXPORT_SYMBOL_GPL(rt2x00pci_uninitialize);
192
193/*
194 * PCI driver handlers.
195 */
196static void rt2x00pci_free_reg(struct rt2x00_dev *rt2x00dev)
197{
198 kfree(rt2x00dev->rf);
199 rt2x00dev->rf = NULL;
200
201 kfree(rt2x00dev->eeprom);
202 rt2x00dev->eeprom = NULL;
203
Ivo van Doorn21795092008-02-10 22:49:13 +0100204 if (rt2x00dev->csr.base) {
205 iounmap(rt2x00dev->csr.base);
206 rt2x00dev->csr.base = NULL;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700207 }
208}
209
210static int rt2x00pci_alloc_reg(struct rt2x00_dev *rt2x00dev)
211{
Gertjan van Wingerde14a3bf82008-06-16 19:55:43 +0200212 struct pci_dev *pci_dev = to_pci_dev(rt2x00dev->dev);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700213
Arjan van de Ven275f1652008-10-20 21:42:39 -0700214 rt2x00dev->csr.base = pci_ioremap_bar(pci_dev, 0);
Ivo van Doorn21795092008-02-10 22:49:13 +0100215 if (!rt2x00dev->csr.base)
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700216 goto exit;
217
218 rt2x00dev->eeprom = kzalloc(rt2x00dev->ops->eeprom_size, GFP_KERNEL);
219 if (!rt2x00dev->eeprom)
220 goto exit;
221
222 rt2x00dev->rf = kzalloc(rt2x00dev->ops->rf_size, GFP_KERNEL);
223 if (!rt2x00dev->rf)
224 goto exit;
225
226 return 0;
227
228exit:
229 ERROR_PROBE("Failed to allocate registers.\n");
230
231 rt2x00pci_free_reg(rt2x00dev);
232
233 return -ENOMEM;
234}
235
236int rt2x00pci_probe(struct pci_dev *pci_dev, const struct pci_device_id *id)
237{
238 struct rt2x00_ops *ops = (struct rt2x00_ops *)id->driver_data;
239 struct ieee80211_hw *hw;
240 struct rt2x00_dev *rt2x00dev;
241 int retval;
242
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700243 retval = pci_enable_device(pci_dev);
244 if (retval) {
245 ERROR_PROBE("Enable device failed.\n");
Kulikov Vasiliy47cb9052010-08-03 19:43:22 +0400246 return retval;
247 }
248
249 retval = pci_request_regions(pci_dev, pci_name(pci_dev));
250 if (retval) {
251 ERROR_PROBE("PCI request regions failed.\n");
252 goto exit_disable_device;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700253 }
254
255 pci_set_master(pci_dev);
256
257 if (pci_set_mwi(pci_dev))
258 ERROR_PROBE("MWI not available.\n");
259
Yang Hongyang284901a2009-04-06 19:01:15 -0700260 if (dma_set_mask(&pci_dev->dev, DMA_BIT_MASK(32))) {
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700261 ERROR_PROBE("PCI DMA not supported.\n");
262 retval = -EIO;
Kulikov Vasiliy47cb9052010-08-03 19:43:22 +0400263 goto exit_release_regions;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700264 }
265
266 hw = ieee80211_alloc_hw(sizeof(struct rt2x00_dev), ops->hw);
267 if (!hw) {
268 ERROR_PROBE("Failed to allocate hardware.\n");
269 retval = -ENOMEM;
Kulikov Vasiliy47cb9052010-08-03 19:43:22 +0400270 goto exit_release_regions;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700271 }
272
273 pci_set_drvdata(pci_dev, hw);
274
275 rt2x00dev = hw->priv;
Gertjan van Wingerde14a3bf82008-06-16 19:55:43 +0200276 rt2x00dev->dev = &pci_dev->dev;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700277 rt2x00dev->ops = ops;
278 rt2x00dev->hw = hw;
Ivo van Doorn440ddada2009-03-28 20:51:24 +0100279 rt2x00dev->irq = pci_dev->irq;
280 rt2x00dev->name = pci_name(pci_dev);
281
Gertjan van Wingerde6e1fdd12010-06-03 10:52:00 +0200282 if (pci_dev->is_pcie)
283 rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_PCIE);
284 else
285 rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_PCI);
Gertjan van Wingerde2015d192009-11-08 12:30:14 +0100286
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700287 retval = rt2x00pci_alloc_reg(rt2x00dev);
288 if (retval)
289 goto exit_free_device;
290
291 retval = rt2x00lib_probe_dev(rt2x00dev);
292 if (retval)
293 goto exit_free_reg;
294
295 return 0;
296
297exit_free_reg:
298 rt2x00pci_free_reg(rt2x00dev);
299
300exit_free_device:
301 ieee80211_free_hw(hw);
302
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700303exit_release_regions:
304 pci_release_regions(pci_dev);
305
Kulikov Vasiliy47cb9052010-08-03 19:43:22 +0400306exit_disable_device:
307 pci_disable_device(pci_dev);
308
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700309 pci_set_drvdata(pci_dev, NULL);
310
311 return retval;
312}
313EXPORT_SYMBOL_GPL(rt2x00pci_probe);
314
315void rt2x00pci_remove(struct pci_dev *pci_dev)
316{
317 struct ieee80211_hw *hw = pci_get_drvdata(pci_dev);
318 struct rt2x00_dev *rt2x00dev = hw->priv;
319
320 /*
321 * Free all allocated data.
322 */
323 rt2x00lib_remove_dev(rt2x00dev);
324 rt2x00pci_free_reg(rt2x00dev);
325 ieee80211_free_hw(hw);
326
327 /*
328 * Free the PCI device data.
329 */
330 pci_set_drvdata(pci_dev, NULL);
331 pci_disable_device(pci_dev);
332 pci_release_regions(pci_dev);
333}
334EXPORT_SYMBOL_GPL(rt2x00pci_remove);
335
336#ifdef CONFIG_PM
337int rt2x00pci_suspend(struct pci_dev *pci_dev, pm_message_t state)
338{
339 struct ieee80211_hw *hw = pci_get_drvdata(pci_dev);
340 struct rt2x00_dev *rt2x00dev = hw->priv;
341 int retval;
342
343 retval = rt2x00lib_suspend(rt2x00dev, state);
344 if (retval)
345 return retval;
346
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700347 pci_save_state(pci_dev);
348 pci_disable_device(pci_dev);
349 return pci_set_power_state(pci_dev, pci_choose_state(pci_dev, state));
350}
351EXPORT_SYMBOL_GPL(rt2x00pci_suspend);
352
353int rt2x00pci_resume(struct pci_dev *pci_dev)
354{
355 struct ieee80211_hw *hw = pci_get_drvdata(pci_dev);
356 struct rt2x00_dev *rt2x00dev = hw->priv;
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700357
358 if (pci_set_power_state(pci_dev, PCI_D0) ||
359 pci_enable_device(pci_dev) ||
360 pci_restore_state(pci_dev)) {
361 ERROR(rt2x00dev, "Failed to resume device.\n");
362 return -EIO;
363 }
364
Ivo van Doorn499a2142009-03-28 20:51:58 +0100365 return rt2x00lib_resume(rt2x00dev);
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700366}
367EXPORT_SYMBOL_GPL(rt2x00pci_resume);
368#endif /* CONFIG_PM */
369
370/*
371 * rt2x00pci module information.
372 */
373MODULE_AUTHOR(DRV_PROJECT);
374MODULE_VERSION(DRV_VERSION);
Ivo van Doorn181d6902008-02-05 16:42:23 -0500375MODULE_DESCRIPTION("rt2x00 pci library");
Ivo van Doorn95ea3622007-09-25 17:57:13 -0700376MODULE_LICENSE("GPL");