| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 1 | /* | 
 | 2 | 	Copyright (C) 2004 - 2008 rt2x00 SourceForge Project | 
 | 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: rt2x00lib | 
 | 23 | 	Abstract: rt2x00 queue specific routines. | 
 | 24 |  */ | 
 | 25 |  | 
 | 26 | #include <linux/kernel.h> | 
 | 27 | #include <linux/module.h> | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 28 | #include <linux/dma-mapping.h> | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 29 |  | 
 | 30 | #include "rt2x00.h" | 
 | 31 | #include "rt2x00lib.h" | 
 | 32 |  | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 33 | struct sk_buff *rt2x00queue_alloc_rxskb(struct rt2x00_dev *rt2x00dev, | 
 | 34 | 					struct queue_entry *entry) | 
| Gertjan van Wingerde | 239c249 | 2008-06-06 22:54:12 +0200 | [diff] [blame] | 35 | { | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 36 | 	struct sk_buff *skb; | 
 | 37 | 	struct skb_frame_desc *skbdesc; | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 38 | 	unsigned int frame_size; | 
 | 39 | 	unsigned int head_size = 0; | 
 | 40 | 	unsigned int tail_size = 0; | 
| Gertjan van Wingerde | 239c249 | 2008-06-06 22:54:12 +0200 | [diff] [blame] | 41 |  | 
 | 42 | 	/* | 
 | 43 | 	 * The frame size includes descriptor size, because the | 
 | 44 | 	 * hardware directly receive the frame into the skbuffer. | 
 | 45 | 	 */ | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 46 | 	frame_size = entry->queue->data_size + entry->queue->desc_size; | 
| Gertjan van Wingerde | 239c249 | 2008-06-06 22:54:12 +0200 | [diff] [blame] | 47 |  | 
 | 48 | 	/* | 
| Ivo van Doorn | ff35239 | 2008-07-04 14:56:07 +0200 | [diff] [blame] | 49 | 	 * The payload should be aligned to a 4-byte boundary, | 
 | 50 | 	 * this means we need at least 3 bytes for moving the frame | 
 | 51 | 	 * into the correct offset. | 
| Gertjan van Wingerde | 239c249 | 2008-06-06 22:54:12 +0200 | [diff] [blame] | 52 | 	 */ | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 53 | 	head_size = 4; | 
 | 54 |  | 
 | 55 | 	/* | 
 | 56 | 	 * For IV/EIV/ICV assembly we must make sure there is | 
 | 57 | 	 * at least 8 bytes bytes available in headroom for IV/EIV | 
| Ivo van Doorn | 9c3444d | 2008-12-03 17:29:48 +0100 | [diff] [blame] | 58 | 	 * and 8 bytes for ICV data as tailroon. | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 59 | 	 */ | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 60 | 	if (test_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags)) { | 
 | 61 | 		head_size += 8; | 
| Ivo van Doorn | 9c3444d | 2008-12-03 17:29:48 +0100 | [diff] [blame] | 62 | 		tail_size += 8; | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 63 | 	} | 
| Gertjan van Wingerde | 239c249 | 2008-06-06 22:54:12 +0200 | [diff] [blame] | 64 |  | 
 | 65 | 	/* | 
 | 66 | 	 * Allocate skbuffer. | 
 | 67 | 	 */ | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 68 | 	skb = dev_alloc_skb(frame_size + head_size + tail_size); | 
| Gertjan van Wingerde | 239c249 | 2008-06-06 22:54:12 +0200 | [diff] [blame] | 69 | 	if (!skb) | 
 | 70 | 		return NULL; | 
 | 71 |  | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 72 | 	/* | 
 | 73 | 	 * Make sure we not have a frame with the requested bytes | 
 | 74 | 	 * available in the head and tail. | 
 | 75 | 	 */ | 
 | 76 | 	skb_reserve(skb, head_size); | 
| Gertjan van Wingerde | 239c249 | 2008-06-06 22:54:12 +0200 | [diff] [blame] | 77 | 	skb_put(skb, frame_size); | 
 | 78 |  | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 79 | 	/* | 
 | 80 | 	 * Populate skbdesc. | 
 | 81 | 	 */ | 
 | 82 | 	skbdesc = get_skb_frame_desc(skb); | 
 | 83 | 	memset(skbdesc, 0, sizeof(*skbdesc)); | 
 | 84 | 	skbdesc->entry = entry; | 
 | 85 |  | 
 | 86 | 	if (test_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags)) { | 
 | 87 | 		skbdesc->skb_dma = dma_map_single(rt2x00dev->dev, | 
 | 88 | 						  skb->data, | 
 | 89 | 						  skb->len, | 
 | 90 | 						  DMA_FROM_DEVICE); | 
 | 91 | 		skbdesc->flags |= SKBDESC_DMA_MAPPED_RX; | 
 | 92 | 	} | 
 | 93 |  | 
| Gertjan van Wingerde | 239c249 | 2008-06-06 22:54:12 +0200 | [diff] [blame] | 94 | 	return skb; | 
 | 95 | } | 
| Gertjan van Wingerde | 30caa6e | 2008-06-16 19:56:08 +0200 | [diff] [blame] | 96 |  | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 97 | void rt2x00queue_map_txskb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb) | 
| Gertjan van Wingerde | 30caa6e | 2008-06-16 19:56:08 +0200 | [diff] [blame] | 98 | { | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 99 | 	struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb); | 
 | 100 |  | 
