rt2x00queue.h 18.4 KB
Newer Older
I
Ivo van Doorn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*
	Copyright (C) 2004 - 2008 rt2x00 SourceForge Project
	<http://rt2x00.serialmonkey.com>

	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 2 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program; if not, write to the
	Free Software Foundation, Inc.,
	59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

/*
	Module: rt2x00
	Abstract: rt2x00 queue datastructures and routines
 */

#ifndef RT2X00QUEUE_H
#define RT2X00QUEUE_H

#include <linux/prefetch.h>

/**
 * DOC: Entrie frame size
 *
 * Ralink PCI devices demand the Frame size to be a multiple of 128 bytes,
 * for USB devices this restriction does not apply, but the value of
 * 2432 makes sense since it is big enough to contain the maximum fragment
 * size according to the ieee802.11 specs.
 */
#define DATA_FRAME_SIZE	2432
#define MGMT_FRAME_SIZE	256

/**
 * DOC: Number of entries per queue
 *
I
Ivo van Doorn 已提交
45 46 47 48 49 50 51
 * Under normal load without fragmentation 12 entries are sufficient
 * without the queue being filled up to the maximum. When using fragmentation
 * and the queue threshold code we need to add some additional margins to
 * make sure the queue will never (or only under extreme load) fill up
 * completely.
 * Since we don't use preallocated DMA having a large number of queue entries
 * will have only minimal impact on the memory requirements for the queue.
I
Ivo van Doorn 已提交
52
 */
I
Ivo van Doorn 已提交
53 54
#define RX_ENTRIES	24
#define TX_ENTRIES	24
I
Ivo van Doorn 已提交
55
#define BEACON_ENTRIES	1
I
Ivo van Doorn 已提交
56
#define ATIM_ENTRIES	8
I
Ivo van Doorn 已提交
57 58 59

/**
 * enum data_queue_qid: Queue identification
60 61 62 63 64 65 66 67 68 69 70
 *
 * @QID_AC_BE: AC BE queue
 * @QID_AC_BK: AC BK queue
 * @QID_AC_VI: AC VI queue
 * @QID_AC_VO: AC VO queue
 * @QID_HCCA: HCCA queue
 * @QID_MGMT: MGMT queue (prio queue)
 * @QID_RX: RX queue
 * @QID_OTHER: None of the above (don't use, only present for completeness)
 * @QID_BEACON: Beacon queue (value unspecified, don't send it to device)
 * @QID_ATIM: Atim queue (value unspeficied, don't send it to device)
I
Ivo van Doorn 已提交
71 72 73 74 75 76 77 78 79 80
 */
enum data_queue_qid {
	QID_AC_BE = 0,
	QID_AC_BK = 1,
	QID_AC_VI = 2,
	QID_AC_VO = 3,
	QID_HCCA = 4,
	QID_MGMT = 13,
	QID_RX = 14,
	QID_OTHER = 15,
81 82
	QID_BEACON,
	QID_ATIM,
I
Ivo van Doorn 已提交
83 84
};

85 86 87
/**
 * enum skb_frame_desc_flags: Flags for &struct skb_frame_desc
 *
I
Ivo van Doorn 已提交
88 89
 * @SKBDESC_DMA_MAPPED_RX: &skb_dma field has been mapped for RX
 * @SKBDESC_DMA_MAPPED_TX: &skb_dma field has been mapped for TX
I
Ivo van Doorn 已提交
90 91
 * @FRAME_DESC_IV_STRIPPED: Frame contained a IV/EIV provided by
 *	mac80211 but was stripped for processing by the driver.
92
 */
93
enum skb_frame_desc_flags {
I
Ivo van Doorn 已提交
94 95 96
	SKBDESC_DMA_MAPPED_RX = 1 << 0,
	SKBDESC_DMA_MAPPED_TX = 1 << 1,
	FRAME_DESC_IV_STRIPPED = 1 << 2,
97
};
98

I
Ivo van Doorn 已提交
99 100 101
/**
 * struct skb_frame_desc: Descriptor information for the skb buffer
 *
102 103
 * This structure is placed over the driver_data array, this means that
 * this structure should not exceed the size of that array (40 bytes).
I
Ivo van Doorn 已提交
104
 *
105
 * @flags: Frame flags, see &enum skb_frame_desc_flags.
106
 * @desc_len: Length of the frame descriptor.
107 108
 * @tx_rate_idx: the index of the TX rate, used for TX status reporting
 * @tx_rate_flags: the TX rate flags, used for TX status reporting
I
Ivo van Doorn 已提交
109 110 111
 * @desc: Pointer to descriptor part of the frame.
 *	Note that this pointer could point to something outside
 *	of the scope of the skb->data pointer.
I
Ivo van Doorn 已提交
112
 * @iv: IV/EIV data used during encryption/decryption.
113
 * @skb_dma: (PCI-only) the DMA address associated with the sk buffer.
I
Ivo van Doorn 已提交
114 115 116
 * @entry: The entry to which this sk buffer belongs.
 */
