blob: 64b06c6abe586d1fda61f79688de66ec12800a16 [file] [log] [blame]
Gabor Juhos69a2bac2013-03-29 15:52:27 +01001/*
2 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
3 <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: rt2x00mmio
23 Abstract: rt2x00 generic mmio device routines.
24 */
25
26#include <linux/dma-mapping.h>
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/slab.h>
30
31#include "rt2x00.h"
32#include "rt2x00mmio.h"
33
34/*
35 * Register access.
36 */
Gabor Juhos58959bd2013-04-05 08:27:00 +020037int rt2x00mmio_regbusy_read(struct rt2x00_dev *rt2x00dev,
38 const unsigned int offset,
39 const struct rt2x00_field32 field,
40 u32 *reg)
Gabor Juhos69a2bac2013-03-29 15:52:27 +010041{
42 unsigned int i;
43
44 if (!test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
45 return 0;
46
47 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
Gabor Juhos58959bd2013-04-05 08:27:00 +020048 rt2x00mmio_register_read(rt2x00dev, offset, reg);
Gabor Juhos69a2bac2013-03-29 15:52:27 +010049 if (!rt2x00_get_field32(*reg, field))
50 return 1;
51 udelay(REGISTER_BUSY_DELAY);
52 }
53
54 printk_once(KERN_ERR "%s() Indirect register access failed: "
55 "offset=0x%.08x, value=0x%.08x\n", __func__, offset, *reg);
56 *reg = ~0;
57
58 return 0;
59}
Gabor Juhos58959bd2013-04-05 08:27:00 +020060EXPORT_SYMBOL_GPL(rt2x00mmio_regbusy_read);
Gabor Juhos69a2bac2013-03-29 15:52:27 +010061
Gabor Juhos58959bd2013-04-05 08:27:00 +020062bool rt2x00mmio_rxdone(struct rt2x00_dev *rt2x00dev)
Gabor Juhos69a2bac2013-03-29 15:52:27 +010063{
64 struct data_queue *queue = rt2x00dev->rx;
65 struct queue_entry *entry;
Gabor Juhos58959bd2013-04-05 08:27:00 +020066 struct queue_entry_priv_mmio *entry_priv;
Gabor Juhos69a2bac2013-03-29 15:52:27 +010067 struct skb_frame_desc *skbdesc;
68 int max_rx = 16;
69
70 while (--max_rx) {
71 entry = rt2x00queue_get_entry(queue, Q_INDEX);
72 entry_priv = entry->priv_data;
73
74 if (rt2x00dev->ops->lib->get_entry_state(entry))
75 break;
76
77 /*
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;
83
84 /*
85 * DMA is already done, notify rt2x00lib that
86 * it finished successfully.
87 */
88 rt2x00lib_dmastart(entry);
89 rt2x00lib_dmadone(entry);
90
91 /*
92 * Send the frame to rt2x00lib for further processing.
93 */
94 rt2x00lib_rxdone(entry, GFP_ATOMIC);
95 }
96
97 return !max_rx;
98}
Gabor Juhos58959bd2013-04-05 08:27:00 +020099EXPORT_SYMBOL_GPL(rt2x00mmio_rxdone);
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100100
Gabor Juhos58959bd2013-04-05 08:27:00 +0200101void rt2x00mmio_flush_queue(struct data_queue *queue, bool drop)
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100102{
103 unsigned int i;
104
105 for (i = 0; !rt2x00queue_empty(queue) && i < 10; i++)
106 msleep(10);
107}
Gabor Juhos58959bd2013-04-05 08:27:00 +0200108EXPORT_SYMBOL_GPL(rt2x00mmio_flush_queue);
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100109
110/*
111 * Device initialization handlers.
112 */
Gabor Juhos58959bd2013-04-05 08:27:00 +0200113static int rt2x00mmio_alloc_queue_dma(struct rt2x00_dev *rt2x00dev,
114 struct data_queue *queue)
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100115{
Gabor Juhos58959bd2013-04-05 08:27:00 +0200116 struct queue_entry_priv_mmio *entry_priv;
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100117 void *addr;
118 dma_addr_t dma;
119 unsigned int i;
120
121 /*
122 * Allocate DMA memory for descriptor and buffer.
123 */
124 addr = dma_alloc_coherent(rt2x00dev->dev,
125 queue->limit * queue->desc_size,
126 &dma, GFP_KERNEL);
127 if (!addr)
128 return -ENOMEM;
129
130 memset(addr, 0, queue->limit * queue->desc_size);
131
132 /*
133 * Initialize all queue entries to contain valid addresses.
134 */
135 for (i = 0; i < queue->limit; i++) {
136 entry_priv = queue->entries[i].priv_data;
137 entry_priv->desc = addr + i * queue->desc_size;
138 entry_priv->desc_dma = dma + i * queue->desc_size;
139 }
140
141 return 0;
142}
143
Gabor Juhos58959bd2013-04-05 08:27:00 +0200144static void rt2x00mmio_free_queue_dma(struct rt2x00_dev *rt2x00dev,
145 struct data_queue *queue)
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100146{
Gabor Juhos58959bd2013-04-05 08:27:00 +0200147 struct queue_entry_priv_mmio *entry_priv =
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100148 queue->entries[0].priv_data;
149
150 if (entry_priv->desc)
151 dma_free_coherent(rt2x00dev->dev,
152 queue->limit * queue->desc_size,
153 entry_priv->desc, entry_priv->desc_dma);
154 entry_priv->desc = NULL;
155}
156
Gabor Juhos58959bd2013-04-05 08:27:00 +0200157int rt2x00mmio_initialize(struct rt2x00_dev *rt2x00dev)
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100158{
159 struct data_queue *queue;
160 int status;
161
162 /*
163 * Allocate DMA
164 */
165 queue_for_each(rt2x00dev, queue) {
Gabor Juhos58959bd2013-04-05 08:27:00 +0200166 status = rt2x00mmio_alloc_queue_dma(rt2x00dev, queue);
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100167 if (status)
168 goto exit;
169 }
170
171 /*
172 * Register interrupt handler.
173 */
174 status = request_irq(rt2x00dev->irq,
175 rt2x00dev->ops->lib->irq_handler,
176 IRQF_SHARED, rt2x00dev->name, rt2x00dev);
177 if (status) {
Joe Perchesec9c4982013-04-19 08:33:40 -0700178 rt2x00_err(rt2x00dev, "IRQ %d allocation failed (error %d)\n",
179 rt2x00dev->irq, status);
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100180 goto exit;
181 }
182
183 return 0;
184
185exit:
186 queue_for_each(rt2x00dev, queue)
Gabor Juhos58959bd2013-04-05 08:27:00 +0200187 rt2x00mmio_free_queue_dma(rt2x00dev, queue);
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100188
189 return status;
190}
Gabor Juhos58959bd2013-04-05 08:27:00 +0200191EXPORT_SYMBOL_GPL(rt2x00mmio_initialize);
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100192
Gabor Juhos58959bd2013-04-05 08:27:00 +0200193void rt2x00mmio_uninitialize(struct rt2x00_dev *rt2x00dev)
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100194{
195 struct data_queue *queue;
196
197 /*
198 * Free irq line.
199 */
200 free_irq(rt2x00dev->irq, rt2x00dev);
201
202 /*
203 * Free DMA
204 */
205 queue_for_each(rt2x00dev, queue)
Gabor Juhos58959bd2013-04-05 08:27:00 +0200206 rt2x00mmio_free_queue_dma(rt2x00dev, queue);
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100207}
Gabor Juhos58959bd2013-04-05 08:27:00 +0200208EXPORT_SYMBOL_GPL(rt2x00mmio_uninitialize);
Gabor Juhos69a2bac2013-03-29 15:52:27 +0100209
210/*
211 * rt2x00mmio module information.
212 */
213MODULE_AUTHOR(DRV_PROJECT);
214MODULE_VERSION(DRV_VERSION);
215MODULE_DESCRIPTION("rt2x00 mmio library");
216MODULE_LICENSE("GPL");