drivers/rtc/rtc-twl.c: fix rtc_reg_map initialization
[linux-2.6.git] / drivers / net / wireless / rt2x00 / rt2x00mmio.c
blob64b06c6abe586d1fda61f79688de66ec12800a16
1 /*
2 Copyright (C) 2004 - 2009 Ivo van Doorn <IvDoorn@gmail.com>
3 <http://rt2x00.serialmonkey.com>
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.
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.
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.
22 Module: rt2x00mmio
23 Abstract: rt2x00 generic mmio device routines.
26 #include <linux/dma-mapping.h>
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/slab.h>
31 #include "rt2x00.h"
32 #include "rt2x00mmio.h"
35 * Register access.
37 int rt2x00mmio_regbusy_read(struct rt2x00_dev *rt2x00dev,
38 const unsigned int offset,
39 const struct rt2x00_field32 field,
40 u32 *reg)
42 unsigned int i;
44 if (!test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
45 return 0;
47 for (i = 0; i < REGISTER_BUSY_COUNT; i++) {
48 rt2x00mmio_register_read(rt2x00dev, offset, reg);
49 if (!rt2x00_get_field32(*reg, field))
50 return 1;
51 udelay(REGISTER_BUSY_DELAY);
54 printk_once(KERN_ERR "%s() Indirect register access failed: "
55 "offset=0x%.08x, value=0x%.08x\n", __func__, offset, *reg);
56 *reg = ~0;
58 return 0;
60 EXPORT_SYMBOL_GPL(rt2x00mmio_regbusy_read);
62 bool rt2x00mmio_rxdone(struct rt2x00_dev *rt2x00dev)
64 struct data_queue *queue = rt2x00dev->rx;
65 struct queue_entry *entry;
66 struct queue_entry_priv_mmio *entry_priv;
67 struct skb_frame_desc *skbdesc;
68 int max_rx = 16;
70 while (--max_rx) {
71 entry = rt2x00queue_get_entry(queue, Q_INDEX);
72 entry_priv = entry->priv_data;
74 if (rt2x00dev->ops->lib->get_entry_state(entry))
75 break;
78 * Fill in desc fields of the skb descriptor
80 skbdesc = get_skb_frame_desc(entry->skb);
81 skbdesc->desc = entry_priv->desc;
82 skbdesc->desc_len = entry->queue->desc_size;
85 * DMA is already done, notify rt2x00lib that
86 * it finished successfully.
88 rt2x00lib_dmastart(entry);
89 rt2x00lib_dmadone(entry);
92 * Send the frame to rt2x00lib for further processing.
94 rt2x00lib_rxdone(entry, GFP_ATOMIC);
97 return !max_rx;
99 EXPORT_SYMBOL_GPL(rt2x00mmio_rxdone);
101 void rt2x00mmio_flush_queue(struct data_queue *queue, bool drop)
103 unsigned int i;
105 for (i = 0; !rt2x00queue_empty(queue) && i < 10; i++)
106 msleep(10);
108 EXPORT_SYMBOL_GPL(rt2x00mmio_flush_queue);
111 * Device initialization handlers.
113 static int rt2x00mmio_alloc_queue_dma(struct rt2x00_dev *rt2x00dev,
114 struct data_queue *queue)
116 struct queue_entry_priv_mmio *entry_priv;
117 void *addr;
118 dma_addr_t dma;
119 unsigned int i;
122 * Allocate DMA memory for descriptor and buffer.
124 addr = dma_alloc_coherent(rt2x00dev->dev,
125 queue->limit * queue->desc_size,
126 &dma, GFP_KERNEL);
127 if (!addr)
128 return -ENOMEM;
130 memset(addr, 0, queue->limit * queue->desc_size);
133 * Initialize all queue entries to contain valid addresses.
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;
141 return 0;
144 static void rt2x00mmio_free_queue_dma(struct rt2x00_dev *rt2x00dev,
145 struct data_queue *queue)
147 struct queue_entry_priv_mmio *entry_priv =
148 queue->entries[0].priv_data;
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;
157 int rt2x00mmio_initialize(struct rt2x00_dev *rt2x00dev)
159 struct data_queue *queue;
160 int status;
163 * Allocate DMA
165 queue_for_each(rt2x00dev, queue) {
166 status = rt2x00mmio_alloc_queue_dma(rt2x00dev, queue);
167 if (status)
168 goto exit;
172 * Register interrupt handler.
174 status = request_irq(rt2x00dev->irq,
175 rt2x00dev->ops->lib->irq_handler,
176 IRQF_SHARED, rt2x00dev->name, rt2x00dev);
177 if (status) {
178 rt2x00_err(rt2x00dev, "IRQ %d allocation failed (error %d)\n",
179 rt2x00dev->irq, status);
180 goto exit;
183 return 0;
185 exit:
186 queue_for_each(rt2x00dev, queue)
187 rt2x00mmio_free_queue_dma(rt2x00dev, queue);
189 return status;
191 EXPORT_SYMBOL_GPL(rt2x00mmio_initialize);
193 void rt2x00mmio_uninitialize(struct rt2x00_dev *rt2x00dev)
195 struct data_queue *queue;
198 * Free irq line.
200 free_irq(rt2x00dev->irq, rt2x00dev);
203 * Free DMA
205 queue_for_each(rt2x00dev, queue)
206 rt2x00mmio_free_queue_dma(rt2x00dev, queue);
208 EXPORT_SYMBOL_GPL(rt2x00mmio_uninitialize);
211 * rt2x00mmio module information.
213 MODULE_AUTHOR(DRV_PROJECT);
214 MODULE_VERSION(DRV_VERSION);
215 MODULE_DESCRIPTION("rt2x00 mmio library");
216 MODULE_LICENSE("GPL");