mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
98f44cb065
This patch adds support for new FullMAC WiFi driver for Quantenna QSR10G chipsets. QSR10G (aka Pearl) is Quantenna's 8x8, 160M, 11ac offering. QSR10G supports 2 simultaneous WMACs - one 5G and one 2G. 5G WMAC supports 160M, 8x8 configuration. FW supports up to 8 concurrent virtual interfaces on each WMAC. Patch introduces 2 new drivers: - qtnfmac.ko for interfacing with kernel wireless core - qtnfmac_pearl_pcie.ko for interfacing with hardware over PCIe interface Signed-off-by: Dmitrii Lebed <dlebed@quantenna.com> Signed-off-by: Sergei Maksimenko <smaksimenko@quantenna.com> Signed-off-by: Sergey Matyukevich <smatyukevich@quantenna.com> Signed-off-by: Bindu Therthala <btherthala@quantenna.com> Signed-off-by: Huizhao Wang <hwang@quantenna.com> Signed-off-by: Kamlesh Rath <krath@quantenna.com> Signed-off-by: Avinash Patil <avinashp@quantenna.com> Signed-off-by: Igor Mitsyanko <igor.mitsyanko.os@quantenna.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
20 lines
551 B
Plaintext
20 lines
551 B
Plaintext
config QTNFMAC
|
|
tristate
|
|
depends on QTNFMAC_PEARL_PCIE
|
|
default m if QTNFMAC_PEARL_PCIE=m
|
|
default y if QTNFMAC_PEARL_PCIE=y
|
|
|
|
config QTNFMAC_PEARL_PCIE
|
|
tristate "Quantenna QSR10g PCIe support"
|
|
default n
|
|
depends on HAS_DMA && PCI && CFG80211
|
|
select QTNFMAC
|
|
select FW_LOADER
|
|
select CRC32
|
|
---help---
|
|
This option adds support for wireless adapters based on Quantenna
|
|
802.11ac QSR10g (aka Pearl) FullMAC chipset running over PCIe.
|
|
|
|
If you choose to build it as a module, two modules will be built:
|
|
qtnfmac.ko and qtnfmac_pearl_pcie.ko.
|