xref: /linux/drivers/fwctl/Kconfig (revision 5ea5880764cbb164afb17a62e76ca75dc371409d)
1# SPDX-License-Identifier: GPL-2.0-only
2menuconfig FWCTL
3	tristate "fwctl device firmware access framework"
4	help
5	  fwctl provides a userspace API for restricted access to communicate
6	  with on-device firmware. The communication channel is intended to
7	  support a wide range of lockdown compatible device behaviors including
8	  manipulating device FLASH, debugging, and other activities that don't
9	  fit neatly into an existing subsystem.
10
11if FWCTL
12config FWCTL_BNXT
13	tristate "bnxt control fwctl driver"
14	depends on BNXT
15	help
16	  BNXT provides interface for the user process to access the debug and
17	  configuration registers of the Broadcom NIC hardware family.
18	  This will allow configuration and debug tools to work out of the box on
19	  mainstream kernel.
20
21	  If you don't know what to do here, say N.
22
23config FWCTL_MLX5
24	tristate "mlx5 ConnectX control fwctl driver"
25	depends on MLX5_CORE
26	help
27	  MLX5 provides interface for the user process to access the debug and
28	  configuration registers of the ConnectX hardware family
29	  (NICs, PCI switches and SmartNIC SoCs).
30	  This will allow configuration and debug tools to work out of the box on
31	  mainstream kernel.
32
33	  If you don't know what to do here, say N.
34
35config FWCTL_PDS
36	tristate "AMD/Pensando pds fwctl driver"
37	depends on PDS_CORE
38	help
39	  The pds_fwctl driver provides an fwctl interface for a user process
40	  to access the debug and configuration information of the AMD/Pensando
41	  DSC hardware family.
42
43	  If you don't know what to do here, say N.
44endif
45