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
 config RTW89_8852C
        tristate
 
+config RTW89_8922A
+       tristate
+
 config RTW89_8851BE
        tristate "Realtek 8851BE PCI wireless network (Wi-Fi 6) adapter"
        depends on PCI
 
          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
 
 
 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 \
 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