diff options
author | Carsten Emde <C.Emde@osadl.org> | 2012-03-15 10:56:26 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2012-03-18 16:48:18 -0400 |
commit | 4dca20efb1a9c2efefc28ad2867e5d6c3f5e1955 (patch) | |
tree | 807c4807c91bf53db35fd28e05eaeaa846d41bde /drivers/gpu/drm/i915/intel_panel.c | |
parent | 7bd90909bbf9ce7c40e1da3d72b97b93839c188a (diff) |
drm/i915: panel: invert brightness via quirk
A machine may need to invert the panel backlight brightness value. This
patch adds the infrastructure for a quirk to do so.
Signed-off-by: Carsten Emde <C.Emde@osadl.org>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_panel.c')
-rw-r--r-- | drivers/gpu/drm/i915/intel_panel.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/drivers/gpu/drm/i915/intel_panel.c b/drivers/gpu/drm/i915/intel_panel.c index c4b3f349af69..7998ca6f594f 100644 --- a/drivers/gpu/drm/i915/intel_panel.c +++ b/drivers/gpu/drm/i915/intel_panel.c | |||
@@ -192,15 +192,22 @@ u32 intel_panel_get_max_backlight(struct drm_device *dev) | |||
192 | return max; | 192 | return max; |
193 | } | 193 | } |
194 | 194 | ||
195 | static bool i915_panel_invert_brightness; | 195 | static int i915_panel_invert_brightness; |
196 | MODULE_PARM_DESC(invert_brightness, "Invert backlight brightness, please " | 196 | MODULE_PARM_DESC(invert_brightness, "Invert backlight brightness " |
197 | "(-1 force normal, 0 machine defaults, 1 force inversion), please " | ||
197 | "report PCI device ID, subsystem vendor and subsystem device ID " | 198 | "report PCI device ID, subsystem vendor and subsystem device ID " |
198 | "to dri-devel@lists.freedesktop.org, if your machine needs it. " | 199 | "to dri-devel@lists.freedesktop.org, if your machine needs it. " |
199 | "It will then be included in an upcoming module version."); | 200 | "It will then be included in an upcoming module version."); |
200 | module_param_named(invert_brightness, i915_panel_invert_brightness, bool, 0600); | 201 | module_param_named(invert_brightness, i915_panel_invert_brightness, int, 0600); |
201 | static u32 intel_panel_compute_brightness(struct drm_device *dev, u32 val) | 202 | static u32 intel_panel_compute_brightness(struct drm_device *dev, u32 val) |
202 | { | 203 | { |
203 | if (i915_panel_invert_brightness) | 204 | struct drm_i915_private *dev_priv = dev->dev_private; |
205 | |||
206 | if (i915_panel_invert_brightness < 0) | ||
207 | return val; | ||
208 | |||
209 | if (i915_panel_invert_brightness > 0 || | ||
210 | dev_priv->quirks & QUIRK_INVERT_BRIGHTNESS) | ||
204 | return intel_panel_get_max_backlight(dev) - val; | 211 | return intel_panel_get_max_backlight(dev) - val; |
205 | 212 | ||
206 | return val; | 213 | return val; |