imx27-clock.txt 790 B

12345678910111213141516171819202122232425262728
  1. * Clock bindings for Freescale i.MX27
  2. Required properties:
  3. - compatible: Should be "fsl,imx27-ccm"
  4. - reg: Address and length of the register set
  5. - interrupts: Should contain CCM interrupt
  6. - #clock-cells: Should be <1>
  7. The clock consumer should specify the desired clock by having the clock
  8. ID in its "clocks" phandle cell. See include/dt-bindings/clock/imx27-clock.h
  9. for the full list of i.MX27 clock IDs.
  10. Examples:
  11. clks: ccm@10027000{
  12. compatible = "fsl,imx27-ccm";
  13. reg = <0x10027000 0x1000>;
  14. #clock-cells = <1>;
  15. };
  16. uart1: serial@1000a000 {
  17. compatible = "fsl,imx27-uart", "fsl,imx21-uart";
  18. reg = <0x1000a000 0x1000>;
  19. interrupts = <20>;
  20. clocks = <&clks IMX27_CLK_UART1_IPG_GATE>,
  21. <&clks IMX27_CLK_PER1_GATE>;
  22. clock-names = "ipg", "per";
  23. status = "disabled";
  24. };