wifi: rtw89: 8852b: add 8852be to Makefile and Kconfig
authorPing-Ke Shih <pkshih@realtek.com>
Fri, 14 Oct 2022 06:02:37 +0000 (14:02 +0800)
committerKalle Valo <kvalo@kernel.org>
Wed, 19 Oct 2022 05:57:51 +0000 (08:57 +0300)
Now, basic materials for 8852be are ready, so add 8852be to Kconfig and
Makefile. Current version can support STA, AP and monitor modes.

We still fine tune some features, such as BT coexistence, performance, and
power consumption.

Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20221014060237.29050-5-pkshih@realtek.com
drivers/net/wireless/realtek/rtw89/Kconfig
drivers/net/wireless/realtek/rtw89/Makefile

index 93e0940..2b20cf8 100644 (file)
@@ -19,6 +19,9 @@ config RTW89_PCI
 config RTW89_8852A
        tristate
 
+config RTW89_8852B
+       tristate
+
 config RTW89_8852C
        tristate
 
@@ -33,6 +36,17 @@ config RTW89_8852AE
 
          802.11ax PCIe wireless network (Wi-Fi 6) adapter
 
+config RTW89_8852BE
+       tristate "Realtek 8852BE PCI wireless network (Wi-Fi 6) adapter"
+       depends on PCI
+       select RTW89_CORE
+       select RTW89_PCI
+       select RTW89_8852B
+       help
+         Select this option will enable support for 8852BE chipset
+
+         802.11ax PCIe wireless network (Wi-Fi 6) adapter
+
 config RTW89_8852CE
        tristate "Realtek 8852CE PCI wireless network (Wi-Fi 6E) adapter"
        depends on PCI
index a87f2af..ec0f5da 100644 (file)
@@ -24,6 +24,15 @@ rtw89_8852a-objs := rtw8852a.o \
 obj-$(CONFIG_RTW89_8852AE) += rtw89_8852ae.o
 rtw89_8852ae-objs := rtw8852ae.o
 
+obj-$(CONFIG_RTW89_8852B) += rtw89_8852b.o
+rtw89_8852b-objs := rtw8852b.o \
+                   rtw8852b_table.o \
+                   rtw8852b_rfk.o \
+                   rtw8852b_rfk_table.o
+
+obj-$(CONFIG_RTW89_8852BE) += rtw89_8852be.o
+rtw89_8852be-objs := rtw8852be.o
+
 obj-$(CONFIG_RTW89_8852C) += rtw89_8852c.o
 rtw89_8852c-objs := rtw8852c.o \
                    rtw8852c_table.o \