struct skb_frame_desc {
117 118 119 120 121
	u8 flags;

	u8 desc_len;
	u8 tx_rate_idx;
	u8 tx_rate_flags;
I
Ivo van Doorn 已提交
122

123 124
	void *desc;

I
Ivo van Doorn 已提交
125
	__le32 iv[2];
I
Ivo van Doorn 已提交
126

127
	dma_addr_t skb_dma;
I
Ivo van Doorn 已提交
128 129 130 131

	struct queue_entry *entry;
};

132 133 134 135
/**
 * get_skb_frame_desc - Obtain the rt2x00 frame descriptor from a sk_buff.
 * @skb: &struct sk_buff from where we obtain the &struct skb_frame_desc
 */
I
Ivo van Doorn 已提交
136 137
static inline struct skb_frame_desc* get_skb_frame_desc(struct sk_buff *skb)
{
138 139 140
	BUILD_BUG_ON(sizeof(struct skb_frame_desc) >
		     IEEE80211_TX_INFO_DRIVER_DATA_SIZE);
	return (struct skb_frame_desc *)&IEEE80211_SKB_CB(skb)->driver_data;
I
Ivo van Doorn 已提交
141 142
}

143 144 145
/**
 * enum rxdone_entry_desc_flags: Flags for &struct rxdone_entry_desc
 *
I
Ivo van Doorn 已提交
146 147
 * @RXDONE_SIGNAL_PLCP: Signal field contains the plcp value.
 * @RXDONE_SIGNAL_BITRATE: Signal field contains the bitrate value.
148
 * @RXDONE_MY_BSS: Does this frame originate from device's BSS.
149 150
 * @RXDONE_CRYPTO_IV: Driver provided IV/EIV data.
 * @RXDONE_CRYPTO_ICV: Driver provided ICV data.
151 152 153
 */
enum rxdone_entry_desc_flags {
	RXDONE_SIGNAL_PLCP = 1 << 0,
I
Ivo van Doorn 已提交
154 155
	RXDONE_SIGNAL_BITRATE = 1 << 1,
	RXDONE_MY_BSS = 1 << 2,
156 157
	RXDONE_CRYPTO_IV = 1 << 3,
	RXDONE_CRYPTO_ICV = 1 << 4,
158 159
};

160 161 162 163 164 165 166 167
/**
 * RXDONE_SIGNAL_MASK - Define to mask off all &rxdone_entry_desc_flags flags
 * except for the RXDONE_SIGNAL_* flags. This is useful to convert the dev_flags
 * from &rxdone_entry_desc to a signal value type.
 */
#define RXDONE_SIGNAL_MASK \
       ( RXDONE_SIGNAL_PLCP | RXDONE_SIGNAL_BITRATE )

I
Ivo van Doorn 已提交
168 169 170 171 172
/**
 * struct rxdone_entry_desc: RX Entry descriptor
 *
 * Summary of information that has been read from the RX frame descriptor.
 *
173
 * @timestamp: RX Timestamp
I
Ivo van Doorn 已提交
174 175
 * @signal: Signal of the received frame.
 * @rssi: RSSI of the received frame.
176
 * @noise: Measured noise during frame reception.
I
Ivo van Doorn 已提交
177 178
 * @size: Data size of the received frame.
 * @flags: MAC80211 receive flags (See &enum mac80211_rx_flags).
179
 * @dev_flags: Ralink receive flags (See &enum rxdone_entry_desc_flags).
I
Ivo van Doorn 已提交
180 181
 * @cipher: Cipher type used during decryption.
 * @cipher_status: Decryption status.
I
Ivo van Doorn 已提交
182
 * @iv: IV/EIV data used during decryption.
I
Ivo van Doorn 已提交
183
 * @icv: ICV data used during decryption.
I
Ivo van Doorn 已提交
184 185
 */
