Kconfig 712 B

1234567891011121314151617181920212223242526
  1. # SPDX-License-Identifier: GPL-2.0
  2. # Kconfig for Xilinx firmwares
  3. menu "Zynq MPSoC Firmware Drivers"
  4. depends on ARCH_ZYNQMP
  5. config ZYNQMP_FIRMWARE
  6. bool "Enable Xilinx Zynq MPSoC firmware interface"
  7. depends on ARCH_ZYNQMP
  8. default y if ARCH_ZYNQMP
  9. select MFD_CORE
  10. help
  11. Firmware interface driver is used by different
  12. drivers to communicate with the firmware for
  13. various platform management services.
  14. Say yes to enable ZynqMP firmware interface driver.
  15. If in doubt, say N.
  16. config ZYNQMP_FIRMWARE_DEBUG
  17. bool "Enable Xilinx Zynq MPSoC firmware debug APIs"
  18. depends on ZYNQMP_FIRMWARE && DEBUG_FS
  19. help
  20. Say yes to enable ZynqMP firmware interface debug APIs.
  21. If in doubt, say N.
  22. endmenu