| Ivo van Doorn | 3ee54a0 | 2008-08-29 21:04:50 +0200 | [diff] [blame] | 101 | 	/* | 
 | 102 | 	 * If device has requested headroom, we should make sure that | 
 | 103 | 	 * is also mapped to the DMA so it can be used for transfering | 
 | 104 | 	 * additional descriptor information to the hardware. | 
 | 105 | 	 */ | 
 | 106 | 	skb_push(skb, rt2x00dev->hw->extra_tx_headroom); | 
 | 107 |  | 
 | 108 | 	skbdesc->skb_dma = | 
 | 109 | 	    dma_map_single(rt2x00dev->dev, skb->data, skb->len, DMA_TO_DEVICE); | 
 | 110 |  | 
 | 111 | 	/* | 
 | 112 | 	 * Restore data pointer to original location again. | 
 | 113 | 	 */ | 
 | 114 | 	skb_pull(skb, rt2x00dev->hw->extra_tx_headroom); | 
 | 115 |  | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 116 | 	skbdesc->flags |= SKBDESC_DMA_MAPPED_TX; | 
 | 117 | } | 
 | 118 | EXPORT_SYMBOL_GPL(rt2x00queue_map_txskb); | 
 | 119 |  | 
 | 120 | void rt2x00queue_unmap_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb) | 
 | 121 | { | 
 | 122 | 	struct skb_frame_desc *skbdesc = get_skb_frame_desc(skb); | 
 | 123 |  | 
 | 124 | 	if (skbdesc->flags & SKBDESC_DMA_MAPPED_RX) { | 
 | 125 | 		dma_unmap_single(rt2x00dev->dev, skbdesc->skb_dma, skb->len, | 
 | 126 | 				 DMA_FROM_DEVICE); | 
 | 127 | 		skbdesc->flags &= ~SKBDESC_DMA_MAPPED_RX; | 
 | 128 | 	} | 
 | 129 |  | 
 | 130 | 	if (skbdesc->flags & SKBDESC_DMA_MAPPED_TX) { | 
| Ivo van Doorn | 3ee54a0 | 2008-08-29 21:04:50 +0200 | [diff] [blame] | 131 | 		/* | 
 | 132 | 		 * Add headroom to the skb length, it has been removed | 
 | 133 | 		 * by the driver, but it was actually mapped to DMA. | 
 | 134 | 		 */ | 
 | 135 | 		dma_unmap_single(rt2x00dev->dev, skbdesc->skb_dma, | 
 | 136 | 				 skb->len + rt2x00dev->hw->extra_tx_headroom, | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 137 | 				 DMA_TO_DEVICE); | 
 | 138 | 		skbdesc->flags &= ~SKBDESC_DMA_MAPPED_TX; | 
 | 139 | 	} | 
 | 140 | } | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 141 |  | 
 | 142 | void rt2x00queue_free_skb(struct rt2x00_dev *rt2x00dev, struct sk_buff *skb) | 
 | 143 | { | 
| Ivo van Doorn | 9a61319 | 2008-07-05 15:11:57 +0200 | [diff] [blame] | 144 | 	if (!skb) | 
 | 145 | 		return; | 
 | 146 |  | 
| Ivo van Doorn | 61243d8 | 2008-06-20 22:10:53 +0200 | [diff] [blame] | 147 | 	rt2x00queue_unmap_skb(rt2x00dev, skb); | 
| Gertjan van Wingerde | 30caa6e | 2008-06-16 19:56:08 +0200 | [diff] [blame] | 148 | 	dev_kfree_skb_any(skb); | 
 | 149 | } | 
| Gertjan van Wingerde | 239c249 | 2008-06-06 22:54:12 +0200 | [diff] [blame] | 150 |  | 
| Ivo van Doorn | bd88a78 | 2008-07-09 15:12:44 +0200 | [diff] [blame] | 151 | static void rt2x00queue_create_tx_descriptor(struct queue_entry *entry, | 
 | 152 | 					     struct txentry_desc *txdesc) | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 153 | { | 
| Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 154 | 	struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev; | 
| Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 155 | 	struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(entry->skb); | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 156 | 	struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)entry->skb->data; | 
| Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 157 | 	struct ieee80211_rate *rate = | 
| Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 158 | 	    ieee80211_get_tx_rate(rt2x00dev->hw, tx_info); | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 159 | 	const struct rt2x00_rate *hwrate; | 
 | 160 | 	unsigned int data_length; | 
 | 161 | 	unsigned int duration; | 
 | 162 | 	unsigned int residual; | 
| Ivo van Doorn | d4764b2 | 2008-07-28 10:21:16 +0200 | [diff] [blame] | 163 | 	unsigned long irqflags; | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 164 |  | 
 | 165 | 	memset(txdesc, 0, sizeof(*txdesc)); | 
 | 166 |  | 
 | 167 | 	/* | 
 | 168 | 	 * Initialize information from queue | 
 | 169 | 	 */ | 
 | 170 | 	txdesc->queue = entry->queue->qid; | 
 | 171 | 	txdesc->cw_min = entry->queue->cw_min; | 
 | 172 | 	txdesc->cw_max = entry->queue->cw_max; | 
 | 173 | 	txdesc->aifs = entry->queue->aifs; | 
 | 174 |  | 
| Ivo van Doorn | 9c3444d | 2008-12-03 17:29:48 +0100 | [diff] [blame] | 175 | 	/* Data length + CRC */ | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 176 | 	data_length = entry->skb->len + 4; | 
 | 177 |  | 
 | 178 | 	/* | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 179 | 	 * Check whether this frame is to be acked. | 
 | 180 | 	 */ | 
| Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 181 | 	if (!(tx_info->flags & IEEE80211_TX_CTL_NO_ACK)) | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 182 | 		__set_bit(ENTRY_TXD_ACK, &txdesc->flags); | 
 | 183 |  | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 184 | 	if (test_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags) && | 
 | 185 | 	    !entry->skb->do_not_encrypt) { | 
| Ivo van Doorn | 9c3444d | 2008-12-03 17:29:48 +0100 | [diff] [blame] | 186 | 		/* Apply crypto specific descriptor information */ | 
 | 187 | 		rt2x00crypto_create_tx_descriptor(entry, txdesc); | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 188 |  | 
 | 189 | 		/* | 
 | 190 | 		 * Extend frame length to include all encryption overhead | 
 | 191 | 		 * that will be added by the hardware. | 
 | 192 | 		 */ | 
 | 193 | 		data_length += rt2x00crypto_tx_overhead(tx_info); | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 194 | 	} | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 195 |  | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 196 | 	/* | 
 | 197 | 	 * Check if this is a RTS/CTS frame | 
 | 198 | 	 */ | 
| Ivo van Doorn | ac10446 | 2008-06-16 19:54:57 +0200 | [diff] [blame] | 199 | 	if (ieee80211_is_rts(hdr->frame_control) || | 
 | 200 | 	    ieee80211_is_cts(hdr->frame_control)) { | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 201 | 		__set_bit(ENTRY_TXD_BURST, &txdesc->flags); | 
| Ivo van Doorn | ac10446 | 2008-06-16 19:54:57 +0200 | [diff] [blame] | 202 | 		if (ieee80211_is_rts(hdr->frame_control)) | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 203 | 			__set_bit(ENTRY_TXD_RTS_FRAME, &txdesc->flags); | 
| Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 204 | 		else | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 205 | 			__set_bit(ENTRY_TXD_CTS_FRAME, &txdesc->flags); | 
| Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 206 | 		if (tx_info->control.rts_cts_rate_idx >= 0) | 
| Johannes Berg | 2e92e6f | 2008-05-15 12:55:27 +0200 | [diff] [blame] | 207 | 			rate = | 
| Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 208 | 			    ieee80211_get_rts_cts_rate(rt2x00dev->hw, tx_info); | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 209 | 	} | 
 | 210 |  | 
 | 211 | 	/* | 
 | 212 | 	 * Determine retry information. | 
 | 213 | 	 */ | 
| Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 214 | 	txdesc->retry_limit = tx_info->control.rates[0].count - 1; | 
| Ivo van Doorn | 42c8285 | 2008-12-02 18:20:04 +0100 | [diff] [blame] | 215 | 	if (txdesc->retry_limit >= rt2x00dev->long_retry) | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 216 | 		__set_bit(ENTRY_TXD_RETRY_MODE, &txdesc->flags); | 
 | 217 |  | 
 | 218 | 	/* | 
 | 219 | 	 * Check if more fragments are pending | 
 | 220 | 	 */ | 
