2007-09-26 00:57:13 +00:00
|
|
|
/*
|
2010-08-06 18:45:38 +00:00
|
|
|
Copyright (C) 2010 Willow Garage <http://www.willowgarage.com>
|
|
|
|
Copyright (C) 2004 - 2010 Ivo van Doorn <IvDoorn@gmail.com>
|
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 cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2007-09-26 00:57:13 +00:00
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
/*
|
2010-12-13 11:35:17 +00:00
|
|
|
* Enable queues.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2010-12-13 11:35:17 +00:00
|
|
|
rt2x00queue_start_queues(rt2x00dev);
|
2010-11-06 14:48:43 +00:00
|
|
|
rt2x00link_start_tuner(rt2x00dev);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
2010-07-11 10:25:46 +00:00
|
|
|
/*
|
|
|
|
* Start watchdog monitoring.
|
|
|
|
*/
|
|
|
|
rt2x00link_start_watchdog(rt2x00dev);
|
|
|
|
|
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;
|
|
|
|
|
2010-07-11 10:25:46 +00:00
|
|
|
/*
|
|
|
|
* Stop watchdog monitoring.
|
|
|
|
*/
|
|
|
|
rt2x00link_stop_watchdog(rt2x00dev);
|
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
/*
|
2010-12-13 11:35:17 +00:00
|
|
|
* Stop all queues
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2010-11-06 14:48:43 +00:00
|
|
|
rt2x00link_stop_tuner(rt2x00dev);
|
2010-12-13 11:35:17 +00:00
|
|
|
rt2x00queue_stop_queues(rt2x00dev);
|
2010-12-13 11:35:40 +00:00
|
|
|
rt2x00queue_flush_queues(rt2x00dev, true);
|
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
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
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;
|
|
|
|
|
2010-12-27 14:06:57 +00:00
|
|
|
if (test_and_clear_bit(DELAYED_UPDATE_BEACON, &intf->delayed_flags))
|
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
|
|
|
}
|
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.
|
|
|
|
*/
|
2010-07-11 10:27:58 +00:00
|
|
|
static void rt2x00lib_bc_buffer_iter(void *data, u8 *mac,
|
|
|
|
struct ieee80211_vif *vif)
|
|
|
|
{
|
|
|
|
struct rt2x00_dev *rt2x00dev = data;
|
|
|
|
struct sk_buff *skb;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Only AP mode interfaces do broad- and multicast buffering
|
|
|
|
*/
|
|
|
|
if (vif->type != NL80211_IFTYPE_AP)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Send out buffered broad- and multicast frames
|
|
|
|
*/
|
|
|
|
skb = ieee80211_get_buffered_bc(rt2x00dev->hw, vif);
|
|
|
|
while (skb) {
|
|
|
|
rt2x00mac_tx(rt2x00dev->hw, skb);
|
|
|
|
skb = ieee80211_get_buffered_bc(rt2x00dev->hw, vif);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-11 10:28:23 +00:00
|
|
|
static void rt2x00lib_beaconupdate_iter(void *data, u8 *mac,
|
|
|
|
struct ieee80211_vif *vif)
|
2007-09-26 00:57:13 +00:00
|
|
|
{
|
2010-07-11 10:27:26 +00:00
|
|
|
struct rt2x00_dev *rt2x00dev = data;
|
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;
|
|
|
|
|
2010-07-11 10:27:26 +00:00
|
|
|
rt2x00queue_update_beacon(rt2x00dev, vif, true);
|
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;
|
|
|
|
|
2010-07-11 10:27:58 +00:00
|
|
|
/* send buffered bc/mc frames out for every bssid */
|
2010-07-11 10:27:26 +00:00
|
|
|
ieee80211_iterate_active_interfaces(rt2x00dev->hw,
|
2010-07-11 10:27:58 +00:00
|
|
|
rt2x00lib_bc_buffer_iter,
|
|
|
|
rt2x00dev);
|
2010-07-11 10:28:23 +00:00
|
|
|
/*
|
|
|
|
* Devices with pre tbtt interrupt don't need to update the beacon
|
|
|
|
* here as they will fetch the next beacon directly prior to
|
|
|
|
* transmission.
|
|
|
|
*/
|
|
|
|
if (test_bit(DRIVER_SUPPORT_PRE_TBTT_INTERRUPT, &rt2x00dev->flags))
|
|
|
|
return;
|
2010-07-11 10:27:58 +00:00
|
|
|
|
|
|
|
/* fetch next beacon */
|
|
|
|
ieee80211_iterate_active_interfaces(rt2x00dev->hw,
|
2010-07-11 10:28:23 +00:00
|
|
|
rt2x00lib_beaconupdate_iter,
|
2010-07-11 10:27:58 +00:00
|
|
|
rt2x00dev);
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00lib_beacondone);
|
|
|
|
|
2010-07-11 10:28:23 +00:00
|
|
|
void rt2x00lib_pretbtt(struct rt2x00_dev *rt2x00dev)
|
|
|
|
{
|
|
|
|
if (!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* fetch next beacon */
|
|
|
|
ieee80211_iterate_active_interfaces(rt2x00dev->hw,
|
|
|
|
rt2x00lib_beaconupdate_iter,
|
|
|
|
rt2x00dev);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00lib_pretbtt);
|
|
|
|
|
2010-12-13 11:36:00 +00:00
|
|
|
void rt2x00lib_dmastart(struct queue_entry *entry)
|
|
|
|
{
|
|
|
|
set_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
|
|
|
|
rt2x00queue_index_inc(entry->queue, Q_INDEX);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00lib_dmastart);
|
|
|
|
|
2010-08-30 19:15:19 +00:00
|
|
|
void rt2x00lib_dmadone(struct queue_entry *entry)
|
|
|
|
{
|
2010-12-13 11:36:18 +00:00
|
|
|
set_bit(ENTRY_DATA_STATUS_PENDING, &entry->flags);
|
2010-10-11 13:39:48 +00:00
|
|
|
clear_bit(ENTRY_OWNER_DEVICE_DATA, &entry->flags);
|
2010-08-30 19:15:19 +00:00
|
|
|
rt2x00queue_index_inc(entry->queue, Q_INDEX_DMA_DONE);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00lib_dmadone);
|
|
|
|
|
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);
|
2010-11-13 18:12:54 +00:00
|
|
|
unsigned int header_length, i;
|
2009-08-17 16:56:10 +00:00
|
|
|
u8 rate_idx, rate_flags, retry_rates;
|
2009-11-19 00:08:30 +00:00
|
|
|
u8 skbdesc_flags = skbdesc->flags;
|
2009-08-29 17:10:14 +00:00
|
|
|
bool success;
|
2008-06-16 17:56:54 +00:00
|
|
|
|
2010-06-29 19:41:40 +00:00
|
|
|
/*
|
|
|
|
* Unmap the skb.
|
|
|
|
*/
|
2010-10-11 13:37:25 +00:00
|
|
|
rt2x00queue_unmap_skb(entry);
|
2010-06-29 19:41:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove the extra tx headroom from the skb.
|
|
|
|
*/
|
|
|
|
skb_pull(entry->skb, rt2x00dev->ops->extra_tx_headroom);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Signal that the TX descriptor is no longer in the skb.
|
|
|
|
*/
|
|
|
|
skbdesc->flags &= ~SKBDESC_DESC_IN_SKB;
|
|
|
|
|
2010-11-13 18:12:54 +00:00
|
|
|
/*
|
|
|
|
* Determine the length of 802.11 header.
|
|
|
|
*/
|
|
|
|
header_length = ieee80211_get_hdrlen_from_skb(entry->skb);
|
|
|
|
|
2009-04-26 14:08:50 +00:00
|
|
|
/*
|
|
|
|
* Remove L2 padding which was added during
|
|
|
|
*/
|
|
|
|
if (test_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags))
|
2009-08-29 18:30:45 +00:00
|
|
|
rt2x00queue_remove_l2pad(entry->skb, header_length);
|
2009-04-26 14:08:50 +00:00
|
|
|
|
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
|
2010-05-18 11:44:54 +00:00
|
|
|
* mac80211 will expect the same data to be present it the
|
2008-08-04 14:37:44 +00:00
|
|
|
* 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
|
|
|
|
|
|
|
/*
|
2009-08-29 17:10:14 +00:00
|
|
|
* Determine if the frame has been successfully transmitted.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2009-08-29 17:10:14 +00:00
|
|
|
success =
|
2009-05-19 15:52:56 +00:00
|
|
|
test_bit(TXDONE_SUCCESS, &txdesc->flags) ||
|
2010-06-14 20:09:09 +00:00
|
|
|
test_bit(TXDONE_UNKNOWN, &txdesc->flags);
|
2009-08-29 17:10:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Update TX statistics.
|
|
|
|
*/
|
|
|
|
rt2x00dev->link.qual.tx_success += success;
|
|
|
|
rt2x00dev->link.qual.tx_failed += !success;
|
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;
|
2009-08-17 16:56:10 +00:00
|
|
|
retry_rates = test_bit(TXDONE_FALLBACK, &txdesc->flags) ?
|
|
|
|
(txdesc->retry + 1) : 1;
|
2008-10-21 10:40:02 +00:00
|
|
|
|
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;
|
2009-08-17 16:56:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Frame was send with retries, hardware tried
|
|
|
|
* different rates to send out the frame, at each
|
2010-06-14 20:12:26 +00:00
|
|
|
* retry it lowered the rate 1 step except when the
|
|
|
|
* lowest rate was used.
|
2009-08-17 16:56:10 +00:00
|
|
|
*/
|
|
|
|
for (i = 0; i < retry_rates && i < IEEE80211_TX_MAX_RATES; i++) {
|
|
|
|
tx_info->status.rates[i].idx = rate_idx - i;
|
|
|
|
tx_info->status.rates[i].flags = rate_flags;
|
2010-06-14 20:12:26 +00:00
|
|
|
|
|
|
|
if (rate_idx - i == 0) {
|
|
|
|
/*
|
|
|
|
* The lowest rate (index 0) was used until the
|
|
|
|
* number of max retries was reached.
|
|
|
|
*/
|
|
|
|
tx_info->status.rates[i].count = retry_rates - i;
|
|
|
|
i++;
|
|
|
|
break;
|
|
|
|
}
|
2009-08-17 16:56:10 +00:00
|
|
|
tx_info->status.rates[i].count = 1;
|
|
|
|
}
|
2009-08-29 17:10:14 +00:00
|
|
|
if (i < (IEEE80211_TX_MAX_RATES - 1))
|
2009-08-17 16:56:10 +00:00
|
|
|
tx_info->status.rates[i].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-08-29 17:10:14 +00:00
|
|
|
if (success)
|
2008-05-15 10:55:29 +00:00
|
|
|
tx_info->flags |= IEEE80211_TX_STAT_ACK;
|
2009-08-29 17:10:14 +00:00
|
|
|
else
|
2008-02-05 21:42:23 +00:00
|
|
|
rt2x00dev->low_level_stats.dot11ACKFailureCount++;
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
2010-06-29 19:38:12 +00:00
|
|
|
/*
|
|
|
|
* Every single frame has it's own tx status, hence report
|
|
|
|
* every frame as ampdu of size 1.
|
|
|
|
*
|
|
|
|
* TODO: if we can find out how many frames were aggregated
|
|
|
|
* by the hw we could provide the real ampdu_len to mac80211
|
|
|
|
* which would allow the rc algorithm to better decide on
|
|
|
|
* which rates are suitable.
|
|
|
|
*/
|
|
|
|
if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) {
|
|
|
|
tx_info->flags |= IEEE80211_TX_STAT_AMPDU;
|
|
|
|
tx_info->status.ampdu_len = 1;
|
|
|
|
tx_info->status.ampdu_ack_len = success ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
2008-10-21 10:40:02 +00:00
|
|
|
if (rate_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
|
2009-08-29 17:10:14 +00:00
|
|
|
if (success)
|
2008-02-05 21:42:23 +00:00
|
|
|
rt2x00dev->low_level_stats.dot11RTSSuccessCount++;
|
2009-08-29 17:10:14 +00:00
|
|
|
else
|
2008-02-05 21:42:23 +00:00
|
|
|
rt2x00dev->low_level_stats.dot11RTSFailureCount++;
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-11-19 00:08:30 +00:00
|
|
|
* Only send the status report to mac80211 when it's a frame
|
|
|
|
* that originated in mac80211. 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
|
|
|
*/
|
2010-11-30 15:49:23 +00:00
|
|
|
if (!(skbdesc_flags & SKBDESC_NOT_MAC80211)) {
|
|
|
|
if (test_bit(DRIVER_REQUIRE_TASKLET_CONTEXT, &rt2x00dev->flags))
|
|
|
|
ieee80211_tx_status(rt2x00dev->hw, entry->skb);
|
|
|
|
else
|
|
|
|
ieee80211_tx_status_ni(rt2x00dev->hw, entry->skb);
|
|
|
|
} else
|
2010-07-11 10:26:48 +00:00
|
|
|
dev_kfree_skb_any(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
|
|
|
|
|
|
|
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))
|
2010-12-13 11:35:17 +00:00
|
|
|
rt2x00queue_unpause_queue(entry->queue);
|
2007-09-26 00:57:13 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00lib_txdone);
|
2010-08-06 18:46:53 +00:00
|
|
|
|
|
|
|
void rt2x00lib_txdone_noinfo(struct queue_entry *entry, u32 status)
|
|
|
|
{
|
|
|
|
struct txdone_entry_desc txdesc;
|
|
|
|
|
|
|
|
txdesc.flags = 0;
|
|
|
|
__set_bit(status, &txdesc.flags);
|
|
|
|
txdesc.retry = 0;
|
|
|
|
|
|
|
|
rt2x00lib_txdone(entry, &txdesc);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(rt2x00lib_txdone_noinfo);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
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;
|
2010-10-11 13:38:07 +00:00
|
|
|
int signal = rxdesc->signal;
|
|
|
|
int type = (rxdesc->dev_flags & RXDONE_SIGNAL_MASK);
|
|
|
|
|
|
|
|
switch (rxdesc->rate_mode) {
|
|
|
|
case RATE_MODE_CCK:
|
|
|
|
case RATE_MODE_OFDM:
|
|
|
|
/*
|
|
|
|
* 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, signal);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2009-04-26 14:09:32 +00:00
|
|
|
}
|
2010-10-11 13:38:07 +00:00
|
|
|
break;
|
|
|
|
case RATE_MODE_HT_MIX:
|
|
|
|
case RATE_MODE_HT_GREENFIELD:
|
|
|
|
if (signal >= 0 && signal <= 76)
|
|
|
|
return signal;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2009-04-26 14:09:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WARNING(rt2x00dev, "Frame received with unrecognized signal, "
|
2010-10-11 13:38:07 +00:00
|
|
|
"mode=0x%.4x, signal=0x%.4x, type=%d.\n",
|
|
|
|
rxdesc->rate_mode, signal, type);
|
2009-04-26 14:09:32 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-10-11 13:37:25 +00:00
|
|
|
void rt2x00lib_rxdone(struct queue_entry *entry)
|
2007-09-26 00:57:13 +00:00
|
|
|
{
|
2010-10-11 13:37:25 +00:00
|
|
|
struct rt2x00_dev *rt2x00dev = entry->queue->rt2x00dev;
|
2008-06-16 17:56:31 +00:00
|
|
|
struct rxdone_entry_desc rxdesc;
|
|
|
|
struct sk_buff *skb;
|
2010-08-06 18:49:27 +00:00
|
|
|
struct ieee80211_rx_status *rx_status;
|
2008-08-04 14:37:44 +00:00
|
|
|
unsigned int header_length;
|
2009-04-26 14:09:32 +00:00
|
|
|
int rate_idx;
|
2010-08-06 18:45:38 +00:00
|
|
|
|
2010-11-04 19:41:05 +00:00
|
|
|
if (!test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags) ||
|
|
|
|
!test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
|
|
|
|
goto submit_entry;
|
|
|
|
|
2010-08-06 18:45:38 +00:00
|
|
|
if (test_bit(ENTRY_DATA_IO_FAILED, &entry->flags))
|
|
|
|
goto submit_entry;
|
|
|
|
|
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.
|
|
|
|
*/
|
2010-10-11 13:37:25 +00:00
|
|
|
skb = rt2x00queue_alloc_rxskb(entry);
|
2008-06-16 17:56:31 +00:00
|
|
|
if (!skb)
|
2010-10-11 13:38:26 +00:00
|
|
|
goto submit_entry;
|
2008-06-16 17:56:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Unmap the skb.
|
|
|
|
*/
|
2010-10-11 13:37:25 +00:00
|
|
|
rt2x00queue_unmap_skb(entry);
|
2008-06-16 17:56:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Extract the RXD details.
|
|
|
|
*/
|
|
|
|
memset(&rxdesc, 0, sizeof(rxdesc));
|
|
|
|
rt2x00dev->ops->lib->fill_rxdone(entry, &rxdesc);
|
2007-09-26 00:57:13 +00:00
|
|
|
|
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);
|
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
|
tree-wide: Assorted spelling fixes
In particular, several occurances of funny versions of 'success',
'unknown', 'therefore', 'acknowledge', 'argument', 'achieve', 'address',
'beginning', 'desirable', 'separate' and 'necessary' are fixed.
Signed-off-by: Daniel Mack <daniel@caiaq.de>
Cc: Joe Perches <joe@perches.com>
Cc: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2010-02-03 00:01:28 +00:00
|
|
|
* provided separately (through hardware descriptor)
|
2008-08-04 14:37:44 +00:00
|
|
|
* 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))
|
2009-08-29 18:30:45 +00:00
|
|
|
rt2x00crypto_rx_insert_iv(entry->skb, header_length,
|
2009-04-26 14:08:50 +00:00
|
|
|
&rxdesc);
|
2009-12-04 22:47:04 +00:00
|
|
|
else if (header_length &&
|
|
|
|
(rxdesc.size > header_length) &&
|
|
|
|
(rxdesc.dev_flags & RXDONE_L2PAD))
|
2009-08-29 18:30:45 +00:00
|
|
|
rt2x00queue_remove_l2pad(entry->skb, header_length);
|
2009-04-26 14:08:50 +00:00
|
|
|
else
|
2009-08-29 18:30:45 +00:00
|
|
|
rt2x00queue_align_payload(entry->skb, header_length);
|
2008-06-06 20:54:12 +00:00
|
|
|
|
2009-12-04 22:47:00 +00:00
|
|
|
/* Trim buffer to correct size */
|
|
|
|
skb_trim(entry->skb, rxdesc.size);
|
|
|
|
|
2007-09-26 00:57:13 +00:00
|
|
|
/*
|
2010-10-11 13:38:07 +00:00
|
|
|
* Translate the signal to the correct bitrate index.
|
2007-09-26 00:57:13 +00:00
|
|
|
*/
|
2010-10-11 13:38:07 +00:00
|
|
|
rate_idx = rt2x00lib_rxdone_read_signal(rt2x00dev, &rxdesc);
|
|
|
|
if (rxdesc.rate_mode == RATE_MODE_HT_MIX ||
|
|
|
|
rxdesc.rate_mode == RATE_MODE_HT_GREENFIELD)
|
2009-04-26 14:09:32 +00:00
|
|
|
rxdesc.flags |= RX_FLAG_HT;
|
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);
|
2010-08-06 18:49:27 +00:00
|
|
|
rt2x00debug_dump_frame(rt2x00dev, DUMP_FRAME_RXDONE, entry->skb);
|
2007-10-13 14:26:36 +00:00
|
|
|
|
2010-08-06 18:49:27 +00:00
|
|
|
/*
|
|
|
|
* Initialize RX status information, and send frame
|
|
|
|
* to mac80211.
|
|
|
|
*/
|
|
|
|
rx_status = IEEE80211_SKB_RXCB(entry->skb);
|
2008-07-04 14:14:59 +00:00
|
|
|
rx_status->mactime = rxdesc.timestamp;
|
2010-08-06 18:49:27 +00:00
|
|
|
rx_status->band = rt2x00dev->curr_band;
|
|
|
|
rx_status->freq = rt2x00dev->curr_freq;
|
2009-04-26 14:09:32 +00:00
|
|
|
rx_status->rate_idx = rate_idx;
|
2008-06-16 17:56:31 +00:00
|
|
|
rx_status->signal = rxdesc.rssi;
|
|
|
|
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
|
|
|
|
2010-08-06 18:45:38 +00:00
|
|
|
ieee80211_rx_ni(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
|
|
|
|
2010-08-06 18:45:38 +00:00
|
|
|
submit_entry:
|
2010-11-04 19:41:05 +00:00
|
|
|
entry->flags = 0;
|
2010-08-06 18:45:38 +00:00
|
|
|
rt2x00queue_index_inc(entry->queue, Q_INDEX_DONE);
|
2010-11-04 19:41:05 +00:00
|
|
|
if (test_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags) &&
|
2010-12-13 11:36:00 +00:00
|
|
|
test_bit(DEVICE_STATE_ENABLED_RADIO, &rt2x00dev->flags))
|
2010-11-04 19:41:05 +00:00
|
|
|
rt2x00dev->ops->lib->clear_entry(entry);
|
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)
|
|
|
|
{
|
2011-01-17 04:37:28 +00:00
|
|
|
/* XXX: this assumption about the band is wrong for 802.11j */
|
|
|
|
entry->band = channel <= 14 ? IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
|
|
|
|
entry->center_freq = ieee80211_channel_to_frequency(channel,
|
|
|
|
entry->band);
|
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;
|
2010-11-06 14:46:36 +00:00
|
|
|
entry->hw_value = index;
|
2009-01-04 16:33:25 +00:00
|
|
|
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,
|
2010-08-23 17:56:07 +00:00
|
|
|
spec->channels_info[i].max_power, 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;
|
|
|
|
|
2009-11-23 21:44:52 +00:00
|
|
|
/*
|
|
|
|
* Initialize extra TX headroom required.
|
|
|
|
*/
|
2009-12-30 10:36:30 +00:00
|
|
|
rt2x00dev->hw->extra_tx_headroom =
|
|
|
|
max_t(unsigned int, IEEE80211_TX_STATUS_HEADROOM,
|
|
|
|
rt2x00dev->ops->extra_tx_headroom);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Take TX headroom required for alignment into account.
|
|
|
|
*/
|
|
|
|
if (test_bit(DRIVER_REQUIRE_L2PAD, &rt2x00dev->flags))
|
|
|
|
rt2x00dev->hw->extra_tx_headroom += RT2X00_L2PAD_SIZE;
|
|
|
|
else if (test_bit(DRIVER_REQUIRE_DMA, &rt2x00dev->flags))
|
|
|
|
rt2x00dev->hw->extra_tx_headroom += RT2X00_ALIGN_SIZE;
|
2009-11-23 21:44:52 +00:00
|
|
|
|
2010-10-02 09:27:35 +00:00
|
|
|
/*
|
|
|
|
* Allocate tx status FIFO for driver use.
|
|
|
|
*/
|
2010-12-27 14:04:54 +00:00
|
|
|
if (test_bit(DRIVER_REQUIRE_TXSTATUS_FIFO, &rt2x00dev->flags)) {
|
2010-10-02 09:27:35 +00:00
|
|
|
/*
|
|
|
|
* Allocate txstatus fifo and tasklet, we use a size of 512
|
|
|
|
* for the kfifo which is big enough to store 512/4=128 tx
|
|
|
|
* status reports. In the worst case (tx status for all tx
|
|
|
|
* queues gets reported before we've got a chance to handle
|
|
|
|
* them) 24*4=384 tx status reports need to be cached.
|
|
|
|
*/
|
|
|
|
status = kfifo_alloc(&rt2x00dev->txstatus_fifo, 512,
|
|
|
|
GFP_KERNEL);
|
|
|
|
if (status)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
/* tasklet for processing the tx status reports. */
|
2010-12-27 14:04:54 +00:00
|
|
|
if (rt2x00dev->ops->lib->txstatus_tasklet)
|
|
|
|
tasklet_init(&rt2x00dev->txstatus_tasklet,
|
|
|
|
rt2x00dev->ops->lib->txstatus_tasklet,
|
|
|
|
(unsigned long)rt2x00dev);
|
2010-10-02 09:27:35 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
2009-08-08 21:53:04 +00:00
|
|
|
/* Enable the radio */
|
|
|
|
retval = rt2x00lib_enable_radio(rt2x00dev);
|
2010-10-02 09:34:05 +00:00
|
|
|
if (retval)
|
2009-08-08 21:53:04 +00:00
|
|
|
return retval;
|
|
|
|
|
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);
|
|
|
|
|
2009-11-05 19:22:03 +00:00
|
|
|
set_bit(DEVICE_STATE_PRESENT, &rt2x00dev->flags);
|
|
|
|
|
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
|
|
|
|
2010-07-16 16:50:10 +00:00
|
|
|
/*
|
|
|
|
* Initialize configuration work.
|
|
|
|
*/
|
|
|
|
INIT_WORK(&rt2x00dev->intf_work, rt2x00lib_intf_scheduled);
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
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);
|
|
|
|
|
|
|
|
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->intf_work);
|
2010-08-06 18:45:38 +00:00
|
|
|
cancel_work_sync(&rt2x00dev->rxdone_work);
|
|
|
|
cancel_work_sync(&rt2x00dev->txdone_work);
|
2009-08-02 18:30:15 +00:00
|
|
|
|
2010-10-02 09:27:35 +00:00
|
|
|
/*
|
|
|
|
* Free the tx status fifo.
|
|
|
|
*/
|
|
|
|
kfifo_free(&rt2x00dev->txstatus_fifo);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Kill the tx status tasklet.
|
|
|
|
*/
|
|
|
|
tasklet_kill(&rt2x00dev->txstatus_tasklet);
|
|
|
|
|
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");
|