Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2006-2010 Intel Corporation |
| 3 | * Copyright (c) 2006 Dave Airlie <airlied@linux.ie> |
| 4 | * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 6 | * copy of this software and associated documentation files (the "Software"), |
| 7 | * to deal in the Software without restriction, including without limitation |
| 8 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 9 | * and/or sell copies of the Software, and to permit persons to whom the |
| 10 | * Software is furnished to do so, subject to the following conditions: |
| 11 | * |
| 12 | * The above copyright notice and this permission notice (including the next |
| 13 | * paragraph) shall be included in all copies or substantial portions of the |
| 14 | * Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 21 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 22 | * DEALINGS IN THE SOFTWARE. |
| 23 | * |
| 24 | * Authors: |
| 25 | * Eric Anholt <eric@anholt.net> |
| 26 | * Dave Airlie <airlied@linux.ie> |
| 27 | * Jesse Barnes <jesse.barnes@intel.com> |
| 28 | * Chris Wilson <chris@chris-wilson.co.uk> |
| 29 | */ |
| 30 | |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 31 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 32 | |
Carsten Emde | 7bd9090 | 2012-03-15 15:56:25 +0100 | [diff] [blame] | 33 | #include <linux/moduleparam.h> |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 34 | #include "intel_drv.h" |
| 35 | |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 36 | #define PCI_LBPC 0xf4 /* legacy/combination backlight modes */ |
| 37 | |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 38 | void |
| 39 | intel_fixed_panel_mode(struct drm_display_mode *fixed_mode, |
| 40 | struct drm_display_mode *adjusted_mode) |
| 41 | { |
| 42 | adjusted_mode->hdisplay = fixed_mode->hdisplay; |
| 43 | adjusted_mode->hsync_start = fixed_mode->hsync_start; |
| 44 | adjusted_mode->hsync_end = fixed_mode->hsync_end; |
| 45 | adjusted_mode->htotal = fixed_mode->htotal; |
| 46 | |
| 47 | adjusted_mode->vdisplay = fixed_mode->vdisplay; |
| 48 | adjusted_mode->vsync_start = fixed_mode->vsync_start; |
| 49 | adjusted_mode->vsync_end = fixed_mode->vsync_end; |
| 50 | adjusted_mode->vtotal = fixed_mode->vtotal; |
| 51 | |
| 52 | adjusted_mode->clock = fixed_mode->clock; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | /* adjusted_mode has been preset to be the panel's fixed mode */ |
| 56 | void |
| 57 | intel_pch_panel_fitting(struct drm_device *dev, |
| 58 | int fitting_mode, |
Daniel Vetter | cb1793c | 2012-06-04 18:39:21 +0200 | [diff] [blame] | 59 | const struct drm_display_mode *mode, |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 60 | struct drm_display_mode *adjusted_mode) |
| 61 | { |
| 62 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 63 | int x, y, width, height; |
| 64 | |
| 65 | x = y = width = height = 0; |
| 66 | |
| 67 | /* Native modes don't need fitting */ |
| 68 | if (adjusted_mode->hdisplay == mode->hdisplay && |
| 69 | adjusted_mode->vdisplay == mode->vdisplay) |
| 70 | goto done; |
| 71 | |
| 72 | switch (fitting_mode) { |
| 73 | case DRM_MODE_SCALE_CENTER: |
| 74 | width = mode->hdisplay; |
| 75 | height = mode->vdisplay; |
| 76 | x = (adjusted_mode->hdisplay - width + 1)/2; |
| 77 | y = (adjusted_mode->vdisplay - height + 1)/2; |
| 78 | break; |
| 79 | |
| 80 | case DRM_MODE_SCALE_ASPECT: |
| 81 | /* Scale but preserve the aspect ratio */ |
| 82 | { |
| 83 | u32 scaled_width = adjusted_mode->hdisplay * mode->vdisplay; |
| 84 | u32 scaled_height = mode->hdisplay * adjusted_mode->vdisplay; |
| 85 | if (scaled_width > scaled_height) { /* pillar */ |
| 86 | width = scaled_height / mode->vdisplay; |
Adam Jackson | 302983e | 2011-07-13 16:32:32 -0400 | [diff] [blame] | 87 | if (width & 1) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 88 | width++; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 89 | x = (adjusted_mode->hdisplay - width + 1) / 2; |
| 90 | y = 0; |
| 91 | height = adjusted_mode->vdisplay; |
| 92 | } else if (scaled_width < scaled_height) { /* letter */ |
| 93 | height = scaled_width / mode->hdisplay; |
Adam Jackson | 302983e | 2011-07-13 16:32:32 -0400 | [diff] [blame] | 94 | if (height & 1) |
| 95 | height++; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 96 | y = (adjusted_mode->vdisplay - height + 1) / 2; |
| 97 | x = 0; |
| 98 | width = adjusted_mode->hdisplay; |
| 99 | } else { |
| 100 | x = y = 0; |
| 101 | width = adjusted_mode->hdisplay; |
| 102 | height = adjusted_mode->vdisplay; |
| 103 | } |
| 104 | } |
| 105 | break; |
| 106 | |
| 107 | default: |
| 108 | case DRM_MODE_SCALE_FULLSCREEN: |
| 109 | x = y = 0; |
| 110 | width = adjusted_mode->hdisplay; |
| 111 | height = adjusted_mode->vdisplay; |
| 112 | break; |
| 113 | } |
| 114 | |
| 115 | done: |
| 116 | dev_priv->pch_pf_pos = (x << 16) | y; |
| 117 | dev_priv->pch_pf_size = (width << 16) | height; |
| 118 | } |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 119 | |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 120 | static int is_backlight_combination_mode(struct drm_device *dev) |
| 121 | { |
| 122 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 123 | |
| 124 | if (INTEL_INFO(dev)->gen >= 4) |
| 125 | return I915_READ(BLC_PWM_CTL2) & BLM_COMBINATION_MODE; |
| 126 | |
| 127 | if (IS_GEN2(dev)) |
| 128 | return I915_READ(BLC_PWM_CTL) & BLM_LEGACY_MODE; |
| 129 | |
| 130 | return 0; |
| 131 | } |
| 132 | |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 133 | static u32 i915_read_blc_pwm_ctl(struct drm_i915_private *dev_priv) |
| 134 | { |
| 135 | u32 val; |
| 136 | |
| 137 | /* Restore the CTL value if it lost, e.g. GPU reset */ |
| 138 | |
| 139 | if (HAS_PCH_SPLIT(dev_priv->dev)) { |
| 140 | val = I915_READ(BLC_PWM_PCH_CTL2); |
| 141 | if (dev_priv->saveBLC_PWM_CTL2 == 0) { |
| 142 | dev_priv->saveBLC_PWM_CTL2 = val; |
| 143 | } else if (val == 0) { |
| 144 | I915_WRITE(BLC_PWM_PCH_CTL2, |
Simon Que | 2aded1b | 2011-11-10 17:50:26 -0800 | [diff] [blame] | 145 | dev_priv->saveBLC_PWM_CTL2); |
| 146 | val = dev_priv->saveBLC_PWM_CTL2; |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 147 | } |
| 148 | } else { |
| 149 | val = I915_READ(BLC_PWM_CTL); |
| 150 | if (dev_priv->saveBLC_PWM_CTL == 0) { |
| 151 | dev_priv->saveBLC_PWM_CTL = val; |
| 152 | dev_priv->saveBLC_PWM_CTL2 = I915_READ(BLC_PWM_CTL2); |
| 153 | } else if (val == 0) { |
| 154 | I915_WRITE(BLC_PWM_CTL, |
| 155 | dev_priv->saveBLC_PWM_CTL); |
| 156 | I915_WRITE(BLC_PWM_CTL2, |
| 157 | dev_priv->saveBLC_PWM_CTL2); |
| 158 | val = dev_priv->saveBLC_PWM_CTL; |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | return val; |
| 163 | } |
| 164 | |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 165 | u32 intel_panel_get_max_backlight(struct drm_device *dev) |
| 166 | { |
| 167 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 168 | u32 max; |
| 169 | |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 170 | max = i915_read_blc_pwm_ctl(dev_priv); |
| 171 | if (max == 0) { |
| 172 | /* XXX add code here to query mode clock or hardware clock |
| 173 | * and program max PWM appropriately. |
| 174 | */ |
Joe Perches | a70491c | 2012-03-18 13:00:11 -0700 | [diff] [blame] | 175 | pr_warn_once("fixme: max PWM is zero\n"); |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 176 | return 1; |
| 177 | } |
| 178 | |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 179 | if (HAS_PCH_SPLIT(dev)) { |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 180 | max >>= 16; |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 181 | } else { |
Keith Packard | ca88479 | 2011-11-18 11:09:24 -0800 | [diff] [blame] | 182 | if (INTEL_INFO(dev)->gen < 4) |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 183 | max >>= 17; |
Keith Packard | ca88479 | 2011-11-18 11:09:24 -0800 | [diff] [blame] | 184 | else |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 185 | max >>= 16; |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 186 | |
| 187 | if (is_backlight_combination_mode(dev)) |
| 188 | max *= 0xff; |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 189 | } |
| 190 | |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 191 | DRM_DEBUG_DRIVER("max backlight PWM = %d\n", max); |
| 192 | return max; |
| 193 | } |
| 194 | |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 195 | static int i915_panel_invert_brightness; |
| 196 | MODULE_PARM_DESC(invert_brightness, "Invert backlight brightness " |
| 197 | "(-1 force normal, 0 machine defaults, 1 force inversion), please " |
Carsten Emde | 7bd9090 | 2012-03-15 15:56:25 +0100 | [diff] [blame] | 198 | "report PCI device ID, subsystem vendor and subsystem device ID " |
| 199 | "to dri-devel@lists.freedesktop.org, if your machine needs it. " |
| 200 | "It will then be included in an upcoming module version."); |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 201 | module_param_named(invert_brightness, i915_panel_invert_brightness, int, 0600); |
Carsten Emde | 7bd9090 | 2012-03-15 15:56:25 +0100 | [diff] [blame] | 202 | static u32 intel_panel_compute_brightness(struct drm_device *dev, u32 val) |
| 203 | { |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 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) |
Carsten Emde | 7bd9090 | 2012-03-15 15:56:25 +0100 | [diff] [blame] | 211 | return intel_panel_get_max_backlight(dev) - val; |
| 212 | |
| 213 | return val; |
| 214 | } |
| 215 | |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 216 | u32 intel_panel_get_backlight(struct drm_device *dev) |
| 217 | { |
| 218 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 219 | u32 val; |
| 220 | |
| 221 | if (HAS_PCH_SPLIT(dev)) { |
| 222 | val = I915_READ(BLC_PWM_CPU_CTL) & BACKLIGHT_DUTY_CYCLE_MASK; |
| 223 | } else { |
| 224 | val = I915_READ(BLC_PWM_CTL) & BACKLIGHT_DUTY_CYCLE_MASK; |
Keith Packard | ca88479 | 2011-11-18 11:09:24 -0800 | [diff] [blame] | 225 | if (INTEL_INFO(dev)->gen < 4) |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 226 | val >>= 1; |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 227 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 228 | if (is_backlight_combination_mode(dev)) { |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 229 | u8 lbpc; |
| 230 | |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 231 | pci_read_config_byte(dev->pdev, PCI_LBPC, &lbpc); |
| 232 | val *= lbpc; |
| 233 | } |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 234 | } |
| 235 | |
Carsten Emde | 7bd9090 | 2012-03-15 15:56:25 +0100 | [diff] [blame] | 236 | val = intel_panel_compute_brightness(dev, val); |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 237 | DRM_DEBUG_DRIVER("get backlight PWM = %d\n", val); |
| 238 | return val; |
| 239 | } |
| 240 | |
| 241 | static void intel_pch_panel_set_backlight(struct drm_device *dev, u32 level) |
| 242 | { |
| 243 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 244 | u32 val = I915_READ(BLC_PWM_CPU_CTL) & ~BACKLIGHT_DUTY_CYCLE_MASK; |
| 245 | I915_WRITE(BLC_PWM_CPU_CTL, val | level); |
| 246 | } |
| 247 | |
Takashi Iwai | f52c619 | 2011-10-14 11:45:40 +0200 | [diff] [blame] | 248 | static void intel_panel_actually_set_backlight(struct drm_device *dev, u32 level) |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 249 | { |
| 250 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 251 | u32 tmp; |
| 252 | |
| 253 | DRM_DEBUG_DRIVER("set backlight PWM = %d\n", level); |
Carsten Emde | 7bd9090 | 2012-03-15 15:56:25 +0100 | [diff] [blame] | 254 | level = intel_panel_compute_brightness(dev, level); |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 255 | |
| 256 | if (HAS_PCH_SPLIT(dev)) |
| 257 | return intel_pch_panel_set_backlight(dev, level); |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 258 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 259 | if (is_backlight_combination_mode(dev)) { |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 260 | u32 max = intel_panel_get_max_backlight(dev); |
| 261 | u8 lbpc; |
| 262 | |
| 263 | lbpc = level * 0xfe / max + 1; |
| 264 | level /= lbpc; |
| 265 | pci_write_config_byte(dev->pdev, PCI_LBPC, lbpc); |
| 266 | } |
| 267 | |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 268 | tmp = I915_READ(BLC_PWM_CTL); |
Keith Packard | ca88479 | 2011-11-18 11:09:24 -0800 | [diff] [blame] | 269 | if (INTEL_INFO(dev)->gen < 4) |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 270 | level <<= 1; |
Keith Packard | ca88479 | 2011-11-18 11:09:24 -0800 | [diff] [blame] | 271 | tmp &= ~BACKLIGHT_DUTY_CYCLE_MASK; |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 272 | I915_WRITE(BLC_PWM_CTL, tmp | level); |
| 273 | } |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 274 | |
Takashi Iwai | f52c619 | 2011-10-14 11:45:40 +0200 | [diff] [blame] | 275 | void intel_panel_set_backlight(struct drm_device *dev, u32 level) |
| 276 | { |
| 277 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 278 | |
| 279 | dev_priv->backlight_level = level; |
| 280 | if (dev_priv->backlight_enabled) |
| 281 | intel_panel_actually_set_backlight(dev, level); |
| 282 | } |
| 283 | |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 284 | void intel_panel_disable_backlight(struct drm_device *dev) |
| 285 | { |
| 286 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 287 | |
Takashi Iwai | f52c619 | 2011-10-14 11:45:40 +0200 | [diff] [blame] | 288 | dev_priv->backlight_enabled = false; |
| 289 | intel_panel_actually_set_backlight(dev, 0); |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 290 | } |
| 291 | |
| 292 | void intel_panel_enable_backlight(struct drm_device *dev) |
| 293 | { |
| 294 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 295 | |
| 296 | if (dev_priv->backlight_level == 0) |
| 297 | dev_priv->backlight_level = intel_panel_get_max_backlight(dev); |
| 298 | |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 299 | dev_priv->backlight_enabled = true; |
Takashi Iwai | f52c619 | 2011-10-14 11:45:40 +0200 | [diff] [blame] | 300 | intel_panel_actually_set_backlight(dev, dev_priv->backlight_level); |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 301 | } |
| 302 | |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 303 | static void intel_panel_init_backlight(struct drm_device *dev) |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 304 | { |
| 305 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 306 | |
Indan Zupancic | c8303e7 | 2011-01-12 11:59:19 +0000 | [diff] [blame] | 307 | dev_priv->backlight_level = intel_panel_get_backlight(dev); |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 308 | dev_priv->backlight_enabled = dev_priv->backlight_level != 0; |
| 309 | } |
Chris Wilson | fe16d94 | 2011-02-12 10:29:38 +0000 | [diff] [blame] | 310 | |
| 311 | enum drm_connector_status |
| 312 | intel_panel_detect(struct drm_device *dev) |
| 313 | { |
Dave Airlie | bcd5023 | 2011-03-14 14:17:55 +1000 | [diff] [blame] | 314 | #if 0 |
Chris Wilson | fe16d94 | 2011-02-12 10:29:38 +0000 | [diff] [blame] | 315 | struct drm_i915_private *dev_priv = dev->dev_private; |
Dave Airlie | bcd5023 | 2011-03-14 14:17:55 +1000 | [diff] [blame] | 316 | #endif |
Chris Wilson | fe16d94 | 2011-02-12 10:29:38 +0000 | [diff] [blame] | 317 | |
Chris Wilson | fca8740 | 2011-02-17 13:44:48 +0000 | [diff] [blame] | 318 | if (i915_panel_ignore_lid) |
| 319 | return i915_panel_ignore_lid > 0 ? |
| 320 | connector_status_connected : |
| 321 | connector_status_disconnected; |
| 322 | |
Dave Airlie | bcd5023 | 2011-03-14 14:17:55 +1000 | [diff] [blame] | 323 | /* opregion lid state on HP 2540p is wrong at boot up, |
| 324 | * appears to be either the BIOS or Linux ACPI fault */ |
| 325 | #if 0 |
Chris Wilson | fe16d94 | 2011-02-12 10:29:38 +0000 | [diff] [blame] | 326 | /* Assume that the BIOS does not lie through the OpRegion... */ |
| 327 | if (dev_priv->opregion.lid_state) |
| 328 | return ioread32(dev_priv->opregion.lid_state) & 0x1 ? |
| 329 | connector_status_connected : |
| 330 | connector_status_disconnected; |
Dave Airlie | bcd5023 | 2011-03-14 14:17:55 +1000 | [diff] [blame] | 331 | #endif |
Chris Wilson | fe16d94 | 2011-02-12 10:29:38 +0000 | [diff] [blame] | 332 | |
| 333 | return connector_status_unknown; |
| 334 | } |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 335 | |
| 336 | #ifdef CONFIG_BACKLIGHT_CLASS_DEVICE |
| 337 | static int intel_panel_update_status(struct backlight_device *bd) |
| 338 | { |
| 339 | struct drm_device *dev = bl_get_data(bd); |
| 340 | intel_panel_set_backlight(dev, bd->props.brightness); |
| 341 | return 0; |
| 342 | } |
| 343 | |
| 344 | static int intel_panel_get_brightness(struct backlight_device *bd) |
| 345 | { |
| 346 | struct drm_device *dev = bl_get_data(bd); |
Takashi Iwai | 04b3867 | 2011-11-16 10:58:03 +0100 | [diff] [blame] | 347 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 348 | return dev_priv->backlight_level; |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | static const struct backlight_ops intel_panel_bl_ops = { |
| 352 | .update_status = intel_panel_update_status, |
| 353 | .get_brightness = intel_panel_get_brightness, |
| 354 | }; |
| 355 | |
| 356 | int intel_panel_setup_backlight(struct drm_device *dev) |
| 357 | { |
| 358 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 359 | struct backlight_properties props; |
| 360 | struct drm_connector *connector; |
| 361 | |
| 362 | intel_panel_init_backlight(dev); |
| 363 | |
| 364 | if (dev_priv->int_lvds_connector) |
| 365 | connector = dev_priv->int_lvds_connector; |
| 366 | else if (dev_priv->int_edp_connector) |
| 367 | connector = dev_priv->int_edp_connector; |
| 368 | else |
| 369 | return -ENODEV; |
| 370 | |
Corentin Chary | af437cf | 2012-05-22 10:29:46 +0100 | [diff] [blame] | 371 | memset(&props, 0, sizeof(props)); |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 372 | props.type = BACKLIGHT_RAW; |
| 373 | props.max_brightness = intel_panel_get_max_backlight(dev); |
| 374 | dev_priv->backlight = |
| 375 | backlight_device_register("intel_backlight", |
| 376 | &connector->kdev, dev, |
| 377 | &intel_panel_bl_ops, &props); |
| 378 | |
| 379 | if (IS_ERR(dev_priv->backlight)) { |
| 380 | DRM_ERROR("Failed to register backlight: %ld\n", |
| 381 | PTR_ERR(dev_priv->backlight)); |
| 382 | dev_priv->backlight = NULL; |
| 383 | return -ENODEV; |
| 384 | } |
| 385 | dev_priv->backlight->props.brightness = intel_panel_get_backlight(dev); |
| 386 | return 0; |
| 387 | } |
| 388 | |
| 389 | void intel_panel_destroy_backlight(struct drm_device *dev) |
| 390 | { |
| 391 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 392 | if (dev_priv->backlight) |
| 393 | backlight_device_unregister(dev_priv->backlight); |
| 394 | } |
| 395 | #else |
| 396 | int intel_panel_setup_backlight(struct drm_device *dev) |
| 397 | { |
| 398 | intel_panel_init_backlight(dev); |
| 399 | return 0; |
| 400 | } |
| 401 | |
| 402 | void intel_panel_destroy_backlight(struct drm_device *dev) |
| 403 | { |
| 404 | return; |
| 405 | } |
| 406 | #endif |