| Harvey Harrison | 8b7b1e0 | 2008-06-11 14:21:56 -0700 | [diff] [blame] | 221 | 	if (ieee80211_has_morefrags(hdr->frame_control)) { | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 222 | 		__set_bit(ENTRY_TXD_BURST, &txdesc->flags); | 
 | 223 | 		__set_bit(ENTRY_TXD_MORE_FRAG, &txdesc->flags); | 
 | 224 | 	} | 
 | 225 |  | 
 | 226 | 	/* | 
 | 227 | 	 * Beacons and probe responses require the tsf timestamp | 
 | 228 | 	 * to be inserted into the frame. | 
 | 229 | 	 */ | 
| Ivo van Doorn | ac10446 | 2008-06-16 19:54:57 +0200 | [diff] [blame] | 230 | 	if (ieee80211_is_beacon(hdr->frame_control) || | 
 | 231 | 	    ieee80211_is_probe_resp(hdr->frame_control)) | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 232 | 		__set_bit(ENTRY_TXD_REQ_TIMESTAMP, &txdesc->flags); | 
 | 233 |  | 
 | 234 | 	/* | 
 | 235 | 	 * Determine with what IFS priority this frame should be send. | 
 | 236 | 	 * Set ifs to IFS_SIFS when the this is not the first fragment, | 
 | 237 | 	 * or this fragment came after RTS/CTS. | 
 | 238 | 	 */ | 
 | 239 | 	if (test_bit(ENTRY_TXD_RTS_FRAME, &txdesc->flags)) { | 
 | 240 | 		txdesc->ifs = IFS_SIFS; | 
| Johannes Berg | e039fa4 | 2008-05-15 12:55:29 +0200 | [diff] [blame] | 241 | 	} else if (tx_info->flags & IEEE80211_TX_CTL_FIRST_FRAGMENT) { | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 242 | 		__set_bit(ENTRY_TXD_FIRST_FRAGMENT, &txdesc->flags); | 
 | 243 | 		txdesc->ifs = IFS_BACKOFF; | 
 | 244 | 	} else { | 
 | 245 | 		txdesc->ifs = IFS_SIFS; | 
 | 246 | 	} | 
 | 247 |  | 
 | 248 | 	/* | 
| Ivo van Doorn | 5adf6d6 | 2008-07-20 18:03:38 +0200 | [diff] [blame] | 249 | 	 * Hardware should insert sequence counter. | 
 | 250 | 	 * FIXME: We insert a software sequence counter first for | 
 | 251 | 	 * hardware that doesn't support hardware sequence counting. | 
 | 252 | 	 * | 
 | 253 | 	 * This is wrong because beacons are not getting sequence | 
 | 254 | 	 * numbers assigned properly. | 
 | 255 | 	 * | 
 | 256 | 	 * A secondary problem exists for drivers that cannot toggle | 
 | 257 | 	 * sequence counting per-frame, since those will override the | 
 | 258 | 	 * sequence counter given by mac80211. | 
 | 259 | 	 */ | 
 | 260 | 	if (tx_info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) { | 
| Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 261 | 		if (likely(tx_info->control.vif)) { | 
 | 262 | 			struct rt2x00_intf *intf; | 
| Ivo van Doorn | 5adf6d6 | 2008-07-20 18:03:38 +0200 | [diff] [blame] | 263 |  | 
| Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 264 | 			intf = vif_to_intf(tx_info->control.vif); | 
| Ivo van Doorn | 5adf6d6 | 2008-07-20 18:03:38 +0200 | [diff] [blame] | 265 |  | 
| Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 266 | 			spin_lock_irqsave(&intf->seqlock, irqflags); | 
| Ivo van Doorn | 5adf6d6 | 2008-07-20 18:03:38 +0200 | [diff] [blame] | 267 |  | 
| Johannes Berg | 25d834e | 2008-09-12 22:52:47 +0200 | [diff] [blame] | 268 | 			if (test_bit(ENTRY_TXD_FIRST_FRAGMENT, &txdesc->flags)) | 
 | 269 | 				intf->seqno += 0x10; | 
 | 270 | 			hdr->seq_ctrl &= cpu_to_le16(IEEE80211_SCTL_FRAG); | 
 | 271 | 			hdr->seq_ctrl |= cpu_to_le16(intf->seqno); | 
 | 272 |  | 
 | 273 | 			spin_unlock_irqrestore(&intf->seqlock, irqflags); | 
 | 274 |  | 
 | 275 | 			__set_bit(ENTRY_TXD_GENERATE_SEQ, &txdesc->flags); | 
 | 276 | 		} | 
| Ivo van Doorn | 5adf6d6 | 2008-07-20 18:03:38 +0200 | [diff] [blame] | 277 | 	} | 
 | 278 |  | 
 | 279 | 	/* | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 280 | 	 * PLCP setup | 
 | 281 | 	 * Length calculation depends on OFDM/CCK rate. | 
 | 282 | 	 */ | 
 | 283 | 	hwrate = rt2x00_get_rate(rate->hw_value); | 
 | 284 | 	txdesc->signal = hwrate->plcp; | 
 | 285 | 	txdesc->service = 0x04; | 
 | 286 |  | 
 | 287 | 	if (hwrate->flags & DEV_RATE_OFDM) { | 
 | 288 | 		__set_bit(ENTRY_TXD_OFDM_RATE, &txdesc->flags); | 
 | 289 |  | 
 | 290 | 		txdesc->length_high = (data_length >> 6) & 0x3f; | 
 | 291 | 		txdesc->length_low = data_length & 0x3f; | 
 | 292 | 	} else { | 
 | 293 | 		/* | 
 | 294 | 		 * Convert length to microseconds. | 
 | 295 | 		 */ | 
| Ivo van Doorn | bad1363 | 2008-11-09 20:47:00 +0100 | [diff] [blame] | 296 | 		residual = GET_DURATION_RES(data_length, hwrate->bitrate); | 
 | 297 | 		duration = GET_DURATION(data_length, hwrate->bitrate); | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 298 |  | 
 | 299 | 		if (residual != 0) { | 
 | 300 | 			duration++; | 
 | 301 |  | 
 | 302 | 			/* | 
 | 303 | 			 * Check if we need to set the Length Extension | 
 | 304 | 			 */ | 
 | 305 | 			if (hwrate->bitrate == 110 && residual <= 30) | 
 | 306 | 				txdesc->service |= 0x80; | 
 | 307 | 		} | 
 | 308 |  | 
 | 309 | 		txdesc->length_high = (duration >> 8) & 0xff; | 
 | 310 | 		txdesc->length_low = duration & 0xff; | 
 | 311 |  | 
 | 312 | 		/* | 
 | 313 | 		 * When preamble is enabled we should set the | 
 | 314 | 		 * preamble bit for the signal. | 
 | 315 | 		 */ | 
 | 316 | 		if (rt2x00_get_rate_preamble(rate->hw_value)) | 
 | 317 | 			txdesc->signal |= 0x08; | 
 | 318 | 	} | 
 | 319 | } | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 320 |  | 