struct rxdone_entry_desc {
186
	u64 timestamp;
I
Ivo van Doorn 已提交
187 188
	int signal;
	int rssi;
189
	int noise;
I
Ivo van Doorn 已提交
190 191
	int size;
	int flags;
192
	int dev_flags;
I
Ivo van Doorn 已提交
193 194 195
	u8 cipher;
	u8 cipher_status;

I
Ivo van Doorn 已提交
196
	__le32 iv[2];
I
Ivo van Doorn 已提交
197
	__le32 icv;
I
Ivo van Doorn 已提交
198 199
};

I
Ivo van Doorn 已提交
200 201 202 203 204 205 206 207 208 209
/**
 * enum txdone_entry_desc_flags: Flags for &struct txdone_entry_desc
 *
 * @TXDONE_UNKNOWN: Hardware could not determine success of transmission.
 * @TXDONE_SUCCESS: Frame was successfully send
 * @TXDONE_FAILURE: Frame was not successfully send
 * @TXDONE_EXCESSIVE_RETRY: In addition to &TXDONE_FAILURE, the
 *	frame transmission failed due to excessive retries.
 */
enum txdone_entry_desc_flags {
210 211 212 213
	TXDONE_UNKNOWN,
	TXDONE_SUCCESS,
	TXDONE_FAILURE,
	TXDONE_EXCESSIVE_RETRY,
I
Ivo van Doorn 已提交
214 215
};

I
Ivo van Doorn 已提交
216 217 218 219 220 221
/**
 * struct txdone_entry_desc: TX done entry descriptor
 *
 * Summary of information that has been read from the TX frame descriptor
 * after the device is done with transmission.
 *
I
Ivo van Doorn 已提交
222
 * @flags: TX done flags (See &enum txdone_entry_desc_flags).
I
Ivo van Doorn 已提交
223 224 225
 * @retry: Retry count.
 */
struct txdone_entry_desc {
I
Ivo van Doorn 已提交
226
	unsigned long flags;
I
Ivo van Doorn 已提交
227 228 229 230 231 232 233
	int retry;
};

/**
 * enum txentry_desc_flags: Status flags for TX entry descriptor
 *
 * @ENTRY_TXD_RTS_FRAME: This frame is a RTS frame.
234
 * @ENTRY_TXD_CTS_FRAME: This frame is a CTS-to-self frame.
235
 * @ENTRY_TXD_GENERATE_SEQ: This frame requires sequence counter.
236
 * @ENTRY_TXD_FIRST_FRAGMENT: This is the first frame.
I
Ivo van Doorn 已提交
237 238 239 240
 * @ENTRY_TXD_MORE_FRAG: This frame is followed by another fragment.
 * @ENTRY_TXD_REQ_TIMESTAMP: Require timestamp to be inserted.
 * @ENTRY_TXD_BURST: This frame belongs to the same burst event.
 * @ENTRY_TXD_ACK: An ACK is required for this frame.
241
 * @ENTRY_TXD_RETRY_MODE: When set, the long retry count is used.
I
Ivo van Doorn 已提交
242 243 244 245
 * @ENTRY_TXD_ENCRYPT: This frame should be encrypted.
 * @ENTRY_TXD_ENCRYPT_PAIRWISE: Use pairwise key table (instead of shared).
 * @ENTRY_TXD_ENCRYPT_IV: Generate IV/EIV in hardware.
 * @ENTRY_TXD_ENCRYPT_MMIC: Generate MIC in hardware.
I
Ivo van Doorn 已提交
246 247 248
 */
enum txentry_desc_flags {
	ENTRY_TXD_RTS_FRAME,
249
	ENTRY_TXD_CTS_FRAME,
250
	ENTRY_TXD_GENERATE_SEQ,
251
	ENTRY_TXD_FIRST_FRAGMENT,
I
Ivo van Doorn 已提交
252 253 254 255
	ENTRY_TXD_MORE_FRAG,
	ENTRY_TXD_REQ_TIMESTAMP,
	ENTRY_TXD_BURST,
	ENTRY_TXD_ACK,
256
	ENTRY_TXD_RETRY_MODE,
I
Ivo van Doorn 已提交
257 258 259 260
	ENTRY_TXD_ENCRYPT,
	ENTRY_TXD_ENCRYPT_PAIRWISE,
	ENTRY_TXD_ENCRYPT_IV,
	ENTRY_TXD_ENCRYPT_MMIC,
I
Ivo van Doorn 已提交
261 262 263 264 265 266 267 268 269 270 271 272 273
};

