Commit 41977e86 authored by Roman Yeryomin's avatar Roman Yeryomin Committed by Kalle Valo

rt2x00: add support for MT7620

Basic support for MT7620 built-in wireless radio was added to
OpenWrt in r41441. It has seen some heavy cleaning and refactoring
since in order to match the Kernel's code quality standards.
Signed-off-by: default avatarRoman Yeryomin <roman@advem.lv>
Signed-off-by: default avatarDaniel Golle <daniel@makrotopia.org>
Acked-by: default avatarStanislaw Gruszka <sgruszka@redhat.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent ca260ece
...@@ -201,7 +201,7 @@ endif ...@@ -201,7 +201,7 @@ endif
config RT2800SOC config RT2800SOC
tristate "Ralink WiSoC support" tristate "Ralink WiSoC support"
depends on SOC_RT288X || SOC_RT305X depends on SOC_RT288X || SOC_RT305X || SOC_MT7620
select RT2X00_LIB_SOC select RT2X00_LIB_SOC
select RT2X00_LIB_MMIO select RT2X00_LIB_MMIO
select RT2X00_LIB_CRYPTO select RT2X00_LIB_CRYPTO
......
This diff is collapsed.
...@@ -33,6 +33,10 @@ ...@@ -33,6 +33,10 @@
struct rt2800_drv_data { struct rt2800_drv_data {
u8 calibration_bw20; u8 calibration_bw20;
u8 calibration_bw40; u8 calibration_bw40;
char rx_calibration_bw20;
char rx_calibration_bw40;
char tx_calibration_bw20;
char tx_calibration_bw40;
u8 bbp25; u8 bbp25;
u8 bbp26; u8 bbp26;
u8 txmixer_gain_24g; u8 txmixer_gain_24g;
......
...@@ -174,6 +174,7 @@ struct rt2x00_chip { ...@@ -174,6 +174,7 @@ struct rt2x00_chip {
#define RT5390 0x5390 /* 2.4GHz */ #define RT5390 0x5390 /* 2.4GHz */
#define RT5392 0x5392 /* 2.4GHz */ #define RT5392 0x5392 /* 2.4GHz */
#define RT5592 0x5592 #define RT5592 0x5592
#define RT6352 0x6352 /* WSOC 2.4GHz */
u16 rf; u16 rf;
u16 rev; u16 rev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment