Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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_MLX5
13 tristate "mlx5 ConnectX control fwctl driver"
14 depends on MLX5_CORE
15 help
16 MLX5 provides interface for the user process to access the debug and
17 configuration registers of the ConnectX hardware family
18 (NICs, PCI switches and SmartNIC SoCs).
19 This will allow configuration and debug tools to work out of the box on
20 mainstream kernel.
21
22 If you don't know what to do here, say N.
23
24config FWCTL_PDS
25 tristate "AMD/Pensando pds fwctl driver"
26 depends on PDS_CORE
27 help
28 The pds_fwctl driver provides an fwctl interface for a user process
29 to access the debug and configuration information of the AMD/Pensando
30 DSC hardware family.
31
32 If you don't know what to do here, say N.
33endif