/**
 * struct txentry_desc: TX Entry descriptor
 *
 * Summary of information for the frame descriptor before sending a TX frame.
 *
 * @flags: Descriptor flags (See &enum queue_entry_flags).
 * @queue: Queue identification (See &enum data_queue_qid).
 * @length_high: PLCP length high word.
 * @length_low: PLCP length low word.
 * @signal: PLCP signal.
 * @service: PLCP service.
274
 * @rate_mode: Rate mode (See @enum rate_modulation).
275
 * @retry_limit: Max number of retries.
I
Ivo van Doorn 已提交
276 277 278 279
 * @aifs: AIFS value.
 * @ifs: IFS value.
 * @cw_min: cwmin value.
 * @cw_max: cwmax value.
I
Ivo van Doorn 已提交
280 281 282
 * @cipher: Cipher type used for encryption.
 * @key_idx: Key index used for encryption.
 * @iv_offset: Position where IV should be inserted by hardware.
I
Ivo van Doorn 已提交
283 284 285 286 287 288 289 290 291 292 293
 */
struct txentry_desc {
	unsigned long flags;

	enum data_queue_qid queue;

	u16 length_high;
	u16 length_low;
	u16 signal;
	u16 service;

294 295
	u16 rate_mode;

296 297 298 299 300
	short retry_limit;
	short aifs;
	short ifs;
	short cw_min;
	short cw_max;
I
Ivo van Doorn 已提交
301 302 303 304

	enum cipher cipher;
	u16 key_idx;
	u16 iv_offset;
I
Ivo van Doorn 已提交
305 306 307 308 309 310 311 312 313 314 315 316 317 318
};

/**
 * enum queue_entry_flags: Status flags for queue entry
 *
 * @ENTRY_BCN_ASSIGNED: This entry has been assigned to an interface.
 *	As long as this bit is set, this entry may only be touched
 *	through the interface structure.
 * @ENTRY_OWNER_DEVICE_DATA: This entry is owned by the device for data
 *	transfer (either TX or RX depending on the queue). The entry should
 *	only be touched after the device has signaled it is done with it.
 * @ENTRY_OWNER_DEVICE_CRYPTO: This entry is owned by the device for data
 *	encryption or decryption. The entry should only be touched after
 *	the device has signaled it is done with it.
319 320
 * @ENTRY_DATA_PENDING: This entry contains a valid frame and is waiting
 *	for the signal to start sending.
I
Ivo van Doorn 已提交
321 322 323 324 325
 */
enum queue_entry_flags {
	ENTRY_BCN_ASSIGNED,
	ENTRY_OWNER_DEVICE_DATA,
	ENTRY_OWNER_DEVICE_CRYPTO,
326
	ENTRY_DATA_PENDING,
I
Ivo van Doorn 已提交
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
};

/**
 * struct queue_entry: Entry inside the &struct data_queue
 *
 * @flags: Entry flags, see &enum queue_entry_flags.
 * @queue: The data queue (&struct data_queue) to which this entry belongs.
 * @skb: The buffer which is currently being transmitted (for TX queue),
 *	or used to directly recieve data in (for RX queue).
 * @entry_idx: The entry index number.
 * @priv_data: Private data belonging to this queue entry. The pointer
 *	points to data specific to a particular driver and queue type.
 */
struct queue_entry {
	unsigned long flags;

	struct data_queue *queue;

	struct sk_buff *skb;

	unsigned int entry_idx;

	void *priv_data;
};

/**
 * enum queue_index: Queue index type
 *
 * @Q_INDEX: Index pointer to the current entry in the queue, if this entry is
 *	owned by the hardware then the queue is considered to be full.
 * @Q_INDEX_DONE: Index pointer to the next entry which will be completed by
 *	the hardware and for which we need to run the txdone handler. If this
 *	entry is not owned by the hardware the queue is considered to be empty.
 * @Q_INDEX_CRYPTO: Index pointer to the next entry which encryption/decription
 *	will be completed by the hardware next.
 * @Q_INDEX_MAX: Keep last, used in &struct data_queue to determine the size
 *	of the index array.
 */
enum queue_index {
	Q_INDEX,
	Q_INDEX_DONE,
	Q_INDEX_CRYPTO,
	Q_INDEX_MAX,
};

