18c2ecf20Sopenharmony_ci* Rockchip RK3126/RK3128 Clock and Reset Unit
28c2ecf20Sopenharmony_ci
38c2ecf20Sopenharmony_ciThe RK3126/RK3128 clock controller generates and supplies clock to various
48c2ecf20Sopenharmony_cicontrollers within the SoC and also implements a reset controller for SoC
58c2ecf20Sopenharmony_ciperipherals.
68c2ecf20Sopenharmony_ci
78c2ecf20Sopenharmony_ciRequired Properties:
88c2ecf20Sopenharmony_ci
98c2ecf20Sopenharmony_ci- compatible: should be "rockchip,rk3126-cru" or "rockchip,rk3128-cru"
108c2ecf20Sopenharmony_ci  "rockchip,rk3126-cru" - controller compatible with RK3126 SoC.
118c2ecf20Sopenharmony_ci  "rockchip,rk3128-cru" - controller compatible with RK3128 SoC.
128c2ecf20Sopenharmony_ci- reg: physical base address of the controller and length of memory mapped
138c2ecf20Sopenharmony_ci  region.
148c2ecf20Sopenharmony_ci- #clock-cells: should be 1.
158c2ecf20Sopenharmony_ci- #reset-cells: should be 1.
168c2ecf20Sopenharmony_ci
178c2ecf20Sopenharmony_ciOptional Properties:
188c2ecf20Sopenharmony_ci
198c2ecf20Sopenharmony_ci- rockchip,grf: phandle to the syscon managing the "general register files"
208c2ecf20Sopenharmony_ci  If missing pll rates are not changeable, due to the missing pll lock status.
218c2ecf20Sopenharmony_ci
228c2ecf20Sopenharmony_ciEach clock is assigned an identifier and client nodes can use this identifier
238c2ecf20Sopenharmony_cito specify the clock which they consume. All available clocks are defined as
248c2ecf20Sopenharmony_cipreprocessor macros in the dt-bindings/clock/rk3128-cru.h headers and can be
258c2ecf20Sopenharmony_ciused in device tree sources. Similar macros exist for the reset sources in
268c2ecf20Sopenharmony_cithese files.
278c2ecf20Sopenharmony_ci
288c2ecf20Sopenharmony_ciExternal clocks:
298c2ecf20Sopenharmony_ci
308c2ecf20Sopenharmony_ciThere are several clocks that are generated outside the SoC. It is expected
318c2ecf20Sopenharmony_cithat they are defined using standard clock bindings with following
328c2ecf20Sopenharmony_ciclock-output-names:
338c2ecf20Sopenharmony_ci - "xin24m" - crystal input - required,
348c2ecf20Sopenharmony_ci - "ext_i2s" - external I2S clock - optional,
358c2ecf20Sopenharmony_ci - "gmac_clkin" - external GMAC clock - optional
368c2ecf20Sopenharmony_ci
378c2ecf20Sopenharmony_ciExample: Clock controller node:
388c2ecf20Sopenharmony_ci
398c2ecf20Sopenharmony_ci	cru: cru@20000000 {
408c2ecf20Sopenharmony_ci		compatible = "rockchip,rk3128-cru";
418c2ecf20Sopenharmony_ci		reg = <0x20000000 0x1000>;
428c2ecf20Sopenharmony_ci		rockchip,grf = <&grf>;
438c2ecf20Sopenharmony_ci
448c2ecf20Sopenharmony_ci		#clock-cells = <1>;
458c2ecf20Sopenharmony_ci		#reset-cells = <1>;
468c2ecf20Sopenharmony_ci	};
478c2ecf20Sopenharmony_ci
488c2ecf20Sopenharmony_ciExample: UART controller node that consumes the clock generated by the clock
498c2ecf20Sopenharmony_ci  controller:
508c2ecf20Sopenharmony_ci
518c2ecf20Sopenharmony_ci	uart2: serial@20068000 {
528c2ecf20Sopenharmony_ci		compatible = "rockchip,serial";
538c2ecf20Sopenharmony_ci		reg = <0x20068000 0x100>;
548c2ecf20Sopenharmony_ci		interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
558c2ecf20Sopenharmony_ci		clock-frequency = <24000000>;
568c2ecf20Sopenharmony_ci		clocks = <&cru SCLK_UART2>, <&cru PCLK_UART2>;
578c2ecf20Sopenharmony_ci		clock-names = "sclk_uart", "pclk_uart";
588c2ecf20Sopenharmony_ci	};
59