Kconfig 786 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # FSI subsystem
  3. #
  4. menuconfig FSI
  5. tristate "FSI support"
  6. select CRC4
  7. ---help---
  8. FSI - the FRU Support Interface - is a simple bus for low-level
  9. access to POWER-based hardware.
  10. if FSI
  11. config FSI_MASTER_GPIO
  12. tristate "GPIO-based FSI master"
  13. depends on GPIOLIB
  14. select CRC4
  15. ---help---
  16. This option enables a FSI master driver using GPIO lines.
  17. config FSI_MASTER_HUB
  18. tristate "FSI hub master"
  19. ---help---
  20. This option enables a FSI hub master driver. Hub is a type of FSI
  21. master that is connected to the upstream master via a slave. Hubs
  22. allow chaining of FSI links to an arbitrary depth. This allows for
  23. a high target device fanout.
  24. config FSI_SCOM
  25. tristate "SCOM FSI client device driver"
  26. ---help---
  27. This option enables an FSI based SCOM device driver.
  28. endif