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 | |
| 36 | void |
Ville Syrjälä | 4c6df4b | 2013-09-02 21:13:39 +0300 | [diff] [blame] | 37 | intel_fixed_panel_mode(const struct drm_display_mode *fixed_mode, |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 38 | struct drm_display_mode *adjusted_mode) |
| 39 | { |
Ville Syrjälä | 4c6df4b | 2013-09-02 21:13:39 +0300 | [diff] [blame] | 40 | drm_mode_copy(adjusted_mode, fixed_mode); |
Imre Deak | a52690e | 2013-08-27 12:24:09 +0300 | [diff] [blame] | 41 | |
| 42 | drm_mode_set_crtcinfo(adjusted_mode, 0); |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 43 | } |
| 44 | |
Jani Nikula | 525997e | 2014-04-29 23:30:48 +0300 | [diff] [blame] | 45 | /** |
| 46 | * intel_find_panel_downclock - find the reduced downclock for LVDS in EDID |
| 47 | * @dev: drm device |
| 48 | * @fixed_mode : panel native mode |
| 49 | * @connector: LVDS/eDP connector |
| 50 | * |
| 51 | * Return downclock_avail |
| 52 | * Find the reduced downclock for LVDS/eDP in EDID. |
| 53 | */ |
| 54 | struct drm_display_mode * |
| 55 | intel_find_panel_downclock(struct drm_device *dev, |
| 56 | struct drm_display_mode *fixed_mode, |
| 57 | struct drm_connector *connector) |
| 58 | { |
| 59 | struct drm_display_mode *scan, *tmp_mode; |
| 60 | int temp_downclock; |
| 61 | |
| 62 | temp_downclock = fixed_mode->clock; |
| 63 | tmp_mode = NULL; |
| 64 | |
| 65 | list_for_each_entry(scan, &connector->probed_modes, head) { |
| 66 | /* |
| 67 | * If one mode has the same resolution with the fixed_panel |
| 68 | * mode while they have the different refresh rate, it means |
| 69 | * that the reduced downclock is found. In such |
| 70 | * case we can set the different FPx0/1 to dynamically select |
| 71 | * between low and high frequency. |
| 72 | */ |
| 73 | if (scan->hdisplay == fixed_mode->hdisplay && |
| 74 | scan->hsync_start == fixed_mode->hsync_start && |
| 75 | scan->hsync_end == fixed_mode->hsync_end && |
| 76 | scan->htotal == fixed_mode->htotal && |
| 77 | scan->vdisplay == fixed_mode->vdisplay && |
| 78 | scan->vsync_start == fixed_mode->vsync_start && |
| 79 | scan->vsync_end == fixed_mode->vsync_end && |
| 80 | scan->vtotal == fixed_mode->vtotal) { |
| 81 | if (scan->clock < temp_downclock) { |
| 82 | /* |
| 83 | * The downclock is already found. But we |
| 84 | * expect to find the lower downclock. |
| 85 | */ |
| 86 | temp_downclock = scan->clock; |
| 87 | tmp_mode = scan; |
| 88 | } |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | if (temp_downclock < fixed_mode->clock) |
| 93 | return drm_mode_duplicate(dev, tmp_mode); |
| 94 | else |
| 95 | return NULL; |
| 96 | } |
| 97 | |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 98 | /* adjusted_mode has been preset to be the panel's fixed mode */ |
| 99 | void |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 100 | intel_pch_panel_fitting(struct intel_crtc *intel_crtc, |
| 101 | struct intel_crtc_config *pipe_config, |
| 102 | int fitting_mode) |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 103 | { |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 104 | struct drm_display_mode *adjusted_mode; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 105 | int x, y, width, height; |
| 106 | |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 107 | adjusted_mode = &pipe_config->adjusted_mode; |
| 108 | |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 109 | x = y = width = height = 0; |
| 110 | |
| 111 | /* Native modes don't need fitting */ |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 112 | if (adjusted_mode->hdisplay == pipe_config->pipe_src_w && |
| 113 | adjusted_mode->vdisplay == pipe_config->pipe_src_h) |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 114 | goto done; |
| 115 | |
| 116 | switch (fitting_mode) { |
| 117 | case DRM_MODE_SCALE_CENTER: |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 118 | width = pipe_config->pipe_src_w; |
| 119 | height = pipe_config->pipe_src_h; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 120 | x = (adjusted_mode->hdisplay - width + 1)/2; |
| 121 | y = (adjusted_mode->vdisplay - height + 1)/2; |
| 122 | break; |
| 123 | |
| 124 | case DRM_MODE_SCALE_ASPECT: |
| 125 | /* Scale but preserve the aspect ratio */ |
| 126 | { |
Daniel Vetter | 9084e7d | 2013-09-16 23:43:45 +0200 | [diff] [blame] | 127 | u32 scaled_width = adjusted_mode->hdisplay |
| 128 | * pipe_config->pipe_src_h; |
| 129 | u32 scaled_height = pipe_config->pipe_src_w |
| 130 | * adjusted_mode->vdisplay; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 131 | if (scaled_width > scaled_height) { /* pillar */ |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 132 | width = scaled_height / pipe_config->pipe_src_h; |
Adam Jackson | 302983e | 2011-07-13 16:32:32 -0400 | [diff] [blame] | 133 | if (width & 1) |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 134 | width++; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 135 | x = (adjusted_mode->hdisplay - width + 1) / 2; |
| 136 | y = 0; |
| 137 | height = adjusted_mode->vdisplay; |
| 138 | } else if (scaled_width < scaled_height) { /* letter */ |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 139 | height = scaled_width / pipe_config->pipe_src_w; |
Adam Jackson | 302983e | 2011-07-13 16:32:32 -0400 | [diff] [blame] | 140 | if (height & 1) |
| 141 | height++; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 142 | y = (adjusted_mode->vdisplay - height + 1) / 2; |
| 143 | x = 0; |
| 144 | width = adjusted_mode->hdisplay; |
| 145 | } else { |
| 146 | x = y = 0; |
| 147 | width = adjusted_mode->hdisplay; |
| 148 | height = adjusted_mode->vdisplay; |
| 149 | } |
| 150 | } |
| 151 | break; |
| 152 | |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 153 | case DRM_MODE_SCALE_FULLSCREEN: |
| 154 | x = y = 0; |
| 155 | width = adjusted_mode->hdisplay; |
| 156 | height = adjusted_mode->vdisplay; |
| 157 | break; |
Jesse Barnes | ab3e67f | 2013-04-25 12:55:03 -0700 | [diff] [blame] | 158 | |
| 159 | default: |
| 160 | WARN(1, "bad panel fit mode: %d\n", fitting_mode); |
| 161 | return; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | done: |
Jesse Barnes | b074cec | 2013-04-25 12:55:02 -0700 | [diff] [blame] | 165 | pipe_config->pch_pfit.pos = (x << 16) | y; |
| 166 | pipe_config->pch_pfit.size = (width << 16) | height; |
Chris Wilson | fd4daa9 | 2013-08-27 17:04:17 +0100 | [diff] [blame] | 167 | pipe_config->pch_pfit.enabled = pipe_config->pch_pfit.size != 0; |
Chris Wilson | 1d8e1c7 | 2010-08-07 11:01:28 +0100 | [diff] [blame] | 168 | } |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 169 | |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 170 | static void |
| 171 | centre_horizontally(struct drm_display_mode *mode, |
| 172 | int width) |
| 173 | { |
| 174 | u32 border, sync_pos, blank_width, sync_width; |
| 175 | |
| 176 | /* keep the hsync and hblank widths constant */ |
| 177 | sync_width = mode->crtc_hsync_end - mode->crtc_hsync_start; |
| 178 | blank_width = mode->crtc_hblank_end - mode->crtc_hblank_start; |
| 179 | sync_pos = (blank_width - sync_width + 1) / 2; |
| 180 | |
| 181 | border = (mode->hdisplay - width + 1) / 2; |
| 182 | border += border & 1; /* make the border even */ |
| 183 | |
| 184 | mode->crtc_hdisplay = width; |
| 185 | mode->crtc_hblank_start = width + border; |
| 186 | mode->crtc_hblank_end = mode->crtc_hblank_start + blank_width; |
| 187 | |
| 188 | mode->crtc_hsync_start = mode->crtc_hblank_start + sync_pos; |
| 189 | mode->crtc_hsync_end = mode->crtc_hsync_start + sync_width; |
| 190 | } |
| 191 | |
| 192 | static void |
| 193 | centre_vertically(struct drm_display_mode *mode, |
| 194 | int height) |
| 195 | { |
| 196 | u32 border, sync_pos, blank_width, sync_width; |
| 197 | |
| 198 | /* keep the vsync and vblank widths constant */ |
| 199 | sync_width = mode->crtc_vsync_end - mode->crtc_vsync_start; |
| 200 | blank_width = mode->crtc_vblank_end - mode->crtc_vblank_start; |
| 201 | sync_pos = (blank_width - sync_width + 1) / 2; |
| 202 | |
| 203 | border = (mode->vdisplay - height + 1) / 2; |
| 204 | |
| 205 | mode->crtc_vdisplay = height; |
| 206 | mode->crtc_vblank_start = height + border; |
| 207 | mode->crtc_vblank_end = mode->crtc_vblank_start + blank_width; |
| 208 | |
| 209 | mode->crtc_vsync_start = mode->crtc_vblank_start + sync_pos; |
| 210 | mode->crtc_vsync_end = mode->crtc_vsync_start + sync_width; |
| 211 | } |
| 212 | |
| 213 | static inline u32 panel_fitter_scaling(u32 source, u32 target) |
| 214 | { |
| 215 | /* |
| 216 | * Floating point operation is not supported. So the FACTOR |
| 217 | * is defined, which can avoid the floating point computation |
| 218 | * when calculating the panel ratio. |
| 219 | */ |
| 220 | #define ACCURACY 12 |
| 221 | #define FACTOR (1 << ACCURACY) |
| 222 | u32 ratio = source * FACTOR / target; |
| 223 | return (FACTOR * ratio + FACTOR/2) / FACTOR; |
| 224 | } |
| 225 | |
Daniel Vetter | 9084e7d | 2013-09-16 23:43:45 +0200 | [diff] [blame] | 226 | static void i965_scale_aspect(struct intel_crtc_config *pipe_config, |
| 227 | u32 *pfit_control) |
| 228 | { |
| 229 | struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode; |
| 230 | u32 scaled_width = adjusted_mode->hdisplay * |
| 231 | pipe_config->pipe_src_h; |
| 232 | u32 scaled_height = pipe_config->pipe_src_w * |
| 233 | adjusted_mode->vdisplay; |
| 234 | |
| 235 | /* 965+ is easy, it does everything in hw */ |
| 236 | if (scaled_width > scaled_height) |
| 237 | *pfit_control |= PFIT_ENABLE | |
| 238 | PFIT_SCALING_PILLAR; |
| 239 | else if (scaled_width < scaled_height) |
| 240 | *pfit_control |= PFIT_ENABLE | |
| 241 | PFIT_SCALING_LETTER; |
| 242 | else if (adjusted_mode->hdisplay != pipe_config->pipe_src_w) |
| 243 | *pfit_control |= PFIT_ENABLE | PFIT_SCALING_AUTO; |
| 244 | } |
| 245 | |
| 246 | static void i9xx_scale_aspect(struct intel_crtc_config *pipe_config, |
| 247 | u32 *pfit_control, u32 *pfit_pgm_ratios, |
| 248 | u32 *border) |
| 249 | { |
| 250 | struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode; |
| 251 | u32 scaled_width = adjusted_mode->hdisplay * |
| 252 | pipe_config->pipe_src_h; |
| 253 | u32 scaled_height = pipe_config->pipe_src_w * |
| 254 | adjusted_mode->vdisplay; |
| 255 | u32 bits; |
| 256 | |
| 257 | /* |
| 258 | * For earlier chips we have to calculate the scaling |
| 259 | * ratio by hand and program it into the |
| 260 | * PFIT_PGM_RATIO register |
| 261 | */ |
| 262 | if (scaled_width > scaled_height) { /* pillar */ |
| 263 | centre_horizontally(adjusted_mode, |
| 264 | scaled_height / |
| 265 | pipe_config->pipe_src_h); |
| 266 | |
| 267 | *border = LVDS_BORDER_ENABLE; |
| 268 | if (pipe_config->pipe_src_h != adjusted_mode->vdisplay) { |
| 269 | bits = panel_fitter_scaling(pipe_config->pipe_src_h, |
| 270 | adjusted_mode->vdisplay); |
| 271 | |
| 272 | *pfit_pgm_ratios |= (bits << PFIT_HORIZ_SCALE_SHIFT | |
| 273 | bits << PFIT_VERT_SCALE_SHIFT); |
| 274 | *pfit_control |= (PFIT_ENABLE | |
| 275 | VERT_INTERP_BILINEAR | |
| 276 | HORIZ_INTERP_BILINEAR); |
| 277 | } |
| 278 | } else if (scaled_width < scaled_height) { /* letter */ |
| 279 | centre_vertically(adjusted_mode, |
| 280 | scaled_width / |
| 281 | pipe_config->pipe_src_w); |
| 282 | |
| 283 | *border = LVDS_BORDER_ENABLE; |
| 284 | if (pipe_config->pipe_src_w != adjusted_mode->hdisplay) { |
| 285 | bits = panel_fitter_scaling(pipe_config->pipe_src_w, |
| 286 | adjusted_mode->hdisplay); |
| 287 | |
| 288 | *pfit_pgm_ratios |= (bits << PFIT_HORIZ_SCALE_SHIFT | |
| 289 | bits << PFIT_VERT_SCALE_SHIFT); |
| 290 | *pfit_control |= (PFIT_ENABLE | |
| 291 | VERT_INTERP_BILINEAR | |
| 292 | HORIZ_INTERP_BILINEAR); |
| 293 | } |
| 294 | } else { |
| 295 | /* Aspects match, Let hw scale both directions */ |
| 296 | *pfit_control |= (PFIT_ENABLE | |
| 297 | VERT_AUTO_SCALE | HORIZ_AUTO_SCALE | |
| 298 | VERT_INTERP_BILINEAR | |
| 299 | HORIZ_INTERP_BILINEAR); |
| 300 | } |
| 301 | } |
| 302 | |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 303 | void intel_gmch_panel_fitting(struct intel_crtc *intel_crtc, |
| 304 | struct intel_crtc_config *pipe_config, |
| 305 | int fitting_mode) |
| 306 | { |
| 307 | struct drm_device *dev = intel_crtc->base.dev; |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 308 | u32 pfit_control = 0, pfit_pgm_ratios = 0, border = 0; |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 309 | struct drm_display_mode *adjusted_mode; |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 310 | |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 311 | adjusted_mode = &pipe_config->adjusted_mode; |
| 312 | |
| 313 | /* Native modes don't need fitting */ |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 314 | if (adjusted_mode->hdisplay == pipe_config->pipe_src_w && |
| 315 | adjusted_mode->vdisplay == pipe_config->pipe_src_h) |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 316 | goto out; |
| 317 | |
| 318 | switch (fitting_mode) { |
| 319 | case DRM_MODE_SCALE_CENTER: |
| 320 | /* |
| 321 | * For centered modes, we have to calculate border widths & |
| 322 | * heights and modify the values programmed into the CRTC. |
| 323 | */ |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 324 | centre_horizontally(adjusted_mode, pipe_config->pipe_src_w); |
| 325 | centre_vertically(adjusted_mode, pipe_config->pipe_src_h); |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 326 | border = LVDS_BORDER_ENABLE; |
| 327 | break; |
| 328 | case DRM_MODE_SCALE_ASPECT: |
| 329 | /* Scale but preserve the aspect ratio */ |
Daniel Vetter | 9084e7d | 2013-09-16 23:43:45 +0200 | [diff] [blame] | 330 | if (INTEL_INFO(dev)->gen >= 4) |
| 331 | i965_scale_aspect(pipe_config, &pfit_control); |
| 332 | else |
| 333 | i9xx_scale_aspect(pipe_config, &pfit_control, |
| 334 | &pfit_pgm_ratios, &border); |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 335 | break; |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 336 | case DRM_MODE_SCALE_FULLSCREEN: |
| 337 | /* |
| 338 | * Full scaling, even if it changes the aspect ratio. |
| 339 | * Fortunately this is all done for us in hw. |
| 340 | */ |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 341 | if (pipe_config->pipe_src_h != adjusted_mode->vdisplay || |
| 342 | pipe_config->pipe_src_w != adjusted_mode->hdisplay) { |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 343 | pfit_control |= PFIT_ENABLE; |
| 344 | if (INTEL_INFO(dev)->gen >= 4) |
| 345 | pfit_control |= PFIT_SCALING_AUTO; |
| 346 | else |
| 347 | pfit_control |= (VERT_AUTO_SCALE | |
| 348 | VERT_INTERP_BILINEAR | |
| 349 | HORIZ_AUTO_SCALE | |
| 350 | HORIZ_INTERP_BILINEAR); |
| 351 | } |
| 352 | break; |
Jesse Barnes | ab3e67f | 2013-04-25 12:55:03 -0700 | [diff] [blame] | 353 | default: |
| 354 | WARN(1, "bad panel fit mode: %d\n", fitting_mode); |
| 355 | return; |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | /* 965+ wants fuzzy fitting */ |
| 359 | /* FIXME: handle multiple panels by failing gracefully */ |
| 360 | if (INTEL_INFO(dev)->gen >= 4) |
| 361 | pfit_control |= ((intel_crtc->pipe << PFIT_PIPE_SHIFT) | |
| 362 | PFIT_FILTER_FUZZY); |
| 363 | |
| 364 | out: |
| 365 | if ((pfit_control & PFIT_ENABLE) == 0) { |
| 366 | pfit_control = 0; |
| 367 | pfit_pgm_ratios = 0; |
| 368 | } |
| 369 | |
Daniel Vetter | 6b89cdd | 2014-07-09 22:35:53 +0200 | [diff] [blame] | 370 | /* Make sure pre-965 set dither correctly for 18bpp panels. */ |
| 371 | if (INTEL_INFO(dev)->gen < 4 && pipe_config->pipe_bpp == 18) |
| 372 | pfit_control |= PANEL_8TO6_DITHER_ENABLE; |
| 373 | |
Daniel Vetter | 2deefda | 2013-04-25 22:52:17 +0200 | [diff] [blame] | 374 | pipe_config->gmch_pfit.control = pfit_control; |
| 375 | pipe_config->gmch_pfit.pgm_ratios = pfit_pgm_ratios; |
Daniel Vetter | 68fc874 | 2013-04-25 22:52:16 +0200 | [diff] [blame] | 376 | pipe_config->gmch_pfit.lvds_border_bits = border; |
Jesse Barnes | 2dd2455 | 2013-04-25 12:55:01 -0700 | [diff] [blame] | 377 | } |
| 378 | |
Jani Nikula | 525997e | 2014-04-29 23:30:48 +0300 | [diff] [blame] | 379 | enum drm_connector_status |
| 380 | intel_panel_detect(struct drm_device *dev) |
| 381 | { |
| 382 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 383 | |
| 384 | /* Assume that the BIOS does not lie through the OpRegion... */ |
| 385 | if (!i915.panel_ignore_lid && dev_priv->opregion.lid_state) { |
| 386 | return ioread32(dev_priv->opregion.lid_state) & 0x1 ? |
| 387 | connector_status_connected : |
| 388 | connector_status_disconnected; |
| 389 | } |
| 390 | |
| 391 | switch (i915.panel_ignore_lid) { |
| 392 | case -2: |
| 393 | return connector_status_connected; |
| 394 | case -1: |
| 395 | return connector_status_disconnected; |
| 396 | default: |
| 397 | return connector_status_unknown; |
| 398 | } |
| 399 | } |
| 400 | |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 401 | /** |
| 402 | * scale - scale values from one range to another |
| 403 | * |
| 404 | * @source_val: value in range [@source_min..@source_max] |
| 405 | * |
| 406 | * Return @source_val in range [@source_min..@source_max] scaled to range |
| 407 | * [@target_min..@target_max]. |
| 408 | */ |
| 409 | static uint32_t scale(uint32_t source_val, |
| 410 | uint32_t source_min, uint32_t source_max, |
| 411 | uint32_t target_min, uint32_t target_max) |
| 412 | { |
| 413 | uint64_t target_val; |
| 414 | |
| 415 | WARN_ON(source_min > source_max); |
| 416 | WARN_ON(target_min > target_max); |
| 417 | |
| 418 | /* defensive */ |
| 419 | source_val = clamp(source_val, source_min, source_max); |
| 420 | |
| 421 | /* avoid overflows */ |
U. Artie Eoff | 673e7bb | 2014-09-29 15:49:32 -0700 | [diff] [blame] | 422 | target_val = DIV_ROUND_CLOSEST_ULL((uint64_t)(source_val - source_min) * |
| 423 | (target_max - target_min), source_max - source_min); |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 424 | target_val += target_min; |
| 425 | |
| 426 | return target_val; |
| 427 | } |
| 428 | |
| 429 | /* Scale user_level in range [0..user_max] to [hw_min..hw_max]. */ |
| 430 | static inline u32 scale_user_to_hw(struct intel_connector *connector, |
| 431 | u32 user_level, u32 user_max) |
| 432 | { |
| 433 | struct intel_panel *panel = &connector->panel; |
| 434 | |
| 435 | return scale(user_level, 0, user_max, |
| 436 | panel->backlight.min, panel->backlight.max); |
| 437 | } |
| 438 | |
| 439 | /* Scale user_level in range [0..user_max] to [0..hw_max], clamping the result |
| 440 | * to [hw_min..hw_max]. */ |
| 441 | static inline u32 clamp_user_to_hw(struct intel_connector *connector, |
| 442 | u32 user_level, u32 user_max) |
| 443 | { |
| 444 | struct intel_panel *panel = &connector->panel; |
| 445 | u32 hw_level; |
| 446 | |
| 447 | hw_level = scale(user_level, 0, user_max, 0, panel->backlight.max); |
| 448 | hw_level = clamp(hw_level, panel->backlight.min, panel->backlight.max); |
| 449 | |
| 450 | return hw_level; |
| 451 | } |
| 452 | |
| 453 | /* Scale hw_level in range [hw_min..hw_max] to [0..user_max]. */ |
| 454 | static inline u32 scale_hw_to_user(struct intel_connector *connector, |
| 455 | u32 hw_level, u32 user_max) |
| 456 | { |
| 457 | struct intel_panel *panel = &connector->panel; |
| 458 | |
| 459 | return scale(hw_level, panel->backlight.min, panel->backlight.max, |
| 460 | 0, user_max); |
| 461 | } |
| 462 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 463 | static u32 intel_panel_compute_brightness(struct intel_connector *connector, |
| 464 | u32 val) |
Carsten Emde | 7bd9090 | 2012-03-15 15:56:25 +0100 | [diff] [blame] | 465 | { |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 466 | struct drm_device *dev = connector->base.dev; |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 467 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | f91c15e | 2013-11-08 16:49:00 +0200 | [diff] [blame] | 468 | struct intel_panel *panel = &connector->panel; |
| 469 | |
| 470 | WARN_ON(panel->backlight.max == 0); |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 471 | |
Jani Nikula | d330a95 | 2014-01-21 11:24:25 +0200 | [diff] [blame] | 472 | if (i915.invert_brightness < 0) |
Carsten Emde | 4dca20e | 2012-03-15 15:56:26 +0100 | [diff] [blame] | 473 | return val; |
| 474 | |
Jani Nikula | d330a95 | 2014-01-21 11:24:25 +0200 | [diff] [blame] | 475 | if (i915.invert_brightness > 0 || |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 476 | dev_priv->quirks & QUIRK_INVERT_BRIGHTNESS) { |
Jani Nikula | f91c15e | 2013-11-08 16:49:00 +0200 | [diff] [blame] | 477 | return panel->backlight.max - val; |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 478 | } |
Carsten Emde | 7bd9090 | 2012-03-15 15:56:25 +0100 | [diff] [blame] | 479 | |
| 480 | return val; |
| 481 | } |
| 482 | |
Daniel Vetter | 96ab4c7 | 2013-11-14 15:17:41 +0100 | [diff] [blame] | 483 | static u32 bdw_get_backlight(struct intel_connector *connector) |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 484 | { |
Daniel Vetter | 96ab4c7 | 2013-11-14 15:17:41 +0100 | [diff] [blame] | 485 | struct drm_device *dev = connector->base.dev; |
| 486 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 487 | |
| 488 | return I915_READ(BLC_PWM_PCH_CTL2) & BACKLIGHT_DUTY_CYCLE_MASK; |
| 489 | } |
| 490 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 491 | static u32 pch_get_backlight(struct intel_connector *connector) |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 492 | { |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 493 | struct drm_device *dev = connector->base.dev; |
| 494 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 495 | |
| 496 | return I915_READ(BLC_PWM_CPU_CTL) & BACKLIGHT_DUTY_CYCLE_MASK; |
| 497 | } |
| 498 | |
| 499 | static u32 i9xx_get_backlight(struct intel_connector *connector) |
| 500 | { |
| 501 | struct drm_device *dev = connector->base.dev; |
| 502 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 503 | struct intel_panel *panel = &connector->panel; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 504 | u32 val; |
| 505 | |
| 506 | val = I915_READ(BLC_PWM_CTL) & BACKLIGHT_DUTY_CYCLE_MASK; |
| 507 | if (INTEL_INFO(dev)->gen < 4) |
| 508 | val >>= 1; |
| 509 | |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 510 | if (panel->backlight.combination_mode) { |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 511 | u8 lbpc; |
| 512 | |
| 513 | pci_read_config_byte(dev->pdev, PCI_LBPC, &lbpc); |
| 514 | val *= lbpc; |
| 515 | } |
| 516 | |
| 517 | return val; |
| 518 | } |
| 519 | |
| 520 | static u32 _vlv_get_backlight(struct drm_device *dev, enum pipe pipe) |
| 521 | { |
| 522 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 523 | |
| 524 | return I915_READ(VLV_BLC_PWM_CTL(pipe)) & BACKLIGHT_DUTY_CYCLE_MASK; |
| 525 | } |
| 526 | |
| 527 | static u32 vlv_get_backlight(struct intel_connector *connector) |
| 528 | { |
| 529 | struct drm_device *dev = connector->base.dev; |
| 530 | enum pipe pipe = intel_get_pipe_from_connector(connector); |
| 531 | |
| 532 | return _vlv_get_backlight(dev, pipe); |
| 533 | } |
| 534 | |
| 535 | static u32 intel_panel_get_backlight(struct intel_connector *connector) |
| 536 | { |
| 537 | struct drm_device *dev = connector->base.dev; |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 538 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 539 | u32 val; |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 540 | |
Daniel Vetter | 07f11d4 | 2014-09-15 14:35:09 +0200 | [diff] [blame] | 541 | mutex_lock(&dev_priv->backlight_lock); |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 542 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 543 | val = dev_priv->display.get_backlight(connector); |
| 544 | val = intel_panel_compute_brightness(connector, val); |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 545 | |
Daniel Vetter | 07f11d4 | 2014-09-15 14:35:09 +0200 | [diff] [blame] | 546 | mutex_unlock(&dev_priv->backlight_lock); |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 547 | |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 548 | DRM_DEBUG_DRIVER("get backlight PWM = %d\n", val); |
| 549 | return val; |
| 550 | } |
| 551 | |
Daniel Vetter | 96ab4c7 | 2013-11-14 15:17:41 +0100 | [diff] [blame] | 552 | static void bdw_set_backlight(struct intel_connector *connector, u32 level) |
Ben Widawsky | f8e1006 | 2013-11-11 11:12:57 +0200 | [diff] [blame] | 553 | { |
Daniel Vetter | 96ab4c7 | 2013-11-14 15:17:41 +0100 | [diff] [blame] | 554 | struct drm_device *dev = connector->base.dev; |
Ben Widawsky | f8e1006 | 2013-11-11 11:12:57 +0200 | [diff] [blame] | 555 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 556 | u32 val = I915_READ(BLC_PWM_PCH_CTL2) & ~BACKLIGHT_DUTY_CYCLE_MASK; |
| 557 | I915_WRITE(BLC_PWM_PCH_CTL2, val | level); |
| 558 | } |
| 559 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 560 | static void pch_set_backlight(struct intel_connector *connector, u32 level) |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 561 | { |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 562 | struct drm_device *dev = connector->base.dev; |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 563 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 564 | u32 tmp; |
| 565 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 566 | tmp = I915_READ(BLC_PWM_CPU_CTL) & ~BACKLIGHT_DUTY_CYCLE_MASK; |
| 567 | I915_WRITE(BLC_PWM_CPU_CTL, tmp | level); |
| 568 | } |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 569 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 570 | static void i9xx_set_backlight(struct intel_connector *connector, u32 level) |
| 571 | { |
| 572 | struct drm_device *dev = connector->base.dev; |
| 573 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | f91c15e | 2013-11-08 16:49:00 +0200 | [diff] [blame] | 574 | struct intel_panel *panel = &connector->panel; |
Jani Nikula | b329b32 | 2013-11-08 16:48:57 +0200 | [diff] [blame] | 575 | u32 tmp, mask; |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 576 | |
Jani Nikula | f91c15e | 2013-11-08 16:49:00 +0200 | [diff] [blame] | 577 | WARN_ON(panel->backlight.max == 0); |
| 578 | |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 579 | if (panel->backlight.combination_mode) { |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 580 | u8 lbpc; |
| 581 | |
Jani Nikula | f91c15e | 2013-11-08 16:49:00 +0200 | [diff] [blame] | 582 | lbpc = level * 0xfe / panel->backlight.max + 1; |
Takashi Iwai | ba3820a | 2011-03-10 14:02:12 +0100 | [diff] [blame] | 583 | level /= lbpc; |
| 584 | pci_write_config_byte(dev->pdev, PCI_LBPC, lbpc); |
| 585 | } |
| 586 | |
Jani Nikula | b329b32 | 2013-11-08 16:48:57 +0200 | [diff] [blame] | 587 | if (IS_GEN4(dev)) { |
| 588 | mask = BACKLIGHT_DUTY_CYCLE_MASK; |
| 589 | } else { |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 590 | level <<= 1; |
Jani Nikula | b329b32 | 2013-11-08 16:48:57 +0200 | [diff] [blame] | 591 | mask = BACKLIGHT_DUTY_CYCLE_MASK_PNV; |
| 592 | } |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 593 | |
Jani Nikula | b329b32 | 2013-11-08 16:48:57 +0200 | [diff] [blame] | 594 | tmp = I915_READ(BLC_PWM_CTL) & ~mask; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 595 | I915_WRITE(BLC_PWM_CTL, tmp | level); |
| 596 | } |
| 597 | |
| 598 | static void vlv_set_backlight(struct intel_connector *connector, u32 level) |
| 599 | { |
| 600 | struct drm_device *dev = connector->base.dev; |
| 601 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 602 | enum pipe pipe = intel_get_pipe_from_connector(connector); |
| 603 | u32 tmp; |
| 604 | |
| 605 | tmp = I915_READ(VLV_BLC_PWM_CTL(pipe)) & ~BACKLIGHT_DUTY_CYCLE_MASK; |
| 606 | I915_WRITE(VLV_BLC_PWM_CTL(pipe), tmp | level); |
| 607 | } |
| 608 | |
| 609 | static void |
| 610 | intel_panel_actually_set_backlight(struct intel_connector *connector, u32 level) |
| 611 | { |
| 612 | struct drm_device *dev = connector->base.dev; |
| 613 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 614 | |
| 615 | DRM_DEBUG_DRIVER("set backlight PWM = %d\n", level); |
| 616 | |
| 617 | level = intel_panel_compute_brightness(connector, level); |
| 618 | dev_priv->display.set_backlight(connector, level); |
Chris Wilson | a957355 | 2010-08-22 13:18:16 +0100 | [diff] [blame] | 619 | } |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 620 | |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 621 | /* set backlight brightness to level in range [0..max], scaling wrt hw min */ |
| 622 | static void intel_panel_set_backlight(struct intel_connector *connector, |
| 623 | u32 user_level, u32 user_max) |
Takashi Iwai | f52c619 | 2011-10-14 11:45:40 +0200 | [diff] [blame] | 624 | { |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 625 | struct drm_device *dev = connector->base.dev; |
Takashi Iwai | f52c619 | 2011-10-14 11:45:40 +0200 | [diff] [blame] | 626 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 627 | struct intel_panel *panel = &connector->panel; |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 628 | enum pipe pipe = intel_get_pipe_from_connector(connector); |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 629 | u32 hw_level; |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 630 | |
Ville Syrjälä | dc5a436 | 2014-01-16 18:27:15 +0200 | [diff] [blame] | 631 | if (!panel->backlight.present || pipe == INVALID_PIPE) |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 632 | return; |
| 633 | |
Daniel Vetter | 07f11d4 | 2014-09-15 14:35:09 +0200 | [diff] [blame] | 634 | mutex_lock(&dev_priv->backlight_lock); |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 635 | |
Jani Nikula | f91c15e | 2013-11-08 16:49:00 +0200 | [diff] [blame] | 636 | WARN_ON(panel->backlight.max == 0); |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 637 | |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 638 | hw_level = scale_user_to_hw(connector, user_level, user_max); |
| 639 | panel->backlight.level = hw_level; |
Jani Nikula | b6b3ba5 | 2013-03-12 11:44:15 +0200 | [diff] [blame] | 640 | |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 641 | if (panel->backlight.enabled) |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 642 | intel_panel_actually_set_backlight(connector, hw_level); |
| 643 | |
Daniel Vetter | 07f11d4 | 2014-09-15 14:35:09 +0200 | [diff] [blame] | 644 | mutex_unlock(&dev_priv->backlight_lock); |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 645 | } |
| 646 | |
| 647 | /* set backlight brightness to level in range [0..max], assuming hw min is |
| 648 | * respected. |
| 649 | */ |
| 650 | void intel_panel_set_backlight_acpi(struct intel_connector *connector, |
| 651 | u32 user_level, u32 user_max) |
| 652 | { |
| 653 | struct drm_device *dev = connector->base.dev; |
| 654 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 655 | struct intel_panel *panel = &connector->panel; |
| 656 | enum pipe pipe = intel_get_pipe_from_connector(connector); |
| 657 | u32 hw_level; |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 658 | |
| 659 | if (!panel->backlight.present || pipe == INVALID_PIPE) |
| 660 | return; |
| 661 | |
Daniel Vetter | 07f11d4 | 2014-09-15 14:35:09 +0200 | [diff] [blame] | 662 | mutex_lock(&dev_priv->backlight_lock); |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 663 | |
| 664 | WARN_ON(panel->backlight.max == 0); |
| 665 | |
| 666 | hw_level = clamp_user_to_hw(connector, user_level, user_max); |
| 667 | panel->backlight.level = hw_level; |
| 668 | |
| 669 | if (panel->backlight.device) |
| 670 | panel->backlight.device->props.brightness = |
| 671 | scale_hw_to_user(connector, |
| 672 | panel->backlight.level, |
| 673 | panel->backlight.device->props.max_brightness); |
| 674 | |
| 675 | if (panel->backlight.enabled) |
| 676 | intel_panel_actually_set_backlight(connector, hw_level); |
Jani Nikula | f91c15e | 2013-11-08 16:49:00 +0200 | [diff] [blame] | 677 | |
Daniel Vetter | 07f11d4 | 2014-09-15 14:35:09 +0200 | [diff] [blame] | 678 | mutex_unlock(&dev_priv->backlight_lock); |
Takashi Iwai | f52c619 | 2011-10-14 11:45:40 +0200 | [diff] [blame] | 679 | } |
| 680 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 681 | static void pch_disable_backlight(struct intel_connector *connector) |
| 682 | { |
| 683 | struct drm_device *dev = connector->base.dev; |
| 684 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 685 | u32 tmp; |
| 686 | |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 687 | intel_panel_actually_set_backlight(connector, 0); |
| 688 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 689 | tmp = I915_READ(BLC_PWM_CPU_CTL2); |
| 690 | I915_WRITE(BLC_PWM_CPU_CTL2, tmp & ~BLM_PWM_ENABLE); |
| 691 | |
| 692 | tmp = I915_READ(BLC_PWM_PCH_CTL1); |
| 693 | I915_WRITE(BLC_PWM_PCH_CTL1, tmp & ~BLM_PCH_PWM_ENABLE); |
| 694 | } |
| 695 | |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 696 | static void i9xx_disable_backlight(struct intel_connector *connector) |
| 697 | { |
| 698 | intel_panel_actually_set_backlight(connector, 0); |
| 699 | } |
| 700 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 701 | static void i965_disable_backlight(struct intel_connector *connector) |
| 702 | { |
| 703 | struct drm_device *dev = connector->base.dev; |
| 704 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 705 | u32 tmp; |
| 706 | |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 707 | intel_panel_actually_set_backlight(connector, 0); |
| 708 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 709 | tmp = I915_READ(BLC_PWM_CTL2); |
| 710 | I915_WRITE(BLC_PWM_CTL2, tmp & ~BLM_PWM_ENABLE); |
| 711 | } |
| 712 | |
| 713 | static void vlv_disable_backlight(struct intel_connector *connector) |
| 714 | { |
| 715 | struct drm_device *dev = connector->base.dev; |
| 716 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 717 | enum pipe pipe = intel_get_pipe_from_connector(connector); |
| 718 | u32 tmp; |
| 719 | |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 720 | intel_panel_actually_set_backlight(connector, 0); |
| 721 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 722 | tmp = I915_READ(VLV_BLC_PWM_CTL2(pipe)); |
| 723 | I915_WRITE(VLV_BLC_PWM_CTL2(pipe), tmp & ~BLM_PWM_ENABLE); |
| 724 | } |
| 725 | |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 726 | void intel_panel_disable_backlight(struct intel_connector *connector) |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 727 | { |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 728 | struct drm_device *dev = connector->base.dev; |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 729 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 730 | struct intel_panel *panel = &connector->panel; |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 731 | enum pipe pipe = intel_get_pipe_from_connector(connector); |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 732 | |
Ville Syrjälä | dc5a436 | 2014-01-16 18:27:15 +0200 | [diff] [blame] | 733 | if (!panel->backlight.present || pipe == INVALID_PIPE) |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 734 | return; |
| 735 | |
Jani Nikula | 3f57757 | 2013-07-25 14:31:30 +0300 | [diff] [blame] | 736 | /* |
| 737 | * Do not disable backlight on the vgaswitcheroo path. When switching |
| 738 | * away from i915, the other client may depend on i915 to handle the |
| 739 | * backlight. This will leave the backlight on unnecessarily when |
| 740 | * another client is not activated. |
| 741 | */ |
| 742 | if (dev->switch_power_state == DRM_SWITCH_POWER_CHANGING) { |
| 743 | DRM_DEBUG_DRIVER("Skipping backlight disable on vga switch\n"); |
| 744 | return; |
| 745 | } |
| 746 | |
Daniel Vetter | 07f11d4 | 2014-09-15 14:35:09 +0200 | [diff] [blame] | 747 | mutex_lock(&dev_priv->backlight_lock); |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 748 | |
Jani Nikula | ab656bb | 2014-08-13 12:10:12 +0300 | [diff] [blame] | 749 | if (panel->backlight.device) |
| 750 | panel->backlight.device->props.power = FB_BLANK_POWERDOWN; |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 751 | panel->backlight.enabled = false; |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 752 | dev_priv->display.disable_backlight(connector); |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 753 | |
Daniel Vetter | 07f11d4 | 2014-09-15 14:35:09 +0200 | [diff] [blame] | 754 | mutex_unlock(&dev_priv->backlight_lock); |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 755 | } |
| 756 | |
Daniel Vetter | 96ab4c7 | 2013-11-14 15:17:41 +0100 | [diff] [blame] | 757 | static void bdw_enable_backlight(struct intel_connector *connector) |
| 758 | { |
| 759 | struct drm_device *dev = connector->base.dev; |
| 760 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 761 | struct intel_panel *panel = &connector->panel; |
| 762 | u32 pch_ctl1, pch_ctl2; |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 763 | |
Daniel Vetter | 96ab4c7 | 2013-11-14 15:17:41 +0100 | [diff] [blame] | 764 | pch_ctl1 = I915_READ(BLC_PWM_PCH_CTL1); |
| 765 | if (pch_ctl1 & BLM_PCH_PWM_ENABLE) { |
| 766 | DRM_DEBUG_KMS("pch backlight already enabled\n"); |
| 767 | pch_ctl1 &= ~BLM_PCH_PWM_ENABLE; |
| 768 | I915_WRITE(BLC_PWM_PCH_CTL1, pch_ctl1); |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 769 | } |
| 770 | |
Daniel Vetter | 96ab4c7 | 2013-11-14 15:17:41 +0100 | [diff] [blame] | 771 | pch_ctl2 = panel->backlight.max << 16; |
| 772 | I915_WRITE(BLC_PWM_PCH_CTL2, pch_ctl2); |
| 773 | |
| 774 | pch_ctl1 = 0; |
| 775 | if (panel->backlight.active_low_pwm) |
| 776 | pch_ctl1 |= BLM_PCH_POLARITY; |
| 777 | |
| 778 | /* BDW always uses the pch pwm controls. */ |
| 779 | pch_ctl1 |= BLM_PCH_OVERRIDE_ENABLE; |
| 780 | |
| 781 | I915_WRITE(BLC_PWM_PCH_CTL1, pch_ctl1); |
| 782 | POSTING_READ(BLC_PWM_PCH_CTL1); |
| 783 | I915_WRITE(BLC_PWM_PCH_CTL1, pch_ctl1 | BLM_PCH_PWM_ENABLE); |
| 784 | |
| 785 | /* This won't stick until the above enable. */ |
| 786 | intel_panel_actually_set_backlight(connector, panel->backlight.level); |
| 787 | } |
| 788 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 789 | static void pch_enable_backlight(struct intel_connector *connector) |
| 790 | { |
| 791 | struct drm_device *dev = connector->base.dev; |
| 792 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 793 | struct intel_panel *panel = &connector->panel; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 794 | enum pipe pipe = intel_get_pipe_from_connector(connector); |
| 795 | enum transcoder cpu_transcoder = |
| 796 | intel_pipe_to_cpu_transcoder(dev_priv, pipe); |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 797 | u32 cpu_ctl2, pch_ctl1, pch_ctl2; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 798 | |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 799 | cpu_ctl2 = I915_READ(BLC_PWM_CPU_CTL2); |
| 800 | if (cpu_ctl2 & BLM_PWM_ENABLE) { |
Scot Doyle | 813008c | 2014-08-19 02:07:13 +0000 | [diff] [blame] | 801 | DRM_DEBUG_KMS("cpu backlight already enabled\n"); |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 802 | cpu_ctl2 &= ~BLM_PWM_ENABLE; |
| 803 | I915_WRITE(BLC_PWM_CPU_CTL2, cpu_ctl2); |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 804 | } |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 805 | |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 806 | pch_ctl1 = I915_READ(BLC_PWM_PCH_CTL1); |
| 807 | if (pch_ctl1 & BLM_PCH_PWM_ENABLE) { |
| 808 | DRM_DEBUG_KMS("pch backlight already enabled\n"); |
| 809 | pch_ctl1 &= ~BLM_PCH_PWM_ENABLE; |
| 810 | I915_WRITE(BLC_PWM_PCH_CTL1, pch_ctl1); |
| 811 | } |
| 812 | |
| 813 | if (cpu_transcoder == TRANSCODER_EDP) |
| 814 | cpu_ctl2 = BLM_TRANSCODER_EDP; |
| 815 | else |
| 816 | cpu_ctl2 = BLM_PIPE(cpu_transcoder); |
| 817 | I915_WRITE(BLC_PWM_CPU_CTL2, cpu_ctl2); |
| 818 | POSTING_READ(BLC_PWM_CPU_CTL2); |
| 819 | I915_WRITE(BLC_PWM_CPU_CTL2, cpu_ctl2 | BLM_PWM_ENABLE); |
| 820 | |
| 821 | /* This won't stick until the above enable. */ |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 822 | intel_panel_actually_set_backlight(connector, panel->backlight.level); |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 823 | |
| 824 | pch_ctl2 = panel->backlight.max << 16; |
| 825 | I915_WRITE(BLC_PWM_PCH_CTL2, pch_ctl2); |
| 826 | |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 827 | pch_ctl1 = 0; |
| 828 | if (panel->backlight.active_low_pwm) |
| 829 | pch_ctl1 |= BLM_PCH_POLARITY; |
Daniel Vetter | 96ab4c7 | 2013-11-14 15:17:41 +0100 | [diff] [blame] | 830 | |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 831 | I915_WRITE(BLC_PWM_PCH_CTL1, pch_ctl1); |
| 832 | POSTING_READ(BLC_PWM_PCH_CTL1); |
| 833 | I915_WRITE(BLC_PWM_PCH_CTL1, pch_ctl1 | BLM_PCH_PWM_ENABLE); |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 834 | } |
| 835 | |
| 836 | static void i9xx_enable_backlight(struct intel_connector *connector) |
| 837 | { |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 838 | struct drm_device *dev = connector->base.dev; |
| 839 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 840 | struct intel_panel *panel = &connector->panel; |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 841 | u32 ctl, freq; |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 842 | |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 843 | ctl = I915_READ(BLC_PWM_CTL); |
| 844 | if (ctl & BACKLIGHT_DUTY_CYCLE_MASK_PNV) { |
Scot Doyle | 813008c | 2014-08-19 02:07:13 +0000 | [diff] [blame] | 845 | DRM_DEBUG_KMS("backlight already enabled\n"); |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 846 | I915_WRITE(BLC_PWM_CTL, 0); |
| 847 | } |
| 848 | |
| 849 | freq = panel->backlight.max; |
| 850 | if (panel->backlight.combination_mode) |
| 851 | freq /= 0xff; |
| 852 | |
| 853 | ctl = freq << 17; |
Jani Nikula | b6ab66a | 2014-02-25 13:11:47 +0200 | [diff] [blame] | 854 | if (panel->backlight.combination_mode) |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 855 | ctl |= BLM_LEGACY_MODE; |
| 856 | if (IS_PINEVIEW(dev) && panel->backlight.active_low_pwm) |
| 857 | ctl |= BLM_POLARITY_PNV; |
| 858 | |
| 859 | I915_WRITE(BLC_PWM_CTL, ctl); |
| 860 | POSTING_READ(BLC_PWM_CTL); |
| 861 | |
| 862 | /* XXX: combine this into above write? */ |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 863 | intel_panel_actually_set_backlight(connector, panel->backlight.level); |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 864 | } |
| 865 | |
| 866 | static void i965_enable_backlight(struct intel_connector *connector) |
| 867 | { |
| 868 | struct drm_device *dev = connector->base.dev; |
| 869 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 870 | struct intel_panel *panel = &connector->panel; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 871 | enum pipe pipe = intel_get_pipe_from_connector(connector); |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 872 | u32 ctl, ctl2, freq; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 873 | |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 874 | ctl2 = I915_READ(BLC_PWM_CTL2); |
| 875 | if (ctl2 & BLM_PWM_ENABLE) { |
Scot Doyle | 813008c | 2014-08-19 02:07:13 +0000 | [diff] [blame] | 876 | DRM_DEBUG_KMS("backlight already enabled\n"); |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 877 | ctl2 &= ~BLM_PWM_ENABLE; |
| 878 | I915_WRITE(BLC_PWM_CTL2, ctl2); |
| 879 | } |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 880 | |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 881 | freq = panel->backlight.max; |
| 882 | if (panel->backlight.combination_mode) |
| 883 | freq /= 0xff; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 884 | |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 885 | ctl = freq << 16; |
| 886 | I915_WRITE(BLC_PWM_CTL, ctl); |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 887 | |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 888 | ctl2 = BLM_PIPE(pipe); |
| 889 | if (panel->backlight.combination_mode) |
| 890 | ctl2 |= BLM_COMBINATION_MODE; |
| 891 | if (panel->backlight.active_low_pwm) |
| 892 | ctl2 |= BLM_POLARITY_I965; |
| 893 | I915_WRITE(BLC_PWM_CTL2, ctl2); |
| 894 | POSTING_READ(BLC_PWM_CTL2); |
| 895 | I915_WRITE(BLC_PWM_CTL2, ctl2 | BLM_PWM_ENABLE); |
Jani Nikula | 2e7eeeb | 2014-06-09 18:24:34 +0300 | [diff] [blame] | 896 | |
| 897 | intel_panel_actually_set_backlight(connector, panel->backlight.level); |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 898 | } |
| 899 | |
| 900 | static void vlv_enable_backlight(struct intel_connector *connector) |
| 901 | { |
| 902 | struct drm_device *dev = connector->base.dev; |
| 903 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 904 | struct intel_panel *panel = &connector->panel; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 905 | enum pipe pipe = intel_get_pipe_from_connector(connector); |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 906 | u32 ctl, ctl2; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 907 | |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 908 | ctl2 = I915_READ(VLV_BLC_PWM_CTL2(pipe)); |
| 909 | if (ctl2 & BLM_PWM_ENABLE) { |
Scot Doyle | 813008c | 2014-08-19 02:07:13 +0000 | [diff] [blame] | 910 | DRM_DEBUG_KMS("backlight already enabled\n"); |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 911 | ctl2 &= ~BLM_PWM_ENABLE; |
| 912 | I915_WRITE(VLV_BLC_PWM_CTL2(pipe), ctl2); |
| 913 | } |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 914 | |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 915 | ctl = panel->backlight.max << 16; |
| 916 | I915_WRITE(VLV_BLC_PWM_CTL(pipe), ctl); |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 917 | |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 918 | /* XXX: combine this into above write? */ |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 919 | intel_panel_actually_set_backlight(connector, panel->backlight.level); |
Jani Nikula | b35684b | 2013-11-14 12:13:41 +0200 | [diff] [blame] | 920 | |
| 921 | ctl2 = 0; |
| 922 | if (panel->backlight.active_low_pwm) |
| 923 | ctl2 |= BLM_POLARITY_I965; |
| 924 | I915_WRITE(VLV_BLC_PWM_CTL2(pipe), ctl2); |
| 925 | POSTING_READ(VLV_BLC_PWM_CTL2(pipe)); |
| 926 | I915_WRITE(VLV_BLC_PWM_CTL2(pipe), ctl2 | BLM_PWM_ENABLE); |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 927 | } |
| 928 | |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 929 | void intel_panel_enable_backlight(struct intel_connector *connector) |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 930 | { |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 931 | struct drm_device *dev = connector->base.dev; |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 932 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 933 | struct intel_panel *panel = &connector->panel; |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 934 | enum pipe pipe = intel_get_pipe_from_connector(connector); |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 935 | |
Ville Syrjälä | dc5a436 | 2014-01-16 18:27:15 +0200 | [diff] [blame] | 936 | if (!panel->backlight.present || pipe == INVALID_PIPE) |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 937 | return; |
| 938 | |
Damien Lespiau | 6f2bcce | 2013-10-16 12:29:54 +0100 | [diff] [blame] | 939 | DRM_DEBUG_KMS("pipe %c\n", pipe_name(pipe)); |
Chris Wilson | 540b5d0 | 2013-10-13 12:56:31 +0100 | [diff] [blame] | 940 | |
Daniel Vetter | 07f11d4 | 2014-09-15 14:35:09 +0200 | [diff] [blame] | 941 | mutex_lock(&dev_priv->backlight_lock); |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 942 | |
Jani Nikula | f91c15e | 2013-11-08 16:49:00 +0200 | [diff] [blame] | 943 | WARN_ON(panel->backlight.max == 0); |
| 944 | |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 945 | if (panel->backlight.level == 0) { |
Jani Nikula | f91c15e | 2013-11-08 16:49:00 +0200 | [diff] [blame] | 946 | panel->backlight.level = panel->backlight.max; |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 947 | if (panel->backlight.device) |
| 948 | panel->backlight.device->props.brightness = |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 949 | scale_hw_to_user(connector, |
| 950 | panel->backlight.level, |
| 951 | panel->backlight.device->props.max_brightness); |
Jani Nikula | b6b3ba5 | 2013-03-12 11:44:15 +0200 | [diff] [blame] | 952 | } |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 953 | |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 954 | dev_priv->display.enable_backlight(connector); |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 955 | panel->backlight.enabled = true; |
Jani Nikula | ab656bb | 2014-08-13 12:10:12 +0300 | [diff] [blame] | 956 | if (panel->backlight.device) |
| 957 | panel->backlight.device->props.power = FB_BLANK_UNBLANK; |
Jani Nikula | 8ba2d18 | 2013-04-12 15:18:37 +0300 | [diff] [blame] | 958 | |
Daniel Vetter | 07f11d4 | 2014-09-15 14:35:09 +0200 | [diff] [blame] | 959 | mutex_unlock(&dev_priv->backlight_lock); |
Chris Wilson | 47356eb | 2011-01-11 17:06:04 +0000 | [diff] [blame] | 960 | } |
| 961 | |
Jani Nikula | 912e8b1 | 2013-09-18 17:19:45 +0300 | [diff] [blame] | 962 | #if IS_ENABLED(CONFIG_BACKLIGHT_CLASS_DEVICE) |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 963 | static int intel_backlight_device_update_status(struct backlight_device *bd) |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 964 | { |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 965 | struct intel_connector *connector = bl_get_data(bd); |
Jani Nikula | ab656bb | 2014-08-13 12:10:12 +0300 | [diff] [blame] | 966 | struct intel_panel *panel = &connector->panel; |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 967 | struct drm_device *dev = connector->base.dev; |
| 968 | |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 969 | drm_modeset_lock(&dev->mode_config.connection_mutex, NULL); |
Chris Wilson | 540b5d0 | 2013-10-13 12:56:31 +0100 | [diff] [blame] | 970 | DRM_DEBUG_KMS("updating intel_backlight, brightness=%d/%d\n", |
| 971 | bd->props.brightness, bd->props.max_brightness); |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 972 | intel_panel_set_backlight(connector, bd->props.brightness, |
Jani Nikula | d654063 | 2013-04-12 15:18:36 +0300 | [diff] [blame] | 973 | bd->props.max_brightness); |
Jani Nikula | ab656bb | 2014-08-13 12:10:12 +0300 | [diff] [blame] | 974 | |
| 975 | /* |
| 976 | * Allow flipping bl_power as a sub-state of enabled. Sadly the |
| 977 | * backlight class device does not make it easy to to differentiate |
| 978 | * between callbacks for brightness and bl_power, so our backlight_power |
| 979 | * callback needs to take this into account. |
| 980 | */ |
| 981 | if (panel->backlight.enabled) { |
| 982 | if (panel->backlight_power) { |
Jani Nikula | e6755fb | 2014-08-12 17:11:42 +0300 | [diff] [blame] | 983 | bool enable = bd->props.power == FB_BLANK_UNBLANK && |
| 984 | bd->props.brightness != 0; |
Jani Nikula | ab656bb | 2014-08-13 12:10:12 +0300 | [diff] [blame] | 985 | panel->backlight_power(connector, enable); |
| 986 | } |
| 987 | } else { |
| 988 | bd->props.power = FB_BLANK_POWERDOWN; |
| 989 | } |
| 990 | |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 991 | drm_modeset_unlock(&dev->mode_config.connection_mutex); |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 992 | return 0; |
| 993 | } |
| 994 | |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 995 | static int intel_backlight_device_get_brightness(struct backlight_device *bd) |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 996 | { |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 997 | struct intel_connector *connector = bl_get_data(bd); |
| 998 | struct drm_device *dev = connector->base.dev; |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 999 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 1000 | u32 hw_level; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1001 | int ret; |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 1002 | |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1003 | intel_runtime_pm_get(dev_priv); |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 1004 | drm_modeset_lock(&dev->mode_config.connection_mutex, NULL); |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 1005 | |
| 1006 | hw_level = intel_panel_get_backlight(connector); |
| 1007 | ret = scale_hw_to_user(connector, hw_level, bd->props.max_brightness); |
| 1008 | |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 1009 | drm_modeset_unlock(&dev->mode_config.connection_mutex); |
Paulo Zanoni | c8c8fb3 | 2013-11-27 18:21:54 -0200 | [diff] [blame] | 1010 | intel_runtime_pm_put(dev_priv); |
Jesse Barnes | 752aa88 | 2013-10-31 18:55:49 +0200 | [diff] [blame] | 1011 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1012 | return ret; |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1013 | } |
| 1014 | |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1015 | static const struct backlight_ops intel_backlight_device_ops = { |
| 1016 | .update_status = intel_backlight_device_update_status, |
| 1017 | .get_brightness = intel_backlight_device_get_brightness, |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1018 | }; |
| 1019 | |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1020 | static int intel_backlight_device_register(struct intel_connector *connector) |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1021 | { |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 1022 | struct intel_panel *panel = &connector->panel; |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1023 | struct backlight_properties props; |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1024 | |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 1025 | if (WARN_ON(panel->backlight.device)) |
Jani Nikula | dc652f9 | 2013-04-12 15:18:38 +0300 | [diff] [blame] | 1026 | return -ENODEV; |
| 1027 | |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 1028 | WARN_ON(panel->backlight.max == 0); |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1029 | |
Corentin Chary | af437cf | 2012-05-22 10:29:46 +0100 | [diff] [blame] | 1030 | memset(&props, 0, sizeof(props)); |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1031 | props.type = BACKLIGHT_RAW; |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 1032 | |
| 1033 | /* |
| 1034 | * Note: Everything should work even if the backlight device max |
| 1035 | * presented to the userspace is arbitrarily chosen. |
| 1036 | */ |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1037 | props.max_brightness = panel->backlight.max; |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 1038 | props.brightness = scale_hw_to_user(connector, |
| 1039 | panel->backlight.level, |
| 1040 | props.max_brightness); |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 1041 | |
Jani Nikula | ab656bb | 2014-08-13 12:10:12 +0300 | [diff] [blame] | 1042 | if (panel->backlight.enabled) |
| 1043 | props.power = FB_BLANK_UNBLANK; |
| 1044 | else |
| 1045 | props.power = FB_BLANK_POWERDOWN; |
| 1046 | |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 1047 | /* |
| 1048 | * Note: using the same name independent of the connector prevents |
| 1049 | * registration of multiple backlight devices in the driver. |
| 1050 | */ |
| 1051 | panel->backlight.device = |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1052 | backlight_device_register("intel_backlight", |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1053 | connector->base.kdev, |
| 1054 | connector, |
| 1055 | &intel_backlight_device_ops, &props); |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1056 | |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 1057 | if (IS_ERR(panel->backlight.device)) { |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1058 | DRM_ERROR("Failed to register backlight: %ld\n", |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 1059 | PTR_ERR(panel->backlight.device)); |
| 1060 | panel->backlight.device = NULL; |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1061 | return -ENODEV; |
| 1062 | } |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1063 | return 0; |
| 1064 | } |
| 1065 | |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1066 | static void intel_backlight_device_unregister(struct intel_connector *connector) |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1067 | { |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 1068 | struct intel_panel *panel = &connector->panel; |
| 1069 | |
| 1070 | if (panel->backlight.device) { |
| 1071 | backlight_device_unregister(panel->backlight.device); |
| 1072 | panel->backlight.device = NULL; |
Jani Nikula | dc652f9 | 2013-04-12 15:18:38 +0300 | [diff] [blame] | 1073 | } |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1074 | } |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1075 | #else /* CONFIG_BACKLIGHT_CLASS_DEVICE */ |
| 1076 | static int intel_backlight_device_register(struct intel_connector *connector) |
| 1077 | { |
| 1078 | return 0; |
| 1079 | } |
| 1080 | static void intel_backlight_device_unregister(struct intel_connector *connector) |
| 1081 | { |
| 1082 | } |
| 1083 | #endif /* CONFIG_BACKLIGHT_CLASS_DEVICE */ |
| 1084 | |
Jani Nikula | f91c15e | 2013-11-08 16:49:00 +0200 | [diff] [blame] | 1085 | /* |
| 1086 | * Note: The setup hooks can't assume pipe is set! |
| 1087 | * |
| 1088 | * XXX: Query mode clock or hardware clock and program PWM modulation frequency |
| 1089 | * appropriately when it's 0. Use VBT and/or sane defaults. |
| 1090 | */ |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 1091 | static u32 get_backlight_min_vbt(struct intel_connector *connector) |
| 1092 | { |
| 1093 | struct drm_device *dev = connector->base.dev; |
| 1094 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1095 | struct intel_panel *panel = &connector->panel; |
| 1096 | |
| 1097 | WARN_ON(panel->backlight.max == 0); |
| 1098 | |
| 1099 | /* vbt value is a coefficient in range [0..255] */ |
| 1100 | return scale(dev_priv->vbt.backlight.min_brightness, 0, 255, |
| 1101 | 0, panel->backlight.max); |
| 1102 | } |
| 1103 | |
Daniel Vetter | 96ab4c7 | 2013-11-14 15:17:41 +0100 | [diff] [blame] | 1104 | static int bdw_setup_backlight(struct intel_connector *connector) |
| 1105 | { |
| 1106 | struct drm_device *dev = connector->base.dev; |
| 1107 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1108 | struct intel_panel *panel = &connector->panel; |
| 1109 | u32 pch_ctl1, pch_ctl2, val; |
| 1110 | |
| 1111 | pch_ctl1 = I915_READ(BLC_PWM_PCH_CTL1); |
| 1112 | panel->backlight.active_low_pwm = pch_ctl1 & BLM_PCH_POLARITY; |
| 1113 | |
| 1114 | pch_ctl2 = I915_READ(BLC_PWM_PCH_CTL2); |
| 1115 | panel->backlight.max = pch_ctl2 >> 16; |
| 1116 | if (!panel->backlight.max) |
| 1117 | return -ENODEV; |
| 1118 | |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 1119 | panel->backlight.min = get_backlight_min_vbt(connector); |
| 1120 | |
Daniel Vetter | 96ab4c7 | 2013-11-14 15:17:41 +0100 | [diff] [blame] | 1121 | val = bdw_get_backlight(connector); |
| 1122 | panel->backlight.level = intel_panel_compute_brightness(connector, val); |
| 1123 | |
| 1124 | panel->backlight.enabled = (pch_ctl1 & BLM_PCH_PWM_ENABLE) && |
| 1125 | panel->backlight.level != 0; |
| 1126 | |
| 1127 | return 0; |
| 1128 | } |
| 1129 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1130 | static int pch_setup_backlight(struct intel_connector *connector) |
| 1131 | { |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1132 | struct drm_device *dev = connector->base.dev; |
| 1133 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1134 | struct intel_panel *panel = &connector->panel; |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1135 | u32 cpu_ctl2, pch_ctl1, pch_ctl2, val; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1136 | |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1137 | pch_ctl1 = I915_READ(BLC_PWM_PCH_CTL1); |
| 1138 | panel->backlight.active_low_pwm = pch_ctl1 & BLM_PCH_POLARITY; |
| 1139 | |
| 1140 | pch_ctl2 = I915_READ(BLC_PWM_PCH_CTL2); |
| 1141 | panel->backlight.max = pch_ctl2 >> 16; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1142 | if (!panel->backlight.max) |
| 1143 | return -ENODEV; |
| 1144 | |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 1145 | panel->backlight.min = get_backlight_min_vbt(connector); |
| 1146 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1147 | val = pch_get_backlight(connector); |
| 1148 | panel->backlight.level = intel_panel_compute_brightness(connector, val); |
| 1149 | |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1150 | cpu_ctl2 = I915_READ(BLC_PWM_CPU_CTL2); |
| 1151 | panel->backlight.enabled = (cpu_ctl2 & BLM_PWM_ENABLE) && |
| 1152 | (pch_ctl1 & BLM_PCH_PWM_ENABLE) && panel->backlight.level != 0; |
| 1153 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1154 | return 0; |
| 1155 | } |
| 1156 | |
| 1157 | static int i9xx_setup_backlight(struct intel_connector *connector) |
| 1158 | { |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1159 | struct drm_device *dev = connector->base.dev; |
| 1160 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1161 | struct intel_panel *panel = &connector->panel; |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1162 | u32 ctl, val; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1163 | |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1164 | ctl = I915_READ(BLC_PWM_CTL); |
| 1165 | |
Jani Nikula | b6ab66a | 2014-02-25 13:11:47 +0200 | [diff] [blame] | 1166 | if (IS_GEN2(dev) || IS_I915GM(dev) || IS_I945GM(dev)) |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1167 | panel->backlight.combination_mode = ctl & BLM_LEGACY_MODE; |
| 1168 | |
| 1169 | if (IS_PINEVIEW(dev)) |
| 1170 | panel->backlight.active_low_pwm = ctl & BLM_POLARITY_PNV; |
| 1171 | |
| 1172 | panel->backlight.max = ctl >> 17; |
| 1173 | if (panel->backlight.combination_mode) |
| 1174 | panel->backlight.max *= 0xff; |
| 1175 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1176 | if (!panel->backlight.max) |
| 1177 | return -ENODEV; |
| 1178 | |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 1179 | panel->backlight.min = get_backlight_min_vbt(connector); |
| 1180 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1181 | val = i9xx_get_backlight(connector); |
| 1182 | panel->backlight.level = intel_panel_compute_brightness(connector, val); |
| 1183 | |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1184 | panel->backlight.enabled = panel->backlight.level != 0; |
| 1185 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1186 | return 0; |
| 1187 | } |
| 1188 | |
| 1189 | static int i965_setup_backlight(struct intel_connector *connector) |
| 1190 | { |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1191 | struct drm_device *dev = connector->base.dev; |
| 1192 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1193 | struct intel_panel *panel = &connector->panel; |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1194 | u32 ctl, ctl2, val; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1195 | |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1196 | ctl2 = I915_READ(BLC_PWM_CTL2); |
| 1197 | panel->backlight.combination_mode = ctl2 & BLM_COMBINATION_MODE; |
| 1198 | panel->backlight.active_low_pwm = ctl2 & BLM_POLARITY_I965; |
| 1199 | |
| 1200 | ctl = I915_READ(BLC_PWM_CTL); |
| 1201 | panel->backlight.max = ctl >> 16; |
| 1202 | if (panel->backlight.combination_mode) |
| 1203 | panel->backlight.max *= 0xff; |
| 1204 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1205 | if (!panel->backlight.max) |
| 1206 | return -ENODEV; |
| 1207 | |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 1208 | panel->backlight.min = get_backlight_min_vbt(connector); |
| 1209 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1210 | val = i9xx_get_backlight(connector); |
| 1211 | panel->backlight.level = intel_panel_compute_brightness(connector, val); |
| 1212 | |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1213 | panel->backlight.enabled = (ctl2 & BLM_PWM_ENABLE) && |
| 1214 | panel->backlight.level != 0; |
| 1215 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1216 | return 0; |
| 1217 | } |
| 1218 | |
| 1219 | static int vlv_setup_backlight(struct intel_connector *connector) |
| 1220 | { |
| 1221 | struct drm_device *dev = connector->base.dev; |
| 1222 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1223 | struct intel_panel *panel = &connector->panel; |
| 1224 | enum pipe pipe; |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1225 | u32 ctl, ctl2, val; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1226 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 1227 | for_each_pipe(dev_priv, pipe) { |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1228 | u32 cur_val = I915_READ(VLV_BLC_PWM_CTL(pipe)); |
| 1229 | |
| 1230 | /* Skip if the modulation freq is already set */ |
| 1231 | if (cur_val & ~BACKLIGHT_DUTY_CYCLE_MASK) |
| 1232 | continue; |
| 1233 | |
| 1234 | cur_val &= BACKLIGHT_DUTY_CYCLE_MASK; |
| 1235 | I915_WRITE(VLV_BLC_PWM_CTL(pipe), (0xf42 << 16) | |
| 1236 | cur_val); |
| 1237 | } |
| 1238 | |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1239 | ctl2 = I915_READ(VLV_BLC_PWM_CTL2(PIPE_A)); |
| 1240 | panel->backlight.active_low_pwm = ctl2 & BLM_POLARITY_I965; |
| 1241 | |
| 1242 | ctl = I915_READ(VLV_BLC_PWM_CTL(PIPE_A)); |
| 1243 | panel->backlight.max = ctl >> 16; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1244 | if (!panel->backlight.max) |
| 1245 | return -ENODEV; |
| 1246 | |
Jani Nikula | 6dda730 | 2014-06-24 18:27:40 +0300 | [diff] [blame] | 1247 | panel->backlight.min = get_backlight_min_vbt(connector); |
| 1248 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1249 | val = _vlv_get_backlight(dev, PIPE_A); |
| 1250 | panel->backlight.level = intel_panel_compute_brightness(connector, val); |
| 1251 | |
Jani Nikula | 636baeb | 2013-11-08 16:49:02 +0200 | [diff] [blame] | 1252 | panel->backlight.enabled = (ctl2 & BLM_PWM_ENABLE) && |
| 1253 | panel->backlight.level != 0; |
| 1254 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1255 | return 0; |
| 1256 | } |
| 1257 | |
Jani Nikula | 0657b6b | 2012-10-19 14:51:46 +0300 | [diff] [blame] | 1258 | int intel_panel_setup_backlight(struct drm_connector *connector) |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1259 | { |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1260 | struct drm_device *dev = connector->dev; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1261 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1262 | struct intel_connector *intel_connector = to_intel_connector(connector); |
Jani Nikula | 58c6877 | 2013-11-08 16:48:54 +0200 | [diff] [blame] | 1263 | struct intel_panel *panel = &intel_connector->panel; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1264 | int ret; |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1265 | |
Jani Nikula | c675949 | 2014-04-09 11:31:37 +0300 | [diff] [blame] | 1266 | if (!dev_priv->vbt.backlight.present) { |
Scot Doyle | 9c72cc6 | 2014-07-03 23:27:50 +0000 | [diff] [blame] | 1267 | if (dev_priv->quirks & QUIRK_BACKLIGHT_PRESENT) { |
| 1268 | DRM_DEBUG_KMS("no backlight present per VBT, but present per quirk\n"); |
| 1269 | } else { |
| 1270 | DRM_DEBUG_KMS("no backlight present per VBT\n"); |
| 1271 | return 0; |
| 1272 | } |
Jani Nikula | c675949 | 2014-04-09 11:31:37 +0300 | [diff] [blame] | 1273 | } |
| 1274 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1275 | /* set level and max in panel struct */ |
Daniel Vetter | 07f11d4 | 2014-09-15 14:35:09 +0200 | [diff] [blame] | 1276 | mutex_lock(&dev_priv->backlight_lock); |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1277 | ret = dev_priv->display.setup_backlight(intel_connector); |
Daniel Vetter | 07f11d4 | 2014-09-15 14:35:09 +0200 | [diff] [blame] | 1278 | mutex_unlock(&dev_priv->backlight_lock); |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1279 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1280 | if (ret) { |
| 1281 | DRM_DEBUG_KMS("failed to setup backlight for connector %s\n", |
Jani Nikula | c23cc41 | 2014-06-03 14:56:17 +0300 | [diff] [blame] | 1282 | connector->name); |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1283 | return ret; |
| 1284 | } |
| 1285 | |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1286 | intel_backlight_device_register(intel_connector); |
| 1287 | |
Jani Nikula | c91c9f3 | 2013-11-08 16:48:55 +0200 | [diff] [blame] | 1288 | panel->backlight.present = true; |
| 1289 | |
Jani Nikula | c445b3b | 2013-11-08 16:49:01 +0200 | [diff] [blame] | 1290 | DRM_DEBUG_KMS("backlight initialized, %s, brightness %u/%u, " |
| 1291 | "sysfs interface %sregistered\n", |
| 1292 | panel->backlight.enabled ? "enabled" : "disabled", |
| 1293 | panel->backlight.level, panel->backlight.max, |
| 1294 | panel->backlight.device ? "" : "not "); |
| 1295 | |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1296 | return 0; |
| 1297 | } |
| 1298 | |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1299 | void intel_panel_destroy_backlight(struct drm_connector *connector) |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1300 | { |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1301 | struct intel_connector *intel_connector = to_intel_connector(connector); |
Jani Nikula | c91c9f3 | 2013-11-08 16:48:55 +0200 | [diff] [blame] | 1302 | struct intel_panel *panel = &intel_connector->panel; |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1303 | |
Jani Nikula | c91c9f3 | 2013-11-08 16:48:55 +0200 | [diff] [blame] | 1304 | panel->backlight.present = false; |
Jani Nikula | db31af1d | 2013-11-08 16:48:53 +0200 | [diff] [blame] | 1305 | intel_backlight_device_unregister(intel_connector); |
Matthew Garrett | aaa6fd2 | 2011-08-12 12:11:33 +0200 | [diff] [blame] | 1306 | } |
Jani Nikula | 1d50870 | 2012-10-19 14:51:49 +0300 | [diff] [blame] | 1307 | |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1308 | /* Set up chip specific backlight functions */ |
| 1309 | void intel_panel_init_backlight_funcs(struct drm_device *dev) |
| 1310 | { |
| 1311 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1312 | |
Satheeshakrishna M | 7879a7e | 2014-04-08 15:46:55 +0530 | [diff] [blame] | 1313 | if (IS_BROADWELL(dev) || (INTEL_INFO(dev)->gen >= 9)) { |
Daniel Vetter | 96ab4c7 | 2013-11-14 15:17:41 +0100 | [diff] [blame] | 1314 | dev_priv->display.setup_backlight = bdw_setup_backlight; |
| 1315 | dev_priv->display.enable_backlight = bdw_enable_backlight; |
| 1316 | dev_priv->display.disable_backlight = pch_disable_backlight; |
| 1317 | dev_priv->display.set_backlight = bdw_set_backlight; |
| 1318 | dev_priv->display.get_backlight = bdw_get_backlight; |
| 1319 | } else if (HAS_PCH_SPLIT(dev)) { |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1320 | dev_priv->display.setup_backlight = pch_setup_backlight; |
| 1321 | dev_priv->display.enable_backlight = pch_enable_backlight; |
| 1322 | dev_priv->display.disable_backlight = pch_disable_backlight; |
| 1323 | dev_priv->display.set_backlight = pch_set_backlight; |
| 1324 | dev_priv->display.get_backlight = pch_get_backlight; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1325 | } else if (IS_VALLEYVIEW(dev)) { |
| 1326 | dev_priv->display.setup_backlight = vlv_setup_backlight; |
| 1327 | dev_priv->display.enable_backlight = vlv_enable_backlight; |
| 1328 | dev_priv->display.disable_backlight = vlv_disable_backlight; |
| 1329 | dev_priv->display.set_backlight = vlv_set_backlight; |
| 1330 | dev_priv->display.get_backlight = vlv_get_backlight; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1331 | } else if (IS_GEN4(dev)) { |
| 1332 | dev_priv->display.setup_backlight = i965_setup_backlight; |
| 1333 | dev_priv->display.enable_backlight = i965_enable_backlight; |
| 1334 | dev_priv->display.disable_backlight = i965_disable_backlight; |
| 1335 | dev_priv->display.set_backlight = i9xx_set_backlight; |
| 1336 | dev_priv->display.get_backlight = i9xx_get_backlight; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1337 | } else { |
| 1338 | dev_priv->display.setup_backlight = i9xx_setup_backlight; |
Jani Nikula | 3bd712e | 2013-11-08 16:48:59 +0200 | [diff] [blame] | 1339 | dev_priv->display.enable_backlight = i9xx_enable_backlight; |
| 1340 | dev_priv->display.disable_backlight = i9xx_disable_backlight; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1341 | dev_priv->display.set_backlight = i9xx_set_backlight; |
| 1342 | dev_priv->display.get_backlight = i9xx_get_backlight; |
Jani Nikula | 7bd688c | 2013-11-08 16:48:56 +0200 | [diff] [blame] | 1343 | } |
| 1344 | } |
| 1345 | |
Jani Nikula | dd06f90 | 2012-10-19 14:51:50 +0300 | [diff] [blame] | 1346 | int intel_panel_init(struct intel_panel *panel, |
Vandana Kannan | 4b6ed68 | 2014-02-11 14:26:36 +0530 | [diff] [blame] | 1347 | struct drm_display_mode *fixed_mode, |
| 1348 | struct drm_display_mode *downclock_mode) |
Jani Nikula | 1d50870 | 2012-10-19 14:51:49 +0300 | [diff] [blame] | 1349 | { |
Jani Nikula | dd06f90 | 2012-10-19 14:51:50 +0300 | [diff] [blame] | 1350 | panel->fixed_mode = fixed_mode; |
Vandana Kannan | 4b6ed68 | 2014-02-11 14:26:36 +0530 | [diff] [blame] | 1351 | panel->downclock_mode = downclock_mode; |
Jani Nikula | dd06f90 | 2012-10-19 14:51:50 +0300 | [diff] [blame] | 1352 | |
Jani Nikula | 1d50870 | 2012-10-19 14:51:49 +0300 | [diff] [blame] | 1353 | return 0; |
| 1354 | } |
| 1355 | |
| 1356 | void intel_panel_fini(struct intel_panel *panel) |
| 1357 | { |
Jani Nikula | dd06f90 | 2012-10-19 14:51:50 +0300 | [diff] [blame] | 1358 | struct intel_connector *intel_connector = |
| 1359 | container_of(panel, struct intel_connector, panel); |
| 1360 | |
| 1361 | if (panel->fixed_mode) |
| 1362 | drm_mode_destroy(intel_connector->base.dev, panel->fixed_mode); |
Vandana Kannan | ec9ed19 | 2013-12-10 13:37:36 +0530 | [diff] [blame] | 1363 | |
| 1364 | if (panel->downclock_mode) |
| 1365 | drm_mode_destroy(intel_connector->base.dev, |
| 1366 | panel->downclock_mode); |
Jani Nikula | 1d50870 | 2012-10-19 14:51:49 +0300 | [diff] [blame] | 1367 | } |