forked from Minki/linux
4da722ca19
Pretty much any node can have a status property, so it doesn't need to be in examples. Converted with the following command and removed examples with SoC and board specific splits: git grep -l -E 'status.*=.*' Documentation/devicetree/ | xargs sed -i -E '/\sstatus.*=.*"(disabled|ok|okay)/d' Acked-by: Mark Rutland <mark.rutland@arm.com> Signed-off-by: Rob Herring <robh@kernel.org>
25 lines
719 B
Plaintext
25 lines
719 B
Plaintext
Amlogic Meson PWM Controller
|
|
============================
|
|
|
|
Required properties:
|
|
- compatible: Shall contain "amlogic,meson8b-pwm"
|
|
or "amlogic,meson-gxbb-pwm"
|
|
or "amlogic,meson-gxbb-ao-pwm"
|
|
- #pwm-cells: Should be 3. See pwm.txt in this directory for a description of
|
|
the cells format.
|
|
|
|
Optional properties:
|
|
- clocks: Could contain one or two parents clocks phandle for each of the two
|
|
PWM channels.
|
|
- clock-names: Could contain at least the "clkin0" and/or "clkin1" names.
|
|
|
|
Example:
|
|
|
|
pwm_ab: pwm@8550 {
|
|
compatible = "amlogic,meson-gxbb-pwm";
|
|
reg = <0x0 0x08550 0x0 0x10>;
|
|
#pwm-cells = <3>;
|
|
clocks = <&xtal>, <&xtal>;
|
|
clock-names = "clkin0", "clkin1";
|
|
}
|