blob: f28128717dccb53affce73b1a825648402cd025c [file] [log] [blame]
Thierry Reding140fd972011-12-21 08:04:13 +01001Tegra SoC PWFM controller
2
3Required properties:
4- compatible: should be one of:
5 - "nvidia,tegra20-pwm"
6 - "nvidia,tegra30-pwm"
7- reg: physical base address and length of the controller's registers
Laurent Pinchartebeec0a2013-07-18 00:54:23 +02008- #pwm-cells: should be 2. See pwm.txt in this directory for a description of
9 the cells format.
Stephen Warrend8f64792013-11-06 14:00:25 -070010- clocks: Must contain one entry, for the module clock.
11 See ../clocks/clock-bindings.txt for details.
Thierry Reding140fd972011-12-21 08:04:13 +010012
13Example:
14
15 pwm: pwm@7000a000 {
16 compatible = "nvidia,tegra20-pwm";
17 reg = <0x7000a000 0x100>;
18 #pwm-cells = <2>;
Stephen Warrend8f64792013-11-06 14:00:25 -070019 clocks = <&tegra_car 17>;
Thierry Reding140fd972011-12-21 08:04:13 +010020 };