| Ivo van Doorn | bd88a78 | 2008-07-09 15:12:44 +0200 | [diff] [blame] | 321 | static void rt2x00queue_write_tx_descriptor(struct queue_entry *entry, | 
 | 322 | 					    struct txentry_desc *txdesc) | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 323 | { | 
| Ivo van Doorn | b869767 | 2008-06-06 22:53:14 +0200 | [diff] [blame] | 324 | 	struct data_queue *queue = entry->queue; | 
 | 325 | 	struct rt2x00_dev *rt2x00dev = queue->rt2x00dev; | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 326 |  | 
 | 327 | 	rt2x00dev->ops->lib->write_tx_desc(rt2x00dev, entry->skb, txdesc); | 
 | 328 |  | 
 | 329 | 	/* | 
 | 330 | 	 * All processing on the frame has been completed, this means | 
 | 331 | 	 * it is now ready to be dumped to userspace through debugfs. | 
 | 332 | 	 */ | 
 | 333 | 	rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_TX, entry->skb); | 
 | 334 |  | 
 | 335 | 	/* | 
| Ivo van Doorn | b869767 | 2008-06-06 22:53:14 +0200 | [diff] [blame] | 336 | 	 * Check if we need to kick the queue, there are however a few rules | 
 | 337 | 	 *	1) Don't kick beacon queue | 
 | 338 | 	 *	2) Don't kick unless this is the last in frame in a burst. | 
 | 339 | 	 *	   When the burst flag is set, this frame is always followed | 
 | 340 | 	 *	   by another frame which in some way are related to eachother. | 
 | 341 | 	 *	   This is true for fragments, RTS or CTS-to-self frames. | 
 | 342 | 	 *	3) Rule 2 can be broken when the available entries | 
 | 343 | 	 *	   in the queue are less then a certain threshold. | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 344 | 	 */ | 
| Ivo van Doorn | b869767 | 2008-06-06 22:53:14 +0200 | [diff] [blame] | 345 | 	if (entry->queue->qid == QID_BEACON) | 
 | 346 | 		return; | 
 | 347 |  | 
 | 348 | 	if (rt2x00queue_threshold(queue) || | 
 | 349 | 	    !test_bit(ENTRY_TXD_BURST, &txdesc->flags)) | 
 | 350 | 		rt2x00dev->ops->lib->kick_tx_queue(rt2x00dev, queue->qid); | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 351 | } | 
| Ivo van Doorn | 7050ec8 | 2008-05-10 13:46:13 +0200 | [diff] [blame] | 352 |  | 
| Ivo van Doorn | 6db3786 | 2008-06-06 22:50:28 +0200 | [diff] [blame] | 353 | int rt2x00queue_write_tx_frame(struct data_queue *queue, struct sk_buff *skb) | 
 | 354 | { | 
| Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 355 | 	struct ieee80211_tx_info *tx_info; | 
| Ivo van Doorn | 6db3786 | 2008-06-06 22:50:28 +0200 | [diff] [blame] | 356 | 	struct queue_entry *entry = rt2x00queue_get_entry(queue, Q_INDEX); | 
 | 357 | 	struct txentry_desc txdesc; | 
| Ivo van Doorn | d74f5ba | 2008-06-16 19:56:54 +0200 | [diff] [blame] | 358 | 	struct skb_frame_desc *skbdesc; | 
| Felix Fietkau | 8713a7c | 2008-10-14 23:57:43 +0200 | [diff] [blame] | 359 | 	unsigned int iv_len = 0; | 
| Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 360 | 	u8 rate_idx, rate_flags; | 
| Ivo van Doorn | 6db3786 | 2008-06-06 22:50:28 +0200 | [diff] [blame] | 361 |  | 
 | 362 | 	if (unlikely(rt2x00queue_full(queue))) | 
| Ivo van Doorn | 0e3de99 | 2008-11-12 00:01:37 +0100 | [diff] [blame] | 363 | 		return -ENOBUFS; | 
| Ivo van Doorn | 6db3786 | 2008-06-06 22:50:28 +0200 | [diff] [blame] | 364 |  | 
| Ivo van Doorn | 0262ab0 | 2008-08-29 21:04:26 +0200 | [diff] [blame] | 365 | 	if (test_and_set_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags)) { | 
| Ivo van Doorn | 6db3786 | 2008-06-06 22:50:28 +0200 | [diff] [blame] | 366 | 		ERROR(queue->rt2x00dev, | 
 | 367 | 		      "Arrived at non-free entry in the non-full queue %d.\n" | 
 | 368 | 		      "Please file bug report to %s.\n", | 
 | 369 | 		      queue->qid, DRV_PROJECT); | 
 | 370 | 		return -EINVAL; | 
 | 371 | 	} | 
 | 372 |  | 
 | 373 | 	/* | 
 | 374 | 	 * Copy all TX descriptor information into txdesc, | 
 | 375 | 	 * after that we are free to use the skb->cb array | 
 | 376 | 	 * for our information. | 
 | 377 | 	 */ | 
 | 378 | 	entry->skb = skb; | 
 | 379 | 	rt2x00queue_create_tx_descriptor(entry, &txdesc); | 
 | 380 |  | 
| Felix Fietkau | 8713a7c | 2008-10-14 23:57:43 +0200 | [diff] [blame] | 381 | 	if (IEEE80211_SKB_CB(skb)->control.hw_key != NULL) | 
 | 382 | 		iv_len = IEEE80211_SKB_CB(skb)->control.hw_key->iv_len; | 
 | 383 |  | 
| Ivo van Doorn | d74f5ba | 2008-06-16 19:56:54 +0200 | [diff] [blame] | 384 | 	/* | 
| Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 385 | 	 * All information is retrieved from the skb->cb array, | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 386 | 	 * now we should claim ownership of the driver part of that | 
| Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 387 | 	 * array, preserving the bitrate index and flags. | 
| Ivo van Doorn | d74f5ba | 2008-06-16 19:56:54 +0200 | [diff] [blame] | 388 | 	 */ | 
| Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 389 | 	tx_info = IEEE80211_SKB_CB(skb); | 
 | 390 | 	rate_idx = tx_info->control.rates[0].idx; | 
 | 391 | 	rate_flags = tx_info->control.rates[0].flags; | 
| Ivo van Doorn | 0e3de99 | 2008-11-12 00:01:37 +0100 | [diff] [blame] | 392 | 	skbdesc = get_skb_frame_desc(skb); | 
| Ivo van Doorn | d74f5ba | 2008-06-16 19:56:54 +0200 | [diff] [blame] | 393 | 	memset(skbdesc, 0, sizeof(*skbdesc)); | 
 | 394 | 	skbdesc->entry = entry; | 
