mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-25 05:04:09 +08: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>
29 lines
976 B
Makefile
29 lines
976 B
Makefile
#
|
|
# Makefile for the Linux Wireless network device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_WLAN_VENDOR_ADMTEK) += admtek/
|
|
obj-$(CONFIG_WLAN_VENDOR_ATH) += ath/
|
|
obj-$(CONFIG_WLAN_VENDOR_ATMEL) += atmel/
|
|
obj-$(CONFIG_WLAN_VENDOR_BROADCOM) += broadcom/
|
|
obj-$(CONFIG_WLAN_VENDOR_CISCO) += cisco/
|
|
obj-$(CONFIG_WLAN_VENDOR_INTEL) += intel/
|
|
obj-$(CONFIG_WLAN_VENDOR_INTERSIL) += intersil/
|
|
obj-$(CONFIG_WLAN_VENDOR_MARVELL) += marvell/
|
|
obj-$(CONFIG_WLAN_VENDOR_MEDIATEK) += mediatek/
|
|
obj-$(CONFIG_WLAN_VENDOR_RALINK) += ralink/
|
|
obj-$(CONFIG_WLAN_VENDOR_REALTEK) += realtek/
|
|
obj-$(CONFIG_WLAN_VENDOR_RSI) += rsi/
|
|
obj-$(CONFIG_WLAN_VENDOR_ST) += st/
|
|
obj-$(CONFIG_WLAN_VENDOR_TI) += ti/
|
|
obj-$(CONFIG_WLAN_VENDOR_ZYDAS) += zydas/
|
|
obj-$(CONFIG_WLAN_VENDOR_QUANTENNA) += quantenna/
|
|
|
|
# 16-bit wireless PCMCIA client drivers
|
|
obj-$(CONFIG_PCMCIA_RAYCS) += ray_cs.o
|
|
obj-$(CONFIG_PCMCIA_WL3501) += wl3501_cs.o
|
|
|
|
obj-$(CONFIG_USB_NET_RNDIS_WLAN) += rndis_wlan.o
|
|
|
|
obj-$(CONFIG_MAC80211_HWSIM) += mac80211_hwsim.o
|