imx1-clock.txt 703 B

1234567891011121314151617181920212223242526
  1. * Clock bindings for Freescale i.MX1 CPUs
  2. Required properties:
  3. - compatible: Should be "fsl,imx1-ccm".
  4. - reg: Address and length of the register set.
  5. - #clock-cells: Should be <1>.
  6. The clock consumer should specify the desired clock by having the clock
  7. ID in its "clocks" phandle cell. See include/dt-bindings/clock/imx1-clock.h
  8. for the full list of i.MX1 clock IDs.
  9. Examples:
  10. clks: ccm@0021b000 {
  11. #clock-cells = <1>;
  12. compatible = "fsl,imx1-ccm";
  13. reg = <0x0021b000 0x1000>;
  14. };
  15. pwm: pwm@00208000 {
  16. #pwm-cells = <2>;
  17. compatible = "fsl,imx1-pwm";
  18. reg = <0x00208000 0x1000>;
  19. interrupts = <34>;
  20. clocks = <&clks IMX1_CLK_DUMMY>, <&clks IMX1_CLK_PER1>;
  21. clock-names = "ipg", "per";
  22. };