Kconfig 570 B

1234567891011121314151617181920212223
  1. # SPDX-License-Identifier: GPL-2.0
  2. menuconfig CLK_SIFIVE
  3. bool "SiFive SoC driver support"
  4. depends on SOC_SIFIVE || COMPILE_TEST
  5. default SOC_SIFIVE
  6. help
  7. SoC drivers for SiFive Linux-capable SoCs.
  8. if CLK_SIFIVE
  9. config CLK_SIFIVE_PRCI
  10. bool "PRCI driver for SiFive SoCs"
  11. default SOC_SIFIVE
  12. select RESET_CONTROLLER
  13. select RESET_SIMPLE
  14. select CLK_ANALOGBITS_WRPLL_CLN28HPC
  15. help
  16. Supports the Power Reset Clock interface (PRCI) IP block found in
  17. FU540/FU740 SoCs. If this kernel is meant to run on a SiFive FU540/
  18. FU740 SoCs, enable this driver.
  19. endif