| Johannes Berg | e6a9854 | 2008-10-21 12:40:02 +0200 | [diff] [blame] | 395 | 	skbdesc->tx_rate_idx = rate_idx; | 
 | 396 | 	skbdesc->tx_rate_flags = rate_flags; | 
| Ivo van Doorn | d74f5ba | 2008-06-16 19:56:54 +0200 | [diff] [blame] | 397 |  | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 398 | 	/* | 
 | 399 | 	 * When hardware encryption is supported, and this frame | 
 | 400 | 	 * is to be encrypted, we should strip the IV/EIV data from | 
 | 401 | 	 * the frame so we can provide it to the driver seperately. | 
 | 402 | 	 */ | 
 | 403 | 	if (test_bit(ENTRY_TXD_ENCRYPT, &txdesc.flags) && | 
| Ivo van Doorn | dddfb47 | 2008-12-02 18:20:42 +0100 | [diff] [blame] | 404 | 	    !test_bit(ENTRY_TXD_ENCRYPT_IV, &txdesc.flags)) { | 
 | 405 | 		if (test_bit(CONFIG_CRYPTO_COPY_IV, &queue->rt2x00dev->flags)) | 
 | 406 | 			rt2x00crypto_tx_copy_iv(skb, iv_len); | 
 | 407 | 		else | 
 | 408 | 			rt2x00crypto_tx_remove_iv(skb, iv_len); | 
 | 409 | 	} | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 410 |  | 
 | 411 | 	/* | 
 | 412 | 	 * It could be possible that the queue was corrupted and this | 
| Ivo van Doorn | 0e3de99 | 2008-11-12 00:01:37 +0100 | [diff] [blame] | 413 | 	 * call failed. Since we always return NETDEV_TX_OK to mac80211, | 
 | 414 | 	 * this frame will simply be dropped. | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 415 | 	 */ | 
| Ivo van Doorn | 6db3786 | 2008-06-06 22:50:28 +0200 | [diff] [blame] | 416 | 	if (unlikely(queue->rt2x00dev->ops->lib->write_tx_data(entry))) { | 
| Ivo van Doorn | 0262ab0 | 2008-08-29 21:04:26 +0200 | [diff] [blame] | 417 | 		clear_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags); | 
| Ivo van Doorn | 2bb057d | 2008-08-04 16:37:44 +0200 | [diff] [blame] | 418 | 		entry->skb = NULL; | 
| Ivo van Doorn | 0e3de99 | 2008-11-12 00:01:37 +0100 | [diff] [blame] | 419 | 		return -EIO; | 
| Ivo van Doorn | 6db3786 | 2008-06-06 22:50:28 +0200 | [diff] [blame] | 420 | 	} | 
 | 421 |  | 
| Ivo van Doorn | d74f5ba | 2008-06-16 19:56:54 +0200 | [diff] [blame] | 422 | 	if (test_bit(DRIVER_REQUIRE_DMA, &queue->rt2x00dev->flags)) | 
 | 423 | 		rt2x00queue_map_txskb(queue->rt2x00dev, skb); | 
 | 424 |  | 
| Ivo van Doorn | 0262ab0 | 2008-08-29 21:04:26 +0200 | [diff] [blame] | 425 | 	set_bit(ENTRY_DATA_PENDING, &entry->flags); | 
| Ivo van Doorn | 6db3786 | 2008-06-06 22:50:28 +0200 | [diff] [blame] | 426 |  | 
 | 427 | 	rt2x00queue_index_inc(queue, Q_INDEX); | 
 | 428 | 	rt2x00queue_write_tx_descriptor(entry, &txdesc); | 
 | 429 |  | 
 | 430 | 	return 0; | 
 | 431 | } | 
 | 432 |  | 
