- Import driver[acx(4)] for TI acx100/acx111 based WiFi NIC.
authorSepherosa Ziehau <sephe@dragonflybsd.org>
Sat, 1 Apr 2006 02:55:36 +0000 (02:55 +0000)
committerSepherosa Ziehau <sephe@dragonflybsd.org>
Sat, 1 Apr 2006 02:55:36 +0000 (02:55 +0000)
commit287603a80b9d25707aea6be56971786807b6787c
tree4b77852aeed757419c946a05bf98942cce22cce7
parentd305282701b65d4dbdbb25df4f89f8f3bd5f1b3d
- Import driver[acx(4)] for TI acx100/acx111 based WiFi NIC.
- Import user space utility[acxcontrol(8)] to load firmware and show driver
  statistics.
- Add acx(4) and acxcontrol(8) man pages.
- Build acx(4) as module only, since it needs firmware to work.
- Add an entry for acx(4) in LINT.

This driver is known to work with following hardware:
D-Link DWL-520+
D-Link DWL-650+
D-Link DWL-G520+
D-Link DWL-G650+

Although both infrastructured mode and adhoc mode are supported, it may not
work well in adhoc mode.  PBCC based rate, 22Mbits/s, is not supported yet.

acxcontrl(8) and man pages are written by Sascha Wildner.  He also kindly
helped debugging and testing the driver.  Thank you, Sascha!

The meaning and layout of hardware registers are based on the reverse
engineering work done by people at acx100.sourceforge.net
Thank them for their great work!

This driver is initially based on acx100 developed by people at wlan.kewl.org
Thank them for their nice work.
19 files changed:
share/man/man4/Makefile
share/man/man4/acx.4 [new file with mode: 0644]
sys/conf/files
sys/config/LINT
sys/dev/netif/Makefile
sys/dev/netif/acx/Makefile [new file with mode: 0644]
sys/dev/netif/acx/_acxcmd.h [new file with mode: 0644]
sys/dev/netif/acx/acx100.c [new file with mode: 0644]
sys/dev/netif/acx/acx111.c [new file with mode: 0644]
sys/dev/netif/acx/acxcmd.c [new file with mode: 0644]
sys/dev/netif/acx/acxcmd.h [new file with mode: 0644]
sys/dev/netif/acx/if_acx.c [new file with mode: 0644]
sys/dev/netif/acx/if_acxreg.h [new file with mode: 0644]
sys/dev/netif/acx/if_acxvar.h [new file with mode: 0644]
sys/i386/conf/LINT
usr.sbin/Makefile
usr.sbin/acxcontrol/Makefile [new file with mode: 0644]
usr.sbin/acxcontrol/acxcontrol.8 [new file with mode: 0644]
usr.sbin/acxcontrol/acxcontrol.c [new file with mode: 0644]