2 Copyright (C) 2004 - 2007 rt2x00 SourceForge Project
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.
23 Abstract: rt2x00 ring datastructures and routines
31 * Descriptor information for the skb buffer
34 unsigned int frame_type;
36 unsigned int desc_len;
37 unsigned int data_len;
42 struct data_ring *ring;
43 struct data_entry *entry;
46 static inline struct skb_desc* get_skb_desc(struct sk_buff *skb)
48 return (struct skb_desc*)&skb->cb[0];
53 * Summary of information that has been read from the
54 * RX frame descriptor.
56 struct rxdata_entry_desc {
66 * Summary of information that should be written into the
67 * descriptor for sending a TX frame.
69 struct txdata_entry_desc {
71 #define ENTRY_TXDONE 1
72 #define ENTRY_TXD_RTS_FRAME 2
73 #define ENTRY_TXD_OFDM_RATE 3
74 #define ENTRY_TXD_MORE_FRAG 4
75 #define ENTRY_TXD_REQ_TIMESTAMP 5
76 #define ENTRY_TXD_BURST 6
77 #define ENTRY_TXD_ACK 7
80 * Queue ID. ID's 0-4 are data TX rings
85 #define QUEUE_OTHER 15
106 * The data ring is a list of data entries.
107 * Each entry holds a reference to the descriptor
108 * and the data buffer. For TX rings the reference to the
109 * sk_buff of the packet being transmitted is also stored here.
116 #define ENTRY_OWNER_NIC 1
121 struct data_ring *ring;
124 * sk_buff for the packet which is being transmitted
125 * in this entry (Only used with TX related rings).
130 * Store a ieee80211_tx_status structure in each
131 * ring entry, this will optimize the txdone
134 struct ieee80211_tx_status tx_status;
137 * private pointer specific to driver.
142 * Data address for this entry.
150 * Data rings are used by the device to send and receive packets.
151 * The data_addr is the base address of the data memory.
152 * To determine at which point in the ring we are,
153 * have to use the rt2x00_ring_index_*() functions.
157 * Pointer to main rt2x00dev structure where this
160 struct rt2x00_dev *rt2x00dev;
163 * Base address for the device specific data entries.
165 struct data_entry *entry;
168 * TX queue statistic info.
170 struct ieee80211_tx_queue_stats_data stats;
173 * TX Queue parameters.
175 struct ieee80211_tx_queue_params tx_params;
178 * Base address for data ring.
190 * Size of packet and descriptor in bytes.
197 * Handlers to determine the address of the current device specific
198 * data entry, where either index or index_done points to.
200 static inline struct data_entry *rt2x00_get_data_entry(struct data_ring *ring)
202 return &ring->entry[ring->index];
205 static inline struct data_entry *rt2x00_get_data_entry_done(struct data_ring
208 return &ring->entry[ring->index_done];
214 static inline int rt2x00_get_ring_size(struct data_ring *ring)
216 return ring->stats.limit * (ring->desc_size + ring->data_size);
220 * Ring index manipulation functions.
222 static inline void rt2x00_ring_index_inc(struct data_ring *ring)
225 if (ring->index >= ring->stats.limit)
230 static inline void rt2x00_ring_index_done_inc(struct data_ring *ring)
233 if (ring->index_done >= ring->stats.limit)
234 ring->index_done = 0;
239 static inline void rt2x00_ring_index_clear(struct data_ring *ring)
242 ring->index_done = 0;
244 ring->stats.count = 0;
247 static inline int rt2x00_ring_empty(struct data_ring *ring)
249 return ring->stats.len == 0;
252 static inline int rt2x00_ring_full(struct data_ring *ring)
254 return ring->stats.len == ring->stats.limit;
257 static inline int rt2x00_ring_free(struct data_ring *ring)
259 return ring->stats.limit - ring->stats.len;
263 * TX/RX Descriptor access functions.
265 static inline void rt2x00_desc_read(__le32 *desc,
266 const u8 word, u32 *value)
268 *value = le32_to_cpu(desc[word]);
271 static inline void rt2x00_desc_write(__le32 *desc,
272 const u8 word, const u32 value)
274 desc[word] = cpu_to_le32(value);
277 #endif /* RT2X00RING_H */