| Ivo van Doorn | bd88a78 | 2008-07-09 15:12:44 +0200 | [diff] [blame] | 433 | int rt2x00queue_update_beacon(struct rt2x00_dev *rt2x00dev, | 
 | 434 | 			      struct ieee80211_vif *vif) | 
 | 435 | { | 
 | 436 | 	struct rt2x00_intf *intf = vif_to_intf(vif); | 
 | 437 | 	struct skb_frame_desc *skbdesc; | 
 | 438 | 	struct txentry_desc txdesc; | 
 | 439 | 	__le32 desc[16]; | 
 | 440 |  | 
 | 441 | 	if (unlikely(!intf->beacon)) | 
 | 442 | 		return -ENOBUFS; | 
 | 443 |  | 
 | 444 | 	intf->beacon->skb = ieee80211_beacon_get(rt2x00dev->hw, vif); | 
 | 445 | 	if (!intf->beacon->skb) | 
 | 446 | 		return -ENOMEM; | 
 | 447 |  | 
 | 448 | 	/* | 
 | 449 | 	 * Copy all TX descriptor information into txdesc, | 
 | 450 | 	 * after that we are free to use the skb->cb array | 
 | 451 | 	 * for our information. | 
 | 452 | 	 */ | 
 | 453 | 	rt2x00queue_create_tx_descriptor(intf->beacon, &txdesc); | 
 | 454 |  | 
 | 455 | 	/* | 
 | 456 | 	 * For the descriptor we use a local array from where the | 
 | 457 | 	 * driver can move it to the correct location required for | 
 | 458 | 	 * the hardware. | 
 | 459 | 	 */ | 
 | 460 | 	memset(desc, 0, sizeof(desc)); | 
 | 461 |  | 
 | 462 | 	/* | 
 | 463 | 	 * Fill in skb descriptor | 
 | 464 | 	 */ | 
 | 465 | 	skbdesc = get_skb_frame_desc(intf->beacon->skb); | 
 | 466 | 	memset(skbdesc, 0, sizeof(*skbdesc)); | 
 | 467 | 	skbdesc->desc = desc; | 
 | 468 | 	skbdesc->desc_len = intf->beacon->queue->desc_size; | 
 | 469 | 	skbdesc->entry = intf->beacon; | 
 | 470 |  | 
 | 471 | 	/* | 
 | 472 | 	 * Write TX descriptor into reserved room in front of the beacon. | 
 | 473 | 	 */ | 
 | 474 | 	rt2x00queue_write_tx_descriptor(intf->beacon, &txdesc); | 
 | 475 |  | 
 | 476 | 	/* | 
 | 477 | 	 * Send beacon to hardware. | 
 | 478 | 	 * Also enable beacon generation, which might have been disabled | 
 | 479 | 	 * by the driver during the config_beacon() callback function. | 
 | 480 | 	 */ | 
 | 481 | 	rt2x00dev->ops->lib->write_beacon(intf->beacon); | 
 | 482 | 	rt2x00dev->ops->lib->kick_tx_queue(rt2x00dev, QID_BEACON); | 
 | 483 |  | 
 | 484 | 	return 0; | 
 | 485 | } | 
 | 486 |  | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 487 | struct data_queue *rt2x00queue_get_queue(struct rt2x00_dev *rt2x00dev, | 
| Ivo van Doorn | e58c6ac | 2008-04-21 19:00:47 +0200 | [diff] [blame] | 488 | 					 const enum data_queue_qid queue) | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 489 | { | 
 | 490 | 	int atim = test_bit(DRIVER_REQUIRE_ATIM_QUEUE, &rt2x00dev->flags); | 
 | 491 |  | 
| Gertjan van Wingerde | 61448f8 | 2008-05-10 13:43:33 +0200 | [diff] [blame] | 492 | 	if (queue < rt2x00dev->ops->tx_queues && rt2x00dev->tx) | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 493 | 		return &rt2x00dev->tx[queue]; | 
 | 494 |  | 
 | 495 | 	if (!rt2x00dev->bcn) | 
 | 496 | 		return NULL; | 
 | 497 |  | 
| Ivo van Doorn | e58c6ac | 2008-04-21 19:00:47 +0200 | [diff] [blame] | 498 | 	if (queue == QID_BEACON) | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 499 | 		return &rt2x00dev->bcn[0]; | 
| Ivo van Doorn | e58c6ac | 2008-04-21 19:00:47 +0200 | [diff] [blame] | 500 | 	else if (queue == QID_ATIM && atim) | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 501 | 		return &rt2x00dev->bcn[1]; | 
 | 502 |  | 
 | 503 | 	return NULL; | 
 | 504 | } | 
 | 505 | EXPORT_SYMBOL_GPL(rt2x00queue_get_queue); | 
 | 506 |  | 
 | 507 | struct queue_entry *rt2x00queue_get_entry(struct data_queue *queue, | 
 | 508 | 					  enum queue_index index) | 
 | 509 | { | 
 | 510 | 	struct queue_entry *entry; | 
| Ivo van Doorn | 5f46c4d | 2008-03-09 22:44:30 +0100 | [diff] [blame] | 511 | 	unsigned long irqflags; | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 512 |  | 
 | 513 | 	if (unlikely(index >= Q_INDEX_MAX)) { | 
 | 514 | 		ERROR(queue->rt2x00dev, | 
 | 515 | 		      "Entry requested from invalid index type (%d)\n", index); | 
 | 516 | 		return NULL; | 
 | 517 | 	} | 
 | 518 |  | 
| Ivo van Doorn | 5f46c4d | 2008-03-09 22:44:30 +0100 | [diff] [blame] | 519 | 	spin_lock_irqsave(&queue->lock, irqflags); | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 520 |  | 
 | 521 | 	entry = &queue->entries[queue->index[index]]; | 
 | 522 |  | 
| Ivo van Doorn | 5f46c4d | 2008-03-09 22:44:30 +0100 | [diff] [blame] | 523 | 	spin_unlock_irqrestore(&queue->lock, irqflags); | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 524 |  | 
 | 525 | 	return entry; | 
 | 526 | } | 
 | 527 | EXPORT_SYMBOL_GPL(rt2x00queue_get_entry); | 
 | 528 |  | 
 | 529 | void rt2x00queue_index_inc(struct data_queue *queue, enum queue_index index) | 
 | 530 | { | 
| Ivo van Doorn | 5f46c4d | 2008-03-09 22:44:30 +0100 | [diff] [blame] | 531 | 	unsigned long irqflags; | 
 | 532 |  | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 533 | 	if (unlikely(index >= Q_INDEX_MAX)) { | 
 | 534 | 		ERROR(queue->rt2x00dev, | 
 | 535 | 		      "Index change on invalid index type (%d)\n", index); | 
 | 536 | 		return; | 
 | 537 | 	} | 
 | 538 |  | 
| Ivo van Doorn | 5f46c4d | 2008-03-09 22:44:30 +0100 | [diff] [blame] | 539 | 	spin_lock_irqsave(&queue->lock, irqflags); | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 540 |  | 
 | 541 | 	queue->index[index]++; | 
 | 542 | 	if (queue->index[index] >= queue->limit) | 
 | 543 | 		queue->index[index] = 0; | 
 | 544 |  | 
| Ivo van Doorn | 10b6b80 | 2008-02-03 15:55:21 +0100 | [diff] [blame] | 545 | 	if (index == Q_INDEX) { | 
 | 546 | 		queue->length++; | 
 | 547 | 	} else if (index == Q_INDEX_DONE) { | 
 | 548 | 		queue->length--; | 
| John Daiker | 5588751 | 2008-10-17 12:16:17 -0700 | [diff] [blame] | 549 | 		queue->count++; | 
| Ivo van Doorn | 10b6b80 | 2008-02-03 15:55:21 +0100 | [diff] [blame] | 550 | 	} | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 551 |  | 
| Ivo van Doorn | 5f46c4d | 2008-03-09 22:44:30 +0100 | [diff] [blame] | 552 | 	spin_unlock_irqrestore(&queue->lock, irqflags); | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 553 | } | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 554 |  | 
 | 555 | static void rt2x00queue_reset(struct data_queue *queue) | 
 | 556 | { | 
| Ivo van Doorn | 5f46c4d | 2008-03-09 22:44:30 +0100 | [diff] [blame] | 557 | 	unsigned long irqflags; | 
 | 558 |  | 
 | 559 | 	spin_lock_irqsave(&queue->lock, irqflags); | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 560 |  | 
 | 561 | 	queue->count = 0; | 
 | 562 | 	queue->length = 0; | 
 | 563 | 	memset(queue->index, 0, sizeof(queue->index)); | 
 | 564 |  | 
| Ivo van Doorn | 5f46c4d | 2008-03-09 22:44:30 +0100 | [diff] [blame] | 565 | 	spin_unlock_irqrestore(&queue->lock, irqflags); | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 566 | } | 
 | 567 |  | 
