rt2x00: Reorganize beacon handling
[linux-2.6/kvm.git] / drivers / net / wireless / rt2x00 / rt2x00mac.c
blob16b72d9ca1c35a3d337123f2b3931ce9e751c6cb
1 /*
2 Copyright (C) 2004 - 2008 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.
22 Module: rt2x00mac
23 Abstract: rt2x00 generic mac80211 routines.
26 #include <linux/kernel.h>
27 #include <linux/module.h>
29 #include "rt2x00.h"
30 #include "rt2x00lib.h"
32 static int rt2x00mac_tx_rts_cts(struct rt2x00_dev *rt2x00dev,
33 struct data_queue *queue,
34 struct sk_buff *frag_skb)
36 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(frag_skb);
37 struct ieee80211_tx_info *rts_info;
38 struct sk_buff *skb;
39 int size;
41 if (tx_info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT)
42 size = sizeof(struct ieee80211_cts);
43 else
44 size = sizeof(struct ieee80211_rts);
46 skb = dev_alloc_skb(size + rt2x00dev->hw->extra_tx_headroom);
47 if (!skb) {
48 WARNING(rt2x00dev, "Failed to create RTS/CTS frame.\n");
49 return NETDEV_TX_BUSY;
52 skb_reserve(skb, rt2x00dev->hw->extra_tx_headroom);
53 skb_put(skb, size);
56 * Copy TX information over from original frame to
57 * RTS/CTS frame. Note that we set the no encryption flag
58 * since we don't want this frame to be encrypted.
59 * RTS frames should be acked, while CTS-to-self frames
60 * should not. The ready for TX flag is cleared to prevent
61 * it being automatically send when the descriptor is
62 * written to the hardware.
64 memcpy(skb->cb, frag_skb->cb, sizeof(skb->cb));
65 rts_info = IEEE80211_SKB_CB(skb);
66 rts_info->flags |= IEEE80211_TX_CTL_DO_NOT_ENCRYPT;
67 rts_info->flags &= ~IEEE80211_TX_CTL_USE_RTS_CTS;
68 rts_info->flags &= ~IEEE80211_TX_CTL_USE_CTS_PROTECT;
69 rts_info->flags &= ~IEEE80211_TX_CTL_REQ_TX_STATUS;
71 if (tx_info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT)
72 rts_info->flags |= IEEE80211_TX_CTL_NO_ACK;
73 else
74 rts_info->flags &= ~IEEE80211_TX_CTL_NO_ACK;
76 if (tx_info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT)
77 ieee80211_ctstoself_get(rt2x00dev->hw, tx_info->control.vif,
78 frag_skb->data, size, tx_info,
79 (struct ieee80211_cts *)(skb->data));
80 else
81 ieee80211_rts_get(rt2x00dev->hw, tx_info->control.vif,
82 frag_skb->data, size, tx_info,
83 (struct ieee80211_rts *)(skb->data));
85 if (rt2x00queue_write_tx_frame(queue, skb)) {
86 WARNING(rt2x00dev, "Failed to send RTS/CTS frame.\n");
87 return NETDEV_TX_BUSY;
90 return NETDEV_TX_OK;
93 int rt2x00mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
95 struct rt2x00_dev *rt2x00dev = hw->priv;
96 struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(skb);
97 struct ieee80211_hdr *ieee80211hdr = (struct ieee80211_hdr *)skb->data;
98 enum data_queue_qid qid = skb_get_queue_mapping(skb);
99 struct data_queue *queue;
100 u16 frame_control;
103 * Mac80211 might be calling this function while we are trying
104 * to remove the device or perhaps suspending it.
105 * Note that we can only stop the TX queues inside the TX path
106 * due to possible race conditions in mac80211.
108 if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags)) {
109 ieee80211_stop_queues(hw);
110 dev_kfree_skb_any(skb);
111 return NETDEV_TX_OK;
115 * Determine which queue to put packet on.
117 if (tx_info->flags & IEEE80211_TX_CTL_SEND_AFTER_DTIM &&
118 test_bit(DRIVER_REQUIRE_ATIM_QUEUE, &rt2x00dev->flags))
119 queue = rt2x00queue_get_queue(rt2x00dev, QID_ATIM);
120 else
121 queue = rt2x00queue_get_queue(rt2x00dev, qid);
122 if (unlikely(!queue)) {
123 ERROR(rt2x00dev,
124 "Attempt to send packet over invalid queue %d.\n"
125 "Please file bug report to %s.\n", qid, DRV_PROJECT);
126 dev_kfree_skb_any(skb);
127 return NETDEV_TX_OK;
131 * If CTS/RTS is required. create and queue that frame first.
132 * Make sure we have at least enough entries available to send
133 * this CTS/RTS frame as well as the data frame.
134 * Note that when the driver has set the set_rts_threshold()
135 * callback function it doesn't need software generation of
136 * either RTS or CTS-to-self frame and handles everything
137 * inside the hardware.
139 frame_control = le16_to_cpu(ieee80211hdr->frame_control);
140 if ((tx_info->flags & (IEEE80211_TX_CTL_USE_RTS_CTS |
141 IEEE80211_TX_CTL_USE_CTS_PROTECT)) &&
142 !rt2x00dev->ops->hw->set_rts_threshold) {
143 if (rt2x00queue_available(queue) <= 1) {
144 ieee80211_stop_queue(rt2x00dev->hw, qid);
145 return NETDEV_TX_BUSY;
148 if (rt2x00mac_tx_rts_cts(rt2x00dev, queue, skb)) {
149 ieee80211_stop_queue(rt2x00dev->hw, qid);
150 return NETDEV_TX_BUSY;
154 if (rt2x00queue_write_tx_frame(queue, skb)) {
155 ieee80211_stop_queue(rt2x00dev->hw, qid);
156 return NETDEV_TX_BUSY;
159 if (rt2x00queue_threshold(queue))
160 ieee80211_stop_queue(rt2x00dev->hw, qid);
162 return NETDEV_TX_OK;
164 EXPORT_SYMBOL_GPL(rt2x00mac_tx);
166 int rt2x00mac_start(struct ieee80211_hw *hw)
168 struct rt2x00_dev *rt2x00dev = hw->priv;
170 if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags))
171 return 0;
173 return rt2x00lib_start(rt2x00dev);
175 EXPORT_SYMBOL_GPL(rt2x00mac_start);
177 void rt2x00mac_stop(struct ieee80211_hw *hw)
179 struct rt2x00_dev *rt2x00dev = hw->priv;
181 if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags))
182 return;
184 rt2x00lib_stop(rt2x00dev);
186 EXPORT_SYMBOL_GPL(rt2x00mac_stop);
188 int rt2x00mac_add_interface(struct ieee80211_hw *hw,
189 struct ieee80211_if_init_conf *conf)
191 struct rt2x00_dev *rt2x00dev = hw->priv;
192 struct rt2x00_intf *intf = vif_to_intf(conf->vif);
193 struct data_queue *queue = rt2x00queue_get_queue(rt2x00dev, QID_BEACON);
194 struct queue_entry *entry = NULL;
195 unsigned int i;
198 * Don't allow interfaces to be added
199 * the device has disappeared.
201 if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags) ||
202 !test_bit(DEVICE_STARTED, &rt2x00dev->flags))
203 return -ENODEV;
206 * We don't support mixed combinations of sta and ap virtual
207 * interfaces. We can only add this interface when the rival
208 * interface count is 0.
210 if ((conf->type == IEEE80211_IF_TYPE_AP && rt2x00dev->intf_sta_count) ||
211 (conf->type != IEEE80211_IF_TYPE_AP && rt2x00dev->intf_ap_count))
212 return -ENOBUFS;
215 * Check if we exceeded the maximum amount of supported interfaces.
217 if ((conf->type == IEEE80211_IF_TYPE_AP &&
218 rt2x00dev->intf_ap_count >= rt2x00dev->ops->max_ap_intf) ||
219 (conf->type != IEEE80211_IF_TYPE_AP &&
220 rt2x00dev->intf_sta_count >= rt2x00dev->ops->max_sta_intf))
221 return -ENOBUFS;
224 * Loop through all beacon queues to find a free
225 * entry. Since there are as much beacon entries
226 * as the maximum interfaces, this search shouldn't
227 * fail.
229 for (i = 0; i < queue->limit; i++) {
230 entry = &queue->entries[i];
231 if (!__test_and_set_bit(ENTRY_BCN_ASSIGNED, &entry->flags))
232 break;
235 if (unlikely(i == queue->limit))
236 return -ENOBUFS;
239 * We are now absolutely sure the interface can be created,
240 * increase interface count and start initialization.
243 if (conf->type == IEEE80211_IF_TYPE_AP)
244 rt2x00dev->intf_ap_count++;
245 else
246 rt2x00dev->intf_sta_count++;
248 spin_lock_init(&intf->lock);
249 intf->beacon = entry;
251 if (conf->type == IEEE80211_IF_TYPE_AP)
252 memcpy(&intf->bssid, conf->mac_addr, ETH_ALEN);
253 memcpy(&intf->mac, conf->mac_addr, ETH_ALEN);
256 * The MAC adddress must be configured after the device
257 * has been initialized. Otherwise the device can reset
258 * the MAC registers.
260 rt2x00lib_config_intf(rt2x00dev, intf, conf->type, intf->mac, NULL);
263 * Some filters depend on the current working mode. We can force
264 * an update during the next configure_filter() run by mac80211 by
265 * resetting the current packet_filter state.
267 rt2x00dev->packet_filter = 0;
269 return 0;
271 EXPORT_SYMBOL_GPL(rt2x00mac_add_interface);
273 void rt2x00mac_remove_interface(struct ieee80211_hw *hw,
274 struct ieee80211_if_init_conf *conf)
276 struct rt2x00_dev *rt2x00dev = hw->priv;
277 struct rt2x00_intf *intf = vif_to_intf(conf->vif);
280 * Don't allow interfaces to be remove while
281 * either the device has disappeared or when
282 * no interface is present.
284 if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags) ||
285 (conf->type == IEEE80211_IF_TYPE_AP && !rt2x00dev->intf_ap_count) ||
286 (conf->type != IEEE80211_IF_TYPE_AP && !rt2x00dev->intf_sta_count))
287 return;
289 if (conf->type == IEEE80211_IF_TYPE_AP)
290 rt2x00dev->intf_ap_count--;
291 else
292 rt2x00dev->intf_sta_count--;
295 * Release beacon entry so it is available for
296 * new interfaces again.
298 __clear_bit(ENTRY_BCN_ASSIGNED, &intf->beacon->flags);
301 * Make sure the bssid and mac address registers
302 * are cleared to prevent false ACKing of frames.
304 rt2x00lib_config_intf(rt2x00dev, intf,
305 IEEE80211_IF_TYPE_INVALID, NULL, NULL);
307 EXPORT_SYMBOL_GPL(rt2x00mac_remove_interface);
309 int rt2x00mac_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf)
311 struct rt2x00_dev *rt2x00dev = hw->priv;
314 * Mac80211 might be calling this function while we are trying
315 * to remove the device or perhaps suspending it.
317 if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags))
318 return 0;
321 * Check if we need to disable the radio,
322 * if this is not the case, at least the RX must be disabled.
324 if (test_bit(DEVICE_ENABLED_RADIO, &rt2x00dev->flags)) {
325 if (!conf->radio_enabled)
326 rt2x00lib_disable_radio(rt2x00dev);
327 else
328 rt2x00lib_toggle_rx(rt2x00dev, STATE_RADIO_RX_OFF);
331 rt2x00lib_config(rt2x00dev, conf, 0);
334 * Reenable RX only if the radio should be on.
336 if (test_bit(DEVICE_ENABLED_RADIO, &rt2x00dev->flags))
337 rt2x00lib_toggle_rx(rt2x00dev, STATE_RADIO_RX_ON);
338 else if (conf->radio_enabled)
339 return rt2x00lib_enable_radio(rt2x00dev);
341 return 0;
343 EXPORT_SYMBOL_GPL(rt2x00mac_config);
345 int rt2x00mac_config_interface(struct ieee80211_hw *hw,
346 struct ieee80211_vif *vif,
347 struct ieee80211_if_conf *conf)
349 struct rt2x00_dev *rt2x00dev = hw->priv;
350 struct rt2x00_intf *intf = vif_to_intf(vif);
351 int update_bssid = 0;
352 int status = 0;
355 * Mac80211 might be calling this function while we are trying
356 * to remove the device or perhaps suspending it.
358 if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags))
359 return 0;
361 spin_lock(&intf->lock);
364 * conf->bssid can be NULL if coming from the internal
365 * beacon update routine.
367 if (conf->changed & IEEE80211_IFCC_BSSID && conf->bssid) {
368 update_bssid = 1;
369 memcpy(&intf->bssid, conf->bssid, ETH_ALEN);
372 spin_unlock(&intf->lock);
375 * Call rt2x00_config_intf() outside of the spinlock context since
376 * the call will sleep for USB drivers. By using the ieee80211_if_conf
377 * values as arguments we make keep access to rt2x00_intf thread safe
378 * even without the lock.
380 rt2x00lib_config_intf(rt2x00dev, intf, vif->type, NULL,
381 update_bssid ? conf->bssid : NULL);
384 * Update the beacon.
386 if (conf->changed & IEEE80211_IFCC_BEACON)
387 status = rt2x00queue_update_beacon(rt2x00dev, vif);
389 return status;
391 EXPORT_SYMBOL_GPL(rt2x00mac_config_interface);
393 void rt2x00mac_configure_filter(struct ieee80211_hw *hw,
394 unsigned int changed_flags,
395 unsigned int *total_flags,
396 int mc_count, struct dev_addr_list *mc_list)
398 struct rt2x00_dev *rt2x00dev = hw->priv;
401 * Mask off any flags we are going to ignore
402 * from the total_flags field.
404 *total_flags &=
405 FIF_ALLMULTI |
406 FIF_FCSFAIL |
407 FIF_PLCPFAIL |
408 FIF_CONTROL |
409 FIF_OTHER_BSS |
410 FIF_PROMISC_IN_BSS;
413 * Apply some rules to the filters:
414 * - Some filters imply different filters to be set.
415 * - Some things we can't filter out at all.
416 * - Multicast filter seems to kill broadcast traffic so never use it.
418 *total_flags |= FIF_ALLMULTI;
419 if (*total_flags & FIF_OTHER_BSS ||
420 *total_flags & FIF_PROMISC_IN_BSS)
421 *total_flags |= FIF_PROMISC_IN_BSS | FIF_OTHER_BSS;
424 * Check if there is any work left for us.
426 if (rt2x00dev->packet_filter == *total_flags)
427 return;
428 rt2x00dev->packet_filter = *total_flags;
430 if (!test_bit(DRIVER_REQUIRE_SCHEDULED, &rt2x00dev->flags))
431 rt2x00dev->ops->lib->config_filter(rt2x00dev, *total_flags);
432 else
433 queue_work(rt2x00dev->hw->workqueue, &rt2x00dev->filter_work);
435 EXPORT_SYMBOL_GPL(rt2x00mac_configure_filter);
437 int rt2x00mac_get_stats(struct ieee80211_hw *hw,
438 struct ieee80211_low_level_stats *stats)
440 struct rt2x00_dev *rt2x00dev = hw->priv;
443 * The dot11ACKFailureCount, dot11RTSFailureCount and
444 * dot11RTSSuccessCount are updated in interrupt time.
445 * dot11FCSErrorCount is updated in the link tuner.
447 memcpy(stats, &rt2x00dev->low_level_stats, sizeof(*stats));
449 return 0;
451 EXPORT_SYMBOL_GPL(rt2x00mac_get_stats);
453 int rt2x00mac_get_tx_stats(struct ieee80211_hw *hw,
454 struct ieee80211_tx_queue_stats *stats)
456 struct rt2x00_dev *rt2x00dev = hw->priv;
457 unsigned int i;
459 for (i = 0; i < rt2x00dev->ops->tx_queues; i++) {
460 stats[i].len = rt2x00dev->tx[i].length;
461 stats[i].limit = rt2x00dev->tx[i].limit;
462 stats[i].count = rt2x00dev->tx[i].count;
465 return 0;
467 EXPORT_SYMBOL_GPL(rt2x00mac_get_tx_stats);
469 void rt2x00mac_bss_info_changed(struct ieee80211_hw *hw,
470 struct ieee80211_vif *vif,
471 struct ieee80211_bss_conf *bss_conf,
472 u32 changes)
474 struct rt2x00_dev *rt2x00dev = hw->priv;
475 struct rt2x00_intf *intf = vif_to_intf(vif);
476 unsigned int delayed = 0;
479 * When the association status has changed we must reset the link
480 * tuner counter. This is because some drivers determine if they
481 * should perform link tuning based on the number of seconds
482 * while associated or not associated.
484 if (changes & BSS_CHANGED_ASSOC) {
485 rt2x00dev->link.count = 0;
487 if (bss_conf->assoc)
488 rt2x00dev->intf_associated++;
489 else
490 rt2x00dev->intf_associated--;
492 if (!test_bit(DRIVER_REQUIRE_SCHEDULED, &rt2x00dev->flags))
493 rt2x00leds_led_assoc(rt2x00dev,
494 !!rt2x00dev->intf_associated);
495 else
496 delayed |= DELAYED_LED_ASSOC;
500 * When the erp information has changed, we should perform
501 * additional configuration steps. For all other changes we are done.
503 if (changes & (BSS_CHANGED_ERP_PREAMBLE | BSS_CHANGED_ERP_CTS_PROT)) {
504 if (!test_bit(DRIVER_REQUIRE_SCHEDULED, &rt2x00dev->flags))
505 rt2x00lib_config_erp(rt2x00dev, intf, bss_conf);
506 else
507 delayed |= DELAYED_CONFIG_ERP;
510 spin_lock(&intf->lock);
511 memcpy(&intf->conf, bss_conf, sizeof(*bss_conf));
512 if (delayed) {
513 intf->delayed_flags |= delayed;
514 schedule_work(&rt2x00dev->intf_work);
516 spin_unlock(&intf->lock);
518 EXPORT_SYMBOL_GPL(rt2x00mac_bss_info_changed);
520 int rt2x00mac_conf_tx(struct ieee80211_hw *hw, u16 queue_idx,
521 const struct ieee80211_tx_queue_params *params)
523 struct rt2x00_dev *rt2x00dev = hw->priv;
524 struct data_queue *queue;
526 queue = rt2x00queue_get_queue(rt2x00dev, queue_idx);
527 if (unlikely(!queue))
528 return -EINVAL;
531 * The passed variables are stored as real value ((2^n)-1).
532 * Ralink registers require to know the bit number 'n'.
534 if (params->cw_min > 0)
535 queue->cw_min = fls(params->cw_min);
536 else
537 queue->cw_min = 5; /* cw_min: 2^5 = 32. */
539 if (params->cw_max > 0)
540 queue->cw_max = fls(params->cw_max);
541 else
542 queue->cw_max = 10; /* cw_min: 2^10 = 1024. */
544 if (params->aifs >= 0)
545 queue->aifs = params->aifs;
546 else
547 queue->aifs = 2;
549 INFO(rt2x00dev,
550 "Configured TX queue %d - CWmin: %d, CWmax: %d, Aifs: %d.\n",
551 queue_idx, queue->cw_min, queue->cw_max, queue->aifs);
553 return 0;
555 EXPORT_SYMBOL_GPL(rt2x00mac_conf_tx);