1# SPDX-License-Identifier: GPL-2.0
2#
3# Wireless USB Core configuration
4#
5config USB_WUSB
6	tristate "Enable Wireless USB extensions"
7	depends on UWB && USB
8	select CRYPTO
9	select CRYPTO_AES
10	select CRYPTO_CCM
11	help
12	  Enable the host-side support for Wireless USB.
13
14          To compile this support select Y (built in). It is safe to
15	  select even if you don't have the hardware.
16
17config USB_WUSB_CBAF
18	tristate "Support WUSB Cable Based Association (CBA)"
19	depends on USB
20	help
21	  Some WUSB devices support Cable Based Association. It's used to
22	  enable the secure communication between the host and the
23	  device.
24
25	  Enable this option if your WUSB device must to be connected
26	  via wired USB before establishing a wireless link.
27
28	  It is safe to select even if you don't have a compatible
29	  hardware.
30
31config USB_WUSB_CBAF_DEBUG
32	bool "Enable CBA debug messages"
33	depends on USB_WUSB_CBAF
34	help
35	  Say Y here if you want the CBA to produce a bunch of debug messages
36	  to the system log. Select this if you are having a problem with
37	  CBA support and want to see more of what is going on.
38
39source "drivers/staging/wusbcore/host/Kconfig"
40