181d6902b6
This introduces a big queue handling overhaul, this also renames "ring" to "queues". Move queue handling into rt2x00queue.c and the matching header, use Kerneldoc to improve rt2x00 library documentation. Access to the queues is now protected under a spinlock, this to prevent race conditions which could corrupt the indexing system of the queue. Each queue entry allocates x bytes for driver/device specific data, this cleans up the queue structure significantly and improves code readability. rt2500usb no longer needs 2 entries in the beacon queue to correctly send out the guardian byte. This is now handled in the entry specific structure. rt61 and rt73 now use the correct descriptor size for beacon frames, since this data is written into the registers not the entire TXD descriptor was used but instead of a subset of it named TXINFO. Finally this also fixes numerous other bugs related to incorrect beacon handling or beacon related code. Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
421 lines
11 KiB
C
421 lines
11 KiB
C
/*
|
|
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: rt2x00mac
|
|
Abstract: rt2x00 generic mac80211 routines.
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
|
|
#include "rt2x00.h"
|
|
#include "rt2x00lib.h"
|
|
|
|
static int rt2x00mac_tx_rts_cts(struct rt2x00_dev *rt2x00dev,
|
|
struct data_queue *queue,
|
|
struct sk_buff *frag_skb,
|
|
struct ieee80211_tx_control *control)
|
|
{
|
|
struct sk_buff *skb;
|
|
int size;
|
|
|
|
if (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)
|
|
size = sizeof(struct ieee80211_cts);
|
|
else
|
|
size = sizeof(struct ieee80211_rts);
|
|
|
|
skb = dev_alloc_skb(size + rt2x00dev->hw->extra_tx_headroom);
|
|
if (!skb) {
|
|
WARNING(rt2x00dev, "Failed to create RTS/CTS frame.\n");
|
|
return NETDEV_TX_BUSY;
|
|
}
|
|
|
|
skb_reserve(skb, rt2x00dev->hw->extra_tx_headroom);
|
|
skb_put(skb, size);
|
|
|
|
if (control->flags & IEEE80211_TXCTL_USE_CTS_PROTECT)
|
|
ieee80211_ctstoself_get(rt2x00dev->hw, rt2x00dev->interface.id,
|
|
frag_skb->data, frag_skb->len, control,
|
|
(struct ieee80211_cts *)(skb->data));
|
|
else
|
|
ieee80211_rts_get(rt2x00dev->hw, rt2x00dev->interface.id,
|
|
frag_skb->data, frag_skb->len, control,
|
|
(struct ieee80211_rts *)(skb->data));
|
|
|
|
if (rt2x00dev->ops->lib->write_tx_data(rt2x00dev, queue, skb, control)) {
|
|
WARNING(rt2x00dev, "Failed to send RTS/CTS frame.\n");
|
|
return NETDEV_TX_BUSY;
|
|
}
|
|
|
|
return NETDEV_TX_OK;
|
|
}
|
|
|
|
int rt2x00mac_tx(struct ieee80211_hw *hw, struct sk_buff *skb,
|
|
struct ieee80211_tx_control *control)
|
|
{
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
struct ieee80211_hdr *ieee80211hdr = (struct ieee80211_hdr *)skb->data;
|
|
struct data_queue *queue;
|
|
u16 frame_control;
|
|
|
|
/*
|
|
* Mac80211 might be calling this function while we are trying
|
|
* to remove the device or perhaps suspending it.
|
|
* Note that we can only stop the TX queues inside the TX path
|
|
* due to possible race conditions in mac80211.
|
|
*/
|
|
if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags)) {
|
|
ieee80211_stop_queues(hw);
|
|
return NETDEV_TX_OK;
|
|
}
|
|
|
|
/*
|
|
* Determine which queue to put packet on.
|
|
*/
|
|
queue = rt2x00queue_get_queue(rt2x00dev, control->queue);
|
|
if (unlikely(!queue)) {
|
|
ERROR(rt2x00dev,
|
|
"Attempt to send packet over invalid queue %d.\n"
|
|
"Please file bug report to %s.\n",
|
|
control->queue, DRV_PROJECT);
|
|
dev_kfree_skb_any(skb);
|
|
return NETDEV_TX_OK;
|
|
}
|
|
|
|
/*
|
|
* If CTS/RTS is required. and this frame is not CTS or RTS,
|
|
* create and queue that frame first. But make sure we have
|
|
* at least enough entries available to send this CTS/RTS
|
|
* frame as well as the data frame.
|
|
*/
|
|
frame_control = le16_to_cpu(ieee80211hdr->frame_control);
|
|
if (!is_rts_frame(frame_control) && !is_cts_frame(frame_control) &&
|
|
(control->flags & (IEEE80211_TXCTL_USE_RTS_CTS |
|
|
IEEE80211_TXCTL_USE_CTS_PROTECT))) {
|
|
if (rt2x00queue_available(queue) <= 1) {
|
|
ieee80211_stop_queue(rt2x00dev->hw, control->queue);
|
|
return NETDEV_TX_BUSY;
|
|
}
|
|
|
|
if (rt2x00mac_tx_rts_cts(rt2x00dev, queue, skb, control)) {
|
|
ieee80211_stop_queue(rt2x00dev->hw, control->queue);
|
|
return NETDEV_TX_BUSY;
|
|
}
|
|
}
|
|
|
|
if (rt2x00dev->ops->lib->write_tx_data(rt2x00dev, queue, skb, control)) {
|
|
ieee80211_stop_queue(rt2x00dev->hw, control->queue);
|
|
return NETDEV_TX_BUSY;
|
|
}
|
|
|
|
if (rt2x00queue_full(queue))
|
|
ieee80211_stop_queue(rt2x00dev->hw, control->queue);
|
|
|
|
if (rt2x00dev->ops->lib->kick_tx_queue)
|
|
rt2x00dev->ops->lib->kick_tx_queue(rt2x00dev, control->queue);
|
|
|
|
return NETDEV_TX_OK;
|
|
}
|
|
EXPORT_SYMBOL_GPL(rt2x00mac_tx);
|
|
|
|
int rt2x00mac_start(struct ieee80211_hw *hw)
|
|
{
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
|
|
if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags))
|
|
return 0;
|
|
|
|
return rt2x00lib_start(rt2x00dev);
|
|
}
|
|
EXPORT_SYMBOL_GPL(rt2x00mac_start);
|
|
|
|
void rt2x00mac_stop(struct ieee80211_hw *hw)
|
|
{
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
|
|
if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags))
|
|
return;
|
|
|
|
rt2x00lib_stop(rt2x00dev);
|
|
}
|
|
EXPORT_SYMBOL_GPL(rt2x00mac_stop);
|
|
|
|
int rt2x00mac_add_interface(struct ieee80211_hw *hw,
|
|
struct ieee80211_if_init_conf *conf)
|
|
{
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
struct interface *intf = &rt2x00dev->interface;
|
|
|
|
/* FIXME: Beaconing is broken in rt2x00. */
|
|
if (conf->type == IEEE80211_IF_TYPE_IBSS ||
|
|
conf->type == IEEE80211_IF_TYPE_AP) {
|
|
ERROR(rt2x00dev,
|
|
"rt2x00 does not support Adhoc or Master mode");
|
|
return -EOPNOTSUPP;
|
|
}
|
|
|
|
/*
|
|
* Don't allow interfaces to be added while
|
|
* either the device has disappeared or when
|
|
* another interface is already present.
|
|
*/
|
|
if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags) ||
|
|
is_interface_present(intf))
|
|
return -ENOBUFS;
|
|
|
|
intf->id = conf->vif;
|
|
intf->type = conf->type;
|
|
if (conf->type == IEEE80211_IF_TYPE_AP)
|
|
memcpy(&intf->bssid, conf->mac_addr, ETH_ALEN);
|
|
memcpy(&intf->mac, conf->mac_addr, ETH_ALEN);
|
|
|
|
/*
|
|
* The MAC adddress must be configured after the device
|
|
* has been initialized. Otherwise the device can reset
|
|
* the MAC registers.
|
|
*/
|
|
rt2x00lib_config_mac_addr(rt2x00dev, intf->mac);
|
|
rt2x00lib_config_type(rt2x00dev, conf->type);
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL_GPL(rt2x00mac_add_interface);
|
|
|
|
void rt2x00mac_remove_interface(struct ieee80211_hw *hw,
|
|
struct ieee80211_if_init_conf *conf)
|
|
{
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
struct interface *intf = &rt2x00dev->interface;
|
|
|
|
/*
|
|
* Don't allow interfaces to be remove while
|
|
* either the device has disappeared or when
|
|
* no interface is present.
|
|
*/
|
|
if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags) ||
|
|
!is_interface_present(intf))
|
|
return;
|
|
|
|
intf->id = NULL;
|
|
intf->type = IEEE80211_IF_TYPE_INVALID;
|
|
memset(&intf->bssid, 0x00, ETH_ALEN);
|
|
memset(&intf->mac, 0x00, ETH_ALEN);
|
|
|
|
/*
|
|
* Make sure the bssid and mac address registers
|
|
* are cleared to prevent false ACKing of frames.
|
|
*/
|
|
rt2x00lib_config_mac_addr(rt2x00dev, intf->mac);
|
|
rt2x00lib_config_bssid(rt2x00dev, intf->bssid);
|
|
rt2x00lib_config_type(rt2x00dev, intf->type);
|
|
}
|
|
EXPORT_SYMBOL_GPL(rt2x00mac_remove_interface);
|
|
|
|
int rt2x00mac_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf)
|
|
{
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
|
|
/*
|
|
* Mac80211 might be calling this function while we are trying
|
|
* to remove the device or perhaps suspending it.
|
|
*/
|
|
if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags))
|
|
return 0;
|
|
|
|
/*
|
|
* Check if we need to disable the radio,
|
|
* if this is not the case, at least the RX must be disabled.
|
|
*/
|
|
if (test_bit(DEVICE_ENABLED_RADIO, &rt2x00dev->flags)) {
|
|
if (!conf->radio_enabled)
|
|
rt2x00lib_disable_radio(rt2x00dev);
|
|
else
|
|
rt2x00lib_toggle_rx(rt2x00dev, STATE_RADIO_RX_OFF);
|
|
}
|
|
|
|
rt2x00lib_config(rt2x00dev, conf, 0);
|
|
|
|
/*
|
|
* Reenable RX only if the radio should be on.
|
|
*/
|
|
if (test_bit(DEVICE_ENABLED_RADIO, &rt2x00dev->flags))
|
|
rt2x00lib_toggle_rx(rt2x00dev, STATE_RADIO_RX_ON);
|
|
else if (conf->radio_enabled)
|
|
return rt2x00lib_enable_radio(rt2x00dev);
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL_GPL(rt2x00mac_config);
|
|
|
|
int rt2x00mac_config_interface(struct ieee80211_hw *hw,
|
|
struct ieee80211_vif *vif,
|
|
struct ieee80211_if_conf *conf)
|
|
{
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
struct interface *intf = &rt2x00dev->interface;
|
|
int status;
|
|
|
|
/*
|
|
* Mac80211 might be calling this function while we are trying
|
|
* to remove the device or perhaps suspending it.
|
|
*/
|
|
if (!test_bit(DEVICE_PRESENT, &rt2x00dev->flags))
|
|
return 0;
|
|
|
|
/*
|
|
* If the given type does not match the configured type,
|
|
* there has been a problem.
|
|
*/
|
|
if (conf->type != intf->type)
|
|
return -EINVAL;
|
|
|
|
/*
|
|
* If the interface does not work in master mode,
|
|
* then the bssid value in the interface structure
|
|
* should now be set.
|
|
*/
|
|
if (conf->type != IEEE80211_IF_TYPE_AP)
|
|
memcpy(&intf->bssid, conf->bssid, ETH_ALEN);
|
|
rt2x00lib_config_bssid(rt2x00dev, intf->bssid);
|
|
|
|
/*
|
|
* We only need to initialize the beacon when master mode is enabled.
|
|
*/
|
|
if (conf->type != IEEE80211_IF_TYPE_AP || !conf->beacon)
|
|
return 0;
|
|
|
|
status = rt2x00dev->ops->hw->beacon_update(rt2x00dev->hw,
|
|
conf->beacon,
|
|
conf->beacon_control);
|
|
if (status)
|
|
dev_kfree_skb(conf->beacon);
|
|
|
|
return status;
|
|
}
|
|
EXPORT_SYMBOL_GPL(rt2x00mac_config_interface);
|
|
|
|
int rt2x00mac_get_stats(struct ieee80211_hw *hw,
|
|
struct ieee80211_low_level_stats *stats)
|
|
{
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
|
|
/*
|
|
* The dot11ACKFailureCount, dot11RTSFailureCount and
|
|
* dot11RTSSuccessCount are updated in interrupt time.
|
|
* dot11FCSErrorCount is updated in the link tuner.
|
|
*/
|
|
memcpy(stats, &rt2x00dev->low_level_stats, sizeof(*stats));
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL_GPL(rt2x00mac_get_stats);
|
|
|
|
int rt2x00mac_get_tx_stats(struct ieee80211_hw *hw,
|
|
struct ieee80211_tx_queue_stats *stats)
|
|
{
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < hw->queues; i++) {
|
|
stats->data[i].len = rt2x00dev->tx[i].length;
|
|
stats->data[i].limit = rt2x00dev->tx[i].limit;
|
|
stats->data[i].count = rt2x00dev->tx[i].count;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL_GPL(rt2x00mac_get_tx_stats);
|
|
|
|
void rt2x00mac_bss_info_changed(struct ieee80211_hw *hw,
|
|
struct ieee80211_vif *vif,
|
|
struct ieee80211_bss_conf *bss_conf,
|
|
u32 changes)
|
|
{
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
int short_preamble;
|
|
int ack_timeout;
|
|
int ack_consume_time;
|
|
int difs;
|
|
int preamble;
|
|
|
|
/*
|
|
* We only support changing preamble mode.
|
|
*/
|
|
if (!(changes & BSS_CHANGED_ERP_PREAMBLE))
|
|
return;
|
|
|
|
short_preamble = bss_conf->use_short_preamble;
|
|
preamble = bss_conf->use_short_preamble ?
|
|
SHORT_PREAMBLE : PREAMBLE;
|
|
|
|
difs = (hw->conf.flags & IEEE80211_CONF_SHORT_SLOT_TIME) ?
|
|
SHORT_DIFS : DIFS;
|
|
ack_timeout = difs + PLCP + preamble + get_duration(ACK_SIZE, 10);
|
|
|
|
ack_consume_time = SIFS + PLCP + preamble + get_duration(ACK_SIZE, 10);
|
|
|
|
if (short_preamble)
|
|
__set_bit(CONFIG_SHORT_PREAMBLE, &rt2x00dev->flags);
|
|
else
|
|
__clear_bit(CONFIG_SHORT_PREAMBLE, &rt2x00dev->flags);
|
|
|
|
rt2x00dev->ops->lib->config_preamble(rt2x00dev, short_preamble,
|
|
ack_timeout, ack_consume_time);
|
|
}
|
|
EXPORT_SYMBOL_GPL(rt2x00mac_bss_info_changed);
|
|
|
|
int rt2x00mac_conf_tx(struct ieee80211_hw *hw, int queue_idx,
|
|
const struct ieee80211_tx_queue_params *params)
|
|
{
|
|
struct rt2x00_dev *rt2x00dev = hw->priv;
|
|
struct data_queue *queue;
|
|
|
|
queue = rt2x00queue_get_queue(rt2x00dev, queue_idx);
|
|
if (unlikely(!queue))
|
|
return -EINVAL;
|
|
|
|
/*
|
|
* The passed variables are stored as real value ((2^n)-1).
|
|
* Ralink registers require to know the bit number 'n'.
|
|
*/
|
|
if (params->cw_min)
|
|
queue->cw_min = fls(params->cw_min);
|
|
else
|
|
queue->cw_min = 5; /* cw_min: 2^5 = 32. */
|
|
|
|
if (params->cw_max)
|
|
queue->cw_max = fls(params->cw_max);
|
|
else
|
|
queue->cw_max = 10; /* cw_min: 2^10 = 1024. */
|
|
|
|
if (params->aifs)
|
|
queue->aifs = params->aifs;
|
|
else
|
|
queue->aifs = 2;
|
|
|
|
INFO(rt2x00dev,
|
|
"Configured TX queue %d - CWmin: %d, CWmax: %d, Aifs: %d.\n",
|
|
queue_idx, queue->cw_min, queue->cw_max, queue->aifs);
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL_GPL(rt2x00mac_conf_tx);
|