Message ID | 20190624203114.93277-5-mka@chromium.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | backlight: Expose brightness curve type through sysfs | expand |
On Mon 2019-06-24 13:31:13, Matthias Kaehlcke wrote: > Check if a brightness curve specified in the device tree is linear or > not and set the corresponding property accordingly. This makes the > scale type available to userspace via the 'scale' sysfs attribute. > > To determine if a curve is linear it is compared to a interpolated linear > curve between min and max brightness. The curve is considered linear if > no value deviates more than +/-5% of ${brightness_range} from their > interpolated value. I don't think this works. Some hardware does takes brightness in perceptual units, converting it in the LED controller. Pavel
On Wed, Jun 26, 2019 at 04:56:18PM +0200, Pavel Machek wrote: > On Mon 2019-06-24 13:31:13, Matthias Kaehlcke wrote: > > Check if a brightness curve specified in the device tree is linear or > > not and set the corresponding property accordingly. This makes the > > scale type available to userspace via the 'scale' sysfs attribute. > > > > To determine if a curve is linear it is compared to a interpolated linear > > curve between min and max brightness. The curve is considered linear if > > no value deviates more than +/-5% of ${brightness_range} from their > > interpolated value. > > I don't think this works. Some hardware does takes brightness in perceptual units, > converting it in the LED controller. This check is exclusive to PWM backlights so I'd like to double check that you are thinking specifically of hardware that takes it's signal from the PWM and works in perceptual units? I don't recall any examples being offered when we reviewed the auto-generated CIE tables (although since that can be overriden by DT it was not of the same gravity and this example). Daniel.
On Fri 2019-06-28 08:55:16, Daniel Thompson wrote: > On Wed, Jun 26, 2019 at 04:56:18PM +0200, Pavel Machek wrote: > > On Mon 2019-06-24 13:31:13, Matthias Kaehlcke wrote: > > > Check if a brightness curve specified in the device tree is linear or > > > not and set the corresponding property accordingly. This makes the > > > scale type available to userspace via the 'scale' sysfs attribute. > > > > > > To determine if a curve is linear it is compared to a interpolated linear > > > curve between min and max brightness. The curve is considered linear if > > > no value deviates more than +/-5% of ${brightness_range} from their > > > interpolated value. > > > > I don't think this works. Some hardware does takes brightness in perceptual units, > > converting it in the LED controller. > > This check is exclusive to PWM backlights so I'd like to double check > that you are thinking specifically of hardware that takes it's signal > from the PWM and works in perceptual units? I missed that details. Taking PWM input then converting it to perceptual units would indeed be strange. Sorry, Pavel
diff --git a/drivers/video/backlight/pwm_bl.c b/drivers/video/backlight/pwm_bl.c index f067fe7aa35d..2297fb4af49d 100644 --- a/drivers/video/backlight/pwm_bl.c +++ b/drivers/video/backlight/pwm_bl.c @@ -404,6 +404,31 @@ int pwm_backlight_brightness_default(struct device *dev, } #endif +static bool pwm_backlight_is_linear(struct platform_pwm_backlight_data *data) +{ + unsigned int nlevels = data->max_brightness + 1; + unsigned int min_val = data->levels[0]; + unsigned int max_val = data->levels[nlevels - 1]; + /* + * Multiplying by 128 means that even in pathological cases such + * as (max_val - min_val) == nlevels the error at max_val is less + * than 1%. + */ + unsigned int slope = (128 * (max_val - min_val)) / nlevels; + unsigned int margin = (max_val - min_val) / 20; /* 5% */ + int i; + + for (i = 1; i < nlevels; i++) { + unsigned int linear_value = min_val + ((i * slope) / 128); + unsigned int delta = abs(linear_value - data->levels[i]); + + if (delta > margin) + return false; + } + + return true; +} + static int pwm_backlight_initial_power_state(const struct pwm_bl_data *pb) { struct device_node *node = pb->dev->of_node; @@ -567,6 +592,11 @@ static int pwm_backlight_probe(struct platform_device *pdev) pb->levels = data->levels; } + + if (pwm_backlight_is_linear(data)) + props.scale = BACKLIGHT_SCALE_LINEAR; + else + props.scale = BACKLIGHT_SCALE_NON_LINEAR; } else if (!data->max_brightness) { /* * If no brightness levels are provided and max_brightness is