Kconfig 473 B

1234567891011121314151617181920
  1. # SPDX-License_Identifier: GPL-2.0
  2. menu "Enable LiteX SoC Builder specific drivers"
  3. config LITEX
  4. bool
  5. config LITEX_SOC_CONTROLLER
  6. tristate "Enable LiteX SoC Controller driver"
  7. depends on OF || COMPILE_TEST
  8. depends on HAS_IOMEM
  9. select LITEX
  10. help
  11. This option enables the SoC Controller Driver which verifies
  12. LiteX CSR access and provides common litex_[read|write]*
  13. accessors.
  14. All drivers that use functions from litex.h must depend on
  15. LITEX.
  16. endmenu