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 |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 57 | intel_pch_panel_fitting(struct intel_crtc *intel_crtc, |
| 58 | struct intel_crtc_config *pipe_config, |
| 59 | int fitting_mode) |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 60 | { |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 61 | struct drm_display_mode *mode, *adjusted_mode; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 62 | int x, y, width, height; |
| 63 | |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 64 | mode = &pipe_config->requested_mode; |
| 65 | adjusted_mode = &pipe_config->adjusted_mode; |
| 66 | |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 67 | x = y = width = height = 0; |
| 68 | |
| 69 | /* Native modes don't need fitting */ |
| 70 | if (adjusted_mode->hdisplay == mode->hdisplay && |
| 71 | adjusted_mode->vdisplay == mode->vdisplay) |
| 72 | goto done; |
| 73 | |
| 74 | switch (fitting_mode) { |
| 75 | case DRM_MODE_SCALE_CENTER: |
| 76 | width = mode->hdisplay; |
| 77 | height = mode->vdisplay; |
| 78 | x = (adjusted_mode->hdisplay - width + 1)/2; |
| 79 | y = (adjusted_mode->vdisplay - height + 1)/2; |
| 80 | break; |
| 81 | |
| 82 | case DRM_MODE_SCALE_ASPECT: |
| 83 | /* Scale but preserve the aspect ratio */ |
| 84 | { |
| 85 | u32 scaled_width = adjusted_mode->hdisplay * mode->vdisplay; |
| 86 | u32 scaled_height = mode->hdisplay * adjusted_mode->vdisplay; |
| 87 | if (scaled_width > scaled_height) { /* pillar */ |
| 88 | width = scaled_height / mode->vdisplay; |
Adam Jackson | 302983e | 2011-07-13 16:32:32 -0400 | [diff] [blame] | 89 | if (width & 1) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 90 | width++; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 91 | x = (adjusted_mode->hdisplay - width + 1) / 2; |
| 92 | y = 0; |
| 93 | height = adjusted_mode->vdisplay; |
| 94 | } else if (scaled_width < scaled_height) { /* letter */ |
| 95 | height = scaled_width / mode->hdisplay; |
Adam Jackson | 302983e | 2011-07-13 16:32:32 -0400 | [diff] [blame] | 96 | if (height & 1) |
| 97 | height++; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 98 | y = (adjusted_mode->vdisplay - height + 1) / 2; |
| 99 | x = 0; |
| 100 | width = adjusted_mode->hdisplay; |
| 101 | } else { |
| 102 | x = y = 0; |
| 103 | width = adjusted_mode->hdisplay; |
| 104 | height = adjusted_mode->vdisplay; |
| 105 | } |
| 106 | } |
| 107 | break; |
| 108 | |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 109 | case DRM_MODE_SCALE_FULLSCREEN: |
| 110 | x = y = 0; |
| 111 | width = adjusted_mode->hdisplay; |
| 112 | height = adjusted_mode->vdisplay; |
| 113 | break; |
Jesse Barnes | ab3e67f | 2013-04-25 12:55:03 -0700 | [diff] [blame] | 114 | |
| 115 | default: |
| 116 | WARN(1, "bad panel fit mode: %d\n", fitting_mode); |
| 117 | return; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | done: |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 121 | pipe_config->pch_pfit.pos = (x << 16) | y; |
| 122 | pipe_config->pch_pfit.size = (width << 16) | height; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 123 | } |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 124 | |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 125 | static void |
| 126 | centre_horizontally(struct drm_display_mode *mode, |
| 127 | int width) |
| 128 | { |
| 129 | u32 border, sync_pos, blank_width, sync_width; |
| 130 | |
| 131 | /* keep the hsync and hblank widths constant */ |
| 132 | sync_width = mode->crtc_hsync_end - mode->crtc_hsync_start; |
| 133 | blank_width = mode->crtc_hblank_end - mode->crtc_hblank_start; |
| 134 | sync_pos = (blank_width - sync_width + 1) / 2; |
| 135 | |
| 136 | border = (mode->hdisplay - width + 1) / 2; |
| 137 | border += border & 1; /* make the border even */ |
| 138 | |
| 139 | mode->crtc_hdisplay = width; |
| 140 | mode->crtc_hblank_start = width + border; |
| 141 | mode->crtc_hblank_end = mode->crtc_hblank_start + blank_width; |
| 142 | |
| 143 | mode->crtc_hsync_start = mode->crtc_hblank_start + sync_pos; |
| 144 | mode->crtc_hsync_end = mode->crtc_hsync_start + sync_width; |
| 145 | } |
| 146 | |
| 147 | static void |
| 148 | centre_vertically(struct drm_display_mode *mode, |
| 149 | int height) |
| 150 | { |
| 151 | u32 border, sync_pos, blank_width, sync_width; |
| 152 | |
| 153 | /* keep the vsync and vblank widths constant */ |
| 154 | sync_width = mode->crtc_vsync_end - mode->crtc_vsync_start; |
| 155 | blank_width = mode->crtc_vblank_end - mode->crtc_vblank_start; |
| 156 | sync_pos = (blank_width - sync_width + 1) / 2; |
| 157 | |
| 158 | border = (mode->vdisplay - height + 1) / 2; |
| 159 | |
| 160 | mode->crtc_vdisplay = height; |
| 161 | mode->crtc_vblank_start = height + border; |
| 162 | mode->crtc_vblank_end = mode->crtc_vblank_start + blank_width; |
| 163 | |
| 164 | mode->crtc_vsync_start = mode->crtc_vblank_start + sync_pos; |
| 165 | mode->crtc_vsync_end = mode->crtc_vsync_start + sync_width; |
| 166 | } |
| 167 | |
| 168 | static inline u32 panel_fitter_scaling(u32 source, u32 target) |
| 169 | { |
| 170 | /* |
| 171 | * Floating point operation is not supported. So the FACTOR |
| 172 | * is defined, which can avoid the floating point computation |
| 173 | * when calculating the panel ratio. |
| 174 | */ |
| 175 | #define ACCURACY 12 |
| 176 | #define FACTOR (1 << ACCURACY) |
| 177 | u32 ratio = source * FACTOR / target; |
| 178 | return (FACTOR * ratio + FACTOR/2) / FACTOR; |
| 179 | } |
| 180 | |
| 181 | void intel_gmch_panel_fitting(struct intel_crtc *intel_crtc, |
| 182 | struct intel_crtc_config *pipe_config, |
| 183 | int fitting_mode) |
| 184 | { |
| 185 | struct drm_device *dev = intel_crtc->base.dev; |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 186 | u32 pfit_control = 0, pfit_pgm_ratios = 0, border = 0; |
| 187 | struct drm_display_mode *mode, *adjusted_mode; |
| 188 | |
| 189 | mode = &pipe_config->requested_mode; |
| 190 | adjusted_mode = &pipe_config->adjusted_mode; |
| 191 | |
| 192 | /* Native modes don't need fitting */ |
| 193 | if (adjusted_mode->hdisplay == mode->hdisplay && |
| 194 | adjusted_mode->vdisplay == mode->vdisplay) |
| 195 | goto out; |
| 196 | |
Daniel Vetter | 21d8a47 | 2013-07-12 08:07:30 +0200 | [diff] [blame] | 197 | drm_mode_set_crtcinfo(adjusted_mode, 0); |
| 198 | pipe_config->timings_set = true; |
| 199 | |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 200 | switch (fitting_mode) { |
| 201 | case DRM_MODE_SCALE_CENTER: |
| 202 | /* |
| 203 | * For centered modes, we have to calculate border widths & |
| 204 | * heights and modify the values programmed into the CRTC. |
| 205 | */ |
| 206 | centre_horizontally(adjusted_mode, mode->hdisplay); |
| 207 | centre_vertically(adjusted_mode, mode->vdisplay); |
| 208 | border = LVDS_BORDER_ENABLE; |
| 209 | break; |
| 210 | case DRM_MODE_SCALE_ASPECT: |
| 211 | /* Scale but preserve the aspect ratio */ |
| 212 | if (INTEL_INFO(dev)->gen >= 4) { |
| 213 | u32 scaled_width = adjusted_mode->hdisplay * |
| 214 | mode->vdisplay; |
| 215 | u32 scaled_height = mode->hdisplay * |
| 216 | adjusted_mode->vdisplay; |
| 217 | |
| 218 | /* 965+ is easy, it does everything in hw */ |
| 219 | if (scaled_width > scaled_height) |
| 220 | pfit_control |= PFIT_ENABLE | |
| 221 | PFIT_SCALING_PILLAR; |
| 222 | else if (scaled_width < scaled_height) |
| 223 | pfit_control |= PFIT_ENABLE | |
| 224 | PFIT_SCALING_LETTER; |
| 225 | else if (adjusted_mode->hdisplay != mode->hdisplay) |
| 226 | pfit_control |= PFIT_ENABLE | PFIT_SCALING_AUTO; |
| 227 | } else { |
| 228 | u32 scaled_width = adjusted_mode->hdisplay * |
| 229 | mode->vdisplay; |
| 230 | u32 scaled_height = mode->hdisplay * |
| 231 | adjusted_mode->vdisplay; |
| 232 | /* |
| 233 | * For earlier chips we have to calculate the scaling |
| 234 | * ratio by hand and program it into the |
| 235 | * PFIT_PGM_RATIO register |
| 236 | */ |
| 237 | if (scaled_width > scaled_height) { /* pillar */ |
| 238 | centre_horizontally(adjusted_mode, |
| 239 | scaled_height / |
| 240 | mode->vdisplay); |
| 241 | |
| 242 | border = LVDS_BORDER_ENABLE; |
| 243 | if (mode->vdisplay != adjusted_mode->vdisplay) { |
| 244 | u32 bits = panel_fitter_scaling(mode->vdisplay, adjusted_mode->vdisplay); |
| 245 | pfit_pgm_ratios |= (bits << PFIT_HORIZ_SCALE_SHIFT | |
| 246 | bits << PFIT_VERT_SCALE_SHIFT); |
| 247 | pfit_control |= (PFIT_ENABLE | |
| 248 | VERT_INTERP_BILINEAR | |
| 249 | HORIZ_INTERP_BILINEAR); |
| 250 | } |
| 251 | } else if (scaled_width < scaled_height) { /* letter */ |
| 252 | centre_vertically(adjusted_mode, |
| 253 | scaled_width / |
| 254 | mode->hdisplay); |
| 255 | |
| 256 | border = LVDS_BORDER_ENABLE; |
| 257 | if (mode->hdisplay != adjusted_mode->hdisplay) { |
| 258 | u32 bits = panel_fitter_scaling(mode->hdisplay, adjusted_mode->hdisplay); |
| 259 | pfit_pgm_ratios |= (bits << PFIT_HORIZ_SCALE_SHIFT | |
| 260 | bits << PFIT_VERT_SCALE_SHIFT); |
| 261 | pfit_control |= (PFIT_ENABLE | |
| 262 | VERT_INTERP_BILINEAR | |
| 263 | HORIZ_INTERP_BILINEAR); |
| 264 | } |
| 265 | } else { |
| 266 | /* Aspects match, Let hw scale both directions */ |
| 267 | pfit_control |= (PFIT_ENABLE | |
| 268 | VERT_AUTO_SCALE | HORIZ_AUTO_SCALE | |
| 269 | VERT_INTERP_BILINEAR | |
| 270 | HORIZ_INTERP_BILINEAR); |
| 271 | } |
| 272 | } |
| 273 | break; |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 274 | case DRM_MODE_SCALE_FULLSCREEN: |
| 275 | /* |
| 276 | * Full scaling, even if it changes the aspect ratio. |
| 277 | * Fortunately this is all done for us in hw. |
| 278 | */ |
| 279 | if (mode->vdisplay != adjusted_mode->vdisplay || |
| 280 | mode->hdisplay != adjusted_mode->hdisplay) { |
| 281 | pfit_control |= PFIT_ENABLE; |
| 282 | if (INTEL_INFO(dev)->gen >= 4) |
| 283 | pfit_control |= PFIT_SCALING_AUTO; |
| 284 | else |
| 285 | pfit_control |= (VERT_AUTO_SCALE | |
| 286 | VERT_INTERP_BILINEAR | |
| 287 | HORIZ_AUTO_SCALE | |
| 288 | HORIZ_INTERP_BILINEAR); |
| 289 | } |
| 290 | break; |
Jesse Barnes | ab3e67f | 2013-04-25 12:55:03 -0700 | [diff] [blame] | 291 | default: |
| 292 | WARN(1, "bad panel fit mode: %d\n", fitting_mode); |
| 293 | return; |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 294 | } |
| 295 | |
| 296 | /* 965+ wants fuzzy fitting */ |
| 297 | /* FIXME: handle multiple panels by failing gracefully */ |
| 298 | if (INTEL_INFO(dev)->gen >= 4) |
| 299 | pfit_control |= ((intel_crtc->pipe << PFIT_PIPE_SHIFT) | |
| 300 | PFIT_FILTER_FUZZY); |
| 301 | |
| 302 | out: |
| 303 | if ((pfit_control & PFIT_ENABLE) == 0) { |
| 304 | pfit_control = 0; |
| 305 | pfit_pgm_ratios = 0; |
| 306 | } |
| 307 | |
| 308 | /* Make sure pre-965 set dither correctly for 18bpp panels. */ |
| 309 | if (INTEL_INFO(dev)->gen < 4 && pipe_config->pipe_bpp == 18) |
| 310 | pfit_control |= PANEL_8TO6_DITHER_ENABLE; |
| 311 | |
Daniel Vetter | 2deefda | 2013-04-25 22:52:17 +0200 | [diff] [blame] | 312 | pipe_config->gmch_pfit.control = pfit_control; |
| 313 | pipe_config->gmch_pfit.pgm_ratios = pfit_pgm_ratios; |
Daniel Vetter | 68fc874 | 2013-04-25 22:52:16 +0200 | [diff] [blame] | 314 | pipe_config->gmch_pfit.lvds_border_bits = border; |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 315 | } |
| 316 | |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 317 | static int is_backlight_combination_mode(struct drm_device *dev) |
| 318 | { |
| 319 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 320 | |
| 321 | if (INTEL_INFO(dev)->gen >= 4) |
| 322 | return I915_READ(BLC_PWM_CTL2) & BLM_COMBINATION_MODE; |
| 323 | |
| 324 | if (IS_GEN2(dev)) |
| 325 | return I915_READ(BLC_PWM_CTL) & BLM_LEGACY_MODE; |
| 326 | |
| 327 | return 0; |
| 328 | } |
| 329 | |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 330 | /* XXX: query mode clock or hardware clock and program max PWM appropriately |
| 331 | * when it's 0. |
| 332 | */ |
Jani Nikula | bfd7590 | 2012-12-04 16:36:28 +0200 | [diff] [blame] | 333 | static u32 i915_read_blc_pwm_ctl(struct drm_device *dev) |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 334 | { |
Jani Nikula | bfd7590 | 2012-12-04 16:36:28 +0200 | [diff] [blame] | 335 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 336 | u32 val; |
| 337 | |
Ville Syrjälä | df0a679 | 2013-05-22 11:36:40 +0300 | [diff] [blame] | 338 | WARN_ON_SMP(!spin_is_locked(&dev_priv->backlight.lock)); |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 339 | |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 340 | /* Restore the CTL value if it lost, e.g. GPU reset */ |
| 341 | |
| 342 | if (HAS_PCH_SPLIT(dev_priv->dev)) { |
| 343 | val = I915_READ(BLC_PWM_PCH_CTL2); |
Daniel Vetter | f4c956a | 2012-11-02 19:55:02 +0100 | [diff] [blame] | 344 | if (dev_priv->regfile.saveBLC_PWM_CTL2 == 0) { |
| 345 | dev_priv->regfile.saveBLC_PWM_CTL2 = val; |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 346 | } else if (val == 0) { |
Daniel Vetter | f4c956a | 2012-11-02 19:55:02 +0100 | [diff] [blame] | 347 | val = dev_priv->regfile.saveBLC_PWM_CTL2; |
Jani Nikula | bfd7590 | 2012-12-04 16:36:28 +0200 | [diff] [blame] | 348 | I915_WRITE(BLC_PWM_PCH_CTL2, val); |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 349 | } |
| 350 | } else { |
| 351 | val = I915_READ(BLC_PWM_CTL); |
Daniel Vetter | f4c956a | 2012-11-02 19:55:02 +0100 | [diff] [blame] | 352 | if (dev_priv->regfile.saveBLC_PWM_CTL == 0) { |
| 353 | dev_priv->regfile.saveBLC_PWM_CTL = val; |
Jani Nikula | bfd7590 | 2012-12-04 16:36:28 +0200 | [diff] [blame] | 354 | if (INTEL_INFO(dev)->gen >= 4) |
| 355 | dev_priv->regfile.saveBLC_PWM_CTL2 = |
| 356 | I915_READ(BLC_PWM_CTL2); |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 357 | } else if (val == 0) { |
Daniel Vetter | f4c956a | 2012-11-02 19:55:02 +0100 | [diff] [blame] | 358 | val = dev_priv->regfile.saveBLC_PWM_CTL; |
Jani Nikula | bfd7590 | 2012-12-04 16:36:28 +0200 | [diff] [blame] | 359 | I915_WRITE(BLC_PWM_CTL, val); |
| 360 | if (INTEL_INFO(dev)->gen >= 4) |
| 361 | I915_WRITE(BLC_PWM_CTL2, |
| 362 | dev_priv->regfile.saveBLC_PWM_CTL2); |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 363 | } |
| 364 | } |
| 365 | |
| 366 | return val; |
| 367 | } |
| 368 | |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 369 | static u32 intel_panel_get_max_backlight(struct drm_device *dev) |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 370 | { |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 371 | u32 max; |
| 372 | |
Jani Nikula | bfd7590 | 2012-12-04 16:36:28 +0200 | [diff] [blame] | 373 | max = i915_read_blc_pwm_ctl(dev); |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 374 | |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 375 | if (HAS_PCH_SPLIT(dev)) { |
Chris Wilson | 0b0b053 | 2010-11-23 09:45:50 +0000 | [diff] [blame] | 376 | max >>= 16; |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 377 | } else { |
Keith Packard | ca88479 | 2011-11-18 11:09:24 -0800 | [diff] [blame] | 378 | if (INTEL_INFO(dev)->gen < 4) |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 379 | max >>= 17; |
Keith Packard | ca88479 | 2011-11-18 11:09:24 -0800 | [diff] [blame] | 380 | else |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 381 | max >>= 16; |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 382 | |
| 383 | if (is_backlight_combination_mode(dev)) |
| 384 | max *= 0xff; |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 385 | } |
| 386 | |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 387 | DRM_DEBUG_DRIVER("max backlight PWM = %d\n", max); |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 388 | |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 389 | return max; |
| 390 | } |
| 391 | |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 392 | static int i915_panel_invert_brightness; |
| 393 | MODULE_PARM_DESC(invert_brightness, "Invert backlight brightness " |
| 394 | "(-1 force normal, 0 machine defaults, 1 force inversion), please " |
Carsten Emde | 7bd9090 | 2012-03-15 15:56:25 +0100 | [diff] [blame] | 395 | "report PCI device ID, subsystem vendor and subsystem device ID " |
| 396 | "to dri-devel@lists.freedesktop.org, if your machine needs it. " |
| 397 | "It will then be included in an upcoming module version."); |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 398 | module_param_named(invert_brightness, i915_panel_invert_brightness, int, 0600); |
Carsten Emde | 7bd9090 | 2012-03-15 15:56:25 +0100 | [diff] [blame] | 399 | static u32 intel_panel_compute_brightness(struct drm_device *dev, u32 val) |
| 400 | { |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 401 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 402 | |
| 403 | if (i915_panel_invert_brightness < 0) |
| 404 | return val; |
| 405 | |
| 406 | if (i915_panel_invert_brightness > 0 || |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 407 | dev_priv->quirks & QUIRK_INVERT_BRIGHTNESS) { |
| 408 | u32 max = intel_panel_get_max_backlight(dev); |
| 409 | if (max) |
| 410 | return max - val; |
| 411 | } |
Carsten Emde | 7bd9090 | 2012-03-15 15:56:25 +0100 | [diff] [blame] | 412 | |
| 413 | return val; |
| 414 | } |
| 415 | |
Stéphane Marchesin | faea35d | 2012-07-30 13:51:38 -0700 | [diff] [blame] | 416 | static u32 intel_panel_get_backlight(struct drm_device *dev) |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 417 | { |
| 418 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 419 | u32 val; |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 420 | unsigned long flags; |
| 421 | |
| 422 | spin_lock_irqsave(&dev_priv->backlight.lock, flags); |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 423 | |
| 424 | if (HAS_PCH_SPLIT(dev)) { |
| 425 | val = I915_READ(BLC_PWM_CPU_CTL) & BACKLIGHT_DUTY_CYCLE_MASK; |
| 426 | } else { |
| 427 | val = I915_READ(BLC_PWM_CTL) & BACKLIGHT_DUTY_CYCLE_MASK; |
Keith Packard | ca88479 | 2011-11-18 11:09:24 -0800 | [diff] [blame] | 428 | if (INTEL_INFO(dev)->gen < 4) |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 429 | val >>= 1; |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 430 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 431 | if (is_backlight_combination_mode(dev)) { |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 432 | u8 lbpc; |
| 433 | |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 434 | pci_read_config_byte(dev->pdev, PCI_LBPC, &lbpc); |
| 435 | val *= lbpc; |
| 436 | } |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 437 | } |
| 438 | |
Carsten Emde | 7bd9090 | 2012-03-15 15:56:25 +0100 | [diff] [blame] | 439 | val = intel_panel_compute_brightness(dev, val); |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 440 | |
| 441 | spin_unlock_irqrestore(&dev_priv->backlight.lock, flags); |
| 442 | |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 443 | DRM_DEBUG_DRIVER("get backlight PWM = %d\n", val); |
| 444 | return val; |
| 445 | } |
| 446 | |
| 447 | static void intel_pch_panel_set_backlight(struct drm_device *dev, u32 level) |
| 448 | { |
| 449 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 450 | u32 val = I915_READ(BLC_PWM_CPU_CTL) & ~BACKLIGHT_DUTY_CYCLE_MASK; |
| 451 | I915_WRITE(BLC_PWM_CPU_CTL, val | level); |
| 452 | } |
| 453 | |
Takashi Iwai | f52c619 | 2011-10-14 11:45:40 +0200 | [diff] [blame] | 454 | 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] | 455 | { |
| 456 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 457 | u32 tmp; |
| 458 | |
| 459 | DRM_DEBUG_DRIVER("set backlight PWM = %d\n", level); |
Carsten Emde | 7bd9090 | 2012-03-15 15:56:25 +0100 | [diff] [blame] | 460 | level = intel_panel_compute_brightness(dev, level); |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 461 | |
| 462 | if (HAS_PCH_SPLIT(dev)) |
| 463 | return intel_pch_panel_set_backlight(dev, level); |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 464 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 465 | if (is_backlight_combination_mode(dev)) { |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 466 | u32 max = intel_panel_get_max_backlight(dev); |
| 467 | u8 lbpc; |
| 468 | |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 469 | /* we're screwed, but keep behaviour backwards compatible */ |
| 470 | if (!max) |
| 471 | max = 1; |
| 472 | |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 473 | lbpc = level * 0xfe / max + 1; |
| 474 | level /= lbpc; |
| 475 | pci_write_config_byte(dev->pdev, PCI_LBPC, lbpc); |
| 476 | } |
| 477 | |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 478 | tmp = I915_READ(BLC_PWM_CTL); |
Daniel Vetter | a726915 | 2012-11-20 14:50:08 +0100 | [diff] [blame] | 479 | if (INTEL_INFO(dev)->gen < 4) |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 480 | level <<= 1; |
Keith Packard | ca88479 | 2011-11-18 11:09:24 -0800 | [diff] [blame] | 481 | tmp &= ~BACKLIGHT_DUTY_CYCLE_MASK; |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 482 | I915_WRITE(BLC_PWM_CTL, tmp | level); |
| 483 | } |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 484 | |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 485 | /* set backlight brightness to level in range [0..max] */ |
| 486 | void intel_panel_set_backlight(struct drm_device *dev, u32 level, u32 max) |
Takashi Iwai | f52c619 | 2011-10-14 11:45:40 +0200 | [diff] [blame] | 487 | { |
| 488 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 489 | u32 freq; |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 490 | unsigned long flags; |
| 491 | |
| 492 | spin_lock_irqsave(&dev_priv->backlight.lock, flags); |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 493 | |
| 494 | freq = intel_panel_get_max_backlight(dev); |
| 495 | if (!freq) { |
| 496 | /* we are screwed, bail out */ |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 497 | goto out; |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 498 | } |
| 499 | |
Aaron Lu | 22505b8 | 2013-08-02 09:16:03 +0800 | [diff] [blame] | 500 | /* scale to hardware, but be careful to not overflow */ |
| 501 | if (freq < max) |
| 502 | level = level * freq / max; |
| 503 | else |
| 504 | level = freq / max * level; |
Takashi Iwai | f52c619 | 2011-10-14 11:45:40 +0200 | [diff] [blame] | 505 | |
Jani Nikula | 31ad8ec | 2013-04-02 15:48:09 +0300 | [diff] [blame] | 506 | dev_priv->backlight.level = level; |
| 507 | if (dev_priv->backlight.device) |
| 508 | dev_priv->backlight.device->props.brightness = level; |
Jani Nikula | b6b3ba5 | 2013-03-12 11:44:15 +0200 | [diff] [blame] | 509 | |
Jani Nikula | 31ad8ec | 2013-04-02 15:48:09 +0300 | [diff] [blame] | 510 | if (dev_priv->backlight.enabled) |
Takashi Iwai | f52c619 | 2011-10-14 11:45:40 +0200 | [diff] [blame] | 511 | intel_panel_actually_set_backlight(dev, level); |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 512 | out: |
| 513 | spin_unlock_irqrestore(&dev_priv->backlight.lock, flags); |
Takashi Iwai | f52c619 | 2011-10-14 11:45:40 +0200 | [diff] [blame] | 514 | } |
| 515 | |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 516 | void intel_panel_disable_backlight(struct drm_device *dev) |
| 517 | { |
| 518 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 519 | unsigned long flags; |
| 520 | |
Jani Nikula | 3f57757 | 2013-07-25 14:31:30 +0300 | [diff] [blame] | 521 | /* |
| 522 | * Do not disable backlight on the vgaswitcheroo path. When switching |
| 523 | * away from i915, the other client may depend on i915 to handle the |
| 524 | * backlight. This will leave the backlight on unnecessarily when |
| 525 | * another client is not activated. |
| 526 | */ |
| 527 | if (dev->switch_power_state == DRM_SWITCH_POWER_CHANGING) { |
| 528 | DRM_DEBUG_DRIVER("Skipping backlight disable on vga switch\n"); |
| 529 | return; |
| 530 | } |
| 531 | |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 532 | spin_lock_irqsave(&dev_priv->backlight.lock, flags); |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 533 | |
Jani Nikula | 31ad8ec | 2013-04-02 15:48:09 +0300 | [diff] [blame] | 534 | dev_priv->backlight.enabled = false; |
Takashi Iwai | f52c619 | 2011-10-14 11:45:40 +0200 | [diff] [blame] | 535 | intel_panel_actually_set_backlight(dev, 0); |
Daniel Vetter | 24ded20 | 2012-06-05 12:14:54 +0200 | [diff] [blame] | 536 | |
| 537 | if (INTEL_INFO(dev)->gen >= 4) { |
Paulo Zanoni | a4f32fc | 2012-07-14 11:57:12 -0300 | [diff] [blame] | 538 | uint32_t reg, tmp; |
Daniel Vetter | 24ded20 | 2012-06-05 12:14:54 +0200 | [diff] [blame] | 539 | |
| 540 | reg = HAS_PCH_SPLIT(dev) ? BLC_PWM_CPU_CTL2 : BLC_PWM_CTL2; |
| 541 | |
| 542 | I915_WRITE(reg, I915_READ(reg) & ~BLM_PWM_ENABLE); |
Paulo Zanoni | a4f32fc | 2012-07-14 11:57:12 -0300 | [diff] [blame] | 543 | |
| 544 | if (HAS_PCH_SPLIT(dev)) { |
| 545 | tmp = I915_READ(BLC_PWM_PCH_CTL1); |
| 546 | tmp &= ~BLM_PCH_PWM_ENABLE; |
| 547 | I915_WRITE(BLC_PWM_PCH_CTL1, tmp); |
| 548 | } |
Daniel Vetter | 24ded20 | 2012-06-05 12:14:54 +0200 | [diff] [blame] | 549 | } |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 550 | |
| 551 | spin_unlock_irqrestore(&dev_priv->backlight.lock, flags); |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 552 | } |
| 553 | |
Daniel Vetter | 24ded20 | 2012-06-05 12:14:54 +0200 | [diff] [blame] | 554 | void intel_panel_enable_backlight(struct drm_device *dev, |
| 555 | enum pipe pipe) |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 556 | { |
| 557 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 35ffda4 | 2013-04-25 16:49:25 +0300 | [diff] [blame] | 558 | enum transcoder cpu_transcoder = |
| 559 | intel_pipe_to_cpu_transcoder(dev_priv, pipe); |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 560 | unsigned long flags; |
| 561 | |
| 562 | spin_lock_irqsave(&dev_priv->backlight.lock, flags); |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 563 | |
Jani Nikula | 31ad8ec | 2013-04-02 15:48:09 +0300 | [diff] [blame] | 564 | if (dev_priv->backlight.level == 0) { |
| 565 | dev_priv->backlight.level = intel_panel_get_max_backlight(dev); |
| 566 | if (dev_priv->backlight.device) |
| 567 | dev_priv->backlight.device->props.brightness = |
| 568 | dev_priv->backlight.level; |
Jani Nikula | b6b3ba5 | 2013-03-12 11:44:15 +0200 | [diff] [blame] | 569 | } |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 570 | |
Daniel Vetter | 24ded20 | 2012-06-05 12:14:54 +0200 | [diff] [blame] | 571 | if (INTEL_INFO(dev)->gen >= 4) { |
| 572 | uint32_t reg, tmp; |
| 573 | |
| 574 | reg = HAS_PCH_SPLIT(dev) ? BLC_PWM_CPU_CTL2 : BLC_PWM_CTL2; |
| 575 | |
| 576 | |
| 577 | tmp = I915_READ(reg); |
| 578 | |
| 579 | /* Note that this can also get called through dpms changes. And |
| 580 | * we don't track the backlight dpms state, hence check whether |
| 581 | * we have to do anything first. */ |
| 582 | if (tmp & BLM_PWM_ENABLE) |
Takashi Iwai | 770c123 | 2012-08-11 08:56:42 +0200 | [diff] [blame] | 583 | goto set_level; |
Daniel Vetter | 24ded20 | 2012-06-05 12:14:54 +0200 | [diff] [blame] | 584 | |
Ben Widawsky | 7eb552a | 2013-03-13 14:05:41 -0700 | [diff] [blame] | 585 | if (INTEL_INFO(dev)->num_pipes == 3) |
Daniel Vetter | 24ded20 | 2012-06-05 12:14:54 +0200 | [diff] [blame] | 586 | tmp &= ~BLM_PIPE_SELECT_IVB; |
| 587 | else |
| 588 | tmp &= ~BLM_PIPE_SELECT; |
| 589 | |
Jani Nikula | 35ffda4 | 2013-04-25 16:49:25 +0300 | [diff] [blame] | 590 | if (cpu_transcoder == TRANSCODER_EDP) |
| 591 | tmp |= BLM_TRANSCODER_EDP; |
| 592 | else |
| 593 | tmp |= BLM_PIPE(cpu_transcoder); |
Daniel Vetter | 24ded20 | 2012-06-05 12:14:54 +0200 | [diff] [blame] | 594 | tmp &= ~BLM_PWM_ENABLE; |
| 595 | |
| 596 | I915_WRITE(reg, tmp); |
| 597 | POSTING_READ(reg); |
| 598 | I915_WRITE(reg, tmp | BLM_PWM_ENABLE); |
Paulo Zanoni | a4f32fc | 2012-07-14 11:57:12 -0300 | [diff] [blame] | 599 | |
Kamal Mostafa | e85843b | 2013-07-19 15:02:01 -0700 | [diff] [blame] | 600 | if (HAS_PCH_SPLIT(dev) && |
| 601 | !(dev_priv->quirks & QUIRK_NO_PCH_PWM_ENABLE)) { |
Paulo Zanoni | a4f32fc | 2012-07-14 11:57:12 -0300 | [diff] [blame] | 602 | tmp = I915_READ(BLC_PWM_PCH_CTL1); |
| 603 | tmp |= BLM_PCH_PWM_ENABLE; |
| 604 | tmp &= ~BLM_PCH_OVERRIDE_ENABLE; |
| 605 | I915_WRITE(BLC_PWM_PCH_CTL1, tmp); |
| 606 | } |
Daniel Vetter | 24ded20 | 2012-06-05 12:14:54 +0200 | [diff] [blame] | 607 | } |
Takashi Iwai | 770c123 | 2012-08-11 08:56:42 +0200 | [diff] [blame] | 608 | |
| 609 | set_level: |
Daniel Vetter | b128937 | 2013-03-22 15:44:46 +0100 | [diff] [blame] | 610 | /* Call below after setting BLC_PWM_CPU_CTL2 and BLC_PWM_PCH_CTL1. |
| 611 | * BLC_PWM_CPU_CTL may be cleared to zero automatically when these |
| 612 | * registers are set. |
Takashi Iwai | 770c123 | 2012-08-11 08:56:42 +0200 | [diff] [blame] | 613 | */ |
Daniel Vetter | ecb135a | 2013-04-03 11:25:32 +0200 | [diff] [blame] | 614 | dev_priv->backlight.enabled = true; |
| 615 | intel_panel_actually_set_backlight(dev, dev_priv->backlight.level); |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 616 | |
| 617 | spin_unlock_irqrestore(&dev_priv->backlight.lock, flags); |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 618 | } |
| 619 | |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 620 | static void intel_panel_init_backlight(struct drm_device *dev) |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 621 | { |
| 622 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 623 | |
Jani Nikula | 31ad8ec | 2013-04-02 15:48:09 +0300 | [diff] [blame] | 624 | dev_priv->backlight.level = intel_panel_get_backlight(dev); |
| 625 | dev_priv->backlight.enabled = dev_priv->backlight.level != 0; |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 626 | } |
Chris Wilson | fe16d94 | 2011-02-12 10:29:38 +0000 | [diff] [blame] | 627 | |
| 628 | enum drm_connector_status |
| 629 | intel_panel_detect(struct drm_device *dev) |
| 630 | { |
| 631 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 632 | |
| 633 | /* Assume that the BIOS does not lie through the OpRegion... */ |
Daniel Vetter | a726915 | 2012-11-20 14:50:08 +0100 | [diff] [blame] | 634 | if (!i915_panel_ignore_lid && dev_priv->opregion.lid_state) { |
Chris Wilson | fe16d94 | 2011-02-12 10:29:38 +0000 | [diff] [blame] | 635 | return ioread32(dev_priv->opregion.lid_state) & 0x1 ? |
| 636 | connector_status_connected : |
| 637 | connector_status_disconnected; |
Daniel Vetter | a726915 | 2012-11-20 14:50:08 +0100 | [diff] [blame] | 638 | } |
Chris Wilson | fe16d94 | 2011-02-12 10:29:38 +0000 | [diff] [blame] | 639 | |
Daniel Vetter | a726915 | 2012-11-20 14:50:08 +0100 | [diff] [blame] | 640 | switch (i915_panel_ignore_lid) { |
| 641 | case -2: |
| 642 | return connector_status_connected; |
| 643 | case -1: |
| 644 | return connector_status_disconnected; |
| 645 | default: |
| 646 | return connector_status_unknown; |
| 647 | } |
Chris Wilson | fe16d94 | 2011-02-12 10:29:38 +0000 | [diff] [blame] | 648 | } |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 649 | |
| 650 | #ifdef CONFIG_BACKLIGHT_CLASS_DEVICE |
| 651 | static int intel_panel_update_status(struct backlight_device *bd) |
| 652 | { |
| 653 | struct drm_device *dev = bl_get_data(bd); |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 654 | intel_panel_set_backlight(dev, bd->props.brightness, |
| 655 | bd->props.max_brightness); |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 656 | return 0; |
| 657 | } |
| 658 | |
| 659 | static int intel_panel_get_brightness(struct backlight_device *bd) |
| 660 | { |
| 661 | struct drm_device *dev = bl_get_data(bd); |
Jani Nikula | 7c23396 | 2013-03-12 11:44:16 +0200 | [diff] [blame] | 662 | return intel_panel_get_backlight(dev); |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 663 | } |
| 664 | |
| 665 | static const struct backlight_ops intel_panel_bl_ops = { |
| 666 | .update_status = intel_panel_update_status, |
| 667 | .get_brightness = intel_panel_get_brightness, |
| 668 | }; |
| 669 | |
Jani Nikula | 0657b6b | 2012-10-19 14:51:46 +0300 | [diff] [blame] | 670 | int intel_panel_setup_backlight(struct drm_connector *connector) |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 671 | { |
Jani Nikula | 0657b6b | 2012-10-19 14:51:46 +0300 | [diff] [blame] | 672 | struct drm_device *dev = connector->dev; |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 673 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 674 | struct backlight_properties props; |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 675 | unsigned long flags; |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 676 | |
| 677 | intel_panel_init_backlight(dev); |
| 678 | |
Jani Nikula | dc652f9 | 2013-04-12 15:18:38 +0300 | [diff] [blame] | 679 | if (WARN_ON(dev_priv->backlight.device)) |
| 680 | return -ENODEV; |
| 681 | |
Corentin Chary | af437cf | 2012-05-22 10:29:46 +0100 | [diff] [blame] | 682 | memset(&props, 0, sizeof(props)); |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 683 | props.type = BACKLIGHT_RAW; |
Jani Nikula | 31ad8ec | 2013-04-02 15:48:09 +0300 | [diff] [blame] | 684 | props.brightness = dev_priv->backlight.level; |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 685 | |
| 686 | spin_lock_irqsave(&dev_priv->backlight.lock, flags); |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 687 | props.max_brightness = intel_panel_get_max_backlight(dev); |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 688 | spin_unlock_irqrestore(&dev_priv->backlight.lock, flags); |
| 689 | |
Jani Nikula | 28dcc2d | 2012-09-03 16:25:12 +0300 | [diff] [blame] | 690 | if (props.max_brightness == 0) { |
Jani Nikula | e86b618 | 2012-10-25 10:57:38 +0300 | [diff] [blame] | 691 | DRM_DEBUG_DRIVER("Failed to get maximum backlight value\n"); |
Jani Nikula | 28dcc2d | 2012-09-03 16:25:12 +0300 | [diff] [blame] | 692 | return -ENODEV; |
| 693 | } |
Jani Nikula | 31ad8ec | 2013-04-02 15:48:09 +0300 | [diff] [blame] | 694 | dev_priv->backlight.device = |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 695 | backlight_device_register("intel_backlight", |
| 696 | &connector->kdev, dev, |
| 697 | &intel_panel_bl_ops, &props); |
| 698 | |
Jani Nikula | 31ad8ec | 2013-04-02 15:48:09 +0300 | [diff] [blame] | 699 | if (IS_ERR(dev_priv->backlight.device)) { |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 700 | DRM_ERROR("Failed to register backlight: %ld\n", |
Jani Nikula | 31ad8ec | 2013-04-02 15:48:09 +0300 | [diff] [blame] | 701 | PTR_ERR(dev_priv->backlight.device)); |
| 702 | dev_priv->backlight.device = NULL; |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 703 | return -ENODEV; |
| 704 | } |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 705 | return 0; |
| 706 | } |
| 707 | |
| 708 | void intel_panel_destroy_backlight(struct drm_device *dev) |
| 709 | { |
| 710 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | dc652f9 | 2013-04-12 15:18:38 +0300 | [diff] [blame] | 711 | if (dev_priv->backlight.device) { |
Jani Nikula | 31ad8ec | 2013-04-02 15:48:09 +0300 | [diff] [blame] | 712 | backlight_device_unregister(dev_priv->backlight.device); |
Jani Nikula | dc652f9 | 2013-04-12 15:18:38 +0300 | [diff] [blame] | 713 | dev_priv->backlight.device = NULL; |
| 714 | } |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 715 | } |
| 716 | #else |
Jani Nikula | 0657b6b | 2012-10-19 14:51:46 +0300 | [diff] [blame] | 717 | int intel_panel_setup_backlight(struct drm_connector *connector) |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 718 | { |
Jani Nikula | 0657b6b | 2012-10-19 14:51:46 +0300 | [diff] [blame] | 719 | intel_panel_init_backlight(connector->dev); |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 720 | return 0; |
| 721 | } |
| 722 | |
| 723 | void intel_panel_destroy_backlight(struct drm_device *dev) |
| 724 | { |
| 725 | return; |
| 726 | } |
| 727 | #endif |
Jani Nikula | 1d50870 | 2012-10-19 14:51:49 +0300 | [diff] [blame] | 728 | |
Jani Nikula | dd06f90 | 2012-10-19 14:51:50 +0300 | [diff] [blame] | 729 | int intel_panel_init(struct intel_panel *panel, |
| 730 | struct drm_display_mode *fixed_mode) |
Jani Nikula | 1d50870 | 2012-10-19 14:51:49 +0300 | [diff] [blame] | 731 | { |
Jani Nikula | dd06f90 | 2012-10-19 14:51:50 +0300 | [diff] [blame] | 732 | panel->fixed_mode = fixed_mode; |
| 733 | |
Jani Nikula | 1d50870 | 2012-10-19 14:51:49 +0300 | [diff] [blame] | 734 | return 0; |
| 735 | } |
| 736 | |
| 737 | void intel_panel_fini(struct intel_panel *panel) |
| 738 | { |
Jani Nikula | dd06f90 | 2012-10-19 14:51:50 +0300 | [diff] [blame] | 739 | struct intel_connector *intel_connector = |
| 740 | container_of(panel, struct intel_connector, panel); |
| 741 | |
| 742 | if (panel->fixed_mode) |
| 743 | drm_mode_destroy(intel_connector->base.dev, panel->fixed_mode); |
Jani Nikula | 1d50870 | 2012-10-19 14:51:49 +0300 | [diff] [blame] | 744 | } |