Commit b5db4ef3 authored by Ping-Ke Shih's avatar Ping-Ke Shih Committed by Kalle Valo
Browse files

wifi: rtw89: 8852b: add 8852be to Makefile and Kconfig



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: default avatarPing-Ke Shih <pkshih@realtek.com>
Signed-off-by: default avatarKalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20221014060237.29050-5-pkshih@realtek.com
parent 3b66519b
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
@@ -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
+9 −0
Original line number Diff line number Diff line
@@ -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 \