1# SPDX-License-Identifier: GPL-2.0-only
2config HOSTAP
3	tristate "IEEE 802.11 for Host AP (Prism2/2.5/3 and WEP/TKIP/CCMP)"
4	select WIRELESS_EXT
5	select WEXT_SPY
6	select WEXT_PRIV
7	select CRYPTO
8	select CRYPTO_ARC4
9	select CRYPTO_ECB
10	select CRYPTO_AES
11	select CRYPTO_MICHAEL_MIC
12	select CRYPTO_ECB
13	select CRC32
14	select LIB80211
15	select LIB80211_CRYPT_WEP
16	select LIB80211_CRYPT_TKIP
17	select LIB80211_CRYPT_CCMP
18	---help---
19	Shared driver code for IEEE 802.11b wireless cards based on
20	Intersil Prism2/2.5/3 chipset. This driver supports so called
21	Host AP mode that allows the card to act as an IEEE 802.11
22	access point.
23
24	See <http://hostap.epitest.fi/> for more information about the
25	Host AP driver configuration and tools. This site includes
26	information and tools (hostapd and wpa_supplicant) for WPA/WPA2
27	support.
28
29	This option includes the base Host AP driver code that is shared by
30	different hardware models. You will also need to enable support for
31	PLX/PCI/CS version of the driver to actually use the driver.
32
33	The driver can be compiled as a module and it will be called
34	hostap.
35
36config HOSTAP_FIRMWARE
37	bool "Support downloading firmware images with Host AP driver"
38	depends on HOSTAP
39	---help---
40	Configure Host AP driver to include support for firmware image
41	download. This option by itself only enables downloading to the
42	volatile memory, i.e. the card RAM. This option is required to
43	support cards that don't have firmware in flash, such as D-Link
44	DWL-520 rev E and D-Link DWL-650 rev P.
45
46	Firmware image downloading needs a user space tool, prism2_srec.
47	It is available from http://hostap.epitest.fi/.
48
49config HOSTAP_FIRMWARE_NVRAM
50	bool "Support for non-volatile firmware download"
51	depends on HOSTAP_FIRMWARE
52	---help---
53	Allow Host AP driver to write firmware images to the non-volatile
54	card memory, i.e. flash memory that survives power cycling.
55	Enable this option if you want to be able to change card firmware
56	permanently.
57
58	Firmware image downloading needs a user space tool, prism2_srec.
59	It is available from http://hostap.epitest.fi/.
60
61config HOSTAP_PLX
62	tristate "Host AP driver for Prism2/2.5/3 in PLX9052 PCI adaptors"
63	depends on PCI && HOSTAP
64	---help---
65	Host AP driver's version for Prism2/2.5/3 PC Cards in PLX9052 based
66	PCI adaptors.
67
68	"Host AP support for Prism2/2.5/3 IEEE 802.11b" is required for this
69	driver and its help text includes more information about the Host AP
70	driver.
71
72	The driver can be compiled as a module and will be named
73	hostap_plx.
74
75config HOSTAP_PCI
76	tristate "Host AP driver for Prism2.5 PCI adaptors"
77	depends on PCI && HOSTAP
78	---help---
79	Host AP driver's version for Prism2.5 PCI adaptors.
80
81	"Host AP support for Prism2/2.5/3 IEEE 802.11b" is required for this
82	driver and its help text includes more information about the Host AP
83	driver.
84
85	The driver can be compiled as a module and will be named
86	hostap_pci.
87
88config HOSTAP_CS
89	tristate "Host AP driver for Prism2/2.5/3 PC Cards"
90	depends on PCMCIA && HOSTAP
91	---help---
92	Host AP driver's version for Prism2/2.5/3 PC Cards.
93
94	"Host AP support for Prism2/2.5/3 IEEE 802.11b" is required for this
95	driver and its help text includes more information about the Host AP
96	driver.
97
98	The driver can be compiled as a module and will be named
99	hostap_cs.
100