Kconfig 947 B

1234567891011121314151617181920212223242526272829303132
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menu "Clock driver for ARM Reference designs"
  3. depends on HAS_IOMEM
  4. depends on ARM || ARM64 || COMPILE_TEST
  5. config CLK_ICST
  6. bool "Clock driver for ARM Reference designs ICST"
  7. select REGMAP_MMIO
  8. help
  9. Supports clocking on ARM Reference designs:
  10. - Integrator/AP and Integrator/CP
  11. - RealView PB1176, EB, PB11MP and PBX
  12. config CLK_SP810
  13. bool "Clock driver for ARM SP810 System Controller"
  14. default y if (ARCH_VEXPRESS && ARM)
  15. help
  16. Supports clock muxing (REFCLK/TIMCLK to TIMERCLKEN0-3) capabilities
  17. of the ARM SP810 System Controller cell.
  18. config CLK_VEXPRESS_OSC
  19. tristate "Clock driver for Versatile Express OSC clock generators"
  20. depends on VEXPRESS_CONFIG
  21. select REGMAP_MMIO
  22. default y if ARCH_VEXPRESS
  23. help
  24. Simple regmap-based driver driving clock generators on Versatile
  25. Express platforms hidden behind its configuration infrastructure,
  26. commonly known as OSCs.
  27. endmenu