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