exynos4415-clock.txt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. * Samsung Exynos4415 Clock Controller
  2. The Exynos4415 clock controller generates and supplies clock to various
  3. consumer devices within the Exynos4415 SoC.
  4. Required properties:
  5. - compatible: should be one of the following:
  6. - "samsung,exynos4415-cmu" - for the main system clocks controller
  7. (CMU_LEFTBUS, CMU_RIGHTBUS, CMU_TOP, CMU_CPU clock domains).
  8. - "samsung,exynos4415-cmu-dmc" - for the Exynos4415 SoC DRAM Memory
  9. Controller (DMC) domain clock controller.
  10. - reg: physical base address of the controller and length of memory mapped
  11. region.
  12. - #clock-cells: should be 1.
  13. Each clock is assigned an identifier and client nodes can use this identifier
  14. to specify the clock which they consume.
  15. All available clocks are defined as preprocessor macros in
  16. dt-bindings/clock/exynos4415.h header and can be used in device
  17. tree sources.
  18. Example 1: An example of a clock controller node is listed below.
  19. cmu: clock-controller@10030000 {
  20. compatible = "samsung,exynos4415-cmu";
  21. reg = <0x10030000 0x18000>;
  22. #clock-cells = <1>;
  23. };
  24. cmu-dmc: clock-controller@105C0000 {
  25. compatible = "samsung,exynos4415-cmu-dmc";
  26. reg = <0x105C0000 0x3000>;
  27. #clock-cells = <1>;
  28. };