imx-pwm.txt 505 B

1234567891011121314151617
  1. Freescale i.MX PWM controller
  2. Required properties:
  3. - compatible: should be "fsl,<soc>-pwm"
  4. - reg: physical base address and length of the controller's registers
  5. - #pwm-cells: should be 2. The first cell specifies the per-chip index
  6. of the PWM to use and the second cell is the period in nanoseconds.
  7. - interrupts: The interrupt for the pwm controller
  8. Example:
  9. pwm1: pwm@53fb4000 {
  10. #pwm-cells = <2>;
  11. compatible = "fsl,imx53-pwm", "fsl,imx27-pwm";
  12. reg = <0x53fb4000 0x4000>;
  13. interrupts = <61>;
  14. };