exynos5440-clock.txt 800 B

12345678910111213141516171819202122232425262728
  1. * Samsung Exynos5440 Clock Controller
  2. The Exynos5440 clock controller generates and supplies clock to various
  3. controllers within the Exynos5440 SoC.
  4. Required Properties:
  5. - compatible: should be "samsung,exynos5440-clock".
  6. - reg: physical base address of the controller and length of memory mapped
  7. region.
  8. - #clock-cells: should be 1.
  9. Each clock is assigned an identifier and client nodes can use this identifier
  10. to specify the clock which they consume.
  11. All available clocks are defined as preprocessor macros in
  12. dt-bindings/clock/exynos5440.h header and can be used in device
  13. tree sources.
  14. Example: An example of a clock controller node is listed below.
  15. clock: clock-controller@0x10010000 {
  16. compatible = "samsung,exynos5440-clock";
  17. reg = <0x160000 0x10000>;
  18. #clock-cells = <1>;
  19. };