imx6q-clock.txt 889 B

12345678910111213141516171819202122232425262728293031
  1. * Clock bindings for Freescale i.MX6 Quad
  2. Required properties:
  3. - compatible: Should be "fsl,imx6q-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/imx6qdl-clock.h
  9. for the full list of i.MX6 Quad and DualLite clock IDs.
  10. Examples:
  11. #include <dt-bindings/clock/imx6qdl-clock.h>
  12. clks: ccm@020c4000 {
  13. compatible = "fsl,imx6q-ccm";
  14. reg = <0x020c4000 0x4000>;
  15. interrupts = <0 87 0x04 0 88 0x04>;
  16. #clock-cells = <1>;
  17. };
  18. uart1: serial@02020000 {
  19. compatible = "fsl,imx6q-uart", "fsl,imx21-uart";
  20. reg = <0x02020000 0x4000>;
  21. interrupts = <0 26 0x04>;
  22. clocks = <&clks IMX6QDL_CLK_UART_IPG>, <&clks IMX6QDL_CLK_UART_SERIAL>;
  23. clock-names = "ipg", "per";
  24. status = "disabled";
  25. };