hix5hd2-clock.txt 836 B

12345678910111213141516171819202122232425262728293031
  1. * Hisilicon Hix5hd2 Clock Controller
  2. The hix5hd2 clock controller generates and supplies clock to various
  3. controllers within the hix5hd2 SoC.
  4. Required Properties:
  5. - compatible: should be "hisilicon,hix5hd2-clock"
  6. - reg: Address and length of the register set
  7. - #clock-cells: Should be <1>
  8. Each clock is assigned an identifier and client nodes use this identifier
  9. to specify the clock which they consume.
  10. All these identifier could be found in <dt-bindings/clock/hix5hd2-clock.h>.
  11. Examples:
  12. clock: clock@f8a22000 {
  13. compatible = "hisilicon,hix5hd2-clock";
  14. reg = <0xf8a22000 0x1000>;
  15. #clock-cells = <1>;
  16. };
  17. uart0: uart@f8b00000 {
  18. compatible = "arm,pl011", "arm,primecell";
  19. reg = <0xf8b00000 0x1000>;
  20. interrupts = <0 49 4>;
  21. clocks = <&clock HIX5HD2_FIXED_83M>;
  22. clock-names = "apb_pclk";
  23. status = "disabled";
  24. };