]> git.baikalelectronics.ru Git - kernel.git/commit
Staging: add rt3090 wireless driver
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Thu, 25 Jun 2009 13:40:31 +0000 (15:40 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 15 Sep 2009 19:01:31 +0000 (12:01 -0700)
commit95b879ce86e8b551d45d506c856379bb48c6298c
tree9769ce92a4e6f1e3c54b4062ccb912e5637a503c
parent5e27683c2cf848a0e0ddf6e332efe6ac0daf50ba
Staging: add rt3090 wireless driver

This is the vendor driver for the Ralink RT3090 chipset.

It should be later cleaned and ported to use the existing rt2x00
infrastructure or just replaced by the proper version.

[ Unfortunately since it follows the same design/implementation like
  rt{286,287,307}0 drivers (already present in the staging tree)
  it is highly unlikely that it will see much love from the wireless
  development community.. ]

However since the development of the cleaner/proper version can take
significant time lets give distros (i.e. openSUSE seems to already
have the package with the original vendor driver) and users "something"
to use in the meantime.

I forward ported it to 2.6.31-rc1, ported to the Linux build system
and did some initial cleanups.  More fixes/cleanups to come later
(it seems that the driver can be made to share most of its code with
the other Ralink drivers already present in the staging tree).

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
112 files changed:
drivers/staging/Kconfig
drivers/staging/Makefile
drivers/staging/rt3090/Kconfig [new file with mode: 0644]
drivers/staging/rt3090/Makefile [new file with mode: 0644]
drivers/staging/rt3090/action.h [new file with mode: 0644]
drivers/staging/rt3090/ap.h [new file with mode: 0644]
drivers/staging/rt3090/ap_apcli.h [new file with mode: 0644]
drivers/staging/rt3090/ap_autoChSel.h [new file with mode: 0644]
drivers/staging/rt3090/ap_autoChSel_cmm.h [new file with mode: 0644]
drivers/staging/rt3090/ap_cfg.h [new file with mode: 0644]
drivers/staging/rt3090/ap_ids.h [new file with mode: 0644]
drivers/staging/rt3090/ap_mbss.h [new file with mode: 0644]
drivers/staging/rt3090/ap_uapsd.h [new file with mode: 0644]
drivers/staging/rt3090/ap_wds.h [new file with mode: 0644]
drivers/staging/rt3090/chips/rt3090.c [new file with mode: 0644]
drivers/staging/rt3090/chips/rt30xx.c [new file with mode: 0644]
drivers/staging/rt3090/chips/rt3370.c [new file with mode: 0644]
drivers/staging/rt3090/chips/rt3390.c [new file with mode: 0644]
drivers/staging/rt3090/chips/rt33xx.c [new file with mode: 0644]
drivers/staging/rt3090/chlist.h [new file with mode: 0644]
drivers/staging/rt3090/common/action.c [new file with mode: 0644]
drivers/staging/rt3090/common/ba_action.c [new file with mode: 0644]
drivers/staging/rt3090/common/cmm_aes.c [new file with mode: 0644]
drivers/staging/rt3090/common/cmm_asic.c [new file with mode: 0644]
drivers/staging/rt3090/common/cmm_cfg.c [new file with mode: 0644]
drivers/staging/rt3090/common/cmm_data.c [new file with mode: 0644]
drivers/staging/rt3090/common/cmm_data_pci.c [new file with mode: 0644]
drivers/staging/rt3090/common/cmm_info.c [new file with mode: 0644]
drivers/staging/rt3090/common/cmm_mac_pci.c [new file with mode: 0644]
drivers/staging/rt3090/common/cmm_profile.c [new file with mode: 0644]
drivers/staging/rt3090/common/cmm_sanity.c [new file with mode: 0644]
drivers/staging/rt3090/common/cmm_sync.c [new file with mode: 0644]
drivers/staging/rt3090/common/cmm_tkip.c [new file with mode: 0644]
drivers/staging/rt3090/common/cmm_wep.c [new file with mode: 0644]
drivers/staging/rt3090/common/cmm_wpa.c [new file with mode: 0644]
drivers/staging/rt3090/common/crypt_aes.c [new file with mode: 0644]
drivers/staging/rt3090/common/crypt_biginteger.c [new file with mode: 0644]
drivers/staging/rt3090/common/crypt_dh.c [new file with mode: 0644]
drivers/staging/rt3090/common/crypt_hmac.c [new file with mode: 0644]
drivers/staging/rt3090/common/crypt_md5.c [new file with mode: 0644]
drivers/staging/rt3090/common/crypt_sha2.c [new file with mode: 0644]
drivers/staging/rt3090/common/dfs.c [new file with mode: 0644]
drivers/staging/rt3090/common/ee_efuse.c [new file with mode: 0644]
drivers/staging/rt3090/common/ee_prom.c [new file with mode: 0644]
drivers/staging/rt3090/common/eeprom.c [new file with mode: 0644]
drivers/staging/rt3090/common/igmp_snoop.c [new file with mode: 0644]
drivers/staging/rt3090/common/mlme.c [new file with mode: 0644]
drivers/staging/rt3090/common/mlme_ex.c [new file with mode: 0644]
drivers/staging/rt3090/common/netif_block.c [new file with mode: 0644]
drivers/staging/rt3090/common/rt_channel.c [new file with mode: 0644]
drivers/staging/rt3090/common/rt_rf.c [new file with mode: 0644]
drivers/staging/rt3090/common/rtmp_init.c [new file with mode: 0644]
drivers/staging/rt3090/common/rtmp_mcu.c [new file with mode: 0644]
drivers/staging/rt3090/common/rtmp_timer.c [new file with mode: 0644]
drivers/staging/rt3090/common/spectrum.c [new file with mode: 0644]
drivers/staging/rt3090/config.mk [new file with mode: 0644]
drivers/staging/rt3090/crypt_hmac.h [new file with mode: 0644]
drivers/staging/rt3090/crypt_md5.h [new file with mode: 0644]
drivers/staging/rt3090/crypt_sha2.h [new file with mode: 0644]
drivers/staging/rt3090/dfs.h [new file with mode: 0644]
drivers/staging/rt3090/eeprom.h [new file with mode: 0644]
drivers/staging/rt3090/firmware.h [new file with mode: 0644]
drivers/staging/rt3090/igmp_snoop.h [new file with mode: 0644]
drivers/staging/rt3090/ipv6.h [new file with mode: 0644]
drivers/staging/rt3090/link_list.h [new file with mode: 0644]
drivers/staging/rt3090/mac_pci.h [new file with mode: 0644]
drivers/staging/rt3090/mlme.h [new file with mode: 0644]
drivers/staging/rt3090/mlme_ex.h [new file with mode: 0644]
drivers/staging/rt3090/mlme_ex_def.h [new file with mode: 0644]
drivers/staging/rt3090/netif_block.h [new file with mode: 0644]
drivers/staging/rt3090/oid.h [new file with mode: 0644]
drivers/staging/rt3090/pci_main_dev.c [new file with mode: 0644]
drivers/staging/rt3090/rt3090.h [new file with mode: 0644]
drivers/staging/rt3090/rt30xx.h [new file with mode: 0644]
drivers/staging/rt3090/rt3370.h [new file with mode: 0644]
drivers/staging/rt3090/rt3390.h [new file with mode: 0644]
drivers/staging/rt3090/rt33xx.h [new file with mode: 0644]
drivers/staging/rt3090/rt_ate.c [new file with mode: 0644]
drivers/staging/rt3090/rt_ate.h [new file with mode: 0644]
drivers/staging/rt3090/rt_config.h [new file with mode: 0644]
drivers/staging/rt3090/rt_linux.c [new file with mode: 0644]
drivers/staging/rt3090/rt_linux.h [new file with mode: 0644]
drivers/staging/rt3090/rt_main_dev.c [new file with mode: 0644]
drivers/staging/rt3090/rt_pci_rbus.c [new file with mode: 0644]
drivers/staging/rt3090/rt_profile.c [new file with mode: 0644]
drivers/staging/rt3090/rtmp.h [new file with mode: 0644]
drivers/staging/rt3090/rtmp_chip.h [new file with mode: 0644]
drivers/staging/rt3090/rtmp_def.h [new file with mode: 0644]
drivers/staging/rt3090/rtmp_dot11.h [new file with mode: 0644]
drivers/staging/rt3090/rtmp_iface.h [new file with mode: 0644]
drivers/staging/rt3090/rtmp_mac.h [new file with mode: 0644]
drivers/staging/rt3090/rtmp_mcu.h [new file with mode: 0644]
drivers/staging/rt3090/rtmp_os.h [new file with mode: 0644]
drivers/staging/rt3090/rtmp_pci.h [new file with mode: 0644]
drivers/staging/rt3090/rtmp_phy.h [new file with mode: 0644]
drivers/staging/rt3090/rtmp_timer.h [new file with mode: 0644]
drivers/staging/rt3090/rtmp_type.h [new file with mode: 0644]
drivers/staging/rt3090/spectrum.h [new file with mode: 0644]
drivers/staging/rt3090/spectrum_def.h [new file with mode: 0644]
drivers/staging/rt3090/sta/assoc.c [new file with mode: 0644]
drivers/staging/rt3090/sta/auth.c [new file with mode: 0644]
drivers/staging/rt3090/sta/auth_rsp.c [new file with mode: 0644]
drivers/staging/rt3090/sta/connect.c [new file with mode: 0644]
drivers/staging/rt3090/sta/dls.c [new file with mode: 0644]
drivers/staging/rt3090/sta/rtmp_ckipmic.c [new file with mode: 0644]
drivers/staging/rt3090/sta/rtmp_data.c [new file with mode: 0644]
drivers/staging/rt3090/sta/sanity.c [new file with mode: 0644]
drivers/staging/rt3090/sta/sync.c [new file with mode: 0644]
drivers/staging/rt3090/sta/wpa.c [new file with mode: 0644]
drivers/staging/rt3090/sta_ioctl.c [new file with mode: 0644]
drivers/staging/rt3090/vr_ikans.h [new file with mode: 0644]
drivers/staging/rt3090/wpa.h [new file with mode: 0644]