| Ivo van Doorn | 798b7ad | 2008-11-08 15:25:33 +0100 | [diff] [blame] | 568 | void rt2x00queue_init_queues(struct rt2x00_dev *rt2x00dev) | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 569 | { | 
 | 570 | 	struct data_queue *queue; | 
 | 571 | 	unsigned int i; | 
 | 572 |  | 
| Ivo van Doorn | 798b7ad | 2008-11-08 15:25:33 +0100 | [diff] [blame] | 573 | 	queue_for_each(rt2x00dev, queue) { | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 574 | 		rt2x00queue_reset(queue); | 
 | 575 |  | 
| Ivo van Doorn | 9c0ab71 | 2008-07-21 19:06:02 +0200 | [diff] [blame] | 576 | 		for (i = 0; i < queue->limit; i++) { | 
 | 577 | 			queue->entries[i].flags = 0; | 
 | 578 |  | 
| Ivo van Doorn | 798b7ad | 2008-11-08 15:25:33 +0100 | [diff] [blame] | 579 | 			rt2x00dev->ops->lib->clear_entry(&queue->entries[i]); | 
| Ivo van Doorn | 9c0ab71 | 2008-07-21 19:06:02 +0200 | [diff] [blame] | 580 | 		} | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 581 | 	} | 
 | 582 | } | 
 | 583 |  | 
 | 584 | static int rt2x00queue_alloc_entries(struct data_queue *queue, | 
 | 585 | 				     const struct data_queue_desc *qdesc) | 
 | 586 | { | 
 | 587 | 	struct queue_entry *entries; | 
 | 588 | 	unsigned int entry_size; | 
 | 589 | 	unsigned int i; | 
 | 590 |  | 
 | 591 | 	rt2x00queue_reset(queue); | 
 | 592 |  | 
 | 593 | 	queue->limit = qdesc->entry_num; | 
| Ivo van Doorn | b869767 | 2008-06-06 22:53:14 +0200 | [diff] [blame] | 594 | 	queue->threshold = DIV_ROUND_UP(qdesc->entry_num, 10); | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 595 | 	queue->data_size = qdesc->data_size; | 
 | 596 | 	queue->desc_size = qdesc->desc_size; | 
 | 597 |  | 
 | 598 | 	/* | 
 | 599 | 	 * Allocate all queue entries. | 
 | 600 | 	 */ | 
 | 601 | 	entry_size = sizeof(*entries) + qdesc->priv_size; | 
 | 602 | 	entries = kzalloc(queue->limit * entry_size, GFP_KERNEL); | 
 | 603 | 	if (!entries) | 
 | 604 | 		return -ENOMEM; | 
 | 605 |  | 
 | 606 | #define QUEUE_ENTRY_PRIV_OFFSET(__base, __index, __limit, __esize, __psize) \ | 
| Adam Baker | 231be4e | 2008-02-10 22:48:19 +0100 | [diff] [blame] | 607 | 	( ((char *)(__base)) + ((__limit) * (__esize)) + \ | 
 | 608 | 	    ((__index) * (__psize)) ) | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 609 |  | 
 | 610 | 	for (i = 0; i < queue->limit; i++) { | 
 | 611 | 		entries[i].flags = 0; | 
 | 612 | 		entries[i].queue = queue; | 
 | 613 | 		entries[i].skb = NULL; | 
 | 614 | 		entries[i].entry_idx = i; | 
 | 615 | 		entries[i].priv_data = | 
 | 616 | 		    QUEUE_ENTRY_PRIV_OFFSET(entries, i, queue->limit, | 
 | 617 | 					    sizeof(*entries), qdesc->priv_size); | 
 | 618 | 	} | 
 | 619 |  | 
 | 620 | #undef QUEUE_ENTRY_PRIV_OFFSET | 
 | 621 |  | 
 | 622 | 	queue->entries = entries; | 
 | 623 |  | 
 | 624 | 	return 0; | 
 | 625 | } | 
 | 626 |  | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 627 | static void rt2x00queue_free_skbs(struct rt2x00_dev *rt2x00dev, | 
 | 628 | 				  struct data_queue *queue) | 
| Gertjan van Wingerde | 30caa6e | 2008-06-16 19:56:08 +0200 | [diff] [blame] | 629 | { | 
 | 630 | 	unsigned int i; | 
 | 631 |  | 
 | 632 | 	if (!queue->entries) | 
 | 633 | 		return; | 
 | 634 |  | 
 | 635 | 	for (i = 0; i < queue->limit; i++) { | 
 | 636 | 		if (queue->entries[i].skb) | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 637 | 			rt2x00queue_free_skb(rt2x00dev, queue->entries[i].skb); | 
| Gertjan van Wingerde | 30caa6e | 2008-06-16 19:56:08 +0200 | [diff] [blame] | 638 | 	} | 
 | 639 | } | 
 | 640 |  | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 641 | static int rt2x00queue_alloc_rxskbs(struct rt2x00_dev *rt2x00dev, | 
 | 642 | 				    struct data_queue *queue) | 
| Gertjan van Wingerde | 30caa6e | 2008-06-16 19:56:08 +0200 | [diff] [blame] | 643 | { | 
 | 644 | 	unsigned int i; | 
 | 645 | 	struct sk_buff *skb; | 
 | 646 |  | 
 | 647 | 	for (i = 0; i < queue->limit; i++) { | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 648 | 		skb = rt2x00queue_alloc_rxskb(rt2x00dev, &queue->entries[i]); | 
| Gertjan van Wingerde | 30caa6e | 2008-06-16 19:56:08 +0200 | [diff] [blame] | 649 | 		if (!skb) | 
| Ivo van Doorn | 61243d8 | 2008-06-20 22:10:53 +0200 | [diff] [blame] | 650 | 			return -ENOMEM; | 
| Gertjan van Wingerde | 30caa6e | 2008-06-16 19:56:08 +0200 | [diff] [blame] | 651 | 		queue->entries[i].skb = skb; | 
 | 652 | 	} | 
 | 653 |  | 
 | 654 | 	return 0; | 
| Gertjan van Wingerde | 30caa6e | 2008-06-16 19:56:08 +0200 | [diff] [blame] | 655 | } | 
 | 656 |  | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 657 | int rt2x00queue_initialize(struct rt2x00_dev *rt2x00dev) | 
 | 658 | { | 
 | 659 | 	struct data_queue *queue; | 
 | 660 | 	int status; | 
 | 661 |  | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 662 | 	status = rt2x00queue_alloc_entries(rt2x00dev->rx, rt2x00dev->ops->rx); | 
 | 663 | 	if (status) | 
 | 664 | 		goto exit; | 
 | 665 |  | 
 | 666 | 	tx_queue_for_each(rt2x00dev, queue) { | 
 | 667 | 		status = rt2x00queue_alloc_entries(queue, rt2x00dev->ops->tx); | 
 | 668 | 		if (status) | 
 | 669 | 			goto exit; | 
 | 670 | 	} | 
 | 671 |  | 
 | 672 | 	status = rt2x00queue_alloc_entries(rt2x00dev->bcn, rt2x00dev->ops->bcn); | 
 | 673 | 	if (status) | 
 | 674 | 		goto exit; | 
 | 675 |  | 
| Gertjan van Wingerde | 30caa6e | 2008-06-16 19:56:08 +0200 | [diff] [blame] | 676 | 	if (test_bit(DRIVER_REQUIRE_ATIM_QUEUE, &rt2x00dev->flags)) { | 
 | 677 | 		status = rt2x00queue_alloc_entries(&rt2x00dev->bcn[1], | 
 | 678 | 						   rt2x00dev->ops->atim); | 
 | 679 | 		if (status) | 
 | 680 | 			goto exit; | 
 | 681 | 	} | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 682 |  | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 683 | 	status = rt2x00queue_alloc_rxskbs(rt2x00dev, rt2x00dev->rx); | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 684 | 	if (status) | 
 | 685 | 		goto exit; | 
 | 686 |  | 
 | 687 | 	return 0; | 
 | 688 |  | 
 | 689 | exit: | 
 | 690 | 	ERROR(rt2x00dev, "Queue entries allocation failed.\n"); | 
 | 691 |  | 
 | 692 | 	rt2x00queue_uninitialize(rt2x00dev); | 
 | 693 |  | 
 | 694 | 	return status; | 
 | 695 | } | 
 | 696 |  | 
 | 697 | void rt2x00queue_uninitialize(struct rt2x00_dev *rt2x00dev) | 
 | 698 | { | 
 | 699 | 	struct data_queue *queue; | 
 | 700 |  | 
| Gertjan van Wingerde | c4da004 | 2008-06-16 19:56:31 +0200 | [diff] [blame] | 701 | 	rt2x00queue_free_skbs(rt2x00dev, rt2x00dev->rx); | 
| Gertjan van Wingerde | 30caa6e | 2008-06-16 19:56:08 +0200 | [diff] [blame] | 702 |  | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 703 | 	queue_for_each(rt2x00dev, queue) { | 
 | 704 | 		kfree(queue->entries); | 
 | 705 | 		queue->entries = NULL; | 
 | 706 | 	} | 
 | 707 | } | 
 | 708 |  | 
