diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-16 15:21:40 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-16 15:21:40 -0500 |
commit | 0bde7294e2ada03d0f1cc61cec51274081d9a9cf (patch) | |
tree | b1cf62a298b566d9bcc87d9f572f506b98809d66 /Documentation | |
parent | 449bf8d03c5b94f00cc014ff601c2fe2eebb5a6e (diff) | |
parent | 1b3f25ce991d528bd0d825b3f14a45904037a382 (diff) |
Merge tag 'pwm/for-3.13-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm
Pull pwm changes from Thierry Reding:
"Mostly bug fixes and clean up. There is a new driver, which is
actually moving a custom PWM driver from drivers/misc.
The majority of the patches are enhancements to the device tree
support in the pwm-backlight driver. Backlights can now additionally
be powered using a regulator and enabled using a GPIO in addition to
just the PWM input"
* tag 'pwm/for-3.13-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm: (30 commits)
Documentation/pwm: Update supported SoC name for pwm-samsung
pwm: samsung: Fix kernel warning while unexporting a channel
MAINTAINERS: Move PWM subsystem tree to kernel.org
Documentation/pwm: Fix trivial typos
pwm-backlight: Remove unused variable
pwm_backlight: avoid short blank screen while doing hibernation
pwm-backlight: Fix brightness adjustment
pwm: add ep93xx PWM support
pwm-backlight: Allow for non-increasing brightness levels
pwm-backlight: Add power supply support
pwm-backlight: Use new enable_gpio field
unicore32: Initialize PWM backlight enable_gpio field
ARM: shmobile: Initialize PWM backlight enable_gpio field
ARM: SAMSUNG: Initialize PWM backlight enable_gpio field
ARM: pxa: Initialize PWM backlight enable_gpio field
ARM: OMAP: Initialize PWM backlight enable_gpio field
pwm-backlight: Add optional enable GPIO
pwm-backlight: Track enable state
pwm-backlight: Refactor backlight power on/off
pwm-backlight: Improve readability
...
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/pwm/pwm-samsung.txt | 2 | ||||
-rw-r--r-- | Documentation/devicetree/bindings/video/backlight/pwm-backlight.txt | 7 | ||||
-rw-r--r-- | Documentation/pwm.txt | 4 |
3 files changed, 10 insertions, 3 deletions
diff --git a/Documentation/devicetree/bindings/pwm/pwm-samsung.txt b/Documentation/devicetree/bindings/pwm/pwm-samsung.txt index d61fccd40bad..5538de9c2007 100644 --- a/Documentation/devicetree/bindings/pwm/pwm-samsung.txt +++ b/Documentation/devicetree/bindings/pwm/pwm-samsung.txt | |||
@@ -15,7 +15,7 @@ Required properties: | |||
15 | samsung,s5pc100-pwm - for 32-bit timers present on S5PC100, S5PV210, | 15 | samsung,s5pc100-pwm - for 32-bit timers present on S5PC100, S5PV210, |
16 | Exynos4210 rev0 SoCs | 16 | Exynos4210 rev0 SoCs |
17 | samsung,exynos4210-pwm - for 32-bit timers present on Exynos4210, | 17 | samsung,exynos4210-pwm - for 32-bit timers present on Exynos4210, |
18 | Exynos4x12 and Exynos5250 SoCs | 18 | Exynos4x12, Exynos5250 and Exynos5420 SoCs |
19 | - reg: base address and size of register area | 19 | - reg: base address and size of register area |
20 | - interrupts: list of timer interrupts (one interrupt per timer, starting at | 20 | - interrupts: list of timer interrupts (one interrupt per timer, starting at |
21 | timer 0) | 21 | timer 0) |
diff --git a/Documentation/devicetree/bindings/video/backlight/pwm-backlight.txt b/Documentation/devicetree/bindings/video/backlight/pwm-backlight.txt index 1e4fc727f3b1..764db86d441a 100644 --- a/Documentation/devicetree/bindings/video/backlight/pwm-backlight.txt +++ b/Documentation/devicetree/bindings/video/backlight/pwm-backlight.txt | |||
@@ -10,12 +10,16 @@ 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 | ||
14 | Optional properties: | 15 | Optional 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 |
16 | "pwms" property (see PWM binding[0]) | 17 | "pwms" property (see PWM binding[0]) |
18 | - enable-gpios: contains a single GPIO specifier for the GPIO which enables | ||
19 | and disables the backlight (see GPIO binding[1]) | ||
17 | 20 | ||
18 | [0]: Documentation/devicetree/bindings/pwm/pwm.txt | 21 | [0]: Documentation/devicetree/bindings/pwm/pwm.txt |
22 | [1]: Documentation/devicetree/bindings/gpio/gpio.txt | ||
19 | 23 | ||
20 | Example: | 24 | Example: |
21 | 25 | ||
@@ -25,4 +29,7 @@ Example: | |||
25 | 29 | ||
26 | brightness-levels = <0 4 8 16 32 64 128 255>; | 30 | brightness-levels = <0 4 8 16 32 64 128 255>; |
27 | default-brightness-level = <6>; | 31 | default-brightness-level = <6>; |
32 | |||
33 | power-supply = <&vdd_bl_reg>; | ||
34 | enable-gpios = <&gpio 58 0>; | ||
28 | }; | 35 | }; |
diff --git a/Documentation/pwm.txt b/Documentation/pwm.txt index 1039b68fe9c6..93cb97974986 100644 --- a/Documentation/pwm.txt +++ b/Documentation/pwm.txt | |||
@@ -39,7 +39,7 @@ New users should use the pwm_get() function and pass to it the consumer | |||
39 | device or a consumer name. pwm_put() is used to free the PWM device. Managed | 39 | device or a consumer name. pwm_put() is used to free the PWM device. Managed |
40 | variants of these functions, devm_pwm_get() and devm_pwm_put(), also exist. | 40 | variants of these functions, devm_pwm_get() and devm_pwm_put(), also exist. |
41 | 41 | ||
42 | After being requested a PWM has to be configured using: | 42 | After being requested, a PWM has to be configured using: |
43 | 43 | ||
44 | int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns); | 44 | int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns); |
45 | 45 | ||
@@ -94,7 +94,7 @@ for new drivers to use the generic PWM framework. | |||
94 | A new PWM controller/chip can be added using pwmchip_add() and removed | 94 | A new PWM controller/chip can be added using pwmchip_add() and removed |
95 | again with pwmchip_remove(). pwmchip_add() takes a filled in struct | 95 | again with pwmchip_remove(). pwmchip_add() takes a filled in struct |
96 | pwm_chip as argument which provides a description of the PWM chip, the | 96 | pwm_chip as argument which provides a description of the PWM chip, the |
97 | number of PWM devices provider by the chip and the chip-specific | 97 | number of PWM devices provided by the chip and the chip-specific |
98 | implementation of the supported PWM operations to the framework. | 98 | implementation of the supported PWM operations to the framework. |
99 | 99 | ||
100 | Locking | 100 | Locking |