Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menuconfig 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. if FWCTL
  11. config FWCTL_MLX5
  12. tristate "mlx5 ConnectX control fwctl driver"
  13. depends on MLX5_CORE
  14. help
  15. MLX5 provides interface for the user process to access the debug and
  16. configuration registers of the ConnectX hardware family
  17. (NICs, PCI switches and SmartNIC SoCs).
  18. This will allow configuration and debug tools to work out of the box on
  19. mainstream kernel.
  20. If you don't know what to do here, say N.
  21. config FWCTL_PDS
  22. tristate "AMD/Pensando pds fwctl driver"
  23. depends on PDS_CORE
  24. help
  25. The pds_fwctl driver provides an fwctl interface for a user process
  26. to access the debug and configuration information of the AMD/Pensando
  27. DSC hardware family.
  28. If you don't know what to do here, say N.
  29. endif