Larry Finger | 6f334c2 | 2013-07-12 15:32:15 -0500 | [diff] [blame] | 1 | menuconfig RTL_CARDS |
| 2 | tristate "Realtek rtlwifi family of devices" |
| 3 | depends on MAC80211 && (PCI || USB) |
| 4 | default y |
Larry Finger | 06e7cda3 | 2013-02-12 16:09:02 -0600 | [diff] [blame] | 5 | ---help--- |
Larry Finger | 6f334c2 | 2013-07-12 15:32:15 -0500 | [diff] [blame] | 6 | This option will enable support for the Realtek mac80211-based |
| 7 | wireless drivers. Drivers rtl8192ce, rtl8192cu, rtl8192se, rtl8192de, |
Larry Finger | a619d1a | 2014-02-28 15:16:50 -0600 | [diff] [blame] | 8 | rtl8723ae, rtl8723be, and rtl8188ae share some common code. |
Larry Finger | 06e7cda3 | 2013-02-12 16:09:02 -0600 | [diff] [blame] | 9 | |
Larry Finger | 6f334c2 | 2013-07-12 15:32:15 -0500 | [diff] [blame] | 10 | if RTL_CARDS |
| 11 | |
| 12 | config 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 | |
| 24 | config 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 | |
| 35 | config 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 | |
| 46 | config RTL8723AE |
| 47 | tristate "Realtek RTL8723AE PCIe Wireless Network Adapter" |
| 48 | depends on PCI |
| 49 | select RTLWIFI |
| 50 | select RTLWIFI_PCI |
Larry Finger | 0a168b4 | 2014-02-28 15:16:47 -0600 | [diff] [blame] | 51 | select RTL8723_COMMON |
Larry Finger | aa45a67 | 2014-02-28 15:16:43 -0600 | [diff] [blame] | 52 | select RTLBTCOEXIST |
Larry Finger | 6f334c2 | 2013-07-12 15:32:15 -0500 | [diff] [blame] | 53 | ---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 | |
Larry Finger | a619d1a | 2014-02-28 15:16:50 -0600 | [diff] [blame] | 59 | config RTL8723BE |
| 60 | tristate "Realtek RTL8723BE PCIe Wireless Network Adapter" |
| 61 | depends on PCI |
| 62 | select RTLWIFI |
| 63 | select RTLWIFI_PCI |
| 64 | select RTL8723_COMMON |
| 65 | select RTLBTCOEXIST |
| 66 | ---help--- |
| 67 | This is the driver for Realtek RTL8723BE 802.11n PCIe |
| 68 | wireless network adapters. |
| 69 | |
| 70 | If you choose to build it as a module, it will be called rtl8723be |
| 71 | |
Larry Finger | 6f334c2 | 2013-07-12 15:32:15 -0500 | [diff] [blame] | 72 | config RTL8188EE |
| 73 | tristate "Realtek RTL8188EE Wireless Network Adapter" |
| 74 | depends on PCI |
| 75 | select RTLWIFI |
| 76 | select RTLWIFI_PCI |
| 77 | ---help--- |
| 78 | This is the driver for Realtek RTL8188EE 802.11n PCIe |
| 79 | wireless network adapters. |
| 80 | |
| 81 | If you choose to build it as a module, it will be called rtl8188ee |
| 82 | |
| 83 | config RTL8192CU |
| 84 | tristate "Realtek RTL8192CU/RTL8188CU USB Wireless Network Adapter" |
| 85 | depends on USB |
| 86 | select RTLWIFI |
| 87 | select RTLWIFI_USB |
| 88 | select RTL8192C_COMMON |
| 89 | ---help--- |
| 90 | This is the driver for Realtek RTL8192CU/RTL8188CU 802.11n USB |
| 91 | wireless network adapters. |
| 92 | |
| 93 | If you choose to build it as a module, it will be called rtl8192cu |
| 94 | |
| 95 | config RTLWIFI |
| 96 | tristate |
| 97 | select FW_LOADER |
| 98 | |
| 99 | config RTLWIFI_PCI |
| 100 | tristate |
| 101 | |
| 102 | config RTLWIFI_USB |
| 103 | tristate |
Larry Finger | 06e7cda3 | 2013-02-12 16:09:02 -0600 | [diff] [blame] | 104 | |
| 105 | config RTLWIFI_DEBUG |
| 106 | bool "Debugging output for rtlwifi driver family" |
| 107 | depends on RTLWIFI |
| 108 | default y |
| 109 | ---help--- |
| 110 | To use the module option that sets the dynamic-debugging level for, |
| 111 | the front-end driver, this parameter must be "Y". For memory-limited |
| 112 | systems, choose "N". If in doubt, choose "Y". |
| 113 | |
Larry Finger | 1472d3a | 2011-02-23 10:24:58 -0600 | [diff] [blame] | 114 | config RTL8192C_COMMON |
| 115 | tristate |
Chaoming Li | f9fc513 | 2011-06-10 15:12:10 -0500 | [diff] [blame] | 116 | depends on RTL8192CE || RTL8192CU |
Larry Finger | 6f334c2 | 2013-07-12 15:32:15 -0500 | [diff] [blame] | 117 | default y |
| 118 | |
Larry Finger | 0a168b4 | 2014-02-28 15:16:47 -0600 | [diff] [blame] | 119 | config RTL8723_COMMON |
| 120 | tristate |
Larry Finger | a619d1a | 2014-02-28 15:16:50 -0600 | [diff] [blame] | 121 | depends on RTL8723AE || RTL8723BE |
Larry Finger | 0a168b4 | 2014-02-28 15:16:47 -0600 | [diff] [blame] | 122 | default y |
| 123 | |
Larry Finger | aa45a67 | 2014-02-28 15:16:43 -0600 | [diff] [blame] | 124 | config RTLBTCOEXIST |
| 125 | tristate |
Larry Finger | a619d1a | 2014-02-28 15:16:50 -0600 | [diff] [blame] | 126 | depends on RTL8723AE || RTL8723BE |
Larry Finger | aa45a67 | 2014-02-28 15:16:43 -0600 | [diff] [blame] | 127 | default y |
| 128 | |
Larry Finger | 6f334c2 | 2013-07-12 15:32:15 -0500 | [diff] [blame] | 129 | endif |