lsi,axm5516-clks.txt 801 B

1234567891011121314151617181920212223242526272829
  1. AXM5516 clock driver bindings
  2. -----------------------------
  3. Required properties :
  4. - compatible : shall contain "lsi,axm5516-clks"
  5. - reg : shall contain base register location and length
  6. - #clock-cells : shall contain 1
  7. The consumer specifies the desired clock by having the clock ID in its "clocks"
  8. phandle cell. See <dt-bindings/clock/lsi,axxia-clock.h> for the list of
  9. supported clock IDs.
  10. Example:
  11. clks: clock-controller@2010020000 {
  12. compatible = "lsi,axm5516-clks";
  13. #clock-cells = <1>;
  14. reg = <0x20 0x10020000 0 0x20000>;
  15. };
  16. serial0: uart@2010080000 {
  17. compatible = "arm,pl011", "arm,primecell";
  18. reg = <0x20 0x10080000 0 0x1000>;
  19. interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
  20. clocks = <&clks AXXIA_CLK_PER>;
  21. clock-names = "apb_pclk";
  22. };
  23. };