-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
backlight: Expose brightness curve type through sysfs
Backlight brightness curves can have different shapes. The two main types are linear and non-linear curves. The human eye doesn't perceive linearly increasing/decreasing brightness as linear (see also 88ba95b "backlight: pwm_bl: Compute brightness of LED linearly to human eye"), hence many backlights use non-linear (often logarithmic) brightness curves. The type of curve currently is opaque to userspace, so userspace often uses more or less reliable heuristics (like the number of brightness levels) to decide whether to treat a backlight device as linear or non-linear. Export the type of the brightness curve via the new sysfs attribute 'scale'. The value of the attribute can be 'linear', 'non-linear' or 'unknown'. For devices that don't provide information about the scale of their brightness curve the value of the 'scale' attribute is 'unknown'. Signed-off-by: Matthias Kaehlcke <mka@chromium.org> Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org> Signed-off-by: Lee Jones <lee.jones@linaro.org>
- Loading branch information
Matthias Kaehlcke
authored and
Lee Jones
committed
Sep 2, 2019
1 parent
6451e12
commit d55c028
Showing
4 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
What: /sys/class/backlight/<backlight>/scale | ||
Date: July 2019 | ||
KernelVersion: 5.4 | ||
Contact: Daniel Thompson <daniel.thompson@linaro.org> | ||
Description: | ||
Description of the scale of the brightness curve. | ||
|
||
The human eye senses brightness approximately logarithmically, | ||
hence linear changes in brightness are perceived as being | ||
non-linear. To achieve a linear perception of brightness changes | ||
controls like sliders need to apply a logarithmic mapping for | ||
backlights with a linear brightness curve. | ||
|
||
Possible values of the attribute are: | ||
|
||
unknown | ||
The scale of the brightness curve is unknown. | ||
|
||
linear | ||
The brightness changes linearly with each step. Brightness | ||
controls should apply a logarithmic mapping for a linear | ||
perception. | ||
|
||
non-linear | ||
The brightness changes non-linearly with each step. Brightness | ||
controls should use a linear mapping for a linear perception. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters