Kconfig 811 B

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