Lines Matching full:clock
1 * Samsung Exynos5410 Clock Controller
3 The Exynos5410 clock controller generates and supplies clock to various
8 - compatible: should be "samsung,exynos5410-clock"
13 - #clock-cells: should be 1.
15 - clocks: should contain an entry specifying the root clock from external
16 oscillator supplied through XXTI or XusbXTI pin. This clock should be
17 defined using standard clock bindings with "fin_pll" clock-output-name.
18 That clock is being passed internally to the 9 PLLs.
21 dt-bindings/clock/exynos5410.h header and can be used in device
24 Example 1: An example of a clock controller node is listed below.
27 compatible = "fixed-clock";
28 clock-frequency = <24000000>;
29 clock-output-names = "fin_pll";
30 #clock-cells = <0>;
33 clock: clock-controller@10010000 {
34 compatible = "samsung,exynos5410-clock";
36 #clock-cells = <1>;
40 Example 2: UART controller node that consumes the clock generated by the clock
41 controller. Refer to the standard clock bindings for information
42 about 'clocks' and 'clock-names' property.
48 clocks = <&clock CLK_UART0>, <&clock CLK_SCLK_UART0>;
49 clock-names = "uart", "clk_uart_baud0";