0001 * NXP LPC18xx State Configurable Timer - Pulse Width Modulator driver
0002
0003 Required properties:
0004 - compatible: Should be "nxp,lpc1850-sct-pwm"
0005 - reg: Should contain physical base address and length of pwm registers.
0006 - clocks: Must contain an entry for each entry in clock-names.
0007 See ../clock/clock-bindings.txt for details.
0008 - clock-names: Must include the following entries.
0009 - pwm: PWM operating clock.
0010 - #pwm-cells: Should be 3. See pwm.yaml in this directory for the description
0011 of the cells format.
0012
0013 Example:
0014 pwm: pwm@40000000 {
0015 compatible = "nxp,lpc1850-sct-pwm";
0016 reg = <0x40000000 0x1000>;
0017 clocks =<&ccu1 CLK_CPU_SCT>;
0018 clock-names = "pwm";
0019 #pwm-cells = <3>;
0020 };