wifi: rtw89: 8922a: add 8922ae to Makefile and Kconfig
authorPing-Ke Shih <pkshih@realtek.com>
Tue, 12 Mar 2024 01:37:21 +0000 (09:37 +0800)
committerKalle Valo <kvalo@kernel.org>
Thu, 14 Mar 2024 08:56:59 +0000 (10:56 +0200)
Add 8922AE to Makefile and Kconfig. Currently, it can support STA, AP and
monitor modes with good performance. Implemented initial BT-coexistence
function only, and will to fine tune this component.

Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://msgid.link/20240312013721.17452-7-pkshih@realtek.com
drivers/net/wireless/realtek/rtw89/Kconfig
drivers/net/wireless/realtek/rtw89/Makefile

index 90ffbab7cc4c6d0b65fb08ec14ce58928e76c700..eaea4eaeb3618e76f79a769e1238366e3374131d 100644 (file)
@@ -28,6 +28,9 @@ config RTW89_8852B
 config RTW89_8852C
        tristate
 
+config RTW89_8922A
+       tristate
+
 config RTW89_8851BE
        tristate "Realtek 8851BE PCI wireless network (Wi-Fi 6) adapter"
        depends on PCI
@@ -72,6 +75,18 @@ config RTW89_8852CE
 
          802.11ax PCIe wireless network (Wi-Fi 6E) adapter
 
+config RTW89_8922AE
+       tristate "Realtek 8922AE PCI wireless network (Wi-Fi 7) adapter"
+       depends on PCI
+       select RTW89_CORE
+       select RTW89_PCI
+       select RTW89_8922A
+       help
+         Select this option will enable support for 8922AE chipset
+
+         802.11be PCIe wireless network (Wi-Fi 7) adapter
+         supporting 2x2 2GHz/5GHz/6GHz 4096-QAM 160MHz channels.
+
 config RTW89_DEBUG
        bool
 
index 41940099af1b69a2f2eaec530ee69a7a799820f3..86a553fb0136a411883cf895405bb2d90192a31e 100644 (file)
@@ -4,10 +4,13 @@ obj-$(CONFIG_RTW89_CORE) += rtw89_core.o
 rtw89_core-y += core.o \
                mac80211.o \
                mac.o \
+               mac_be.o \
                phy.o \
+               phy_be.o \
                fw.o \
                cam.o \
                efuse.o \
+               efuse_be.o \
                regd.o \
                sar.o \
                coex.o \
@@ -54,8 +57,15 @@ rtw89_8852c-objs := rtw8852c.o \
 obj-$(CONFIG_RTW89_8852CE) += rtw89_8852ce.o
 rtw89_8852ce-objs := rtw8852ce.o
 
+obj-$(CONFIG_RTW89_8922A) += rtw89_8922a.o
+rtw89_8922a-objs := rtw8922a.o \
+                   rtw8922a_rfk.o
+
+obj-$(CONFIG_RTW89_8922AE) += rtw89_8922ae.o
+rtw89_8922ae-objs := rtw8922ae.o
+
 rtw89_core-$(CONFIG_RTW89_DEBUG) += debug.o
 
 obj-$(CONFIG_RTW89_PCI) += rtw89_pci.o
-rtw89_pci-y := pci.o
+rtw89_pci-y := pci.o pci_be.o