Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 04b8e659 authored by Ryder Lee's avatar Ryder Lee Committed by Felix Fietkau
Browse files

mt76: add mac80211 driver for MT7615 PCIe-based chipsets



This driver is for a newer generation of MediaTek MT7615 4x4 802.11ac
PCIe-based chipsets, which support wave2 MU-MIMO up to 4 users/group
and also support up to 160MHz bandwidth.

The driver fully supports AP, station and monitor mode.

Signed-off-by: default avatarRyder Lee <ryder.lee@mediatek.com>
Signed-off-by: default avatarRoy Luo <royluo@google.com>
Signed-off-by: default avatarLorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 598da386
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -22,3 +22,4 @@ config MT76x02_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"
+1 −0
Original line number Diff line number Diff line
@@ -23,3 +23,4 @@ mt76x02-usb-y := mt76x02_usb_mcu.o mt76x02_usb_core.o
obj-$(CONFIG_MT76x0_COMMON) += mt76x0/
obj-$(CONFIG_MT76x2_COMMON) += mt76x2/
obj-$(CONFIG_MT7603E) += mt7603/
obj-$(CONFIG_MT7615E) += mt7615/
+1 −0
Original line number Diff line number Diff line
@@ -69,6 +69,7 @@ enum mt76_txq_id {
	MT_TXQ_MCU,
	MT_TXQ_BEACON,
	MT_TXQ_CAB,
	MT_TXQ_FWDL,
	__MT_TXQ_MAX
};

+7 −0
Original line number Diff line number Diff line
config MT7615E
	tristate "MediaTek MT7615E (PCIe) support"
	select MT76_CORE
	depends on MAC80211
	depends on PCI
	help
	  This adds support for MT7615-based wireless PCIe devices.
+5 −0
Original line number Diff line number Diff line
#SPDX-License-Identifier: ISC

obj-$(CONFIG_MT7615E) += mt7615e.o

mt7615e-y := pci.o init.o dma.o eeprom.o main.o mcu.o mac.o
Loading