forked from Minki/linux
48c926cd34
Improve the binding example by removing all the leading zeros to fix the following dtc warnings: Warning (unit_address_format): Node /XXX unit name should not have leading 0s Converted using the following command: perl -p -i -e 's/\@0+([0-9a-f])/\@$1/g' `find ./Documentation/devicetree/bindings "*.txt"` Some unnecessary changes were manually fixed. Signed-off-by: Marco Franchi <marco.franchi@nxp.com> Signed-off-by: Rob Herring <robh@kernel.org>
23 lines
647 B
Plaintext
23 lines
647 B
Plaintext
Allwinner sun4i and sun7i SoC PWM controller
|
|
|
|
Required properties:
|
|
- compatible: should be one of:
|
|
- "allwinner,sun4i-a10-pwm"
|
|
- "allwinner,sun5i-a10s-pwm"
|
|
- "allwinner,sun5i-a13-pwm"
|
|
- "allwinner,sun7i-a20-pwm"
|
|
- "allwinner,sun8i-h3-pwm"
|
|
- reg: physical base address and length of the controller's registers
|
|
- #pwm-cells: should be 3. See pwm.txt in this directory for a description of
|
|
the cells format.
|
|
- clocks: From common clock binding, handle to the parent clock.
|
|
|
|
Example:
|
|
|
|
pwm: pwm@1c20e00 {
|
|
compatible = "allwinner,sun7i-a20-pwm";
|
|
reg = <0x01c20e00 0xc>;
|
|
clocks = <&osc24M>;
|
|
#pwm-cells = <3>;
|
|
};
|