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