Thierry Reding | 140fd97 | 2011-12-21 08:04:13 +0100 | [diff] [blame] | 1 | Tegra SoC PWFM controller |
| 2 | |
| 3 | Required 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 Pinchart | ebeec0a | 2013-07-18 00:54:23 +0200 | [diff] [blame] | 8 | - #pwm-cells: should be 2. See pwm.txt in this directory for a description of |
| 9 | the cells format. |
Stephen Warren | d8f6479 | 2013-11-06 14:00:25 -0700 | [diff] [blame^] | 10 | - clocks: Must contain one entry, for the module clock. |
| 11 | See ../clocks/clock-bindings.txt for details. |
Thierry Reding | 140fd97 | 2011-12-21 08:04:13 +0100 | [diff] [blame] | 12 | |
| 13 | Example: |
| 14 | |
| 15 | pwm: pwm@7000a000 { |
| 16 | compatible = "nvidia,tegra20-pwm"; |
| 17 | reg = <0x7000a000 0x100>; |
| 18 | #pwm-cells = <2>; |
Stephen Warren | d8f6479 | 2013-11-06 14:00:25 -0700 | [diff] [blame^] | 19 | clocks = <&tegra_car 17>; |
Thierry Reding | 140fd97 | 2011-12-21 08:04:13 +0100 | [diff] [blame] | 20 | }; |