mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-06 20:53:54 +08:00
89650a1e3b
Convert generic PWM controller bindings to DT schema format using json-schema. The consumer bindings are provided by dt-schema. Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Acked-by: Stephen Boyd <sboyd@kernel.org> Acked-by: Paul Walmsley <paul.walmsley@sifive.com> Signed-off-by: Rob Herring <robh@kernel.org>
17 lines
410 B
Plaintext
17 lines
410 B
Plaintext
Atmel TCB PWM controller
|
|
|
|
Required properties:
|
|
- compatible: should be "atmel,tcb-pwm"
|
|
- #pwm-cells: should be 3. See pwm.yaml in this directory for a description of
|
|
the cells format. The only third cell flag supported by this binding is
|
|
PWM_POLARITY_INVERTED.
|
|
- tc-block: The Timer Counter block to use as a PWM chip.
|
|
|
|
Example:
|
|
|
|
pwm {
|
|
compatible = "atmel,tcb-pwm";
|
|
#pwm-cells = <3>;
|
|
tc-block = <1>;
|
|
};
|