2007-09-26 00:57:13 +00:00
|
|
|
/*
|
2009-01-17 19:42:32 +00:00
|
|
|
Copyright (C) 2004 - 2009 rt2x00 SourceForge Project
|
2007-09-26 00:57:13 +00:00
|
|
|
<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: rt2x00lib
|
|
|
|
Abstract: rt2x00 generic device routines.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
|
|
|
|
#include "rt2x00.h"
|
|
|
|
#include "rt2x00lib.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Radio control handlers.
|
|
|
|
*/
|
|
|
|
int rt2x00lib_enable_radio(struct rt2x00_dev *rt2x00dev)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't enable the radio twice.
|
|
|
|
* And check if the hardware button has been disabled.
|
|
|
|
*/
|
2009-07-11 16:00:19 +00:00
|
|
|
if (test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
|
2007-09-26 00:57:13 +00:00
|
|
|
return 0;
|
|
|
|
|
2008-01-06 22:41:45 +00:00
|
|
|
/*
|
2008-02-05 21:42:23 +00:00
|
|
|
* Initialize all data queues.
|
2008-01-06 22:41:45 +00:00
|
|
|
*/
|
2008-11-08 14:25:33 +00:00
|
|
|
rt2x00queue_init_queues(rt2x00dev);
|
2008-01-06 22:41:45 +00:00
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
/*
|
|
|
|
* Enable radio.
|
|
|
|
*/
|
2008-03-31 13:53:44 +00:00
|
|
|
status =
|
|
|
|
rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_RADIO_ON);
|
2007-09-26 00:57:13 +00:00
|
|
|
if (status)
|
|
|
|
return status;
|
|
|
|
|
2008-06-03 16:58:56 +00:00
|
|
|
rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_RADIO_IRQ_ON);
|
|
|
|
|
2008-03-31 13:53:44 +00:00
|
|
|
rt2x00leds_led_radio(rt2x00dev, true);
|
2008-04-21 17:01:09 +00:00
|
|
|
rt2x00led_led_activity(rt2x00dev, true);
|
2008-03-31 13:53:44 +00:00
|
|
|
|
2008-08-29 19:04:26 +00:00
|
|
|
set_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable RX.
|
|
|
|
*/
|
2007-10-06 12:16:09 +00:00
|
|
|
rt2x00lib_toggle_rx(rt2x00dev, STATE_RADIO_RX_ON);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Start the TX queues.
|
|
|
|
*/
|
2008-05-15 10:55:26 +00:00
|
|
|
ieee80211_wake_queues(rt2x00dev->hw);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rt2x00lib_disable_radio(struct rt2x00_dev *rt2x00dev)
|
|
|
|
{
|
2008-08-29 19:04:26 +00:00
|
|
|
if (!test_and_clear_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
|
2007-09-26 00:57:13 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
2009-01-27 23:32:33 +00:00
|
|
|
* Stop the TX queues in mac80211.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
|
|
|
ieee80211_stop_queues(rt2x00dev->hw);
|
2009-01-27 23:32:33 +00:00
|
|
|
rt2x00queue_stop_queues(rt2x00dev);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Disable RX.
|
|
|
|
*/
|
2007-10-06 12:16:09 +00:00
|
|
|
rt2x00lib_toggle_rx(rt2x00dev, STATE_RADIO_RX_OFF);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Disable radio.
|
|
|
|
*/
|
|
|
|
rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_RADIO_OFF);
|
2008-06-03 16:58:56 +00:00
|
|
|
rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_RADIO_IRQ_OFF);
|
2008-04-21 17:01:09 +00:00
|
|
|
rt2x00led_led_activity(rt2x00dev, false);
|
2008-03-31 13:53:44 +00:00
|
|
|
rt2x00leds_led_radio(rt2x00dev, false);
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
2007-10-06 12:16:09 +00:00
|
|
|
void rt2x00lib_toggle_rx(struct rt2x00_dev *rt2x00dev, enum dev_state state)
|
2007-09-26 00:57:13 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* When we are disabling the RX, we should also stop the link tuner.
|
|
|
|
*/
|
2007-10-06 12:16:09 +00:00
|
|
|
if (state == STATE_RADIO_RX_OFF)
|
2008-12-20 09:53:29 +00:00
|
|
|
rt2x00link_stop_tuner(rt2x00dev);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
rt2x00dev->ops->lib->set_device_state(rt2x00dev, state);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* When we are enabling the RX, we should also start the link tuner.
|
|
|
|
*/
|
2008-12-20 09:53:29 +00:00
|
|
|
if (state == STATE_RADIO_RX_ON)
|
|
|
|
rt2x00link_start_tuner(rt2x00dev);
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
[PATCH] mac80211: revamp interface and filter configuration
Drivers are currently supposed to keep track of monitor
interfaces if they allow so-called "hard" monitor, and
they are also supposed to keep track of multicast etc.
This patch changes that, replaces the set_multicast_list()
callback with a new configure_filter() callback that takes
filter flags (FIF_*) instead of interface flags (IFF_*).
For a driver, this means it should open the filter as much
as necessary to get all frames requested by the filter flags.
Accordingly, the filter flags are named "positively", e.g.
FIF_ALLMULTI.
Multicast filtering is a bit special in that drivers that
have no multicast address filters need to allow multicast
frames through when either the FIF_ALLMULTI flag is set or
when the mc_count value is positive.
At the same time, drivers are no longer notified about
monitor interfaces at all, this means they now need to
implement the start() and stop() callbacks and the new
change_filter_flags() callback. Also, the start()/stop()
ordering changed, start() is now called *before* any
add_interface() as it really should be, and stop() after
any remove_interface().
The patch also changes the behaviour of setting the bssid
to multicast for scanning when IEEE80211_HW_NO_PROBE_FILTERING
is set; the IEEE80211_HW_NO_PROBE_FILTERING flag is removed
and the filter flag FIF_BCN_PRBRESP_PROMISC introduced.
This is a lot more efficient for hardware like b43 that
supports it and other hardware can still set the BSSID
to all-ones.
Driver modifications by Johannes Berg (b43 & iwlwifi), Michael Wu
(rtl8187, adm8211, and p54), Larry Finger (b43legacy), and
Ivo van Doorn (rt2x00).
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: Michael Wu <flamingice@sourmilk.net>
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2007-09-17 05:29:23 +00:00
|
|
|
static void rt2x00lib_packetfilter_scheduled(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct rt2x00_dev *rt2x00dev =
|
|
|
|
container_of(work, struct rt2x00_dev, filter_work);
|
2007-10-06 12:13:38 +00:00
|
|
|
|
2008-04-03 22:01:43 +00:00
|
|
|
rt2x00dev->ops->lib->config_filter(rt2x00dev, rt2x00dev->packet_filter);
|
[PATCH] mac80211: revamp interface and filter configuration
Drivers are currently supposed to keep track of monitor
interfaces if they allow so-called "hard" monitor, and
they are also supposed to keep track of multicast etc.
This patch changes that, replaces the set_multicast_list()
callback with a new configure_filter() callback that takes
filter flags (FIF_*) instead of interface flags (IFF_*).
For a driver, this means it should open the filter as much
as necessary to get all frames requested by the filter flags.
Accordingly, the filter flags are named "positively", e.g.
FIF_ALLMULTI.
Multicast filtering is a bit special in that drivers that
have no multicast address filters need to allow multicast
frames through when either the FIF_ALLMULTI flag is set or
when the mc_count value is positive.
At the same time, drivers are no longer notified about
monitor interfaces at all, this means they now need to
implement the start() and stop() callbacks and the new
change_filter_flags() callback. Also, the start()/stop()
ordering changed, start() is now called *before* any
add_interface() as it really should be, and stop() after
any remove_interface().
The patch also changes the behaviour of setting the bssid
to multicast for scanning when IEEE80211_HW_NO_PROBE_FILTERING
is set; the IEEE80211_HW_NO_PROBE_FILTERING flag is removed
and the filter flag FIF_BCN_PRBRESP_PROMISC introduced.
This is a lot more efficient for hardware like b43 that
supports it and other hardware can still set the BSSID
to all-ones.
Driver modifications by Johannes Berg (b43 & iwlwifi), Michael Wu
(rtl8187, adm8211, and p54), Larry Finger (b43legacy), and
Ivo van Doorn (rt2x00).
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: Michael Wu <flamingice@sourmilk.net>
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2007-09-17 05:29:23 +00:00
|
|
|
}
|
|
|
|
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
static void rt2x00lib_intf_scheduled_iter(void *data, u8 *mac,
|
|
|
|
struct ieee80211_vif *vif)
|
2007-10-06 11:34:52 +00:00
|
|
|
{
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
struct rt2x00_dev *rt2x00dev = data;
|
|
|
|
struct rt2x00_intf *intf = vif_to_intf(vif);
|
|
|
|
struct ieee80211_bss_conf conf;
|
|
|
|
int delayed_flags;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy all data we need during this action under the protection
|
|
|
|
* of a spinlock. Otherwise race conditions might occur which results
|
|
|
|
* into an invalid configuration.
|
|
|
|
*/
|
|
|
|
spin_lock(&intf->lock);
|
|
|
|
|
2008-10-29 16:18:22 +00:00
|
|
|
memcpy(&conf, &vif->bss_conf, sizeof(conf));
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
delayed_flags = intf->delayed_flags;
|
|
|
|
intf->delayed_flags = 0;
|
|
|
|
|
|
|
|
spin_unlock(&intf->lock);
|
|
|
|
|
2008-06-25 19:27:00 +00:00
|
|
|
/*
|
|
|
|
* It is possible the radio was disabled while the work had been
|
|
|
|
* scheduled. If that happens we should return here immediately,
|
|
|
|
* note that in the spinlock protected area above the delayed_flags
|
|
|
|
* have been cleared correctly.
|
|
|
|
*/
|
2008-08-29 19:04:26 +00:00
|
|
|
if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
|
2008-06-25 19:27:00 +00:00
|
|
|
return;
|
|
|
|
|
2008-07-09 13:12:44 +00:00
|
|
|
if (delayed_flags & DELAYED_UPDATE_BEACON)
|
2009-01-27 23:32:33 +00:00
|
|
|
rt2x00queue_update_beacon(rt2x00dev, vif, true);
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
|
2008-03-09 21:46:18 +00:00
|
|
|
if (delayed_flags & DELAYED_CONFIG_ERP)
|
2008-06-25 19:27:00 +00:00
|
|
|
rt2x00lib_config_erp(rt2x00dev, intf, &conf);
|
2008-03-31 13:53:44 +00:00
|
|
|
|
|
|
|
if (delayed_flags & DELAYED_LED_ASSOC)
|
|
|
|
rt2x00leds_led_assoc(rt2x00dev, !!rt2x00dev->intf_associated);
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
}
|
2007-10-06 11:34:52 +00:00
|
|
|
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
static void rt2x00lib_intf_scheduled(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct rt2x00_dev *rt2x00dev =
|
|
|
|
container_of(work, struct rt2x00_dev, intf_work);
|
2007-12-28 13:32:58 +00:00
|
|
|
|
|
|
|
/*
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
* Iterate over each interface and perform the
|
|
|
|
* requested configurations.
|
2007-12-28 13:32:58 +00:00
|
|
|
*/
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
ieee80211_iterate_active_interfaces(rt2x00dev->hw,
|
|
|
|
rt2x00lib_intf_scheduled_iter,
|
|
|
|
rt2x00dev);
|
2007-10-06 11:34:52 +00:00
|
|
|
}
|
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
/*
|
|
|
|
* Interrupt context handlers.
|
|
|
|
*/
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
static void rt2x00lib_beacondone_iter(void *data, u8 *mac,
|
|
|
|
struct ieee80211_vif *vif)
|
2007-09-26 00:57:13 +00:00
|
|
|
{
|
2008-06-16 17:56:31 +00:00
|
|
|
struct rt2x00_dev *rt2x00dev = data;
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
struct rt2x00_intf *intf = vif_to_intf(vif);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
2008-09-10 22:01:58 +00:00
|
|
|
if (vif->type != NL80211_IFTYPE_AP &&
|
2008-12-20 09:55:34 +00:00
|
|
|
vif->type != NL80211_IFTYPE_ADHOC &&
|
2008-12-20 09:57:02 +00:00
|
|
|
vif->type != NL80211_IFTYPE_MESH_POINT &&
|
|
|
|
vif->type != NL80211_IFTYPE_WDS)
|
2007-09-26 00:57:13 +00:00
|
|
|
return;
|
|
|
|
|
2008-06-16 17:55:18 +00:00
|
|
|
/*
|
|
|
|
* Clean up the beacon skb.
|
|
|
|
*/
|
2008-06-16 17:56:31 +00:00
|
|
|
rt2x00queue_free_skb(rt2x00dev, intf->beacon->skb);
|
2008-06-16 17:55:18 +00:00
|
|
|
intf->beacon->skb = NULL;
|
|
|
|
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
spin_lock(&intf->lock);
|
|
|
|
intf->delayed_flags |= DELAYED_UPDATE_BEACON;
|
|
|
|
spin_unlock(&intf->lock);
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void rt2x00lib_beacondone(struct rt2x00_dev *rt2x00dev)
|
|
|
|
{
|
2008-08-29 19:04:26 +00:00
|
|
|
if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
|
2007-09-26 00:57:13 +00:00
|
|
|
return;
|
|
|
|
|
2008-05-23 16:14:02 +00:00
|
|
|
ieee80211_iterate_active_interfaces_atomic(rt2x00dev->hw,
|
|
|
|
rt2x00lib_beacondone_iter,
|
|
|
|
rt2x00dev);
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
|
2009-07-30 00:08:07 +00:00
|
|
|
ieee80211_queue_work(rt2x00dev->hw, &rt2x00dev->intf_work);
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00lib_beacondone);
|
|
|
|
|
2008-02-05 21:42:23 +00:00
|
|
|
void rt2x00lib_txdone(struct queue_entry *entry,
|
|
|
|
struct txdone_entry_desc *txdesc)
|
2007-09-26 00:57:13 +00:00
|
|
|
{
|
2008-02-05 21:42:23 +00:00
|
|
|
struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
|
2008-05-15 10:55:29 +00:00
|
|
|
struct ieee80211_tx_info *tx_info = IEEE80211_SKB_CB(entry->skb);
|
2008-10-21 10:40:02 +00:00
|
|
|
struct skb_frame_desc *skbdesc = get_skb_frame_desc(entry->skb);
|
2008-06-16 17:56:54 +00:00
|
|
|
enum data_queue_qid qid = skb_get_queue_mapping(entry->skb);
|
2009-04-26 14:08:50 +00:00
|
|
|
unsigned int header_length = ieee80211_get_hdrlen_from_skb(entry->skb);
|
2008-10-21 10:40:02 +00:00
|
|
|
u8 rate_idx, rate_flags;
|
2008-06-16 17:56:54 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Unmap the skb.
|
|
|
|
*/
|
|
|
|
rt2x00queue_unmap_skb(rt2x00dev, entry->skb);
|
2008-05-15 10:55:29 +00:00
|
|
|
|
2009-04-26 14:08:50 +00:00
|
|
|
/*
|
|
|
|
* Remove L2 padding which was added during
|
|
|
|
*/
|
|
|
|
if (test_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags))
|
|
|
|
rt2x00queue_payload_align(entry->skb, true, header_length);
|
|
|
|
|
2008-08-04 14:37:44 +00:00
|
|
|
/*
|
|
|
|
* If the IV/EIV data was stripped from the frame before it was
|
|
|
|
* passed to the hardware, we should now reinsert it again because
|
|
|
|
* mac80211 will expect the the same data to be present it the
|
|
|
|
* frame as it was passed to us.
|
|
|
|
*/
|
|
|
|
if (test_bit(CONFIG_SUPPORT_HW_CRYPTO, &rt2x00dev->flags))
|
2009-04-26 14:08:50 +00:00
|
|
|
rt2x00crypto_tx_insert_iv(entry->skb, header_length);
|
2008-08-04 14:37:44 +00:00
|
|
|
|
2008-05-15 10:55:29 +00:00
|
|
|
/*
|
|
|
|
* Send frame to debugfs immediately, after this call is completed
|
|
|
|
* we are going to overwrite the skb->cb array.
|
|
|
|
*/
|
|
|
|
rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_TXDONE, entry->skb);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Update TX statistics.
|
|
|
|
*/
|
2008-05-10 11:42:06 +00:00
|
|
|
rt2x00dev->link.qual.tx_success +=
|
2009-05-19 15:52:56 +00:00
|
|
|
test_bit(TXDONE_SUCCESS, &txdesc->flags) ||
|
|
|
|
test_bit(TXDONE_UNKNOWN, &txdesc->flags);
|
2008-05-10 11:42:06 +00:00
|
|
|
rt2x00dev->link.qual.tx_failed +=
|
2008-06-10 13:06:52 +00:00
|
|
|
test_bit(TXDONE_FAILURE, &txdesc->flags);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
2008-10-21 10:40:02 +00:00
|
|
|
rate_idx = skbdesc->tx_rate_idx;
|
|
|
|
rate_flags = skbdesc->tx_rate_flags;
|
|
|
|
|
2008-02-05 21:42:23 +00:00
|
|
|
/*
|
|
|
|
* Initialize TX status
|
|
|
|
*/
|
2008-05-15 10:55:29 +00:00
|
|
|
memset(&tx_info->status, 0, sizeof(tx_info->status));
|
|
|
|
tx_info->status.ack_signal = 0;
|
2008-10-21 10:40:02 +00:00
|
|
|
tx_info->status.rates[0].idx = rate_idx;
|
|
|
|
tx_info->status.rates[0].flags = rate_flags;
|
|
|
|
tx_info->status.rates[0].count = txdesc->retry + 1;
|
|
|
|
tx_info->status.rates[1].idx = -1; /* terminate */
|
2008-02-05 21:42:23 +00:00
|
|
|
|
2008-05-15 10:55:29 +00:00
|
|
|
if (!(tx_info->flags & IEEE80211_TX_CTL_NO_ACK)) {
|
2009-05-19 15:52:56 +00:00
|
|
|
if (test_bit(TXDONE_SUCCESS, &txdesc->flags) ||
|
|
|
|
test_bit(TXDONE_UNKNOWN, &txdesc->flags))
|
2008-05-15 10:55:29 +00:00
|
|
|
tx_info->flags |= IEEE80211_TX_STAT_ACK;
|
2008-05-10 11:42:06 +00:00
|
|
|
else if (test_bit(TXDONE_FAILURE, &txdesc->flags))
|
2008-02-05 21:42:23 +00:00
|
|
|
rt2x00dev->low_level_stats.dot11ACKFailureCount++;
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
2008-10-21 10:40:02 +00:00
|
|
|
if (rate_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
|
2009-05-19 15:52:56 +00:00
|
|
|
if (test_bit(TXDONE_SUCCESS, &txdesc->flags) ||
|
|
|
|
test_bit(TXDONE_UNKNOWN, &txdesc->flags))
|
2008-02-05 21:42:23 +00:00
|
|
|
rt2x00dev->low_level_stats.dot11RTSSuccessCount++;
|
2008-05-10 11:42:06 +00:00
|
|
|
else if (test_bit(TXDONE_FAILURE, &txdesc->flags))
|
2008-02-05 21:42:23 +00:00
|
|
|
rt2x00dev->low_level_stats.dot11RTSFailureCount++;
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2008-05-15 10:55:29 +00:00
|
|
|
* Only send the status report to mac80211 when TX status was
|
|
|
|
* requested by it. If this was a extra frame coming through
|
|
|
|
* a mac80211 library call (RTS/CTS) then we should not send the
|
|
|
|
* status report back.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2008-05-15 10:55:29 +00:00
|
|
|
if (tx_info->flags & IEEE80211_TX_CTL_REQ_TX_STATUS)
|
|
|
|
ieee80211_tx_status_irqsafe(rt2x00dev->hw, entry->skb);
|
2008-02-17 16:32:08 +00:00
|
|
|
else
|
2008-05-10 11:42:06 +00:00
|
|
|
dev_kfree_skb_irq(entry->skb);
|
2008-06-16 17:56:54 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make this entry available for reuse.
|
|
|
|
*/
|
2007-09-26 00:57:13 +00:00
|
|
|
entry->skb = NULL;
|
2008-06-16 17:56:54 +00:00
|
|
|
entry->flags = 0;
|
|
|
|
|
2008-11-08 14:25:33 +00:00
|
|
|
rt2x00dev->ops->lib->clear_entry(entry);
|
2008-06-16 17:56:54 +00:00
|
|
|
|
2008-08-29 19:04:26 +00:00
|
|
|
clear_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
|
2008-06-16 17:56:54 +00:00
|
|
|
rt2x00queue_index_inc(entry->queue, Q_INDEX_DONE);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the data queue was below the threshold before the txdone
|
|
|
|
* handler we must make sure the packet queue in the mac80211 stack
|
|
|
|
* is reenabled when the txdone handler has finished.
|
|
|
|
*/
|
|
|
|
if (!rt2x00queue_threshold(entry->queue))
|
|
|
|
ieee80211_wake_queue(rt2x00dev->hw, qid);
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00lib_txdone);
|
|
|
|
|
2009-04-26 14:09:32 +00:00
|
|
|
static int rt2x00lib_rxdone_read_signal(struct rt2x00_dev *rt2x00dev,
|
|
|
|
struct rxdone_entry_desc *rxdesc)
|
|
|
|
{
|
|
|
|
struct ieee80211_supported_band *sband;
|
|
|
|
const struct rt2x00_rate *rate;
|
|
|
|
unsigned int i;
|
|
|
|
int signal;
|
|
|
|
int type;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For non-HT rates the MCS value needs to contain the
|
|
|
|
* actually used rate modulation (CCK or OFDM).
|
|
|
|
*/
|
|
|
|
if (rxdesc->dev_flags & RXDONE_SIGNAL_MCS)
|
|
|
|
signal = RATE_MCS(rxdesc->rate_mode, rxdesc->signal);
|
|
|
|
else
|
|
|
|
signal = rxdesc->signal;
|
|
|
|
|
|
|
|
type = (rxdesc->dev_flags & RXDONE_SIGNAL_MASK);
|
|
|
|
|
|
|
|
sband = &rt2x00dev->bands[rt2x00dev->curr_band];
|
|
|
|
for (i = 0; i < sband->n_bitrates; i++) {
|
|
|
|
rate = rt2x00_get_rate(sband->bitrates[i].hw_value);
|
|
|
|
|
|
|
|
if (((type == RXDONE_SIGNAL_PLCP) &&
|
|
|
|
(rate->plcp == signal)) ||
|
|
|
|
((type == RXDONE_SIGNAL_BITRATE) &&
|
|
|
|
(rate->bitrate == signal)) ||
|
|
|
|
((type == RXDONE_SIGNAL_MCS) &&
|
|
|
|
(rate->mcs == signal))) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WARNING(rt2x00dev, "Frame received with unrecognized signal, "
|
|
|
|
"signal=0x%.4x, type=%d.\n", signal, type);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-06-16 17:56:31 +00:00
|
|
|
void rt2x00lib_rxdone(struct rt2x00_dev *rt2x00dev,
|
|
|
|
struct queue_entry *entry)
|
2007-09-26 00:57:13 +00:00
|
|
|
{
|
2008-06-16 17:56:31 +00:00
|
|
|
struct rxdone_entry_desc rxdesc;
|
|
|
|
struct sk_buff *skb;
|
2007-09-26 00:57:13 +00:00
|
|
|
struct ieee80211_rx_status *rx_status = &rt2x00dev->rx_status;
|
2008-08-04 14:37:44 +00:00
|
|
|
unsigned int header_length;
|
2009-04-26 14:08:50 +00:00
|
|
|
bool l2pad;
|
2009-04-26 14:09:32 +00:00
|
|
|
int rate_idx;
|
2008-06-16 17:56:31 +00:00
|
|
|
/*
|
|
|
|
* Allocate a new sk_buffer. If no new buffer available, drop the
|
|
|
|
* received frame and reuse the existing buffer.
|
|
|
|
*/
|
|
|
|
skb = rt2x00queue_alloc_rxskb(rt2x00dev, entry);
|
|
|
|
if (!skb)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unmap the skb.
|
|
|
|
*/
|
|
|
|
rt2x00queue_unmap_skb(rt2x00dev, entry->skb);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Extract the RXD details.
|
|
|
|
*/
|
|
|
|
memset(&rxdesc, 0, sizeof(rxdesc));
|
|
|
|
rt2x00dev->ops->lib->fill_rxdone(entry, &rxdesc);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
2009-04-26 14:08:50 +00:00
|
|
|
/* Trim buffer to correct size */
|
|
|
|
skb_trim(entry->skb, rxdesc.size);
|
|
|
|
|
2008-06-06 20:54:12 +00:00
|
|
|
/*
|
|
|
|
* The data behind the ieee80211 header must be
|
2008-06-07 14:57:09 +00:00
|
|
|
* aligned on a 4 byte boundary.
|
2008-06-06 20:54:12 +00:00
|
|
|
*/
|
2008-08-04 14:37:44 +00:00
|
|
|
header_length = ieee80211_get_hdrlen_from_skb(entry->skb);
|
2009-04-26 14:08:50 +00:00
|
|
|
l2pad = !!(rxdesc.dev_flags & RXDONE_L2PAD);
|
2008-06-06 20:54:12 +00:00
|
|
|
|
2008-08-04 14:37:44 +00:00
|
|
|
/*
|
|
|
|
* Hardware might have stripped the IV/EIV/ICV data,
|
|
|
|
* in that case it is possible that the data was
|
|
|
|
* provided seperately (through hardware descriptor)
|
|
|
|
* in which case we should reinsert the data into the frame.
|
|
|
|
*/
|
2008-12-02 21:50:33 +00:00
|
|
|
if ((rxdesc.dev_flags & RXDONE_CRYPTO_IV) &&
|
2009-04-26 14:08:50 +00:00
|
|
|
(rxdesc.flags & RX_FLAG_IV_STRIPPED))
|
|
|
|
rt2x00crypto_rx_insert_iv(entry->skb, l2pad, header_length,
|
|
|
|
&rxdesc);
|
|
|
|
else
|
|
|
|
rt2x00queue_payload_align(entry->skb, l2pad, header_length);
|
2008-06-06 20:54:12 +00:00
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
/*
|
2009-04-26 14:09:32 +00:00
|
|
|
* Check if the frame was received using HT. In that case,
|
|
|
|
* the rate is the MCS index and should be passed to mac80211
|
|
|
|
* directly. Otherwise we need to translate the signal to
|
|
|
|
* the correct bitrate index.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2009-04-26 14:09:32 +00:00
|
|
|
if (rxdesc.rate_mode == RATE_MODE_CCK ||
|
|
|
|
rxdesc.rate_mode == RATE_MODE_OFDM) {
|
|
|
|
rate_idx = rt2x00lib_rxdone_read_signal(rt2x00dev, &rxdesc);
|
|
|
|
} else {
|
|
|
|
rxdesc.flags |= RX_FLAG_HT;
|
|
|
|
rate_idx = rxdesc.signal;
|
2008-03-25 13:12:45 +00:00
|
|
|
}
|
|
|
|
|
2007-11-27 20:50:26 +00:00
|
|
|
/*
|
2008-12-20 09:53:29 +00:00
|
|
|
* Update extra components
|
2007-11-27 20:50:26 +00:00
|
|
|
*/
|
2008-12-20 09:53:29 +00:00
|
|
|
rt2x00link_update_stats(rt2x00dev, entry->skb, &rxdesc);
|
|
|
|
rt2x00debug_update_crypto(rt2x00dev, &rxdesc);
|
2007-10-13 14:26:36 +00:00
|
|
|
|
2008-07-04 14:14:59 +00:00
|
|
|
rx_status->mactime = rxdesc.timestamp;
|
2009-04-26 14:09:32 +00:00
|
|
|
rx_status->rate_idx = rate_idx;
|
2008-12-20 09:53:29 +00:00
|
|
|
rx_status->qual = rt2x00link_calculate_signal(rt2x00dev, rxdesc.rssi);
|
2008-06-16 17:56:31 +00:00
|
|
|
rx_status->signal = rxdesc.rssi;
|
2008-12-20 09:59:29 +00:00
|
|
|
rx_status->noise = rxdesc.noise;
|
2008-06-16 17:56:31 +00:00
|
|
|
rx_status->flag = rxdesc.flags;
|
2007-10-13 14:26:36 +00:00
|
|
|
rx_status->antenna = rt2x00dev->link.ant.active.rx;
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
/*
|
2008-02-05 21:42:23 +00:00
|
|
|
* Send frame to mac80211 & debugfs.
|
|
|
|
* mac80211 will clean up the skb structure.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2008-05-10 11:41:32 +00:00
|
|
|
rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_RXDONE, entry->skb);
|
2009-06-17 11:13:00 +00:00
|
|
|
memcpy(IEEE80211_SKB_RXCB(entry->skb), rx_status, sizeof(*rx_status));
|
|
|
|
ieee80211_rx_irqsafe(rt2x00dev->hw, entry->skb);
|
2008-06-16 17:56:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Replace the skb with the freshly allocated one.
|
|
|
|
*/
|
|
|
|
entry->skb = skb;
|
2008-06-16 17:56:54 +00:00
|
|
|
entry->flags = 0;
|
|
|
|
|
2008-11-08 14:25:33 +00:00
|
|
|
rt2x00dev->ops->lib->clear_entry(entry);
|
2008-06-16 17:56:54 +00:00
|
|
|
|
|
|
|
rt2x00queue_index_inc(entry->queue, Q_INDEX);
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00lib_rxdone);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Driver initialization handlers.
|
|
|
|
*/
|
2008-02-03 14:50:40 +00:00
|
|
|
const struct rt2x00_rate rt2x00_supported_rates[12] = {
|
|
|
|
{
|
2008-11-01 23:36:40 +00:00
|
|
|
.flags = DEV_RATE_CCK,
|
2008-02-03 14:50:40 +00:00
|
|
|
.bitrate = 10,
|
2008-03-09 21:48:08 +00:00
|
|
|
.ratemask = BIT(0),
|
2008-02-03 14:50:40 +00:00
|
|
|
.plcp = 0x00,
|
2009-04-26 14:09:32 +00:00
|
|
|
.mcs = RATE_MCS(RATE_MODE_CCK, 0),
|
2008-02-03 14:50:40 +00:00
|
|
|
},
|
|
|
|
{
|
2008-11-01 23:36:40 +00:00
|
|
|
.flags = DEV_RATE_CCK | DEV_RATE_SHORT_PREAMBLE,
|
2008-02-03 14:50:40 +00:00
|
|
|
.bitrate = 20,
|
2008-03-09 21:48:08 +00:00
|
|
|
.ratemask = BIT(1),
|
2008-02-03 14:50:40 +00:00
|
|
|
.plcp = 0x01,
|
2009-04-26 14:09:32 +00:00
|
|
|
.mcs = RATE_MCS(RATE_MODE_CCK, 1),
|
2008-02-03 14:50:40 +00:00
|
|
|
},
|
|
|
|
{
|
2008-11-01 23:36:40 +00:00
|
|
|
.flags = DEV_RATE_CCK | DEV_RATE_SHORT_PREAMBLE,
|
2008-02-03 14:50:40 +00:00
|
|
|
.bitrate = 55,
|
2008-03-09 21:48:08 +00:00
|
|
|
.ratemask = BIT(2),
|
2008-02-03 14:50:40 +00:00
|
|
|
.plcp = 0x02,
|
2009-04-26 14:09:32 +00:00
|
|
|
.mcs = RATE_MCS(RATE_MODE_CCK, 2),
|
2008-02-03 14:50:40 +00:00
|
|
|
},
|
|
|
|
{
|
2008-11-01 23:36:40 +00:00
|
|
|
.flags = DEV_RATE_CCK | DEV_RATE_SHORT_PREAMBLE,
|
2008-02-03 14:50:40 +00:00
|
|
|
.bitrate = 110,
|
2008-03-09 21:48:08 +00:00
|
|
|
.ratemask = BIT(3),
|
2008-02-03 14:50:40 +00:00
|
|
|
.plcp = 0x03,
|
2009-04-26 14:09:32 +00:00
|
|
|
.mcs = RATE_MCS(RATE_MODE_CCK, 3),
|
2008-02-03 14:50:40 +00:00
|
|
|
},
|
|
|
|
{
|
2008-11-01 23:36:40 +00:00
|
|
|
.flags = DEV_RATE_OFDM,
|
2008-02-03 14:50:40 +00:00
|
|
|
.bitrate = 60,
|
2008-03-09 21:48:08 +00:00
|
|
|
.ratemask = BIT(4),
|
2008-02-03 14:50:40 +00:00
|
|
|
.plcp = 0x0b,
|
2009-04-26 14:09:32 +00:00
|
|
|
.mcs = RATE_MCS(RATE_MODE_OFDM, 0),
|
2008-02-03 14:50:40 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.flags = DEV_RATE_OFDM,
|
|
|
|
.bitrate = 90,
|
2008-03-09 21:48:08 +00:00
|
|
|
.ratemask = BIT(5),
|
2008-02-03 14:50:40 +00:00
|
|
|
.plcp = 0x0f,
|
2009-04-26 14:09:32 +00:00
|
|
|
.mcs = RATE_MCS(RATE_MODE_OFDM, 1),
|
2008-02-03 14:50:40 +00:00
|
|
|
},
|
|
|
|
{
|
2008-11-01 23:36:40 +00:00
|
|
|
.flags = DEV_RATE_OFDM,
|
2008-02-03 14:50:40 +00:00
|
|
|
.bitrate = 120,
|
2008-03-09 21:48:08 +00:00
|
|
|
.ratemask = BIT(6),
|
2008-02-03 14:50:40 +00:00
|
|
|
.plcp = 0x0a,
|
2009-04-26 14:09:32 +00:00
|
|
|
.mcs = RATE_MCS(RATE_MODE_OFDM, 2),
|
2008-02-03 14:50:40 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.flags = DEV_RATE_OFDM,
|
|
|
|
.bitrate = 180,
|
2008-03-09 21:48:08 +00:00
|
|
|
.ratemask = BIT(7),
|
2008-02-03 14:50:40 +00:00
|
|
|
.plcp = 0x0e,
|
2009-04-26 14:09:32 +00:00
|
|
|
.mcs = RATE_MCS(RATE_MODE_OFDM, 3),
|
2008-02-03 14:50:40 +00:00
|
|
|
},
|
|
|
|
{
|
2008-11-01 23:36:40 +00:00
|
|
|
.flags = DEV_RATE_OFDM,
|
2008-02-03 14:50:40 +00:00
|
|
|
.bitrate = 240,
|
2008-03-09 21:48:08 +00:00
|
|
|
.ratemask = BIT(8),
|
2008-02-03 14:50:40 +00:00
|
|
|
.plcp = 0x09,
|
2009-04-26 14:09:32 +00:00
|
|
|
.mcs = RATE_MCS(RATE_MODE_OFDM, 4),
|
2008-02-03 14:50:40 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.flags = DEV_RATE_OFDM,
|
|
|
|
.bitrate = 360,
|
2008-03-09 21:48:08 +00:00
|
|
|
.ratemask = BIT(9),
|
2008-02-03 14:50:40 +00:00
|
|
|
.plcp = 0x0d,
|
2009-04-26 14:09:32 +00:00
|
|
|
.mcs = RATE_MCS(RATE_MODE_OFDM, 5),
|
2008-02-03 14:50:40 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.flags = DEV_RATE_OFDM,
|
|
|
|
.bitrate = 480,
|
2008-03-09 21:48:08 +00:00
|
|
|
.ratemask = BIT(10),
|
2008-02-03 14:50:40 +00:00
|
|
|
.plcp = 0x08,
|
2009-04-26 14:09:32 +00:00
|
|
|
.mcs = RATE_MCS(RATE_MODE_OFDM, 6),
|
2008-02-03 14:50:40 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.flags = DEV_RATE_OFDM,
|
|
|
|
.bitrate = 540,
|
2008-03-09 21:48:08 +00:00
|
|
|
.ratemask = BIT(11),
|
2008-02-03 14:50:40 +00:00
|
|
|
.plcp = 0x0c,
|
2009-04-26 14:09:32 +00:00
|
|
|
.mcs = RATE_MCS(RATE_MODE_OFDM, 7),
|
2008-02-03 14:50:40 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
static void rt2x00lib_channel(struct ieee80211_channel *entry,
|
|
|
|
const int channel, const int tx_power,
|
|
|
|
const int value)
|
|
|
|
{
|
2008-02-03 14:52:45 +00:00
|
|
|
entry->center_freq = ieee80211_channel_to_frequency(channel);
|
2008-01-24 18:38:38 +00:00
|
|
|
entry->hw_value = value;
|
|
|
|
entry->max_power = tx_power;
|
|
|
|
entry->max_antenna_gain = 0xff;
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void rt2x00lib_rate(struct ieee80211_rate *entry,
|
2008-02-03 14:50:40 +00:00
|
|
|
const u16 index, const struct rt2x00_rate *rate)
|
2007-09-26 00:57:13 +00:00
|
|
|
{
|
2008-02-03 14:50:40 +00:00
|
|
|
entry->flags = 0;
|
|
|
|
entry->bitrate = rate->bitrate;
|
2009-01-04 16:33:25 +00:00
|
|
|
entry->hw_value =index;
|
|
|
|
entry->hw_value_short = index;
|
2008-02-03 14:50:40 +00:00
|
|
|
|
2009-01-04 16:33:25 +00:00
|
|
|
if (rate->flags & DEV_RATE_SHORT_PREAMBLE)
|
2008-02-03 14:50:40 +00:00
|
|
|
entry->flags |= IEEE80211_RATE_SHORT_PREAMBLE;
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int rt2x00lib_probe_hw_modes(struct rt2x00_dev *rt2x00dev,
|
|
|
|
struct hw_mode_spec *spec)
|
|
|
|
{
|
|
|
|
struct ieee80211_hw *hw = rt2x00dev->hw;
|
|
|
|
struct ieee80211_channel *channels;
|
|
|
|
struct ieee80211_rate *rates;
|
2008-02-17 16:35:05 +00:00
|
|
|
unsigned int num_rates;
|
2007-09-26 00:57:13 +00:00
|
|
|
unsigned int i;
|
|
|
|
|
2008-02-17 16:35:05 +00:00
|
|
|
num_rates = 0;
|
|
|
|
if (spec->supported_rates & SUPPORT_RATE_CCK)
|
|
|
|
num_rates += 4;
|
|
|
|
if (spec->supported_rates & SUPPORT_RATE_OFDM)
|
|
|
|
num_rates += 8;
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
channels = kzalloc(sizeof(*channels) * spec->num_channels, GFP_KERNEL);
|
|
|
|
if (!channels)
|
2008-01-24 18:38:38 +00:00
|
|
|
return -ENOMEM;
|
2007-09-26 00:57:13 +00:00
|
|
|
|
2008-02-17 16:35:05 +00:00
|
|
|
rates = kzalloc(sizeof(*rates) * num_rates, GFP_KERNEL);
|
2007-09-26 00:57:13 +00:00
|
|
|
if (!rates)
|
|
|
|
goto exit_free_channels;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize Rate list.
|
|
|
|
*/
|
2008-02-17 16:35:05 +00:00
|
|
|
for (i = 0; i < num_rates; i++)
|
2008-02-03 14:54:34 +00:00
|
|
|
rt2x00lib_rate(&rates[i], i, rt2x00_get_rate(i));
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize Channel list.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < spec->num_channels; i++) {
|
|
|
|
rt2x00lib_channel(&channels[i],
|
2008-08-04 14:38:47 +00:00
|
|
|
spec->channels[i].channel,
|
|
|
|
spec->channels_info[i].tx_power1, i);
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2008-02-17 16:35:05 +00:00
|
|
|
* Intitialize 802.11b, 802.11g
|
2007-09-26 00:57:13 +00:00
|
|
|
* Rates: CCK, OFDM.
|
2008-01-24 18:38:38 +00:00
|
|
|
* Channels: 2.4 GHz
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2008-02-17 16:35:55 +00:00
|
|
|
if (spec->supported_bands & SUPPORT_BAND_2GHZ) {
|
2008-02-17 16:35:05 +00:00
|
|
|
rt2x00dev->bands[IEEE80211_BAND_2GHZ].n_channels = 14;
|
|
|
|
rt2x00dev->bands[IEEE80211_BAND_2GHZ].n_bitrates = num_rates;
|
|
|
|
rt2x00dev->bands[IEEE80211_BAND_2GHZ].channels = channels;
|
|
|
|
rt2x00dev->bands[IEEE80211_BAND_2GHZ].bitrates = rates;
|
|
|
|
hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
|
|
|
|
&rt2x00dev->bands[IEEE80211_BAND_2GHZ];
|
2009-04-26 14:09:32 +00:00
|
|
|
memcpy(&rt2x00dev->bands[IEEE80211_BAND_2GHZ].ht_cap,
|
|
|
|
&spec->ht, sizeof(spec->ht));
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Intitialize 802.11a
|
|
|
|
* Rates: OFDM.
|
|
|
|
* Channels: OFDM, UNII, HiperLAN2.
|
|
|
|
*/
|
2008-02-17 16:35:55 +00:00
|
|
|
if (spec->supported_bands & SUPPORT_BAND_5GHZ) {
|
2008-02-17 16:35:05 +00:00
|
|
|
rt2x00dev->bands[IEEE80211_BAND_5GHZ].n_channels =
|
|
|
|
spec->num_channels - 14;
|
|
|
|
rt2x00dev->bands[IEEE80211_BAND_5GHZ].n_bitrates =
|
|
|
|
num_rates - 4;
|
|
|
|
rt2x00dev->bands[IEEE80211_BAND_5GHZ].channels = &channels[14];
|
|
|
|
rt2x00dev->bands[IEEE80211_BAND_5GHZ].bitrates = &rates[4];
|
|
|
|
hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
|
|
|
|
&rt2x00dev->bands[IEEE80211_BAND_5GHZ];
|
2009-04-26 14:09:32 +00:00
|
|
|
memcpy(&rt2x00dev->bands[IEEE80211_BAND_5GHZ].ht_cap,
|
|
|
|
&spec->ht, sizeof(spec->ht));
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2008-01-24 18:38:38 +00:00
|
|
|
exit_free_channels:
|
2007-09-26 00:57:13 +00:00
|
|
|
kfree(channels);
|
|
|
|
ERROR(rt2x00dev, "Allocation ieee80211 modes failed.\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rt2x00lib_remove_hw(struct rt2x00_dev *rt2x00dev)
|
|
|
|
{
|
2008-08-29 19:04:26 +00:00
|
|
|
if (test_bit(DEVICE_STATE_REGISTERED_HW, &rt2x00dev->flags))
|
2007-09-26 00:57:13 +00:00
|
|
|
ieee80211_unregister_hw(rt2x00dev->hw);
|
|
|
|
|
2008-01-24 18:38:38 +00:00
|
|
|
if (likely(rt2x00dev->hw->wiphy->bands[IEEE80211_BAND_2GHZ])) {
|
|
|
|
kfree(rt2x00dev->hw->wiphy->bands[IEEE80211_BAND_2GHZ]->channels);
|
|
|
|
kfree(rt2x00dev->hw->wiphy->bands[IEEE80211_BAND_2GHZ]->bitrates);
|
|
|
|
rt2x00dev->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = NULL;
|
|
|
|
rt2x00dev->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = NULL;
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
2008-08-04 14:38:47 +00:00
|
|
|
|
|
|
|
kfree(rt2x00dev->spec.channels_info);
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int rt2x00lib_probe_hw(struct rt2x00_dev *rt2x00dev)
|
|
|
|
{
|
|
|
|
struct hw_mode_spec *spec = &rt2x00dev->spec;
|
|
|
|
int status;
|
|
|
|
|
2008-08-29 19:04:26 +00:00
|
|
|
if (test_bit(DEVICE_STATE_REGISTERED_HW, &rt2x00dev->flags))
|
|
|
|
return 0;
|
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
/*
|
|
|
|
* Initialize HW modes.
|
|
|
|
*/
|
|
|
|
status = rt2x00lib_probe_hw_modes(rt2x00dev, spec);
|
|
|
|
if (status)
|
|
|
|
return status;
|
|
|
|
|
2008-05-10 11:43:33 +00:00
|
|
|
/*
|
|
|
|
* Initialize HW fields.
|
|
|
|
*/
|
|
|
|
rt2x00dev->hw->queues = rt2x00dev->ops->tx_queues;
|
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
/*
|
|
|
|
* Register HW.
|
|
|
|
*/
|
|
|
|
status = ieee80211_register_hw(rt2x00dev->hw);
|
2009-04-10 21:05:14 +00:00
|
|
|
if (status)
|
2007-09-26 00:57:13 +00:00
|
|
|
return status;
|
|
|
|
|
2008-08-29 19:04:26 +00:00
|
|
|
set_bit(DEVICE_STATE_REGISTERED_HW, &rt2x00dev->flags);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialization/uninitialization handlers.
|
|
|
|
*/
|
2008-01-06 22:40:07 +00:00
|
|
|
static void rt2x00lib_uninitialize(struct rt2x00_dev *rt2x00dev)
|
2007-09-26 00:57:13 +00:00
|
|
|
{
|
2008-08-29 19:04:26 +00:00
|
|
|
if (!test_and_clear_bit(DEVICE_STATE_INITIALIZED, &rt2x00dev->flags))
|
2007-09-26 00:57:13 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
2008-03-13 14:38:03 +00:00
|
|
|
* Unregister extra components.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
|
|
|
rt2x00rfkill_unregister(rt2x00dev);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allow the HW to uninitialize.
|
|
|
|
*/
|
|
|
|
rt2x00dev->ops->lib->uninitialize(rt2x00dev);
|
|
|
|
|
|
|
|
/*
|
2008-02-05 21:42:23 +00:00
|
|
|
* Free allocated queue entries.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2008-02-05 21:42:23 +00:00
|
|
|
rt2x00queue_uninitialize(rt2x00dev);
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
2008-01-06 22:40:07 +00:00
|
|
|
static int rt2x00lib_initialize(struct rt2x00_dev *rt2x00dev)
|
2007-09-26 00:57:13 +00:00
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
2008-08-29 19:04:26 +00:00
|
|
|
if (test_bit(DEVICE_STATE_INITIALIZED, &rt2x00dev->flags))
|
2007-09-26 00:57:13 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
2008-02-05 21:42:23 +00:00
|
|
|
* Allocate all queue entries.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2008-02-05 21:42:23 +00:00
|
|
|
status = rt2x00queue_initialize(rt2x00dev);
|
|
|
|
if (status)
|
2007-09-26 00:57:13 +00:00
|
|
|
return status;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize the device.
|
|
|
|
*/
|
|
|
|
status = rt2x00dev->ops->lib->initialize(rt2x00dev);
|
2008-05-05 15:23:47 +00:00
|
|
|
if (status) {
|
|
|
|
rt2x00queue_uninitialize(rt2x00dev);
|
|
|
|
return status;
|
|
|
|
}
|
2007-09-26 00:57:13 +00:00
|
|
|
|
2008-08-29 19:04:26 +00:00
|
|
|
set_bit(DEVICE_STATE_INITIALIZED, &rt2x00dev->flags);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
/*
|
2008-03-13 14:38:03 +00:00
|
|
|
* Register the extra components.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2008-03-13 14:38:03 +00:00
|
|
|
rt2x00rfkill_register(rt2x00dev);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-01-06 22:40:07 +00:00
|
|
|
int rt2x00lib_start(struct rt2x00_dev *rt2x00dev)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
|
2008-08-29 19:04:26 +00:00
|
|
|
if (test_bit(DEVICE_STATE_STARTED, &rt2x00dev->flags))
|
2008-01-06 22:40:07 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this is the first interface which is added,
|
|
|
|
* we should load the firmware now.
|
|
|
|
*/
|
2008-02-03 14:48:38 +00:00
|
|
|
retval = rt2x00lib_load_firmware(rt2x00dev);
|
|
|
|
if (retval)
|
|
|
|
return retval;
|
2008-01-06 22:40:07 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize the device.
|
|
|
|
*/
|
|
|
|
retval = rt2x00lib_initialize(rt2x00dev);
|
|
|
|
if (retval)
|
|
|
|
return retval;
|
|
|
|
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
rt2x00dev->intf_ap_count = 0;
|
|
|
|
rt2x00dev->intf_sta_count = 0;
|
|
|
|
rt2x00dev->intf_associated = 0;
|
|
|
|
|
2008-08-29 19:04:26 +00:00
|
|
|
set_bit(DEVICE_STATE_STARTED, &rt2x00dev->flags);
|
2008-01-06 22:40:07 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rt2x00lib_stop(struct rt2x00_dev *rt2x00dev)
|
|
|
|
{
|
2008-08-29 19:04:26 +00:00
|
|
|
if (!test_and_clear_bit(DEVICE_STATE_STARTED, &rt2x00dev->flags))
|
2008-01-06 22:40:07 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Perhaps we can add something smarter here,
|
|
|
|
* but for now just disabling the radio should do.
|
|
|
|
*/
|
|
|
|
rt2x00lib_disable_radio(rt2x00dev);
|
|
|
|
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
rt2x00dev->intf_ap_count = 0;
|
|
|
|
rt2x00dev->intf_sta_count = 0;
|
|
|
|
rt2x00dev->intf_associated = 0;
|
2008-01-06 22:40:07 +00:00
|
|
|
}
|
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
/*
|
|
|
|
* driver allocation handlers.
|
|
|
|
*/
|
|
|
|
int rt2x00lib_probe_dev(struct rt2x00_dev *rt2x00dev)
|
|
|
|
{
|
|
|
|
int retval = -ENOMEM;
|
|
|
|
|
2008-11-09 22:40:46 +00:00
|
|
|
mutex_init(&rt2x00dev->csr_mutex);
|
|
|
|
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
/*
|
|
|
|
* Make room for rt2x00_intf inside the per-interface
|
|
|
|
* structure ieee80211_vif.
|
|
|
|
*/
|
|
|
|
rt2x00dev->hw->vif_data_size = sizeof(struct rt2x00_intf);
|
|
|
|
|
2008-10-29 16:18:46 +00:00
|
|
|
/*
|
|
|
|
* Determine which operating modes are supported, all modes
|
|
|
|
* which require beaconing, depend on the availability of
|
|
|
|
* beacon entries.
|
|
|
|
*/
|
|
|
|
rt2x00dev->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION);
|
|
|
|
if (rt2x00dev->ops->bcn->entry_num > 0)
|
|
|
|
rt2x00dev->hw->wiphy->interface_modes |=
|
|
|
|
BIT(NL80211_IFTYPE_ADHOC) |
|
2008-12-20 09:55:34 +00:00
|
|
|
BIT(NL80211_IFTYPE_AP) |
|
2008-12-20 09:57:02 +00:00
|
|
|
BIT(NL80211_IFTYPE_MESH_POINT) |
|
|
|
|
BIT(NL80211_IFTYPE_WDS);
|
2008-08-29 23:26:43 +00:00
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
/*
|
|
|
|
* Let the driver probe the device to detect the capabilities.
|
|
|
|
*/
|
|
|
|
retval = rt2x00dev->ops->lib->probe_hw(rt2x00dev);
|
|
|
|
if (retval) {
|
|
|
|
ERROR(rt2x00dev, "Failed to allocate device.\n");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize configuration work.
|
|
|
|
*/
|
rt2x00: Add per-interface structure
Rework the interface handling. Delete the interface structure
and replace it with a per-interface structure. This changes the
way rt2x00 handles the active interface drastically.
Copy ieee80211_bss_conf to the this rt2x00_intf structure during
the bss_info_changed() callback function. This will allow us to
reference it later, and removes the requirement for the device flag
SHORT_PREAMBLE flag which is interface specific.
Drivers receive the option to give the maximum number of virtual
interfaces the device can handle. Virtual interface support:
rt2400pci: 1 sta or 1 ap, * monitor interfaces
rt2500pci: 1 sta or 1 ap, * monitor interfaces
rt2500usb: 1 sta or 1 ap, * monitor interfaces
rt61pci: 1 sta or 4 ap, * monitor interfaces
rt73usb: 1 sta or 4 ap, * monitor interfaces
At the moment none of the drivers support AP and STA interfaces
simultaneously, this is a hardware limitation so future support
will be very unlikely.
Each interface structure receives its dedicated beacon entry,
with this we can easily work with beaconing while multiple master
mode interfaces are currently active.
The configuration handlers for the MAC, BSSID and type are
often called together since they all belong to the interface
configuration. Merge the 3 configuration calls and cleanup
the API between rt2x00lib and the drivers. While we are cleaning
up the interface configuration anyway, we might as well clean up
the configuration handler as well.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2008-02-03 14:49:59 +00:00
|
|
|
INIT_WORK(&rt2x00dev->intf_work, rt2x00lib_intf_scheduled);
|
[PATCH] mac80211: revamp interface and filter configuration
Drivers are currently supposed to keep track of monitor
interfaces if they allow so-called "hard" monitor, and
they are also supposed to keep track of multicast etc.
This patch changes that, replaces the set_multicast_list()
callback with a new configure_filter() callback that takes
filter flags (FIF_*) instead of interface flags (IFF_*).
For a driver, this means it should open the filter as much
as necessary to get all frames requested by the filter flags.
Accordingly, the filter flags are named "positively", e.g.
FIF_ALLMULTI.
Multicast filtering is a bit special in that drivers that
have no multicast address filters need to allow multicast
frames through when either the FIF_ALLMULTI flag is set or
when the mc_count value is positive.
At the same time, drivers are no longer notified about
monitor interfaces at all, this means they now need to
implement the start() and stop() callbacks and the new
change_filter_flags() callback. Also, the start()/stop()
ordering changed, start() is now called *before* any
add_interface() as it really should be, and stop() after
any remove_interface().
The patch also changes the behaviour of setting the bssid
to multicast for scanning when IEEE80211_HW_NO_PROBE_FILTERING
is set; the IEEE80211_HW_NO_PROBE_FILTERING flag is removed
and the filter flag FIF_BCN_PRBRESP_PROMISC introduced.
This is a lot more efficient for hardware like b43 that
supports it and other hardware can still set the BSSID
to all-ones.
Driver modifications by Johannes Berg (b43 & iwlwifi), Michael Wu
(rtl8187, adm8211, and p54), Larry Finger (b43legacy), and
Ivo van Doorn (rt2x00).
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: Michael Wu <flamingice@sourmilk.net>
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2007-09-17 05:29:23 +00:00
|
|
|
INIT_WORK(&rt2x00dev->filter_work, rt2x00lib_packetfilter_scheduled);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
/*
|
2008-02-05 21:42:23 +00:00
|
|
|
* Allocate queue array.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2008-02-05 21:42:23 +00:00
|
|
|
retval = rt2x00queue_allocate(rt2x00dev);
|
2007-09-26 00:57:13 +00:00
|
|
|
if (retval)
|
|
|
|
goto exit;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize ieee80211 structure.
|
|
|
|
*/
|
|
|
|
retval = rt2x00lib_probe_hw(rt2x00dev);
|
|
|
|
if (retval) {
|
|
|
|
ERROR(rt2x00dev, "Failed to initialize hw.\n");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2008-02-03 14:53:40 +00:00
|
|
|
/*
|
2008-03-13 14:38:03 +00:00
|
|
|
* Register extra components.
|
2008-02-03 14:53:40 +00:00
|
|
|
*/
|
2008-12-20 09:53:29 +00:00
|
|
|
rt2x00link_register(rt2x00dev);
|
2008-02-03 14:53:40 +00:00
|
|
|
rt2x00leds_register(rt2x00dev);
|
2007-09-26 00:57:13 +00:00
|
|
|
rt2x00debug_register(rt2x00dev);
|
|
|
|
|
2008-08-29 19:04:26 +00:00
|
|
|
set_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags);
|
2007-09-25 18:55:39 +00:00
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
exit:
|
|
|
|
rt2x00lib_remove_dev(rt2x00dev);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00lib_probe_dev);
|
|
|
|
|
|
|
|
void rt2x00lib_remove_dev(struct rt2x00_dev *rt2x00dev)
|
|
|
|
{
|
2008-08-29 19:04:26 +00:00
|
|
|
clear_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags);
|
2007-09-25 18:55:39 +00:00
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
/*
|
|
|
|
* Disable radio.
|
|
|
|
*/
|
|
|
|
rt2x00lib_disable_radio(rt2x00dev);
|
|
|
|
|
2009-08-02 18:30:15 +00:00
|
|
|
/*
|
|
|
|
* Stop all work.
|
|
|
|
*/
|
|
|
|
cancel_work_sync(&rt2x00dev->filter_work);
|
|
|
|
cancel_work_sync(&rt2x00dev->intf_work);
|
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
/*
|
|
|
|
* Uninitialize device.
|
|
|
|
*/
|
|
|
|
rt2x00lib_uninitialize(rt2x00dev);
|
|
|
|
|
|
|
|
/*
|
2008-03-13 14:38:03 +00:00
|
|
|
* Free extra components
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
|
|
|
rt2x00debug_deregister(rt2x00dev);
|
2008-02-03 14:53:40 +00:00
|
|
|
rt2x00leds_unregister(rt2x00dev);
|
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
/*
|
|
|
|
* Free ieee80211_hw memory.
|
|
|
|
*/
|
|
|
|
rt2x00lib_remove_hw(rt2x00dev);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free firmware image.
|
|
|
|
*/
|
|
|
|
rt2x00lib_free_firmware(rt2x00dev);
|
|
|
|
|
|
|
|
/*
|
2008-02-05 21:42:23 +00:00
|
|
|
* Free queue structures.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2008-02-05 21:42:23 +00:00
|
|
|
rt2x00queue_free(rt2x00dev);
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00lib_remove_dev);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Device state handlers
|
|
|
|
*/
|
|
|
|
#ifdef CONFIG_PM
|
|
|
|
int rt2x00lib_suspend(struct rt2x00_dev *rt2x00dev, pm_message_t state)
|
|
|
|
{
|
|
|
|
NOTICE(rt2x00dev, "Going to sleep.\n");
|
2007-09-25 18:55:39 +00:00
|
|
|
|
|
|
|
/*
|
2009-01-23 16:04:05 +00:00
|
|
|
* Prevent mac80211 from accessing driver while suspended.
|
2007-09-25 18:55:39 +00:00
|
|
|
*/
|
2009-01-23 16:04:05 +00:00
|
|
|
if (!test_and_clear_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags))
|
|
|
|
return 0;
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
/*
|
2009-01-23 16:04:05 +00:00
|
|
|
* Cleanup as much as possible.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
|
|
|
rt2x00lib_uninitialize(rt2x00dev);
|
2008-03-13 14:38:03 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Suspend/disable extra components.
|
|
|
|
*/
|
2008-02-03 14:53:40 +00:00
|
|
|
rt2x00leds_suspend(rt2x00dev);
|
2007-09-26 00:57:13 +00:00
|
|
|
rt2x00debug_deregister(rt2x00dev);
|
|
|
|
|
|
|
|
/*
|
2008-03-27 16:15:24 +00:00
|
|
|
* Set device mode to sleep for power management,
|
|
|
|
* on some hardware this call seems to consistently fail.
|
|
|
|
* From the specifications it is hard to tell why it fails,
|
|
|
|
* and if this is a "bad thing".
|
|
|
|
* Overall it is safe to just ignore the failure and
|
|
|
|
* continue suspending. The only downside is that the
|
|
|
|
* device will not be in optimal power save mode, but with
|
|
|
|
* the radio and the other components already disabled the
|
|
|
|
* device is as good as disabled.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2009-01-23 16:04:05 +00:00
|
|
|
if (rt2x00dev->ops->lib->set_device_state(rt2x00dev, STATE_SLEEP))
|
2008-03-27 16:15:24 +00:00
|
|
|
WARNING(rt2x00dev, "Device failed to enter sleep state, "
|
|
|
|
"continue suspending.\n");
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00lib_suspend);
|
|
|
|
|
|
|
|
int rt2x00lib_resume(struct rt2x00_dev *rt2x00dev)
|
|
|
|
{
|
|
|
|
NOTICE(rt2x00dev, "Waking up.\n");
|
|
|
|
|
|
|
|
/*
|
2008-03-13 14:38:03 +00:00
|
|
|
* Restore/enable extra components.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
|
|
|
rt2x00debug_register(rt2x00dev);
|
2008-02-03 14:53:40 +00:00
|
|
|
rt2x00leds_resume(rt2x00dev);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
2008-01-06 22:40:07 +00:00
|
|
|
/*
|
|
|
|
* We are ready again to receive requests from mac80211.
|
|
|
|
*/
|
2008-08-29 19:04:26 +00:00
|
|
|
set_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags);
|
2008-01-06 22:40:07 +00:00
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00lib_resume);
|
|
|
|
#endif /* CONFIG_PM */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* rt2x00lib module information.
|
|
|
|
*/
|
|
|
|
MODULE_AUTHOR(DRV_PROJECT);
|
|
|
|
MODULE_VERSION(DRV_VERSION);
|
|
|
|
MODULE_DESCRIPTION("rt2x00 library");
|
|
|
|
MODULE_LICENSE("GPL");
|