Skip to content

Commit

Permalink
dt-bindings: clk: samsung: Document the DMC domain of Exynos3250 CMU
Browse files Browse the repository at this point in the history
Document the new compatible for clock in DMC (Dynamic Memory
Controller) domain of Exynos3250 Clock Management Unit (CMU).

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Tomasz Figa <tomasz.figa@gmail.com>
  • Loading branch information
Krzysztof Kozlowski authored and Tomasz Figa committed Sep 22, 2014
1 parent d0e73ea commit 07ccf02
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Documentation/devicetree/bindings/clock/exynos3250-clock.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Required Properties:

- compatible: should be one of the following.
- "samsung,exynos3250-cmu" - controller compatible with Exynos3250 SoC.
- "samsung,exynos3250-cmu-dmc" - controller compatible with
Exynos3250 SoC for Dynamic Memory Controller domain.

- reg: physical base address of the controller and length of memory mapped
region.
Expand All @@ -20,14 +22,20 @@ All available clocks are defined as preprocessor macros in
dt-bindings/clock/exynos3250.h header and can be used in device
tree sources.

Example 1: An example of a clock controller node is listed below.
Example 1: Examples of clock controller nodes are listed below.

cmu: clock-controller@10030000 {
compatible = "samsung,exynos3250-cmu";
reg = <0x10030000 0x20000>;
#clock-cells = <1>;
};

cmu_dmc: clock-controller@105C0000 {
compatible = "samsung,exynos3250-cmu-dmc";
reg = <0x105C0000 0x2000>;
#clock-cells = <1>;
};

Example 2: UART controller node that consumes the clock generated by the clock
controller. Refer to the standard clock bindings for information
about 'clocks' and 'clock-names' property.
Expand Down

0 comments on commit 07ccf02

Please sign in to comment.