imx21-clock.txt 783 B

12345678910111213141516171819202122232425262728
  1. * Clock bindings for Freescale i.MX21
  2. Required properties:
  3. - compatible : Should be "fsl,imx21-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/imx21-clock.h
  9. for the full list of i.MX21 clock IDs.
  10. Examples:
  11. clks: ccm@10027000{
  12. compatible = "fsl,imx21-ccm";
  13. reg = <0x10027000 0x800>;
  14. #clock-cells = <1>;
  15. };
  16. uart1: serial@1000a000 {
  17. compatible = "fsl,imx21-uart";
  18. reg = <0x1000a000 0x1000>;
  19. interrupts = <20>;
  20. clocks = <&clks IMX21_CLK_UART1_IPG_GATE>,
  21. <&clks IMX21_CLK_PER1>;
  22. clock-names = "ipg", "per";
  23. status = "disabled";
  24. };