/**
 * struct data_queue: Data queue
 *
 * @rt2x00dev: Pointer to main &struct rt2x00dev where this queue belongs to.
 * @entries: Base address of the &struct queue_entry which are
 *	part of this queue.
 * @qid: The queue identification, see &enum data_queue_qid.
 * @lock: Spinlock to protect index handling. Whenever @index, @index_done or
 *	@index_crypt needs to be changed this lock should be grabbed to prevent
 *	index corruption due to concurrency.
 * @count: Number of frames handled in the queue.
 * @limit: Maximum number of entries in the queue.
384
 * @threshold: Minimum number of free entries before queue is kicked by force.
I
Ivo van Doorn 已提交
385 386 387
 * @length: Number of frames in queue.
 * @index: Index pointers to entry positions in the queue,
 *	use &enum queue_index to get a specific index field.
388
 * @txop: maximum burst time.
I
Ivo van Doorn 已提交
389 390 391 392 393
 * @aifs: The aifs value for outgoing frames (field ignored in RX queue).
 * @cw_min: The cw min value for outgoing frames (field ignored in RX queue).
 * @cw_max: The cw max value for outgoing frames (field ignored in RX queue).
 * @data_size: Maximum data size for the frames in this queue.
 * @desc_size: Hardware descriptor size for the data in this queue.
394 395
 * @usb_endpoint: Device endpoint used for communication (USB only)
 * @usb_maxpacket: Max packet size for given endpoint (USB only)
I
Ivo van Doorn 已提交
396 397 398 399 400 401 402 403 404 405
 */
struct data_queue {
	struct rt2x00_dev *rt2x00dev;
	struct queue_entry *entries;

	enum data_queue_qid qid;

	spinlock_t lock;
	unsigned int count;
	unsigned short limit;
406
	unsigned short threshold;
I
Ivo van Doorn 已提交
407 408 409
	unsigned short length;
	unsigned short index[Q_INDEX_MAX];

410
	unsigned short txop;
I
Ivo van Doorn 已提交
411 412 413 414 415 416
	unsigned short aifs;
	unsigned short cw_min;
	unsigned short cw_max;

	unsigned short data_size;
	unsigned short desc_size;
417 418 419

	unsigned short usb_endpoint;
	unsigned short usb_maxpacket;
I
Ivo van Doorn 已提交
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
};

/**
 * struct data_queue_desc: Data queue description
 *
 * The information in this structure is used by drivers
 * to inform rt2x00lib about the creation of the data queue.
 *
 * @entry_num: Maximum number of entries for a queue.
 * @data_size: Maximum data size for the frames in this queue.
 * @desc_size: Hardware descriptor size for the data in this queue.
 * @priv_size: Size of per-queue_entry private data.
 */
struct data_queue_desc {
	unsigned short entry_num;
	unsigned short data_size;
	unsigned short desc_size;
	unsigned short priv_size;
};

/**
 * queue_end - Return pointer to the last queue (HELPER MACRO).
 * @__dev: Pointer to &struct rt2x00_dev
 *
 * Using the base rx pointer and the maximum number of available queues,
 * this macro will return the address of 1 position beyond  the end of the
 * queues array.
 */
#define queue_end(__dev) \
	&(__dev)->rx[(__dev)->data_queues]

/**
 * tx_queue_end - Return pointer to the last TX queue (HELPER MACRO).
 * @__dev: Pointer to &struct rt2x00_dev
 *
 * Using the base tx pointer and the maximum number of available TX
 * queues, this macro will return the address of 1 position beyond
 * the end of the TX queue array.
 */
#define tx_queue_end(__dev) \
460
	&(__dev)->tx[(__dev)->ops->tx_queues]
I
Ivo van Doorn 已提交
461

462 463 464 465 466 467 468 469 470 471 472 473 474
/**
 * queue_next - Return pointer to next queue in list (HELPER MACRO).
 * @__queue: Current queue for which we need the next queue
 *
 * Using the current queue address we take the address directly
 * after the queue to take the next queue. Note that this macro
 * should be used carefully since it does not protect against
 * moving past the end of the list. (See macros &queue_end and
 * &tx_queue_end for determining the end of the queue).
 */
#define queue_next(__queue) \
	&(__queue)[1]

I
Ivo van Doorn 已提交
475 476 477 478 479 480 481 482 483 484
/**
 * queue_loop - Loop through the queues within a specific range (HELPER MACRO).
 * @__entry: Pointer where the current queue entry will be stored in.
 * @__start: Start queue pointer.
 * @__end: End queue pointer.
 *
 * This macro will loop through all queues between &__start and &__end.
 */
#define queue_loop(__entry, __start, __end)			\
	for ((__entry) = (__start);				\
485 486
	     prefetch(queue_next(__entry)), (__entry) != (__end);\
	     (__entry) = queue_next(__entry))
