lpc1850-sct-pwm.txt 706 B

1234567891011121314151617181920
  1. * NXP LPC18xx State Configurable Timer - Pulse Width Modulator driver
  2. Required properties:
  3. - compatible: Should be "nxp,lpc1850-sct-pwm"
  4. - reg: Should contain physical base address and length of pwm registers.
  5. - clocks: Must contain an entry for each entry in clock-names.
  6. See ../clock/clock-bindings.txt for details.
  7. - clock-names: Must include the following entries.
  8. - pwm: PWM operating clock.
  9. - #pwm-cells: Should be 3. See pwm.txt in this directory for the description
  10. of the cells format.
  11. Example:
  12. pwm: pwm@40000000 {
  13. compatible = "nxp,lpc1850-sct-pwm";
  14. reg = <0x40000000 0x1000>;
  15. clocks =<&ccu1 CLK_CPU_SCT>;
  16. clock-names = "pwm";
  17. #pwm-cells = <3>;
  18. };