imx5-clock.txt 861 B

1234567891011121314151617181920212223242526272829
  1. * Clock bindings for Freescale i.MX5
  2. Required properties:
  3. - compatible: Should be "fsl,<soc>-ccm" , where <soc> can be imx51 or imx53
  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/imx5-clock.h
  9. for the full list of i.MX5 clock IDs.
  10. Examples (for mx53):
  11. clks: ccm@53fd4000{
  12. compatible = "fsl,imx53-ccm";
  13. reg = <0x53fd4000 0x4000>;
  14. interrupts = <0 71 0x04 0 72 0x04>;
  15. #clock-cells = <1>;
  16. };
  17. can1: can@53fc8000 {
  18. compatible = "fsl,imx53-flexcan", "fsl,p1010-flexcan";
  19. reg = <0x53fc8000 0x4000>;
  20. interrupts = <82>;
  21. clocks = <&clks IMX5_CLK_CAN1_IPG_GATE>, <&clks IMX5_CLK_CAN1_SERIAL_GATE>;
  22. clock-names = "ipg", "per";
  23. status = "disabled";
  24. };