Difference between revisions of "Madwifi"

From ThinkWiki
Jump to: navigation, search
(Multiband Atheros Driver for WiFi)
 
(58 intermediate revisions by 20 users not shown)
Line 1: Line 1:
== Multiband Atheros Driver for WiFi ==
+
'''Madwifi''' (Multiband Atheros Driver for Wifi) is Linux driver for 802.11a/b/g universal NIC cards - Cardbus, PCI, or miniPCI - using Atheros chip sets.
Linux driver for 802.11a/b/g universal NIC cards - Cardbus, PCI, or miniPCI - using Atheros chip sets.
 
  
The following adapters sold by IBM use the Atheros chips:
+
The following (incomplete) list of adapters sold by IBM use the Atheros chips:
 
* [[IBM Dual-Band 11a/b Wi-Fi Wireless Mini PCI Adapter]]
 
* [[IBM Dual-Band 11a/b Wi-Fi Wireless Mini PCI Adapter]]
 
* [[IBM 11b/g Wireless LAN Mini PCI Adapter]]
 
* [[IBM 11b/g Wireless LAN Mini PCI Adapter]]
Line 11: Line 10:
 
* IBM 11 a/b/g Wireless Cardbus Adapter
 
* IBM 11 a/b/g Wireless Cardbus Adapter
  
