aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2013-08-30 06:38:34 -0400
committerThierry Reding <thierry.reding@gmail.com>2013-10-16 03:20:09 -0400
commit22ceeee16eb8f0d04de3ef43a5174fb30ec18af9 (patch)
tree6c04eb3878e69ba47dbf33c76f0bad5cc8517fc1 /Documentation
parent8265b2e4e62632b01f998095d1bbda4d281629fe (diff)
pwm-backlight: Add power supply support
Backlights require a power supply to work properly. This commit adds a regulator to power up and power down the backlight. Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/devicetree/bindings/video/backlight/pwm-backlight.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/video/backlight/pwm-backlight.txt b/Documentation/devicetree/bindings/video/backlight/pwm-backlight.txt
index 72810cc2dbc1..764db86d441a 100644
--- a/Documentation/devicetree/bindings/video/backlight/pwm-backlight.txt
+++ b/Documentation/devicetree/bindings/video/backlight/pwm-backlight.txt
@@ -10,6 +10,7 @@ Required properties:
10 last value in the array represents a 100% duty cycle (brightest). 10 last value in the array represents a 100% duty cycle (brightest).
11 - default-brightness-level: the default brightness level (index into the 11 - default-brightness-level: the default brightness level (index into the
12 array defined by the "brightness-levels" property) 12 array defined by the "brightness-levels" property)
13 - power-supply: regulator for supply voltage
13 14
14Optional properties: 15Optional properties:
15 - pwm-names: a list of names for the PWM devices specified in the 16 - pwm-names: a list of names for the PWM devices specified in the
@@ -29,5 +30,6 @@ Example:
29 brightness-levels = <0 4 8 16 32 64 128 255>; 30 brightness-levels = <0 4 8 16 32 64 128 255>;
30 default-brightness-level = <6>; 31 default-brightness-level = <6>;
31 32
33 power-supply = <&vdd_bl_reg>;
32 enable-gpios = <&gpio 58 0>; 34 enable-gpios = <&gpio 58 0>;
33 }; 35 };