MT7628开发板的WIFI驱动

所属分类:嵌入式Linux
开发工具:C/C++
文件大小:2334KB
下载次数:44
上传日期:2017-08-29 17:33:19
上 传 者killers
说明:  该源码驱动适合联发科的基于mips架构的开发板。适合联发科的网卡驱动。能够实现桥接模式,路由模式,无线放大器模式。
(The source driver for MediaTek based on the MIPs framework development board. NIC driver for mediatek. Bridge mode, routing mode, wireless amplifier mode can be implemented.)

文件列表:
mt_wifi\ate\ate_agent.c (35111, 2016-03-10)
mt_wifi\ate\include\ate.h (10043, 2016-03-10)
mt_wifi\ate\include\ate_agent.h (4612, 2016-03-10)
mt_wifi\ate\include\qa_agent.h (2535, 2016-03-10)
mt_wifi\ate\mt_mac\mt_ate.c (51796, 2016-03-10)
mt_wifi\ate\qa_agent.c (58936, 2016-03-10)
mt_wifi\chips\mt7628.c (46991, 2016-03-10)
mt_wifi\chips\rtmp_chip.c (13402, 2016-03-10)
mt_wifi\chips\rtxx_dft.c (11810, 2016-03-10)
mt_wifi\eeprom\MT7628_EEPROM_20140317.bin (512, 2016-03-10)
mt_wifi\embedded\ap\ap.c (83997, 2016-03-10)
mt_wifi\embedded\ap\apcli_assoc.c (39125, 2016-03-10)
mt_wifi\embedded\ap\apcli_auth.c (27490, 2016-03-10)
mt_wifi\embedded\ap\apcli_autobw.c (7427, 2016-03-10)
mt_wifi\embedded\ap\apcli_ctrl.c (69329, 2016-03-10)
mt_wifi\embedded\ap\apcli_link_cover.c (3985, 2016-03-10)
mt_wifi\embedded\ap\apcli_sync.c (29132, 2016-03-10)
mt_wifi\embedded\ap\ap_apcli.c (101779, 2016-03-10)
mt_wifi\embedded\ap\ap_apcli_inf.c (4586, 2016-03-10)
mt_wifi\embedded\ap\ap_assoc.c (82261, 2016-03-10)
mt_wifi\embedded\ap\ap_auth.c (27972, 2016-03-10)
mt_wifi\embedded\ap\ap_autoChSel.c (33504, 2016-03-10)
mt_wifi\embedded\ap\ap_band_steering.c (23424, 2016-03-10)
mt_wifi\embedded\ap\ap_cfg.c (464918, 2016-03-10)
mt_wifi\embedded\ap\ap_connect.c (50043, 2016-03-10)
mt_wifi\embedded\ap\ap_data.c (107104, 2016-03-10)
mt_wifi\embedded\ap\ap_dls.c (9918, 2016-03-10)
mt_wifi\embedded\ap\ap_ftkd.c (43979, 2016-03-10)
mt_wifi\embedded\ap\ap_ids.c (15460, 2016-03-10)
mt_wifi\embedded\ap\ap_mbss.c (10899, 2016-03-10)
mt_wifi\embedded\ap\ap_mbss_inf.c (5212, 2016-03-10)
mt_wifi\embedded\ap\ap_mlme.c (20589, 2016-03-10)
mt_wifi\embedded\ap\ap_nps.c (8163, 2016-03-10)
mt_wifi\embedded\ap\ap_qload.c (24489, 2016-03-10)
mt_wifi\embedded\ap\ap_repeater.c (24597, 2016-03-10)
mt_wifi\embedded\ap\ap_sanity.c (1179, 2016-03-10)
mt_wifi\embedded\ap\ap_sync.c (60761, 2016-03-10)
mt_wifi\embedded\ap\ap_wds.c (42091, 2016-03-10)
mt_wifi\embedded\ap\ap_wds_inf.c (2809, 2016-03-10)
mt_wifi\embedded\ap\ap_wpa.c (53003, 2016-03-10)
... ...

Readme for different phy mode of different BSS as below: 1. Extend WirelessMode usage in DAT file EX: WirelessMode=0;9;1;9 i.e. bg, bgn, b-only, bgn, pAd->CommonCfg.PhyMode will be 9 EX: WirelessMode=0;0;1;0 i.e. bg, bg, b-only, bg, pAd->CommonCfg.PhyMode will be 0 2. Add a new parameter, PhyMode, in MULTISSID_STRUCT structure 3. Use pAd->ApCfg.MBSSID[apidx].PhyMode, not pAd->CommonCfg.PhyMode in APUpdateBeaconFrame() Use pAd->ApCfg.MBSSID[apidx].PhyMode, not pAd->CommonCfg.PhyMode in APPeerProbeReqAction() 4. Use maximum capability for all BSS in RT_CfgSetWirelessMode(). EX: In MBSS mode, BSS0 is 11g-only, BSS1 is 11b-only, pAd->CommonCfg.PhyMode will be 11bg-mixed. EX: In MBSS mode, BSS0 is 11n-2.4G-only, BSS1 is also 11n-2.4G-only, pAd->CommonCfg.PhyMode will be 11n-2.4G-only, not 11bgn-mixed. EX: In MBSS mode, BSS0 is 11b-only, BSS1 is also 11b-only, pAd->CommonCfg.PhyMode will be 11b-only. EX: In MBSS mode, BSS0 is 11b-only, BSS1 is also 11bgn-mixed, pAd->CommonCfg.PhyMode will be 11bgn-mixed. So no impact for GreenAP mode. Check with K.H. 5. Add two new command (1) iwpriv ra0 set MBSSWirelessMode=[0 ~ 11] Set different phy mode for different BSS. (2) iwpriv ra0 show mbss Show current phy mode for different BSS. EX: BSS Idx Phy Mode MAX BGN Mixed 0 BG Mixed 1 BG Mixed 2 BG Mixed 3 BGN Mixed 6. When ra0 use 2.4G, users set ra1 to 5G, ra0 will be same as ra1. When ra0 use 5G, users set ra1 to 2.4G, ra0 will be same as ra1. EX: BSS0 is 11bg-mixed, then users set BSS1 to 11a-only, ra0 will be 11a-only, not 11an-mixed. EX: BSS0 is 11bg-mixed, then users set BSS1 to 11an-mixed, ra0 will be 11an-mixed. 7. Use CONFIG_AP_SUPPORT and MBSS_SUPPORT to include these codes.

近期下载者

相关文件


收藏者