=== Project Homepage ===
+
* (11a/b/g/n) Atheros Communications, Inc. Unknown device 0024 (rev 01) (using SVN revision 2360+)
http://sourceforge.net/projects/madwifi
 
  
=== Packages ===
+
== Packages ==
*daily cvs snapshots: http://madwifi.otaku42.de
+
*Official {{Debian}} packages in the [http://packages.debian.org/src:madwifi non-free section]. See also the [http://alioth.debian.org/projects/pkg-madwifi/ Alioth project page] and the [http://madwifi-project.org/wiki/UserDocs/Distro/Debian Madwifi wiki].
*{{Debian}} Packages: http://www.marlow.dk/site.php/tech/madwifi
+
*{{Debian}} Packages: http://www.marlow.dk/madwifi
*{{Debian}} Packages: http://www.users.tpg.com.au/sigm/misc/madwiki.txt
+
*{{Debian}} Packages: http://www.users.tpg.com.au/sigm/debian/pkg-madwifi/
 
*{{Fedora}} Packages(1): http://rpm.livna.org
 
*{{Fedora}} Packages(1): http://rpm.livna.org
 
*{{Fedora}} Packages(2): http://www.atrpms.net/name/madwifi/
 
*{{Fedora}} Packages(2): http://www.atrpms.net/name/madwifi/
 +
*{{Gentoo}} ebuild: {{cmduser|emerge net-wireless/madwifi-driver net-wireless/madwifi-tools}}
 +
*{{SUSE}} Packages http://madwifi-project.org/wiki/UserDocs/Distro/SuSE
 +
*{{Ubuntu}} Package: {{cmduser|sudo apt-get install linux-restricted-modules-`uname -r`}}
 +
*[http://madwifi-project.org/wiki/UserDocs/GettingMadwifi MadWifi packages and source] for these and other distributions
  
=== CVS ===
+
== Source ==
:{{cmduser|cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/madwifi co madwifi}}
+
Detailed instructions can be found [http://madwifi-project.org/wiki/UserDocs/GettingMadwifi on the MadWiFi Wiki].
  
=== Installation ===
+
* [http://snapshots.madwifi-project.org/ Daily Snapshots]
 +
* checkout from svn:
 +
:{{cmduser|svn checkout svn.madwifi-project.org/madwifi/trunk madwifi}}
 +
 
 +
== Installation ==
  
 
*Make sure that you've got sysctl support and the net/radio enabled (wireless extensions) in your kernel. Install the driver with make & make install
 
*Make sure that you've got sysctl support and the net/radio enabled (wireless extensions) in your kernel. Install the driver with make & make install
Line 32: Line 38:
 
Setting up [[wpa_supplicant]] with wpa-psk.
 
Setting up [[wpa_supplicant]] with wpa-psk.
  
=== Status ===
+
You can enable the wireless LAN status LED on your Thinkpad by following [http://madwifi-project.org/wiki/UserDocs/EnableLEDs these instructions] (tested on Thinkpad x60s).
in development, usable
+
 
 +
== Status ==
 +
Release 0.9.4[http://madwifi-project.org/wiki/Releases/0.9.4] available
 +
 
 +
Release notes
 +
    * fixes compilation for recently released kernel 2.6.24
 +
    * introduces Minstrel rate control algorithm
 +
    * introduces switch to turn ANI (Ambience Noise Immunity) off, which can help to improve performance (see also #705)
 +
    * several bug fixes to improve stability
 +
    * now defaults to radiotap headers in monitor mode
 +
    * adds support for variable number of VAPs, tunable via module parameter
 +
 
 +
== Free Software HAL ==
 +
The old madwifi driver consisted of a BSD/GPL wrapper with an unmodifiable HAL (Hardware Abstraction Layer). This HAL was not binary firmware as with the Intel wireless chips, but a piece of code that needed to run in the Linux kernel.  It consisted of header files for which no permission to modify was granted, and pre-compiled object files.
 +
The vendor's position was that the Linux community simply needs to accept this sourceless HAL, since in principle
 +
the Atheros chip could be tuned to any frequency, and thus produce RF interference with systems operating in those frequencies.
 +
 
 +
This binary HAL was unacceptable to the Linux kernel developers, and the Atheros driver in this state would never have become a part of the official kernel. Some OpenBSD developers, facing the same issue, clean-room reverse-engineered the binary HAL and had produced an open source driver ([[ath5k]]), which was subsequently picked up by the madwifi team as the future direction. At the same time the old madwifi driver was labeled 'legacy' to reinforce this point.
 +
 
 +
In the meantime the ath5k driver has been merged into the linux kernel, and Atheros has come around and hired a linux kernel developer, released a second driver (ath9k) for newer wireless chips and has taken over maintenance of the ath5k driver.
  
=== OpenSource HAL ===
+
As of the latest distributions (Ubuntu 8.10 and Fedora 10) the atk5k driver is still flaky, but those problems seem to be resolved with the latest mainline kernel (2.6.29).
The "official" driver consists of an opensource wrapper with binary HAL (Hardware Abstraction Layer). This HAL is not a binary firmware like with the Intel Wireless chips, but a piece of code that needs to runs in the Linux kernel.
 
The vendors reasoning behind this is, that since the Atheros chip could be tuned to any frequency, and hence interfere with systems operating in those frequencies, that we simply need to accept this binary module.<br>
 
Obviously this binary HAL is unacceptable to the Linux kernel developers, and the Atheros driver in this state will never become part of the official kernel.<br>
 
Some OpenBSD developers facing the same issue, reverse engineered the binary HAL and have produced an OpenSource version. Hopefully a driver based on this might be included with the Linux kernel at some point in time, and picked up by the mainstream distributions.
 
  
=== Related links ===  
+
{{NOTE|Atheros-Chip AR5211 still needs the MadWifi driver in Kernels >=2.6.29. Get the sources [[http://dimitar.me/wp-content/uploads/2009/10/madwifi-trunk-r4099-20090929.tar.gz here]] and build them (you will need your linux headers)}}
* [http://madwifi.sourceforge.net/dokuwiki/doku.php MadWiFi Wiki]
+
 
* [http://team.vantronix.net/ar5k/ OpenSource Atheros HAL]
+
== Problems on Fedora 9 ==
 +
When installing madwifi 0.9.4 on my new machine (from source), ath_pci would load fine, apparently, but I could only see the wlan0 interface via iwconfig, and no attempt to create an ath0 interface or start it (via ifconfig) would work.  I finally found the problem ([http://forums.fedoraforum.org/forum/showthread.php?p=990516 described in this email trail]) which indicates the new ath5k module is the problem. 
 +
 
 +
As directed, I fixed it by editing '''/etc/modprobe.d''' and creating a file called '''madwifi''' with the following in it:
 +
<pre>
 +
alias wlan0 ath_pci
 +
blacklist ath5k
 +
</pre>
 +
Although this enables ath0, I have yet to get the wirelss to actually connect to anything.
  
[[Category:Drivers]]
 
  
  
  
 +
== External links ==
 +
* [http://madwifi-project.org/ Official website]
  
<div id="wikitikitavi" style="overflow:auto; height: 1px; ">
+
[[Category:Drivers]]
[[http://WTHP1.coolhost.biz] [WTHPD1]]
 
[http://WTHP2.coolhost.biz  WTHPD2]
 
[[http://WTHP3.coolhost.biz | WTHPD3]]
 
[http://WTHP4.coolhost.biz | WTHPD4]
 
[WTHPD5 | http://WTHP5.coolhost.biz]
 
[[http://WTHP6.coolhost.biz WTHPD6]]
 
</div>
 

Latest revision as of 09:15, 18 November 2009

Madwifi (Multiband Atheros Driver for Wifi) is Linux driver for 802.11a/b/g universal NIC cards - Cardbus, PCI, or miniPCI - using Atheros chip sets.

The following (incomplete) list of adapters sold by IBM use the Atheros chips:

  • (11a/b/g/n) Atheros Communications, Inc. Unknown device 0024 (rev 01) (using SVN revision 2360+)

Packages

Source

Detailed instructions can be found on the MadWiFi Wiki.

$ svn checkout svn.madwifi-project.org/madwifi/trunk madwifi

Installation

  • Make sure that you've got sysctl support and the net/radio enabled (wireless extensions) in your kernel. Install the driver with make & make install
  • further more you like to install the wireless tools from wireless tools. Make sure the versions fit together by
$ iwconfig --version

Setting up wpa_supplicant with wpa-psk.

You can enable the wireless LAN status LED on your Thinkpad by following these instructions (tested on Thinkpad x60s).

Status

Release 0.9.4[1] available

Release notes

   * fixes compilation for recently released kernel 2.6.24
   * introduces Minstrel rate control algorithm
   * introduces switch to turn ANI (Ambience Noise Immunity) off, which can help to improve performance (see also #705)
   * several bug fixes to improve stability
   * now defaults to radiotap headers in monitor mode
   * adds support for variable number of VAPs, tunable via module parameter

Free Software HAL

The old madwifi driver consisted of a BSD/GPL wrapper with an unmodifiable HAL (Hardware Abstraction Layer). This HAL was not binary firmware as with the Intel wireless chips, but a piece of code that needed to run in the Linux kernel. It consisted of header files for which no permission to modify was granted, and pre-compiled object files. The vendor's position was that the Linux community simply needs to accept this sourceless HAL, since in principle the Atheros chip could be tuned to any frequency, and thus produce RF interference with systems operating in those frequencies.

This binary HAL was unacceptable to the Linux kernel developers, and the Atheros driver in this state would never have become a part of the official kernel. Some OpenBSD developers, facing the same issue, clean-room reverse-engineered the binary HAL and had produced an open source driver (ath5k), which was subsequently picked up by the madwifi team as the future direction. At the same time the old madwifi driver was labeled 'legacy' to reinforce this point.

In the meantime the ath5k driver has been merged into the linux kernel, and Atheros has come around and hired a linux kernel developer, released a second driver (ath9k) for newer wireless chips and has taken over maintenance of the ath5k driver.

As of the latest distributions (Ubuntu 8.10 and Fedora 10) the atk5k driver is still flaky, but those problems seem to be resolved with the latest mainline kernel (2.6.29).

NOTE!
{{{1}}}

Problems on Fedora 9

When installing madwifi 0.9.4 on my new machine (from source), ath_pci would load fine, apparently, but I could only see the wlan0 interface via iwconfig, and no attempt to create an ath0 interface or start it (via ifconfig) would work. I finally found the problem (described in this email trail) which indicates the new ath5k module is the problem.

As directed, I fixed it by editing /etc/modprobe.d and creating a file called madwifi with the following in it:

alias wlan0 ath_pci
blacklist ath5k

Although this enables ath0, I have yet to get the wirelss to actually connect to anything.



External links