mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-03 17:51:23 +00:00
Add mt7925, a new mac80211 driver for the MediaTek Wi-Fi 7 (802.11be) device Filogic 360, which can support Station, AP, P2P, and monitor modes. Filogic 360 supports max 4096-QAM/160MHz radio operation at 6 GHz, 5 GHz, or 2.4 GHz with 2x2 antennas. This chip supports PCIe and USB bus type. mt7925 supports Wi-Fi 6E and EHT rate with single link only at this moment, whereas Wi-Fi 7 and its specific features are working in progress. They will be introduced in further patches. The driver is build tested by Intel's kernel test robot with both GCC and Clang with several architecture. Sparse reports no warnings. There are multiple authors, they are listed in alphabetical order below. Co-developed-by: Hao Zhang <hao.zhang@mediatek.com> Signed-off-by: Hao Zhang <hao.zhang@mediatek.com> Co-developed-by: Leon Yen <leon.yen@mediatek.com> Signed-off-by: Leon Yen <leon.yen@mediatek.com> Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org> Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org> Co-developed-by: Mingyen Hsieh <mingyen.hsieh@mediatek.com> Signed-off-by: Mingyen Hsieh <mingyen.hsieh@mediatek.com> Co-developed-by: Nelson Yu <nelson.yu@mediatek.com> Signed-off-by: Nelson Yu <nelson.yu@mediatek.com> Co-developed-by: Quan Zhou <quan.zhou@mediatek.com> Signed-off-by: Quan Zhou <quan.zhou@mediatek.com> Co-developed-by: Rong Yan <rong.yan@mediatek.com> Signed-off-by: Rong Yan <rong.yan@mediatek.com> Signed-off-by: Deren Wu <deren.wu@mediatek.com> Signed-off-by: Felix Fietkau <nbd@nbd.name>
48 lines
1009 B
Plaintext
48 lines
1009 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config MT76_CORE
|
|
tristate
|
|
select PAGE_POOL
|
|
|
|
config MT76_LEDS
|
|
bool
|
|
depends on MT76_CORE
|
|
depends on LEDS_CLASS=y || MT76_CORE=LEDS_CLASS
|
|
default y
|
|
|
|
config MT76_USB
|
|
tristate
|
|
depends on MT76_CORE
|
|
|
|
config MT76_SDIO
|
|
tristate
|
|
depends on MT76_CORE
|
|
|
|
config MT76x02_LIB
|
|
tristate
|
|
select MT76_CORE
|
|
|
|
config MT76x02_USB
|
|
tristate
|
|
select MT76_USB
|
|
|
|
config MT76_CONNAC_LIB
|
|
tristate
|
|
select MT76_CORE
|
|
|
|
config MT792x_LIB
|
|
tristate
|
|
select MT76_CONNAC_LIB
|
|
|
|
config MT792x_USB
|
|
tristate
|
|
select MT76_USB
|
|
|
|
source "drivers/net/wireless/mediatek/mt76/mt76x0/Kconfig"
|
|
source "drivers/net/wireless/mediatek/mt76/mt76x2/Kconfig"
|
|
source "drivers/net/wireless/mediatek/mt76/mt7603/Kconfig"
|
|
source "drivers/net/wireless/mediatek/mt76/mt7615/Kconfig"
|
|
source "drivers/net/wireless/mediatek/mt76/mt7915/Kconfig"
|
|
source "drivers/net/wireless/mediatek/mt76/mt7921/Kconfig"
|
|
source "drivers/net/wireless/mediatek/mt76/mt7996/Kconfig"
|
|
source "drivers/net/wireless/mediatek/mt76/mt7925/Kconfig"
|