I
Ivo van Doorn 已提交
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546

/**
 * queue_for_each - Loop through all queues
 * @__dev: Pointer to &struct rt2x00_dev
 * @__entry: Pointer where the current queue entry will be stored in.
 *
 * This macro will loop through all available queues.
 */
#define queue_for_each(__dev, __entry) \
	queue_loop(__entry, (__dev)->rx, queue_end(__dev))

/**
 * tx_queue_for_each - Loop through the TX queues
 * @__dev: Pointer to &struct rt2x00_dev
 * @__entry: Pointer where the current queue entry will be stored in.
 *
 * This macro will loop through all TX related queues excluding
 * the Beacon and Atim queues.
 */
#define tx_queue_for_each(__dev, __entry) \
	queue_loop(__entry, (__dev)->tx, tx_queue_end(__dev))

/**
 * txall_queue_for_each - Loop through all TX related queues
 * @__dev: Pointer to &struct rt2x00_dev
 * @__entry: Pointer where the current queue entry will be stored in.
 *
 * This macro will loop through all TX related queues including
 * the Beacon and Atim queues.
 */
#define txall_queue_for_each(__dev, __entry) \
	queue_loop(__entry, (__dev)->tx, queue_end(__dev))

/**
 * rt2x00queue_empty - Check if the queue is empty.
 * @queue: Queue to check if empty.
 */
static inline int rt2x00queue_empty(struct data_queue *queue)
{
	return queue->length == 0;
}

/**
 * rt2x00queue_full - Check if the queue is full.
 * @queue: Queue to check if full.
 */
static inline int rt2x00queue_full(struct data_queue *queue)
{
	return queue->length == queue->limit;
}

/**
 * rt2x00queue_free - Check the number of available entries in queue.
 * @queue: Queue to check.
 */
static inline int rt2x00queue_available(struct data_queue *queue)
{
	return queue->limit - queue->length;
}

547 548 549 550 551 552 553 554 555
/**
 * rt2x00queue_threshold - Check if the queue is below threshold
 * @queue: Queue to check.
 */
static inline int rt2x00queue_threshold(struct data_queue *queue)
{
	return rt2x00queue_available(queue) < queue->threshold;
}

I
Ivo van Doorn 已提交
556
/**
I
Ivo van Doorn 已提交
557 558 559 560 561 562 563 564 565 566 567 568 569
 * _rt2x00_desc_read - Read a word from the hardware descriptor.
 * @desc: Base descriptor address
 * @word: Word index from where the descriptor should be read.
 * @value: Address where the descriptor value should be written into.
 */
static inline void _rt2x00_desc_read(__le32 *desc, const u8 word, __le32 *value)
{
	*value = desc[word];
}

/**
 * rt2x00_desc_read - Read a word from the hardware descriptor, this
 * function will take care of the byte ordering.
I
Ivo van Doorn 已提交
570 571 572 573 574 575
 * @desc: Base descriptor address
 * @word: Word index from where the descriptor should be read.
 * @value: Address where the descriptor value should be written into.
 */
static inline void rt2x00_desc_read(__le32 *desc, const u8 word, u32 *value)
{
I
Ivo van Doorn 已提交
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
	__le32 tmp;
	_rt2x00_desc_read(desc, word, &tmp);
	*value = le32_to_cpu(tmp);
}

/**
 * rt2x00_desc_write - write a word to the hardware descriptor, this
 * function will take care of the byte ordering.
 * @desc: Base descriptor address
 * @word: Word index from where the descriptor should be written.
 * @value: Value that should be written into the descriptor.
 */
static inline void _rt2x00_desc_write(__le32 *desc, const u8 word, __le32 value)
{
	desc[word] = value;
I
Ivo van Doorn 已提交
591 592 593
}

/**
I
Ivo van Doorn 已提交
594
 * rt2x00_desc_write - write a word to the hardware descriptor.
I
Ivo van Doorn 已提交
595 596 597 598 599 600
 * @desc: Base descriptor address
 * @word: Word index from where the descriptor should be written.
 * @value: Value that should be written into the descriptor.
 */
static inline void rt2x00_desc_write(__le32 *desc, const u8 word, u32 value)
{
I
Ivo van Doorn 已提交
601
	_rt2x00_desc_write(desc, word, cpu_to_le32(value));
I
Ivo van Doorn 已提交
602 603 604
}

#endif /* RT2X00QUEUE_H */