drm/i915/cnp: set min brightness from VBT
authorLee, Shawn C <[email protected]>
Wed, 13 Sep 2017 05:19:20 +0000 (13:19 +0800)
committerRodrigo Vivi <[email protected]>
Mon, 18 Sep 2017 22:22:33 +0000 (15:22 -0700)
Min brightness value from vbt was missing for CNP platform.
This setting have to refer backlight ic spec to restrict
min backlight output. Without this restriction, driver would
allow to configure lower brightness value and violate
backlight ic requirement.

Fixes: 4c9f7086ac6d ("drm/i915/cnp: Backlight support for CNP.")
Cc: Jani Nikula <[email protected]>
Signed-off-by: Shawn Lee <[email protected]>
Signed-off-by: Jani Nikula <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
(cherry picked from commit f44e354f857f207cd361269c5e38e1f96e0b616c)
Signed-off-by: Rodrigo Vivi <[email protected]>
drivers/gpu/drm/i915/intel_panel.c

index d4dd248ac9a8a1925699205fcd5cbbeb30bc55ae..3b1c5d783ee7ccf12fc9d0cda009ab695fef4e57 100644 (file)
@@ -1737,6 +1737,8 @@ cnp_setup_backlight(struct intel_connector *connector, enum pipe unused)
        if (!panel->backlight.max)
                return -ENODEV;
 
+       panel->backlight.min = get_backlight_min_vbt(connector);
+
        val = bxt_get_backlight(connector);
        val = intel_panel_compute_brightness(connector, val);
        panel->backlight.level = clamp(val, panel->backlight.min,