Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

# SPDX-License-Identifier: GPL-2.0-only
menuconfig CONFIG_RTL_CARDS
	tristate "Realtek rtlwifi family of devices"
	depends on CONFIG_MAC80211 && (CONFIG_PCI || CONFIG_USB)
	default y
	---help---
	  This option will enable support for the Realtek mac80211-based
	  wireless drivers. Drivers rtl8192ce, rtl8192cu, rtl8192se, rtl8192de,
	  rtl8723ae, rtl8723be, rtl8188ee, rtl8192ee, and rtl8821ae share
	  some common code.

if CONFIG_RTL_CARDS

config CONFIG_RTL8192CE
	tristate "Realtek RTL8192CE/RTL8188CE Wireless Network Adapter"
	depends on CONFIG_PCI
	select CONFIG_RTL8192C_COMMON
	select CONFIG_RTLWIFI
	select CONFIG_RTLWIFI_PCI
	---help---
	This is the driver for Realtek CONFIG_RTL8192CE/RTL8188CE 802.11n PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8192ce

config CONFIG_RTL8192SE
	tristate "Realtek RTL8192SE/RTL8191SE PCIe Wireless Network Adapter"
	depends on CONFIG_PCI
	select CONFIG_RTLWIFI
	select CONFIG_RTLWIFI_PCI
	---help---
	This is the driver for Realtek CONFIG_RTL8192SE/RTL8191SE 802.11n PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8192se

config CONFIG_RTL8192DE
	tristate "Realtek RTL8192DE/RTL8188DE PCIe Wireless Network Adapter"
	depends on CONFIG_PCI
	select CONFIG_RTLWIFI
	select CONFIG_RTLWIFI_PCI
	---help---
	This is the driver for Realtek CONFIG_RTL8192DE/RTL8188DE 802.11n PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8192de

config CONFIG_RTL8723AE
	tristate "Realtek RTL8723AE PCIe Wireless Network Adapter"
	depends on CONFIG_PCI
	select CONFIG_RTLWIFI
	select CONFIG_RTLWIFI_PCI
	select CONFIG_RTL8723_COMMON
	select CONFIG_RTLBTCOEXIST
	---help---
	This is the driver for Realtek CONFIG_RTL8723AE 802.11n PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8723ae

config CONFIG_RTL8723BE
	tristate "Realtek RTL8723BE PCIe Wireless Network Adapter"
	depends on CONFIG_PCI
	select CONFIG_RTLWIFI
	select CONFIG_RTLWIFI_PCI
	select CONFIG_RTL8723_COMMON
	select CONFIG_RTLBTCOEXIST
	---help---
	This is the driver for Realtek CONFIG_RTL8723BE 802.11n PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8723be

config CONFIG_RTL8188EE
	tristate "Realtek RTL8188EE Wireless Network Adapter"
	depends on CONFIG_PCI
	select CONFIG_RTLWIFI
	select CONFIG_RTLWIFI_PCI
	---help---
	This is the driver for Realtek CONFIG_RTL8188EE 802.11n PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8188ee

config CONFIG_RTL8192EE
	tristate "Realtek RTL8192EE Wireless Network Adapter"
	depends on CONFIG_PCI
	select CONFIG_RTLWIFI
	select CONFIG_RTLWIFI_PCI
	select CONFIG_RTLBTCOEXIST
	---help---
	This is the driver for Realtek CONFIG_RTL8192EE 802.11n PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8192ee

config CONFIG_RTL8821AE
	tristate "Realtek RTL8821AE/RTL8812AE Wireless Network Adapter"
	depends on CONFIG_PCI
	select CONFIG_RTLWIFI
	select CONFIG_RTLWIFI_PCI
	select CONFIG_RTLBTCOEXIST
	---help---
	This is the driver for Realtek CONFIG_RTL8821AE/RTL8812AE 802.11ac PCIe
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8821ae

config CONFIG_RTL8192CU
	tristate "Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter"
	depends on CONFIG_USB
	select CONFIG_RTLWIFI
	select CONFIG_RTLWIFI_USB
	select CONFIG_RTL8192C_COMMON
	---help---
	This is the driver for Realtek CONFIG_RTL8192CU/RTL8188CU 802.11n CONFIG_USB
	wireless network adapters.

	If you choose to build it as a module, it will be called rtl8192cu

config CONFIG_RTLWIFI
	tristate
	select CONFIG_FW_LOADER

config CONFIG_RTLWIFI_PCI
	tristate

config CONFIG_RTLWIFI_USB
	tristate

config CONFIG_RTLWIFI_DEBUG
	bool "Debugging output for rtlwifi driver family"
	depends on CONFIG_RTLWIFI
	default y
	---help---
	To use the module option that sets the dynamic-debugging level for,
	the front-end driver, this parameter must be "Y". For memory-limited
	systems, choose "N". If in doubt, choose "Y".

config CONFIG_RTL8192C_COMMON
	tristate
	depends on CONFIG_RTL8192CE || CONFIG_RTL8192CU
	default y

config CONFIG_RTL8723_COMMON
	tristate
	depends on CONFIG_RTL8723AE || CONFIG_RTL8723BE
	default y

config CONFIG_RTLBTCOEXIST
	tristate
	depends on CONFIG_RTL8723AE || CONFIG_RTL8723BE || CONFIG_RTL8821AE || CONFIG_RTL8192EE
	default y

endif