| Ivo van Doorn | 8f53927 | 2008-02-10 22:51:41 +0100 | [diff] [blame] | 709 | static void rt2x00queue_init(struct rt2x00_dev *rt2x00dev, | 
 | 710 | 			     struct data_queue *queue, enum data_queue_qid qid) | 
 | 711 | { | 
 | 712 | 	spin_lock_init(&queue->lock); | 
 | 713 |  | 
 | 714 | 	queue->rt2x00dev = rt2x00dev; | 
 | 715 | 	queue->qid = qid; | 
| Ivo van Doorn | 2af0a57 | 2008-08-29 21:05:45 +0200 | [diff] [blame] | 716 | 	queue->txop = 0; | 
| Ivo van Doorn | 8f53927 | 2008-02-10 22:51:41 +0100 | [diff] [blame] | 717 | 	queue->aifs = 2; | 
 | 718 | 	queue->cw_min = 5; | 
 | 719 | 	queue->cw_max = 10; | 
 | 720 | } | 
 | 721 |  | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 722 | int rt2x00queue_allocate(struct rt2x00_dev *rt2x00dev) | 
 | 723 | { | 
 | 724 | 	struct data_queue *queue; | 
 | 725 | 	enum data_queue_qid qid; | 
 | 726 | 	unsigned int req_atim = | 
 | 727 | 	    !!test_bit(DRIVER_REQUIRE_ATIM_QUEUE, &rt2x00dev->flags); | 
 | 728 |  | 
 | 729 | 	/* | 
 | 730 | 	 * We need the following queues: | 
 | 731 | 	 * RX: 1 | 
| Gertjan van Wingerde | 61448f8 | 2008-05-10 13:43:33 +0200 | [diff] [blame] | 732 | 	 * TX: ops->tx_queues | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 733 | 	 * Beacon: 1 | 
 | 734 | 	 * Atim: 1 (if required) | 
 | 735 | 	 */ | 
| Gertjan van Wingerde | 61448f8 | 2008-05-10 13:43:33 +0200 | [diff] [blame] | 736 | 	rt2x00dev->data_queues = 2 + rt2x00dev->ops->tx_queues + req_atim; | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 737 |  | 
 | 738 | 	queue = kzalloc(rt2x00dev->data_queues * sizeof(*queue), GFP_KERNEL); | 
 | 739 | 	if (!queue) { | 
 | 740 | 		ERROR(rt2x00dev, "Queue allocation failed.\n"); | 
 | 741 | 		return -ENOMEM; | 
 | 742 | 	} | 
 | 743 |  | 
 | 744 | 	/* | 
 | 745 | 	 * Initialize pointers | 
 | 746 | 	 */ | 
 | 747 | 	rt2x00dev->rx = queue; | 
 | 748 | 	rt2x00dev->tx = &queue[1]; | 
| Gertjan van Wingerde | 61448f8 | 2008-05-10 13:43:33 +0200 | [diff] [blame] | 749 | 	rt2x00dev->bcn = &queue[1 + rt2x00dev->ops->tx_queues]; | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 750 |  | 
 | 751 | 	/* | 
 | 752 | 	 * Initialize queue parameters. | 
 | 753 | 	 * RX: qid = QID_RX | 
 | 754 | 	 * TX: qid = QID_AC_BE + index | 
 | 755 | 	 * TX: cw_min: 2^5 = 32. | 
 | 756 | 	 * TX: cw_max: 2^10 = 1024. | 
| Ivo van Doorn | 565a019 | 2008-06-03 20:29:05 +0200 | [diff] [blame] | 757 | 	 * BCN: qid = QID_BEACON | 
 | 758 | 	 * ATIM: qid = QID_ATIM | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 759 | 	 */ | 
| Ivo van Doorn | 8f53927 | 2008-02-10 22:51:41 +0100 | [diff] [blame] | 760 | 	rt2x00queue_init(rt2x00dev, rt2x00dev->rx, QID_RX); | 
 | 761 |  | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 762 | 	qid = QID_AC_BE; | 
| Ivo van Doorn | 8f53927 | 2008-02-10 22:51:41 +0100 | [diff] [blame] | 763 | 	tx_queue_for_each(rt2x00dev, queue) | 
 | 764 | 		rt2x00queue_init(rt2x00dev, queue, qid++); | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 765 |  | 
| Ivo van Doorn | 565a019 | 2008-06-03 20:29:05 +0200 | [diff] [blame] | 766 | 	rt2x00queue_init(rt2x00dev, &rt2x00dev->bcn[0], QID_BEACON); | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 767 | 	if (req_atim) | 
| Ivo van Doorn | 565a019 | 2008-06-03 20:29:05 +0200 | [diff] [blame] | 768 | 		rt2x00queue_init(rt2x00dev, &rt2x00dev->bcn[1], QID_ATIM); | 
| Ivo van Doorn | 181d690 | 2008-02-05 16:42:23 -0500 | [diff] [blame] | 769 |  | 
 | 770 | 	return 0; | 
 | 771 | } | 
 | 772 |  | 
 | 773 | void rt2x00queue_free(struct rt2x00_dev *rt2x00dev) | 
 | 774 | { | 
 | 775 | 	kfree(rt2x00dev->rx); | 
 | 776 | 	rt2x00dev->rx = NULL; | 
 | 777 | 	rt2x00dev->tx = NULL; | 
 | 778 | 	rt2x00dev->bcn = NULL; | 
 | 779 | } |