blob: 9251e0d3685cea7a86f9f780467109c082733459 [file] [log] [blame]
Larry Finger6f334c22013-07-12 15:32:15 -05001menuconfig RTL_CARDS
2 tristate "Realtek rtlwifi family of devices"
3 depends on MAC80211 && (PCI || USB)
4 default y
Larry Finger06e7cda32013-02-12 16:09:02 -06005 ---help---
Larry Finger6f334c22013-07-12 15:32:15 -05006 This option will enable support for the Realtek mac80211-based
7 wireless drivers. Drivers rtl8192ce, rtl8192cu, rtl8192se, rtl8192de,
Larry Fingeraa45a672014-02-28 15:16:43 -06008 rtl8723ae, and rtl8188ae share some common code.
Larry Finger06e7cda32013-02-12 16:09:02 -06009
Larry Finger6f334c22013-07-12 15:32:15 -050010if RTL_CARDS
11
12config RTL8192CE
13 tristate "Realtek RTL8192CE/RTL8188CE Wireless Network Adapter"
14 depends on PCI
15 select RTL8192C_COMMON
16 select RTLWIFI
17 select RTLWIFI_PCI
18 ---help---
19 This is the driver for Realtek RTL8192CE/RTL8188CE 802.11n PCIe
20 wireless network adapters.
21
22 If you choose to build it as a module, it will be called rtl8192ce
23
24config RTL8192SE
25 tristate "Realtek RTL8192SE/RTL8191SE PCIe Wireless Network Adapter"
26 depends on PCI
27 select RTLWIFI
28 select RTLWIFI_PCI
29 ---help---
30 This is the driver for Realtek RTL8192SE/RTL8191SE 802.11n PCIe
31 wireless network adapters.
32
33 If you choose to build it as a module, it will be called rtl8192se
34
35config RTL8192DE
36 tristate "Realtek RTL8192DE/RTL8188DE PCIe Wireless Network Adapter"
37 depends on PCI
38 select RTLWIFI
39 select RTLWIFI_PCI
40 ---help---
41 This is the driver for Realtek RTL8192DE/RTL8188DE 802.11n PCIe
42 wireless network adapters.
43
44 If you choose to build it as a module, it will be called rtl8192de
45
46config RTL8723AE
47 tristate "Realtek RTL8723AE PCIe Wireless Network Adapter"
48 depends on PCI
49 select RTLWIFI
50 select RTLWIFI_PCI
Larry Finger0a168b42014-02-28 15:16:47 -060051 select RTL8723_COMMON
Larry Fingeraa45a672014-02-28 15:16:43 -060052 select RTLBTCOEXIST
Larry Finger6f334c22013-07-12 15:32:15 -050053 ---help---
54 This is the driver for Realtek RTL8723AE 802.11n PCIe
55 wireless network adapters.
56
57 If you choose to build it as a module, it will be called rtl8723ae
58
59config RTL8188EE
60 tristate "Realtek RTL8188EE Wireless Network Adapter"
61 depends on PCI
62 select RTLWIFI
63 select RTLWIFI_PCI
64 ---help---
65 This is the driver for Realtek RTL8188EE 802.11n PCIe
66 wireless network adapters.
67
68 If you choose to build it as a module, it will be called rtl8188ee
69
70config RTL8192CU
71 tristate "Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter"
72 depends on USB
73 select RTLWIFI
74 select RTLWIFI_USB
75 select RTL8192C_COMMON
76 ---help---
77 This is the driver for Realtek RTL8192CU/RTL8188CU 802.11n USB
78 wireless network adapters.
79
80 If you choose to build it as a module, it will be called rtl8192cu
81
82config RTLWIFI
83 tristate
84 select FW_LOADER
85
86config RTLWIFI_PCI
87 tristate
88
89config RTLWIFI_USB
90 tristate
Larry Finger06e7cda32013-02-12 16:09:02 -060091
92config RTLWIFI_DEBUG
93 bool "Debugging output for rtlwifi driver family"
94 depends on RTLWIFI
95 default y
96 ---help---
97 To use the module option that sets the dynamic-debugging level for,
98 the front-end driver, this parameter must be "Y". For memory-limited
99 systems, choose "N". If in doubt, choose "Y".
100
Larry Finger1472d3a2011-02-23 10:24:58 -0600101config RTL8192C_COMMON
102 tristate
Chaoming Lif9fc5132011-06-10 15:12:10 -0500103 depends on RTL8192CE || RTL8192CU
Larry Finger6f334c22013-07-12 15:32:15 -0500104 default y
105
Larry Finger0a168b42014-02-28 15:16:47 -0600106config RTL8723_COMMON
107 tristate
108 depends on RTL8723AE
109 default y
110
Larry Fingeraa45a672014-02-28 15:16:43 -0600111config RTLBTCOEXIST
112 tristate
113 depends on RTL8723AE
114 default y
115
Larry Finger6f334c22013-07-12 15:32:15 -0500116endif