rockchip,rk3228-cru.txt 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. * Rockchip RK3228 Clock and Reset Unit
  2. The RK3228 clock controller generates and supplies clock to various
  3. controllers within the SoC and also implements a reset controller for SoC
  4. peripherals.
  5. Required Properties:
  6. - compatible: should be "rockchip,rk3228-cru"
  7. - reg: physical base address of the controller and length of memory mapped
  8. region.
  9. - #clock-cells: should be 1.
  10. - #reset-cells: should be 1.
  11. Optional Properties:
  12. - rockchip,grf: phandle to the syscon managing the "general register files"
  13. If missing pll rates are not changeable, due to the missing pll lock status.
  14. Each clock is assigned an identifier and client nodes can use this identifier
  15. to specify the clock which they consume. All available clocks are defined as
  16. preprocessor macros in the dt-bindings/clock/rk3228-cru.h headers and can be
  17. used in device tree sources. Similar macros exist for the reset sources in
  18. these files.
  19. External clocks:
  20. There are several clocks that are generated outside the SoC. It is expected
  21. that they are defined using standard clock bindings with following
  22. clock-output-names:
  23. - "xin24m" - crystal input - required,
  24. - "ext_i2s" - external I2S clock - optional,
  25. - "ext_gmac" - external GMAC clock - optional
  26. - "ext_hsadc" - external HSADC clock - optional
  27. - "phy_50m_out" - output clock of the pll in the mac phy
  28. Example: Clock controller node:
  29. cru: cru@20000000 {
  30. compatible = "rockchip,rk3228-cru";
  31. reg = <0x20000000 0x1000>;
  32. rockchip,grf = <&grf>;
  33. #clock-cells = <1>;
  34. #reset-cells = <1>;
  35. };
  36. Example: UART controller node that consumes the clock generated by the clock
  37. controller:
  38. uart0: serial@10110000 {
  39. compatible = "snps,dw-apb-uart";
  40. reg = <0x10110000 0x100>;
  41. interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
  42. reg-shift = <2>;
  43. reg-io-width = <4>;
  44. clocks = <&cru SCLK_UART0>;
  45. };