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