1 * Samsung Exynos5250 Clock Controller
3 The Exynos5250 clock controller generates and supplies clock to various
4 controllers within the Exynos5250 SoC.
8 - compatible: should be one of the following.
9 - "samsung,exynos5250-clock" - controller compatible with Exynos5250 SoC.
11 - reg: physical base address of the controller and length of memory mapped
14 - #clock-cells: should be 1.
16 The following is the list of clocks generated by the controller. Each clock is
17 assigned an identifier and client nodes use this identifier to specify the
18 clock which they consume.
24 ----------------------------
28 [Clock Gate for Special Clocks]
31 ----------------------------
68 [Peripheral Clock Gates]
71 ----------------------------
170 ----------------------------
174 Example 1: An example of a clock controller node is listed below.
176 clock: clock-controller@0x10010000 {
177 compatible = "samsung,exynos5250-clock";
178 reg = <0x10010000 0x30000>;
182 Example 2: UART controller node that consumes the clock generated by the clock
183 controller. Refer to the standard clock bindings for information
184 about 'clocks' and 'clock-names' property.
187 compatible = "samsung,exynos4210-uart";
188 reg = <0x13820000 0x100>;
189 interrupts = <0 54 0>;
190 clocks = <&clock 314>, <&clock 153>;
191 clock-names = "uart", "clk_uart_baud0";