2 * Copyright © 2006-2007 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
24 * Eric Anholt <eric@anholt.net>
27 #include <linux/dmi.h>
28 #include <linux/module.h>
29 #include <linux/input.h>
30 #include <linux/i2c.h>
31 #include <linux/kernel.h>
32 #include <linux/slab.h>
33 #include <linux/vgaarb.h>
34 #include <drm/drm_edid.h>
36 #include "intel_drv.h"
37 #include "intel_frontbuffer.h"
38 #include <drm/i915_drm.h>
40 #include "i915_gem_dmabuf.h"
41 #include "intel_dsi.h"
42 #include "i915_trace.h"
43 #include <drm/drm_atomic.h>
44 #include <drm/drm_atomic_helper.h>
45 #include <drm/drm_dp_helper.h>
46 #include <drm/drm_crtc_helper.h>
47 #include <drm/drm_plane_helper.h>
48 #include <drm/drm_rect.h>
49 #include <linux/dma_remapping.h>
50 #include <linux/reservation.h>
52 static bool is_mmio_work(struct intel_flip_work *work)
54 return work->mmio_work.func;
57 /* Primary plane formats for gen <= 3 */
58 static const uint32_t i8xx_primary_formats[] = {
65 /* Primary plane formats for gen >= 4 */
66 static const uint32_t i965_primary_formats[] = {
71 DRM_FORMAT_XRGB2101010,
72 DRM_FORMAT_XBGR2101010,
75 static const uint32_t skl_primary_formats[] = {
82 DRM_FORMAT_XRGB2101010,
83 DRM_FORMAT_XBGR2101010,
91 static const uint32_t intel_cursor_formats[] = {
95 static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
96 struct intel_crtc_state *pipe_config);
97 static void ironlake_pch_clock_get(struct intel_crtc *crtc,
98 struct intel_crtc_state *pipe_config);
100 static int intel_framebuffer_init(struct drm_device *dev,
101 struct intel_framebuffer *ifb,
102 struct drm_mode_fb_cmd2 *mode_cmd,
103 struct drm_i915_gem_object *obj);
104 static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
105 static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
106 static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc);
107 static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
108 struct intel_link_m_n *m_n,
109 struct intel_link_m_n *m2_n2);
110 static void ironlake_set_pipeconf(struct drm_crtc *crtc);
111 static void haswell_set_pipeconf(struct drm_crtc *crtc);
112 static void haswell_set_pipemisc(struct drm_crtc *crtc);
113 static void vlv_prepare_pll(struct intel_crtc *crtc,
114 const struct intel_crtc_state *pipe_config);
115 static void chv_prepare_pll(struct intel_crtc *crtc,
116 const struct intel_crtc_state *pipe_config);
117 static void intel_begin_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
118 static void intel_finish_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
119 static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
120 struct intel_crtc_state *crtc_state);
121 static void skylake_pfit_enable(struct intel_crtc *crtc);
122 static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force);
123 static void ironlake_pfit_enable(struct intel_crtc *crtc);
124 static void intel_modeset_setup_hw_state(struct drm_device *dev);
125 static void intel_pre_disable_primary_noatomic(struct drm_crtc *crtc);
126 static int ilk_max_pixel_rate(struct drm_atomic_state *state);
127 static int bxt_calc_cdclk(int max_pixclk);
132 } dot, vco, n, m, m1, m2, p, p1;
136 int p2_slow, p2_fast;
140 /* returns HPLL frequency in kHz */
141 static int valleyview_get_vco(struct drm_i915_private *dev_priv)
143 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
145 /* Obtain SKU information */
146 mutex_lock(&dev_priv->sb_lock);
147 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
148 CCK_FUSE_HPLL_FREQ_MASK;
149 mutex_unlock(&dev_priv->sb_lock);
151 return vco_freq[hpll_freq] * 1000;
154 int vlv_get_cck_clock(struct drm_i915_private *dev_priv,
155 const char *name, u32 reg, int ref_freq)
160 mutex_lock(&dev_priv->sb_lock);
161 val = vlv_cck_read(dev_priv, reg);
162 mutex_unlock(&dev_priv->sb_lock);
164 divider = val & CCK_FREQUENCY_VALUES;
166 WARN((val & CCK_FREQUENCY_STATUS) !=
167 (divider << CCK_FREQUENCY_STATUS_SHIFT),
168 "%s change in progress\n", name);
170 return DIV_ROUND_CLOSEST(ref_freq << 1, divider + 1);
173 static int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
174 const char *name, u32 reg)
176 if (dev_priv->hpll_freq == 0)
177 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
179 return vlv_get_cck_clock(dev_priv, name, reg,
180 dev_priv->hpll_freq);
184 intel_pch_rawclk(struct drm_i915_private *dev_priv)
186 return (I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK) * 1000;
190 intel_vlv_hrawclk(struct drm_i915_private *dev_priv)
192 /* RAWCLK_FREQ_VLV register updated from power well code */
193 return vlv_get_cck_clock_hpll(dev_priv, "hrawclk",
194 CCK_DISPLAY_REF_CLOCK_CONTROL);
198 intel_g4x_hrawclk(struct drm_i915_private *dev_priv)
202 /* hrawclock is 1/4 the FSB frequency */
203 clkcfg = I915_READ(CLKCFG);
204 switch (clkcfg & CLKCFG_FSB_MASK) {
213 case CLKCFG_FSB_1067:
215 case CLKCFG_FSB_1333:
217 /* these two are just a guess; one of them might be right */
218 case CLKCFG_FSB_1600:
219 case CLKCFG_FSB_1600_ALT:
226 void intel_update_rawclk(struct drm_i915_private *dev_priv)
228 if (HAS_PCH_SPLIT(dev_priv))
229 dev_priv->rawclk_freq = intel_pch_rawclk(dev_priv);
230 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
231 dev_priv->rawclk_freq = intel_vlv_hrawclk(dev_priv);
232 else if (IS_G4X(dev_priv) || IS_PINEVIEW(dev_priv))
233 dev_priv->rawclk_freq = intel_g4x_hrawclk(dev_priv);
235 return; /* no rawclk on other platforms, or no need to know it */
237 DRM_DEBUG_DRIVER("rawclk rate: %d kHz\n", dev_priv->rawclk_freq);
240 static void intel_update_czclk(struct drm_i915_private *dev_priv)
242 if (!(IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)))
245 dev_priv->czclk_freq = vlv_get_cck_clock_hpll(dev_priv, "czclk",
246 CCK_CZ_CLOCK_CONTROL);
248 DRM_DEBUG_DRIVER("CZ clock rate: %d kHz\n", dev_priv->czclk_freq);
251 static inline u32 /* units of 100MHz */
252 intel_fdi_link_freq(struct drm_i915_private *dev_priv,
253 const struct intel_crtc_state *pipe_config)
255 if (HAS_DDI(dev_priv))
256 return pipe_config->port_clock; /* SPLL */
257 else if (IS_GEN5(dev_priv))
258 return ((I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2) * 10000;
263 static const struct intel_limit intel_limits_i8xx_dac = {
264 .dot = { .min = 25000, .max = 350000 },
265 .vco = { .min = 908000, .max = 1512000 },
266 .n = { .min = 2, .max = 16 },
267 .m = { .min = 96, .max = 140 },
268 .m1 = { .min = 18, .max = 26 },
269 .m2 = { .min = 6, .max = 16 },
270 .p = { .min = 4, .max = 128 },
271 .p1 = { .min = 2, .max = 33 },
272 .p2 = { .dot_limit = 165000,
273 .p2_slow = 4, .p2_fast = 2 },
276 static const struct intel_limit intel_limits_i8xx_dvo = {
277 .dot = { .min = 25000, .max = 350000 },
278 .vco = { .min = 908000, .max = 1512000 },
279 .n = { .min = 2, .max = 16 },
280 .m = { .min = 96, .max = 140 },
281 .m1 = { .min = 18, .max = 26 },
282 .m2 = { .min = 6, .max = 16 },
283 .p = { .min = 4, .max = 128 },
284 .p1 = { .min = 2, .max = 33 },
285 .p2 = { .dot_limit = 165000,
286 .p2_slow = 4, .p2_fast = 4 },
289 static const struct intel_limit intel_limits_i8xx_lvds = {
290 .dot = { .min = 25000, .max = 350000 },
291 .vco = { .min = 908000, .max = 1512000 },
292 .n = { .min = 2, .max = 16 },
293 .m = { .min = 96, .max = 140 },
294 .m1 = { .min = 18, .max = 26 },
295 .m2 = { .min = 6, .max = 16 },
296 .p = { .min = 4, .max = 128 },
297 .p1 = { .min = 1, .max = 6 },
298 .p2 = { .dot_limit = 165000,
299 .p2_slow = 14, .p2_fast = 7 },
302 static const struct intel_limit intel_limits_i9xx_sdvo = {
303 .dot = { .min = 20000, .max = 400000 },
304 .vco = { .min = 1400000, .max = 2800000 },
305 .n = { .min = 1, .max = 6 },
306 .m = { .min = 70, .max = 120 },
307 .m1 = { .min = 8, .max = 18 },
308 .m2 = { .min = 3, .max = 7 },
309 .p = { .min = 5, .max = 80 },
310 .p1 = { .min = 1, .max = 8 },
311 .p2 = { .dot_limit = 200000,
312 .p2_slow = 10, .p2_fast = 5 },
315 static const struct intel_limit intel_limits_i9xx_lvds = {
316 .dot = { .min = 20000, .max = 400000 },
317 .vco = { .min = 1400000, .max = 2800000 },
318 .n = { .min = 1, .max = 6 },
319 .m = { .min = 70, .max = 120 },
320 .m1 = { .min = 8, .max = 18 },
321 .m2 = { .min = 3, .max = 7 },
322 .p = { .min = 7, .max = 98 },
323 .p1 = { .min = 1, .max = 8 },
324 .p2 = { .dot_limit = 112000,
325 .p2_slow = 14, .p2_fast = 7 },
329 static const struct intel_limit intel_limits_g4x_sdvo = {
330 .dot = { .min = 25000, .max = 270000 },
331 .vco = { .min = 1750000, .max = 3500000},
332 .n = { .min = 1, .max = 4 },
333 .m = { .min = 104, .max = 138 },
334 .m1 = { .min = 17, .max = 23 },
335 .m2 = { .min = 5, .max = 11 },
336 .p = { .min = 10, .max = 30 },
337 .p1 = { .min = 1, .max = 3},
338 .p2 = { .dot_limit = 270000,
344 static const struct intel_limit intel_limits_g4x_hdmi = {
345 .dot = { .min = 22000, .max = 400000 },
346 .vco = { .min = 1750000, .max = 3500000},
347 .n = { .min = 1, .max = 4 },
348 .m = { .min = 104, .max = 138 },
349 .m1 = { .min = 16, .max = 23 },
350 .m2 = { .min = 5, .max = 11 },
351 .p = { .min = 5, .max = 80 },
352 .p1 = { .min = 1, .max = 8},
353 .p2 = { .dot_limit = 165000,
354 .p2_slow = 10, .p2_fast = 5 },
357 static const struct intel_limit intel_limits_g4x_single_channel_lvds = {
358 .dot = { .min = 20000, .max = 115000 },
359 .vco = { .min = 1750000, .max = 3500000 },
360 .n = { .min = 1, .max = 3 },
361 .m = { .min = 104, .max = 138 },
362 .m1 = { .min = 17, .max = 23 },
363 .m2 = { .min = 5, .max = 11 },
364 .p = { .min = 28, .max = 112 },
365 .p1 = { .min = 2, .max = 8 },
366 .p2 = { .dot_limit = 0,
367 .p2_slow = 14, .p2_fast = 14
371 static const struct intel_limit intel_limits_g4x_dual_channel_lvds = {
372 .dot = { .min = 80000, .max = 224000 },
373 .vco = { .min = 1750000, .max = 3500000 },
374 .n = { .min = 1, .max = 3 },
375 .m = { .min = 104, .max = 138 },
376 .m1 = { .min = 17, .max = 23 },
377 .m2 = { .min = 5, .max = 11 },
378 .p = { .min = 14, .max = 42 },
379 .p1 = { .min = 2, .max = 6 },
380 .p2 = { .dot_limit = 0,
381 .p2_slow = 7, .p2_fast = 7
385 static const struct intel_limit intel_limits_pineview_sdvo = {
386 .dot = { .min = 20000, .max = 400000},
387 .vco = { .min = 1700000, .max = 3500000 },
388 /* Pineview's Ncounter is a ring counter */
389 .n = { .min = 3, .max = 6 },
390 .m = { .min = 2, .max = 256 },
391 /* Pineview only has one combined m divider, which we treat as m2. */
392 .m1 = { .min = 0, .max = 0 },
393 .m2 = { .min = 0, .max = 254 },
394 .p = { .min = 5, .max = 80 },
395 .p1 = { .min = 1, .max = 8 },
396 .p2 = { .dot_limit = 200000,
397 .p2_slow = 10, .p2_fast = 5 },
400 static const struct intel_limit intel_limits_pineview_lvds = {
401 .dot = { .min = 20000, .max = 400000 },
402 .vco = { .min = 1700000, .max = 3500000 },
403 .n = { .min = 3, .max = 6 },
404 .m = { .min = 2, .max = 256 },
405 .m1 = { .min = 0, .max = 0 },
406 .m2 = { .min = 0, .max = 254 },
407 .p = { .min = 7, .max = 112 },
408 .p1 = { .min = 1, .max = 8 },
409 .p2 = { .dot_limit = 112000,
410 .p2_slow = 14, .p2_fast = 14 },
413 /* Ironlake / Sandybridge
415 * We calculate clock using (register_value + 2) for N/M1/M2, so here
416 * the range value for them is (actual_value - 2).
418 static const struct intel_limit intel_limits_ironlake_dac = {
419 .dot = { .min = 25000, .max = 350000 },
420 .vco = { .min = 1760000, .max = 3510000 },
421 .n = { .min = 1, .max = 5 },
422 .m = { .min = 79, .max = 127 },
423 .m1 = { .min = 12, .max = 22 },
424 .m2 = { .min = 5, .max = 9 },
425 .p = { .min = 5, .max = 80 },
426 .p1 = { .min = 1, .max = 8 },
427 .p2 = { .dot_limit = 225000,
428 .p2_slow = 10, .p2_fast = 5 },
431 static const struct intel_limit intel_limits_ironlake_single_lvds = {
432 .dot = { .min = 25000, .max = 350000 },
433 .vco = { .min = 1760000, .max = 3510000 },
434 .n = { .min = 1, .max = 3 },
435 .m = { .min = 79, .max = 118 },
436 .m1 = { .min = 12, .max = 22 },
437 .m2 = { .min = 5, .max = 9 },
438 .p = { .min = 28, .max = 112 },
439 .p1 = { .min = 2, .max = 8 },
440 .p2 = { .dot_limit = 225000,
441 .p2_slow = 14, .p2_fast = 14 },
444 static const struct intel_limit intel_limits_ironlake_dual_lvds = {
445 .dot = { .min = 25000, .max = 350000 },
446 .vco = { .min = 1760000, .max = 3510000 },
447 .n = { .min = 1, .max = 3 },
448 .m = { .min = 79, .max = 127 },
449 .m1 = { .min = 12, .max = 22 },
450 .m2 = { .min = 5, .max = 9 },
451 .p = { .min = 14, .max = 56 },
452 .p1 = { .min = 2, .max = 8 },
453 .p2 = { .dot_limit = 225000,
454 .p2_slow = 7, .p2_fast = 7 },
457 /* LVDS 100mhz refclk limits. */
458 static const struct intel_limit intel_limits_ironlake_single_lvds_100m = {
459 .dot = { .min = 25000, .max = 350000 },
460 .vco = { .min = 1760000, .max = 3510000 },
461 .n = { .min = 1, .max = 2 },
462 .m = { .min = 79, .max = 126 },
463 .m1 = { .min = 12, .max = 22 },
464 .m2 = { .min = 5, .max = 9 },
465 .p = { .min = 28, .max = 112 },
466 .p1 = { .min = 2, .max = 8 },
467 .p2 = { .dot_limit = 225000,
468 .p2_slow = 14, .p2_fast = 14 },
471 static const struct intel_limit intel_limits_ironlake_dual_lvds_100m = {
472 .dot = { .min = 25000, .max = 350000 },
473 .vco = { .min = 1760000, .max = 3510000 },
474 .n = { .min = 1, .max = 3 },
475 .m = { .min = 79, .max = 126 },
476 .m1 = { .min = 12, .max = 22 },
477 .m2 = { .min = 5, .max = 9 },
478 .p = { .min = 14, .max = 42 },
479 .p1 = { .min = 2, .max = 6 },
480 .p2 = { .dot_limit = 225000,
481 .p2_slow = 7, .p2_fast = 7 },
484 static const struct intel_limit intel_limits_vlv = {
486 * These are the data rate limits (measured in fast clocks)
487 * since those are the strictest limits we have. The fast
488 * clock and actual rate limits are more relaxed, so checking
489 * them would make no difference.
491 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
492 .vco = { .min = 4000000, .max = 6000000 },
493 .n = { .min = 1, .max = 7 },
494 .m1 = { .min = 2, .max = 3 },
495 .m2 = { .min = 11, .max = 156 },
496 .p1 = { .min = 2, .max = 3 },
497 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
500 static const struct intel_limit intel_limits_chv = {
502 * These are the data rate limits (measured in fast clocks)
503 * since those are the strictest limits we have. The fast
504 * clock and actual rate limits are more relaxed, so checking
505 * them would make no difference.
507 .dot = { .min = 25000 * 5, .max = 540000 * 5},
508 .vco = { .min = 4800000, .max = 6480000 },
509 .n = { .min = 1, .max = 1 },
510 .m1 = { .min = 2, .max = 2 },
511 .m2 = { .min = 24 << 22, .max = 175 << 22 },
512 .p1 = { .min = 2, .max = 4 },
513 .p2 = { .p2_slow = 1, .p2_fast = 14 },
516 static const struct intel_limit intel_limits_bxt = {
517 /* FIXME: find real dot limits */
518 .dot = { .min = 0, .max = INT_MAX },
519 .vco = { .min = 4800000, .max = 6700000 },
520 .n = { .min = 1, .max = 1 },
521 .m1 = { .min = 2, .max = 2 },
522 /* FIXME: find real m2 limits */
523 .m2 = { .min = 2 << 22, .max = 255 << 22 },
524 .p1 = { .min = 2, .max = 4 },
525 .p2 = { .p2_slow = 1, .p2_fast = 20 },
529 needs_modeset(struct drm_crtc_state *state)
531 return drm_atomic_crtc_needs_modeset(state);
535 * Platform specific helpers to calculate the port PLL loopback- (clock.m),
536 * and post-divider (clock.p) values, pre- (clock.vco) and post-divided fast
537 * (clock.dot) clock rates. This fast dot clock is fed to the port's IO logic.
538 * The helpers' return value is the rate of the clock that is fed to the
539 * display engine's pipe which can be the above fast dot clock rate or a
540 * divided-down version of it.
542 /* m1 is reserved as 0 in Pineview, n is a ring counter */
543 static int pnv_calc_dpll_params(int refclk, struct dpll *clock)
545 clock->m = clock->m2 + 2;
546 clock->p = clock->p1 * clock->p2;
547 if (WARN_ON(clock->n == 0 || clock->p == 0))
549 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
550 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
555 static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
557 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
560 static int i9xx_calc_dpll_params(int refclk, struct dpll *clock)
562 clock->m = i9xx_dpll_compute_m(clock);
563 clock->p = clock->p1 * clock->p2;
564 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
566 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
567 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
572 static int vlv_calc_dpll_params(int refclk, struct dpll *clock)
574 clock->m = clock->m1 * clock->m2;
575 clock->p = clock->p1 * clock->p2;
576 if (WARN_ON(clock->n == 0 || clock->p == 0))
578 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
579 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
581 return clock->dot / 5;
584 int chv_calc_dpll_params(int refclk, struct dpll *clock)
586 clock->m = clock->m1 * clock->m2;
587 clock->p = clock->p1 * clock->p2;
588 if (WARN_ON(clock->n == 0 || clock->p == 0))
590 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
592 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
594 return clock->dot / 5;
597 #define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
599 * Returns whether the given set of divisors are valid for a given refclk with
600 * the given connectors.
603 static bool intel_PLL_is_valid(struct drm_i915_private *dev_priv,
604 const struct intel_limit *limit,
605 const struct dpll *clock)
607 if (clock->n < limit->n.min || limit->n.max < clock->n)
608 INTELPllInvalid("n out of range\n");
609 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
610 INTELPllInvalid("p1 out of range\n");
611 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
612 INTELPllInvalid("m2 out of range\n");
613 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
614 INTELPllInvalid("m1 out of range\n");
616 if (!IS_PINEVIEW(dev_priv) && !IS_VALLEYVIEW(dev_priv) &&
617 !IS_CHERRYVIEW(dev_priv) && !IS_BROXTON(dev_priv))
618 if (clock->m1 <= clock->m2)
619 INTELPllInvalid("m1 <= m2\n");
621 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv) &&
622 !IS_BROXTON(dev_priv)) {
623 if (clock->p < limit->p.min || limit->p.max < clock->p)
624 INTELPllInvalid("p out of range\n");
625 if (clock->m < limit->m.min || limit->m.max < clock->m)
626 INTELPllInvalid("m out of range\n");
629 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
630 INTELPllInvalid("vco out of range\n");
631 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
632 * connector, etc., rather than just a single range.
634 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
635 INTELPllInvalid("dot out of range\n");
641 i9xx_select_p2_div(const struct intel_limit *limit,
642 const struct intel_crtc_state *crtc_state,
645 struct drm_device *dev = crtc_state->base.crtc->dev;
647 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
649 * For LVDS just rely on its current settings for dual-channel.
650 * We haven't figured out how to reliably set up different
651 * single/dual channel state, if we even can.
653 if (intel_is_dual_link_lvds(dev))
654 return limit->p2.p2_fast;
656 return limit->p2.p2_slow;
658 if (target < limit->p2.dot_limit)
659 return limit->p2.p2_slow;
661 return limit->p2.p2_fast;
666 * Returns a set of divisors for the desired target clock with the given
667 * refclk, or FALSE. The returned values represent the clock equation:
668 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
670 * Target and reference clocks are specified in kHz.
672 * If match_clock is provided, then best_clock P divider must match the P
673 * divider from @match_clock used for LVDS downclocking.
676 i9xx_find_best_dpll(const struct intel_limit *limit,
677 struct intel_crtc_state *crtc_state,
678 int target, int refclk, struct dpll *match_clock,
679 struct dpll *best_clock)
681 struct drm_device *dev = crtc_state->base.crtc->dev;
685 memset(best_clock, 0, sizeof(*best_clock));
687 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
689 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
691 for (clock.m2 = limit->m2.min;
692 clock.m2 <= limit->m2.max; clock.m2++) {
693 if (clock.m2 >= clock.m1)
695 for (clock.n = limit->n.min;
696 clock.n <= limit->n.max; clock.n++) {
697 for (clock.p1 = limit->p1.min;
698 clock.p1 <= limit->p1.max; clock.p1++) {
701 i9xx_calc_dpll_params(refclk, &clock);
702 if (!intel_PLL_is_valid(to_i915(dev),
707 clock.p != match_clock->p)
710 this_err = abs(clock.dot - target);
711 if (this_err < err) {
720 return (err != target);
724 * Returns a set of divisors for the desired target clock with the given
725 * refclk, or FALSE. The returned values represent the clock equation:
726 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
728 * Target and reference clocks are specified in kHz.
730 * If match_clock is provided, then best_clock P divider must match the P
731 * divider from @match_clock used for LVDS downclocking.
734 pnv_find_best_dpll(const struct intel_limit *limit,
735 struct intel_crtc_state *crtc_state,
736 int target, int refclk, struct dpll *match_clock,
737 struct dpll *best_clock)
739 struct drm_device *dev = crtc_state->base.crtc->dev;
743 memset(best_clock, 0, sizeof(*best_clock));
745 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
747 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
749 for (clock.m2 = limit->m2.min;
750 clock.m2 <= limit->m2.max; clock.m2++) {
751 for (clock.n = limit->n.min;
752 clock.n <= limit->n.max; clock.n++) {
753 for (clock.p1 = limit->p1.min;
754 clock.p1 <= limit->p1.max; clock.p1++) {
757 pnv_calc_dpll_params(refclk, &clock);
758 if (!intel_PLL_is_valid(to_i915(dev),
763 clock.p != match_clock->p)
766 this_err = abs(clock.dot - target);
767 if (this_err < err) {
776 return (err != target);
780 * Returns a set of divisors for the desired target clock with the given
781 * refclk, or FALSE. The returned values represent the clock equation:
782 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
784 * Target and reference clocks are specified in kHz.
786 * If match_clock is provided, then best_clock P divider must match the P
787 * divider from @match_clock used for LVDS downclocking.
790 g4x_find_best_dpll(const struct intel_limit *limit,
791 struct intel_crtc_state *crtc_state,
792 int target, int refclk, struct dpll *match_clock,
793 struct dpll *best_clock)
795 struct drm_device *dev = crtc_state->base.crtc->dev;
799 /* approximately equals target * 0.00585 */
800 int err_most = (target >> 8) + (target >> 9);
802 memset(best_clock, 0, sizeof(*best_clock));
804 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
806 max_n = limit->n.max;
807 /* based on hardware requirement, prefer smaller n to precision */
808 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
809 /* based on hardware requirement, prefere larger m1,m2 */
810 for (clock.m1 = limit->m1.max;
811 clock.m1 >= limit->m1.min; clock.m1--) {
812 for (clock.m2 = limit->m2.max;
813 clock.m2 >= limit->m2.min; clock.m2--) {
814 for (clock.p1 = limit->p1.max;
815 clock.p1 >= limit->p1.min; clock.p1--) {
818 i9xx_calc_dpll_params(refclk, &clock);
819 if (!intel_PLL_is_valid(to_i915(dev),
824 this_err = abs(clock.dot - target);
825 if (this_err < err_most) {
839 * Check if the calculated PLL configuration is more optimal compared to the
840 * best configuration and error found so far. Return the calculated error.
842 static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq,
843 const struct dpll *calculated_clock,
844 const struct dpll *best_clock,
845 unsigned int best_error_ppm,
846 unsigned int *error_ppm)
849 * For CHV ignore the error and consider only the P value.
850 * Prefer a bigger P value based on HW requirements.
852 if (IS_CHERRYVIEW(to_i915(dev))) {
855 return calculated_clock->p > best_clock->p;
858 if (WARN_ON_ONCE(!target_freq))
861 *error_ppm = div_u64(1000000ULL *
862 abs(target_freq - calculated_clock->dot),
865 * Prefer a better P value over a better (smaller) error if the error
866 * is small. Ensure this preference for future configurations too by
867 * setting the error to 0.
869 if (*error_ppm < 100 && calculated_clock->p > best_clock->p) {
875 return *error_ppm + 10 < best_error_ppm;
879 * Returns a set of divisors for the desired target clock with the given
880 * refclk, or FALSE. The returned values represent the clock equation:
881 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
884 vlv_find_best_dpll(const struct intel_limit *limit,
885 struct intel_crtc_state *crtc_state,
886 int target, int refclk, struct dpll *match_clock,
887 struct dpll *best_clock)
889 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
890 struct drm_device *dev = crtc->base.dev;
892 unsigned int bestppm = 1000000;
893 /* min update 19.2 MHz */
894 int max_n = min(limit->n.max, refclk / 19200);
897 target *= 5; /* fast clock */
899 memset(best_clock, 0, sizeof(*best_clock));
901 /* based on hardware requirement, prefer smaller n to precision */
902 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
903 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
904 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
905 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
906 clock.p = clock.p1 * clock.p2;
907 /* based on hardware requirement, prefer bigger m1,m2 values */
908 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
911 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
914 vlv_calc_dpll_params(refclk, &clock);
916 if (!intel_PLL_is_valid(to_i915(dev),
921 if (!vlv_PLL_is_optimal(dev, target,
939 * Returns a set of divisors for the desired target clock with the given
940 * refclk, or FALSE. The returned values represent the clock equation:
941 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
944 chv_find_best_dpll(const struct intel_limit *limit,
945 struct intel_crtc_state *crtc_state,
946 int target, int refclk, struct dpll *match_clock,
947 struct dpll *best_clock)
949 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
950 struct drm_device *dev = crtc->base.dev;
951 unsigned int best_error_ppm;
956 memset(best_clock, 0, sizeof(*best_clock));
957 best_error_ppm = 1000000;
960 * Based on hardware doc, the n always set to 1, and m1 always
961 * set to 2. If requires to support 200Mhz refclk, we need to
962 * revisit this because n may not 1 anymore.
964 clock.n = 1, clock.m1 = 2;
965 target *= 5; /* fast clock */
967 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
968 for (clock.p2 = limit->p2.p2_fast;
969 clock.p2 >= limit->p2.p2_slow;
970 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
971 unsigned int error_ppm;
973 clock.p = clock.p1 * clock.p2;
975 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
976 clock.n) << 22, refclk * clock.m1);
978 if (m2 > INT_MAX/clock.m1)
983 chv_calc_dpll_params(refclk, &clock);
985 if (!intel_PLL_is_valid(to_i915(dev), limit, &clock))
988 if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock,
989 best_error_ppm, &error_ppm))
993 best_error_ppm = error_ppm;
1001 bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
1002 struct dpll *best_clock)
1004 int refclk = 100000;
1005 const struct intel_limit *limit = &intel_limits_bxt;
1007 return chv_find_best_dpll(limit, crtc_state,
1008 target_clock, refclk, NULL, best_clock);
1011 bool intel_crtc_active(struct drm_crtc *crtc)
1013 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1015 /* Be paranoid as we can arrive here with only partial
1016 * state retrieved from the hardware during setup.
1018 * We can ditch the adjusted_mode.crtc_clock check as soon
1019 * as Haswell has gained clock readout/fastboot support.
1021 * We can ditch the crtc->primary->fb check as soon as we can
1022 * properly reconstruct framebuffers.
1024 * FIXME: The intel_crtc->active here should be switched to
1025 * crtc->state->active once we have proper CRTC states wired up
1028 return intel_crtc->active && crtc->primary->state->fb &&
1029 intel_crtc->config->base.adjusted_mode.crtc_clock;
1032 enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1035 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1036 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1038 return intel_crtc->config->cpu_transcoder;
1041 static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
1043 struct drm_i915_private *dev_priv = to_i915(dev);
1044 i915_reg_t reg = PIPEDSL(pipe);
1048 if (IS_GEN2(dev_priv))
1049 line_mask = DSL_LINEMASK_GEN2;
1051 line_mask = DSL_LINEMASK_GEN3;
1053 line1 = I915_READ(reg) & line_mask;
1055 line2 = I915_READ(reg) & line_mask;
1057 return line1 == line2;
1061 * intel_wait_for_pipe_off - wait for pipe to turn off
1062 * @crtc: crtc whose pipe to wait for
1064 * After disabling a pipe, we can't wait for vblank in the usual way,
1065 * spinning on the vblank interrupt status bit, since we won't actually
1066 * see an interrupt when the pipe is disabled.
1068 * On Gen4 and above:
1069 * wait for the pipe register state bit to turn off
1072 * wait for the display line value to settle (it usually
1073 * ends up stopping at the start of the next frame).
1076 static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
1078 struct drm_device *dev = crtc->base.dev;
1079 struct drm_i915_private *dev_priv = to_i915(dev);
1080 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
1081 enum pipe pipe = crtc->pipe;
1083 if (INTEL_INFO(dev)->gen >= 4) {
1084 i915_reg_t reg = PIPECONF(cpu_transcoder);
1086 /* Wait for the Pipe State to go off */
1087 if (intel_wait_for_register(dev_priv,
1088 reg, I965_PIPECONF_ACTIVE, 0,
1090 WARN(1, "pipe_off wait timed out\n");
1092 /* Wait for the display line to settle */
1093 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
1094 WARN(1, "pipe_off wait timed out\n");
1098 /* Only for pre-ILK configs */
1099 void assert_pll(struct drm_i915_private *dev_priv,
1100 enum pipe pipe, bool state)
1105 val = I915_READ(DPLL(pipe));
1106 cur_state = !!(val & DPLL_VCO_ENABLE);
1107 I915_STATE_WARN(cur_state != state,
1108 "PLL state assertion failure (expected %s, current %s)\n",
1109 onoff(state), onoff(cur_state));
1112 /* XXX: the dsi pll is shared between MIPI DSI ports */
1113 void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1118 mutex_lock(&dev_priv->sb_lock);
1119 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1120 mutex_unlock(&dev_priv->sb_lock);
1122 cur_state = val & DSI_PLL_VCO_EN;
1123 I915_STATE_WARN(cur_state != state,
1124 "DSI PLL state assertion failure (expected %s, current %s)\n",
1125 onoff(state), onoff(cur_state));
1128 static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1129 enum pipe pipe, bool state)
1132 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1135 if (HAS_DDI(dev_priv)) {
1136 /* DDI does not have a specific FDI_TX register */
1137 u32 val = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
1138 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
1140 u32 val = I915_READ(FDI_TX_CTL(pipe));
1141 cur_state = !!(val & FDI_TX_ENABLE);
1143 I915_STATE_WARN(cur_state != state,
1144 "FDI TX state assertion failure (expected %s, current %s)\n",
1145 onoff(state), onoff(cur_state));
1147 #define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1148 #define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1150 static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1151 enum pipe pipe, bool state)
1156 val = I915_READ(FDI_RX_CTL(pipe));
1157 cur_state = !!(val & FDI_RX_ENABLE);
1158 I915_STATE_WARN(cur_state != state,
1159 "FDI RX state assertion failure (expected %s, current %s)\n",
1160 onoff(state), onoff(cur_state));
1162 #define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1163 #define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1165 static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1170 /* ILK FDI PLL is always enabled */
1171 if (IS_GEN5(dev_priv))
1174 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
1175 if (HAS_DDI(dev_priv))
1178 val = I915_READ(FDI_TX_CTL(pipe));
1179 I915_STATE_WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1182 void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1183 enum pipe pipe, bool state)
1188 val = I915_READ(FDI_RX_CTL(pipe));
1189 cur_state = !!(val & FDI_RX_PLL_ENABLE);
1190 I915_STATE_WARN(cur_state != state,
1191 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1192 onoff(state), onoff(cur_state));
1195 void assert_panel_unlocked(struct drm_i915_private *dev_priv, enum pipe pipe)
1199 enum pipe panel_pipe = PIPE_A;
1202 if (WARN_ON(HAS_DDI(dev_priv)))
1205 if (HAS_PCH_SPLIT(dev_priv)) {
1208 pp_reg = PP_CONTROL(0);
1209 port_sel = I915_READ(PP_ON_DELAYS(0)) & PANEL_PORT_SELECT_MASK;
1211 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1212 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1213 panel_pipe = PIPE_B;
1214 /* XXX: else fix for eDP */
1215 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
1216 /* presumably write lock depends on pipe, not port select */
1217 pp_reg = PP_CONTROL(pipe);
1220 pp_reg = PP_CONTROL(0);
1221 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1222 panel_pipe = PIPE_B;
1225 val = I915_READ(pp_reg);
1226 if (!(val & PANEL_POWER_ON) ||
1227 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
1230 I915_STATE_WARN(panel_pipe == pipe && locked,
1231 "panel assertion failure, pipe %c regs locked\n",
1235 static void assert_cursor(struct drm_i915_private *dev_priv,
1236 enum pipe pipe, bool state)
1240 if (IS_845G(dev_priv) || IS_I865G(dev_priv))
1241 cur_state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE;
1243 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
1245 I915_STATE_WARN(cur_state != state,
1246 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1247 pipe_name(pipe), onoff(state), onoff(cur_state));
1249 #define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1250 #define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1252 void assert_pipe(struct drm_i915_private *dev_priv,
1253 enum pipe pipe, bool state)
1256 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1258 enum intel_display_power_domain power_domain;
1260 /* if we need the pipe quirk it must be always on */
1261 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1262 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
1265 power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
1266 if (intel_display_power_get_if_enabled(dev_priv, power_domain)) {
1267 u32 val = I915_READ(PIPECONF(cpu_transcoder));
1268 cur_state = !!(val & PIPECONF_ENABLE);
1270 intel_display_power_put(dev_priv, power_domain);
1275 I915_STATE_WARN(cur_state != state,
1276 "pipe %c assertion failure (expected %s, current %s)\n",
1277 pipe_name(pipe), onoff(state), onoff(cur_state));
1280 static void assert_plane(struct drm_i915_private *dev_priv,
1281 enum plane plane, bool state)
1286 val = I915_READ(DSPCNTR(plane));
1287 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1288 I915_STATE_WARN(cur_state != state,
1289 "plane %c assertion failure (expected %s, current %s)\n",
1290 plane_name(plane), onoff(state), onoff(cur_state));
1293 #define assert_plane_enabled(d, p) assert_plane(d, p, true)
1294 #define assert_plane_disabled(d, p) assert_plane(d, p, false)
1296 static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1299 struct drm_device *dev = &dev_priv->drm;
1302 /* Primary planes are fixed to pipes on gen4+ */
1303 if (INTEL_INFO(dev)->gen >= 4) {
1304 u32 val = I915_READ(DSPCNTR(pipe));
1305 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
1306 "plane %c assertion failure, should be disabled but not\n",
1311 /* Need to check both planes against the pipe */
1312 for_each_pipe(dev_priv, i) {
1313 u32 val = I915_READ(DSPCNTR(i));
1314 enum pipe cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1315 DISPPLANE_SEL_PIPE_SHIFT;
1316 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
1317 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1318 plane_name(i), pipe_name(pipe));
1322 static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1325 struct drm_device *dev = &dev_priv->drm;
1328 if (INTEL_INFO(dev)->gen >= 9) {
1329 for_each_sprite(dev_priv, pipe, sprite) {
1330 u32 val = I915_READ(PLANE_CTL(pipe, sprite));
1331 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
1332 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1333 sprite, pipe_name(pipe));
1335 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
1336 for_each_sprite(dev_priv, pipe, sprite) {
1337 u32 val = I915_READ(SPCNTR(pipe, sprite));
1338 I915_STATE_WARN(val & SP_ENABLE,
1339 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1340 sprite_name(pipe, sprite), pipe_name(pipe));
1342 } else if (INTEL_INFO(dev)->gen >= 7) {
1343 u32 val = I915_READ(SPRCTL(pipe));
1344 I915_STATE_WARN(val & SPRITE_ENABLE,
1345 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1346 plane_name(pipe), pipe_name(pipe));
1347 } else if (INTEL_INFO(dev)->gen >= 5) {
1348 u32 val = I915_READ(DVSCNTR(pipe));
1349 I915_STATE_WARN(val & DVS_ENABLE,
1350 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1351 plane_name(pipe), pipe_name(pipe));
1355 static void assert_vblank_disabled(struct drm_crtc *crtc)
1357 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
1358 drm_crtc_vblank_put(crtc);
1361 void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1367 val = I915_READ(PCH_TRANSCONF(pipe));
1368 enabled = !!(val & TRANS_ENABLE);
1369 I915_STATE_WARN(enabled,
1370 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1374 static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1375 enum pipe pipe, u32 port_sel, u32 val)
1377 if ((val & DP_PORT_EN) == 0)
1380 if (HAS_PCH_CPT(dev_priv)) {
1381 u32 trans_dp_ctl = I915_READ(TRANS_DP_CTL(pipe));
1382 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1384 } else if (IS_CHERRYVIEW(dev_priv)) {
1385 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1388 if ((val & DP_PIPE_MASK) != (pipe << 30))
1394 static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1395 enum pipe pipe, u32 val)
1397 if ((val & SDVO_ENABLE) == 0)
1400 if (HAS_PCH_CPT(dev_priv)) {
1401 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
1403 } else if (IS_CHERRYVIEW(dev_priv)) {
1404 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1407 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
1413 static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1414 enum pipe pipe, u32 val)
1416 if ((val & LVDS_PORT_EN) == 0)
1419 if (HAS_PCH_CPT(dev_priv)) {
1420 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1423 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1429 static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1430 enum pipe pipe, u32 val)
1432 if ((val & ADPA_DAC_ENABLE) == 0)
1434 if (HAS_PCH_CPT(dev_priv)) {
1435 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1438 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1444 static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
1445 enum pipe pipe, i915_reg_t reg,
1448 u32 val = I915_READ(reg);
1449 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
1450 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
1451 i915_mmio_reg_offset(reg), pipe_name(pipe));
1453 I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & DP_PORT_EN) == 0
1454 && (val & DP_PIPEB_SELECT),
1455 "IBX PCH dp port still using transcoder B\n");
1458 static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1459 enum pipe pipe, i915_reg_t reg)
1461 u32 val = I915_READ(reg);
1462 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
1463 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
1464 i915_mmio_reg_offset(reg), pipe_name(pipe));
1466 I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & SDVO_ENABLE) == 0
1467 && (val & SDVO_PIPE_B_SELECT),
1468 "IBX PCH hdmi port still using transcoder B\n");
1471 static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1476 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1477 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1478 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
1480 val = I915_READ(PCH_ADPA);
1481 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
1482 "PCH VGA enabled on transcoder %c, should be disabled\n",
1485 val = I915_READ(PCH_LVDS);
1486 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
1487 "PCH LVDS enabled on transcoder %c, should be disabled\n",
1490 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1491 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1492 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
1495 static void _vlv_enable_pll(struct intel_crtc *crtc,
1496 const struct intel_crtc_state *pipe_config)
1498 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1499 enum pipe pipe = crtc->pipe;
1501 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
1502 POSTING_READ(DPLL(pipe));
1505 if (intel_wait_for_register(dev_priv,
1510 DRM_ERROR("DPLL %d failed to lock\n", pipe);
1513 static void vlv_enable_pll(struct intel_crtc *crtc,
1514 const struct intel_crtc_state *pipe_config)
1516 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1517 enum pipe pipe = crtc->pipe;
1519 assert_pipe_disabled(dev_priv, pipe);
1521 /* PLL is protected by panel, make sure we can write it */
1522 assert_panel_unlocked(dev_priv, pipe);
1524 if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE)
1525 _vlv_enable_pll(crtc, pipe_config);
1527 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
1528 POSTING_READ(DPLL_MD(pipe));
1532 static void _chv_enable_pll(struct intel_crtc *crtc,
1533 const struct intel_crtc_state *pipe_config)
1535 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1536 enum pipe pipe = crtc->pipe;
1537 enum dpio_channel port = vlv_pipe_to_channel(pipe);
1540 mutex_lock(&dev_priv->sb_lock);
1542 /* Enable back the 10bit clock to display controller */
1543 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1544 tmp |= DPIO_DCLKP_EN;
1545 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1547 mutex_unlock(&dev_priv->sb_lock);
1550 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1555 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
1557 /* Check PLL is locked */
1558 if (intel_wait_for_register(dev_priv,
1559 DPLL(pipe), DPLL_LOCK_VLV, DPLL_LOCK_VLV,
1561 DRM_ERROR("PLL %d failed to lock\n", pipe);
1564 static void chv_enable_pll(struct intel_crtc *crtc,
1565 const struct intel_crtc_state *pipe_config)
1567 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1568 enum pipe pipe = crtc->pipe;
1570 assert_pipe_disabled(dev_priv, pipe);
1572 /* PLL is protected by panel, make sure we can write it */
1573 assert_panel_unlocked(dev_priv, pipe);
1575 if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE)
1576 _chv_enable_pll(crtc, pipe_config);
1578 if (pipe != PIPE_A) {
1580 * WaPixelRepeatModeFixForC0:chv
1582 * DPLLCMD is AWOL. Use chicken bits to propagate
1583 * the value from DPLLBMD to either pipe B or C.
1585 I915_WRITE(CBR4_VLV, pipe == PIPE_B ? CBR_DPLLBMD_PIPE_B : CBR_DPLLBMD_PIPE_C);
1586 I915_WRITE(DPLL_MD(PIPE_B), pipe_config->dpll_hw_state.dpll_md);
1587 I915_WRITE(CBR4_VLV, 0);
1588 dev_priv->chv_dpll_md[pipe] = pipe_config->dpll_hw_state.dpll_md;
1591 * DPLLB VGA mode also seems to cause problems.
1592 * We should always have it disabled.
1594 WARN_ON((I915_READ(DPLL(PIPE_B)) & DPLL_VGA_MODE_DIS) == 0);
1596 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
1597 POSTING_READ(DPLL_MD(pipe));
1601 static int intel_num_dvo_pipes(struct drm_device *dev)
1603 struct intel_crtc *crtc;
1606 for_each_intel_crtc(dev, crtc) {
1607 count += crtc->base.state->active &&
1608 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_DVO);
1614 static void i9xx_enable_pll(struct intel_crtc *crtc)
1616 struct drm_device *dev = crtc->base.dev;
1617 struct drm_i915_private *dev_priv = to_i915(dev);
1618 i915_reg_t reg = DPLL(crtc->pipe);
1619 u32 dpll = crtc->config->dpll_hw_state.dpll;
1621 assert_pipe_disabled(dev_priv, crtc->pipe);
1623 /* PLL is protected by panel, make sure we can write it */
1624 if (IS_MOBILE(dev_priv) && !IS_I830(dev_priv))
1625 assert_panel_unlocked(dev_priv, crtc->pipe);
1627 /* Enable DVO 2x clock on both PLLs if necessary */
1628 if (IS_I830(dev_priv) && intel_num_dvo_pipes(dev) > 0) {
1630 * It appears to be important that we don't enable this
1631 * for the current pipe before otherwise configuring the
1632 * PLL. No idea how this should be handled if multiple
1633 * DVO outputs are enabled simultaneosly.
1635 dpll |= DPLL_DVO_2X_MODE;
1636 I915_WRITE(DPLL(!crtc->pipe),
1637 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1641 * Apparently we need to have VGA mode enabled prior to changing
1642 * the P1/P2 dividers. Otherwise the DPLL will keep using the old
1643 * dividers, even though the register value does change.
1647 I915_WRITE(reg, dpll);
1649 /* Wait for the clocks to stabilize. */
1653 if (INTEL_INFO(dev)->gen >= 4) {
1654 I915_WRITE(DPLL_MD(crtc->pipe),
1655 crtc->config->dpll_hw_state.dpll_md);
1657 /* The pixel multiplier can only be updated once the
1658 * DPLL is enabled and the clocks are stable.
1660 * So write it again.
1662 I915_WRITE(reg, dpll);
1665 /* We do this three times for luck */
1666 I915_WRITE(reg, dpll);
1668 udelay(150); /* wait for warmup */
1669 I915_WRITE(reg, dpll);
1671 udelay(150); /* wait for warmup */
1672 I915_WRITE(reg, dpll);
1674 udelay(150); /* wait for warmup */
1678 * i9xx_disable_pll - disable a PLL
1679 * @dev_priv: i915 private structure
1680 * @pipe: pipe PLL to disable
1682 * Disable the PLL for @pipe, making sure the pipe is off first.
1684 * Note! This is for pre-ILK only.
1686 static void i9xx_disable_pll(struct intel_crtc *crtc)
1688 struct drm_device *dev = crtc->base.dev;
1689 struct drm_i915_private *dev_priv = to_i915(dev);
1690 enum pipe pipe = crtc->pipe;
1692 /* Disable DVO 2x clock on both PLLs if necessary */
1693 if (IS_I830(dev_priv) &&
1694 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_DVO) &&
1695 !intel_num_dvo_pipes(dev)) {
1696 I915_WRITE(DPLL(PIPE_B),
1697 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1698 I915_WRITE(DPLL(PIPE_A),
1699 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1702 /* Don't disable pipe or pipe PLLs if needed */
1703 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1704 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
1707 /* Make sure the pipe isn't still relying on us */
1708 assert_pipe_disabled(dev_priv, pipe);
1710 I915_WRITE(DPLL(pipe), DPLL_VGA_MODE_DIS);
1711 POSTING_READ(DPLL(pipe));
1714 static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1718 /* Make sure the pipe isn't still relying on us */
1719 assert_pipe_disabled(dev_priv, pipe);
1721 val = DPLL_INTEGRATED_REF_CLK_VLV |
1722 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
1724 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1726 I915_WRITE(DPLL(pipe), val);
1727 POSTING_READ(DPLL(pipe));
1730 static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1732 enum dpio_channel port = vlv_pipe_to_channel(pipe);
1735 /* Make sure the pipe isn't still relying on us */
1736 assert_pipe_disabled(dev_priv, pipe);
1738 val = DPLL_SSC_REF_CLK_CHV |
1739 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
1741 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1743 I915_WRITE(DPLL(pipe), val);
1744 POSTING_READ(DPLL(pipe));
1746 mutex_lock(&dev_priv->sb_lock);
1748 /* Disable 10bit clock to display controller */
1749 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1750 val &= ~DPIO_DCLKP_EN;
1751 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1753 mutex_unlock(&dev_priv->sb_lock);
1756 void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1757 struct intel_digital_port *dport,
1758 unsigned int expected_mask)
1761 i915_reg_t dpll_reg;
1763 switch (dport->port) {
1765 port_mask = DPLL_PORTB_READY_MASK;
1769 port_mask = DPLL_PORTC_READY_MASK;
1771 expected_mask <<= 4;
1774 port_mask = DPLL_PORTD_READY_MASK;
1775 dpll_reg = DPIO_PHY_STATUS;
1781 if (intel_wait_for_register(dev_priv,
1782 dpll_reg, port_mask, expected_mask,
1784 WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n",
1785 port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask);
1788 static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1791 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1792 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1794 uint32_t val, pipeconf_val;
1796 /* Make sure PCH DPLL is enabled */
1797 assert_shared_dpll_enabled(dev_priv, intel_crtc->config->shared_dpll);
1799 /* FDI must be feeding us bits for PCH ports */
1800 assert_fdi_tx_enabled(dev_priv, pipe);
1801 assert_fdi_rx_enabled(dev_priv, pipe);
1803 if (HAS_PCH_CPT(dev_priv)) {
1804 /* Workaround: Set the timing override bit before enabling the
1805 * pch transcoder. */
1806 reg = TRANS_CHICKEN2(pipe);
1807 val = I915_READ(reg);
1808 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1809 I915_WRITE(reg, val);
1812 reg = PCH_TRANSCONF(pipe);
1813 val = I915_READ(reg);
1814 pipeconf_val = I915_READ(PIPECONF(pipe));
1816 if (HAS_PCH_IBX(dev_priv)) {
1818 * Make the BPC in transcoder be consistent with
1819 * that in pipeconf reg. For HDMI we must use 8bpc
1820 * here for both 8bpc and 12bpc.
1822 val &= ~PIPECONF_BPC_MASK;
1823 if (intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_HDMI))
1824 val |= PIPECONF_8BPC;
1826 val |= pipeconf_val & PIPECONF_BPC_MASK;
1829 val &= ~TRANS_INTERLACE_MASK;
1830 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
1831 if (HAS_PCH_IBX(dev_priv) &&
1832 intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_SDVO))
1833 val |= TRANS_LEGACY_INTERLACED_ILK;
1835 val |= TRANS_INTERLACED;
1837 val |= TRANS_PROGRESSIVE;
1839 I915_WRITE(reg, val | TRANS_ENABLE);
1840 if (intel_wait_for_register(dev_priv,
1841 reg, TRANS_STATE_ENABLE, TRANS_STATE_ENABLE,
1843 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
1846 static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1847 enum transcoder cpu_transcoder)
1849 u32 val, pipeconf_val;
1851 /* FDI must be feeding us bits for PCH ports */
1852 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
1853 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
1855 /* Workaround: set timing override bit. */
1856 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
1857 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1858 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
1861 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
1863 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1864 PIPECONF_INTERLACED_ILK)
1865 val |= TRANS_INTERLACED;
1867 val |= TRANS_PROGRESSIVE;
1869 I915_WRITE(LPT_TRANSCONF, val);
1870 if (intel_wait_for_register(dev_priv,
1875 DRM_ERROR("Failed to enable PCH transcoder\n");
1878 static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1884 /* FDI relies on the transcoder */
1885 assert_fdi_tx_disabled(dev_priv, pipe);
1886 assert_fdi_rx_disabled(dev_priv, pipe);
1888 /* Ports must be off as well */
1889 assert_pch_ports_disabled(dev_priv, pipe);
1891 reg = PCH_TRANSCONF(pipe);
1892 val = I915_READ(reg);
1893 val &= ~TRANS_ENABLE;
1894 I915_WRITE(reg, val);
1895 /* wait for PCH transcoder off, transcoder state */
1896 if (intel_wait_for_register(dev_priv,
1897 reg, TRANS_STATE_ENABLE, 0,
1899 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
1901 if (HAS_PCH_CPT(dev_priv)) {
1902 /* Workaround: Clear the timing override chicken bit again. */
1903 reg = TRANS_CHICKEN2(pipe);
1904 val = I915_READ(reg);
1905 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1906 I915_WRITE(reg, val);
1910 void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
1914 val = I915_READ(LPT_TRANSCONF);
1915 val &= ~TRANS_ENABLE;
1916 I915_WRITE(LPT_TRANSCONF, val);
1917 /* wait for PCH transcoder off, transcoder state */
1918 if (intel_wait_for_register(dev_priv,
1919 LPT_TRANSCONF, TRANS_STATE_ENABLE, 0,
1921 DRM_ERROR("Failed to disable PCH transcoder\n");
1923 /* Workaround: clear timing override bit. */
1924 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
1925 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1926 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
1929 enum transcoder intel_crtc_pch_transcoder(struct intel_crtc *crtc)
1931 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1933 WARN_ON(!crtc->config->has_pch_encoder);
1935 if (HAS_PCH_LPT(dev_priv))
1936 return TRANSCODER_A;
1938 return (enum transcoder) crtc->pipe;
1942 * intel_enable_pipe - enable a pipe, asserting requirements
1943 * @crtc: crtc responsible for the pipe
1945 * Enable @crtc's pipe, making sure that various hardware specific requirements
1946 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1948 static void intel_enable_pipe(struct intel_crtc *crtc)
1950 struct drm_device *dev = crtc->base.dev;
1951 struct drm_i915_private *dev_priv = to_i915(dev);
1952 enum pipe pipe = crtc->pipe;
1953 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
1957 DRM_DEBUG_KMS("enabling pipe %c\n", pipe_name(pipe));
1959 assert_planes_disabled(dev_priv, pipe);
1960 assert_cursor_disabled(dev_priv, pipe);
1961 assert_sprites_disabled(dev_priv, pipe);
1964 * A pipe without a PLL won't actually be able to drive bits from
1965 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1968 if (HAS_GMCH_DISPLAY(dev_priv)) {
1969 if (intel_crtc_has_type(crtc->config, INTEL_OUTPUT_DSI))
1970 assert_dsi_pll_enabled(dev_priv);
1972 assert_pll_enabled(dev_priv, pipe);
1974 if (crtc->config->has_pch_encoder) {
1975 /* if driving the PCH, we need FDI enabled */
1976 assert_fdi_rx_pll_enabled(dev_priv,
1977 (enum pipe) intel_crtc_pch_transcoder(crtc));
1978 assert_fdi_tx_pll_enabled(dev_priv,
1979 (enum pipe) cpu_transcoder);
1981 /* FIXME: assert CPU port conditions for SNB+ */
1984 reg = PIPECONF(cpu_transcoder);
1985 val = I915_READ(reg);
1986 if (val & PIPECONF_ENABLE) {
1987 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1988 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
1992 I915_WRITE(reg, val | PIPECONF_ENABLE);
1996 * Until the pipe starts DSL will read as 0, which would cause
1997 * an apparent vblank timestamp jump, which messes up also the
1998 * frame count when it's derived from the timestamps. So let's
1999 * wait for the pipe to start properly before we call
2000 * drm_crtc_vblank_on()
2002 if (dev->max_vblank_count == 0 &&
2003 wait_for(intel_get_crtc_scanline(crtc) != crtc->scanline_offset, 50))
2004 DRM_ERROR("pipe %c didn't start\n", pipe_name(pipe));
2008 * intel_disable_pipe - disable a pipe, asserting requirements
2009 * @crtc: crtc whose pipes is to be disabled
2011 * Disable the pipe of @crtc, making sure that various hardware
2012 * specific requirements are met, if applicable, e.g. plane
2013 * disabled, panel fitter off, etc.
2015 * Will wait until the pipe has shut down before returning.
2017 static void intel_disable_pipe(struct intel_crtc *crtc)
2019 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
2020 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
2021 enum pipe pipe = crtc->pipe;
2025 DRM_DEBUG_KMS("disabling pipe %c\n", pipe_name(pipe));
2028 * Make sure planes won't keep trying to pump pixels to us,
2029 * or we might hang the display.
2031 assert_planes_disabled(dev_priv, pipe);
2032 assert_cursor_disabled(dev_priv, pipe);
2033 assert_sprites_disabled(dev_priv, pipe);
2035 reg = PIPECONF(cpu_transcoder);
2036 val = I915_READ(reg);
2037 if ((val & PIPECONF_ENABLE) == 0)
2041 * Double wide has implications for planes
2042 * so best keep it disabled when not needed.
2044 if (crtc->config->double_wide)
2045 val &= ~PIPECONF_DOUBLE_WIDE;
2047 /* Don't disable pipe or pipe PLLs if needed */
2048 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2049 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
2050 val &= ~PIPECONF_ENABLE;
2052 I915_WRITE(reg, val);
2053 if ((val & PIPECONF_ENABLE) == 0)
2054 intel_wait_for_pipe_off(crtc);
2057 static unsigned int intel_tile_size(const struct drm_i915_private *dev_priv)
2059 return IS_GEN2(dev_priv) ? 2048 : 4096;
2062 static unsigned int intel_tile_width_bytes(const struct drm_i915_private *dev_priv,
2063 uint64_t fb_modifier, unsigned int cpp)
2065 switch (fb_modifier) {
2066 case DRM_FORMAT_MOD_NONE:
2068 case I915_FORMAT_MOD_X_TILED:
2069 if (IS_GEN2(dev_priv))
2073 case I915_FORMAT_MOD_Y_TILED:
2074 if (IS_GEN2(dev_priv) || HAS_128_BYTE_Y_TILING(dev_priv))
2078 case I915_FORMAT_MOD_Yf_TILED:
2094 MISSING_CASE(fb_modifier);
2099 unsigned int intel_tile_height(const struct drm_i915_private *dev_priv,
2100 uint64_t fb_modifier, unsigned int cpp)
2102 if (fb_modifier == DRM_FORMAT_MOD_NONE)
2105 return intel_tile_size(dev_priv) /
2106 intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
2109 /* Return the tile dimensions in pixel units */
2110 static void intel_tile_dims(const struct drm_i915_private *dev_priv,
2111 unsigned int *tile_width,
2112 unsigned int *tile_height,
2113 uint64_t fb_modifier,
2116 unsigned int tile_width_bytes =
2117 intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
2119 *tile_width = tile_width_bytes / cpp;
2120 *tile_height = intel_tile_size(dev_priv) / tile_width_bytes;
2124 intel_fb_align_height(struct drm_device *dev, unsigned int height,
2125 uint32_t pixel_format, uint64_t fb_modifier)
2127 unsigned int cpp = drm_format_plane_cpp(pixel_format, 0);
2128 unsigned int tile_height = intel_tile_height(to_i915(dev), fb_modifier, cpp);
2130 return ALIGN(height, tile_height);
2133 unsigned int intel_rotation_info_size(const struct intel_rotation_info *rot_info)
2135 unsigned int size = 0;
2138 for (i = 0 ; i < ARRAY_SIZE(rot_info->plane); i++)
2139 size += rot_info->plane[i].width * rot_info->plane[i].height;
2145 intel_fill_fb_ggtt_view(struct i915_ggtt_view *view,
2146 const struct drm_framebuffer *fb,
2147 unsigned int rotation)
2149 if (intel_rotation_90_or_270(rotation)) {
2150 *view = i915_ggtt_view_rotated;
2151 view->params.rotated = to_intel_framebuffer(fb)->rot_info;
2153 *view = i915_ggtt_view_normal;
2157 static unsigned int intel_linear_alignment(const struct drm_i915_private *dev_priv)
2159 if (INTEL_INFO(dev_priv)->gen >= 9)
2161 else if (IS_BROADWATER(dev_priv) || IS_CRESTLINE(dev_priv) ||
2162 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
2164 else if (INTEL_INFO(dev_priv)->gen >= 4)
2170 static unsigned int intel_surf_alignment(const struct drm_i915_private *dev_priv,
2171 uint64_t fb_modifier)
2173 switch (fb_modifier) {
2174 case DRM_FORMAT_MOD_NONE:
2175 return intel_linear_alignment(dev_priv);
2176 case I915_FORMAT_MOD_X_TILED:
2177 if (INTEL_INFO(dev_priv)->gen >= 9)
2180 case I915_FORMAT_MOD_Y_TILED:
2181 case I915_FORMAT_MOD_Yf_TILED:
2182 return 1 * 1024 * 1024;
2184 MISSING_CASE(fb_modifier);
2190 intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb, unsigned int rotation)
2192 struct drm_device *dev = fb->dev;
2193 struct drm_i915_private *dev_priv = to_i915(dev);
2194 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
2195 struct i915_ggtt_view view;
2196 struct i915_vma *vma;
2199 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2201 alignment = intel_surf_alignment(dev_priv, fb->modifier[0]);
2203 intel_fill_fb_ggtt_view(&view, fb, rotation);
2205 /* Note that the w/a also requires 64 PTE of padding following the
2206 * bo. We currently fill all unused PTE with the shadow page and so
2207 * we should always have valid PTE following the scanout preventing
2210 if (intel_scanout_needs_vtd_wa(dev_priv) && alignment < 256 * 1024)
2211 alignment = 256 * 1024;
2214 * Global gtt pte registers are special registers which actually forward
2215 * writes to a chunk of system memory. Which means that there is no risk
2216 * that the register values disappear as soon as we call
2217 * intel_runtime_pm_put(), so it is correct to wrap only the
2218 * pin/unpin/fence and not more.
2220 intel_runtime_pm_get(dev_priv);
2222 vma = i915_gem_object_pin_to_display_plane(obj, alignment, &view);
2226 if (i915_vma_is_map_and_fenceable(vma)) {
2227 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2228 * fence, whereas 965+ only requires a fence if using
2229 * framebuffer compression. For simplicity, we always, when
2230 * possible, install a fence as the cost is not that onerous.
2232 * If we fail to fence the tiled scanout, then either the
2233 * modeset will reject the change (which is highly unlikely as
2234 * the affected systems, all but one, do not have unmappable
2235 * space) or we will not be able to enable full powersaving
2236 * techniques (also likely not to apply due to various limits
2237 * FBC and the like impose on the size of the buffer, which
2238 * presumably we violated anyway with this unmappable buffer).
2239 * Anyway, it is presumably better to stumble onwards with
2240 * something and try to run the system in a "less than optimal"
2241 * mode that matches the user configuration.
2243 if (i915_vma_get_fence(vma) == 0)
2244 i915_vma_pin_fence(vma);
2248 intel_runtime_pm_put(dev_priv);
2252 void intel_unpin_fb_obj(struct drm_framebuffer *fb, unsigned int rotation)
2254 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
2255 struct i915_ggtt_view view;
2256 struct i915_vma *vma;
2258 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2260 intel_fill_fb_ggtt_view(&view, fb, rotation);
2261 vma = i915_gem_object_to_ggtt(obj, &view);
2263 i915_vma_unpin_fence(vma);
2264 i915_gem_object_unpin_from_display_plane(vma);
2267 static int intel_fb_pitch(const struct drm_framebuffer *fb, int plane,
2268 unsigned int rotation)
2270 if (intel_rotation_90_or_270(rotation))
2271 return to_intel_framebuffer(fb)->rotated[plane].pitch;
2273 return fb->pitches[plane];
2277 * Convert the x/y offsets into a linear offset.
2278 * Only valid with 0/180 degree rotation, which is fine since linear
2279 * offset is only used with linear buffers on pre-hsw and tiled buffers
2280 * with gen2/3, and 90/270 degree rotations isn't supported on any of them.
2282 u32 intel_fb_xy_to_linear(int x, int y,
2283 const struct intel_plane_state *state,
2286 const struct drm_framebuffer *fb = state->base.fb;
2287 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
2288 unsigned int pitch = fb->pitches[plane];
2290 return y * pitch + x * cpp;
2294 * Add the x/y offsets derived from fb->offsets[] to the user
2295 * specified plane src x/y offsets. The resulting x/y offsets
2296 * specify the start of scanout from the beginning of the gtt mapping.
2298 void intel_add_fb_offsets(int *x, int *y,
2299 const struct intel_plane_state *state,
2303 const struct intel_framebuffer *intel_fb = to_intel_framebuffer(state->base.fb);
2304 unsigned int rotation = state->base.rotation;
2306 if (intel_rotation_90_or_270(rotation)) {
2307 *x += intel_fb->rotated[plane].x;
2308 *y += intel_fb->rotated[plane].y;
2310 *x += intel_fb->normal[plane].x;
2311 *y += intel_fb->normal[plane].y;
2316 * Input tile dimensions and pitch must already be
2317 * rotated to match x and y, and in pixel units.
2319 static u32 _intel_adjust_tile_offset(int *x, int *y,
2320 unsigned int tile_width,
2321 unsigned int tile_height,
2322 unsigned int tile_size,
2323 unsigned int pitch_tiles,
2327 unsigned int pitch_pixels = pitch_tiles * tile_width;
2330 WARN_ON(old_offset & (tile_size - 1));
2331 WARN_ON(new_offset & (tile_size - 1));
2332 WARN_ON(new_offset > old_offset);
2334 tiles = (old_offset - new_offset) / tile_size;
2336 *y += tiles / pitch_tiles * tile_height;
2337 *x += tiles % pitch_tiles * tile_width;
2339 /* minimize x in case it got needlessly big */
2340 *y += *x / pitch_pixels * tile_height;
2347 * Adjust the tile offset by moving the difference into
2350 static u32 intel_adjust_tile_offset(int *x, int *y,
2351 const struct intel_plane_state *state, int plane,
2352 u32 old_offset, u32 new_offset)
2354 const struct drm_i915_private *dev_priv = to_i915(state->base.plane->dev);
2355 const struct drm_framebuffer *fb = state->base.fb;
2356 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
2357 unsigned int rotation = state->base.rotation;
2358 unsigned int pitch = intel_fb_pitch(fb, plane, rotation);
2360 WARN_ON(new_offset > old_offset);
2362 if (fb->modifier[plane] != DRM_FORMAT_MOD_NONE) {
2363 unsigned int tile_size, tile_width, tile_height;
2364 unsigned int pitch_tiles;
2366 tile_size = intel_tile_size(dev_priv);
2367 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2368 fb->modifier[plane], cpp);
2370 if (intel_rotation_90_or_270(rotation)) {
2371 pitch_tiles = pitch / tile_height;
2372 swap(tile_width, tile_height);
2374 pitch_tiles = pitch / (tile_width * cpp);
2377 _intel_adjust_tile_offset(x, y, tile_width, tile_height,
2378 tile_size, pitch_tiles,
2379 old_offset, new_offset);
2381 old_offset += *y * pitch + *x * cpp;
2383 *y = (old_offset - new_offset) / pitch;
2384 *x = ((old_offset - new_offset) - *y * pitch) / cpp;
2391 * Computes the linear offset to the base tile and adjusts
2392 * x, y. bytes per pixel is assumed to be a power-of-two.
2394 * In the 90/270 rotated case, x and y are assumed
2395 * to be already rotated to match the rotated GTT view, and
2396 * pitch is the tile_height aligned framebuffer height.
2398 * This function is used when computing the derived information
2399 * under intel_framebuffer, so using any of that information
2400 * here is not allowed. Anything under drm_framebuffer can be
2401 * used. This is why the user has to pass in the pitch since it
2402 * is specified in the rotated orientation.
2404 static u32 _intel_compute_tile_offset(const struct drm_i915_private *dev_priv,
2406 const struct drm_framebuffer *fb, int plane,
2408 unsigned int rotation,
2411 uint64_t fb_modifier = fb->modifier[plane];
2412 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
2413 u32 offset, offset_aligned;
2418 if (fb_modifier != DRM_FORMAT_MOD_NONE) {
2419 unsigned int tile_size, tile_width, tile_height;
2420 unsigned int tile_rows, tiles, pitch_tiles;
2422 tile_size = intel_tile_size(dev_priv);
2423 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2426 if (intel_rotation_90_or_270(rotation)) {
2427 pitch_tiles = pitch / tile_height;
2428 swap(tile_width, tile_height);
2430 pitch_tiles = pitch / (tile_width * cpp);
2433 tile_rows = *y / tile_height;
2436 tiles = *x / tile_width;
2439 offset = (tile_rows * pitch_tiles + tiles) * tile_size;
2440 offset_aligned = offset & ~alignment;
2442 _intel_adjust_tile_offset(x, y, tile_width, tile_height,
2443 tile_size, pitch_tiles,
2444 offset, offset_aligned);
2446 offset = *y * pitch + *x * cpp;
2447 offset_aligned = offset & ~alignment;
2449 *y = (offset & alignment) / pitch;
2450 *x = ((offset & alignment) - *y * pitch) / cpp;
2453 return offset_aligned;
2456 u32 intel_compute_tile_offset(int *x, int *y,
2457 const struct intel_plane_state *state,
2460 const struct drm_i915_private *dev_priv = to_i915(state->base.plane->dev);
2461 const struct drm_framebuffer *fb = state->base.fb;
2462 unsigned int rotation = state->base.rotation;
2463 int pitch = intel_fb_pitch(fb, plane, rotation);
2466 /* AUX_DIST needs only 4K alignment */
2467 if (fb->pixel_format == DRM_FORMAT_NV12 && plane == 1)
2470 alignment = intel_surf_alignment(dev_priv, fb->modifier[plane]);
2472 return _intel_compute_tile_offset(dev_priv, x, y, fb, plane, pitch,
2473 rotation, alignment);
2476 /* Convert the fb->offset[] linear offset into x/y offsets */
2477 static void intel_fb_offset_to_xy(int *x, int *y,
2478 const struct drm_framebuffer *fb, int plane)
2480 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
2481 unsigned int pitch = fb->pitches[plane];
2482 u32 linear_offset = fb->offsets[plane];
2484 *y = linear_offset / pitch;
2485 *x = linear_offset % pitch / cpp;
2488 static unsigned int intel_fb_modifier_to_tiling(uint64_t fb_modifier)
2490 switch (fb_modifier) {
2491 case I915_FORMAT_MOD_X_TILED:
2492 return I915_TILING_X;
2493 case I915_FORMAT_MOD_Y_TILED:
2494 return I915_TILING_Y;
2496 return I915_TILING_NONE;
2501 intel_fill_fb_info(struct drm_i915_private *dev_priv,
2502 struct drm_framebuffer *fb)
2504 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
2505 struct intel_rotation_info *rot_info = &intel_fb->rot_info;
2506 u32 gtt_offset_rotated = 0;
2507 unsigned int max_size = 0;
2508 uint32_t format = fb->pixel_format;
2509 int i, num_planes = drm_format_num_planes(format);
2510 unsigned int tile_size = intel_tile_size(dev_priv);
2512 for (i = 0; i < num_planes; i++) {
2513 unsigned int width, height;
2514 unsigned int cpp, size;
2518 cpp = drm_format_plane_cpp(format, i);
2519 width = drm_format_plane_width(fb->width, format, i);
2520 height = drm_format_plane_height(fb->height, format, i);
2522 intel_fb_offset_to_xy(&x, &y, fb, i);
2525 * The fence (if used) is aligned to the start of the object
2526 * so having the framebuffer wrap around across the edge of the
2527 * fenced region doesn't really work. We have no API to configure
2528 * the fence start offset within the object (nor could we probably
2529 * on gen2/3). So it's just easier if we just require that the
2530 * fb layout agrees with the fence layout. We already check that the
2531 * fb stride matches the fence stride elsewhere.
2533 if (i915_gem_object_is_tiled(intel_fb->obj) &&
2534 (x + width) * cpp > fb->pitches[i]) {
2535 DRM_DEBUG("bad fb plane %d offset: 0x%x\n",
2541 * First pixel of the framebuffer from
2542 * the start of the normal gtt mapping.
2544 intel_fb->normal[i].x = x;
2545 intel_fb->normal[i].y = y;
2547 offset = _intel_compute_tile_offset(dev_priv, &x, &y,
2548 fb, 0, fb->pitches[i],
2549 DRM_ROTATE_0, tile_size);
2550 offset /= tile_size;
2552 if (fb->modifier[i] != DRM_FORMAT_MOD_NONE) {
2553 unsigned int tile_width, tile_height;
2554 unsigned int pitch_tiles;
2557 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2558 fb->modifier[i], cpp);
2560 rot_info->plane[i].offset = offset;
2561 rot_info->plane[i].stride = DIV_ROUND_UP(fb->pitches[i], tile_width * cpp);
2562 rot_info->plane[i].width = DIV_ROUND_UP(x + width, tile_width);
2563 rot_info->plane[i].height = DIV_ROUND_UP(y + height, tile_height);
2565 intel_fb->rotated[i].pitch =
2566 rot_info->plane[i].height * tile_height;
2568 /* how many tiles does this plane need */
2569 size = rot_info->plane[i].stride * rot_info->plane[i].height;
2571 * If the plane isn't horizontally tile aligned,
2572 * we need one more tile.
2577 /* rotate the x/y offsets to match the GTT view */
2583 rot_info->plane[i].width * tile_width,
2584 rot_info->plane[i].height * tile_height,
2589 /* rotate the tile dimensions to match the GTT view */
2590 pitch_tiles = intel_fb->rotated[i].pitch / tile_height;
2591 swap(tile_width, tile_height);
2594 * We only keep the x/y offsets, so push all of the
2595 * gtt offset into the x/y offsets.
2597 _intel_adjust_tile_offset(&x, &y, tile_size,
2598 tile_width, tile_height, pitch_tiles,
2599 gtt_offset_rotated * tile_size, 0);
2601 gtt_offset_rotated += rot_info->plane[i].width * rot_info->plane[i].height;
2604 * First pixel of the framebuffer from
2605 * the start of the rotated gtt mapping.
2607 intel_fb->rotated[i].x = x;
2608 intel_fb->rotated[i].y = y;
2610 size = DIV_ROUND_UP((y + height) * fb->pitches[i] +
2611 x * cpp, tile_size);
2614 /* how many tiles in total needed in the bo */
2615 max_size = max(max_size, offset + size);
2618 if (max_size * tile_size > to_intel_framebuffer(fb)->obj->base.size) {
2619 DRM_DEBUG("fb too big for bo (need %u bytes, have %zu bytes)\n",
2620 max_size * tile_size, to_intel_framebuffer(fb)->obj->base.size);
2627 static int i9xx_format_to_fourcc(int format)
2630 case DISPPLANE_8BPP:
2631 return DRM_FORMAT_C8;
2632 case DISPPLANE_BGRX555:
2633 return DRM_FORMAT_XRGB1555;
2634 case DISPPLANE_BGRX565:
2635 return DRM_FORMAT_RGB565;
2637 case DISPPLANE_BGRX888:
2638 return DRM_FORMAT_XRGB8888;
2639 case DISPPLANE_RGBX888:
2640 return DRM_FORMAT_XBGR8888;
2641 case DISPPLANE_BGRX101010:
2642 return DRM_FORMAT_XRGB2101010;
2643 case DISPPLANE_RGBX101010:
2644 return DRM_FORMAT_XBGR2101010;
2648 static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2651 case PLANE_CTL_FORMAT_RGB_565:
2652 return DRM_FORMAT_RGB565;
2654 case PLANE_CTL_FORMAT_XRGB_8888:
2657 return DRM_FORMAT_ABGR8888;
2659 return DRM_FORMAT_XBGR8888;
2662 return DRM_FORMAT_ARGB8888;
2664 return DRM_FORMAT_XRGB8888;
2666 case PLANE_CTL_FORMAT_XRGB_2101010:
2668 return DRM_FORMAT_XBGR2101010;
2670 return DRM_FORMAT_XRGB2101010;
2675 intel_alloc_initial_plane_obj(struct intel_crtc *crtc,
2676 struct intel_initial_plane_config *plane_config)
2678 struct drm_device *dev = crtc->base.dev;
2679 struct drm_i915_private *dev_priv = to_i915(dev);
2680 struct i915_ggtt *ggtt = &dev_priv->ggtt;
2681 struct drm_i915_gem_object *obj = NULL;
2682 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2683 struct drm_framebuffer *fb = &plane_config->fb->base;
2684 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2685 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2688 size_aligned -= base_aligned;
2690 if (plane_config->size == 0)
2693 /* If the FB is too big, just don't use it since fbdev is not very
2694 * important and we should probably use that space with FBC or other
2696 if (size_aligned * 2 > ggtt->stolen_usable_size)
2699 mutex_lock(&dev->struct_mutex);
2701 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2706 mutex_unlock(&dev->struct_mutex);
2710 if (plane_config->tiling == I915_TILING_X)
2711 obj->tiling_and_stride = fb->pitches[0] | I915_TILING_X;
2713 mode_cmd.pixel_format = fb->pixel_format;
2714 mode_cmd.width = fb->width;
2715 mode_cmd.height = fb->height;
2716 mode_cmd.pitches[0] = fb->pitches[0];
2717 mode_cmd.modifier[0] = fb->modifier[0];
2718 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
2720 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
2722 DRM_DEBUG_KMS("intel fb init failed\n");
2726 mutex_unlock(&dev->struct_mutex);
2728 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
2732 i915_gem_object_put(obj);
2733 mutex_unlock(&dev->struct_mutex);
2737 /* Update plane->state->fb to match plane->fb after driver-internal updates */
2739 update_state_fb(struct drm_plane *plane)
2741 if (plane->fb == plane->state->fb)
2744 if (plane->state->fb)
2745 drm_framebuffer_unreference(plane->state->fb);
2746 plane->state->fb = plane->fb;
2747 if (plane->state->fb)
2748 drm_framebuffer_reference(plane->state->fb);
2752 intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2753 struct intel_initial_plane_config *plane_config)
2755 struct drm_device *dev = intel_crtc->base.dev;
2756 struct drm_i915_private *dev_priv = to_i915(dev);
2758 struct intel_crtc *i;
2759 struct drm_i915_gem_object *obj;
2760 struct drm_plane *primary = intel_crtc->base.primary;
2761 struct drm_plane_state *plane_state = primary->state;
2762 struct drm_crtc_state *crtc_state = intel_crtc->base.state;
2763 struct intel_plane *intel_plane = to_intel_plane(primary);
2764 struct intel_plane_state *intel_state =
2765 to_intel_plane_state(plane_state);
2766 struct drm_framebuffer *fb;
2768 if (!plane_config->fb)
2771 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
2772 fb = &plane_config->fb->base;
2776 kfree(plane_config->fb);
2779 * Failed to alloc the obj, check to see if we should share
2780 * an fb with another CRTC instead
2782 for_each_crtc(dev, c) {
2783 i = to_intel_crtc(c);
2785 if (c == &intel_crtc->base)
2791 fb = c->primary->fb;
2795 obj = intel_fb_obj(fb);
2796 if (i915_gem_object_ggtt_offset(obj, NULL) == plane_config->base) {
2797 drm_framebuffer_reference(fb);
2803 * We've failed to reconstruct the BIOS FB. Current display state
2804 * indicates that the primary plane is visible, but has a NULL FB,
2805 * which will lead to problems later if we don't fix it up. The
2806 * simplest solution is to just disable the primary plane now and
2807 * pretend the BIOS never had it enabled.
2809 to_intel_plane_state(plane_state)->base.visible = false;
2810 crtc_state->plane_mask &= ~(1 << drm_plane_index(primary));
2811 intel_pre_disable_primary_noatomic(&intel_crtc->base);
2812 intel_plane->disable_plane(primary, &intel_crtc->base);
2817 plane_state->src_x = 0;
2818 plane_state->src_y = 0;
2819 plane_state->src_w = fb->width << 16;
2820 plane_state->src_h = fb->height << 16;
2822 plane_state->crtc_x = 0;
2823 plane_state->crtc_y = 0;
2824 plane_state->crtc_w = fb->width;
2825 plane_state->crtc_h = fb->height;
2827 intel_state->base.src.x1 = plane_state->src_x;
2828 intel_state->base.src.y1 = plane_state->src_y;
2829 intel_state->base.src.x2 = plane_state->src_x + plane_state->src_w;
2830 intel_state->base.src.y2 = plane_state->src_y + plane_state->src_h;
2831 intel_state->base.dst.x1 = plane_state->crtc_x;
2832 intel_state->base.dst.y1 = plane_state->crtc_y;
2833 intel_state->base.dst.x2 = plane_state->crtc_x + plane_state->crtc_w;
2834 intel_state->base.dst.y2 = plane_state->crtc_y + plane_state->crtc_h;
2836 obj = intel_fb_obj(fb);
2837 if (i915_gem_object_is_tiled(obj))
2838 dev_priv->preserve_bios_swizzle = true;
2840 drm_framebuffer_reference(fb);
2841 primary->fb = primary->state->fb = fb;
2842 primary->crtc = primary->state->crtc = &intel_crtc->base;
2843 intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary));
2844 atomic_or(to_intel_plane(primary)->frontbuffer_bit,
2845 &obj->frontbuffer_bits);
2848 static int skl_max_plane_width(const struct drm_framebuffer *fb, int plane,
2849 unsigned int rotation)
2851 int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
2853 switch (fb->modifier[plane]) {
2854 case DRM_FORMAT_MOD_NONE:
2855 case I915_FORMAT_MOD_X_TILED:
2868 case I915_FORMAT_MOD_Y_TILED:
2869 case I915_FORMAT_MOD_Yf_TILED:
2884 MISSING_CASE(fb->modifier[plane]);
2890 static int skl_check_main_surface(struct intel_plane_state *plane_state)
2892 const struct drm_i915_private *dev_priv = to_i915(plane_state->base.plane->dev);
2893 const struct drm_framebuffer *fb = plane_state->base.fb;
2894 unsigned int rotation = plane_state->base.rotation;
2895 int x = plane_state->base.src.x1 >> 16;
2896 int y = plane_state->base.src.y1 >> 16;
2897 int w = drm_rect_width(&plane_state->base.src) >> 16;
2898 int h = drm_rect_height(&plane_state->base.src) >> 16;
2899 int max_width = skl_max_plane_width(fb, 0, rotation);
2900 int max_height = 4096;
2901 u32 alignment, offset, aux_offset = plane_state->aux.offset;
2903 if (w > max_width || h > max_height) {
2904 DRM_DEBUG_KMS("requested Y/RGB source size %dx%d too big (limit %dx%d)\n",
2905 w, h, max_width, max_height);
2909 intel_add_fb_offsets(&x, &y, plane_state, 0);
2910 offset = intel_compute_tile_offset(&x, &y, plane_state, 0);
2912 alignment = intel_surf_alignment(dev_priv, fb->modifier[0]);
2915 * AUX surface offset is specified as the distance from the
2916 * main surface offset, and it must be non-negative. Make
2917 * sure that is what we will get.
2919 if (offset > aux_offset)
2920 offset = intel_adjust_tile_offset(&x, &y, plane_state, 0,
2921 offset, aux_offset & ~(alignment - 1));
2924 * When using an X-tiled surface, the plane blows up
2925 * if the x offset + width exceed the stride.
2927 * TODO: linear and Y-tiled seem fine, Yf untested,
2929 if (fb->modifier[0] == I915_FORMAT_MOD_X_TILED) {
2930 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
2932 while ((x + w) * cpp > fb->pitches[0]) {
2934 DRM_DEBUG_KMS("Unable to find suitable display surface offset\n");
2938 offset = intel_adjust_tile_offset(&x, &y, plane_state, 0,
2939 offset, offset - alignment);
2943 plane_state->main.offset = offset;
2944 plane_state->main.x = x;
2945 plane_state->main.y = y;
2950 static int skl_check_nv12_aux_surface(struct intel_plane_state *plane_state)
2952 const struct drm_framebuffer *fb = plane_state->base.fb;
2953 unsigned int rotation = plane_state->base.rotation;
2954 int max_width = skl_max_plane_width(fb, 1, rotation);
2955 int max_height = 4096;
2956 int x = plane_state->base.src.x1 >> 17;
2957 int y = plane_state->base.src.y1 >> 17;
2958 int w = drm_rect_width(&plane_state->base.src) >> 17;
2959 int h = drm_rect_height(&plane_state->base.src) >> 17;
2962 intel_add_fb_offsets(&x, &y, plane_state, 1);
2963 offset = intel_compute_tile_offset(&x, &y, plane_state, 1);
2965 /* FIXME not quite sure how/if these apply to the chroma plane */
2966 if (w > max_width || h > max_height) {
2967 DRM_DEBUG_KMS("CbCr source size %dx%d too big (limit %dx%d)\n",
2968 w, h, max_width, max_height);
2972 plane_state->aux.offset = offset;
2973 plane_state->aux.x = x;
2974 plane_state->aux.y = y;
2979 int skl_check_plane_surface(struct intel_plane_state *plane_state)
2981 const struct drm_framebuffer *fb = plane_state->base.fb;
2982 unsigned int rotation = plane_state->base.rotation;
2985 /* Rotate src coordinates to match rotated GTT view */
2986 if (intel_rotation_90_or_270(rotation))
2987 drm_rect_rotate(&plane_state->base.src,
2988 fb->width, fb->height, DRM_ROTATE_270);
2991 * Handle the AUX surface first since
2992 * the main surface setup depends on it.
2994 if (fb->pixel_format == DRM_FORMAT_NV12) {
2995 ret = skl_check_nv12_aux_surface(plane_state);
2999 plane_state->aux.offset = ~0xfff;
3000 plane_state->aux.x = 0;
3001 plane_state->aux.y = 0;
3004 ret = skl_check_main_surface(plane_state);
3011 static void i9xx_update_primary_plane(struct drm_plane *primary,
3012 const struct intel_crtc_state *crtc_state,
3013 const struct intel_plane_state *plane_state)
3015 struct drm_device *dev = primary->dev;
3016 struct drm_i915_private *dev_priv = to_i915(dev);
3017 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3018 struct drm_framebuffer *fb = plane_state->base.fb;
3019 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
3020 int plane = intel_crtc->plane;
3023 i915_reg_t reg = DSPCNTR(plane);
3024 unsigned int rotation = plane_state->base.rotation;
3025 int x = plane_state->base.src.x1 >> 16;
3026 int y = plane_state->base.src.y1 >> 16;
3028 dspcntr = DISPPLANE_GAMMA_ENABLE;
3030 dspcntr |= DISPLAY_PLANE_ENABLE;
3032 if (INTEL_INFO(dev)->gen < 4) {
3033 if (intel_crtc->pipe == PIPE_B)
3034 dspcntr |= DISPPLANE_SEL_PIPE_B;
3036 /* pipesrc and dspsize control the size that is scaled from,
3037 * which should always be the user's requested size.
3039 I915_WRITE(DSPSIZE(plane),
3040 ((crtc_state->pipe_src_h - 1) << 16) |
3041 (crtc_state->pipe_src_w - 1));
3042 I915_WRITE(DSPPOS(plane), 0);
3043 } else if (IS_CHERRYVIEW(dev_priv) && plane == PLANE_B) {
3044 I915_WRITE(PRIMSIZE(plane),
3045 ((crtc_state->pipe_src_h - 1) << 16) |
3046 (crtc_state->pipe_src_w - 1));
3047 I915_WRITE(PRIMPOS(plane), 0);
3048 I915_WRITE(PRIMCNSTALPHA(plane), 0);
3051 switch (fb->pixel_format) {
3053 dspcntr |= DISPPLANE_8BPP;
3055 case DRM_FORMAT_XRGB1555:
3056 dspcntr |= DISPPLANE_BGRX555;
3058 case DRM_FORMAT_RGB565:
3059 dspcntr |= DISPPLANE_BGRX565;
3061 case DRM_FORMAT_XRGB8888:
3062 dspcntr |= DISPPLANE_BGRX888;
3064 case DRM_FORMAT_XBGR8888:
3065 dspcntr |= DISPPLANE_RGBX888;
3067 case DRM_FORMAT_XRGB2101010:
3068 dspcntr |= DISPPLANE_BGRX101010;
3070 case DRM_FORMAT_XBGR2101010:
3071 dspcntr |= DISPPLANE_RGBX101010;
3077 if (INTEL_GEN(dev_priv) >= 4 &&
3078 fb->modifier[0] == I915_FORMAT_MOD_X_TILED)
3079 dspcntr |= DISPPLANE_TILED;
3081 if (IS_G4X(dev_priv))
3082 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
3084 intel_add_fb_offsets(&x, &y, plane_state, 0);
3086 if (INTEL_INFO(dev)->gen >= 4)
3087 intel_crtc->dspaddr_offset =
3088 intel_compute_tile_offset(&x, &y, plane_state, 0);
3090 if (rotation == DRM_ROTATE_180) {
3091 dspcntr |= DISPPLANE_ROTATE_180;
3093 x += (crtc_state->pipe_src_w - 1);
3094 y += (crtc_state->pipe_src_h - 1);
3097 linear_offset = intel_fb_xy_to_linear(x, y, plane_state, 0);
3099 if (INTEL_INFO(dev)->gen < 4)
3100 intel_crtc->dspaddr_offset = linear_offset;
3102 intel_crtc->adjusted_x = x;
3103 intel_crtc->adjusted_y = y;
3105 I915_WRITE(reg, dspcntr);
3107 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
3108 if (INTEL_INFO(dev)->gen >= 4) {
3109 I915_WRITE(DSPSURF(plane),
3110 intel_fb_gtt_offset(fb, rotation) +
3111 intel_crtc->dspaddr_offset);
3112 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
3113 I915_WRITE(DSPLINOFF(plane), linear_offset);
3115 I915_WRITE(DSPADDR(plane), i915_gem_object_ggtt_offset(obj, NULL) + linear_offset);
3119 static void i9xx_disable_primary_plane(struct drm_plane *primary,
3120 struct drm_crtc *crtc)
3122 struct drm_device *dev = crtc->dev;
3123 struct drm_i915_private *dev_priv = to_i915(dev);
3124 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3125 int plane = intel_crtc->plane;
3127 I915_WRITE(DSPCNTR(plane), 0);
3128 if (INTEL_INFO(dev_priv)->gen >= 4)
3129 I915_WRITE(DSPSURF(plane), 0);
3131 I915_WRITE(DSPADDR(plane), 0);
3132 POSTING_READ(DSPCNTR(plane));
3135 static void ironlake_update_primary_plane(struct drm_plane *primary,
3136 const struct intel_crtc_state *crtc_state,
3137 const struct intel_plane_state *plane_state)
3139 struct drm_device *dev = primary->dev;
3140 struct drm_i915_private *dev_priv = to_i915(dev);
3141 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3142 struct drm_framebuffer *fb = plane_state->base.fb;
3143 int plane = intel_crtc->plane;
3146 i915_reg_t reg = DSPCNTR(plane);
3147 unsigned int rotation = plane_state->base.rotation;
3148 int x = plane_state->base.src.x1 >> 16;
3149 int y = plane_state->base.src.y1 >> 16;
3151 dspcntr = DISPPLANE_GAMMA_ENABLE;
3152 dspcntr |= DISPLAY_PLANE_ENABLE;
3154 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
3155 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
3157 switch (fb->pixel_format) {
3159 dspcntr |= DISPPLANE_8BPP;
3161 case DRM_FORMAT_RGB565:
3162 dspcntr |= DISPPLANE_BGRX565;
3164 case DRM_FORMAT_XRGB8888:
3165 dspcntr |= DISPPLANE_BGRX888;
3167 case DRM_FORMAT_XBGR8888:
3168 dspcntr |= DISPPLANE_RGBX888;
3170 case DRM_FORMAT_XRGB2101010:
3171 dspcntr |= DISPPLANE_BGRX101010;
3173 case DRM_FORMAT_XBGR2101010:
3174 dspcntr |= DISPPLANE_RGBX101010;
3180 if (fb->modifier[0] == I915_FORMAT_MOD_X_TILED)
3181 dspcntr |= DISPPLANE_TILED;
3183 if (!IS_HASWELL(dev_priv) && !IS_BROADWELL(dev_priv))
3184 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
3186 intel_add_fb_offsets(&x, &y, plane_state, 0);
3188 intel_crtc->dspaddr_offset =
3189 intel_compute_tile_offset(&x, &y, plane_state, 0);
3191 if (rotation == DRM_ROTATE_180) {
3192 dspcntr |= DISPPLANE_ROTATE_180;
3194 if (!IS_HASWELL(dev_priv) && !IS_BROADWELL(dev_priv)) {
3195 x += (crtc_state->pipe_src_w - 1);
3196 y += (crtc_state->pipe_src_h - 1);
3200 linear_offset = intel_fb_xy_to_linear(x, y, plane_state, 0);
3202 intel_crtc->adjusted_x = x;
3203 intel_crtc->adjusted_y = y;
3205 I915_WRITE(reg, dspcntr);
3207 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
3208 I915_WRITE(DSPSURF(plane),
3209 intel_fb_gtt_offset(fb, rotation) +
3210 intel_crtc->dspaddr_offset);
3211 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
3212 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
3214 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
3215 I915_WRITE(DSPLINOFF(plane), linear_offset);
3220 u32 intel_fb_stride_alignment(const struct drm_i915_private *dev_priv,
3221 uint64_t fb_modifier, uint32_t pixel_format)
3223 if (fb_modifier == DRM_FORMAT_MOD_NONE) {
3226 int cpp = drm_format_plane_cpp(pixel_format, 0);
3228 return intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
3232 u32 intel_fb_gtt_offset(struct drm_framebuffer *fb,
3233 unsigned int rotation)
3235 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
3236 struct i915_ggtt_view view;
3237 struct i915_vma *vma;
3239 intel_fill_fb_ggtt_view(&view, fb, rotation);
3241 vma = i915_gem_object_to_ggtt(obj, &view);
3242 if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n",
3246 return i915_ggtt_offset(vma);
3249 static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id)
3251 struct drm_device *dev = intel_crtc->base.dev;
3252 struct drm_i915_private *dev_priv = to_i915(dev);
3254 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0);
3255 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0);
3256 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0);
3260 * This function detaches (aka. unbinds) unused scalers in hardware
3262 static void skl_detach_scalers(struct intel_crtc *intel_crtc)
3264 struct intel_crtc_scaler_state *scaler_state;
3267 scaler_state = &intel_crtc->config->scaler_state;
3269 /* loop through and disable scalers that aren't in use */
3270 for (i = 0; i < intel_crtc->num_scalers; i++) {
3271 if (!scaler_state->scalers[i].in_use)
3272 skl_detach_scaler(intel_crtc, i);
3276 u32 skl_plane_stride(const struct drm_framebuffer *fb, int plane,
3277 unsigned int rotation)
3279 const struct drm_i915_private *dev_priv = to_i915(fb->dev);
3280 u32 stride = intel_fb_pitch(fb, plane, rotation);
3283 * The stride is either expressed as a multiple of 64 bytes chunks for
3284 * linear buffers or in number of tiles for tiled buffers.
3286 if (intel_rotation_90_or_270(rotation)) {
3287 int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
3289 stride /= intel_tile_height(dev_priv, fb->modifier[0], cpp);
3291 stride /= intel_fb_stride_alignment(dev_priv, fb->modifier[0],
3298 u32 skl_plane_ctl_format(uint32_t pixel_format)
3300 switch (pixel_format) {
3302 return PLANE_CTL_FORMAT_INDEXED;
3303 case DRM_FORMAT_RGB565:
3304 return PLANE_CTL_FORMAT_RGB_565;
3305 case DRM_FORMAT_XBGR8888:
3306 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
3307 case DRM_FORMAT_XRGB8888:
3308 return PLANE_CTL_FORMAT_XRGB_8888;
3310 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
3311 * to be already pre-multiplied. We need to add a knob (or a different
3312 * DRM_FORMAT) for user-space to configure that.
3314 case DRM_FORMAT_ABGR8888:
3315 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
3316 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
3317 case DRM_FORMAT_ARGB8888:
3318 return PLANE_CTL_FORMAT_XRGB_8888 |
3319 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
3320 case DRM_FORMAT_XRGB2101010:
3321 return PLANE_CTL_FORMAT_XRGB_2101010;
3322 case DRM_FORMAT_XBGR2101010:
3323 return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
3324 case DRM_FORMAT_YUYV:
3325 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
3326 case DRM_FORMAT_YVYU:
3327 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
3328 case DRM_FORMAT_UYVY:
3329 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
3330 case DRM_FORMAT_VYUY:
3331 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
3333 MISSING_CASE(pixel_format);
3339 u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
3341 switch (fb_modifier) {
3342 case DRM_FORMAT_MOD_NONE:
3344 case I915_FORMAT_MOD_X_TILED:
3345 return PLANE_CTL_TILED_X;
3346 case I915_FORMAT_MOD_Y_TILED:
3347 return PLANE_CTL_TILED_Y;
3348 case I915_FORMAT_MOD_Yf_TILED:
3349 return PLANE_CTL_TILED_YF;
3351 MISSING_CASE(fb_modifier);
3357 u32 skl_plane_ctl_rotation(unsigned int rotation)
3363 * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr
3364 * while i915 HW rotation is clockwise, thats why this swapping.
3367 return PLANE_CTL_ROTATE_270;
3368 case DRM_ROTATE_180:
3369 return PLANE_CTL_ROTATE_180;
3370 case DRM_ROTATE_270:
3371 return PLANE_CTL_ROTATE_90;
3373 MISSING_CASE(rotation);
3379 static void skylake_update_primary_plane(struct drm_plane *plane,
3380 const struct intel_crtc_state *crtc_state,
3381 const struct intel_plane_state *plane_state)
3383 struct drm_device *dev = plane->dev;
3384 struct drm_i915_private *dev_priv = to_i915(dev);
3385 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3386 struct drm_framebuffer *fb = plane_state->base.fb;
3387 const struct skl_wm_values *wm = &dev_priv->wm.skl_results;
3388 const struct skl_plane_wm *p_wm =
3389 &crtc_state->wm.skl.optimal.planes[0];
3390 int pipe = intel_crtc->pipe;
3392 unsigned int rotation = plane_state->base.rotation;
3393 u32 stride = skl_plane_stride(fb, 0, rotation);
3394 u32 surf_addr = plane_state->main.offset;
3395 int scaler_id = plane_state->scaler_id;
3396 int src_x = plane_state->main.x;
3397 int src_y = plane_state->main.y;
3398 int src_w = drm_rect_width(&plane_state->base.src) >> 16;
3399 int src_h = drm_rect_height(&plane_state->base.src) >> 16;
3400 int dst_x = plane_state->base.dst.x1;
3401 int dst_y = plane_state->base.dst.y1;
3402 int dst_w = drm_rect_width(&plane_state->base.dst);
3403 int dst_h = drm_rect_height(&plane_state->base.dst);
3405 plane_ctl = PLANE_CTL_ENABLE |
3406 PLANE_CTL_PIPE_GAMMA_ENABLE |
3407 PLANE_CTL_PIPE_CSC_ENABLE;
3409 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3410 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
3411 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
3412 plane_ctl |= skl_plane_ctl_rotation(rotation);
3414 /* Sizes are 0 based */
3420 intel_crtc->dspaddr_offset = surf_addr;
3422 intel_crtc->adjusted_x = src_x;
3423 intel_crtc->adjusted_y = src_y;
3425 if (wm->dirty_pipes & drm_crtc_mask(&intel_crtc->base))
3426 skl_write_plane_wm(intel_crtc, p_wm, &wm->ddb, 0);
3428 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
3429 I915_WRITE(PLANE_OFFSET(pipe, 0), (src_y << 16) | src_x);
3430 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
3431 I915_WRITE(PLANE_SIZE(pipe, 0), (src_h << 16) | src_w);
3433 if (scaler_id >= 0) {
3434 uint32_t ps_ctrl = 0;
3436 WARN_ON(!dst_w || !dst_h);
3437 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3438 crtc_state->scaler_state.scalers[scaler_id].mode;
3439 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3440 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3441 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3442 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3443 I915_WRITE(PLANE_POS(pipe, 0), 0);
3445 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3448 I915_WRITE(PLANE_SURF(pipe, 0),
3449 intel_fb_gtt_offset(fb, rotation) + surf_addr);
3451 POSTING_READ(PLANE_SURF(pipe, 0));
3454 static void skylake_disable_primary_plane(struct drm_plane *primary,
3455 struct drm_crtc *crtc)
3457 struct drm_device *dev = crtc->dev;
3458 struct drm_i915_private *dev_priv = to_i915(dev);
3459 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3460 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
3461 const struct skl_plane_wm *p_wm = &cstate->wm.skl.optimal.planes[0];
3462 int pipe = intel_crtc->pipe;
3465 * We only populate skl_results on watermark updates, and if the
3466 * plane's visiblity isn't actually changing neither is its watermarks.
3468 if (!crtc->primary->state->visible)
3469 skl_write_plane_wm(intel_crtc, p_wm,
3470 &dev_priv->wm.skl_results.ddb, 0);
3472 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3473 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3474 POSTING_READ(PLANE_SURF(pipe, 0));
3477 /* Assume fb object is pinned & idle & fenced and just update base pointers */
3479 intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3480 int x, int y, enum mode_set_atomic state)
3482 /* Support for kgdboc is disabled, this needs a major rework. */
3483 DRM_ERROR("legacy panic handler not supported any more.\n");
3488 static void intel_complete_page_flips(struct drm_i915_private *dev_priv)
3490 struct intel_crtc *crtc;
3492 for_each_intel_crtc(&dev_priv->drm, crtc)
3493 intel_finish_page_flip_cs(dev_priv, crtc->pipe);
3496 static void intel_update_primary_planes(struct drm_device *dev)
3498 struct drm_crtc *crtc;
3500 for_each_crtc(dev, crtc) {
3501 struct intel_plane *plane = to_intel_plane(crtc->primary);
3502 struct intel_plane_state *plane_state =
3503 to_intel_plane_state(plane->base.state);
3505 if (plane_state->base.visible)
3506 plane->update_plane(&plane->base,
3507 to_intel_crtc_state(crtc->state),
3513 __intel_display_resume(struct drm_device *dev,
3514 struct drm_atomic_state *state)
3516 struct drm_crtc_state *crtc_state;
3517 struct drm_crtc *crtc;
3520 intel_modeset_setup_hw_state(dev);
3521 i915_redisable_vga(dev);
3526 for_each_crtc_in_state(state, crtc, crtc_state, i) {
3528 * Force recalculation even if we restore
3529 * current state. With fast modeset this may not result
3530 * in a modeset when the state is compatible.
3532 crtc_state->mode_changed = true;
3535 /* ignore any reset values/BIOS leftovers in the WM registers */
3536 to_intel_atomic_state(state)->skip_intermediate_wm = true;
3538 ret = drm_atomic_commit(state);
3540 WARN_ON(ret == -EDEADLK);
3544 static bool gpu_reset_clobbers_display(struct drm_i915_private *dev_priv)
3546 return intel_has_gpu_reset(dev_priv) &&
3547 INTEL_GEN(dev_priv) < 5 && !IS_G4X(dev_priv);
3550 void intel_prepare_reset(struct drm_i915_private *dev_priv)
3552 struct drm_device *dev = &dev_priv->drm;
3553 struct drm_modeset_acquire_ctx *ctx = &dev_priv->reset_ctx;
3554 struct drm_atomic_state *state;
3558 * Need mode_config.mutex so that we don't
3559 * trample ongoing ->detect() and whatnot.
3561 mutex_lock(&dev->mode_config.mutex);
3562 drm_modeset_acquire_init(ctx, 0);
3564 ret = drm_modeset_lock_all_ctx(dev, ctx);
3565 if (ret != -EDEADLK)
3568 drm_modeset_backoff(ctx);
3571 /* reset doesn't touch the display, but flips might get nuked anyway, */
3572 if (!i915.force_reset_modeset_test &&
3573 !gpu_reset_clobbers_display(dev_priv))
3577 * Disabling the crtcs gracefully seems nicer. Also the
3578 * g33 docs say we should at least disable all the planes.
3580 state = drm_atomic_helper_duplicate_state(dev, ctx);
3581 if (IS_ERR(state)) {
3582 ret = PTR_ERR(state);
3584 DRM_ERROR("Duplicating state failed with %i\n", ret);
3588 ret = drm_atomic_helper_disable_all(dev, ctx);
3590 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
3594 dev_priv->modeset_restore_state = state;
3595 state->acquire_ctx = ctx;
3599 drm_atomic_state_free(state);
3602 void intel_finish_reset(struct drm_i915_private *dev_priv)
3604 struct drm_device *dev = &dev_priv->drm;
3605 struct drm_modeset_acquire_ctx *ctx = &dev_priv->reset_ctx;
3606 struct drm_atomic_state *state = dev_priv->modeset_restore_state;
3610 * Flips in the rings will be nuked by the reset,
3611 * so complete all pending flips so that user space
3612 * will get its events and not get stuck.
3614 intel_complete_page_flips(dev_priv);
3616 dev_priv->modeset_restore_state = NULL;
3618 /* reset doesn't touch the display */
3619 if (!gpu_reset_clobbers_display(dev_priv)) {
3622 * Flips in the rings have been nuked by the reset,
3623 * so update the base address of all primary
3624 * planes to the the last fb to make sure we're
3625 * showing the correct fb after a reset.
3627 * FIXME: Atomic will make this obsolete since we won't schedule
3628 * CS-based flips (which might get lost in gpu resets) any more.
3630 intel_update_primary_planes(dev);
3632 ret = __intel_display_resume(dev, state);
3634 DRM_ERROR("Restoring old state failed with %i\n", ret);
3638 * The display has been reset as well,
3639 * so need a full re-initialization.
3641 intel_runtime_pm_disable_interrupts(dev_priv);
3642 intel_runtime_pm_enable_interrupts(dev_priv);
3644 intel_pps_unlock_regs_wa(dev_priv);
3645 intel_modeset_init_hw(dev);
3647 spin_lock_irq(&dev_priv->irq_lock);
3648 if (dev_priv->display.hpd_irq_setup)
3649 dev_priv->display.hpd_irq_setup(dev_priv);
3650 spin_unlock_irq(&dev_priv->irq_lock);
3652 ret = __intel_display_resume(dev, state);
3654 DRM_ERROR("Restoring old state failed with %i\n", ret);
3656 intel_hpd_init(dev_priv);
3659 drm_modeset_drop_locks(ctx);
3660 drm_modeset_acquire_fini(ctx);
3661 mutex_unlock(&dev->mode_config.mutex);
3664 static bool abort_flip_on_reset(struct intel_crtc *crtc)
3666 struct i915_gpu_error *error = &to_i915(crtc->base.dev)->gpu_error;
3668 if (i915_reset_in_progress(error))
3671 if (crtc->reset_count != i915_reset_count(error))
3677 static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3679 struct drm_device *dev = crtc->dev;
3680 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3683 if (abort_flip_on_reset(intel_crtc))
3686 spin_lock_irq(&dev->event_lock);
3687 pending = to_intel_crtc(crtc)->flip_work != NULL;
3688 spin_unlock_irq(&dev->event_lock);
3693 static void intel_update_pipe_config(struct intel_crtc *crtc,
3694 struct intel_crtc_state *old_crtc_state)
3696 struct drm_device *dev = crtc->base.dev;
3697 struct drm_i915_private *dev_priv = to_i915(dev);
3698 struct intel_crtc_state *pipe_config =
3699 to_intel_crtc_state(crtc->base.state);
3701 /* drm_atomic_helper_update_legacy_modeset_state might not be called. */
3702 crtc->base.mode = crtc->base.state->mode;
3704 DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n",
3705 old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h,
3706 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
3709 * Update pipe size and adjust fitter if needed: the reason for this is
3710 * that in compute_mode_changes we check the native mode (not the pfit
3711 * mode) to see if we can flip rather than do a full mode set. In the
3712 * fastboot case, we'll flip, but if we don't update the pipesrc and
3713 * pfit state, we'll end up with a big fb scanned out into the wrong
3717 I915_WRITE(PIPESRC(crtc->pipe),
3718 ((pipe_config->pipe_src_w - 1) << 16) |
3719 (pipe_config->pipe_src_h - 1));
3721 /* on skylake this is done by detaching scalers */
3722 if (INTEL_INFO(dev)->gen >= 9) {
3723 skl_detach_scalers(crtc);
3725 if (pipe_config->pch_pfit.enabled)
3726 skylake_pfit_enable(crtc);
3727 } else if (HAS_PCH_SPLIT(dev_priv)) {
3728 if (pipe_config->pch_pfit.enabled)
3729 ironlake_pfit_enable(crtc);
3730 else if (old_crtc_state->pch_pfit.enabled)
3731 ironlake_pfit_disable(crtc, true);
3735 static void intel_fdi_normal_train(struct drm_crtc *crtc)
3737 struct drm_device *dev = crtc->dev;
3738 struct drm_i915_private *dev_priv = to_i915(dev);
3739 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3740 int pipe = intel_crtc->pipe;
3744 /* enable normal train */
3745 reg = FDI_TX_CTL(pipe);
3746 temp = I915_READ(reg);
3747 if (IS_IVYBRIDGE(dev_priv)) {
3748 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3749 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
3751 temp &= ~FDI_LINK_TRAIN_NONE;
3752 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
3754 I915_WRITE(reg, temp);
3756 reg = FDI_RX_CTL(pipe);
3757 temp = I915_READ(reg);
3758 if (HAS_PCH_CPT(dev_priv)) {
3759 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3760 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3762 temp &= ~FDI_LINK_TRAIN_NONE;
3763 temp |= FDI_LINK_TRAIN_NONE;
3765 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3767 /* wait one idle pattern time */
3771 /* IVB wants error correction enabled */
3772 if (IS_IVYBRIDGE(dev_priv))
3773 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3774 FDI_FE_ERRC_ENABLE);
3777 /* The FDI link training functions for ILK/Ibexpeak. */
3778 static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3780 struct drm_device *dev = crtc->dev;
3781 struct drm_i915_private *dev_priv = to_i915(dev);
3782 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3783 int pipe = intel_crtc->pipe;
3787 /* FDI needs bits from pipe first */
3788 assert_pipe_enabled(dev_priv, pipe);
3790 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3792 reg = FDI_RX_IMR(pipe);
3793 temp = I915_READ(reg);
3794 temp &= ~FDI_RX_SYMBOL_LOCK;
3795 temp &= ~FDI_RX_BIT_LOCK;
3796 I915_WRITE(reg, temp);
3800 /* enable CPU FDI TX and PCH FDI RX */
3801 reg = FDI_TX_CTL(pipe);
3802 temp = I915_READ(reg);
3803 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3804 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
3805 temp &= ~FDI_LINK_TRAIN_NONE;
3806 temp |= FDI_LINK_TRAIN_PATTERN_1;
3807 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3809 reg = FDI_RX_CTL(pipe);
3810 temp = I915_READ(reg);
3811 temp &= ~FDI_LINK_TRAIN_NONE;
3812 temp |= FDI_LINK_TRAIN_PATTERN_1;
3813 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3818 /* Ironlake workaround, enable clock pointer after FDI enable*/
3819 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3820 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3821 FDI_RX_PHASE_SYNC_POINTER_EN);
3823 reg = FDI_RX_IIR(pipe);
3824 for (tries = 0; tries < 5; tries++) {
3825 temp = I915_READ(reg);
3826 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3828 if ((temp & FDI_RX_BIT_LOCK)) {
3829 DRM_DEBUG_KMS("FDI train 1 done.\n");
3830 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3835 DRM_ERROR("FDI train 1 fail!\n");
3838 reg = FDI_TX_CTL(pipe);
3839 temp = I915_READ(reg);
3840 temp &= ~FDI_LINK_TRAIN_NONE;
3841 temp |= FDI_LINK_TRAIN_PATTERN_2;
3842 I915_WRITE(reg, temp);
3844 reg = FDI_RX_CTL(pipe);
3845 temp = I915_READ(reg);
3846 temp &= ~FDI_LINK_TRAIN_NONE;
3847 temp |= FDI_LINK_TRAIN_PATTERN_2;
3848 I915_WRITE(reg, temp);
3853 reg = FDI_RX_IIR(pipe);
3854 for (tries = 0; tries < 5; tries++) {
3855 temp = I915_READ(reg);
3856 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3858 if (temp & FDI_RX_SYMBOL_LOCK) {
3859 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3860 DRM_DEBUG_KMS("FDI train 2 done.\n");
3865 DRM_ERROR("FDI train 2 fail!\n");
3867 DRM_DEBUG_KMS("FDI train done\n");
3871 static const int snb_b_fdi_train_param[] = {
3872 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3873 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3874 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3875 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3878 /* The FDI link training functions for SNB/Cougarpoint. */
3879 static void gen6_fdi_link_train(struct drm_crtc *crtc)
3881 struct drm_device *dev = crtc->dev;
3882 struct drm_i915_private *dev_priv = to_i915(dev);
3883 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3884 int pipe = intel_crtc->pipe;
3888 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3890 reg = FDI_RX_IMR(pipe);
3891 temp = I915_READ(reg);
3892 temp &= ~FDI_RX_SYMBOL_LOCK;
3893 temp &= ~FDI_RX_BIT_LOCK;
3894 I915_WRITE(reg, temp);
3899 /* enable CPU FDI TX and PCH FDI RX */
3900 reg = FDI_TX_CTL(pipe);
3901 temp = I915_READ(reg);
3902 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3903 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
3904 temp &= ~FDI_LINK_TRAIN_NONE;
3905 temp |= FDI_LINK_TRAIN_PATTERN_1;
3906 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3908 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3909 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3911 I915_WRITE(FDI_RX_MISC(pipe),
3912 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3914 reg = FDI_RX_CTL(pipe);
3915 temp = I915_READ(reg);
3916 if (HAS_PCH_CPT(dev_priv)) {
3917 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3918 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3920 temp &= ~FDI_LINK_TRAIN_NONE;
3921 temp |= FDI_LINK_TRAIN_PATTERN_1;
3923 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3928 for (i = 0; i < 4; i++) {
3929 reg = FDI_TX_CTL(pipe);
3930 temp = I915_READ(reg);
3931 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3932 temp |= snb_b_fdi_train_param[i];
3933 I915_WRITE(reg, temp);
3938 for (retry = 0; retry < 5; retry++) {
3939 reg = FDI_RX_IIR(pipe);
3940 temp = I915_READ(reg);
3941 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3942 if (temp & FDI_RX_BIT_LOCK) {
3943 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3944 DRM_DEBUG_KMS("FDI train 1 done.\n");
3953 DRM_ERROR("FDI train 1 fail!\n");
3956 reg = FDI_TX_CTL(pipe);
3957 temp = I915_READ(reg);
3958 temp &= ~FDI_LINK_TRAIN_NONE;
3959 temp |= FDI_LINK_TRAIN_PATTERN_2;
3960 if (IS_GEN6(dev_priv)) {
3961 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3963 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3965 I915_WRITE(reg, temp);
3967 reg = FDI_RX_CTL(pipe);
3968 temp = I915_READ(reg);
3969 if (HAS_PCH_CPT(dev_priv)) {
3970 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3971 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3973 temp &= ~FDI_LINK_TRAIN_NONE;
3974 temp |= FDI_LINK_TRAIN_PATTERN_2;
3976 I915_WRITE(reg, temp);
3981 for (i = 0; i < 4; i++) {
3982 reg = FDI_TX_CTL(pipe);
3983 temp = I915_READ(reg);
3984 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3985 temp |= snb_b_fdi_train_param[i];
3986 I915_WRITE(reg, temp);
3991 for (retry = 0; retry < 5; retry++) {
3992 reg = FDI_RX_IIR(pipe);
3993 temp = I915_READ(reg);
3994 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3995 if (temp & FDI_RX_SYMBOL_LOCK) {
3996 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3997 DRM_DEBUG_KMS("FDI train 2 done.\n");
4006 DRM_ERROR("FDI train 2 fail!\n");
4008 DRM_DEBUG_KMS("FDI train done.\n");
4011 /* Manual link training for Ivy Bridge A0 parts */
4012 static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
4014 struct drm_device *dev = crtc->dev;
4015 struct drm_i915_private *dev_priv = to_i915(dev);
4016 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4017 int pipe = intel_crtc->pipe;
4021 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
4023 reg = FDI_RX_IMR(pipe);
4024 temp = I915_READ(reg);
4025 temp &= ~FDI_RX_SYMBOL_LOCK;
4026 temp &= ~FDI_RX_BIT_LOCK;
4027 I915_WRITE(reg, temp);
4032 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
4033 I915_READ(FDI_RX_IIR(pipe)));
4035 /* Try each vswing and preemphasis setting twice before moving on */
4036 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
4037 /* disable first in case we need to retry */
4038 reg = FDI_TX_CTL(pipe);
4039 temp = I915_READ(reg);
4040 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
4041 temp &= ~FDI_TX_ENABLE;
4042 I915_WRITE(reg, temp);
4044 reg = FDI_RX_CTL(pipe);
4045 temp = I915_READ(reg);
4046 temp &= ~FDI_LINK_TRAIN_AUTO;
4047 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
4048 temp &= ~FDI_RX_ENABLE;
4049 I915_WRITE(reg, temp);
4051 /* enable CPU FDI TX and PCH FDI RX */
4052 reg = FDI_TX_CTL(pipe);
4053 temp = I915_READ(reg);
4054 temp &= ~FDI_DP_PORT_WIDTH_MASK;
4055 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
4056 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
4057 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
4058 temp |= snb_b_fdi_train_param[j/2];
4059 temp |= FDI_COMPOSITE_SYNC;
4060 I915_WRITE(reg, temp | FDI_TX_ENABLE);
4062 I915_WRITE(FDI_RX_MISC(pipe),
4063 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
4065 reg = FDI_RX_CTL(pipe);
4066 temp = I915_READ(reg);
4067 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
4068 temp |= FDI_COMPOSITE_SYNC;
4069 I915_WRITE(reg, temp | FDI_RX_ENABLE);
4072 udelay(1); /* should be 0.5us */
4074 for (i = 0; i < 4; i++) {
4075 reg = FDI_RX_IIR(pipe);
4076 temp = I915_READ(reg);
4077 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
4079 if (temp & FDI_RX_BIT_LOCK ||
4080 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
4081 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
4082 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
4086 udelay(1); /* should be 0.5us */
4089 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
4094 reg = FDI_TX_CTL(pipe);
4095 temp = I915_READ(reg);
4096 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
4097 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
4098 I915_WRITE(reg, temp);
4100 reg = FDI_RX_CTL(pipe);
4101 temp = I915_READ(reg);
4102 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
4103 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
4104 I915_WRITE(reg, temp);
4107 udelay(2); /* should be 1.5us */
4109 for (i = 0; i < 4; i++) {
4110 reg = FDI_RX_IIR(pipe);
4111 temp = I915_READ(reg);
4112 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
4114 if (temp & FDI_RX_SYMBOL_LOCK ||
4115 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
4116 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
4117 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
4121 udelay(2); /* should be 1.5us */
4124 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
4128 DRM_DEBUG_KMS("FDI train done.\n");
4131 static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
4133 struct drm_device *dev = intel_crtc->base.dev;
4134 struct drm_i915_private *dev_priv = to_i915(dev);
4135 int pipe = intel_crtc->pipe;
4139 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
4140 reg = FDI_RX_CTL(pipe);
4141 temp = I915_READ(reg);
4142 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
4143 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
4144 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
4145 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
4150 /* Switch from Rawclk to PCDclk */
4151 temp = I915_READ(reg);
4152 I915_WRITE(reg, temp | FDI_PCDCLK);
4157 /* Enable CPU FDI TX PLL, always on for Ironlake */
4158 reg = FDI_TX_CTL(pipe);
4159 temp = I915_READ(reg);
4160 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
4161 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
4168 static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
4170 struct drm_device *dev = intel_crtc->base.dev;
4171 struct drm_i915_private *dev_priv = to_i915(dev);
4172 int pipe = intel_crtc->pipe;
4176 /* Switch from PCDclk to Rawclk */
4177 reg = FDI_RX_CTL(pipe);
4178 temp = I915_READ(reg);
4179 I915_WRITE(reg, temp & ~FDI_PCDCLK);
4181 /* Disable CPU FDI TX PLL */
4182 reg = FDI_TX_CTL(pipe);
4183 temp = I915_READ(reg);
4184 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
4189 reg = FDI_RX_CTL(pipe);
4190 temp = I915_READ(reg);
4191 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
4193 /* Wait for the clocks to turn off. */
4198 static void ironlake_fdi_disable(struct drm_crtc *crtc)
4200 struct drm_device *dev = crtc->dev;
4201 struct drm_i915_private *dev_priv = to_i915(dev);
4202 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4203 int pipe = intel_crtc->pipe;
4207 /* disable CPU FDI tx and PCH FDI rx */
4208 reg = FDI_TX_CTL(pipe);
4209 temp = I915_READ(reg);
4210 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
4213 reg = FDI_RX_CTL(pipe);
4214 temp = I915_READ(reg);
4215 temp &= ~(0x7 << 16);
4216 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
4217 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
4222 /* Ironlake workaround, disable clock pointer after downing FDI */
4223 if (HAS_PCH_IBX(dev_priv))
4224 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
4226 /* still set train pattern 1 */
4227 reg = FDI_TX_CTL(pipe);
4228 temp = I915_READ(reg);
4229 temp &= ~FDI_LINK_TRAIN_NONE;
4230 temp |= FDI_LINK_TRAIN_PATTERN_1;
4231 I915_WRITE(reg, temp);
4233 reg = FDI_RX_CTL(pipe);
4234 temp = I915_READ(reg);
4235 if (HAS_PCH_CPT(dev_priv)) {
4236 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
4237 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
4239 temp &= ~FDI_LINK_TRAIN_NONE;
4240 temp |= FDI_LINK_TRAIN_PATTERN_1;
4242 /* BPC in FDI rx is consistent with that in PIPECONF */
4243 temp &= ~(0x07 << 16);
4244 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
4245 I915_WRITE(reg, temp);
4251 bool intel_has_pending_fb_unpin(struct drm_device *dev)
4253 struct intel_crtc *crtc;
4255 /* Note that we don't need to be called with mode_config.lock here
4256 * as our list of CRTC objects is static for the lifetime of the
4257 * device and so cannot disappear as we iterate. Similarly, we can
4258 * happily treat the predicates as racy, atomic checks as userspace
4259 * cannot claim and pin a new fb without at least acquring the
4260 * struct_mutex and so serialising with us.
4262 for_each_intel_crtc(dev, crtc) {
4263 if (atomic_read(&crtc->unpin_work_count) == 0)
4266 if (crtc->flip_work)
4267 intel_wait_for_vblank(dev, crtc->pipe);
4275 static void page_flip_completed(struct intel_crtc *intel_crtc)
4277 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
4278 struct intel_flip_work *work = intel_crtc->flip_work;
4280 intel_crtc->flip_work = NULL;
4283 drm_crtc_send_vblank_event(&intel_crtc->base, work->event);
4285 drm_crtc_vblank_put(&intel_crtc->base);
4287 wake_up_all(&dev_priv->pending_flip_queue);
4288 queue_work(dev_priv->wq, &work->unpin_work);
4290 trace_i915_flip_complete(intel_crtc->plane,
4291 work->pending_flip_obj);
4294 static int intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
4296 struct drm_device *dev = crtc->dev;
4297 struct drm_i915_private *dev_priv = to_i915(dev);
4300 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
4302 ret = wait_event_interruptible_timeout(
4303 dev_priv->pending_flip_queue,
4304 !intel_crtc_has_pending_flip(crtc),
4311 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4312 struct intel_flip_work *work;
4314 spin_lock_irq(&dev->event_lock);
4315 work = intel_crtc->flip_work;
4316 if (work && !is_mmio_work(work)) {
4317 WARN_ONCE(1, "Removing stuck page flip\n");
4318 page_flip_completed(intel_crtc);
4320 spin_unlock_irq(&dev->event_lock);
4326 void lpt_disable_iclkip(struct drm_i915_private *dev_priv)
4330 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
4332 mutex_lock(&dev_priv->sb_lock);
4334 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
4335 temp |= SBI_SSCCTL_DISABLE;
4336 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
4338 mutex_unlock(&dev_priv->sb_lock);
4341 /* Program iCLKIP clock to the desired frequency */
4342 static void lpt_program_iclkip(struct drm_crtc *crtc)
4344 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
4345 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
4346 u32 divsel, phaseinc, auxdiv, phasedir = 0;
4349 lpt_disable_iclkip(dev_priv);
4351 /* The iCLK virtual clock root frequency is in MHz,
4352 * but the adjusted_mode->crtc_clock in in KHz. To get the
4353 * divisors, it is necessary to divide one by another, so we
4354 * convert the virtual clock precision to KHz here for higher
4357 for (auxdiv = 0; auxdiv < 2; auxdiv++) {
4358 u32 iclk_virtual_root_freq = 172800 * 1000;
4359 u32 iclk_pi_range = 64;
4360 u32 desired_divisor;
4362 desired_divisor = DIV_ROUND_CLOSEST(iclk_virtual_root_freq,
4364 divsel = (desired_divisor / iclk_pi_range) - 2;
4365 phaseinc = desired_divisor % iclk_pi_range;
4368 * Near 20MHz is a corner case which is
4369 * out of range for the 7-bit divisor
4375 /* This should not happen with any sane values */
4376 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
4377 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
4378 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
4379 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
4381 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
4388 mutex_lock(&dev_priv->sb_lock);
4390 /* Program SSCDIVINTPHASE6 */
4391 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
4392 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
4393 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
4394 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
4395 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
4396 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
4397 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
4398 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
4400 /* Program SSCAUXDIV */
4401 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
4402 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
4403 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
4404 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
4406 /* Enable modulator and associated divider */
4407 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
4408 temp &= ~SBI_SSCCTL_DISABLE;
4409 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
4411 mutex_unlock(&dev_priv->sb_lock);
4413 /* Wait for initialization time */
4416 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
4419 int lpt_get_iclkip(struct drm_i915_private *dev_priv)
4421 u32 divsel, phaseinc, auxdiv;
4422 u32 iclk_virtual_root_freq = 172800 * 1000;
4423 u32 iclk_pi_range = 64;
4424 u32 desired_divisor;
4427 if ((I915_READ(PIXCLK_GATE) & PIXCLK_GATE_UNGATE) == 0)
4430 mutex_lock(&dev_priv->sb_lock);
4432 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
4433 if (temp & SBI_SSCCTL_DISABLE) {
4434 mutex_unlock(&dev_priv->sb_lock);
4438 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
4439 divsel = (temp & SBI_SSCDIVINTPHASE_DIVSEL_MASK) >>
4440 SBI_SSCDIVINTPHASE_DIVSEL_SHIFT;
4441 phaseinc = (temp & SBI_SSCDIVINTPHASE_INCVAL_MASK) >>
4442 SBI_SSCDIVINTPHASE_INCVAL_SHIFT;
4444 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
4445 auxdiv = (temp & SBI_SSCAUXDIV_FINALDIV2SEL_MASK) >>
4446 SBI_SSCAUXDIV_FINALDIV2SEL_SHIFT;
4448 mutex_unlock(&dev_priv->sb_lock);
4450 desired_divisor = (divsel + 2) * iclk_pi_range + phaseinc;
4452 return DIV_ROUND_CLOSEST(iclk_virtual_root_freq,
4453 desired_divisor << auxdiv);
4456 static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
4457 enum pipe pch_transcoder)
4459 struct drm_device *dev = crtc->base.dev;
4460 struct drm_i915_private *dev_priv = to_i915(dev);
4461 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
4463 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
4464 I915_READ(HTOTAL(cpu_transcoder)));
4465 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
4466 I915_READ(HBLANK(cpu_transcoder)));
4467 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
4468 I915_READ(HSYNC(cpu_transcoder)));
4470 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
4471 I915_READ(VTOTAL(cpu_transcoder)));
4472 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
4473 I915_READ(VBLANK(cpu_transcoder)));
4474 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
4475 I915_READ(VSYNC(cpu_transcoder)));
4476 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
4477 I915_READ(VSYNCSHIFT(cpu_transcoder)));
4480 static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
4482 struct drm_i915_private *dev_priv = to_i915(dev);
4485 temp = I915_READ(SOUTH_CHICKEN1);
4486 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
4489 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4490 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4492 temp &= ~FDI_BC_BIFURCATION_SELECT;
4494 temp |= FDI_BC_BIFURCATION_SELECT;
4496 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
4497 I915_WRITE(SOUTH_CHICKEN1, temp);
4498 POSTING_READ(SOUTH_CHICKEN1);
4501 static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4503 struct drm_device *dev = intel_crtc->base.dev;
4505 switch (intel_crtc->pipe) {
4509 if (intel_crtc->config->fdi_lanes > 2)
4510 cpt_set_fdi_bc_bifurcation(dev, false);
4512 cpt_set_fdi_bc_bifurcation(dev, true);
4516 cpt_set_fdi_bc_bifurcation(dev, true);
4524 /* Return which DP Port should be selected for Transcoder DP control */
4526 intel_trans_dp_port_sel(struct drm_crtc *crtc)
4528 struct drm_device *dev = crtc->dev;
4529 struct intel_encoder *encoder;
4531 for_each_encoder_on_crtc(dev, crtc, encoder) {
4532 if (encoder->type == INTEL_OUTPUT_DP ||
4533 encoder->type == INTEL_OUTPUT_EDP)
4534 return enc_to_dig_port(&encoder->base)->port;
4541 * Enable PCH resources required for PCH ports:
4543 * - FDI training & RX/TX
4544 * - update transcoder timings
4545 * - DP transcoding bits
4548 static void ironlake_pch_enable(struct drm_crtc *crtc)
4550 struct drm_device *dev = crtc->dev;
4551 struct drm_i915_private *dev_priv = to_i915(dev);
4552 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4553 int pipe = intel_crtc->pipe;
4556 assert_pch_transcoder_disabled(dev_priv, pipe);
4558 if (IS_IVYBRIDGE(dev_priv))
4559 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4561 /* Write the TU size bits before fdi link training, so that error
4562 * detection works. */
4563 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4564 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4566 /* For PCH output, training FDI link */
4567 dev_priv->display.fdi_link_train(crtc);
4569 /* We need to program the right clock selection before writing the pixel
4570 * mutliplier into the DPLL. */
4571 if (HAS_PCH_CPT(dev_priv)) {
4574 temp = I915_READ(PCH_DPLL_SEL);
4575 temp |= TRANS_DPLL_ENABLE(pipe);
4576 sel = TRANS_DPLLB_SEL(pipe);
4577 if (intel_crtc->config->shared_dpll ==
4578 intel_get_shared_dpll_by_id(dev_priv, DPLL_ID_PCH_PLL_B))
4582 I915_WRITE(PCH_DPLL_SEL, temp);
4585 /* XXX: pch pll's can be enabled any time before we enable the PCH
4586 * transcoder, and we actually should do this to not upset any PCH
4587 * transcoder that already use the clock when we share it.
4589 * Note that enable_shared_dpll tries to do the right thing, but
4590 * get_shared_dpll unconditionally resets the pll - we need that to have
4591 * the right LVDS enable sequence. */
4592 intel_enable_shared_dpll(intel_crtc);
4594 /* set transcoder timing, panel must allow it */
4595 assert_panel_unlocked(dev_priv, pipe);
4596 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
4598 intel_fdi_normal_train(crtc);
4600 /* For PCH DP, enable TRANS_DP_CTL */
4601 if (HAS_PCH_CPT(dev_priv) &&
4602 intel_crtc_has_dp_encoder(intel_crtc->config)) {
4603 const struct drm_display_mode *adjusted_mode =
4604 &intel_crtc->config->base.adjusted_mode;
4605 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
4606 i915_reg_t reg = TRANS_DP_CTL(pipe);
4607 temp = I915_READ(reg);
4608 temp &= ~(TRANS_DP_PORT_SEL_MASK |
4609 TRANS_DP_SYNC_MASK |
4611 temp |= TRANS_DP_OUTPUT_ENABLE;
4612 temp |= bpc << 9; /* same format but at 11:9 */
4614 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
4615 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
4616 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
4617 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
4619 switch (intel_trans_dp_port_sel(crtc)) {
4621 temp |= TRANS_DP_PORT_SEL_B;
4624 temp |= TRANS_DP_PORT_SEL_C;
4627 temp |= TRANS_DP_PORT_SEL_D;
4633 I915_WRITE(reg, temp);
4636 ironlake_enable_pch_transcoder(dev_priv, pipe);
4639 static void lpt_pch_enable(struct drm_crtc *crtc)
4641 struct drm_device *dev = crtc->dev;
4642 struct drm_i915_private *dev_priv = to_i915(dev);
4643 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4644 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
4646 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
4648 lpt_program_iclkip(crtc);
4650 /* Set transcoder timing. */
4651 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
4653 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
4656 static void cpt_verify_modeset(struct drm_device *dev, int pipe)
4658 struct drm_i915_private *dev_priv = to_i915(dev);
4659 i915_reg_t dslreg = PIPEDSL(pipe);
4662 temp = I915_READ(dslreg);
4664 if (wait_for(I915_READ(dslreg) != temp, 5)) {
4665 if (wait_for(I915_READ(dslreg) != temp, 5))
4666 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
4671 skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
4672 unsigned scaler_user, int *scaler_id, unsigned int rotation,
4673 int src_w, int src_h, int dst_w, int dst_h)
4675 struct intel_crtc_scaler_state *scaler_state =
4676 &crtc_state->scaler_state;
4677 struct intel_crtc *intel_crtc =
4678 to_intel_crtc(crtc_state->base.crtc);
4681 need_scaling = intel_rotation_90_or_270(rotation) ?
4682 (src_h != dst_w || src_w != dst_h):
4683 (src_w != dst_w || src_h != dst_h);
4686 * if plane is being disabled or scaler is no more required or force detach
4687 * - free scaler binded to this plane/crtc
4688 * - in order to do this, update crtc->scaler_usage
4690 * Here scaler state in crtc_state is set free so that
4691 * scaler can be assigned to other user. Actual register
4692 * update to free the scaler is done in plane/panel-fit programming.
4693 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4695 if (force_detach || !need_scaling) {
4696 if (*scaler_id >= 0) {
4697 scaler_state->scaler_users &= ~(1 << scaler_user);
4698 scaler_state->scalers[*scaler_id].in_use = 0;
4700 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4701 "Staged freeing scaler id %d scaler_users = 0x%x\n",
4702 intel_crtc->pipe, scaler_user, *scaler_id,
4703 scaler_state->scaler_users);
4710 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4711 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4713 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4714 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
4715 DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u "
4716 "size is out of scaler range\n",
4717 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h);
4721 /* mark this plane as a scaler user in crtc_state */
4722 scaler_state->scaler_users |= (1 << scaler_user);
4723 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4724 "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n",
4725 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h,
4726 scaler_state->scaler_users);
4732 * skl_update_scaler_crtc - Stages update to scaler state for a given crtc.
4734 * @state: crtc's scaler state
4737 * 0 - scaler_usage updated successfully
4738 * error - requested scaling cannot be supported or other error condition
4740 int skl_update_scaler_crtc(struct intel_crtc_state *state)
4742 struct intel_crtc *intel_crtc = to_intel_crtc(state->base.crtc);
4743 const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode;
4745 DRM_DEBUG_KMS("Updating scaler for [CRTC:%d:%s] scaler_user index %u.%u\n",
4746 intel_crtc->base.base.id, intel_crtc->base.name,
4747 intel_crtc->pipe, SKL_CRTC_INDEX);
4749 return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX,
4750 &state->scaler_state.scaler_id, DRM_ROTATE_0,
4751 state->pipe_src_w, state->pipe_src_h,
4752 adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay);
4756 * skl_update_scaler_plane - Stages update to scaler state for a given plane.
4758 * @state: crtc's scaler state
4759 * @plane_state: atomic plane state to update
4762 * 0 - scaler_usage updated successfully
4763 * error - requested scaling cannot be supported or other error condition
4765 static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
4766 struct intel_plane_state *plane_state)
4769 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
4770 struct intel_plane *intel_plane =
4771 to_intel_plane(plane_state->base.plane);
4772 struct drm_framebuffer *fb = plane_state->base.fb;
4775 bool force_detach = !fb || !plane_state->base.visible;
4777 DRM_DEBUG_KMS("Updating scaler for [PLANE:%d:%s] scaler_user index %u.%u\n",
4778 intel_plane->base.base.id, intel_plane->base.name,
4779 intel_crtc->pipe, drm_plane_index(&intel_plane->base));
4781 ret = skl_update_scaler(crtc_state, force_detach,
4782 drm_plane_index(&intel_plane->base),
4783 &plane_state->scaler_id,
4784 plane_state->base.rotation,
4785 drm_rect_width(&plane_state->base.src) >> 16,
4786 drm_rect_height(&plane_state->base.src) >> 16,
4787 drm_rect_width(&plane_state->base.dst),
4788 drm_rect_height(&plane_state->base.dst));
4790 if (ret || plane_state->scaler_id < 0)
4793 /* check colorkey */
4794 if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) {
4795 DRM_DEBUG_KMS("[PLANE:%d:%s] scaling with color key not allowed",
4796 intel_plane->base.base.id,
4797 intel_plane->base.name);
4801 /* Check src format */
4802 switch (fb->pixel_format) {
4803 case DRM_FORMAT_RGB565:
4804 case DRM_FORMAT_XBGR8888:
4805 case DRM_FORMAT_XRGB8888:
4806 case DRM_FORMAT_ABGR8888:
4807 case DRM_FORMAT_ARGB8888:
4808 case DRM_FORMAT_XRGB2101010:
4809 case DRM_FORMAT_XBGR2101010:
4810 case DRM_FORMAT_YUYV:
4811 case DRM_FORMAT_YVYU:
4812 case DRM_FORMAT_UYVY:
4813 case DRM_FORMAT_VYUY:
4816 DRM_DEBUG_KMS("[PLANE:%d:%s] FB:%d unsupported scaling format 0x%x\n",
4817 intel_plane->base.base.id, intel_plane->base.name,
4818 fb->base.id, fb->pixel_format);
4825 static void skylake_scaler_disable(struct intel_crtc *crtc)
4829 for (i = 0; i < crtc->num_scalers; i++)
4830 skl_detach_scaler(crtc, i);
4833 static void skylake_pfit_enable(struct intel_crtc *crtc)
4835 struct drm_device *dev = crtc->base.dev;
4836 struct drm_i915_private *dev_priv = to_i915(dev);
4837 int pipe = crtc->pipe;
4838 struct intel_crtc_scaler_state *scaler_state =
4839 &crtc->config->scaler_state;
4841 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4843 if (crtc->config->pch_pfit.enabled) {
4846 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4847 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4851 id = scaler_state->scaler_id;
4852 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4853 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4854 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4855 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4857 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
4861 static void ironlake_pfit_enable(struct intel_crtc *crtc)
4863 struct drm_device *dev = crtc->base.dev;
4864 struct drm_i915_private *dev_priv = to_i915(dev);
4865 int pipe = crtc->pipe;
4867 if (crtc->config->pch_pfit.enabled) {
4868 /* Force use of hard-coded filter coefficients
4869 * as some pre-programmed values are broken,
4872 if (IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv))
4873 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4874 PF_PIPE_SEL_IVB(pipe));
4876 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
4877 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4878 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
4882 void hsw_enable_ips(struct intel_crtc *crtc)
4884 struct drm_device *dev = crtc->base.dev;
4885 struct drm_i915_private *dev_priv = to_i915(dev);
4887 if (!crtc->config->ips_enabled)
4891 * We can only enable IPS after we enable a plane and wait for a vblank
4892 * This function is called from post_plane_update, which is run after
4896 assert_plane_enabled(dev_priv, crtc->plane);
4897 if (IS_BROADWELL(dev_priv)) {
4898 mutex_lock(&dev_priv->rps.hw_lock);
4899 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4900 mutex_unlock(&dev_priv->rps.hw_lock);
4901 /* Quoting Art Runyan: "its not safe to expect any particular
4902 * value in IPS_CTL bit 31 after enabling IPS through the
4903 * mailbox." Moreover, the mailbox may return a bogus state,
4904 * so we need to just enable it and continue on.
4907 I915_WRITE(IPS_CTL, IPS_ENABLE);
4908 /* The bit only becomes 1 in the next vblank, so this wait here
4909 * is essentially intel_wait_for_vblank. If we don't have this
4910 * and don't wait for vblanks until the end of crtc_enable, then
4911 * the HW state readout code will complain that the expected
4912 * IPS_CTL value is not the one we read. */
4913 if (intel_wait_for_register(dev_priv,
4914 IPS_CTL, IPS_ENABLE, IPS_ENABLE,
4916 DRM_ERROR("Timed out waiting for IPS enable\n");
4920 void hsw_disable_ips(struct intel_crtc *crtc)
4922 struct drm_device *dev = crtc->base.dev;
4923 struct drm_i915_private *dev_priv = to_i915(dev);
4925 if (!crtc->config->ips_enabled)
4928 assert_plane_enabled(dev_priv, crtc->plane);
4929 if (IS_BROADWELL(dev_priv)) {
4930 mutex_lock(&dev_priv->rps.hw_lock);
4931 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4932 mutex_unlock(&dev_priv->rps.hw_lock);
4933 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4934 if (intel_wait_for_register(dev_priv,
4935 IPS_CTL, IPS_ENABLE, 0,
4937 DRM_ERROR("Timed out waiting for IPS disable\n");
4939 I915_WRITE(IPS_CTL, 0);
4940 POSTING_READ(IPS_CTL);
4943 /* We need to wait for a vblank before we can disable the plane. */
4944 intel_wait_for_vblank(dev, crtc->pipe);
4947 static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
4949 if (intel_crtc->overlay) {
4950 struct drm_device *dev = intel_crtc->base.dev;
4951 struct drm_i915_private *dev_priv = to_i915(dev);
4953 mutex_lock(&dev->struct_mutex);
4954 dev_priv->mm.interruptible = false;
4955 (void) intel_overlay_switch_off(intel_crtc->overlay);
4956 dev_priv->mm.interruptible = true;
4957 mutex_unlock(&dev->struct_mutex);
4960 /* Let userspace switch the overlay on again. In most cases userspace
4961 * has to recompute where to put it anyway.
4966 * intel_post_enable_primary - Perform operations after enabling primary plane
4967 * @crtc: the CRTC whose primary plane was just enabled
4969 * Performs potentially sleeping operations that must be done after the primary
4970 * plane is enabled, such as updating FBC and IPS. Note that this may be
4971 * called due to an explicit primary plane update, or due to an implicit
4972 * re-enable that is caused when a sprite plane is updated to no longer
4973 * completely hide the primary plane.
4976 intel_post_enable_primary(struct drm_crtc *crtc)
4978 struct drm_device *dev = crtc->dev;
4979 struct drm_i915_private *dev_priv = to_i915(dev);
4980 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4981 int pipe = intel_crtc->pipe;
4984 * FIXME IPS should be fine as long as one plane is
4985 * enabled, but in practice it seems to have problems
4986 * when going from primary only to sprite only and vice
4989 hsw_enable_ips(intel_crtc);
4992 * Gen2 reports pipe underruns whenever all planes are disabled.
4993 * So don't enable underrun reporting before at least some planes
4995 * FIXME: Need to fix the logic to work when we turn off all planes
4996 * but leave the pipe running.
4998 if (IS_GEN2(dev_priv))
4999 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5001 /* Underruns don't always raise interrupts, so check manually. */
5002 intel_check_cpu_fifo_underruns(dev_priv);
5003 intel_check_pch_fifo_underruns(dev_priv);
5006 /* FIXME move all this to pre_plane_update() with proper state tracking */
5008 intel_pre_disable_primary(struct drm_crtc *crtc)
5010 struct drm_device *dev = crtc->dev;
5011 struct drm_i915_private *dev_priv = to_i915(dev);
5012 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5013 int pipe = intel_crtc->pipe;
5016 * Gen2 reports pipe underruns whenever all planes are disabled.
5017 * So diasble underrun reporting before all the planes get disabled.
5018 * FIXME: Need to fix the logic to work when we turn off all planes
5019 * but leave the pipe running.
5021 if (IS_GEN2(dev_priv))
5022 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5025 * FIXME IPS should be fine as long as one plane is
5026 * enabled, but in practice it seems to have problems
5027 * when going from primary only to sprite only and vice
5030 hsw_disable_ips(intel_crtc);
5033 /* FIXME get rid of this and use pre_plane_update */
5035 intel_pre_disable_primary_noatomic(struct drm_crtc *crtc)
5037 struct drm_device *dev = crtc->dev;
5038 struct drm_i915_private *dev_priv = to_i915(dev);
5039 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5040 int pipe = intel_crtc->pipe;
5042 intel_pre_disable_primary(crtc);
5045 * Vblank time updates from the shadow to live plane control register
5046 * are blocked if the memory self-refresh mode is active at that
5047 * moment. So to make sure the plane gets truly disabled, disable
5048 * first the self-refresh mode. The self-refresh enable bit in turn
5049 * will be checked/applied by the HW only at the next frame start
5050 * event which is after the vblank start event, so we need to have a
5051 * wait-for-vblank between disabling the plane and the pipe.
5053 if (HAS_GMCH_DISPLAY(dev_priv)) {
5054 intel_set_memory_cxsr(dev_priv, false);
5055 dev_priv->wm.vlv.cxsr = false;
5056 intel_wait_for_vblank(dev, pipe);
5060 static void intel_post_plane_update(struct intel_crtc_state *old_crtc_state)
5062 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
5063 struct drm_atomic_state *old_state = old_crtc_state->base.state;
5064 struct intel_crtc_state *pipe_config =
5065 to_intel_crtc_state(crtc->base.state);
5066 struct drm_plane *primary = crtc->base.primary;
5067 struct drm_plane_state *old_pri_state =
5068 drm_atomic_get_existing_plane_state(old_state, primary);
5070 intel_frontbuffer_flip(to_i915(crtc->base.dev), pipe_config->fb_bits);
5072 crtc->wm.cxsr_allowed = true;
5074 if (pipe_config->update_wm_post && pipe_config->base.active)
5075 intel_update_watermarks(&crtc->base);
5077 if (old_pri_state) {
5078 struct intel_plane_state *primary_state =
5079 to_intel_plane_state(primary->state);
5080 struct intel_plane_state *old_primary_state =
5081 to_intel_plane_state(old_pri_state);
5083 intel_fbc_post_update(crtc);
5085 if (primary_state->base.visible &&
5086 (needs_modeset(&pipe_config->base) ||
5087 !old_primary_state->base.visible))
5088 intel_post_enable_primary(&crtc->base);
5092 static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state)
5094 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
5095 struct drm_device *dev = crtc->base.dev;
5096 struct drm_i915_private *dev_priv = to_i915(dev);
5097 struct intel_crtc_state *pipe_config =
5098 to_intel_crtc_state(crtc->base.state);
5099 struct drm_atomic_state *old_state = old_crtc_state->base.state;
5100 struct drm_plane *primary = crtc->base.primary;
5101 struct drm_plane_state *old_pri_state =
5102 drm_atomic_get_existing_plane_state(old_state, primary);
5103 bool modeset = needs_modeset(&pipe_config->base);
5105 if (old_pri_state) {
5106 struct intel_plane_state *primary_state =
5107 to_intel_plane_state(primary->state);
5108 struct intel_plane_state *old_primary_state =
5109 to_intel_plane_state(old_pri_state);
5111 intel_fbc_pre_update(crtc, pipe_config, primary_state);
5113 if (old_primary_state->base.visible &&
5114 (modeset || !primary_state->base.visible))
5115 intel_pre_disable_primary(&crtc->base);
5118 if (pipe_config->disable_cxsr && HAS_GMCH_DISPLAY(dev_priv)) {
5119 crtc->wm.cxsr_allowed = false;
5122 * Vblank time updates from the shadow to live plane control register
5123 * are blocked if the memory self-refresh mode is active at that
5124 * moment. So to make sure the plane gets truly disabled, disable
5125 * first the self-refresh mode. The self-refresh enable bit in turn
5126 * will be checked/applied by the HW only at the next frame start
5127 * event which is after the vblank start event, so we need to have a
5128 * wait-for-vblank between disabling the plane and the pipe.
5130 if (old_crtc_state->base.active) {
5131 intel_set_memory_cxsr(dev_priv, false);
5132 dev_priv->wm.vlv.cxsr = false;
5133 intel_wait_for_vblank(dev, crtc->pipe);
5138 * IVB workaround: must disable low power watermarks for at least
5139 * one frame before enabling scaling. LP watermarks can be re-enabled
5140 * when scaling is disabled.
5142 * WaCxSRDisabledForSpriteScaling:ivb
5144 if (pipe_config->disable_lp_wm) {
5145 ilk_disable_lp_wm(dev);
5146 intel_wait_for_vblank(dev, crtc->pipe);
5150 * If we're doing a modeset, we're done. No need to do any pre-vblank
5151 * watermark programming here.
5153 if (needs_modeset(&pipe_config->base))
5157 * For platforms that support atomic watermarks, program the
5158 * 'intermediate' watermarks immediately. On pre-gen9 platforms, these
5159 * will be the intermediate values that are safe for both pre- and
5160 * post- vblank; when vblank happens, the 'active' values will be set
5161 * to the final 'target' values and we'll do this again to get the
5162 * optimal watermarks. For gen9+ platforms, the values we program here
5163 * will be the final target values which will get automatically latched
5164 * at vblank time; no further programming will be necessary.
5166 * If a platform hasn't been transitioned to atomic watermarks yet,
5167 * we'll continue to update watermarks the old way, if flags tell
5170 if (dev_priv->display.initial_watermarks != NULL)
5171 dev_priv->display.initial_watermarks(pipe_config);
5172 else if (pipe_config->update_wm_pre)
5173 intel_update_watermarks(&crtc->base);
5176 static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask)
5178 struct drm_device *dev = crtc->dev;
5179 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5180 struct drm_plane *p;
5181 int pipe = intel_crtc->pipe;
5183 intel_crtc_dpms_overlay_disable(intel_crtc);
5185 drm_for_each_plane_mask(p, dev, plane_mask)
5186 to_intel_plane(p)->disable_plane(p, crtc);
5189 * FIXME: Once we grow proper nuclear flip support out of this we need
5190 * to compute the mask of flip planes precisely. For the time being
5191 * consider this a flip to a NULL plane.
5193 intel_frontbuffer_flip(to_i915(dev), INTEL_FRONTBUFFER_ALL_MASK(pipe));
5196 static void intel_encoders_pre_pll_enable(struct drm_crtc *crtc,
5197 struct intel_crtc_state *crtc_state,
5198 struct drm_atomic_state *old_state)
5200 struct drm_connector_state *old_conn_state;
5201 struct drm_connector *conn;
5204 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5205 struct drm_connector_state *conn_state = conn->state;
5206 struct intel_encoder *encoder =
5207 to_intel_encoder(conn_state->best_encoder);
5209 if (conn_state->crtc != crtc)
5212 if (encoder->pre_pll_enable)
5213 encoder->pre_pll_enable(encoder, crtc_state, conn_state);
5217 static void intel_encoders_pre_enable(struct drm_crtc *crtc,
5218 struct intel_crtc_state *crtc_state,
5219 struct drm_atomic_state *old_state)
5221 struct drm_connector_state *old_conn_state;
5222 struct drm_connector *conn;
5225 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5226 struct drm_connector_state *conn_state = conn->state;
5227 struct intel_encoder *encoder =
5228 to_intel_encoder(conn_state->best_encoder);
5230 if (conn_state->crtc != crtc)
5233 if (encoder->pre_enable)
5234 encoder->pre_enable(encoder, crtc_state, conn_state);
5238 static void intel_encoders_enable(struct drm_crtc *crtc,
5239 struct intel_crtc_state *crtc_state,
5240 struct drm_atomic_state *old_state)
5242 struct drm_connector_state *old_conn_state;
5243 struct drm_connector *conn;
5246 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5247 struct drm_connector_state *conn_state = conn->state;
5248 struct intel_encoder *encoder =
5249 to_intel_encoder(conn_state->best_encoder);
5251 if (conn_state->crtc != crtc)
5254 encoder->enable(encoder, crtc_state, conn_state);
5255 intel_opregion_notify_encoder(encoder, true);
5259 static void intel_encoders_disable(struct drm_crtc *crtc,
5260 struct intel_crtc_state *old_crtc_state,
5261 struct drm_atomic_state *old_state)
5263 struct drm_connector_state *old_conn_state;
5264 struct drm_connector *conn;
5267 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5268 struct intel_encoder *encoder =
5269 to_intel_encoder(old_conn_state->best_encoder);
5271 if (old_conn_state->crtc != crtc)
5274 intel_opregion_notify_encoder(encoder, false);
5275 encoder->disable(encoder, old_crtc_state, old_conn_state);
5279 static void intel_encoders_post_disable(struct drm_crtc *crtc,
5280 struct intel_crtc_state *old_crtc_state,
5281 struct drm_atomic_state *old_state)
5283 struct drm_connector_state *old_conn_state;
5284 struct drm_connector *conn;
5287 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5288 struct intel_encoder *encoder =
5289 to_intel_encoder(old_conn_state->best_encoder);
5291 if (old_conn_state->crtc != crtc)
5294 if (encoder->post_disable)
5295 encoder->post_disable(encoder, old_crtc_state, old_conn_state);
5299 static void intel_encoders_post_pll_disable(struct drm_crtc *crtc,
5300 struct intel_crtc_state *old_crtc_state,
5301 struct drm_atomic_state *old_state)
5303 struct drm_connector_state *old_conn_state;
5304 struct drm_connector *conn;
5307 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5308 struct intel_encoder *encoder =
5309 to_intel_encoder(old_conn_state->best_encoder);
5311 if (old_conn_state->crtc != crtc)
5314 if (encoder->post_pll_disable)
5315 encoder->post_pll_disable(encoder, old_crtc_state, old_conn_state);
5319 static void ironlake_crtc_enable(struct intel_crtc_state *pipe_config,
5320 struct drm_atomic_state *old_state)
5322 struct drm_crtc *crtc = pipe_config->base.crtc;
5323 struct drm_device *dev = crtc->dev;
5324 struct drm_i915_private *dev_priv = to_i915(dev);
5325 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5326 int pipe = intel_crtc->pipe;
5328 if (WARN_ON(intel_crtc->active))
5332 * Sometimes spurious CPU pipe underruns happen during FDI
5333 * training, at least with VGA+HDMI cloning. Suppress them.
5335 * On ILK we get an occasional spurious CPU pipe underruns
5336 * between eDP port A enable and vdd enable. Also PCH port
5337 * enable seems to result in the occasional CPU pipe underrun.
5339 * Spurious PCH underruns also occur during PCH enabling.
5341 if (intel_crtc->config->has_pch_encoder || IS_GEN5(dev_priv))
5342 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5343 if (intel_crtc->config->has_pch_encoder)
5344 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
5346 if (intel_crtc->config->has_pch_encoder)
5347 intel_prepare_shared_dpll(intel_crtc);
5349 if (intel_crtc_has_dp_encoder(intel_crtc->config))
5350 intel_dp_set_m_n(intel_crtc, M1_N1);
5352 intel_set_pipe_timings(intel_crtc);
5353 intel_set_pipe_src_size(intel_crtc);
5355 if (intel_crtc->config->has_pch_encoder) {
5356 intel_cpu_transcoder_set_m_n(intel_crtc,
5357 &intel_crtc->config->fdi_m_n, NULL);
5360 ironlake_set_pipeconf(crtc);
5362 intel_crtc->active = true;
5364 intel_encoders_pre_enable(crtc, pipe_config, old_state);
5366 if (intel_crtc->config->has_pch_encoder) {
5367 /* Note: FDI PLL enabling _must_ be done before we enable the
5368 * cpu pipes, hence this is separate from all the other fdi/pch
5370 ironlake_fdi_pll_enable(intel_crtc);
5372 assert_fdi_tx_disabled(dev_priv, pipe);
5373 assert_fdi_rx_disabled(dev_priv, pipe);
5376 ironlake_pfit_enable(intel_crtc);
5379 * On ILK+ LUT must be loaded before the pipe is running but with
5382 intel_color_load_luts(&pipe_config->base);
5384 if (dev_priv->display.initial_watermarks != NULL)
5385 dev_priv->display.initial_watermarks(intel_crtc->config);
5386 intel_enable_pipe(intel_crtc);
5388 if (intel_crtc->config->has_pch_encoder)
5389 ironlake_pch_enable(crtc);
5391 assert_vblank_disabled(crtc);
5392 drm_crtc_vblank_on(crtc);
5394 intel_encoders_enable(crtc, pipe_config, old_state);
5396 if (HAS_PCH_CPT(dev_priv))
5397 cpt_verify_modeset(dev, intel_crtc->pipe);
5399 /* Must wait for vblank to avoid spurious PCH FIFO underruns */
5400 if (intel_crtc->config->has_pch_encoder)
5401 intel_wait_for_vblank(dev, pipe);
5402 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5403 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
5406 /* IPS only exists on ULT machines and is tied to pipe A. */
5407 static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
5409 return HAS_IPS(to_i915(crtc->base.dev)) && crtc->pipe == PIPE_A;
5412 static void haswell_crtc_enable(struct intel_crtc_state *pipe_config,
5413 struct drm_atomic_state *old_state)
5415 struct drm_crtc *crtc = pipe_config->base.crtc;
5416 struct drm_device *dev = crtc->dev;
5417 struct drm_i915_private *dev_priv = to_i915(dev);
5418 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5419 int pipe = intel_crtc->pipe, hsw_workaround_pipe;
5420 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
5422 if (WARN_ON(intel_crtc->active))
5425 if (intel_crtc->config->has_pch_encoder)
5426 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5429 intel_encoders_pre_pll_enable(crtc, pipe_config, old_state);
5431 if (intel_crtc->config->shared_dpll)
5432 intel_enable_shared_dpll(intel_crtc);
5434 if (intel_crtc_has_dp_encoder(intel_crtc->config))
5435 intel_dp_set_m_n(intel_crtc, M1_N1);
5437 if (!transcoder_is_dsi(cpu_transcoder))
5438 intel_set_pipe_timings(intel_crtc);
5440 intel_set_pipe_src_size(intel_crtc);
5442 if (cpu_transcoder != TRANSCODER_EDP &&
5443 !transcoder_is_dsi(cpu_transcoder)) {
5444 I915_WRITE(PIPE_MULT(cpu_transcoder),
5445 intel_crtc->config->pixel_multiplier - 1);
5448 if (intel_crtc->config->has_pch_encoder) {
5449 intel_cpu_transcoder_set_m_n(intel_crtc,
5450 &intel_crtc->config->fdi_m_n, NULL);
5453 if (!transcoder_is_dsi(cpu_transcoder))
5454 haswell_set_pipeconf(crtc);
5456 haswell_set_pipemisc(crtc);
5458 intel_color_set_csc(&pipe_config->base);
5460 intel_crtc->active = true;
5462 if (intel_crtc->config->has_pch_encoder)
5463 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5465 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5467 intel_encoders_pre_enable(crtc, pipe_config, old_state);
5469 if (intel_crtc->config->has_pch_encoder)
5470 dev_priv->display.fdi_link_train(crtc);
5472 if (!transcoder_is_dsi(cpu_transcoder))
5473 intel_ddi_enable_pipe_clock(intel_crtc);
5475 if (INTEL_INFO(dev)->gen >= 9)
5476 skylake_pfit_enable(intel_crtc);
5478 ironlake_pfit_enable(intel_crtc);
5481 * On ILK+ LUT must be loaded before the pipe is running but with
5484 intel_color_load_luts(&pipe_config->base);
5486 intel_ddi_set_pipe_settings(crtc);
5487 if (!transcoder_is_dsi(cpu_transcoder))
5488 intel_ddi_enable_transcoder_func(crtc);
5490 if (dev_priv->display.initial_watermarks != NULL)
5491 dev_priv->display.initial_watermarks(pipe_config);
5493 intel_update_watermarks(crtc);
5495 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
5496 if (!transcoder_is_dsi(cpu_transcoder))
5497 intel_enable_pipe(intel_crtc);
5499 if (intel_crtc->config->has_pch_encoder)
5500 lpt_pch_enable(crtc);
5502 if (intel_crtc->config->dp_encoder_is_mst)
5503 intel_ddi_set_vc_payload_alloc(crtc, true);
5505 assert_vblank_disabled(crtc);
5506 drm_crtc_vblank_on(crtc);
5508 intel_encoders_enable(crtc, pipe_config, old_state);
5510 if (intel_crtc->config->has_pch_encoder) {
5511 intel_wait_for_vblank(dev, pipe);
5512 intel_wait_for_vblank(dev, pipe);
5513 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5514 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5518 /* If we change the relative order between pipe/planes enabling, we need
5519 * to change the workaround. */
5520 hsw_workaround_pipe = pipe_config->hsw_workaround_pipe;
5521 if (IS_HASWELL(dev_priv) && hsw_workaround_pipe != INVALID_PIPE) {
5522 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5523 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5527 static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force)
5529 struct drm_device *dev = crtc->base.dev;
5530 struct drm_i915_private *dev_priv = to_i915(dev);
5531 int pipe = crtc->pipe;
5533 /* To avoid upsetting the power well on haswell only disable the pfit if
5534 * it's in use. The hw state code will make sure we get this right. */
5535 if (force || crtc->config->pch_pfit.enabled) {
5536 I915_WRITE(PF_CTL(pipe), 0);
5537 I915_WRITE(PF_WIN_POS(pipe), 0);
5538 I915_WRITE(PF_WIN_SZ(pipe), 0);
5542 static void ironlake_crtc_disable(struct intel_crtc_state *old_crtc_state,
5543 struct drm_atomic_state *old_state)
5545 struct drm_crtc *crtc = old_crtc_state->base.crtc;
5546 struct drm_device *dev = crtc->dev;
5547 struct drm_i915_private *dev_priv = to_i915(dev);
5548 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5549 int pipe = intel_crtc->pipe;
5552 * Sometimes spurious CPU pipe underruns happen when the
5553 * pipe is already disabled, but FDI RX/TX is still enabled.
5554 * Happens at least with VGA+HDMI cloning. Suppress them.
5556 if (intel_crtc->config->has_pch_encoder) {
5557 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5558 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
5561 intel_encoders_disable(crtc, old_crtc_state, old_state);
5563 drm_crtc_vblank_off(crtc);
5564 assert_vblank_disabled(crtc);
5566 intel_disable_pipe(intel_crtc);
5568 ironlake_pfit_disable(intel_crtc, false);
5570 if (intel_crtc->config->has_pch_encoder)
5571 ironlake_fdi_disable(crtc);
5573 intel_encoders_post_disable(crtc, old_crtc_state, old_state);
5575 if (intel_crtc->config->has_pch_encoder) {
5576 ironlake_disable_pch_transcoder(dev_priv, pipe);
5578 if (HAS_PCH_CPT(dev_priv)) {
5582 /* disable TRANS_DP_CTL */
5583 reg = TRANS_DP_CTL(pipe);
5584 temp = I915_READ(reg);
5585 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
5586 TRANS_DP_PORT_SEL_MASK);
5587 temp |= TRANS_DP_PORT_SEL_NONE;
5588 I915_WRITE(reg, temp);
5590 /* disable DPLL_SEL */
5591 temp = I915_READ(PCH_DPLL_SEL);
5592 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
5593 I915_WRITE(PCH_DPLL_SEL, temp);
5596 ironlake_fdi_pll_disable(intel_crtc);
5599 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5600 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
5603 static void haswell_crtc_disable(struct intel_crtc_state *old_crtc_state,
5604 struct drm_atomic_state *old_state)
5606 struct drm_crtc *crtc = old_crtc_state->base.crtc;
5607 struct drm_device *dev = crtc->dev;
5608 struct drm_i915_private *dev_priv = to_i915(dev);
5609 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5610 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
5612 if (intel_crtc->config->has_pch_encoder)
5613 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5616 intel_encoders_disable(crtc, old_crtc_state, old_state);
5618 drm_crtc_vblank_off(crtc);
5619 assert_vblank_disabled(crtc);
5621 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
5622 if (!transcoder_is_dsi(cpu_transcoder))
5623 intel_disable_pipe(intel_crtc);
5625 if (intel_crtc->config->dp_encoder_is_mst)
5626 intel_ddi_set_vc_payload_alloc(crtc, false);
5628 if (!transcoder_is_dsi(cpu_transcoder))
5629 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
5631 if (INTEL_INFO(dev)->gen >= 9)
5632 skylake_scaler_disable(intel_crtc);
5634 ironlake_pfit_disable(intel_crtc, false);
5636 if (!transcoder_is_dsi(cpu_transcoder))
5637 intel_ddi_disable_pipe_clock(intel_crtc);
5639 intel_encoders_post_disable(crtc, old_crtc_state, old_state);
5641 if (old_crtc_state->has_pch_encoder)
5642 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5646 static void i9xx_pfit_enable(struct intel_crtc *crtc)
5648 struct drm_device *dev = crtc->base.dev;
5649 struct drm_i915_private *dev_priv = to_i915(dev);
5650 struct intel_crtc_state *pipe_config = crtc->config;
5652 if (!pipe_config->gmch_pfit.control)
5656 * The panel fitter should only be adjusted whilst the pipe is disabled,
5657 * according to register description and PRM.
5659 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5660 assert_pipe_disabled(dev_priv, crtc->pipe);
5662 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5663 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
5665 /* Border color in case we don't scale up to the full screen. Black by
5666 * default, change to something else for debugging. */
5667 I915_WRITE(BCLRPAT(crtc->pipe), 0);
5670 static enum intel_display_power_domain port_to_power_domain(enum port port)
5674 return POWER_DOMAIN_PORT_DDI_A_LANES;
5676 return POWER_DOMAIN_PORT_DDI_B_LANES;
5678 return POWER_DOMAIN_PORT_DDI_C_LANES;
5680 return POWER_DOMAIN_PORT_DDI_D_LANES;
5682 return POWER_DOMAIN_PORT_DDI_E_LANES;
5685 return POWER_DOMAIN_PORT_OTHER;
5689 static enum intel_display_power_domain port_to_aux_power_domain(enum port port)
5693 return POWER_DOMAIN_AUX_A;
5695 return POWER_DOMAIN_AUX_B;
5697 return POWER_DOMAIN_AUX_C;
5699 return POWER_DOMAIN_AUX_D;
5701 /* FIXME: Check VBT for actual wiring of PORT E */
5702 return POWER_DOMAIN_AUX_D;
5705 return POWER_DOMAIN_AUX_A;
5709 enum intel_display_power_domain
5710 intel_display_port_power_domain(struct intel_encoder *intel_encoder)
5712 struct drm_i915_private *dev_priv = to_i915(intel_encoder->base.dev);
5713 struct intel_digital_port *intel_dig_port;
5715 switch (intel_encoder->type) {
5716 case INTEL_OUTPUT_UNKNOWN:
5717 /* Only DDI platforms should ever use this output type */
5718 WARN_ON_ONCE(!HAS_DDI(dev_priv));
5719 case INTEL_OUTPUT_DP:
5720 case INTEL_OUTPUT_HDMI:
5721 case INTEL_OUTPUT_EDP:
5722 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
5723 return port_to_power_domain(intel_dig_port->port);
5724 case INTEL_OUTPUT_DP_MST:
5725 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5726 return port_to_power_domain(intel_dig_port->port);
5727 case INTEL_OUTPUT_ANALOG:
5728 return POWER_DOMAIN_PORT_CRT;
5729 case INTEL_OUTPUT_DSI:
5730 return POWER_DOMAIN_PORT_DSI;
5732 return POWER_DOMAIN_PORT_OTHER;
5736 enum intel_display_power_domain
5737 intel_display_port_aux_power_domain(struct intel_encoder *intel_encoder)
5739 struct drm_i915_private *dev_priv = to_i915(intel_encoder->base.dev);
5740 struct intel_digital_port *intel_dig_port;
5742 switch (intel_encoder->type) {
5743 case INTEL_OUTPUT_UNKNOWN:
5744 case INTEL_OUTPUT_HDMI:
5746 * Only DDI platforms should ever use these output types.
5747 * We can get here after the HDMI detect code has already set
5748 * the type of the shared encoder. Since we can't be sure
5749 * what's the status of the given connectors, play safe and
5750 * run the DP detection too.
5752 WARN_ON_ONCE(!HAS_DDI(dev_priv));
5753 case INTEL_OUTPUT_DP:
5754 case INTEL_OUTPUT_EDP:
5755 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
5756 return port_to_aux_power_domain(intel_dig_port->port);
5757 case INTEL_OUTPUT_DP_MST:
5758 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5759 return port_to_aux_power_domain(intel_dig_port->port);
5761 MISSING_CASE(intel_encoder->type);
5762 return POWER_DOMAIN_AUX_A;
5766 static unsigned long get_crtc_power_domains(struct drm_crtc *crtc,
5767 struct intel_crtc_state *crtc_state)
5769 struct drm_device *dev = crtc->dev;
5770 struct drm_encoder *encoder;
5771 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5772 enum pipe pipe = intel_crtc->pipe;
5774 enum transcoder transcoder = crtc_state->cpu_transcoder;
5776 if (!crtc_state->base.active)
5779 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5780 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
5781 if (crtc_state->pch_pfit.enabled ||
5782 crtc_state->pch_pfit.force_thru)
5783 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5785 drm_for_each_encoder_mask(encoder, dev, crtc_state->base.encoder_mask) {
5786 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
5788 mask |= BIT(intel_display_port_power_domain(intel_encoder));
5791 if (crtc_state->shared_dpll)
5792 mask |= BIT(POWER_DOMAIN_PLLS);
5797 static unsigned long
5798 modeset_get_crtc_power_domains(struct drm_crtc *crtc,
5799 struct intel_crtc_state *crtc_state)
5801 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
5802 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5803 enum intel_display_power_domain domain;
5804 unsigned long domains, new_domains, old_domains;
5806 old_domains = intel_crtc->enabled_power_domains;
5807 intel_crtc->enabled_power_domains = new_domains =
5808 get_crtc_power_domains(crtc, crtc_state);
5810 domains = new_domains & ~old_domains;
5812 for_each_power_domain(domain, domains)
5813 intel_display_power_get(dev_priv, domain);
5815 return old_domains & ~new_domains;
5818 static void modeset_put_power_domains(struct drm_i915_private *dev_priv,
5819 unsigned long domains)
5821 enum intel_display_power_domain domain;
5823 for_each_power_domain(domain, domains)
5824 intel_display_power_put(dev_priv, domain);
5827 static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv)
5829 int max_cdclk_freq = dev_priv->max_cdclk_freq;
5831 if (INTEL_INFO(dev_priv)->gen >= 9 ||
5832 IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
5833 return max_cdclk_freq;
5834 else if (IS_CHERRYVIEW(dev_priv))
5835 return max_cdclk_freq*95/100;
5836 else if (INTEL_INFO(dev_priv)->gen < 4)
5837 return 2*max_cdclk_freq*90/100;
5839 return max_cdclk_freq*90/100;
5842 static int skl_calc_cdclk(int max_pixclk, int vco);
5844 static void intel_update_max_cdclk(struct drm_device *dev)
5846 struct drm_i915_private *dev_priv = to_i915(dev);
5848 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
5849 u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK;
5852 vco = dev_priv->skl_preferred_vco_freq;
5853 WARN_ON(vco != 8100000 && vco != 8640000);
5856 * Use the lower (vco 8640) cdclk values as a
5857 * first guess. skl_calc_cdclk() will correct it
5858 * if the preferred vco is 8100 instead.
5860 if (limit == SKL_DFSM_CDCLK_LIMIT_675)
5862 else if (limit == SKL_DFSM_CDCLK_LIMIT_540)
5864 else if (limit == SKL_DFSM_CDCLK_LIMIT_450)
5869 dev_priv->max_cdclk_freq = skl_calc_cdclk(max_cdclk, vco);
5870 } else if (IS_BROXTON(dev_priv)) {
5871 dev_priv->max_cdclk_freq = 624000;
5872 } else if (IS_BROADWELL(dev_priv)) {
5874 * FIXME with extra cooling we can allow
5875 * 540 MHz for ULX and 675 Mhz for ULT.
5876 * How can we know if extra cooling is
5877 * available? PCI ID, VTB, something else?
5879 if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
5880 dev_priv->max_cdclk_freq = 450000;
5881 else if (IS_BDW_ULX(dev_priv))
5882 dev_priv->max_cdclk_freq = 450000;
5883 else if (IS_BDW_ULT(dev_priv))
5884 dev_priv->max_cdclk_freq = 540000;
5886 dev_priv->max_cdclk_freq = 675000;
5887 } else if (IS_CHERRYVIEW(dev_priv)) {
5888 dev_priv->max_cdclk_freq = 320000;
5889 } else if (IS_VALLEYVIEW(dev_priv)) {
5890 dev_priv->max_cdclk_freq = 400000;
5892 /* otherwise assume cdclk is fixed */
5893 dev_priv->max_cdclk_freq = dev_priv->cdclk_freq;
5896 dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv);
5898 DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n",
5899 dev_priv->max_cdclk_freq);
5901 DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n",
5902 dev_priv->max_dotclk_freq);
5905 static void intel_update_cdclk(struct drm_device *dev)
5907 struct drm_i915_private *dev_priv = to_i915(dev);
5909 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
5911 if (INTEL_GEN(dev_priv) >= 9)
5912 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz, VCO: %d kHz, ref: %d kHz\n",
5913 dev_priv->cdclk_freq, dev_priv->cdclk_pll.vco,
5914 dev_priv->cdclk_pll.ref);
5916 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
5917 dev_priv->cdclk_freq);
5920 * 9:0 CMBUS [sic] CDCLK frequency (cdfreq):
5921 * Programmng [sic] note: bit[9:2] should be programmed to the number
5922 * of cdclk that generates 4MHz reference clock freq which is used to
5923 * generate GMBus clock. This will vary with the cdclk freq.
5925 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
5926 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
5929 /* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5930 static int skl_cdclk_decimal(int cdclk)
5932 return DIV_ROUND_CLOSEST(cdclk - 1000, 500);
5935 static int bxt_de_pll_vco(struct drm_i915_private *dev_priv, int cdclk)
5939 if (cdclk == dev_priv->cdclk_pll.ref)
5944 MISSING_CASE(cdclk);
5956 return dev_priv->cdclk_pll.ref * ratio;
5959 static void bxt_de_pll_disable(struct drm_i915_private *dev_priv)
5961 I915_WRITE(BXT_DE_PLL_ENABLE, 0);
5964 if (intel_wait_for_register(dev_priv,
5965 BXT_DE_PLL_ENABLE, BXT_DE_PLL_LOCK, 0,
5967 DRM_ERROR("timeout waiting for DE PLL unlock\n");
5969 dev_priv->cdclk_pll.vco = 0;
5972 static void bxt_de_pll_enable(struct drm_i915_private *dev_priv, int vco)
5974 int ratio = DIV_ROUND_CLOSEST(vco, dev_priv->cdclk_pll.ref);
5977 val = I915_READ(BXT_DE_PLL_CTL);
5978 val &= ~BXT_DE_PLL_RATIO_MASK;
5979 val |= BXT_DE_PLL_RATIO(ratio);
5980 I915_WRITE(BXT_DE_PLL_CTL, val);
5982 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5985 if (intel_wait_for_register(dev_priv,
5990 DRM_ERROR("timeout waiting for DE PLL lock\n");
5992 dev_priv->cdclk_pll.vco = vco;
5995 static void bxt_set_cdclk(struct drm_i915_private *dev_priv, int cdclk)
6000 vco = bxt_de_pll_vco(dev_priv, cdclk);
6002 DRM_DEBUG_DRIVER("Changing CDCLK to %d kHz (VCO %d kHz)\n", cdclk, vco);
6004 /* cdclk = vco / 2 / div{1,1.5,2,4} */
6005 switch (DIV_ROUND_CLOSEST(vco, cdclk)) {
6007 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
6010 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
6013 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
6016 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
6019 WARN_ON(cdclk != dev_priv->cdclk_pll.ref);
6022 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
6026 /* Inform power controller of upcoming frequency change */
6027 mutex_lock(&dev_priv->rps.hw_lock);
6028 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
6030 mutex_unlock(&dev_priv->rps.hw_lock);
6033 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
6038 if (dev_priv->cdclk_pll.vco != 0 &&
6039 dev_priv->cdclk_pll.vco != vco)
6040 bxt_de_pll_disable(dev_priv);
6042 if (dev_priv->cdclk_pll.vco != vco)
6043 bxt_de_pll_enable(dev_priv, vco);
6045 val = divider | skl_cdclk_decimal(cdclk);
6047 * FIXME if only the cd2x divider needs changing, it could be done
6048 * without shutting off the pipe (if only one pipe is active).
6050 val |= BXT_CDCLK_CD2X_PIPE_NONE;
6052 * Disable SSA Precharge when CD clock frequency < 500 MHz,
6055 if (cdclk >= 500000)
6056 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
6057 I915_WRITE(CDCLK_CTL, val);
6059 mutex_lock(&dev_priv->rps.hw_lock);
6060 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
6061 DIV_ROUND_UP(cdclk, 25000));
6062 mutex_unlock(&dev_priv->rps.hw_lock);
6065 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
6070 intel_update_cdclk(&dev_priv->drm);
6073 static void bxt_sanitize_cdclk(struct drm_i915_private *dev_priv)
6075 u32 cdctl, expected;
6077 intel_update_cdclk(&dev_priv->drm);
6079 if (dev_priv->cdclk_pll.vco == 0 ||
6080 dev_priv->cdclk_freq == dev_priv->cdclk_pll.ref)
6083 /* DPLL okay; verify the cdclock
6085 * Some BIOS versions leave an incorrect decimal frequency value and
6086 * set reserved MBZ bits in CDCLK_CTL at least during exiting from S4,
6087 * so sanitize this register.
6089 cdctl = I915_READ(CDCLK_CTL);
6091 * Let's ignore the pipe field, since BIOS could have configured the
6092 * dividers both synching to an active pipe, or asynchronously
6095 cdctl &= ~BXT_CDCLK_CD2X_PIPE_NONE;
6097 expected = (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) |
6098 skl_cdclk_decimal(dev_priv->cdclk_freq);
6100 * Disable SSA Precharge when CD clock frequency < 500 MHz,
6103 if (dev_priv->cdclk_freq >= 500000)
6104 expected |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
6106 if (cdctl == expected)
6107 /* All well; nothing to sanitize */
6111 DRM_DEBUG_KMS("Sanitizing cdclk programmed by pre-os\n");
6113 /* force cdclk programming */
6114 dev_priv->cdclk_freq = 0;
6116 /* force full PLL disable + enable */
6117 dev_priv->cdclk_pll.vco = -1;
6120 void bxt_init_cdclk(struct drm_i915_private *dev_priv)
6122 bxt_sanitize_cdclk(dev_priv);
6124 if (dev_priv->cdclk_freq != 0 && dev_priv->cdclk_pll.vco != 0)
6129 * - The initial CDCLK needs to be read from VBT.
6130 * Need to make this change after VBT has changes for BXT.
6132 bxt_set_cdclk(dev_priv, bxt_calc_cdclk(0));
6135 void bxt_uninit_cdclk(struct drm_i915_private *dev_priv)
6137 bxt_set_cdclk(dev_priv, dev_priv->cdclk_pll.ref);
6140 static int skl_calc_cdclk(int max_pixclk, int vco)
6142 if (vco == 8640000) {
6143 if (max_pixclk > 540000)
6145 else if (max_pixclk > 432000)
6147 else if (max_pixclk > 308571)
6152 if (max_pixclk > 540000)
6154 else if (max_pixclk > 450000)
6156 else if (max_pixclk > 337500)
6164 skl_dpll0_update(struct drm_i915_private *dev_priv)
6168 dev_priv->cdclk_pll.ref = 24000;
6169 dev_priv->cdclk_pll.vco = 0;
6171 val = I915_READ(LCPLL1_CTL);
6172 if ((val & LCPLL_PLL_ENABLE) == 0)
6175 if (WARN_ON((val & LCPLL_PLL_LOCK) == 0))
6178 val = I915_READ(DPLL_CTRL1);
6180 if (WARN_ON((val & (DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) |
6181 DPLL_CTRL1_SSC(SKL_DPLL0) |
6182 DPLL_CTRL1_OVERRIDE(SKL_DPLL0))) !=
6183 DPLL_CTRL1_OVERRIDE(SKL_DPLL0)))
6186 switch (val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) {
6187 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810, SKL_DPLL0):
6188 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1350, SKL_DPLL0):
6189 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1620, SKL_DPLL0):
6190 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2700, SKL_DPLL0):
6191 dev_priv->cdclk_pll.vco = 8100000;
6193 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080, SKL_DPLL0):
6194 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2160, SKL_DPLL0):
6195 dev_priv->cdclk_pll.vco = 8640000;
6198 MISSING_CASE(val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
6203 void skl_set_preferred_cdclk_vco(struct drm_i915_private *dev_priv, int vco)
6205 bool changed = dev_priv->skl_preferred_vco_freq != vco;
6207 dev_priv->skl_preferred_vco_freq = vco;
6210 intel_update_max_cdclk(&dev_priv->drm);
6214 skl_dpll0_enable(struct drm_i915_private *dev_priv, int vco)
6216 int min_cdclk = skl_calc_cdclk(0, vco);
6219 WARN_ON(vco != 8100000 && vco != 8640000);
6221 /* select the minimum CDCLK before enabling DPLL 0 */
6222 val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_cdclk);
6223 I915_WRITE(CDCLK_CTL, val);
6224 POSTING_READ(CDCLK_CTL);
6227 * We always enable DPLL0 with the lowest link rate possible, but still
6228 * taking into account the VCO required to operate the eDP panel at the
6229 * desired frequency. The usual DP link rates operate with a VCO of
6230 * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640.
6231 * The modeset code is responsible for the selection of the exact link
6232 * rate later on, with the constraint of choosing a frequency that
6235 val = I915_READ(DPLL_CTRL1);
6237 val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) |
6238 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
6239 val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
6241 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
6244 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
6247 I915_WRITE(DPLL_CTRL1, val);
6248 POSTING_READ(DPLL_CTRL1);
6250 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE);
6252 if (intel_wait_for_register(dev_priv,
6253 LCPLL1_CTL, LCPLL_PLL_LOCK, LCPLL_PLL_LOCK,
6255 DRM_ERROR("DPLL0 not locked\n");
6257 dev_priv->cdclk_pll.vco = vco;
6259 /* We'll want to keep using the current vco from now on. */
6260 skl_set_preferred_cdclk_vco(dev_priv, vco);
6264 skl_dpll0_disable(struct drm_i915_private *dev_priv)
6266 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE);
6267 if (intel_wait_for_register(dev_priv,
6268 LCPLL1_CTL, LCPLL_PLL_LOCK, 0,
6270 DRM_ERROR("Couldn't disable DPLL0\n");
6272 dev_priv->cdclk_pll.vco = 0;
6275 static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv)
6280 /* inform PCU we want to change CDCLK */
6281 val = SKL_CDCLK_PREPARE_FOR_CHANGE;
6282 mutex_lock(&dev_priv->rps.hw_lock);
6283 ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val);
6284 mutex_unlock(&dev_priv->rps.hw_lock);
6286 return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE);
6289 static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv)
6291 return _wait_for(skl_cdclk_pcu_ready(dev_priv), 3000, 10) == 0;
6294 static void skl_set_cdclk(struct drm_i915_private *dev_priv, int cdclk, int vco)
6296 struct drm_device *dev = &dev_priv->drm;
6297 u32 freq_select, pcu_ack;
6299 WARN_ON((cdclk == 24000) != (vco == 0));
6301 DRM_DEBUG_DRIVER("Changing CDCLK to %d kHz (VCO %d kHz)\n", cdclk, vco);
6303 if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) {
6304 DRM_ERROR("failed to inform PCU about cdclk change\n");
6312 freq_select = CDCLK_FREQ_450_432;
6316 freq_select = CDCLK_FREQ_540;
6322 freq_select = CDCLK_FREQ_337_308;
6327 freq_select = CDCLK_FREQ_675_617;
6332 if (dev_priv->cdclk_pll.vco != 0 &&
6333 dev_priv->cdclk_pll.vco != vco)
6334 skl_dpll0_disable(dev_priv);
6336 if (dev_priv->cdclk_pll.vco != vco)
6337 skl_dpll0_enable(dev_priv, vco);
6339 I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(cdclk));
6340 POSTING_READ(CDCLK_CTL);
6342 /* inform PCU of the change */
6343 mutex_lock(&dev_priv->rps.hw_lock);
6344 sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack);
6345 mutex_unlock(&dev_priv->rps.hw_lock);
6347 intel_update_cdclk(dev);
6350 static void skl_sanitize_cdclk(struct drm_i915_private *dev_priv);
6352 void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
6354 skl_set_cdclk(dev_priv, dev_priv->cdclk_pll.ref, 0);
6357 void skl_init_cdclk(struct drm_i915_private *dev_priv)
6361 skl_sanitize_cdclk(dev_priv);
6363 if (dev_priv->cdclk_freq != 0 && dev_priv->cdclk_pll.vco != 0) {
6365 * Use the current vco as our initial
6366 * guess as to what the preferred vco is.
6368 if (dev_priv->skl_preferred_vco_freq == 0)
6369 skl_set_preferred_cdclk_vco(dev_priv,
6370 dev_priv->cdclk_pll.vco);
6374 vco = dev_priv->skl_preferred_vco_freq;
6377 cdclk = skl_calc_cdclk(0, vco);
6379 skl_set_cdclk(dev_priv, cdclk, vco);
6382 static void skl_sanitize_cdclk(struct drm_i915_private *dev_priv)
6384 uint32_t cdctl, expected;
6387 * check if the pre-os intialized the display
6388 * There is SWF18 scratchpad register defined which is set by the
6389 * pre-os which can be used by the OS drivers to check the status
6391 if ((I915_READ(SWF_ILK(0x18)) & 0x00FFFFFF) == 0)
6394 intel_update_cdclk(&dev_priv->drm);
6395 /* Is PLL enabled and locked ? */
6396 if (dev_priv->cdclk_pll.vco == 0 ||
6397 dev_priv->cdclk_freq == dev_priv->cdclk_pll.ref)
6400 /* DPLL okay; verify the cdclock
6402 * Noticed in some instances that the freq selection is correct but
6403 * decimal part is programmed wrong from BIOS where pre-os does not
6404 * enable display. Verify the same as well.
6406 cdctl = I915_READ(CDCLK_CTL);
6407 expected = (cdctl & CDCLK_FREQ_SEL_MASK) |
6408 skl_cdclk_decimal(dev_priv->cdclk_freq);
6409 if (cdctl == expected)
6410 /* All well; nothing to sanitize */
6414 DRM_DEBUG_KMS("Sanitizing cdclk programmed by pre-os\n");
6416 /* force cdclk programming */
6417 dev_priv->cdclk_freq = 0;
6418 /* force full PLL disable + enable */
6419 dev_priv->cdclk_pll.vco = -1;
6422 /* Adjust CDclk dividers to allow high res or save power if possible */
6423 static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
6425 struct drm_i915_private *dev_priv = to_i915(dev);
6428 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
6429 != dev_priv->cdclk_freq);
6431 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
6433 else if (cdclk == 266667)
6438 mutex_lock(&dev_priv->rps.hw_lock);
6439 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
6440 val &= ~DSPFREQGUAR_MASK;
6441 val |= (cmd << DSPFREQGUAR_SHIFT);
6442 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
6443 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
6444 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
6446 DRM_ERROR("timed out waiting for CDclk change\n");
6448 mutex_unlock(&dev_priv->rps.hw_lock);
6450 mutex_lock(&dev_priv->sb_lock);
6452 if (cdclk == 400000) {
6455 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
6457 /* adjust cdclk divider */
6458 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
6459 val &= ~CCK_FREQUENCY_VALUES;
6461 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
6463 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
6464 CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
6466 DRM_ERROR("timed out waiting for CDclk change\n");
6469 /* adjust self-refresh exit latency value */
6470 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
6474 * For high bandwidth configs, we set a higher latency in the bunit
6475 * so that the core display fetch happens in time to avoid underruns.
6477 if (cdclk == 400000)
6478 val |= 4500 / 250; /* 4.5 usec */
6480 val |= 3000 / 250; /* 3.0 usec */
6481 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
6483 mutex_unlock(&dev_priv->sb_lock);
6485 intel_update_cdclk(dev);
6488 static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
6490 struct drm_i915_private *dev_priv = to_i915(dev);
6493 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
6494 != dev_priv->cdclk_freq);
6503 MISSING_CASE(cdclk);
6508 * Specs are full of misinformation, but testing on actual
6509 * hardware has shown that we just need to write the desired
6510 * CCK divider into the Punit register.
6512 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
6514 mutex_lock(&dev_priv->rps.hw_lock);
6515 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
6516 val &= ~DSPFREQGUAR_MASK_CHV;
6517 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
6518 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
6519 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
6520 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
6522 DRM_ERROR("timed out waiting for CDclk change\n");
6524 mutex_unlock(&dev_priv->rps.hw_lock);
6526 intel_update_cdclk(dev);
6529 static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
6532 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
6533 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
6536 * Really only a few cases to deal with, as only 4 CDclks are supported:
6539 * 320/333MHz (depends on HPLL freq)
6541 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
6542 * of the lower bin and adjust if needed.
6544 * We seem to get an unstable or solid color picture at 200MHz.
6545 * Not sure what's wrong. For now use 200MHz only when all pipes
6548 if (!IS_CHERRYVIEW(dev_priv) &&
6549 max_pixclk > freq_320*limit/100)
6551 else if (max_pixclk > 266667*limit/100)
6553 else if (max_pixclk > 0)
6559 static int bxt_calc_cdclk(int max_pixclk)
6561 if (max_pixclk > 576000)
6563 else if (max_pixclk > 384000)
6565 else if (max_pixclk > 288000)
6567 else if (max_pixclk > 144000)
6573 /* Compute the max pixel clock for new configuration. */
6574 static int intel_mode_max_pixclk(struct drm_device *dev,
6575 struct drm_atomic_state *state)
6577 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
6578 struct drm_i915_private *dev_priv = to_i915(dev);
6579 struct drm_crtc *crtc;
6580 struct drm_crtc_state *crtc_state;
6581 unsigned max_pixclk = 0, i;
6584 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
6585 sizeof(intel_state->min_pixclk));
6587 for_each_crtc_in_state(state, crtc, crtc_state, i) {
6590 if (crtc_state->enable)
6591 pixclk = crtc_state->adjusted_mode.crtc_clock;
6593 intel_state->min_pixclk[i] = pixclk;
6596 for_each_pipe(dev_priv, pipe)
6597 max_pixclk = max(intel_state->min_pixclk[pipe], max_pixclk);
6602 static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state)
6604 struct drm_device *dev = state->dev;
6605 struct drm_i915_private *dev_priv = to_i915(dev);
6606 int max_pixclk = intel_mode_max_pixclk(dev, state);
6607 struct intel_atomic_state *intel_state =
6608 to_intel_atomic_state(state);
6610 intel_state->cdclk = intel_state->dev_cdclk =
6611 valleyview_calc_cdclk(dev_priv, max_pixclk);
6613 if (!intel_state->active_crtcs)
6614 intel_state->dev_cdclk = valleyview_calc_cdclk(dev_priv, 0);
6619 static int bxt_modeset_calc_cdclk(struct drm_atomic_state *state)
6621 int max_pixclk = ilk_max_pixel_rate(state);
6622 struct intel_atomic_state *intel_state =
6623 to_intel_atomic_state(state);
6625 intel_state->cdclk = intel_state->dev_cdclk =
6626 bxt_calc_cdclk(max_pixclk);
6628 if (!intel_state->active_crtcs)
6629 intel_state->dev_cdclk = bxt_calc_cdclk(0);
6634 static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
6636 unsigned int credits, default_credits;
6638 if (IS_CHERRYVIEW(dev_priv))
6639 default_credits = PFI_CREDIT(12);
6641 default_credits = PFI_CREDIT(8);
6643 if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) {
6644 /* CHV suggested value is 31 or 63 */
6645 if (IS_CHERRYVIEW(dev_priv))
6646 credits = PFI_CREDIT_63;
6648 credits = PFI_CREDIT(15);
6650 credits = default_credits;
6654 * WA - write default credits before re-programming
6655 * FIXME: should we also set the resend bit here?
6657 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6660 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6661 credits | PFI_CREDIT_RESEND);
6664 * FIXME is this guaranteed to clear
6665 * immediately or should we poll for it?
6667 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
6670 static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state)
6672 struct drm_device *dev = old_state->dev;
6673 struct drm_i915_private *dev_priv = to_i915(dev);
6674 struct intel_atomic_state *old_intel_state =
6675 to_intel_atomic_state(old_state);
6676 unsigned req_cdclk = old_intel_state->dev_cdclk;
6679 * FIXME: We can end up here with all power domains off, yet
6680 * with a CDCLK frequency other than the minimum. To account
6681 * for this take the PIPE-A power domain, which covers the HW
6682 * blocks needed for the following programming. This can be
6683 * removed once it's guaranteed that we get here either with
6684 * the minimum CDCLK set, or the required power domains
6687 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
6689 if (IS_CHERRYVIEW(dev_priv))
6690 cherryview_set_cdclk(dev, req_cdclk);
6692 valleyview_set_cdclk(dev, req_cdclk);
6694 vlv_program_pfi_credits(dev_priv);
6696 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
6699 static void valleyview_crtc_enable(struct intel_crtc_state *pipe_config,
6700 struct drm_atomic_state *old_state)
6702 struct drm_crtc *crtc = pipe_config->base.crtc;
6703 struct drm_device *dev = crtc->dev;
6704 struct drm_i915_private *dev_priv = to_i915(dev);
6705 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6706 int pipe = intel_crtc->pipe;
6708 if (WARN_ON(intel_crtc->active))
6711 if (intel_crtc_has_dp_encoder(intel_crtc->config))
6712 intel_dp_set_m_n(intel_crtc, M1_N1);
6714 intel_set_pipe_timings(intel_crtc);
6715 intel_set_pipe_src_size(intel_crtc);
6717 if (IS_CHERRYVIEW(dev_priv) && pipe == PIPE_B) {
6718 struct drm_i915_private *dev_priv = to_i915(dev);
6720 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
6721 I915_WRITE(CHV_CANVAS(pipe), 0);
6724 i9xx_set_pipeconf(intel_crtc);
6726 intel_crtc->active = true;
6728 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
6730 intel_encoders_pre_pll_enable(crtc, pipe_config, old_state);
6732 if (IS_CHERRYVIEW(dev_priv)) {
6733 chv_prepare_pll(intel_crtc, intel_crtc->config);
6734 chv_enable_pll(intel_crtc, intel_crtc->config);
6736 vlv_prepare_pll(intel_crtc, intel_crtc->config);
6737 vlv_enable_pll(intel_crtc, intel_crtc->config);
6740 intel_encoders_pre_enable(crtc, pipe_config, old_state);
6742 i9xx_pfit_enable(intel_crtc);
6744 intel_color_load_luts(&pipe_config->base);
6746 intel_update_watermarks(crtc);
6747 intel_enable_pipe(intel_crtc);
6749 assert_vblank_disabled(crtc);
6750 drm_crtc_vblank_on(crtc);
6752 intel_encoders_enable(crtc, pipe_config, old_state);
6755 static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
6757 struct drm_device *dev = crtc->base.dev;
6758 struct drm_i915_private *dev_priv = to_i915(dev);
6760 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
6761 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
6764 static void i9xx_crtc_enable(struct intel_crtc_state *pipe_config,
6765 struct drm_atomic_state *old_state)
6767 struct drm_crtc *crtc = pipe_config->base.crtc;
6768 struct drm_device *dev = crtc->dev;
6769 struct drm_i915_private *dev_priv = to_i915(dev);
6770 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6771 enum pipe pipe = intel_crtc->pipe;
6773 if (WARN_ON(intel_crtc->active))
6776 i9xx_set_pll_dividers(intel_crtc);
6778 if (intel_crtc_has_dp_encoder(intel_crtc->config))
6779 intel_dp_set_m_n(intel_crtc, M1_N1);
6781 intel_set_pipe_timings(intel_crtc);
6782 intel_set_pipe_src_size(intel_crtc);
6784 i9xx_set_pipeconf(intel_crtc);
6786 intel_crtc->active = true;
6788 if (!IS_GEN2(dev_priv))
6789 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
6791 intel_encoders_pre_enable(crtc, pipe_config, old_state);
6793 i9xx_enable_pll(intel_crtc);
6795 i9xx_pfit_enable(intel_crtc);
6797 intel_color_load_luts(&pipe_config->base);
6799 intel_update_watermarks(crtc);
6800 intel_enable_pipe(intel_crtc);
6802 assert_vblank_disabled(crtc);
6803 drm_crtc_vblank_on(crtc);
6805 intel_encoders_enable(crtc, pipe_config, old_state);
6808 static void i9xx_pfit_disable(struct intel_crtc *crtc)
6810 struct drm_device *dev = crtc->base.dev;
6811 struct drm_i915_private *dev_priv = to_i915(dev);
6813 if (!crtc->config->gmch_pfit.control)
6816 assert_pipe_disabled(dev_priv, crtc->pipe);
6818 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6819 I915_READ(PFIT_CONTROL));
6820 I915_WRITE(PFIT_CONTROL, 0);
6823 static void i9xx_crtc_disable(struct intel_crtc_state *old_crtc_state,
6824 struct drm_atomic_state *old_state)
6826 struct drm_crtc *crtc = old_crtc_state->base.crtc;
6827 struct drm_device *dev = crtc->dev;
6828 struct drm_i915_private *dev_priv = to_i915(dev);
6829 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6830 int pipe = intel_crtc->pipe;
6833 * On gen2 planes are double buffered but the pipe isn't, so we must
6834 * wait for planes to fully turn off before disabling the pipe.
6836 if (IS_GEN2(dev_priv))
6837 intel_wait_for_vblank(dev, pipe);
6839 intel_encoders_disable(crtc, old_crtc_state, old_state);
6841 drm_crtc_vblank_off(crtc);
6842 assert_vblank_disabled(crtc);
6844 intel_disable_pipe(intel_crtc);
6846 i9xx_pfit_disable(intel_crtc);
6848 intel_encoders_post_disable(crtc, old_crtc_state, old_state);
6850 if (!intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_DSI)) {
6851 if (IS_CHERRYVIEW(dev_priv))
6852 chv_disable_pll(dev_priv, pipe);
6853 else if (IS_VALLEYVIEW(dev_priv))
6854 vlv_disable_pll(dev_priv, pipe);
6856 i9xx_disable_pll(intel_crtc);
6859 intel_encoders_post_pll_disable(crtc, old_crtc_state, old_state);
6861 if (!IS_GEN2(dev_priv))
6862 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
6865 static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
6867 struct intel_encoder *encoder;
6868 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6869 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
6870 enum intel_display_power_domain domain;
6871 unsigned long domains;
6872 struct drm_atomic_state *state;
6873 struct intel_crtc_state *crtc_state;
6876 if (!intel_crtc->active)
6879 if (to_intel_plane_state(crtc->primary->state)->base.visible) {
6880 WARN_ON(intel_crtc->flip_work);
6882 intel_pre_disable_primary_noatomic(crtc);
6884 intel_crtc_disable_planes(crtc, 1 << drm_plane_index(crtc->primary));
6885 to_intel_plane_state(crtc->primary->state)->base.visible = false;
6888 state = drm_atomic_state_alloc(crtc->dev);
6889 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
6891 /* Everything's already locked, -EDEADLK can't happen. */
6892 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
6893 ret = drm_atomic_add_affected_connectors(state, crtc);
6895 WARN_ON(IS_ERR(crtc_state) || ret);
6897 dev_priv->display.crtc_disable(crtc_state, state);
6899 drm_atomic_state_free(state);
6901 DRM_DEBUG_KMS("[CRTC:%d:%s] hw state adjusted, was enabled, now disabled\n",
6902 crtc->base.id, crtc->name);
6904 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->state, NULL) < 0);
6905 crtc->state->active = false;
6906 intel_crtc->active = false;
6907 crtc->enabled = false;
6908 crtc->state->connector_mask = 0;
6909 crtc->state->encoder_mask = 0;
6911 for_each_encoder_on_crtc(crtc->dev, crtc, encoder)
6912 encoder->base.crtc = NULL;
6914 intel_fbc_disable(intel_crtc);
6915 intel_update_watermarks(crtc);
6916 intel_disable_shared_dpll(intel_crtc);
6918 domains = intel_crtc->enabled_power_domains;
6919 for_each_power_domain(domain, domains)
6920 intel_display_power_put(dev_priv, domain);
6921 intel_crtc->enabled_power_domains = 0;
6923 dev_priv->active_crtcs &= ~(1 << intel_crtc->pipe);
6924 dev_priv->min_pixclk[intel_crtc->pipe] = 0;
6928 * turn all crtc's off, but do not adjust state
6929 * This has to be paired with a call to intel_modeset_setup_hw_state.
6931 int intel_display_suspend(struct drm_device *dev)
6933 struct drm_i915_private *dev_priv = to_i915(dev);
6934 struct drm_atomic_state *state;
6937 state = drm_atomic_helper_suspend(dev);
6938 ret = PTR_ERR_OR_ZERO(state);
6940 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
6942 dev_priv->modeset_restore_state = state;
6946 void intel_encoder_destroy(struct drm_encoder *encoder)
6948 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
6950 drm_encoder_cleanup(encoder);
6951 kfree(intel_encoder);
6954 /* Cross check the actual hw state with our own modeset state tracking (and it's
6955 * internal consistency). */
6956 static void intel_connector_verify_state(struct intel_connector *connector)
6958 struct drm_crtc *crtc = connector->base.state->crtc;
6960 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6961 connector->base.base.id,
6962 connector->base.name);
6964 if (connector->get_hw_state(connector)) {
6965 struct intel_encoder *encoder = connector->encoder;
6966 struct drm_connector_state *conn_state = connector->base.state;
6968 I915_STATE_WARN(!crtc,
6969 "connector enabled without attached crtc\n");
6974 I915_STATE_WARN(!crtc->state->active,
6975 "connector is active, but attached crtc isn't\n");
6977 if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST)
6980 I915_STATE_WARN(conn_state->best_encoder != &encoder->base,
6981 "atomic encoder doesn't match attached encoder\n");
6983 I915_STATE_WARN(conn_state->crtc != encoder->base.crtc,
6984 "attached encoder crtc differs from connector crtc\n");
6986 I915_STATE_WARN(crtc && crtc->state->active,
6987 "attached crtc is active, but connector isn't\n");
6988 I915_STATE_WARN(!crtc && connector->base.state->best_encoder,
6989 "best encoder set without crtc!\n");
6993 int intel_connector_init(struct intel_connector *connector)
6995 drm_atomic_helper_connector_reset(&connector->base);
6997 if (!connector->base.state)
7003 struct intel_connector *intel_connector_alloc(void)
7005 struct intel_connector *connector;
7007 connector = kzalloc(sizeof *connector, GFP_KERNEL);
7011 if (intel_connector_init(connector) < 0) {
7019 /* Simple connector->get_hw_state implementation for encoders that support only
7020 * one connector and no cloning and hence the encoder state determines the state
7021 * of the connector. */
7022 bool intel_connector_get_hw_state(struct intel_connector *connector)
7025 struct intel_encoder *encoder = connector->encoder;
7027 return encoder->get_hw_state(encoder, &pipe);
7030 static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
7032 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
7033 return crtc_state->fdi_lanes;
7038 static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
7039 struct intel_crtc_state *pipe_config)
7041 struct drm_i915_private *dev_priv = to_i915(dev);
7042 struct drm_atomic_state *state = pipe_config->base.state;
7043 struct intel_crtc *other_crtc;
7044 struct intel_crtc_state *other_crtc_state;
7046 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
7047 pipe_name(pipe), pipe_config->fdi_lanes);
7048 if (pipe_config->fdi_lanes > 4) {
7049 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
7050 pipe_name(pipe), pipe_config->fdi_lanes);
7054 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
7055 if (pipe_config->fdi_lanes > 2) {
7056 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
7057 pipe_config->fdi_lanes);
7064 if (INTEL_INFO(dev)->num_pipes == 2)
7067 /* Ivybridge 3 pipe is really complicated */
7072 if (pipe_config->fdi_lanes <= 2)
7075 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
7077 intel_atomic_get_crtc_state(state, other_crtc);
7078 if (IS_ERR(other_crtc_state))
7079 return PTR_ERR(other_crtc_state);
7081 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
7082 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
7083 pipe_name(pipe), pipe_config->fdi_lanes);
7088 if (pipe_config->fdi_lanes > 2) {
7089 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
7090 pipe_name(pipe), pipe_config->fdi_lanes);
7094 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
7096 intel_atomic_get_crtc_state(state, other_crtc);
7097 if (IS_ERR(other_crtc_state))
7098 return PTR_ERR(other_crtc_state);
7100 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
7101 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
7111 static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
7112 struct intel_crtc_state *pipe_config)
7114 struct drm_device *dev = intel_crtc->base.dev;
7115 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
7116 int lane, link_bw, fdi_dotclock, ret;
7117 bool needs_recompute = false;
7120 /* FDI is a binary signal running at ~2.7GHz, encoding
7121 * each output octet as 10 bits. The actual frequency
7122 * is stored as a divider into a 100MHz clock, and the
7123 * mode pixel clock is stored in units of 1KHz.
7124 * Hence the bw of each lane in terms of the mode signal
7127 link_bw = intel_fdi_link_freq(to_i915(dev), pipe_config);
7129 fdi_dotclock = adjusted_mode->crtc_clock;
7131 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
7132 pipe_config->pipe_bpp);
7134 pipe_config->fdi_lanes = lane;
7136 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
7137 link_bw, &pipe_config->fdi_m_n);
7139 ret = ironlake_check_fdi_lanes(dev, intel_crtc->pipe, pipe_config);
7140 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
7141 pipe_config->pipe_bpp -= 2*3;
7142 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
7143 pipe_config->pipe_bpp);
7144 needs_recompute = true;
7145 pipe_config->bw_constrained = true;
7150 if (needs_recompute)
7156 static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv,
7157 struct intel_crtc_state *pipe_config)
7159 if (pipe_config->pipe_bpp > 24)
7162 /* HSW can handle pixel rate up to cdclk? */
7163 if (IS_HASWELL(dev_priv))
7167 * We compare against max which means we must take
7168 * the increased cdclk requirement into account when
7169 * calculating the new cdclk.
7171 * Should measure whether using a lower cdclk w/o IPS
7173 return ilk_pipe_pixel_rate(pipe_config) <=
7174 dev_priv->max_cdclk_freq * 95 / 100;
7177 static void hsw_compute_ips_config(struct intel_crtc *crtc,
7178 struct intel_crtc_state *pipe_config)
7180 struct drm_device *dev = crtc->base.dev;
7181 struct drm_i915_private *dev_priv = to_i915(dev);
7183 pipe_config->ips_enabled = i915.enable_ips &&
7184 hsw_crtc_supports_ips(crtc) &&
7185 pipe_config_supports_ips(dev_priv, pipe_config);
7188 static bool intel_crtc_supports_double_wide(const struct intel_crtc *crtc)
7190 const struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
7192 /* GDG double wide on either pipe, otherwise pipe A only */
7193 return INTEL_INFO(dev_priv)->gen < 4 &&
7194 (crtc->pipe == PIPE_A || IS_I915G(dev_priv));
7197 static int intel_crtc_compute_config(struct intel_crtc *crtc,
7198 struct intel_crtc_state *pipe_config)
7200 struct drm_device *dev = crtc->base.dev;
7201 struct drm_i915_private *dev_priv = to_i915(dev);
7202 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
7203 int clock_limit = dev_priv->max_dotclk_freq;
7205 if (INTEL_INFO(dev)->gen < 4) {
7206 clock_limit = dev_priv->max_cdclk_freq * 9 / 10;
7209 * Enable double wide mode when the dot clock
7210 * is > 90% of the (display) core speed.
7212 if (intel_crtc_supports_double_wide(crtc) &&
7213 adjusted_mode->crtc_clock > clock_limit) {
7214 clock_limit = dev_priv->max_dotclk_freq;
7215 pipe_config->double_wide = true;
7219 if (adjusted_mode->crtc_clock > clock_limit) {
7220 DRM_DEBUG_KMS("requested pixel clock (%d kHz) too high (max: %d kHz, double wide: %s)\n",
7221 adjusted_mode->crtc_clock, clock_limit,
7222 yesno(pipe_config->double_wide));
7227 * Pipe horizontal size must be even in:
7229 * - LVDS dual channel mode
7230 * - Double wide pipe
7232 if ((intel_crtc_has_type(pipe_config, INTEL_OUTPUT_LVDS) &&
7233 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
7234 pipe_config->pipe_src_w &= ~1;
7236 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
7237 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
7239 if ((INTEL_GEN(dev_priv) > 4 || IS_G4X(dev_priv)) &&
7240 adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay)
7243 if (HAS_IPS(dev_priv))
7244 hsw_compute_ips_config(crtc, pipe_config);
7246 if (pipe_config->has_pch_encoder)
7247 return ironlake_fdi_compute_config(crtc, pipe_config);
7252 static int skylake_get_display_clock_speed(struct drm_device *dev)
7254 struct drm_i915_private *dev_priv = to_i915(dev);
7257 skl_dpll0_update(dev_priv);
7259 if (dev_priv->cdclk_pll.vco == 0)
7260 return dev_priv->cdclk_pll.ref;
7262 cdctl = I915_READ(CDCLK_CTL);
7264 if (dev_priv->cdclk_pll.vco == 8640000) {
7265 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
7266 case CDCLK_FREQ_450_432:
7268 case CDCLK_FREQ_337_308:
7270 case CDCLK_FREQ_540:
7272 case CDCLK_FREQ_675_617:
7275 MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK);
7278 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
7279 case CDCLK_FREQ_450_432:
7281 case CDCLK_FREQ_337_308:
7283 case CDCLK_FREQ_540:
7285 case CDCLK_FREQ_675_617:
7288 MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK);
7292 return dev_priv->cdclk_pll.ref;
7295 static void bxt_de_pll_update(struct drm_i915_private *dev_priv)
7299 dev_priv->cdclk_pll.ref = 19200;
7300 dev_priv->cdclk_pll.vco = 0;
7302 val = I915_READ(BXT_DE_PLL_ENABLE);
7303 if ((val & BXT_DE_PLL_PLL_ENABLE) == 0)
7306 if (WARN_ON((val & BXT_DE_PLL_LOCK) == 0))
7309 val = I915_READ(BXT_DE_PLL_CTL);
7310 dev_priv->cdclk_pll.vco = (val & BXT_DE_PLL_RATIO_MASK) *
7311 dev_priv->cdclk_pll.ref;
7314 static int broxton_get_display_clock_speed(struct drm_device *dev)
7316 struct drm_i915_private *dev_priv = to_i915(dev);
7320 bxt_de_pll_update(dev_priv);
7322 vco = dev_priv->cdclk_pll.vco;
7324 return dev_priv->cdclk_pll.ref;
7326 divider = I915_READ(CDCLK_CTL) & BXT_CDCLK_CD2X_DIV_SEL_MASK;
7329 case BXT_CDCLK_CD2X_DIV_SEL_1:
7332 case BXT_CDCLK_CD2X_DIV_SEL_1_5:
7335 case BXT_CDCLK_CD2X_DIV_SEL_2:
7338 case BXT_CDCLK_CD2X_DIV_SEL_4:
7342 MISSING_CASE(divider);
7343 return dev_priv->cdclk_pll.ref;
7346 return DIV_ROUND_CLOSEST(vco, div);
7349 static int broadwell_get_display_clock_speed(struct drm_device *dev)
7351 struct drm_i915_private *dev_priv = to_i915(dev);
7352 uint32_t lcpll = I915_READ(LCPLL_CTL);
7353 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
7355 if (lcpll & LCPLL_CD_SOURCE_FCLK)
7357 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
7359 else if (freq == LCPLL_CLK_FREQ_450)
7361 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
7363 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
7369 static int haswell_get_display_clock_speed(struct drm_device *dev)
7371 struct drm_i915_private *dev_priv = to_i915(dev);
7372 uint32_t lcpll = I915_READ(LCPLL_CTL);
7373 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
7375 if (lcpll & LCPLL_CD_SOURCE_FCLK)
7377 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
7379 else if (freq == LCPLL_CLK_FREQ_450)
7381 else if (IS_HSW_ULT(dev_priv))
7387 static int valleyview_get_display_clock_speed(struct drm_device *dev)
7389 return vlv_get_cck_clock_hpll(to_i915(dev), "cdclk",
7390 CCK_DISPLAY_CLOCK_CONTROL);
7393 static int ilk_get_display_clock_speed(struct drm_device *dev)
7398 static int i945_get_display_clock_speed(struct drm_device *dev)
7403 static int i915_get_display_clock_speed(struct drm_device *dev)
7408 static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
7413 static int pnv_get_display_clock_speed(struct drm_device *dev)
7415 struct pci_dev *pdev = dev->pdev;
7418 pci_read_config_word(pdev, GCFGC, &gcfgc);
7420 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
7421 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
7423 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
7425 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
7427 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
7430 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
7431 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
7433 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
7438 static int i915gm_get_display_clock_speed(struct drm_device *dev)
7440 struct pci_dev *pdev = dev->pdev;
7443 pci_read_config_word(pdev, GCFGC, &gcfgc);
7445 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
7448 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
7449 case GC_DISPLAY_CLOCK_333_MHZ:
7452 case GC_DISPLAY_CLOCK_190_200_MHZ:
7458 static int i865_get_display_clock_speed(struct drm_device *dev)
7463 static int i85x_get_display_clock_speed(struct drm_device *dev)
7465 struct pci_dev *pdev = dev->pdev;
7469 * 852GM/852GMV only supports 133 MHz and the HPLLCC
7470 * encoding is different :(
7471 * FIXME is this the right way to detect 852GM/852GMV?
7473 if (pdev->revision == 0x1)
7476 pci_bus_read_config_word(pdev->bus,
7477 PCI_DEVFN(0, 3), HPLLCC, &hpllcc);
7479 /* Assume that the hardware is in the high speed state. This
7480 * should be the default.
7482 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
7483 case GC_CLOCK_133_200:
7484 case GC_CLOCK_133_200_2:
7485 case GC_CLOCK_100_200:
7487 case GC_CLOCK_166_250:
7489 case GC_CLOCK_100_133:
7491 case GC_CLOCK_133_266:
7492 case GC_CLOCK_133_266_2:
7493 case GC_CLOCK_166_266:
7497 /* Shouldn't happen */
7501 static int i830_get_display_clock_speed(struct drm_device *dev)
7506 static unsigned int intel_hpll_vco(struct drm_device *dev)
7508 struct drm_i915_private *dev_priv = to_i915(dev);
7509 static const unsigned int blb_vco[8] = {
7516 static const unsigned int pnv_vco[8] = {
7523 static const unsigned int cl_vco[8] = {
7532 static const unsigned int elk_vco[8] = {
7538 static const unsigned int ctg_vco[8] = {
7546 const unsigned int *vco_table;
7550 /* FIXME other chipsets? */
7551 if (IS_GM45(dev_priv))
7552 vco_table = ctg_vco;
7553 else if (IS_G4X(dev_priv))
7554 vco_table = elk_vco;
7555 else if (IS_CRESTLINE(dev))
7557 else if (IS_PINEVIEW(dev))
7558 vco_table = pnv_vco;
7559 else if (IS_G33(dev))
7560 vco_table = blb_vco;
7564 tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO);
7566 vco = vco_table[tmp & 0x7];
7568 DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp);
7570 DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco);
7575 static int gm45_get_display_clock_speed(struct drm_device *dev)
7577 struct pci_dev *pdev = dev->pdev;
7578 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7581 pci_read_config_word(pdev, GCFGC, &tmp);
7583 cdclk_sel = (tmp >> 12) & 0x1;
7589 return cdclk_sel ? 333333 : 222222;
7591 return cdclk_sel ? 320000 : 228571;
7593 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp);
7598 static int i965gm_get_display_clock_speed(struct drm_device *dev)
7600 struct pci_dev *pdev = dev->pdev;
7601 static const uint8_t div_3200[] = { 16, 10, 8 };
7602 static const uint8_t div_4000[] = { 20, 12, 10 };
7603 static const uint8_t div_5333[] = { 24, 16, 14 };
7604 const uint8_t *div_table;
7605 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7608 pci_read_config_word(pdev, GCFGC, &tmp);
7610 cdclk_sel = ((tmp >> 8) & 0x1f) - 1;
7612 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7617 div_table = div_3200;
7620 div_table = div_4000;
7623 div_table = div_5333;
7629 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7632 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp);
7636 static int g33_get_display_clock_speed(struct drm_device *dev)
7638 struct pci_dev *pdev = dev->pdev;
7639 static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 };
7640 static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 };
7641 static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 };
7642 static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 };
7643 const uint8_t *div_table;
7644 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7647 pci_read_config_word(pdev, GCFGC, &tmp);
7649 cdclk_sel = (tmp >> 4) & 0x7;
7651 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7656 div_table = div_3200;
7659 div_table = div_4000;
7662 div_table = div_4800;
7665 div_table = div_5333;
7671 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7674 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp);
7679 intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
7681 while (*num > DATA_LINK_M_N_MASK ||
7682 *den > DATA_LINK_M_N_MASK) {
7688 static void compute_m_n(unsigned int m, unsigned int n,
7689 uint32_t *ret_m, uint32_t *ret_n)
7691 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
7692 *ret_m = div_u64((uint64_t) m * *ret_n, n);
7693 intel_reduce_m_n_ratio(ret_m, ret_n);
7697 intel_link_compute_m_n(int bits_per_pixel, int nlanes,
7698 int pixel_clock, int link_clock,
7699 struct intel_link_m_n *m_n)
7703 compute_m_n(bits_per_pixel * pixel_clock,
7704 link_clock * nlanes * 8,
7705 &m_n->gmch_m, &m_n->gmch_n);
7707 compute_m_n(pixel_clock, link_clock,
7708 &m_n->link_m, &m_n->link_n);
7711 static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
7713 if (i915.panel_use_ssc >= 0)
7714 return i915.panel_use_ssc != 0;
7715 return dev_priv->vbt.lvds_use_ssc
7716 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
7719 static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
7721 return (1 << dpll->n) << 16 | dpll->m2;
7724 static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
7726 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
7729 static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
7730 struct intel_crtc_state *crtc_state,
7731 struct dpll *reduced_clock)
7733 struct drm_device *dev = crtc->base.dev;
7736 if (IS_PINEVIEW(dev)) {
7737 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
7739 fp2 = pnv_dpll_compute_fp(reduced_clock);
7741 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
7743 fp2 = i9xx_dpll_compute_fp(reduced_clock);
7746 crtc_state->dpll_hw_state.fp0 = fp;
7748 crtc->lowfreq_avail = false;
7749 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
7751 crtc_state->dpll_hw_state.fp1 = fp2;
7752 crtc->lowfreq_avail = true;
7754 crtc_state->dpll_hw_state.fp1 = fp;
7758 static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
7764 * PLLB opamp always calibrates to max value of 0x3f, force enable it
7765 * and set it to a reasonable value instead.
7767 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
7768 reg_val &= 0xffffff00;
7769 reg_val |= 0x00000030;
7770 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
7772 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
7773 reg_val &= 0x8cffffff;
7774 reg_val = 0x8c000000;
7775 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
7777 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
7778 reg_val &= 0xffffff00;
7779 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
7781 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
7782 reg_val &= 0x00ffffff;
7783 reg_val |= 0xb0000000;
7784 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
7787 static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
7788 struct intel_link_m_n *m_n)
7790 struct drm_device *dev = crtc->base.dev;
7791 struct drm_i915_private *dev_priv = to_i915(dev);
7792 int pipe = crtc->pipe;
7794 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7795 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
7796 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
7797 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
7800 static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
7801 struct intel_link_m_n *m_n,
7802 struct intel_link_m_n *m2_n2)
7804 struct drm_device *dev = crtc->base.dev;
7805 struct drm_i915_private *dev_priv = to_i915(dev);
7806 int pipe = crtc->pipe;
7807 enum transcoder transcoder = crtc->config->cpu_transcoder;
7809 if (INTEL_INFO(dev)->gen >= 5) {
7810 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
7811 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
7812 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
7813 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
7814 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
7815 * for gen < 8) and if DRRS is supported (to make sure the
7816 * registers are not unnecessarily accessed).
7818 if (m2_n2 && (IS_CHERRYVIEW(dev_priv) ||
7819 INTEL_GEN(dev_priv) < 8) && crtc->config->has_drrs) {
7820 I915_WRITE(PIPE_DATA_M2(transcoder),
7821 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
7822 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
7823 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
7824 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
7827 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7828 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
7829 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
7830 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
7834 void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
7836 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
7839 dp_m_n = &crtc->config->dp_m_n;
7840 dp_m2_n2 = &crtc->config->dp_m2_n2;
7841 } else if (m_n == M2_N2) {
7844 * M2_N2 registers are not supported. Hence m2_n2 divider value
7845 * needs to be programmed into M1_N1.
7847 dp_m_n = &crtc->config->dp_m2_n2;
7849 DRM_ERROR("Unsupported divider value\n");
7853 if (crtc->config->has_pch_encoder)
7854 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
7856 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
7859 static void vlv_compute_dpll(struct intel_crtc *crtc,
7860 struct intel_crtc_state *pipe_config)
7862 pipe_config->dpll_hw_state.dpll = DPLL_INTEGRATED_REF_CLK_VLV |
7863 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
7864 if (crtc->pipe != PIPE_A)
7865 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7867 /* DPLL not used with DSI, but still need the rest set up */
7868 if (!intel_crtc_has_type(pipe_config, INTEL_OUTPUT_DSI))
7869 pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE |
7870 DPLL_EXT_BUFFER_ENABLE_VLV;
7872 pipe_config->dpll_hw_state.dpll_md =
7873 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
7876 static void chv_compute_dpll(struct intel_crtc *crtc,
7877 struct intel_crtc_state *pipe_config)
7879 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV |
7880 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
7881 if (crtc->pipe != PIPE_A)
7882 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7884 /* DPLL not used with DSI, but still need the rest set up */
7885 if (!intel_crtc_has_type(pipe_config, INTEL_OUTPUT_DSI))
7886 pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE;
7888 pipe_config->dpll_hw_state.dpll_md =
7889 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
7892 static void vlv_prepare_pll(struct intel_crtc *crtc,
7893 const struct intel_crtc_state *pipe_config)
7895 struct drm_device *dev = crtc->base.dev;
7896 struct drm_i915_private *dev_priv = to_i915(dev);
7897 enum pipe pipe = crtc->pipe;
7899 u32 bestn, bestm1, bestm2, bestp1, bestp2;
7900 u32 coreclk, reg_val;
7903 I915_WRITE(DPLL(pipe),
7904 pipe_config->dpll_hw_state.dpll &
7905 ~(DPLL_VCO_ENABLE | DPLL_EXT_BUFFER_ENABLE_VLV));
7907 /* No need to actually set up the DPLL with DSI */
7908 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
7911 mutex_lock(&dev_priv->sb_lock);
7913 bestn = pipe_config->dpll.n;
7914 bestm1 = pipe_config->dpll.m1;
7915 bestm2 = pipe_config->dpll.m2;
7916 bestp1 = pipe_config->dpll.p1;
7917 bestp2 = pipe_config->dpll.p2;
7919 /* See eDP HDMI DPIO driver vbios notes doc */
7921 /* PLL B needs special handling */
7923 vlv_pllb_recal_opamp(dev_priv, pipe);
7925 /* Set up Tx target for periodic Rcomp update */
7926 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
7928 /* Disable target IRef on PLL */
7929 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
7930 reg_val &= 0x00ffffff;
7931 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
7933 /* Disable fast lock */
7934 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
7936 /* Set idtafcrecal before PLL is enabled */
7937 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
7938 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
7939 mdiv |= ((bestn << DPIO_N_SHIFT));
7940 mdiv |= (1 << DPIO_K_SHIFT);
7943 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
7944 * but we don't support that).
7945 * Note: don't use the DAC post divider as it seems unstable.
7947 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
7948 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
7950 mdiv |= DPIO_ENABLE_CALIBRATION;
7951 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
7953 /* Set HBR and RBR LPF coefficients */
7954 if (pipe_config->port_clock == 162000 ||
7955 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_ANALOG) ||
7956 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_HDMI))
7957 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
7960 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
7963 if (intel_crtc_has_dp_encoder(pipe_config)) {
7964 /* Use SSC source */
7966 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
7969 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
7971 } else { /* HDMI or VGA */
7972 /* Use bend source */
7974 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
7977 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
7981 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
7982 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
7983 if (intel_crtc_has_dp_encoder(crtc->config))
7984 coreclk |= 0x01000000;
7985 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
7987 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
7988 mutex_unlock(&dev_priv->sb_lock);
7991 static void chv_prepare_pll(struct intel_crtc *crtc,
7992 const struct intel_crtc_state *pipe_config)
7994 struct drm_device *dev = crtc->base.dev;
7995 struct drm_i915_private *dev_priv = to_i915(dev);
7996 enum pipe pipe = crtc->pipe;
7997 enum dpio_channel port = vlv_pipe_to_channel(pipe);
7998 u32 loopfilter, tribuf_calcntr;
7999 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
8003 /* Enable Refclk and SSC */
8004 I915_WRITE(DPLL(pipe),
8005 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
8007 /* No need to actually set up the DPLL with DSI */
8008 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
8011 bestn = pipe_config->dpll.n;
8012 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
8013 bestm1 = pipe_config->dpll.m1;
8014 bestm2 = pipe_config->dpll.m2 >> 22;
8015 bestp1 = pipe_config->dpll.p1;
8016 bestp2 = pipe_config->dpll.p2;
8017 vco = pipe_config->dpll.vco;
8021 mutex_lock(&dev_priv->sb_lock);
8023 /* p1 and p2 divider */
8024 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
8025 5 << DPIO_CHV_S1_DIV_SHIFT |
8026 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
8027 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
8028 1 << DPIO_CHV_K_DIV_SHIFT);
8030 /* Feedback post-divider - m2 */
8031 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
8033 /* Feedback refclk divider - n and m1 */
8034 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
8035 DPIO_CHV_M1_DIV_BY_2 |
8036 1 << DPIO_CHV_N_DIV_SHIFT);
8038 /* M2 fraction division */
8039 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
8041 /* M2 fraction division enable */
8042 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
8043 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
8044 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
8046 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
8047 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
8049 /* Program digital lock detect threshold */
8050 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
8051 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
8052 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
8053 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
8055 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
8056 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
8059 if (vco == 5400000) {
8060 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
8061 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
8062 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
8063 tribuf_calcntr = 0x9;
8064 } else if (vco <= 6200000) {
8065 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
8066 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
8067 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
8068 tribuf_calcntr = 0x9;
8069 } else if (vco <= 6480000) {
8070 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
8071 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
8072 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
8073 tribuf_calcntr = 0x8;
8075 /* Not supported. Apply the same limits as in the max case */
8076 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
8077 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
8078 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
8081 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
8083 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
8084 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
8085 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
8086 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
8089 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
8090 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
8093 mutex_unlock(&dev_priv->sb_lock);
8097 * vlv_force_pll_on - forcibly enable just the PLL
8098 * @dev_priv: i915 private structure
8099 * @pipe: pipe PLL to enable
8100 * @dpll: PLL configuration
8102 * Enable the PLL for @pipe using the supplied @dpll config. To be used
8103 * in cases where we need the PLL enabled even when @pipe is not going to
8106 int vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
8107 const struct dpll *dpll)
8109 struct intel_crtc *crtc =
8110 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
8111 struct intel_crtc_state *pipe_config;
8113 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
8117 pipe_config->base.crtc = &crtc->base;
8118 pipe_config->pixel_multiplier = 1;
8119 pipe_config->dpll = *dpll;
8121 if (IS_CHERRYVIEW(to_i915(dev))) {
8122 chv_compute_dpll(crtc, pipe_config);
8123 chv_prepare_pll(crtc, pipe_config);
8124 chv_enable_pll(crtc, pipe_config);
8126 vlv_compute_dpll(crtc, pipe_config);
8127 vlv_prepare_pll(crtc, pipe_config);
8128 vlv_enable_pll(crtc, pipe_config);
8137 * vlv_force_pll_off - forcibly disable just the PLL
8138 * @dev_priv: i915 private structure
8139 * @pipe: pipe PLL to disable
8141 * Disable the PLL for @pipe. To be used in cases where we need
8142 * the PLL enabled even when @pipe is not going to be enabled.
8144 void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
8146 if (IS_CHERRYVIEW(to_i915(dev)))
8147 chv_disable_pll(to_i915(dev), pipe);
8149 vlv_disable_pll(to_i915(dev), pipe);
8152 static void i9xx_compute_dpll(struct intel_crtc *crtc,
8153 struct intel_crtc_state *crtc_state,
8154 struct dpll *reduced_clock)
8156 struct drm_device *dev = crtc->base.dev;
8157 struct drm_i915_private *dev_priv = to_i915(dev);
8159 struct dpll *clock = &crtc_state->dpll;
8161 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
8163 dpll = DPLL_VGA_MODE_DIS;
8165 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS))
8166 dpll |= DPLLB_MODE_LVDS;
8168 dpll |= DPLLB_MODE_DAC_SERIAL;
8170 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv) || IS_G33(dev_priv)) {
8171 dpll |= (crtc_state->pixel_multiplier - 1)
8172 << SDVO_MULTIPLIER_SHIFT_HIRES;
8175 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_SDVO) ||
8176 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI))
8177 dpll |= DPLL_SDVO_HIGH_SPEED;
8179 if (intel_crtc_has_dp_encoder(crtc_state))
8180 dpll |= DPLL_SDVO_HIGH_SPEED;
8182 /* compute bitmask from p1 value */
8183 if (IS_PINEVIEW(dev))
8184 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
8186 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
8187 if (IS_G4X(dev_priv) && reduced_clock)
8188 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
8190 switch (clock->p2) {
8192 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
8195 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
8198 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
8201 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
8204 if (INTEL_INFO(dev)->gen >= 4)
8205 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
8207 if (crtc_state->sdvo_tv_clock)
8208 dpll |= PLL_REF_INPUT_TVCLKINBC;
8209 else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
8210 intel_panel_use_ssc(dev_priv))
8211 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
8213 dpll |= PLL_REF_INPUT_DREFCLK;
8215 dpll |= DPLL_VCO_ENABLE;
8216 crtc_state->dpll_hw_state.dpll = dpll;
8218 if (INTEL_INFO(dev)->gen >= 4) {
8219 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
8220 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
8221 crtc_state->dpll_hw_state.dpll_md = dpll_md;
8225 static void i8xx_compute_dpll(struct intel_crtc *crtc,
8226 struct intel_crtc_state *crtc_state,
8227 struct dpll *reduced_clock)
8229 struct drm_device *dev = crtc->base.dev;
8230 struct drm_i915_private *dev_priv = to_i915(dev);
8232 struct dpll *clock = &crtc_state->dpll;
8234 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
8236 dpll = DPLL_VGA_MODE_DIS;
8238 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
8239 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
8242 dpll |= PLL_P1_DIVIDE_BY_TWO;
8244 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
8246 dpll |= PLL_P2_DIVIDE_BY_4;
8249 if (!IS_I830(dev_priv) &&
8250 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DVO))
8251 dpll |= DPLL_DVO_2X_MODE;
8253 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
8254 intel_panel_use_ssc(dev_priv))
8255 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
8257 dpll |= PLL_REF_INPUT_DREFCLK;
8259 dpll |= DPLL_VCO_ENABLE;
8260 crtc_state->dpll_hw_state.dpll = dpll;
8263 static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
8265 struct drm_device *dev = intel_crtc->base.dev;
8266 struct drm_i915_private *dev_priv = to_i915(dev);
8267 enum pipe pipe = intel_crtc->pipe;
8268 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
8269 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
8270 uint32_t crtc_vtotal, crtc_vblank_end;
8273 /* We need to be careful not to changed the adjusted mode, for otherwise
8274 * the hw state checker will get angry at the mismatch. */
8275 crtc_vtotal = adjusted_mode->crtc_vtotal;
8276 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
8278 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
8279 /* the chip adds 2 halflines automatically */
8281 crtc_vblank_end -= 1;
8283 if (intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_SDVO))
8284 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
8286 vsyncshift = adjusted_mode->crtc_hsync_start -
8287 adjusted_mode->crtc_htotal / 2;
8289 vsyncshift += adjusted_mode->crtc_htotal;
8292 if (INTEL_INFO(dev)->gen > 3)
8293 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
8295 I915_WRITE(HTOTAL(cpu_transcoder),
8296 (adjusted_mode->crtc_hdisplay - 1) |
8297 ((adjusted_mode->crtc_htotal - 1) << 16));
8298 I915_WRITE(HBLANK(cpu_transcoder),
8299 (adjusted_mode->crtc_hblank_start - 1) |
8300 ((adjusted_mode->crtc_hblank_end - 1) << 16));
8301 I915_WRITE(HSYNC(cpu_transcoder),
8302 (adjusted_mode->crtc_hsync_start - 1) |
8303 ((adjusted_mode->crtc_hsync_end - 1) << 16));
8305 I915_WRITE(VTOTAL(cpu_transcoder),
8306 (adjusted_mode->crtc_vdisplay - 1) |
8307 ((crtc_vtotal - 1) << 16));
8308 I915_WRITE(VBLANK(cpu_transcoder),
8309 (adjusted_mode->crtc_vblank_start - 1) |
8310 ((crtc_vblank_end - 1) << 16));
8311 I915_WRITE(VSYNC(cpu_transcoder),
8312 (adjusted_mode->crtc_vsync_start - 1) |
8313 ((adjusted_mode->crtc_vsync_end - 1) << 16));
8315 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
8316 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
8317 * documented on the DDI_FUNC_CTL register description, EDP Input Select
8319 if (IS_HASWELL(dev_priv) && cpu_transcoder == TRANSCODER_EDP &&
8320 (pipe == PIPE_B || pipe == PIPE_C))
8321 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
8325 static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc)
8327 struct drm_device *dev = intel_crtc->base.dev;
8328 struct drm_i915_private *dev_priv = to_i915(dev);
8329 enum pipe pipe = intel_crtc->pipe;
8331 /* pipesrc controls the size that is scaled from, which should
8332 * always be the user's requested size.
8334 I915_WRITE(PIPESRC(pipe),
8335 ((intel_crtc->config->pipe_src_w - 1) << 16) |
8336 (intel_crtc->config->pipe_src_h - 1));
8339 static void intel_get_pipe_timings(struct intel_crtc *crtc,
8340 struct intel_crtc_state *pipe_config)
8342 struct drm_device *dev = crtc->base.dev;
8343 struct drm_i915_private *dev_priv = to_i915(dev);
8344 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
8347 tmp = I915_READ(HTOTAL(cpu_transcoder));
8348 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
8349 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
8350 tmp = I915_READ(HBLANK(cpu_transcoder));
8351 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
8352 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
8353 tmp = I915_READ(HSYNC(cpu_transcoder));
8354 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
8355 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
8357 tmp = I915_READ(VTOTAL(cpu_transcoder));
8358 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
8359 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
8360 tmp = I915_READ(VBLANK(cpu_transcoder));
8361 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
8362 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
8363 tmp = I915_READ(VSYNC(cpu_transcoder));
8364 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
8365 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
8367 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
8368 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
8369 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
8370 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
8374 static void intel_get_pipe_src_size(struct intel_crtc *crtc,
8375 struct intel_crtc_state *pipe_config)
8377 struct drm_device *dev = crtc->base.dev;
8378 struct drm_i915_private *dev_priv = to_i915(dev);
8381 tmp = I915_READ(PIPESRC(crtc->pipe));
8382 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
8383 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
8385 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
8386 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
8389 void intel_mode_from_pipe_config(struct drm_display_mode *mode,
8390 struct intel_crtc_state *pipe_config)
8392 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
8393 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
8394 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
8395 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
8397 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
8398 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
8399 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
8400 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
8402 mode->flags = pipe_config->base.adjusted_mode.flags;
8403 mode->type = DRM_MODE_TYPE_DRIVER;
8405 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
8406 mode->flags |= pipe_config->base.adjusted_mode.flags;
8408 mode->hsync = drm_mode_hsync(mode);
8409 mode->vrefresh = drm_mode_vrefresh(mode);
8410 drm_mode_set_name(mode);
8413 static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
8415 struct drm_device *dev = intel_crtc->base.dev;
8416 struct drm_i915_private *dev_priv = to_i915(dev);
8421 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
8422 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
8423 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
8425 if (intel_crtc->config->double_wide)
8426 pipeconf |= PIPECONF_DOUBLE_WIDE;
8428 /* only g4x and later have fancy bpc/dither controls */
8429 if (IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
8430 IS_CHERRYVIEW(dev_priv)) {
8431 /* Bspec claims that we can't use dithering for 30bpp pipes. */
8432 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
8433 pipeconf |= PIPECONF_DITHER_EN |
8434 PIPECONF_DITHER_TYPE_SP;
8436 switch (intel_crtc->config->pipe_bpp) {
8438 pipeconf |= PIPECONF_6BPC;
8441 pipeconf |= PIPECONF_8BPC;
8444 pipeconf |= PIPECONF_10BPC;
8447 /* Case prevented by intel_choose_pipe_bpp_dither. */
8452 if (HAS_PIPE_CXSR(dev)) {
8453 if (intel_crtc->lowfreq_avail) {
8454 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
8455 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
8457 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
8461 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
8462 if (INTEL_INFO(dev)->gen < 4 ||
8463 intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_SDVO))
8464 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
8466 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
8468 pipeconf |= PIPECONF_PROGRESSIVE;
8470 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
8471 intel_crtc->config->limited_color_range)
8472 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
8474 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
8475 POSTING_READ(PIPECONF(intel_crtc->pipe));
8478 static int i8xx_crtc_compute_clock(struct intel_crtc *crtc,
8479 struct intel_crtc_state *crtc_state)
8481 struct drm_device *dev = crtc->base.dev;
8482 struct drm_i915_private *dev_priv = to_i915(dev);
8483 const struct intel_limit *limit;
8486 memset(&crtc_state->dpll_hw_state, 0,
8487 sizeof(crtc_state->dpll_hw_state));
8489 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
8490 if (intel_panel_use_ssc(dev_priv)) {
8491 refclk = dev_priv->vbt.lvds_ssc_freq;
8492 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
8495 limit = &intel_limits_i8xx_lvds;
8496 } else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DVO)) {
8497 limit = &intel_limits_i8xx_dvo;
8499 limit = &intel_limits_i8xx_dac;
8502 if (!crtc_state->clock_set &&
8503 !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8504 refclk, NULL, &crtc_state->dpll)) {
8505 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8509 i8xx_compute_dpll(crtc, crtc_state, NULL);
8514 static int g4x_crtc_compute_clock(struct intel_crtc *crtc,
8515 struct intel_crtc_state *crtc_state)
8517 struct drm_device *dev = crtc->base.dev;
8518 struct drm_i915_private *dev_priv = to_i915(dev);
8519 const struct intel_limit *limit;
8522 memset(&crtc_state->dpll_hw_state, 0,
8523 sizeof(crtc_state->dpll_hw_state));
8525 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
8526 if (intel_panel_use_ssc(dev_priv)) {
8527 refclk = dev_priv->vbt.lvds_ssc_freq;
8528 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
8531 if (intel_is_dual_link_lvds(dev))
8532 limit = &intel_limits_g4x_dual_channel_lvds;
8534 limit = &intel_limits_g4x_single_channel_lvds;
8535 } else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI) ||
8536 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_ANALOG)) {
8537 limit = &intel_limits_g4x_hdmi;
8538 } else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_SDVO)) {
8539 limit = &intel_limits_g4x_sdvo;
8541 /* The option is for other outputs */
8542 limit = &intel_limits_i9xx_sdvo;
8545 if (!crtc_state->clock_set &&
8546 !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8547 refclk, NULL, &crtc_state->dpll)) {
8548 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8552 i9xx_compute_dpll(crtc, crtc_state, NULL);
8557 static int pnv_crtc_compute_clock(struct intel_crtc *crtc,
8558 struct intel_crtc_state *crtc_state)
8560 struct drm_device *dev = crtc->base.dev;
8561 struct drm_i915_private *dev_priv = to_i915(dev);
8562 const struct intel_limit *limit;
8565 memset(&crtc_state->dpll_hw_state, 0,
8566 sizeof(crtc_state->dpll_hw_state));
8568 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
8569 if (intel_panel_use_ssc(dev_priv)) {
8570 refclk = dev_priv->vbt.lvds_ssc_freq;
8571 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
8574 limit = &intel_limits_pineview_lvds;
8576 limit = &intel_limits_pineview_sdvo;
8579 if (!crtc_state->clock_set &&
8580 !pnv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8581 refclk, NULL, &crtc_state->dpll)) {
8582 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8586 i9xx_compute_dpll(crtc, crtc_state, NULL);
8591 static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
8592 struct intel_crtc_state *crtc_state)
8594 struct drm_device *dev = crtc->base.dev;
8595 struct drm_i915_private *dev_priv = to_i915(dev);
8596 const struct intel_limit *limit;
8599 memset(&crtc_state->dpll_hw_state, 0,
8600 sizeof(crtc_state->dpll_hw_state));
8602 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
8603 if (intel_panel_use_ssc(dev_priv)) {
8604 refclk = dev_priv->vbt.lvds_ssc_freq;
8605 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
8608 limit = &intel_limits_i9xx_lvds;
8610 limit = &intel_limits_i9xx_sdvo;
8613 if (!crtc_state->clock_set &&
8614 !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8615 refclk, NULL, &crtc_state->dpll)) {
8616 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8620 i9xx_compute_dpll(crtc, crtc_state, NULL);
8625 static int chv_crtc_compute_clock(struct intel_crtc *crtc,
8626 struct intel_crtc_state *crtc_state)
8628 int refclk = 100000;
8629 const struct intel_limit *limit = &intel_limits_chv;
8631 memset(&crtc_state->dpll_hw_state, 0,
8632 sizeof(crtc_state->dpll_hw_state));
8634 if (!crtc_state->clock_set &&
8635 !chv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8636 refclk, NULL, &crtc_state->dpll)) {
8637 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8641 chv_compute_dpll(crtc, crtc_state);
8646 static int vlv_crtc_compute_clock(struct intel_crtc *crtc,
8647 struct intel_crtc_state *crtc_state)
8649 int refclk = 100000;
8650 const struct intel_limit *limit = &intel_limits_vlv;
8652 memset(&crtc_state->dpll_hw_state, 0,
8653 sizeof(crtc_state->dpll_hw_state));
8655 if (!crtc_state->clock_set &&
8656 !vlv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8657 refclk, NULL, &crtc_state->dpll)) {
8658 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8662 vlv_compute_dpll(crtc, crtc_state);
8667 static void i9xx_get_pfit_config(struct intel_crtc *crtc,
8668 struct intel_crtc_state *pipe_config)
8670 struct drm_device *dev = crtc->base.dev;
8671 struct drm_i915_private *dev_priv = to_i915(dev);
8674 if (INTEL_GEN(dev_priv) <= 3 &&
8675 (IS_I830(dev_priv) || !IS_MOBILE(dev_priv)))
8678 tmp = I915_READ(PFIT_CONTROL);
8679 if (!(tmp & PFIT_ENABLE))
8682 /* Check whether the pfit is attached to our pipe. */
8683 if (INTEL_INFO(dev)->gen < 4) {
8684 if (crtc->pipe != PIPE_B)
8687 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
8691 pipe_config->gmch_pfit.control = tmp;
8692 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
8695 static void vlv_crtc_clock_get(struct intel_crtc *crtc,
8696 struct intel_crtc_state *pipe_config)
8698 struct drm_device *dev = crtc->base.dev;
8699 struct drm_i915_private *dev_priv = to_i915(dev);
8700 int pipe = pipe_config->cpu_transcoder;
8703 int refclk = 100000;
8705 /* In case of DSI, DPLL will not be used */
8706 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
8709 mutex_lock(&dev_priv->sb_lock);
8710 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
8711 mutex_unlock(&dev_priv->sb_lock);
8713 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
8714 clock.m2 = mdiv & DPIO_M2DIV_MASK;
8715 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
8716 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
8717 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
8719 pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock);
8723 i9xx_get_initial_plane_config(struct intel_crtc *crtc,
8724 struct intel_initial_plane_config *plane_config)
8726 struct drm_device *dev = crtc->base.dev;
8727 struct drm_i915_private *dev_priv = to_i915(dev);
8728 u32 val, base, offset;
8729 int pipe = crtc->pipe, plane = crtc->plane;
8730 int fourcc, pixel_format;
8731 unsigned int aligned_height;
8732 struct drm_framebuffer *fb;
8733 struct intel_framebuffer *intel_fb;
8735 val = I915_READ(DSPCNTR(plane));
8736 if (!(val & DISPLAY_PLANE_ENABLE))
8739 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8741 DRM_DEBUG_KMS("failed to alloc fb\n");
8745 fb = &intel_fb->base;
8747 if (INTEL_INFO(dev)->gen >= 4) {
8748 if (val & DISPPLANE_TILED) {
8749 plane_config->tiling = I915_TILING_X;
8750 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8754 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
8755 fourcc = i9xx_format_to_fourcc(pixel_format);
8756 fb->pixel_format = fourcc;
8757 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
8759 if (INTEL_INFO(dev)->gen >= 4) {
8760 if (plane_config->tiling)
8761 offset = I915_READ(DSPTILEOFF(plane));
8763 offset = I915_READ(DSPLINOFF(plane));
8764 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
8766 base = I915_READ(DSPADDR(plane));
8768 plane_config->base = base;
8770 val = I915_READ(PIPESRC(pipe));
8771 fb->width = ((val >> 16) & 0xfff) + 1;
8772 fb->height = ((val >> 0) & 0xfff) + 1;
8774 val = I915_READ(DSPSTRIDE(pipe));
8775 fb->pitches[0] = val & 0xffffffc0;
8777 aligned_height = intel_fb_align_height(dev, fb->height,
8781 plane_config->size = fb->pitches[0] * aligned_height;
8783 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8784 pipe_name(pipe), plane, fb->width, fb->height,
8785 fb->bits_per_pixel, base, fb->pitches[0],
8786 plane_config->size);
8788 plane_config->fb = intel_fb;
8791 static void chv_crtc_clock_get(struct intel_crtc *crtc,
8792 struct intel_crtc_state *pipe_config)
8794 struct drm_device *dev = crtc->base.dev;
8795 struct drm_i915_private *dev_priv = to_i915(dev);
8796 int pipe = pipe_config->cpu_transcoder;
8797 enum dpio_channel port = vlv_pipe_to_channel(pipe);
8799 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3;
8800 int refclk = 100000;
8802 /* In case of DSI, DPLL will not be used */
8803 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
8806 mutex_lock(&dev_priv->sb_lock);
8807 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
8808 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
8809 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
8810 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
8811 pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
8812 mutex_unlock(&dev_priv->sb_lock);
8814 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
8815 clock.m2 = (pll_dw0 & 0xff) << 22;
8816 if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN)
8817 clock.m2 |= pll_dw2 & 0x3fffff;
8818 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
8819 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
8820 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
8822 pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock);
8825 static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
8826 struct intel_crtc_state *pipe_config)
8828 struct drm_device *dev = crtc->base.dev;
8829 struct drm_i915_private *dev_priv = to_i915(dev);
8830 enum intel_display_power_domain power_domain;
8834 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
8835 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
8838 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
8839 pipe_config->shared_dpll = NULL;
8843 tmp = I915_READ(PIPECONF(crtc->pipe));
8844 if (!(tmp & PIPECONF_ENABLE))
8847 if (IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
8848 IS_CHERRYVIEW(dev_priv)) {
8849 switch (tmp & PIPECONF_BPC_MASK) {
8851 pipe_config->pipe_bpp = 18;
8854 pipe_config->pipe_bpp = 24;
8856 case PIPECONF_10BPC:
8857 pipe_config->pipe_bpp = 30;
8864 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
8865 (tmp & PIPECONF_COLOR_RANGE_SELECT))
8866 pipe_config->limited_color_range = true;
8868 if (INTEL_INFO(dev)->gen < 4)
8869 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
8871 intel_get_pipe_timings(crtc, pipe_config);
8872 intel_get_pipe_src_size(crtc, pipe_config);
8874 i9xx_get_pfit_config(crtc, pipe_config);
8876 if (INTEL_INFO(dev)->gen >= 4) {
8877 /* No way to read it out on pipes B and C */
8878 if (IS_CHERRYVIEW(dev_priv) && crtc->pipe != PIPE_A)
8879 tmp = dev_priv->chv_dpll_md[crtc->pipe];
8881 tmp = I915_READ(DPLL_MD(crtc->pipe));
8882 pipe_config->pixel_multiplier =
8883 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
8884 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
8885 pipe_config->dpll_hw_state.dpll_md = tmp;
8886 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv) ||
8888 tmp = I915_READ(DPLL(crtc->pipe));
8889 pipe_config->pixel_multiplier =
8890 ((tmp & SDVO_MULTIPLIER_MASK)
8891 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
8893 /* Note that on i915G/GM the pixel multiplier is in the sdvo
8894 * port and will be fixed up in the encoder->get_config
8896 pipe_config->pixel_multiplier = 1;
8898 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
8899 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv)) {
8901 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
8902 * on 830. Filter it out here so that we don't
8903 * report errors due to that.
8905 if (IS_I830(dev_priv))
8906 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
8908 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
8909 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
8911 /* Mask out read-only status bits. */
8912 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
8913 DPLL_PORTC_READY_MASK |
8914 DPLL_PORTB_READY_MASK);
8917 if (IS_CHERRYVIEW(dev_priv))
8918 chv_crtc_clock_get(crtc, pipe_config);
8919 else if (IS_VALLEYVIEW(dev_priv))
8920 vlv_crtc_clock_get(crtc, pipe_config);
8922 i9xx_crtc_clock_get(crtc, pipe_config);
8925 * Normally the dotclock is filled in by the encoder .get_config()
8926 * but in case the pipe is enabled w/o any ports we need a sane
8929 pipe_config->base.adjusted_mode.crtc_clock =
8930 pipe_config->port_clock / pipe_config->pixel_multiplier;
8935 intel_display_power_put(dev_priv, power_domain);
8940 static void ironlake_init_pch_refclk(struct drm_device *dev)
8942 struct drm_i915_private *dev_priv = to_i915(dev);
8943 struct intel_encoder *encoder;
8946 bool has_lvds = false;
8947 bool has_cpu_edp = false;
8948 bool has_panel = false;
8949 bool has_ck505 = false;
8950 bool can_ssc = false;
8951 bool using_ssc_source = false;
8953 /* We need to take the global config into account */
8954 for_each_intel_encoder(dev, encoder) {
8955 switch (encoder->type) {
8956 case INTEL_OUTPUT_LVDS:
8960 case INTEL_OUTPUT_EDP:
8962 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
8970 if (HAS_PCH_IBX(dev_priv)) {
8971 has_ck505 = dev_priv->vbt.display_clock_mode;
8972 can_ssc = has_ck505;
8978 /* Check if any DPLLs are using the SSC source */
8979 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
8980 u32 temp = I915_READ(PCH_DPLL(i));
8982 if (!(temp & DPLL_VCO_ENABLE))
8985 if ((temp & PLL_REF_INPUT_MASK) ==
8986 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
8987 using_ssc_source = true;
8992 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d using_ssc_source %d\n",
8993 has_panel, has_lvds, has_ck505, using_ssc_source);
8995 /* Ironlake: try to setup display ref clock before DPLL
8996 * enabling. This is only under driver's control after
8997 * PCH B stepping, previous chipset stepping should be
8998 * ignoring this setting.
9000 val = I915_READ(PCH_DREF_CONTROL);
9002 /* As we must carefully and slowly disable/enable each source in turn,
9003 * compute the final state we want first and check if we need to
9004 * make any changes at all.
9007 final &= ~DREF_NONSPREAD_SOURCE_MASK;
9009 final |= DREF_NONSPREAD_CK505_ENABLE;
9011 final |= DREF_NONSPREAD_SOURCE_ENABLE;
9013 final &= ~DREF_SSC_SOURCE_MASK;
9014 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
9015 final &= ~DREF_SSC1_ENABLE;
9018 final |= DREF_SSC_SOURCE_ENABLE;
9020 if (intel_panel_use_ssc(dev_priv) && can_ssc)
9021 final |= DREF_SSC1_ENABLE;
9024 if (intel_panel_use_ssc(dev_priv) && can_ssc)
9025 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
9027 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
9029 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
9030 } else if (using_ssc_source) {
9031 final |= DREF_SSC_SOURCE_ENABLE;
9032 final |= DREF_SSC1_ENABLE;
9038 /* Always enable nonspread source */
9039 val &= ~DREF_NONSPREAD_SOURCE_MASK;
9042 val |= DREF_NONSPREAD_CK505_ENABLE;
9044 val |= DREF_NONSPREAD_SOURCE_ENABLE;
9047 val &= ~DREF_SSC_SOURCE_MASK;
9048 val |= DREF_SSC_SOURCE_ENABLE;
9050 /* SSC must be turned on before enabling the CPU output */
9051 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
9052 DRM_DEBUG_KMS("Using SSC on panel\n");
9053 val |= DREF_SSC1_ENABLE;
9055 val &= ~DREF_SSC1_ENABLE;
9057 /* Get SSC going before enabling the outputs */
9058 I915_WRITE(PCH_DREF_CONTROL, val);
9059 POSTING_READ(PCH_DREF_CONTROL);
9062 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
9064 /* Enable CPU source on CPU attached eDP */
9066 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
9067 DRM_DEBUG_KMS("Using SSC on eDP\n");
9068 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
9070 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
9072 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
9074 I915_WRITE(PCH_DREF_CONTROL, val);
9075 POSTING_READ(PCH_DREF_CONTROL);
9078 DRM_DEBUG_KMS("Disabling CPU source output\n");
9080 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
9082 /* Turn off CPU output */
9083 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
9085 I915_WRITE(PCH_DREF_CONTROL, val);
9086 POSTING_READ(PCH_DREF_CONTROL);
9089 if (!using_ssc_source) {
9090 DRM_DEBUG_KMS("Disabling SSC source\n");
9092 /* Turn off the SSC source */
9093 val &= ~DREF_SSC_SOURCE_MASK;
9094 val |= DREF_SSC_SOURCE_DISABLE;
9097 val &= ~DREF_SSC1_ENABLE;
9099 I915_WRITE(PCH_DREF_CONTROL, val);
9100 POSTING_READ(PCH_DREF_CONTROL);
9105 BUG_ON(val != final);
9108 static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
9112 tmp = I915_READ(SOUTH_CHICKEN2);
9113 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
9114 I915_WRITE(SOUTH_CHICKEN2, tmp);
9116 if (wait_for_us(I915_READ(SOUTH_CHICKEN2) &
9117 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
9118 DRM_ERROR("FDI mPHY reset assert timeout\n");
9120 tmp = I915_READ(SOUTH_CHICKEN2);
9121 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
9122 I915_WRITE(SOUTH_CHICKEN2, tmp);
9124 if (wait_for_us((I915_READ(SOUTH_CHICKEN2) &
9125 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
9126 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
9129 /* WaMPhyProgramming:hsw */
9130 static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
9134 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
9135 tmp &= ~(0xFF << 24);
9136 tmp |= (0x12 << 24);
9137 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
9139 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
9141 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
9143 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
9145 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
9147 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
9148 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
9149 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
9151 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
9152 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
9153 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
9155 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
9158 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
9160 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
9163 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
9165 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
9168 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
9170 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
9173 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
9175 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
9176 tmp &= ~(0xFF << 16);
9177 tmp |= (0x1C << 16);
9178 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
9180 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
9181 tmp &= ~(0xFF << 16);
9182 tmp |= (0x1C << 16);
9183 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
9185 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
9187 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
9189 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
9191 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
9193 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
9194 tmp &= ~(0xF << 28);
9196 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
9198 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
9199 tmp &= ~(0xF << 28);
9201 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
9204 /* Implements 3 different sequences from BSpec chapter "Display iCLK
9205 * Programming" based on the parameters passed:
9206 * - Sequence to enable CLKOUT_DP
9207 * - Sequence to enable CLKOUT_DP without spread
9208 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
9210 static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
9213 struct drm_i915_private *dev_priv = to_i915(dev);
9216 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
9218 if (WARN(HAS_PCH_LPT_LP(dev_priv) &&
9219 with_fdi, "LP PCH doesn't have FDI\n"))
9222 mutex_lock(&dev_priv->sb_lock);
9224 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
9225 tmp &= ~SBI_SSCCTL_DISABLE;
9226 tmp |= SBI_SSCCTL_PATHALT;
9227 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
9232 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
9233 tmp &= ~SBI_SSCCTL_PATHALT;
9234 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
9237 lpt_reset_fdi_mphy(dev_priv);
9238 lpt_program_fdi_mphy(dev_priv);
9242 reg = HAS_PCH_LPT_LP(dev_priv) ? SBI_GEN0 : SBI_DBUFF0;
9243 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
9244 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
9245 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
9247 mutex_unlock(&dev_priv->sb_lock);
9250 /* Sequence to disable CLKOUT_DP */
9251 static void lpt_disable_clkout_dp(struct drm_device *dev)
9253 struct drm_i915_private *dev_priv = to_i915(dev);
9256 mutex_lock(&dev_priv->sb_lock);
9258 reg = HAS_PCH_LPT_LP(dev_priv) ? SBI_GEN0 : SBI_DBUFF0;
9259 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
9260 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
9261 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
9263 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
9264 if (!(tmp & SBI_SSCCTL_DISABLE)) {
9265 if (!(tmp & SBI_SSCCTL_PATHALT)) {
9266 tmp |= SBI_SSCCTL_PATHALT;
9267 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
9270 tmp |= SBI_SSCCTL_DISABLE;
9271 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
9274 mutex_unlock(&dev_priv->sb_lock);
9277 #define BEND_IDX(steps) ((50 + (steps)) / 5)
9279 static const uint16_t sscdivintphase[] = {
9280 [BEND_IDX( 50)] = 0x3B23,
9281 [BEND_IDX( 45)] = 0x3B23,
9282 [BEND_IDX( 40)] = 0x3C23,
9283 [BEND_IDX( 35)] = 0x3C23,
9284 [BEND_IDX( 30)] = 0x3D23,
9285 [BEND_IDX( 25)] = 0x3D23,
9286 [BEND_IDX( 20)] = 0x3E23,
9287 [BEND_IDX( 15)] = 0x3E23,
9288 [BEND_IDX( 10)] = 0x3F23,
9289 [BEND_IDX( 5)] = 0x3F23,
9290 [BEND_IDX( 0)] = 0x0025,
9291 [BEND_IDX( -5)] = 0x0025,
9292 [BEND_IDX(-10)] = 0x0125,
9293 [BEND_IDX(-15)] = 0x0125,
9294 [BEND_IDX(-20)] = 0x0225,
9295 [BEND_IDX(-25)] = 0x0225,
9296 [BEND_IDX(-30)] = 0x0325,
9297 [BEND_IDX(-35)] = 0x0325,
9298 [BEND_IDX(-40)] = 0x0425,
9299 [BEND_IDX(-45)] = 0x0425,
9300 [BEND_IDX(-50)] = 0x0525,
9305 * steps -50 to 50 inclusive, in steps of 5
9306 * < 0 slow down the clock, > 0 speed up the clock, 0 == no bend (135MHz)
9307 * change in clock period = -(steps / 10) * 5.787 ps
9309 static void lpt_bend_clkout_dp(struct drm_i915_private *dev_priv, int steps)
9312 int idx = BEND_IDX(steps);
9314 if (WARN_ON(steps % 5 != 0))
9317 if (WARN_ON(idx >= ARRAY_SIZE(sscdivintphase)))
9320 mutex_lock(&dev_priv->sb_lock);
9322 if (steps % 10 != 0)
9326 intel_sbi_write(dev_priv, SBI_SSCDITHPHASE, tmp, SBI_ICLK);
9328 tmp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE, SBI_ICLK);
9330 tmp |= sscdivintphase[idx];
9331 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE, tmp, SBI_ICLK);
9333 mutex_unlock(&dev_priv->sb_lock);
9338 static void lpt_init_pch_refclk(struct drm_device *dev)
9340 struct intel_encoder *encoder;
9341 bool has_vga = false;
9343 for_each_intel_encoder(dev, encoder) {
9344 switch (encoder->type) {
9345 case INTEL_OUTPUT_ANALOG:
9354 lpt_bend_clkout_dp(to_i915(dev), 0);
9355 lpt_enable_clkout_dp(dev, true, true);
9357 lpt_disable_clkout_dp(dev);
9362 * Initialize reference clocks when the driver loads
9364 void intel_init_pch_refclk(struct drm_device *dev)
9366 struct drm_i915_private *dev_priv = to_i915(dev);
9368 if (HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv))
9369 ironlake_init_pch_refclk(dev);
9370 else if (HAS_PCH_LPT(dev_priv))
9371 lpt_init_pch_refclk(dev);
9374 static void ironlake_set_pipeconf(struct drm_crtc *crtc)
9376 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
9377 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9378 int pipe = intel_crtc->pipe;
9383 switch (intel_crtc->config->pipe_bpp) {
9385 val |= PIPECONF_6BPC;
9388 val |= PIPECONF_8BPC;
9391 val |= PIPECONF_10BPC;
9394 val |= PIPECONF_12BPC;
9397 /* Case prevented by intel_choose_pipe_bpp_dither. */
9401 if (intel_crtc->config->dither)
9402 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
9404 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
9405 val |= PIPECONF_INTERLACED_ILK;
9407 val |= PIPECONF_PROGRESSIVE;
9409 if (intel_crtc->config->limited_color_range)
9410 val |= PIPECONF_COLOR_RANGE_SELECT;
9412 I915_WRITE(PIPECONF(pipe), val);
9413 POSTING_READ(PIPECONF(pipe));
9416 static void haswell_set_pipeconf(struct drm_crtc *crtc)
9418 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
9419 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9420 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
9423 if (IS_HASWELL(dev_priv) && intel_crtc->config->dither)
9424 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
9426 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
9427 val |= PIPECONF_INTERLACED_ILK;
9429 val |= PIPECONF_PROGRESSIVE;
9431 I915_WRITE(PIPECONF(cpu_transcoder), val);
9432 POSTING_READ(PIPECONF(cpu_transcoder));
9435 static void haswell_set_pipemisc(struct drm_crtc *crtc)
9437 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
9438 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9440 if (IS_BROADWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 9) {
9443 switch (intel_crtc->config->pipe_bpp) {
9445 val |= PIPEMISC_DITHER_6_BPC;
9448 val |= PIPEMISC_DITHER_8_BPC;
9451 val |= PIPEMISC_DITHER_10_BPC;
9454 val |= PIPEMISC_DITHER_12_BPC;
9457 /* Case prevented by pipe_config_set_bpp. */
9461 if (intel_crtc->config->dither)
9462 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
9464 I915_WRITE(PIPEMISC(intel_crtc->pipe), val);
9468 int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
9471 * Account for spread spectrum to avoid
9472 * oversubscribing the link. Max center spread
9473 * is 2.5%; use 5% for safety's sake.
9475 u32 bps = target_clock * bpp * 21 / 20;
9476 return DIV_ROUND_UP(bps, link_bw * 8);
9479 static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
9481 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
9484 static void ironlake_compute_dpll(struct intel_crtc *intel_crtc,
9485 struct intel_crtc_state *crtc_state,
9486 struct dpll *reduced_clock)
9488 struct drm_crtc *crtc = &intel_crtc->base;
9489 struct drm_device *dev = crtc->dev;
9490 struct drm_i915_private *dev_priv = to_i915(dev);
9494 /* Enable autotuning of the PLL clock (if permissible) */
9496 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
9497 if ((intel_panel_use_ssc(dev_priv) &&
9498 dev_priv->vbt.lvds_ssc_freq == 100000) ||
9499 (HAS_PCH_IBX(dev_priv) && intel_is_dual_link_lvds(dev)))
9501 } else if (crtc_state->sdvo_tv_clock)
9504 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
9506 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
9509 if (reduced_clock) {
9510 fp2 = i9xx_dpll_compute_fp(reduced_clock);
9512 if (reduced_clock->m < factor * reduced_clock->n)
9520 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS))
9521 dpll |= DPLLB_MODE_LVDS;
9523 dpll |= DPLLB_MODE_DAC_SERIAL;
9525 dpll |= (crtc_state->pixel_multiplier - 1)
9526 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
9528 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_SDVO) ||
9529 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI))
9530 dpll |= DPLL_SDVO_HIGH_SPEED;
9532 if (intel_crtc_has_dp_encoder(crtc_state))
9533 dpll |= DPLL_SDVO_HIGH_SPEED;
9536 * The high speed IO clock is only really required for
9537 * SDVO/HDMI/DP, but we also enable it for CRT to make it
9538 * possible to share the DPLL between CRT and HDMI. Enabling
9539 * the clock needlessly does no real harm, except use up a
9540 * bit of power potentially.
9542 * We'll limit this to IVB with 3 pipes, since it has only two
9543 * DPLLs and so DPLL sharing is the only way to get three pipes
9544 * driving PCH ports at the same time. On SNB we could do this,
9545 * and potentially avoid enabling the second DPLL, but it's not
9546 * clear if it''s a win or loss power wise. No point in doing
9547 * this on ILK at all since it has a fixed DPLL<->pipe mapping.
9549 if (INTEL_INFO(dev_priv)->num_pipes == 3 &&
9550 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_ANALOG))
9551 dpll |= DPLL_SDVO_HIGH_SPEED;
9553 /* compute bitmask from p1 value */
9554 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
9556 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
9558 switch (crtc_state->dpll.p2) {
9560 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
9563 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
9566 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
9569 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
9573 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
9574 intel_panel_use_ssc(dev_priv))
9575 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
9577 dpll |= PLL_REF_INPUT_DREFCLK;
9579 dpll |= DPLL_VCO_ENABLE;
9581 crtc_state->dpll_hw_state.dpll = dpll;
9582 crtc_state->dpll_hw_state.fp0 = fp;
9583 crtc_state->dpll_hw_state.fp1 = fp2;
9586 static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
9587 struct intel_crtc_state *crtc_state)
9589 struct drm_device *dev = crtc->base.dev;
9590 struct drm_i915_private *dev_priv = to_i915(dev);
9591 struct dpll reduced_clock;
9592 bool has_reduced_clock = false;
9593 struct intel_shared_dpll *pll;
9594 const struct intel_limit *limit;
9595 int refclk = 120000;
9597 memset(&crtc_state->dpll_hw_state, 0,
9598 sizeof(crtc_state->dpll_hw_state));
9600 crtc->lowfreq_avail = false;
9602 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
9603 if (!crtc_state->has_pch_encoder)
9606 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
9607 if (intel_panel_use_ssc(dev_priv)) {
9608 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
9609 dev_priv->vbt.lvds_ssc_freq);
9610 refclk = dev_priv->vbt.lvds_ssc_freq;
9613 if (intel_is_dual_link_lvds(dev)) {
9614 if (refclk == 100000)
9615 limit = &intel_limits_ironlake_dual_lvds_100m;
9617 limit = &intel_limits_ironlake_dual_lvds;
9619 if (refclk == 100000)
9620 limit = &intel_limits_ironlake_single_lvds_100m;
9622 limit = &intel_limits_ironlake_single_lvds;
9625 limit = &intel_limits_ironlake_dac;
9628 if (!crtc_state->clock_set &&
9629 !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
9630 refclk, NULL, &crtc_state->dpll)) {
9631 DRM_ERROR("Couldn't find PLL settings for mode!\n");
9635 ironlake_compute_dpll(crtc, crtc_state,
9636 has_reduced_clock ? &reduced_clock : NULL);
9638 pll = intel_get_shared_dpll(crtc, crtc_state, NULL);
9640 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
9641 pipe_name(crtc->pipe));
9645 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
9647 crtc->lowfreq_avail = true;
9652 static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
9653 struct intel_link_m_n *m_n)
9655 struct drm_device *dev = crtc->base.dev;
9656 struct drm_i915_private *dev_priv = to_i915(dev);
9657 enum pipe pipe = crtc->pipe;
9659 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
9660 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
9661 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
9663 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
9664 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
9665 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9668 static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
9669 enum transcoder transcoder,
9670 struct intel_link_m_n *m_n,
9671 struct intel_link_m_n *m2_n2)
9673 struct drm_device *dev = crtc->base.dev;
9674 struct drm_i915_private *dev_priv = to_i915(dev);
9675 enum pipe pipe = crtc->pipe;
9677 if (INTEL_INFO(dev)->gen >= 5) {
9678 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
9679 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
9680 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
9682 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
9683 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
9684 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9685 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
9686 * gen < 8) and if DRRS is supported (to make sure the
9687 * registers are not unnecessarily read).
9689 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
9690 crtc->config->has_drrs) {
9691 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
9692 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
9693 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
9695 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
9696 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
9697 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9700 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
9701 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
9702 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
9704 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
9705 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
9706 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9710 void intel_dp_get_m_n(struct intel_crtc *crtc,
9711 struct intel_crtc_state *pipe_config)
9713 if (pipe_config->has_pch_encoder)
9714 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
9716 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
9717 &pipe_config->dp_m_n,
9718 &pipe_config->dp_m2_n2);
9721 static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
9722 struct intel_crtc_state *pipe_config)
9724 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
9725 &pipe_config->fdi_m_n, NULL);
9728 static void skylake_get_pfit_config(struct intel_crtc *crtc,
9729 struct intel_crtc_state *pipe_config)
9731 struct drm_device *dev = crtc->base.dev;
9732 struct drm_i915_private *dev_priv = to_i915(dev);
9733 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
9734 uint32_t ps_ctrl = 0;
9738 /* find scaler attached to this pipe */
9739 for (i = 0; i < crtc->num_scalers; i++) {
9740 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
9741 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
9743 pipe_config->pch_pfit.enabled = true;
9744 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
9745 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
9750 scaler_state->scaler_id = id;
9752 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
9754 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
9759 skylake_get_initial_plane_config(struct intel_crtc *crtc,
9760 struct intel_initial_plane_config *plane_config)
9762 struct drm_device *dev = crtc->base.dev;
9763 struct drm_i915_private *dev_priv = to_i915(dev);
9764 u32 val, base, offset, stride_mult, tiling;
9765 int pipe = crtc->pipe;
9766 int fourcc, pixel_format;
9767 unsigned int aligned_height;
9768 struct drm_framebuffer *fb;
9769 struct intel_framebuffer *intel_fb;
9771 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
9773 DRM_DEBUG_KMS("failed to alloc fb\n");
9777 fb = &intel_fb->base;
9779 val = I915_READ(PLANE_CTL(pipe, 0));
9780 if (!(val & PLANE_CTL_ENABLE))
9783 pixel_format = val & PLANE_CTL_FORMAT_MASK;
9784 fourcc = skl_format_to_fourcc(pixel_format,
9785 val & PLANE_CTL_ORDER_RGBX,
9786 val & PLANE_CTL_ALPHA_MASK);
9787 fb->pixel_format = fourcc;
9788 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9790 tiling = val & PLANE_CTL_TILED_MASK;
9792 case PLANE_CTL_TILED_LINEAR:
9793 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
9795 case PLANE_CTL_TILED_X:
9796 plane_config->tiling = I915_TILING_X;
9797 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9799 case PLANE_CTL_TILED_Y:
9800 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
9802 case PLANE_CTL_TILED_YF:
9803 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
9806 MISSING_CASE(tiling);
9810 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
9811 plane_config->base = base;
9813 offset = I915_READ(PLANE_OFFSET(pipe, 0));
9815 val = I915_READ(PLANE_SIZE(pipe, 0));
9816 fb->height = ((val >> 16) & 0xfff) + 1;
9817 fb->width = ((val >> 0) & 0x1fff) + 1;
9819 val = I915_READ(PLANE_STRIDE(pipe, 0));
9820 stride_mult = intel_fb_stride_alignment(dev_priv, fb->modifier[0],
9822 fb->pitches[0] = (val & 0x3ff) * stride_mult;
9824 aligned_height = intel_fb_align_height(dev, fb->height,
9828 plane_config->size = fb->pitches[0] * aligned_height;
9830 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9831 pipe_name(pipe), fb->width, fb->height,
9832 fb->bits_per_pixel, base, fb->pitches[0],
9833 plane_config->size);
9835 plane_config->fb = intel_fb;
9842 static void ironlake_get_pfit_config(struct intel_crtc *crtc,
9843 struct intel_crtc_state *pipe_config)
9845 struct drm_device *dev = crtc->base.dev;
9846 struct drm_i915_private *dev_priv = to_i915(dev);
9849 tmp = I915_READ(PF_CTL(crtc->pipe));
9851 if (tmp & PF_ENABLE) {
9852 pipe_config->pch_pfit.enabled = true;
9853 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
9854 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
9856 /* We currently do not free assignements of panel fitters on
9857 * ivb/hsw (since we don't use the higher upscaling modes which
9858 * differentiates them) so just WARN about this case for now. */
9859 if (IS_GEN7(dev_priv)) {
9860 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
9861 PF_PIPE_SEL_IVB(crtc->pipe));
9867 ironlake_get_initial_plane_config(struct intel_crtc *crtc,
9868 struct intel_initial_plane_config *plane_config)
9870 struct drm_device *dev = crtc->base.dev;
9871 struct drm_i915_private *dev_priv = to_i915(dev);
9872 u32 val, base, offset;
9873 int pipe = crtc->pipe;
9874 int fourcc, pixel_format;
9875 unsigned int aligned_height;
9876 struct drm_framebuffer *fb;
9877 struct intel_framebuffer *intel_fb;
9879 val = I915_READ(DSPCNTR(pipe));
9880 if (!(val & DISPLAY_PLANE_ENABLE))
9883 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
9885 DRM_DEBUG_KMS("failed to alloc fb\n");
9889 fb = &intel_fb->base;
9891 if (INTEL_INFO(dev)->gen >= 4) {
9892 if (val & DISPPLANE_TILED) {
9893 plane_config->tiling = I915_TILING_X;
9894 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9898 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
9899 fourcc = i9xx_format_to_fourcc(pixel_format);
9900 fb->pixel_format = fourcc;
9901 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9903 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
9904 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
9905 offset = I915_READ(DSPOFFSET(pipe));
9907 if (plane_config->tiling)
9908 offset = I915_READ(DSPTILEOFF(pipe));
9910 offset = I915_READ(DSPLINOFF(pipe));
9912 plane_config->base = base;
9914 val = I915_READ(PIPESRC(pipe));
9915 fb->width = ((val >> 16) & 0xfff) + 1;
9916 fb->height = ((val >> 0) & 0xfff) + 1;
9918 val = I915_READ(DSPSTRIDE(pipe));
9919 fb->pitches[0] = val & 0xffffffc0;
9921 aligned_height = intel_fb_align_height(dev, fb->height,
9925 plane_config->size = fb->pitches[0] * aligned_height;
9927 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9928 pipe_name(pipe), fb->width, fb->height,
9929 fb->bits_per_pixel, base, fb->pitches[0],
9930 plane_config->size);
9932 plane_config->fb = intel_fb;
9935 static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
9936 struct intel_crtc_state *pipe_config)
9938 struct drm_device *dev = crtc->base.dev;
9939 struct drm_i915_private *dev_priv = to_i915(dev);
9940 enum intel_display_power_domain power_domain;
9944 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
9945 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
9948 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
9949 pipe_config->shared_dpll = NULL;
9952 tmp = I915_READ(PIPECONF(crtc->pipe));
9953 if (!(tmp & PIPECONF_ENABLE))
9956 switch (tmp & PIPECONF_BPC_MASK) {
9958 pipe_config->pipe_bpp = 18;
9961 pipe_config->pipe_bpp = 24;
9963 case PIPECONF_10BPC:
9964 pipe_config->pipe_bpp = 30;
9966 case PIPECONF_12BPC:
9967 pipe_config->pipe_bpp = 36;
9973 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
9974 pipe_config->limited_color_range = true;
9976 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
9977 struct intel_shared_dpll *pll;
9978 enum intel_dpll_id pll_id;
9980 pipe_config->has_pch_encoder = true;
9982 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
9983 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9984 FDI_DP_PORT_WIDTH_SHIFT) + 1;
9986 ironlake_get_fdi_m_n_config(crtc, pipe_config);
9988 if (HAS_PCH_IBX(dev_priv)) {
9990 * The pipe->pch transcoder and pch transcoder->pll
9993 pll_id = (enum intel_dpll_id) crtc->pipe;
9995 tmp = I915_READ(PCH_DPLL_SEL);
9996 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
9997 pll_id = DPLL_ID_PCH_PLL_B;
9999 pll_id= DPLL_ID_PCH_PLL_A;
10002 pipe_config->shared_dpll =
10003 intel_get_shared_dpll_by_id(dev_priv, pll_id);
10004 pll = pipe_config->shared_dpll;
10006 WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll,
10007 &pipe_config->dpll_hw_state));
10009 tmp = pipe_config->dpll_hw_state.dpll;
10010 pipe_config->pixel_multiplier =
10011 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
10012 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
10014 ironlake_pch_clock_get(crtc, pipe_config);
10016 pipe_config->pixel_multiplier = 1;
10019 intel_get_pipe_timings(crtc, pipe_config);
10020 intel_get_pipe_src_size(crtc, pipe_config);
10022 ironlake_get_pfit_config(crtc, pipe_config);
10027 intel_display_power_put(dev_priv, power_domain);
10032 static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
10034 struct drm_device *dev = &dev_priv->drm;
10035 struct intel_crtc *crtc;
10037 for_each_intel_crtc(dev, crtc)
10038 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
10039 pipe_name(crtc->pipe));
10041 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
10042 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
10043 I915_STATE_WARN(I915_READ(WRPLL_CTL(0)) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
10044 I915_STATE_WARN(I915_READ(WRPLL_CTL(1)) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
10045 I915_STATE_WARN(I915_READ(PP_STATUS(0)) & PP_ON, "Panel power on\n");
10046 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
10047 "CPU PWM1 enabled\n");
10048 if (IS_HASWELL(dev_priv))
10049 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
10050 "CPU PWM2 enabled\n");
10051 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
10052 "PCH PWM1 enabled\n");
10053 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
10054 "Utility pin enabled\n");
10055 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
10058 * In theory we can still leave IRQs enabled, as long as only the HPD
10059 * interrupts remain enabled. We used to check for that, but since it's
10060 * gen-specific and since we only disable LCPLL after we fully disable
10061 * the interrupts, the check below should be enough.
10063 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
10066 static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
10068 if (IS_HASWELL(dev_priv))
10069 return I915_READ(D_COMP_HSW);
10071 return I915_READ(D_COMP_BDW);
10074 static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
10076 if (IS_HASWELL(dev_priv)) {
10077 mutex_lock(&dev_priv->rps.hw_lock);
10078 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
10080 DRM_DEBUG_KMS("Failed to write to D_COMP\n");
10081 mutex_unlock(&dev_priv->rps.hw_lock);
10083 I915_WRITE(D_COMP_BDW, val);
10084 POSTING_READ(D_COMP_BDW);
10089 * This function implements pieces of two sequences from BSpec:
10090 * - Sequence for display software to disable LCPLL
10091 * - Sequence for display software to allow package C8+
10092 * The steps implemented here are just the steps that actually touch the LCPLL
10093 * register. Callers should take care of disabling all the display engine
10094 * functions, doing the mode unset, fixing interrupts, etc.
10096 static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
10097 bool switch_to_fclk, bool allow_power_down)
10101 assert_can_disable_lcpll(dev_priv);
10103 val = I915_READ(LCPLL_CTL);
10105 if (switch_to_fclk) {
10106 val |= LCPLL_CD_SOURCE_FCLK;
10107 I915_WRITE(LCPLL_CTL, val);
10109 if (wait_for_us(I915_READ(LCPLL_CTL) &
10110 LCPLL_CD_SOURCE_FCLK_DONE, 1))
10111 DRM_ERROR("Switching to FCLK failed\n");
10113 val = I915_READ(LCPLL_CTL);
10116 val |= LCPLL_PLL_DISABLE;
10117 I915_WRITE(LCPLL_CTL, val);
10118 POSTING_READ(LCPLL_CTL);
10120 if (intel_wait_for_register(dev_priv, LCPLL_CTL, LCPLL_PLL_LOCK, 0, 1))
10121 DRM_ERROR("LCPLL still locked\n");
10123 val = hsw_read_dcomp(dev_priv);
10124 val |= D_COMP_COMP_DISABLE;
10125 hsw_write_dcomp(dev_priv, val);
10128 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
10130 DRM_ERROR("D_COMP RCOMP still in progress\n");
10132 if (allow_power_down) {
10133 val = I915_READ(LCPLL_CTL);
10134 val |= LCPLL_POWER_DOWN_ALLOW;
10135 I915_WRITE(LCPLL_CTL, val);
10136 POSTING_READ(LCPLL_CTL);
10141 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
10144 static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
10148 val = I915_READ(LCPLL_CTL);
10150 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
10151 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
10155 * Make sure we're not on PC8 state before disabling PC8, otherwise
10156 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
10158 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
10160 if (val & LCPLL_POWER_DOWN_ALLOW) {
10161 val &= ~LCPLL_POWER_DOWN_ALLOW;
10162 I915_WRITE(LCPLL_CTL, val);
10163 POSTING_READ(LCPLL_CTL);
10166 val = hsw_read_dcomp(dev_priv);
10167 val |= D_COMP_COMP_FORCE;
10168 val &= ~D_COMP_COMP_DISABLE;
10169 hsw_write_dcomp(dev_priv, val);
10171 val = I915_READ(LCPLL_CTL);
10172 val &= ~LCPLL_PLL_DISABLE;
10173 I915_WRITE(LCPLL_CTL, val);
10175 if (intel_wait_for_register(dev_priv,
10176 LCPLL_CTL, LCPLL_PLL_LOCK, LCPLL_PLL_LOCK,
10178 DRM_ERROR("LCPLL not locked yet\n");
10180 if (val & LCPLL_CD_SOURCE_FCLK) {
10181 val = I915_READ(LCPLL_CTL);
10182 val &= ~LCPLL_CD_SOURCE_FCLK;
10183 I915_WRITE(LCPLL_CTL, val);
10185 if (wait_for_us((I915_READ(LCPLL_CTL) &
10186 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
10187 DRM_ERROR("Switching back to LCPLL failed\n");
10190 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
10191 intel_update_cdclk(&dev_priv->drm);
10195 * Package states C8 and deeper are really deep PC states that can only be
10196 * reached when all the devices on the system allow it, so even if the graphics
10197 * device allows PC8+, it doesn't mean the system will actually get to these
10198 * states. Our driver only allows PC8+ when going into runtime PM.
10200 * The requirements for PC8+ are that all the outputs are disabled, the power
10201 * well is disabled and most interrupts are disabled, and these are also
10202 * requirements for runtime PM. When these conditions are met, we manually do
10203 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
10204 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
10205 * hang the machine.
10207 * When we really reach PC8 or deeper states (not just when we allow it) we lose
10208 * the state of some registers, so when we come back from PC8+ we need to
10209 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
10210 * need to take care of the registers kept by RC6. Notice that this happens even
10211 * if we don't put the device in PCI D3 state (which is what currently happens
10212 * because of the runtime PM support).
10214 * For more, read "Display Sequences for Package C8" on the hardware
10217 void hsw_enable_pc8(struct drm_i915_private *dev_priv)
10219 struct drm_device *dev = &dev_priv->drm;
10222 DRM_DEBUG_KMS("Enabling package C8+\n");
10224 if (HAS_PCH_LPT_LP(dev_priv)) {
10225 val = I915_READ(SOUTH_DSPCLK_GATE_D);
10226 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
10227 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
10230 lpt_disable_clkout_dp(dev);
10231 hsw_disable_lcpll(dev_priv, true, true);
10234 void hsw_disable_pc8(struct drm_i915_private *dev_priv)
10236 struct drm_device *dev = &dev_priv->drm;
10239 DRM_DEBUG_KMS("Disabling package C8+\n");
10241 hsw_restore_lcpll(dev_priv);
10242 lpt_init_pch_refclk(dev);
10244 if (HAS_PCH_LPT_LP(dev_priv)) {
10245 val = I915_READ(SOUTH_DSPCLK_GATE_D);
10246 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
10247 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
10251 static void bxt_modeset_commit_cdclk(struct drm_atomic_state *old_state)
10253 struct drm_device *dev = old_state->dev;
10254 struct intel_atomic_state *old_intel_state =
10255 to_intel_atomic_state(old_state);
10256 unsigned int req_cdclk = old_intel_state->dev_cdclk;
10258 bxt_set_cdclk(to_i915(dev), req_cdclk);
10261 /* compute the max rate for new configuration */
10262 static int ilk_max_pixel_rate(struct drm_atomic_state *state)
10264 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
10265 struct drm_i915_private *dev_priv = to_i915(state->dev);
10266 struct drm_crtc *crtc;
10267 struct drm_crtc_state *cstate;
10268 struct intel_crtc_state *crtc_state;
10269 unsigned max_pixel_rate = 0, i;
10272 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
10273 sizeof(intel_state->min_pixclk));
10275 for_each_crtc_in_state(state, crtc, cstate, i) {
10278 crtc_state = to_intel_crtc_state(cstate);
10279 if (!crtc_state->base.enable) {
10280 intel_state->min_pixclk[i] = 0;
10284 pixel_rate = ilk_pipe_pixel_rate(crtc_state);
10286 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
10287 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
10288 pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95);
10290 intel_state->min_pixclk[i] = pixel_rate;
10293 for_each_pipe(dev_priv, pipe)
10294 max_pixel_rate = max(intel_state->min_pixclk[pipe], max_pixel_rate);
10296 return max_pixel_rate;
10299 static void broadwell_set_cdclk(struct drm_device *dev, int cdclk)
10301 struct drm_i915_private *dev_priv = to_i915(dev);
10302 uint32_t val, data;
10305 if (WARN((I915_READ(LCPLL_CTL) &
10306 (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK |
10307 LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE |
10308 LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW |
10309 LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK,
10310 "trying to change cdclk frequency with cdclk not enabled\n"))
10313 mutex_lock(&dev_priv->rps.hw_lock);
10314 ret = sandybridge_pcode_write(dev_priv,
10315 BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
10316 mutex_unlock(&dev_priv->rps.hw_lock);
10318 DRM_ERROR("failed to inform pcode about cdclk change\n");
10322 val = I915_READ(LCPLL_CTL);
10323 val |= LCPLL_CD_SOURCE_FCLK;
10324 I915_WRITE(LCPLL_CTL, val);
10326 if (wait_for_us(I915_READ(LCPLL_CTL) &
10327 LCPLL_CD_SOURCE_FCLK_DONE, 1))
10328 DRM_ERROR("Switching to FCLK failed\n");
10330 val = I915_READ(LCPLL_CTL);
10331 val &= ~LCPLL_CLK_FREQ_MASK;
10335 val |= LCPLL_CLK_FREQ_450;
10339 val |= LCPLL_CLK_FREQ_54O_BDW;
10343 val |= LCPLL_CLK_FREQ_337_5_BDW;
10347 val |= LCPLL_CLK_FREQ_675_BDW;
10351 WARN(1, "invalid cdclk frequency\n");
10355 I915_WRITE(LCPLL_CTL, val);
10357 val = I915_READ(LCPLL_CTL);
10358 val &= ~LCPLL_CD_SOURCE_FCLK;
10359 I915_WRITE(LCPLL_CTL, val);
10361 if (wait_for_us((I915_READ(LCPLL_CTL) &
10362 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
10363 DRM_ERROR("Switching back to LCPLL failed\n");
10365 mutex_lock(&dev_priv->rps.hw_lock);
10366 sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data);
10367 mutex_unlock(&dev_priv->rps.hw_lock);
10369 I915_WRITE(CDCLK_FREQ, DIV_ROUND_CLOSEST(cdclk, 1000) - 1);
10371 intel_update_cdclk(dev);
10373 WARN(cdclk != dev_priv->cdclk_freq,
10374 "cdclk requested %d kHz but got %d kHz\n",
10375 cdclk, dev_priv->cdclk_freq);
10378 static int broadwell_calc_cdclk(int max_pixclk)
10380 if (max_pixclk > 540000)
10382 else if (max_pixclk > 450000)
10384 else if (max_pixclk > 337500)
10390 static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state)
10392 struct drm_i915_private *dev_priv = to_i915(state->dev);
10393 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
10394 int max_pixclk = ilk_max_pixel_rate(state);
10398 * FIXME should also account for plane ratio
10399 * once 64bpp pixel formats are supported.
10401 cdclk = broadwell_calc_cdclk(max_pixclk);
10403 if (cdclk > dev_priv->max_cdclk_freq) {
10404 DRM_DEBUG_KMS("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
10405 cdclk, dev_priv->max_cdclk_freq);
10409 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
10410 if (!intel_state->active_crtcs)
10411 intel_state->dev_cdclk = broadwell_calc_cdclk(0);
10416 static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state)
10418 struct drm_device *dev = old_state->dev;
10419 struct intel_atomic_state *old_intel_state =
10420 to_intel_atomic_state(old_state);
10421 unsigned req_cdclk = old_intel_state->dev_cdclk;
10423 broadwell_set_cdclk(dev, req_cdclk);
10426 static int skl_modeset_calc_cdclk(struct drm_atomic_state *state)
10428 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
10429 struct drm_i915_private *dev_priv = to_i915(state->dev);
10430 const int max_pixclk = ilk_max_pixel_rate(state);
10431 int vco = intel_state->cdclk_pll_vco;
10435 * FIXME should also account for plane ratio
10436 * once 64bpp pixel formats are supported.
10438 cdclk = skl_calc_cdclk(max_pixclk, vco);
10441 * FIXME move the cdclk caclulation to
10442 * compute_config() so we can fail gracegully.
10444 if (cdclk > dev_priv->max_cdclk_freq) {
10445 DRM_ERROR("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
10446 cdclk, dev_priv->max_cdclk_freq);
10447 cdclk = dev_priv->max_cdclk_freq;
10450 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
10451 if (!intel_state->active_crtcs)
10452 intel_state->dev_cdclk = skl_calc_cdclk(0, vco);
10457 static void skl_modeset_commit_cdclk(struct drm_atomic_state *old_state)
10459 struct drm_i915_private *dev_priv = to_i915(old_state->dev);
10460 struct intel_atomic_state *intel_state = to_intel_atomic_state(old_state);
10461 unsigned int req_cdclk = intel_state->dev_cdclk;
10462 unsigned int req_vco = intel_state->cdclk_pll_vco;
10464 skl_set_cdclk(dev_priv, req_cdclk, req_vco);
10467 static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
10468 struct intel_crtc_state *crtc_state)
10470 if (!intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DSI)) {
10471 if (!intel_ddi_pll_select(crtc, crtc_state))
10475 crtc->lowfreq_avail = false;
10480 static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
10482 struct intel_crtc_state *pipe_config)
10484 enum intel_dpll_id id;
10488 id = DPLL_ID_SKL_DPLL0;
10491 id = DPLL_ID_SKL_DPLL1;
10494 id = DPLL_ID_SKL_DPLL2;
10497 DRM_ERROR("Incorrect port type\n");
10501 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
10504 static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
10506 struct intel_crtc_state *pipe_config)
10508 enum intel_dpll_id id;
10511 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
10512 id = temp >> (port * 3 + 1);
10514 if (WARN_ON(id < SKL_DPLL0 || id > SKL_DPLL3))
10517 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
10520 static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
10522 struct intel_crtc_state *pipe_config)
10524 enum intel_dpll_id id;
10525 uint32_t ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
10527 switch (ddi_pll_sel) {
10528 case PORT_CLK_SEL_WRPLL1:
10529 id = DPLL_ID_WRPLL1;
10531 case PORT_CLK_SEL_WRPLL2:
10532 id = DPLL_ID_WRPLL2;
10534 case PORT_CLK_SEL_SPLL:
10537 case PORT_CLK_SEL_LCPLL_810:
10538 id = DPLL_ID_LCPLL_810;
10540 case PORT_CLK_SEL_LCPLL_1350:
10541 id = DPLL_ID_LCPLL_1350;
10543 case PORT_CLK_SEL_LCPLL_2700:
10544 id = DPLL_ID_LCPLL_2700;
10547 MISSING_CASE(ddi_pll_sel);
10549 case PORT_CLK_SEL_NONE:
10553 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
10556 static bool hsw_get_transcoder_state(struct intel_crtc *crtc,
10557 struct intel_crtc_state *pipe_config,
10558 unsigned long *power_domain_mask)
10560 struct drm_device *dev = crtc->base.dev;
10561 struct drm_i915_private *dev_priv = to_i915(dev);
10562 enum intel_display_power_domain power_domain;
10566 * The pipe->transcoder mapping is fixed with the exception of the eDP
10567 * transcoder handled below.
10569 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
10572 * XXX: Do intel_display_power_get_if_enabled before reading this (for
10573 * consistency and less surprising code; it's in always on power).
10575 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
10576 if (tmp & TRANS_DDI_FUNC_ENABLE) {
10577 enum pipe trans_edp_pipe;
10578 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
10580 WARN(1, "unknown pipe linked to edp transcoder\n");
10581 case TRANS_DDI_EDP_INPUT_A_ONOFF:
10582 case TRANS_DDI_EDP_INPUT_A_ON:
10583 trans_edp_pipe = PIPE_A;
10585 case TRANS_DDI_EDP_INPUT_B_ONOFF:
10586 trans_edp_pipe = PIPE_B;
10588 case TRANS_DDI_EDP_INPUT_C_ONOFF:
10589 trans_edp_pipe = PIPE_C;
10593 if (trans_edp_pipe == crtc->pipe)
10594 pipe_config->cpu_transcoder = TRANSCODER_EDP;
10597 power_domain = POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder);
10598 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
10600 *power_domain_mask |= BIT(power_domain);
10602 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
10604 return tmp & PIPECONF_ENABLE;
10607 static bool bxt_get_dsi_transcoder_state(struct intel_crtc *crtc,
10608 struct intel_crtc_state *pipe_config,
10609 unsigned long *power_domain_mask)
10611 struct drm_device *dev = crtc->base.dev;
10612 struct drm_i915_private *dev_priv = to_i915(dev);
10613 enum intel_display_power_domain power_domain;
10615 enum transcoder cpu_transcoder;
10618 for_each_port_masked(port, BIT(PORT_A) | BIT(PORT_C)) {
10619 if (port == PORT_A)
10620 cpu_transcoder = TRANSCODER_DSI_A;
10622 cpu_transcoder = TRANSCODER_DSI_C;
10624 power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
10625 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
10627 *power_domain_mask |= BIT(power_domain);
10630 * The PLL needs to be enabled with a valid divider
10631 * configuration, otherwise accessing DSI registers will hang
10632 * the machine. See BSpec North Display Engine
10633 * registers/MIPI[BXT]. We can break out here early, since we
10634 * need the same DSI PLL to be enabled for both DSI ports.
10636 if (!intel_dsi_pll_is_enabled(dev_priv))
10639 /* XXX: this works for video mode only */
10640 tmp = I915_READ(BXT_MIPI_PORT_CTRL(port));
10641 if (!(tmp & DPI_ENABLE))
10644 tmp = I915_READ(MIPI_CTRL(port));
10645 if ((tmp & BXT_PIPE_SELECT_MASK) != BXT_PIPE_SELECT(crtc->pipe))
10648 pipe_config->cpu_transcoder = cpu_transcoder;
10652 return transcoder_is_dsi(pipe_config->cpu_transcoder);
10655 static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
10656 struct intel_crtc_state *pipe_config)
10658 struct drm_device *dev = crtc->base.dev;
10659 struct drm_i915_private *dev_priv = to_i915(dev);
10660 struct intel_shared_dpll *pll;
10664 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
10666 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
10668 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
10669 skylake_get_ddi_pll(dev_priv, port, pipe_config);
10670 else if (IS_BROXTON(dev_priv))
10671 bxt_get_ddi_pll(dev_priv, port, pipe_config);
10673 haswell_get_ddi_pll(dev_priv, port, pipe_config);
10675 pll = pipe_config->shared_dpll;
10677 WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll,
10678 &pipe_config->dpll_hw_state));
10682 * Haswell has only FDI/PCH transcoder A. It is which is connected to
10683 * DDI E. So just check whether this pipe is wired to DDI E and whether
10684 * the PCH transcoder is on.
10686 if (INTEL_INFO(dev)->gen < 9 &&
10687 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
10688 pipe_config->has_pch_encoder = true;
10690 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
10691 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
10692 FDI_DP_PORT_WIDTH_SHIFT) + 1;
10694 ironlake_get_fdi_m_n_config(crtc, pipe_config);
10698 static bool haswell_get_pipe_config(struct intel_crtc *crtc,
10699 struct intel_crtc_state *pipe_config)
10701 struct drm_device *dev = crtc->base.dev;
10702 struct drm_i915_private *dev_priv = to_i915(dev);
10703 enum intel_display_power_domain power_domain;
10704 unsigned long power_domain_mask;
10707 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
10708 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
10710 power_domain_mask = BIT(power_domain);
10712 pipe_config->shared_dpll = NULL;
10714 active = hsw_get_transcoder_state(crtc, pipe_config, &power_domain_mask);
10716 if (IS_BROXTON(dev_priv) &&
10717 bxt_get_dsi_transcoder_state(crtc, pipe_config, &power_domain_mask)) {
10725 if (!transcoder_is_dsi(pipe_config->cpu_transcoder)) {
10726 haswell_get_ddi_port_state(crtc, pipe_config);
10727 intel_get_pipe_timings(crtc, pipe_config);
10730 intel_get_pipe_src_size(crtc, pipe_config);
10732 pipe_config->gamma_mode =
10733 I915_READ(GAMMA_MODE(crtc->pipe)) & GAMMA_MODE_MODE_MASK;
10735 if (INTEL_INFO(dev)->gen >= 9) {
10736 skl_init_scalers(dev, crtc, pipe_config);
10739 if (INTEL_INFO(dev)->gen >= 9) {
10740 pipe_config->scaler_state.scaler_id = -1;
10741 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
10744 power_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
10745 if (intel_display_power_get_if_enabled(dev_priv, power_domain)) {
10746 power_domain_mask |= BIT(power_domain);
10747 if (INTEL_INFO(dev)->gen >= 9)
10748 skylake_get_pfit_config(crtc, pipe_config);
10750 ironlake_get_pfit_config(crtc, pipe_config);
10753 if (IS_HASWELL(dev_priv))
10754 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
10755 (I915_READ(IPS_CTL) & IPS_ENABLE);
10757 if (pipe_config->cpu_transcoder != TRANSCODER_EDP &&
10758 !transcoder_is_dsi(pipe_config->cpu_transcoder)) {
10759 pipe_config->pixel_multiplier =
10760 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
10762 pipe_config->pixel_multiplier = 1;
10766 for_each_power_domain(power_domain, power_domain_mask)
10767 intel_display_power_put(dev_priv, power_domain);
10772 static void i845_update_cursor(struct drm_crtc *crtc, u32 base,
10773 const struct intel_plane_state *plane_state)
10775 struct drm_device *dev = crtc->dev;
10776 struct drm_i915_private *dev_priv = to_i915(dev);
10777 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10778 uint32_t cntl = 0, size = 0;
10780 if (plane_state && plane_state->base.visible) {
10781 unsigned int width = plane_state->base.crtc_w;
10782 unsigned int height = plane_state->base.crtc_h;
10783 unsigned int stride = roundup_pow_of_two(width) * 4;
10787 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
10798 cntl |= CURSOR_ENABLE |
10799 CURSOR_GAMMA_ENABLE |
10800 CURSOR_FORMAT_ARGB |
10801 CURSOR_STRIDE(stride);
10803 size = (height << 12) | width;
10806 if (intel_crtc->cursor_cntl != 0 &&
10807 (intel_crtc->cursor_base != base ||
10808 intel_crtc->cursor_size != size ||
10809 intel_crtc->cursor_cntl != cntl)) {
10810 /* On these chipsets we can only modify the base/size/stride
10811 * whilst the cursor is disabled.
10813 I915_WRITE(CURCNTR(PIPE_A), 0);
10814 POSTING_READ(CURCNTR(PIPE_A));
10815 intel_crtc->cursor_cntl = 0;
10818 if (intel_crtc->cursor_base != base) {
10819 I915_WRITE(CURBASE(PIPE_A), base);
10820 intel_crtc->cursor_base = base;
10823 if (intel_crtc->cursor_size != size) {
10824 I915_WRITE(CURSIZE, size);
10825 intel_crtc->cursor_size = size;
10828 if (intel_crtc->cursor_cntl != cntl) {
10829 I915_WRITE(CURCNTR(PIPE_A), cntl);
10830 POSTING_READ(CURCNTR(PIPE_A));
10831 intel_crtc->cursor_cntl = cntl;
10835 static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base,
10836 const struct intel_plane_state *plane_state)
10838 struct drm_device *dev = crtc->dev;
10839 struct drm_i915_private *dev_priv = to_i915(dev);
10840 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10841 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
10842 const struct skl_wm_values *wm = &dev_priv->wm.skl_results;
10843 const struct skl_plane_wm *p_wm =
10844 &cstate->wm.skl.optimal.planes[PLANE_CURSOR];
10845 int pipe = intel_crtc->pipe;
10848 if (INTEL_GEN(dev_priv) >= 9 && wm->dirty_pipes & drm_crtc_mask(crtc))
10849 skl_write_cursor_wm(intel_crtc, p_wm, &wm->ddb);
10851 if (plane_state && plane_state->base.visible) {
10852 cntl = MCURSOR_GAMMA_ENABLE;
10853 switch (plane_state->base.crtc_w) {
10855 cntl |= CURSOR_MODE_64_ARGB_AX;
10858 cntl |= CURSOR_MODE_128_ARGB_AX;
10861 cntl |= CURSOR_MODE_256_ARGB_AX;
10864 MISSING_CASE(plane_state->base.crtc_w);
10867 cntl |= pipe << 28; /* Connect to correct pipe */
10869 if (HAS_DDI(dev_priv))
10870 cntl |= CURSOR_PIPE_CSC_ENABLE;
10872 if (plane_state->base.rotation == DRM_ROTATE_180)
10873 cntl |= CURSOR_ROTATE_180;
10876 if (intel_crtc->cursor_cntl != cntl) {
10877 I915_WRITE(CURCNTR(pipe), cntl);
10878 POSTING_READ(CURCNTR(pipe));
10879 intel_crtc->cursor_cntl = cntl;
10882 /* and commit changes on next vblank */
10883 I915_WRITE(CURBASE(pipe), base);
10884 POSTING_READ(CURBASE(pipe));
10886 intel_crtc->cursor_base = base;
10889 /* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
10890 static void intel_crtc_update_cursor(struct drm_crtc *crtc,
10891 const struct intel_plane_state *plane_state)
10893 struct drm_device *dev = crtc->dev;
10894 struct drm_i915_private *dev_priv = to_i915(dev);
10895 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10896 int pipe = intel_crtc->pipe;
10897 u32 base = intel_crtc->cursor_addr;
10901 int x = plane_state->base.crtc_x;
10902 int y = plane_state->base.crtc_y;
10905 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
10908 pos |= x << CURSOR_X_SHIFT;
10911 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
10914 pos |= y << CURSOR_Y_SHIFT;
10916 /* ILK+ do this automagically */
10917 if (HAS_GMCH_DISPLAY(dev_priv) &&
10918 plane_state->base.rotation == DRM_ROTATE_180) {
10919 base += (plane_state->base.crtc_h *
10920 plane_state->base.crtc_w - 1) * 4;
10924 I915_WRITE(CURPOS(pipe), pos);
10926 if (IS_845G(dev_priv) || IS_I865G(dev_priv))
10927 i845_update_cursor(crtc, base, plane_state);
10929 i9xx_update_cursor(crtc, base, plane_state);
10932 static bool cursor_size_ok(struct drm_i915_private *dev_priv,
10933 uint32_t width, uint32_t height)
10935 if (width == 0 || height == 0)
10939 * 845g/865g are special in that they are only limited by
10940 * the width of their cursors, the height is arbitrary up to
10941 * the precision of the register. Everything else requires
10942 * square cursors, limited to a few power-of-two sizes.
10944 if (IS_845G(dev_priv) || IS_I865G(dev_priv)) {
10945 if ((width & 63) != 0)
10948 if (width > (IS_845G(dev_priv) ? 64 : 512))
10954 switch (width | height) {
10957 if (IS_GEN2(dev_priv))
10969 /* VESA 640x480x72Hz mode to set on the pipe */
10970 static struct drm_display_mode load_detect_mode = {
10971 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
10972 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
10975 struct drm_framebuffer *
10976 __intel_framebuffer_create(struct drm_device *dev,
10977 struct drm_mode_fb_cmd2 *mode_cmd,
10978 struct drm_i915_gem_object *obj)
10980 struct intel_framebuffer *intel_fb;
10983 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
10985 return ERR_PTR(-ENOMEM);
10987 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
10991 return &intel_fb->base;
10995 return ERR_PTR(ret);
10998 static struct drm_framebuffer *
10999 intel_framebuffer_create(struct drm_device *dev,
11000 struct drm_mode_fb_cmd2 *mode_cmd,
11001 struct drm_i915_gem_object *obj)
11003 struct drm_framebuffer *fb;
11006 ret = i915_mutex_lock_interruptible(dev);
11008 return ERR_PTR(ret);
11009 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
11010 mutex_unlock(&dev->struct_mutex);
11016 intel_framebuffer_pitch_for_width(int width, int bpp)
11018 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
11019 return ALIGN(pitch, 64);
11023 intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
11025 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
11026 return PAGE_ALIGN(pitch * mode->vdisplay);
11029 static struct drm_framebuffer *
11030 intel_framebuffer_create_for_mode(struct drm_device *dev,
11031 struct drm_display_mode *mode,
11032 int depth, int bpp)
11034 struct drm_framebuffer *fb;
11035 struct drm_i915_gem_object *obj;
11036 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
11038 obj = i915_gem_object_create(dev,
11039 intel_framebuffer_size_for_mode(mode, bpp));
11041 return ERR_CAST(obj);
11043 mode_cmd.width = mode->hdisplay;
11044 mode_cmd.height = mode->vdisplay;
11045 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
11047 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
11049 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
11051 i915_gem_object_put_unlocked(obj);
11056 static struct drm_framebuffer *
11057 mode_fits_in_fbdev(struct drm_device *dev,
11058 struct drm_display_mode *mode)
11060 #ifdef CONFIG_DRM_FBDEV_EMULATION
11061 struct drm_i915_private *dev_priv = to_i915(dev);
11062 struct drm_i915_gem_object *obj;
11063 struct drm_framebuffer *fb;
11065 if (!dev_priv->fbdev)
11068 if (!dev_priv->fbdev->fb)
11071 obj = dev_priv->fbdev->fb->obj;
11074 fb = &dev_priv->fbdev->fb->base;
11075 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
11076 fb->bits_per_pixel))
11079 if (obj->base.size < mode->vdisplay * fb->pitches[0])
11082 drm_framebuffer_reference(fb);
11089 static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
11090 struct drm_crtc *crtc,
11091 struct drm_display_mode *mode,
11092 struct drm_framebuffer *fb,
11095 struct drm_plane_state *plane_state;
11096 int hdisplay, vdisplay;
11099 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
11100 if (IS_ERR(plane_state))
11101 return PTR_ERR(plane_state);
11104 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
11106 hdisplay = vdisplay = 0;
11108 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
11111 drm_atomic_set_fb_for_plane(plane_state, fb);
11112 plane_state->crtc_x = 0;
11113 plane_state->crtc_y = 0;
11114 plane_state->crtc_w = hdisplay;
11115 plane_state->crtc_h = vdisplay;
11116 plane_state->src_x = x << 16;
11117 plane_state->src_y = y << 16;
11118 plane_state->src_w = hdisplay << 16;
11119 plane_state->src_h = vdisplay << 16;
11124 bool intel_get_load_detect_pipe(struct drm_connector *connector,
11125 struct drm_display_mode *mode,
11126 struct intel_load_detect_pipe *old,
11127 struct drm_modeset_acquire_ctx *ctx)
11129 struct intel_crtc *intel_crtc;
11130 struct intel_encoder *intel_encoder =
11131 intel_attached_encoder(connector);
11132 struct drm_crtc *possible_crtc;
11133 struct drm_encoder *encoder = &intel_encoder->base;
11134 struct drm_crtc *crtc = NULL;
11135 struct drm_device *dev = encoder->dev;
11136 struct drm_framebuffer *fb;
11137 struct drm_mode_config *config = &dev->mode_config;
11138 struct drm_atomic_state *state = NULL, *restore_state = NULL;
11139 struct drm_connector_state *connector_state;
11140 struct intel_crtc_state *crtc_state;
11143 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
11144 connector->base.id, connector->name,
11145 encoder->base.id, encoder->name);
11147 old->restore_state = NULL;
11150 ret = drm_modeset_lock(&config->connection_mutex, ctx);
11155 * Algorithm gets a little messy:
11157 * - if the connector already has an assigned crtc, use it (but make
11158 * sure it's on first)
11160 * - try to find the first unused crtc that can drive this connector,
11161 * and use that if we find one
11164 /* See if we already have a CRTC for this connector */
11165 if (connector->state->crtc) {
11166 crtc = connector->state->crtc;
11168 ret = drm_modeset_lock(&crtc->mutex, ctx);
11172 /* Make sure the crtc and connector are running */
11176 /* Find an unused one (if possible) */
11177 for_each_crtc(dev, possible_crtc) {
11179 if (!(encoder->possible_crtcs & (1 << i)))
11182 ret = drm_modeset_lock(&possible_crtc->mutex, ctx);
11186 if (possible_crtc->state->enable) {
11187 drm_modeset_unlock(&possible_crtc->mutex);
11191 crtc = possible_crtc;
11196 * If we didn't find an unused CRTC, don't use any.
11199 DRM_DEBUG_KMS("no pipe available for load-detect\n");
11204 intel_crtc = to_intel_crtc(crtc);
11206 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
11210 state = drm_atomic_state_alloc(dev);
11211 restore_state = drm_atomic_state_alloc(dev);
11212 if (!state || !restore_state) {
11217 state->acquire_ctx = ctx;
11218 restore_state->acquire_ctx = ctx;
11220 connector_state = drm_atomic_get_connector_state(state, connector);
11221 if (IS_ERR(connector_state)) {
11222 ret = PTR_ERR(connector_state);
11226 ret = drm_atomic_set_crtc_for_connector(connector_state, crtc);
11230 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
11231 if (IS_ERR(crtc_state)) {
11232 ret = PTR_ERR(crtc_state);
11236 crtc_state->base.active = crtc_state->base.enable = true;
11239 mode = &load_detect_mode;
11241 /* We need a framebuffer large enough to accommodate all accesses
11242 * that the plane may generate whilst we perform load detection.
11243 * We can not rely on the fbcon either being present (we get called
11244 * during its initialisation to detect all boot displays, or it may
11245 * not even exist) or that it is large enough to satisfy the
11248 fb = mode_fits_in_fbdev(dev, mode);
11250 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
11251 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
11253 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
11255 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
11259 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
11263 drm_framebuffer_unreference(fb);
11265 ret = drm_atomic_set_mode_for_crtc(&crtc_state->base, mode);
11269 ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(restore_state, connector));
11271 ret = PTR_ERR_OR_ZERO(drm_atomic_get_crtc_state(restore_state, crtc));
11273 ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(restore_state, crtc->primary));
11275 DRM_DEBUG_KMS("Failed to create a copy of old state to restore: %i\n", ret);
11279 ret = drm_atomic_commit(state);
11281 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
11285 old->restore_state = restore_state;
11287 /* let the connector get through one full cycle before testing */
11288 intel_wait_for_vblank(dev, intel_crtc->pipe);
11292 drm_atomic_state_free(state);
11293 drm_atomic_state_free(restore_state);
11294 restore_state = state = NULL;
11296 if (ret == -EDEADLK) {
11297 drm_modeset_backoff(ctx);
11304 void intel_release_load_detect_pipe(struct drm_connector *connector,
11305 struct intel_load_detect_pipe *old,
11306 struct drm_modeset_acquire_ctx *ctx)
11308 struct intel_encoder *intel_encoder =
11309 intel_attached_encoder(connector);
11310 struct drm_encoder *encoder = &intel_encoder->base;
11311 struct drm_atomic_state *state = old->restore_state;
11314 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
11315 connector->base.id, connector->name,
11316 encoder->base.id, encoder->name);
11321 ret = drm_atomic_commit(state);
11323 DRM_DEBUG_KMS("Couldn't release load detect pipe: %i\n", ret);
11324 drm_atomic_state_free(state);
11328 static int i9xx_pll_refclk(struct drm_device *dev,
11329 const struct intel_crtc_state *pipe_config)
11331 struct drm_i915_private *dev_priv = to_i915(dev);
11332 u32 dpll = pipe_config->dpll_hw_state.dpll;
11334 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
11335 return dev_priv->vbt.lvds_ssc_freq;
11336 else if (HAS_PCH_SPLIT(dev_priv))
11338 else if (!IS_GEN2(dev_priv))
11344 /* Returns the clock of the currently programmed mode of the given pipe. */
11345 static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
11346 struct intel_crtc_state *pipe_config)
11348 struct drm_device *dev = crtc->base.dev;
11349 struct drm_i915_private *dev_priv = to_i915(dev);
11350 int pipe = pipe_config->cpu_transcoder;
11351 u32 dpll = pipe_config->dpll_hw_state.dpll;
11355 int refclk = i9xx_pll_refclk(dev, pipe_config);
11357 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
11358 fp = pipe_config->dpll_hw_state.fp0;
11360 fp = pipe_config->dpll_hw_state.fp1;
11362 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
11363 if (IS_PINEVIEW(dev)) {
11364 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
11365 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
11367 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
11368 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
11371 if (!IS_GEN2(dev_priv)) {
11372 if (IS_PINEVIEW(dev))
11373 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
11374 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
11376 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
11377 DPLL_FPA01_P1_POST_DIV_SHIFT);
11379 switch (dpll & DPLL_MODE_MASK) {
11380 case DPLLB_MODE_DAC_SERIAL:
11381 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
11384 case DPLLB_MODE_LVDS:
11385 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
11389 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
11390 "mode\n", (int)(dpll & DPLL_MODE_MASK));
11394 if (IS_PINEVIEW(dev))
11395 port_clock = pnv_calc_dpll_params(refclk, &clock);
11397 port_clock = i9xx_calc_dpll_params(refclk, &clock);
11399 u32 lvds = IS_I830(dev_priv) ? 0 : I915_READ(LVDS);
11400 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
11403 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
11404 DPLL_FPA01_P1_POST_DIV_SHIFT);
11406 if (lvds & LVDS_CLKB_POWER_UP)
11411 if (dpll & PLL_P1_DIVIDE_BY_TWO)
11414 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
11415 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
11417 if (dpll & PLL_P2_DIVIDE_BY_4)
11423 port_clock = i9xx_calc_dpll_params(refclk, &clock);
11427 * This value includes pixel_multiplier. We will use
11428 * port_clock to compute adjusted_mode.crtc_clock in the
11429 * encoder's get_config() function.
11431 pipe_config->port_clock = port_clock;
11434 int intel_dotclock_calculate(int link_freq,
11435 const struct intel_link_m_n *m_n)
11438 * The calculation for the data clock is:
11439 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
11440 * But we want to avoid losing precison if possible, so:
11441 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
11443 * and the link clock is simpler:
11444 * link_clock = (m * link_clock) / n
11450 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
11453 static void ironlake_pch_clock_get(struct intel_crtc *crtc,
11454 struct intel_crtc_state *pipe_config)
11456 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
11458 /* read out port_clock from the DPLL */
11459 i9xx_crtc_clock_get(crtc, pipe_config);
11462 * In case there is an active pipe without active ports,
11463 * we may need some idea for the dotclock anyway.
11464 * Calculate one based on the FDI configuration.
11466 pipe_config->base.adjusted_mode.crtc_clock =
11467 intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config),
11468 &pipe_config->fdi_m_n);
11471 /** Returns the currently programmed mode of the given pipe. */
11472 struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
11473 struct drm_crtc *crtc)
11475 struct drm_i915_private *dev_priv = to_i915(dev);
11476 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11477 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
11478 struct drm_display_mode *mode;
11479 struct intel_crtc_state *pipe_config;
11480 int htot = I915_READ(HTOTAL(cpu_transcoder));
11481 int hsync = I915_READ(HSYNC(cpu_transcoder));
11482 int vtot = I915_READ(VTOTAL(cpu_transcoder));
11483 int vsync = I915_READ(VSYNC(cpu_transcoder));
11484 enum pipe pipe = intel_crtc->pipe;
11486 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
11490 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
11491 if (!pipe_config) {
11497 * Construct a pipe_config sufficient for getting the clock info
11498 * back out of crtc_clock_get.
11500 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
11501 * to use a real value here instead.
11503 pipe_config->cpu_transcoder = (enum transcoder) pipe;
11504 pipe_config->pixel_multiplier = 1;
11505 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(pipe));
11506 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(pipe));
11507 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(pipe));
11508 i9xx_crtc_clock_get(intel_crtc, pipe_config);
11510 mode->clock = pipe_config->port_clock / pipe_config->pixel_multiplier;
11511 mode->hdisplay = (htot & 0xffff) + 1;
11512 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
11513 mode->hsync_start = (hsync & 0xffff) + 1;
11514 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
11515 mode->vdisplay = (vtot & 0xffff) + 1;
11516 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
11517 mode->vsync_start = (vsync & 0xffff) + 1;
11518 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
11520 drm_mode_set_name(mode);
11522 kfree(pipe_config);
11527 static void intel_crtc_destroy(struct drm_crtc *crtc)
11529 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11530 struct drm_device *dev = crtc->dev;
11531 struct intel_flip_work *work;
11533 spin_lock_irq(&dev->event_lock);
11534 work = intel_crtc->flip_work;
11535 intel_crtc->flip_work = NULL;
11536 spin_unlock_irq(&dev->event_lock);
11539 cancel_work_sync(&work->mmio_work);
11540 cancel_work_sync(&work->unpin_work);
11544 drm_crtc_cleanup(crtc);
11549 static void intel_unpin_work_fn(struct work_struct *__work)
11551 struct intel_flip_work *work =
11552 container_of(__work, struct intel_flip_work, unpin_work);
11553 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
11554 struct drm_device *dev = crtc->base.dev;
11555 struct drm_plane *primary = crtc->base.primary;
11557 if (is_mmio_work(work))
11558 flush_work(&work->mmio_work);
11560 mutex_lock(&dev->struct_mutex);
11561 intel_unpin_fb_obj(work->old_fb, primary->state->rotation);
11562 i915_gem_object_put(work->pending_flip_obj);
11563 mutex_unlock(&dev->struct_mutex);
11565 i915_gem_request_put(work->flip_queued_req);
11567 intel_frontbuffer_flip_complete(to_i915(dev),
11568 to_intel_plane(primary)->frontbuffer_bit);
11569 intel_fbc_post_update(crtc);
11570 drm_framebuffer_unreference(work->old_fb);
11572 BUG_ON(atomic_read(&crtc->unpin_work_count) == 0);
11573 atomic_dec(&crtc->unpin_work_count);
11578 /* Is 'a' after or equal to 'b'? */
11579 static bool g4x_flip_count_after_eq(u32 a, u32 b)
11581 return !((a - b) & 0x80000000);
11584 static bool __pageflip_finished_cs(struct intel_crtc *crtc,
11585 struct intel_flip_work *work)
11587 struct drm_device *dev = crtc->base.dev;
11588 struct drm_i915_private *dev_priv = to_i915(dev);
11590 if (abort_flip_on_reset(crtc))
11594 * The relevant registers doen't exist on pre-ctg.
11595 * As the flip done interrupt doesn't trigger for mmio
11596 * flips on gmch platforms, a flip count check isn't
11597 * really needed there. But since ctg has the registers,
11598 * include it in the check anyway.
11600 if (INTEL_GEN(dev_priv) < 5 && !IS_G4X(dev_priv))
11604 * BDW signals flip done immediately if the plane
11605 * is disabled, even if the plane enable is already
11606 * armed to occur at the next vblank :(
11610 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
11611 * used the same base address. In that case the mmio flip might
11612 * have completed, but the CS hasn't even executed the flip yet.
11614 * A flip count check isn't enough as the CS might have updated
11615 * the base address just after start of vblank, but before we
11616 * managed to process the interrupt. This means we'd complete the
11617 * CS flip too soon.
11619 * Combining both checks should get us a good enough result. It may
11620 * still happen that the CS flip has been executed, but has not
11621 * yet actually completed. But in case the base address is the same
11622 * anyway, we don't really care.
11624 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
11625 crtc->flip_work->gtt_offset &&
11626 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_G4X(crtc->pipe)),
11627 crtc->flip_work->flip_count);
11631 __pageflip_finished_mmio(struct intel_crtc *crtc,
11632 struct intel_flip_work *work)
11635 * MMIO work completes when vblank is different from
11636 * flip_queued_vblank.
11638 * Reset counter value doesn't matter, this is handled by
11639 * i915_wait_request finishing early, so no need to handle
11642 return intel_crtc_get_vblank_counter(crtc) != work->flip_queued_vblank;
11646 static bool pageflip_finished(struct intel_crtc *crtc,
11647 struct intel_flip_work *work)
11649 if (!atomic_read(&work->pending))
11654 if (is_mmio_work(work))
11655 return __pageflip_finished_mmio(crtc, work);
11657 return __pageflip_finished_cs(crtc, work);
11660 void intel_finish_page_flip_cs(struct drm_i915_private *dev_priv, int pipe)
11662 struct drm_device *dev = &dev_priv->drm;
11663 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11664 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11665 struct intel_flip_work *work;
11666 unsigned long flags;
11668 /* Ignore early vblank irqs */
11673 * This is called both by irq handlers and the reset code (to complete
11674 * lost pageflips) so needs the full irqsave spinlocks.
11676 spin_lock_irqsave(&dev->event_lock, flags);
11677 work = intel_crtc->flip_work;
11679 if (work != NULL &&
11680 !is_mmio_work(work) &&
11681 pageflip_finished(intel_crtc, work))
11682 page_flip_completed(intel_crtc);
11684 spin_unlock_irqrestore(&dev->event_lock, flags);
11687 void intel_finish_page_flip_mmio(struct drm_i915_private *dev_priv, int pipe)
11689 struct drm_device *dev = &dev_priv->drm;
11690 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11691 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11692 struct intel_flip_work *work;
11693 unsigned long flags;
11695 /* Ignore early vblank irqs */
11700 * This is called both by irq handlers and the reset code (to complete
11701 * lost pageflips) so needs the full irqsave spinlocks.
11703 spin_lock_irqsave(&dev->event_lock, flags);
11704 work = intel_crtc->flip_work;
11706 if (work != NULL &&
11707 is_mmio_work(work) &&
11708 pageflip_finished(intel_crtc, work))
11709 page_flip_completed(intel_crtc);
11711 spin_unlock_irqrestore(&dev->event_lock, flags);
11714 static inline void intel_mark_page_flip_active(struct intel_crtc *crtc,
11715 struct intel_flip_work *work)
11717 work->flip_queued_vblank = intel_crtc_get_vblank_counter(crtc);
11719 /* Ensure that the work item is consistent when activating it ... */
11720 smp_mb__before_atomic();
11721 atomic_set(&work->pending, 1);
11724 static int intel_gen2_queue_flip(struct drm_device *dev,
11725 struct drm_crtc *crtc,
11726 struct drm_framebuffer *fb,
11727 struct drm_i915_gem_object *obj,
11728 struct drm_i915_gem_request *req,
11731 struct intel_ring *ring = req->ring;
11732 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11736 ret = intel_ring_begin(req, 6);
11740 /* Can't queue multiple flips, so wait for the previous
11741 * one to finish before executing the next.
11743 if (intel_crtc->plane)
11744 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11746 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
11747 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11748 intel_ring_emit(ring, MI_NOOP);
11749 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11750 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11751 intel_ring_emit(ring, fb->pitches[0]);
11752 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset);
11753 intel_ring_emit(ring, 0); /* aux display base address, unused */
11758 static int intel_gen3_queue_flip(struct drm_device *dev,
11759 struct drm_crtc *crtc,
11760 struct drm_framebuffer *fb,
11761 struct drm_i915_gem_object *obj,
11762 struct drm_i915_gem_request *req,
11765 struct intel_ring *ring = req->ring;
11766 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11770 ret = intel_ring_begin(req, 6);
11774 if (intel_crtc->plane)
11775 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11777 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
11778 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11779 intel_ring_emit(ring, MI_NOOP);
11780 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
11781 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11782 intel_ring_emit(ring, fb->pitches[0]);
11783 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset);
11784 intel_ring_emit(ring, MI_NOOP);
11789 static int intel_gen4_queue_flip(struct drm_device *dev,
11790 struct drm_crtc *crtc,
11791 struct drm_framebuffer *fb,
11792 struct drm_i915_gem_object *obj,
11793 struct drm_i915_gem_request *req,
11796 struct intel_ring *ring = req->ring;
11797 struct drm_i915_private *dev_priv = to_i915(dev);
11798 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11799 uint32_t pf, pipesrc;
11802 ret = intel_ring_begin(req, 4);
11806 /* i965+ uses the linear or tiled offsets from the
11807 * Display Registers (which do not change across a page-flip)
11808 * so we need only reprogram the base address.
11810 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11811 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11812 intel_ring_emit(ring, fb->pitches[0]);
11813 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset |
11814 intel_fb_modifier_to_tiling(fb->modifier[0]));
11816 /* XXX Enabling the panel-fitter across page-flip is so far
11817 * untested on non-native modes, so ignore it for now.
11818 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
11821 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
11822 intel_ring_emit(ring, pf | pipesrc);
11827 static int intel_gen6_queue_flip(struct drm_device *dev,
11828 struct drm_crtc *crtc,
11829 struct drm_framebuffer *fb,
11830 struct drm_i915_gem_object *obj,
11831 struct drm_i915_gem_request *req,
11834 struct intel_ring *ring = req->ring;
11835 struct drm_i915_private *dev_priv = to_i915(dev);
11836 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11837 uint32_t pf, pipesrc;
11840 ret = intel_ring_begin(req, 4);
11844 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11845 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11846 intel_ring_emit(ring, fb->pitches[0] |
11847 intel_fb_modifier_to_tiling(fb->modifier[0]));
11848 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset);
11850 /* Contrary to the suggestions in the documentation,
11851 * "Enable Panel Fitter" does not seem to be required when page
11852 * flipping with a non-native mode, and worse causes a normal
11854 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
11857 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
11858 intel_ring_emit(ring, pf | pipesrc);
11863 static int intel_gen7_queue_flip(struct drm_device *dev,
11864 struct drm_crtc *crtc,
11865 struct drm_framebuffer *fb,
11866 struct drm_i915_gem_object *obj,
11867 struct drm_i915_gem_request *req,
11870 struct drm_i915_private *dev_priv = to_i915(dev);
11871 struct intel_ring *ring = req->ring;
11872 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11873 uint32_t plane_bit = 0;
11876 switch (intel_crtc->plane) {
11878 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
11881 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
11884 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
11887 WARN_ONCE(1, "unknown plane in flip command\n");
11892 if (req->engine->id == RCS) {
11895 * On Gen 8, SRM is now taking an extra dword to accommodate
11896 * 48bits addresses, and we need a NOOP for the batch size to
11899 if (IS_GEN8(dev_priv))
11904 * BSpec MI_DISPLAY_FLIP for IVB:
11905 * "The full packet must be contained within the same cache line."
11907 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
11908 * cacheline, if we ever start emitting more commands before
11909 * the MI_DISPLAY_FLIP we may need to first emit everything else,
11910 * then do the cacheline alignment, and finally emit the
11913 ret = intel_ring_cacheline_align(req);
11917 ret = intel_ring_begin(req, len);
11921 /* Unmask the flip-done completion message. Note that the bspec says that
11922 * we should do this for both the BCS and RCS, and that we must not unmask
11923 * more than one flip event at any time (or ensure that one flip message
11924 * can be sent by waiting for flip-done prior to queueing new flips).
11925 * Experimentation says that BCS works despite DERRMR masking all
11926 * flip-done completion events and that unmasking all planes at once
11927 * for the RCS also doesn't appear to drop events. Setting the DERRMR
11928 * to zero does lead to lockups within MI_DISPLAY_FLIP.
11930 if (req->engine->id == RCS) {
11931 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
11932 intel_ring_emit_reg(ring, DERRMR);
11933 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
11934 DERRMR_PIPEB_PRI_FLIP_DONE |
11935 DERRMR_PIPEC_PRI_FLIP_DONE));
11936 if (IS_GEN8(dev_priv))
11937 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8 |
11938 MI_SRM_LRM_GLOBAL_GTT);
11940 intel_ring_emit(ring, MI_STORE_REGISTER_MEM |
11941 MI_SRM_LRM_GLOBAL_GTT);
11942 intel_ring_emit_reg(ring, DERRMR);
11943 intel_ring_emit(ring,
11944 i915_ggtt_offset(req->engine->scratch) + 256);
11945 if (IS_GEN8(dev_priv)) {
11946 intel_ring_emit(ring, 0);
11947 intel_ring_emit(ring, MI_NOOP);
11951 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
11952 intel_ring_emit(ring, fb->pitches[0] |
11953 intel_fb_modifier_to_tiling(fb->modifier[0]));
11954 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset);
11955 intel_ring_emit(ring, (MI_NOOP));
11960 static bool use_mmio_flip(struct intel_engine_cs *engine,
11961 struct drm_i915_gem_object *obj)
11963 struct reservation_object *resv;
11966 * This is not being used for older platforms, because
11967 * non-availability of flip done interrupt forces us to use
11968 * CS flips. Older platforms derive flip done using some clever
11969 * tricks involving the flip_pending status bits and vblank irqs.
11970 * So using MMIO flips there would disrupt this mechanism.
11973 if (engine == NULL)
11976 if (INTEL_GEN(engine->i915) < 5)
11979 if (i915.use_mmio_flip < 0)
11981 else if (i915.use_mmio_flip > 0)
11983 else if (i915.enable_execlists)
11986 resv = i915_gem_object_get_dmabuf_resv(obj);
11987 if (resv && !reservation_object_test_signaled_rcu(resv, false))
11990 return engine != i915_gem_active_get_engine(&obj->last_write,
11991 &obj->base.dev->struct_mutex);
11994 static void skl_do_mmio_flip(struct intel_crtc *intel_crtc,
11995 unsigned int rotation,
11996 struct intel_flip_work *work)
11998 struct drm_device *dev = intel_crtc->base.dev;
11999 struct drm_i915_private *dev_priv = to_i915(dev);
12000 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
12001 const enum pipe pipe = intel_crtc->pipe;
12002 u32 ctl, stride = skl_plane_stride(fb, 0, rotation);
12004 ctl = I915_READ(PLANE_CTL(pipe, 0));
12005 ctl &= ~PLANE_CTL_TILED_MASK;
12006 switch (fb->modifier[0]) {
12007 case DRM_FORMAT_MOD_NONE:
12009 case I915_FORMAT_MOD_X_TILED:
12010 ctl |= PLANE_CTL_TILED_X;
12012 case I915_FORMAT_MOD_Y_TILED:
12013 ctl |= PLANE_CTL_TILED_Y;
12015 case I915_FORMAT_MOD_Yf_TILED:
12016 ctl |= PLANE_CTL_TILED_YF;
12019 MISSING_CASE(fb->modifier[0]);
12023 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
12024 * PLANE_SURF updates, the update is then guaranteed to be atomic.
12026 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
12027 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
12029 I915_WRITE(PLANE_SURF(pipe, 0), work->gtt_offset);
12030 POSTING_READ(PLANE_SURF(pipe, 0));
12033 static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc,
12034 struct intel_flip_work *work)
12036 struct drm_device *dev = intel_crtc->base.dev;
12037 struct drm_i915_private *dev_priv = to_i915(dev);
12038 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
12039 i915_reg_t reg = DSPCNTR(intel_crtc->plane);
12042 dspcntr = I915_READ(reg);
12044 if (fb->modifier[0] == I915_FORMAT_MOD_X_TILED)
12045 dspcntr |= DISPPLANE_TILED;
12047 dspcntr &= ~DISPPLANE_TILED;
12049 I915_WRITE(reg, dspcntr);
12051 I915_WRITE(DSPSURF(intel_crtc->plane), work->gtt_offset);
12052 POSTING_READ(DSPSURF(intel_crtc->plane));
12055 static void intel_mmio_flip_work_func(struct work_struct *w)
12057 struct intel_flip_work *work =
12058 container_of(w, struct intel_flip_work, mmio_work);
12059 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
12060 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
12061 struct intel_framebuffer *intel_fb =
12062 to_intel_framebuffer(crtc->base.primary->fb);
12063 struct drm_i915_gem_object *obj = intel_fb->obj;
12064 struct reservation_object *resv;
12066 if (work->flip_queued_req)
12067 WARN_ON(i915_wait_request(work->flip_queued_req,
12068 0, NULL, NO_WAITBOOST));
12070 /* For framebuffer backed by dmabuf, wait for fence */
12071 resv = i915_gem_object_get_dmabuf_resv(obj);
12073 WARN_ON(reservation_object_wait_timeout_rcu(resv, false, false,
12074 MAX_SCHEDULE_TIMEOUT) < 0);
12076 intel_pipe_update_start(crtc);
12078 if (INTEL_GEN(dev_priv) >= 9)
12079 skl_do_mmio_flip(crtc, work->rotation, work);
12081 /* use_mmio_flip() retricts MMIO flips to ilk+ */
12082 ilk_do_mmio_flip(crtc, work);
12084 intel_pipe_update_end(crtc, work);
12087 static int intel_default_queue_flip(struct drm_device *dev,
12088 struct drm_crtc *crtc,
12089 struct drm_framebuffer *fb,
12090 struct drm_i915_gem_object *obj,
12091 struct drm_i915_gem_request *req,
12097 static bool __pageflip_stall_check_cs(struct drm_i915_private *dev_priv,
12098 struct intel_crtc *intel_crtc,
12099 struct intel_flip_work *work)
12103 if (!atomic_read(&work->pending))
12108 vblank = intel_crtc_get_vblank_counter(intel_crtc);
12109 if (work->flip_ready_vblank == 0) {
12110 if (work->flip_queued_req &&
12111 !i915_gem_request_completed(work->flip_queued_req))
12114 work->flip_ready_vblank = vblank;
12117 if (vblank - work->flip_ready_vblank < 3)
12120 /* Potential stall - if we see that the flip has happened,
12121 * assume a missed interrupt. */
12122 if (INTEL_GEN(dev_priv) >= 4)
12123 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
12125 addr = I915_READ(DSPADDR(intel_crtc->plane));
12127 /* There is a potential issue here with a false positive after a flip
12128 * to the same address. We could address this by checking for a
12129 * non-incrementing frame counter.
12131 return addr == work->gtt_offset;
12134 void intel_check_page_flip(struct drm_i915_private *dev_priv, int pipe)
12136 struct drm_device *dev = &dev_priv->drm;
12137 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
12138 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12139 struct intel_flip_work *work;
12141 WARN_ON(!in_interrupt());
12146 spin_lock(&dev->event_lock);
12147 work = intel_crtc->flip_work;
12149 if (work != NULL && !is_mmio_work(work) &&
12150 __pageflip_stall_check_cs(dev_priv, intel_crtc, work)) {
12152 "Kicking stuck page flip: queued at %d, now %d\n",
12153 work->flip_queued_vblank, intel_crtc_get_vblank_counter(intel_crtc));
12154 page_flip_completed(intel_crtc);
12158 if (work != NULL && !is_mmio_work(work) &&
12159 intel_crtc_get_vblank_counter(intel_crtc) - work->flip_queued_vblank > 1)
12160 intel_queue_rps_boost_for_request(work->flip_queued_req);
12161 spin_unlock(&dev->event_lock);
12164 static int intel_crtc_page_flip(struct drm_crtc *crtc,
12165 struct drm_framebuffer *fb,
12166 struct drm_pending_vblank_event *event,
12167 uint32_t page_flip_flags)
12169 struct drm_device *dev = crtc->dev;
12170 struct drm_i915_private *dev_priv = to_i915(dev);
12171 struct drm_framebuffer *old_fb = crtc->primary->fb;
12172 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
12173 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12174 struct drm_plane *primary = crtc->primary;
12175 enum pipe pipe = intel_crtc->pipe;
12176 struct intel_flip_work *work;
12177 struct intel_engine_cs *engine;
12179 struct drm_i915_gem_request *request;
12180 struct i915_vma *vma;
12184 * drm_mode_page_flip_ioctl() should already catch this, but double
12185 * check to be safe. In the future we may enable pageflipping from
12186 * a disabled primary plane.
12188 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
12191 /* Can't change pixel format via MI display flips. */
12192 if (fb->pixel_format != crtc->primary->fb->pixel_format)
12196 * TILEOFF/LINOFF registers can't be changed via MI display flips.
12197 * Note that pitch changes could also affect these register.
12199 if (INTEL_INFO(dev)->gen > 3 &&
12200 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
12201 fb->pitches[0] != crtc->primary->fb->pitches[0]))
12204 if (i915_terminally_wedged(&dev_priv->gpu_error))
12207 work = kzalloc(sizeof(*work), GFP_KERNEL);
12211 work->event = event;
12213 work->old_fb = old_fb;
12214 INIT_WORK(&work->unpin_work, intel_unpin_work_fn);
12216 ret = drm_crtc_vblank_get(crtc);
12220 /* We borrow the event spin lock for protecting flip_work */
12221 spin_lock_irq(&dev->event_lock);
12222 if (intel_crtc->flip_work) {
12223 /* Before declaring the flip queue wedged, check if
12224 * the hardware completed the operation behind our backs.
12226 if (pageflip_finished(intel_crtc, intel_crtc->flip_work)) {
12227 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
12228 page_flip_completed(intel_crtc);
12230 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
12231 spin_unlock_irq(&dev->event_lock);
12233 drm_crtc_vblank_put(crtc);
12238 intel_crtc->flip_work = work;
12239 spin_unlock_irq(&dev->event_lock);
12241 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
12242 flush_workqueue(dev_priv->wq);
12244 /* Reference the objects for the scheduled work. */
12245 drm_framebuffer_reference(work->old_fb);
12247 crtc->primary->fb = fb;
12248 update_state_fb(crtc->primary);
12250 work->pending_flip_obj = i915_gem_object_get(obj);
12252 ret = i915_mutex_lock_interruptible(dev);
12256 intel_crtc->reset_count = i915_reset_count(&dev_priv->gpu_error);
12257 if (i915_reset_in_progress_or_wedged(&dev_priv->gpu_error)) {
12262 atomic_inc(&intel_crtc->unpin_work_count);
12264 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
12265 work->flip_count = I915_READ(PIPE_FLIPCOUNT_G4X(pipe)) + 1;
12267 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
12268 engine = dev_priv->engine[BCS];
12269 if (fb->modifier[0] != old_fb->modifier[0])
12270 /* vlv: DISPLAY_FLIP fails to change tiling */
12272 } else if (IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
12273 engine = dev_priv->engine[BCS];
12274 } else if (INTEL_INFO(dev)->gen >= 7) {
12275 engine = i915_gem_active_get_engine(&obj->last_write,
12276 &obj->base.dev->struct_mutex);
12277 if (engine == NULL || engine->id != RCS)
12278 engine = dev_priv->engine[BCS];
12280 engine = dev_priv->engine[RCS];
12283 mmio_flip = use_mmio_flip(engine, obj);
12285 vma = intel_pin_and_fence_fb_obj(fb, primary->state->rotation);
12287 ret = PTR_ERR(vma);
12288 goto cleanup_pending;
12291 work->gtt_offset = intel_fb_gtt_offset(fb, primary->state->rotation);
12292 work->gtt_offset += intel_crtc->dspaddr_offset;
12293 work->rotation = crtc->primary->state->rotation;
12296 * There's the potential that the next frame will not be compatible with
12297 * FBC, so we want to call pre_update() before the actual page flip.
12298 * The problem is that pre_update() caches some information about the fb
12299 * object, so we want to do this only after the object is pinned. Let's
12300 * be on the safe side and do this immediately before scheduling the
12303 intel_fbc_pre_update(intel_crtc, intel_crtc->config,
12304 to_intel_plane_state(primary->state));
12307 INIT_WORK(&work->mmio_work, intel_mmio_flip_work_func);
12309 work->flip_queued_req = i915_gem_active_get(&obj->last_write,
12310 &obj->base.dev->struct_mutex);
12311 queue_work(system_unbound_wq, &work->mmio_work);
12313 request = i915_gem_request_alloc(engine, engine->last_context);
12314 if (IS_ERR(request)) {
12315 ret = PTR_ERR(request);
12316 goto cleanup_unpin;
12319 ret = i915_gem_request_await_object(request, obj, false);
12321 goto cleanup_request;
12323 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, request,
12326 goto cleanup_request;
12328 intel_mark_page_flip_active(intel_crtc, work);
12330 work->flip_queued_req = i915_gem_request_get(request);
12331 i915_add_request_no_flush(request);
12334 i915_gem_track_fb(intel_fb_obj(old_fb), obj,
12335 to_intel_plane(primary)->frontbuffer_bit);
12336 mutex_unlock(&dev->struct_mutex);
12338 intel_frontbuffer_flip_prepare(to_i915(dev),
12339 to_intel_plane(primary)->frontbuffer_bit);
12341 trace_i915_flip_request(intel_crtc->plane, obj);
12346 i915_add_request_no_flush(request);
12348 intel_unpin_fb_obj(fb, crtc->primary->state->rotation);
12350 atomic_dec(&intel_crtc->unpin_work_count);
12351 mutex_unlock(&dev->struct_mutex);
12353 crtc->primary->fb = old_fb;
12354 update_state_fb(crtc->primary);
12356 i915_gem_object_put_unlocked(obj);
12357 drm_framebuffer_unreference(work->old_fb);
12359 spin_lock_irq(&dev->event_lock);
12360 intel_crtc->flip_work = NULL;
12361 spin_unlock_irq(&dev->event_lock);
12363 drm_crtc_vblank_put(crtc);
12368 struct drm_atomic_state *state;
12369 struct drm_plane_state *plane_state;
12372 state = drm_atomic_state_alloc(dev);
12375 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
12378 plane_state = drm_atomic_get_plane_state(state, primary);
12379 ret = PTR_ERR_OR_ZERO(plane_state);
12381 drm_atomic_set_fb_for_plane(plane_state, fb);
12383 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
12385 ret = drm_atomic_commit(state);
12388 if (ret == -EDEADLK) {
12389 drm_modeset_backoff(state->acquire_ctx);
12390 drm_atomic_state_clear(state);
12395 drm_atomic_state_free(state);
12397 if (ret == 0 && event) {
12398 spin_lock_irq(&dev->event_lock);
12399 drm_crtc_send_vblank_event(crtc, event);
12400 spin_unlock_irq(&dev->event_lock);
12408 * intel_wm_need_update - Check whether watermarks need updating
12409 * @plane: drm plane
12410 * @state: new plane state
12412 * Check current plane state versus the new one to determine whether
12413 * watermarks need to be recalculated.
12415 * Returns true or false.
12417 static bool intel_wm_need_update(struct drm_plane *plane,
12418 struct drm_plane_state *state)
12420 struct intel_plane_state *new = to_intel_plane_state(state);
12421 struct intel_plane_state *cur = to_intel_plane_state(plane->state);
12423 /* Update watermarks on tiling or size changes. */
12424 if (new->base.visible != cur->base.visible)
12427 if (!cur->base.fb || !new->base.fb)
12430 if (cur->base.fb->modifier[0] != new->base.fb->modifier[0] ||
12431 cur->base.rotation != new->base.rotation ||
12432 drm_rect_width(&new->base.src) != drm_rect_width(&cur->base.src) ||
12433 drm_rect_height(&new->base.src) != drm_rect_height(&cur->base.src) ||
12434 drm_rect_width(&new->base.dst) != drm_rect_width(&cur->base.dst) ||
12435 drm_rect_height(&new->base.dst) != drm_rect_height(&cur->base.dst))
12441 static bool needs_scaling(struct intel_plane_state *state)
12443 int src_w = drm_rect_width(&state->base.src) >> 16;
12444 int src_h = drm_rect_height(&state->base.src) >> 16;
12445 int dst_w = drm_rect_width(&state->base.dst);
12446 int dst_h = drm_rect_height(&state->base.dst);
12448 return (src_w != dst_w || src_h != dst_h);
12451 int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
12452 struct drm_plane_state *plane_state)
12454 struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc_state);
12455 struct drm_crtc *crtc = crtc_state->crtc;
12456 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12457 struct drm_plane *plane = plane_state->plane;
12458 struct drm_device *dev = crtc->dev;
12459 struct drm_i915_private *dev_priv = to_i915(dev);
12460 struct intel_plane_state *old_plane_state =
12461 to_intel_plane_state(plane->state);
12462 bool mode_changed = needs_modeset(crtc_state);
12463 bool was_crtc_enabled = crtc->state->active;
12464 bool is_crtc_enabled = crtc_state->active;
12465 bool turn_off, turn_on, visible, was_visible;
12466 struct drm_framebuffer *fb = plane_state->fb;
12469 if (INTEL_GEN(dev_priv) >= 9 && plane->type != DRM_PLANE_TYPE_CURSOR) {
12470 ret = skl_update_scaler_plane(
12471 to_intel_crtc_state(crtc_state),
12472 to_intel_plane_state(plane_state));
12477 was_visible = old_plane_state->base.visible;
12478 visible = to_intel_plane_state(plane_state)->base.visible;
12480 if (!was_crtc_enabled && WARN_ON(was_visible))
12481 was_visible = false;
12484 * Visibility is calculated as if the crtc was on, but
12485 * after scaler setup everything depends on it being off
12486 * when the crtc isn't active.
12488 * FIXME this is wrong for watermarks. Watermarks should also
12489 * be computed as if the pipe would be active. Perhaps move
12490 * per-plane wm computation to the .check_plane() hook, and
12491 * only combine the results from all planes in the current place?
12493 if (!is_crtc_enabled)
12494 to_intel_plane_state(plane_state)->base.visible = visible = false;
12496 if (!was_visible && !visible)
12499 if (fb != old_plane_state->base.fb)
12500 pipe_config->fb_changed = true;
12502 turn_off = was_visible && (!visible || mode_changed);
12503 turn_on = visible && (!was_visible || mode_changed);
12505 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] has [PLANE:%d:%s] with fb %i\n",
12506 intel_crtc->base.base.id,
12507 intel_crtc->base.name,
12508 plane->base.id, plane->name,
12509 fb ? fb->base.id : -1);
12511 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] visible %i -> %i, off %i, on %i, ms %i\n",
12512 plane->base.id, plane->name,
12513 was_visible, visible,
12514 turn_off, turn_on, mode_changed);
12517 pipe_config->update_wm_pre = true;
12519 /* must disable cxsr around plane enable/disable */
12520 if (plane->type != DRM_PLANE_TYPE_CURSOR)
12521 pipe_config->disable_cxsr = true;
12522 } else if (turn_off) {
12523 pipe_config->update_wm_post = true;
12525 /* must disable cxsr around plane enable/disable */
12526 if (plane->type != DRM_PLANE_TYPE_CURSOR)
12527 pipe_config->disable_cxsr = true;
12528 } else if (intel_wm_need_update(plane, plane_state)) {
12529 /* FIXME bollocks */
12530 pipe_config->update_wm_pre = true;
12531 pipe_config->update_wm_post = true;
12534 /* Pre-gen9 platforms need two-step watermark updates */
12535 if ((pipe_config->update_wm_pre || pipe_config->update_wm_post) &&
12536 INTEL_INFO(dev)->gen < 9 && dev_priv->display.optimize_watermarks)
12537 to_intel_crtc_state(crtc_state)->wm.need_postvbl_update = true;
12539 if (visible || was_visible)
12540 pipe_config->fb_bits |= to_intel_plane(plane)->frontbuffer_bit;
12543 * WaCxSRDisabledForSpriteScaling:ivb
12545 * cstate->update_wm was already set above, so this flag will
12546 * take effect when we commit and program watermarks.
12548 if (plane->type == DRM_PLANE_TYPE_OVERLAY && IS_IVYBRIDGE(dev_priv) &&
12549 needs_scaling(to_intel_plane_state(plane_state)) &&
12550 !needs_scaling(old_plane_state))
12551 pipe_config->disable_lp_wm = true;
12556 static bool encoders_cloneable(const struct intel_encoder *a,
12557 const struct intel_encoder *b)
12559 /* masks could be asymmetric, so check both ways */
12560 return a == b || (a->cloneable & (1 << b->type) &&
12561 b->cloneable & (1 << a->type));
12564 static bool check_single_encoder_cloning(struct drm_atomic_state *state,
12565 struct intel_crtc *crtc,
12566 struct intel_encoder *encoder)
12568 struct intel_encoder *source_encoder;
12569 struct drm_connector *connector;
12570 struct drm_connector_state *connector_state;
12573 for_each_connector_in_state(state, connector, connector_state, i) {
12574 if (connector_state->crtc != &crtc->base)
12578 to_intel_encoder(connector_state->best_encoder);
12579 if (!encoders_cloneable(encoder, source_encoder))
12586 static int intel_crtc_atomic_check(struct drm_crtc *crtc,
12587 struct drm_crtc_state *crtc_state)
12589 struct drm_device *dev = crtc->dev;
12590 struct drm_i915_private *dev_priv = to_i915(dev);
12591 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12592 struct intel_crtc_state *pipe_config =
12593 to_intel_crtc_state(crtc_state);
12594 struct drm_atomic_state *state = crtc_state->state;
12596 bool mode_changed = needs_modeset(crtc_state);
12598 if (mode_changed && !crtc_state->active)
12599 pipe_config->update_wm_post = true;
12601 if (mode_changed && crtc_state->enable &&
12602 dev_priv->display.crtc_compute_clock &&
12603 !WARN_ON(pipe_config->shared_dpll)) {
12604 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
12610 if (crtc_state->color_mgmt_changed) {
12611 ret = intel_color_check(crtc, crtc_state);
12616 * Changing color management on Intel hardware is
12617 * handled as part of planes update.
12619 crtc_state->planes_changed = true;
12623 if (dev_priv->display.compute_pipe_wm) {
12624 ret = dev_priv->display.compute_pipe_wm(pipe_config);
12626 DRM_DEBUG_KMS("Target pipe watermarks are invalid\n");
12631 if (dev_priv->display.compute_intermediate_wm &&
12632 !to_intel_atomic_state(state)->skip_intermediate_wm) {
12633 if (WARN_ON(!dev_priv->display.compute_pipe_wm))
12637 * Calculate 'intermediate' watermarks that satisfy both the
12638 * old state and the new state. We can program these
12641 ret = dev_priv->display.compute_intermediate_wm(crtc->dev,
12645 DRM_DEBUG_KMS("No valid intermediate pipe watermarks are possible\n");
12648 } else if (dev_priv->display.compute_intermediate_wm) {
12649 if (HAS_PCH_SPLIT(dev_priv) && INTEL_GEN(dev_priv) < 9)
12650 pipe_config->wm.ilk.intermediate = pipe_config->wm.ilk.optimal;
12653 if (INTEL_INFO(dev)->gen >= 9) {
12655 ret = skl_update_scaler_crtc(pipe_config);
12658 ret = intel_atomic_setup_scalers(dev, intel_crtc,
12665 static const struct drm_crtc_helper_funcs intel_helper_funcs = {
12666 .mode_set_base_atomic = intel_pipe_set_base_atomic,
12667 .atomic_begin = intel_begin_crtc_commit,
12668 .atomic_flush = intel_finish_crtc_commit,
12669 .atomic_check = intel_crtc_atomic_check,
12672 static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
12674 struct intel_connector *connector;
12676 for_each_intel_connector(dev, connector) {
12677 if (connector->base.state->crtc)
12678 drm_connector_unreference(&connector->base);
12680 if (connector->base.encoder) {
12681 connector->base.state->best_encoder =
12682 connector->base.encoder;
12683 connector->base.state->crtc =
12684 connector->base.encoder->crtc;
12686 drm_connector_reference(&connector->base);
12688 connector->base.state->best_encoder = NULL;
12689 connector->base.state->crtc = NULL;
12695 connected_sink_compute_bpp(struct intel_connector *connector,
12696 struct intel_crtc_state *pipe_config)
12698 const struct drm_display_info *info = &connector->base.display_info;
12699 int bpp = pipe_config->pipe_bpp;
12701 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
12702 connector->base.base.id,
12703 connector->base.name);
12705 /* Don't use an invalid EDID bpc value */
12706 if (info->bpc != 0 && info->bpc * 3 < bpp) {
12707 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
12708 bpp, info->bpc * 3);
12709 pipe_config->pipe_bpp = info->bpc * 3;
12712 /* Clamp bpp to 8 on screens without EDID 1.4 */
12713 if (info->bpc == 0 && bpp > 24) {
12714 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
12716 pipe_config->pipe_bpp = 24;
12721 compute_baseline_pipe_bpp(struct intel_crtc *crtc,
12722 struct intel_crtc_state *pipe_config)
12724 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
12725 struct drm_atomic_state *state;
12726 struct drm_connector *connector;
12727 struct drm_connector_state *connector_state;
12730 if ((IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
12731 IS_CHERRYVIEW(dev_priv)))
12733 else if (INTEL_GEN(dev_priv) >= 5)
12739 pipe_config->pipe_bpp = bpp;
12741 state = pipe_config->base.state;
12743 /* Clamp display bpp to EDID value */
12744 for_each_connector_in_state(state, connector, connector_state, i) {
12745 if (connector_state->crtc != &crtc->base)
12748 connected_sink_compute_bpp(to_intel_connector(connector),
12755 static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
12757 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
12758 "type: 0x%x flags: 0x%x\n",
12760 mode->crtc_hdisplay, mode->crtc_hsync_start,
12761 mode->crtc_hsync_end, mode->crtc_htotal,
12762 mode->crtc_vdisplay, mode->crtc_vsync_start,
12763 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
12766 static void intel_dump_pipe_config(struct intel_crtc *crtc,
12767 struct intel_crtc_state *pipe_config,
12768 const char *context)
12770 struct drm_device *dev = crtc->base.dev;
12771 struct drm_i915_private *dev_priv = to_i915(dev);
12772 struct drm_plane *plane;
12773 struct intel_plane *intel_plane;
12774 struct intel_plane_state *state;
12775 struct drm_framebuffer *fb;
12777 DRM_DEBUG_KMS("[CRTC:%d:%s]%s config %p for pipe %c\n",
12778 crtc->base.base.id, crtc->base.name,
12779 context, pipe_config, pipe_name(crtc->pipe));
12781 DRM_DEBUG_KMS("cpu_transcoder: %s\n", transcoder_name(pipe_config->cpu_transcoder));
12782 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
12783 pipe_config->pipe_bpp, pipe_config->dither);
12784 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
12785 pipe_config->has_pch_encoder,
12786 pipe_config->fdi_lanes,
12787 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
12788 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
12789 pipe_config->fdi_m_n.tu);
12790 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
12791 intel_crtc_has_dp_encoder(pipe_config),
12792 pipe_config->lane_count,
12793 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
12794 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
12795 pipe_config->dp_m_n.tu);
12797 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
12798 intel_crtc_has_dp_encoder(pipe_config),
12799 pipe_config->lane_count,
12800 pipe_config->dp_m2_n2.gmch_m,
12801 pipe_config->dp_m2_n2.gmch_n,
12802 pipe_config->dp_m2_n2.link_m,
12803 pipe_config->dp_m2_n2.link_n,
12804 pipe_config->dp_m2_n2.tu);
12806 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
12807 pipe_config->has_audio,
12808 pipe_config->has_infoframe);
12810 DRM_DEBUG_KMS("requested mode:\n");
12811 drm_mode_debug_printmodeline(&pipe_config->base.mode);
12812 DRM_DEBUG_KMS("adjusted mode:\n");
12813 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
12814 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
12815 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
12816 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
12817 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
12818 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
12820 pipe_config->scaler_state.scaler_users,
12821 pipe_config->scaler_state.scaler_id);
12822 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
12823 pipe_config->gmch_pfit.control,
12824 pipe_config->gmch_pfit.pgm_ratios,
12825 pipe_config->gmch_pfit.lvds_border_bits);
12826 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
12827 pipe_config->pch_pfit.pos,
12828 pipe_config->pch_pfit.size,
12829 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
12830 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
12831 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
12833 if (IS_BROXTON(dev_priv)) {
12834 DRM_DEBUG_KMS("dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x,"
12835 "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
12836 "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n",
12837 pipe_config->dpll_hw_state.ebb0,
12838 pipe_config->dpll_hw_state.ebb4,
12839 pipe_config->dpll_hw_state.pll0,
12840 pipe_config->dpll_hw_state.pll1,
12841 pipe_config->dpll_hw_state.pll2,
12842 pipe_config->dpll_hw_state.pll3,
12843 pipe_config->dpll_hw_state.pll6,
12844 pipe_config->dpll_hw_state.pll8,
12845 pipe_config->dpll_hw_state.pll9,
12846 pipe_config->dpll_hw_state.pll10,
12847 pipe_config->dpll_hw_state.pcsdw12);
12848 } else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
12849 DRM_DEBUG_KMS("dpll_hw_state: "
12850 "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
12851 pipe_config->dpll_hw_state.ctrl1,
12852 pipe_config->dpll_hw_state.cfgcr1,
12853 pipe_config->dpll_hw_state.cfgcr2);
12854 } else if (HAS_DDI(dev_priv)) {
12855 DRM_DEBUG_KMS("dpll_hw_state: wrpll: 0x%x spll: 0x%x\n",
12856 pipe_config->dpll_hw_state.wrpll,
12857 pipe_config->dpll_hw_state.spll);
12859 DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
12860 "fp0: 0x%x, fp1: 0x%x\n",
12861 pipe_config->dpll_hw_state.dpll,
12862 pipe_config->dpll_hw_state.dpll_md,
12863 pipe_config->dpll_hw_state.fp0,
12864 pipe_config->dpll_hw_state.fp1);
12867 DRM_DEBUG_KMS("planes on this crtc\n");
12868 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
12870 intel_plane = to_intel_plane(plane);
12871 if (intel_plane->pipe != crtc->pipe)
12874 state = to_intel_plane_state(plane->state);
12875 fb = state->base.fb;
12877 DRM_DEBUG_KMS("[PLANE:%d:%s] disabled, scaler_id = %d\n",
12878 plane->base.id, plane->name, state->scaler_id);
12882 format_name = drm_get_format_name(fb->pixel_format);
12884 DRM_DEBUG_KMS("[PLANE:%d:%s] enabled",
12885 plane->base.id, plane->name);
12886 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = %s",
12887 fb->base.id, fb->width, fb->height, format_name);
12888 DRM_DEBUG_KMS("\tscaler:%d src %dx%d+%d+%d dst %dx%d+%d+%d\n",
12890 state->base.src.x1 >> 16,
12891 state->base.src.y1 >> 16,
12892 drm_rect_width(&state->base.src) >> 16,
12893 drm_rect_height(&state->base.src) >> 16,
12894 state->base.dst.x1, state->base.dst.y1,
12895 drm_rect_width(&state->base.dst),
12896 drm_rect_height(&state->base.dst));
12898 kfree(format_name);
12902 static bool check_digital_port_conflicts(struct drm_atomic_state *state)
12904 struct drm_device *dev = state->dev;
12905 struct drm_connector *connector;
12906 unsigned int used_ports = 0;
12907 unsigned int used_mst_ports = 0;
12910 * Walk the connector list instead of the encoder
12911 * list to detect the problem on ddi platforms
12912 * where there's just one encoder per digital port.
12914 drm_for_each_connector(connector, dev) {
12915 struct drm_connector_state *connector_state;
12916 struct intel_encoder *encoder;
12918 connector_state = drm_atomic_get_existing_connector_state(state, connector);
12919 if (!connector_state)
12920 connector_state = connector->state;
12922 if (!connector_state->best_encoder)
12925 encoder = to_intel_encoder(connector_state->best_encoder);
12927 WARN_ON(!connector_state->crtc);
12929 switch (encoder->type) {
12930 unsigned int port_mask;
12931 case INTEL_OUTPUT_UNKNOWN:
12932 if (WARN_ON(!HAS_DDI(to_i915(dev))))
12934 case INTEL_OUTPUT_DP:
12935 case INTEL_OUTPUT_HDMI:
12936 case INTEL_OUTPUT_EDP:
12937 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
12939 /* the same port mustn't appear more than once */
12940 if (used_ports & port_mask)
12943 used_ports |= port_mask;
12945 case INTEL_OUTPUT_DP_MST:
12947 1 << enc_to_mst(&encoder->base)->primary->port;
12954 /* can't mix MST and SST/HDMI on the same port */
12955 if (used_ports & used_mst_ports)
12962 clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
12964 struct drm_crtc_state tmp_state;
12965 struct intel_crtc_scaler_state scaler_state;
12966 struct intel_dpll_hw_state dpll_hw_state;
12967 struct intel_shared_dpll *shared_dpll;
12970 /* FIXME: before the switch to atomic started, a new pipe_config was
12971 * kzalloc'd. Code that depends on any field being zero should be
12972 * fixed, so that the crtc_state can be safely duplicated. For now,
12973 * only fields that are know to not cause problems are preserved. */
12975 tmp_state = crtc_state->base;
12976 scaler_state = crtc_state->scaler_state;
12977 shared_dpll = crtc_state->shared_dpll;
12978 dpll_hw_state = crtc_state->dpll_hw_state;
12979 force_thru = crtc_state->pch_pfit.force_thru;
12981 memset(crtc_state, 0, sizeof *crtc_state);
12983 crtc_state->base = tmp_state;
12984 crtc_state->scaler_state = scaler_state;
12985 crtc_state->shared_dpll = shared_dpll;
12986 crtc_state->dpll_hw_state = dpll_hw_state;
12987 crtc_state->pch_pfit.force_thru = force_thru;
12991 intel_modeset_pipe_config(struct drm_crtc *crtc,
12992 struct intel_crtc_state *pipe_config)
12994 struct drm_atomic_state *state = pipe_config->base.state;
12995 struct intel_encoder *encoder;
12996 struct drm_connector *connector;
12997 struct drm_connector_state *connector_state;
12998 int base_bpp, ret = -EINVAL;
13002 clear_intel_crtc_state(pipe_config);
13004 pipe_config->cpu_transcoder =
13005 (enum transcoder) to_intel_crtc(crtc)->pipe;
13008 * Sanitize sync polarity flags based on requested ones. If neither
13009 * positive or negative polarity is requested, treat this as meaning
13010 * negative polarity.
13012 if (!(pipe_config->base.adjusted_mode.flags &
13013 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
13014 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
13016 if (!(pipe_config->base.adjusted_mode.flags &
13017 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
13018 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
13020 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
13026 * Determine the real pipe dimensions. Note that stereo modes can
13027 * increase the actual pipe size due to the frame doubling and
13028 * insertion of additional space for blanks between the frame. This
13029 * is stored in the crtc timings. We use the requested mode to do this
13030 * computation to clearly distinguish it from the adjusted mode, which
13031 * can be changed by the connectors in the below retry loop.
13033 drm_crtc_get_hv_timing(&pipe_config->base.mode,
13034 &pipe_config->pipe_src_w,
13035 &pipe_config->pipe_src_h);
13037 for_each_connector_in_state(state, connector, connector_state, i) {
13038 if (connector_state->crtc != crtc)
13041 encoder = to_intel_encoder(connector_state->best_encoder);
13043 if (!check_single_encoder_cloning(state, to_intel_crtc(crtc), encoder)) {
13044 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
13049 * Determine output_types before calling the .compute_config()
13050 * hooks so that the hooks can use this information safely.
13052 pipe_config->output_types |= 1 << encoder->type;
13056 /* Ensure the port clock defaults are reset when retrying. */
13057 pipe_config->port_clock = 0;
13058 pipe_config->pixel_multiplier = 1;
13060 /* Fill in default crtc timings, allow encoders to overwrite them. */
13061 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
13062 CRTC_STEREO_DOUBLE);
13064 /* Pass our mode to the connectors and the CRTC to give them a chance to
13065 * adjust it according to limitations or connector properties, and also
13066 * a chance to reject the mode entirely.
13068 for_each_connector_in_state(state, connector, connector_state, i) {
13069 if (connector_state->crtc != crtc)
13072 encoder = to_intel_encoder(connector_state->best_encoder);
13074 if (!(encoder->compute_config(encoder, pipe_config, connector_state))) {
13075 DRM_DEBUG_KMS("Encoder config failure\n");
13080 /* Set default port clock if not overwritten by the encoder. Needs to be
13081 * done afterwards in case the encoder adjusts the mode. */
13082 if (!pipe_config->port_clock)
13083 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
13084 * pipe_config->pixel_multiplier;
13086 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
13088 DRM_DEBUG_KMS("CRTC fixup failed\n");
13092 if (ret == RETRY) {
13093 if (WARN(!retry, "loop in pipe configuration computation\n")) {
13098 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
13100 goto encoder_retry;
13103 /* Dithering seems to not pass-through bits correctly when it should, so
13104 * only enable it on 6bpc panels. */
13105 pipe_config->dither = pipe_config->pipe_bpp == 6*3;
13106 DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n",
13107 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
13114 intel_modeset_update_crtc_state(struct drm_atomic_state *state)
13116 struct drm_crtc *crtc;
13117 struct drm_crtc_state *crtc_state;
13120 /* Double check state. */
13121 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13122 to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state);
13124 /* Update hwmode for vblank functions */
13125 if (crtc->state->active)
13126 crtc->hwmode = crtc->state->adjusted_mode;
13128 crtc->hwmode.crtc_clock = 0;
13131 * Update legacy state to satisfy fbc code. This can
13132 * be removed when fbc uses the atomic state.
13134 if (drm_atomic_get_existing_plane_state(state, crtc->primary)) {
13135 struct drm_plane_state *plane_state = crtc->primary->state;
13137 crtc->primary->fb = plane_state->fb;
13138 crtc->x = plane_state->src_x >> 16;
13139 crtc->y = plane_state->src_y >> 16;
13144 static bool intel_fuzzy_clock_check(int clock1, int clock2)
13148 if (clock1 == clock2)
13151 if (!clock1 || !clock2)
13154 diff = abs(clock1 - clock2);
13156 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
13163 intel_compare_m_n(unsigned int m, unsigned int n,
13164 unsigned int m2, unsigned int n2,
13167 if (m == m2 && n == n2)
13170 if (exact || !m || !n || !m2 || !n2)
13173 BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX);
13180 } else if (n < n2) {
13190 return intel_fuzzy_clock_check(m, m2);
13194 intel_compare_link_m_n(const struct intel_link_m_n *m_n,
13195 struct intel_link_m_n *m2_n2,
13198 if (m_n->tu == m2_n2->tu &&
13199 intel_compare_m_n(m_n->gmch_m, m_n->gmch_n,
13200 m2_n2->gmch_m, m2_n2->gmch_n, !adjust) &&
13201 intel_compare_m_n(m_n->link_m, m_n->link_n,
13202 m2_n2->link_m, m2_n2->link_n, !adjust)) {
13213 intel_pipe_config_compare(struct drm_device *dev,
13214 struct intel_crtc_state *current_config,
13215 struct intel_crtc_state *pipe_config,
13218 struct drm_i915_private *dev_priv = to_i915(dev);
13221 #define INTEL_ERR_OR_DBG_KMS(fmt, ...) \
13224 DRM_ERROR(fmt, ##__VA_ARGS__); \
13226 DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \
13229 #define PIPE_CONF_CHECK_X(name) \
13230 if (current_config->name != pipe_config->name) { \
13231 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
13232 "(expected 0x%08x, found 0x%08x)\n", \
13233 current_config->name, \
13234 pipe_config->name); \
13238 #define PIPE_CONF_CHECK_I(name) \
13239 if (current_config->name != pipe_config->name) { \
13240 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
13241 "(expected %i, found %i)\n", \
13242 current_config->name, \
13243 pipe_config->name); \
13247 #define PIPE_CONF_CHECK_P(name) \
13248 if (current_config->name != pipe_config->name) { \
13249 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
13250 "(expected %p, found %p)\n", \
13251 current_config->name, \
13252 pipe_config->name); \
13256 #define PIPE_CONF_CHECK_M_N(name) \
13257 if (!intel_compare_link_m_n(¤t_config->name, \
13258 &pipe_config->name,\
13260 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
13261 "(expected tu %i gmch %i/%i link %i/%i, " \
13262 "found tu %i, gmch %i/%i link %i/%i)\n", \
13263 current_config->name.tu, \
13264 current_config->name.gmch_m, \
13265 current_config->name.gmch_n, \
13266 current_config->name.link_m, \
13267 current_config->name.link_n, \
13268 pipe_config->name.tu, \
13269 pipe_config->name.gmch_m, \
13270 pipe_config->name.gmch_n, \
13271 pipe_config->name.link_m, \
13272 pipe_config->name.link_n); \
13276 /* This is required for BDW+ where there is only one set of registers for
13277 * switching between high and low RR.
13278 * This macro can be used whenever a comparison has to be made between one
13279 * hw state and multiple sw state variables.
13281 #define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \
13282 if (!intel_compare_link_m_n(¤t_config->name, \
13283 &pipe_config->name, adjust) && \
13284 !intel_compare_link_m_n(¤t_config->alt_name, \
13285 &pipe_config->name, adjust)) { \
13286 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
13287 "(expected tu %i gmch %i/%i link %i/%i, " \
13288 "or tu %i gmch %i/%i link %i/%i, " \
13289 "found tu %i, gmch %i/%i link %i/%i)\n", \
13290 current_config->name.tu, \
13291 current_config->name.gmch_m, \
13292 current_config->name.gmch_n, \
13293 current_config->name.link_m, \
13294 current_config->name.link_n, \
13295 current_config->alt_name.tu, \
13296 current_config->alt_name.gmch_m, \
13297 current_config->alt_name.gmch_n, \
13298 current_config->alt_name.link_m, \
13299 current_config->alt_name.link_n, \
13300 pipe_config->name.tu, \
13301 pipe_config->name.gmch_m, \
13302 pipe_config->name.gmch_n, \
13303 pipe_config->name.link_m, \
13304 pipe_config->name.link_n); \
13308 #define PIPE_CONF_CHECK_FLAGS(name, mask) \
13309 if ((current_config->name ^ pipe_config->name) & (mask)) { \
13310 INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \
13311 "(expected %i, found %i)\n", \
13312 current_config->name & (mask), \
13313 pipe_config->name & (mask)); \
13317 #define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
13318 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
13319 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
13320 "(expected %i, found %i)\n", \
13321 current_config->name, \
13322 pipe_config->name); \
13326 #define PIPE_CONF_QUIRK(quirk) \
13327 ((current_config->quirks | pipe_config->quirks) & (quirk))
13329 PIPE_CONF_CHECK_I(cpu_transcoder);
13331 PIPE_CONF_CHECK_I(has_pch_encoder);
13332 PIPE_CONF_CHECK_I(fdi_lanes);
13333 PIPE_CONF_CHECK_M_N(fdi_m_n);
13335 PIPE_CONF_CHECK_I(lane_count);
13336 PIPE_CONF_CHECK_X(lane_lat_optim_mask);
13338 if (INTEL_INFO(dev)->gen < 8) {
13339 PIPE_CONF_CHECK_M_N(dp_m_n);
13341 if (current_config->has_drrs)
13342 PIPE_CONF_CHECK_M_N(dp_m2_n2);
13344 PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2);
13346 PIPE_CONF_CHECK_X(output_types);
13348 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
13349 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
13350 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
13351 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
13352 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
13353 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
13355 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
13356 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
13357 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
13358 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
13359 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
13360 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
13362 PIPE_CONF_CHECK_I(pixel_multiplier);
13363 PIPE_CONF_CHECK_I(has_hdmi_sink);
13364 if ((INTEL_GEN(dev_priv) < 8 && !IS_HASWELL(dev_priv)) ||
13365 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
13366 PIPE_CONF_CHECK_I(limited_color_range);
13367 PIPE_CONF_CHECK_I(has_infoframe);
13369 PIPE_CONF_CHECK_I(has_audio);
13371 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
13372 DRM_MODE_FLAG_INTERLACE);
13374 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
13375 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
13376 DRM_MODE_FLAG_PHSYNC);
13377 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
13378 DRM_MODE_FLAG_NHSYNC);
13379 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
13380 DRM_MODE_FLAG_PVSYNC);
13381 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
13382 DRM_MODE_FLAG_NVSYNC);
13385 PIPE_CONF_CHECK_X(gmch_pfit.control);
13386 /* pfit ratios are autocomputed by the hw on gen4+ */
13387 if (INTEL_INFO(dev)->gen < 4)
13388 PIPE_CONF_CHECK_X(gmch_pfit.pgm_ratios);
13389 PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits);
13392 PIPE_CONF_CHECK_I(pipe_src_w);
13393 PIPE_CONF_CHECK_I(pipe_src_h);
13395 PIPE_CONF_CHECK_I(pch_pfit.enabled);
13396 if (current_config->pch_pfit.enabled) {
13397 PIPE_CONF_CHECK_X(pch_pfit.pos);
13398 PIPE_CONF_CHECK_X(pch_pfit.size);
13401 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
13404 /* BDW+ don't expose a synchronous way to read the state */
13405 if (IS_HASWELL(dev_priv))
13406 PIPE_CONF_CHECK_I(ips_enabled);
13408 PIPE_CONF_CHECK_I(double_wide);
13410 PIPE_CONF_CHECK_P(shared_dpll);
13411 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
13412 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
13413 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
13414 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
13415 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
13416 PIPE_CONF_CHECK_X(dpll_hw_state.spll);
13417 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
13418 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
13419 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
13421 PIPE_CONF_CHECK_X(dsi_pll.ctrl);
13422 PIPE_CONF_CHECK_X(dsi_pll.div);
13424 if (IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5)
13425 PIPE_CONF_CHECK_I(pipe_bpp);
13427 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
13428 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
13430 #undef PIPE_CONF_CHECK_X
13431 #undef PIPE_CONF_CHECK_I
13432 #undef PIPE_CONF_CHECK_P
13433 #undef PIPE_CONF_CHECK_FLAGS
13434 #undef PIPE_CONF_CHECK_CLOCK_FUZZY
13435 #undef PIPE_CONF_QUIRK
13436 #undef INTEL_ERR_OR_DBG_KMS
13441 static void intel_pipe_config_sanity_check(struct drm_i915_private *dev_priv,
13442 const struct intel_crtc_state *pipe_config)
13444 if (pipe_config->has_pch_encoder) {
13445 int fdi_dotclock = intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config),
13446 &pipe_config->fdi_m_n);
13447 int dotclock = pipe_config->base.adjusted_mode.crtc_clock;
13450 * FDI already provided one idea for the dotclock.
13451 * Yell if the encoder disagrees.
13453 WARN(!intel_fuzzy_clock_check(fdi_dotclock, dotclock),
13454 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
13455 fdi_dotclock, dotclock);
13459 static void verify_wm_state(struct drm_crtc *crtc,
13460 struct drm_crtc_state *new_state)
13462 struct drm_device *dev = crtc->dev;
13463 struct drm_i915_private *dev_priv = to_i915(dev);
13464 struct skl_ddb_allocation hw_ddb, *sw_ddb;
13465 struct skl_ddb_entry *hw_entry, *sw_entry;
13466 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13467 const enum pipe pipe = intel_crtc->pipe;
13470 if (INTEL_INFO(dev)->gen < 9 || !new_state->active)
13473 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
13474 sw_ddb = &dev_priv->wm.skl_hw.ddb;
13477 for_each_plane(dev_priv, pipe, plane) {
13478 hw_entry = &hw_ddb.plane[pipe][plane];
13479 sw_entry = &sw_ddb->plane[pipe][plane];
13481 if (skl_ddb_entry_equal(hw_entry, sw_entry))
13484 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
13485 "(expected (%u,%u), found (%u,%u))\n",
13486 pipe_name(pipe), plane + 1,
13487 sw_entry->start, sw_entry->end,
13488 hw_entry->start, hw_entry->end);
13493 * If the cursor plane isn't active, we may not have updated it's ddb
13494 * allocation. In that case since the ddb allocation will be updated
13495 * once the plane becomes visible, we can skip this check
13497 if (intel_crtc->cursor_addr) {
13498 hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR];
13499 sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR];
13501 if (!skl_ddb_entry_equal(hw_entry, sw_entry)) {
13502 DRM_ERROR("mismatch in DDB state pipe %c cursor "
13503 "(expected (%u,%u), found (%u,%u))\n",
13505 sw_entry->start, sw_entry->end,
13506 hw_entry->start, hw_entry->end);
13512 verify_connector_state(struct drm_device *dev, struct drm_crtc *crtc)
13514 struct drm_connector *connector;
13516 drm_for_each_connector(connector, dev) {
13517 struct drm_encoder *encoder = connector->encoder;
13518 struct drm_connector_state *state = connector->state;
13520 if (state->crtc != crtc)
13523 intel_connector_verify_state(to_intel_connector(connector));
13525 I915_STATE_WARN(state->best_encoder != encoder,
13526 "connector's atomic encoder doesn't match legacy encoder\n");
13531 verify_encoder_state(struct drm_device *dev)
13533 struct intel_encoder *encoder;
13534 struct intel_connector *connector;
13536 for_each_intel_encoder(dev, encoder) {
13537 bool enabled = false;
13540 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
13541 encoder->base.base.id,
13542 encoder->base.name);
13544 for_each_intel_connector(dev, connector) {
13545 if (connector->base.state->best_encoder != &encoder->base)
13549 I915_STATE_WARN(connector->base.state->crtc !=
13550 encoder->base.crtc,
13551 "connector's crtc doesn't match encoder crtc\n");
13554 I915_STATE_WARN(!!encoder->base.crtc != enabled,
13555 "encoder's enabled state mismatch "
13556 "(expected %i, found %i)\n",
13557 !!encoder->base.crtc, enabled);
13559 if (!encoder->base.crtc) {
13562 active = encoder->get_hw_state(encoder, &pipe);
13563 I915_STATE_WARN(active,
13564 "encoder detached but still enabled on pipe %c.\n",
13571 verify_crtc_state(struct drm_crtc *crtc,
13572 struct drm_crtc_state *old_crtc_state,
13573 struct drm_crtc_state *new_crtc_state)
13575 struct drm_device *dev = crtc->dev;
13576 struct drm_i915_private *dev_priv = to_i915(dev);
13577 struct intel_encoder *encoder;
13578 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13579 struct intel_crtc_state *pipe_config, *sw_config;
13580 struct drm_atomic_state *old_state;
13583 old_state = old_crtc_state->state;
13584 __drm_atomic_helper_crtc_destroy_state(old_crtc_state);
13585 pipe_config = to_intel_crtc_state(old_crtc_state);
13586 memset(pipe_config, 0, sizeof(*pipe_config));
13587 pipe_config->base.crtc = crtc;
13588 pipe_config->base.state = old_state;
13590 DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
13592 active = dev_priv->display.get_pipe_config(intel_crtc, pipe_config);
13594 /* hw state is inconsistent with the pipe quirk */
13595 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
13596 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
13597 active = new_crtc_state->active;
13599 I915_STATE_WARN(new_crtc_state->active != active,
13600 "crtc active state doesn't match with hw state "
13601 "(expected %i, found %i)\n", new_crtc_state->active, active);
13603 I915_STATE_WARN(intel_crtc->active != new_crtc_state->active,
13604 "transitional active state does not match atomic hw state "
13605 "(expected %i, found %i)\n", new_crtc_state->active, intel_crtc->active);
13607 for_each_encoder_on_crtc(dev, crtc, encoder) {
13610 active = encoder->get_hw_state(encoder, &pipe);
13611 I915_STATE_WARN(active != new_crtc_state->active,
13612 "[ENCODER:%i] active %i with crtc active %i\n",
13613 encoder->base.base.id, active, new_crtc_state->active);
13615 I915_STATE_WARN(active && intel_crtc->pipe != pipe,
13616 "Encoder connected to wrong pipe %c\n",
13620 pipe_config->output_types |= 1 << encoder->type;
13621 encoder->get_config(encoder, pipe_config);
13625 if (!new_crtc_state->active)
13628 intel_pipe_config_sanity_check(dev_priv, pipe_config);
13630 sw_config = to_intel_crtc_state(crtc->state);
13631 if (!intel_pipe_config_compare(dev, sw_config,
13632 pipe_config, false)) {
13633 I915_STATE_WARN(1, "pipe state doesn't match!\n");
13634 intel_dump_pipe_config(intel_crtc, pipe_config,
13636 intel_dump_pipe_config(intel_crtc, sw_config,
13642 verify_single_dpll_state(struct drm_i915_private *dev_priv,
13643 struct intel_shared_dpll *pll,
13644 struct drm_crtc *crtc,
13645 struct drm_crtc_state *new_state)
13647 struct intel_dpll_hw_state dpll_hw_state;
13648 unsigned crtc_mask;
13651 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
13653 DRM_DEBUG_KMS("%s\n", pll->name);
13655 active = pll->funcs.get_hw_state(dev_priv, pll, &dpll_hw_state);
13657 if (!(pll->flags & INTEL_DPLL_ALWAYS_ON)) {
13658 I915_STATE_WARN(!pll->on && pll->active_mask,
13659 "pll in active use but not on in sw tracking\n");
13660 I915_STATE_WARN(pll->on && !pll->active_mask,
13661 "pll is on but not used by any active crtc\n");
13662 I915_STATE_WARN(pll->on != active,
13663 "pll on state mismatch (expected %i, found %i)\n",
13668 I915_STATE_WARN(pll->active_mask & ~pll->config.crtc_mask,
13669 "more active pll users than references: %x vs %x\n",
13670 pll->active_mask, pll->config.crtc_mask);
13675 crtc_mask = 1 << drm_crtc_index(crtc);
13677 if (new_state->active)
13678 I915_STATE_WARN(!(pll->active_mask & crtc_mask),
13679 "pll active mismatch (expected pipe %c in active mask 0x%02x)\n",
13680 pipe_name(drm_crtc_index(crtc)), pll->active_mask);
13682 I915_STATE_WARN(pll->active_mask & crtc_mask,
13683 "pll active mismatch (didn't expect pipe %c in active mask 0x%02x)\n",
13684 pipe_name(drm_crtc_index(crtc)), pll->active_mask);
13686 I915_STATE_WARN(!(pll->config.crtc_mask & crtc_mask),
13687 "pll enabled crtcs mismatch (expected 0x%x in 0x%02x)\n",
13688 crtc_mask, pll->config.crtc_mask);
13690 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state,
13692 sizeof(dpll_hw_state)),
13693 "pll hw state mismatch\n");
13697 verify_shared_dpll_state(struct drm_device *dev, struct drm_crtc *crtc,
13698 struct drm_crtc_state *old_crtc_state,
13699 struct drm_crtc_state *new_crtc_state)
13701 struct drm_i915_private *dev_priv = to_i915(dev);
13702 struct intel_crtc_state *old_state = to_intel_crtc_state(old_crtc_state);
13703 struct intel_crtc_state *new_state = to_intel_crtc_state(new_crtc_state);
13705 if (new_state->shared_dpll)
13706 verify_single_dpll_state(dev_priv, new_state->shared_dpll, crtc, new_crtc_state);
13708 if (old_state->shared_dpll &&
13709 old_state->shared_dpll != new_state->shared_dpll) {
13710 unsigned crtc_mask = 1 << drm_crtc_index(crtc);
13711 struct intel_shared_dpll *pll = old_state->shared_dpll;
13713 I915_STATE_WARN(pll->active_mask & crtc_mask,
13714 "pll active mismatch (didn't expect pipe %c in active mask)\n",
13715 pipe_name(drm_crtc_index(crtc)));
13716 I915_STATE_WARN(pll->config.crtc_mask & crtc_mask,
13717 "pll enabled crtcs mismatch (found %x in enabled mask)\n",
13718 pipe_name(drm_crtc_index(crtc)));
13723 intel_modeset_verify_crtc(struct drm_crtc *crtc,
13724 struct drm_crtc_state *old_state,
13725 struct drm_crtc_state *new_state)
13727 if (!needs_modeset(new_state) &&
13728 !to_intel_crtc_state(new_state)->update_pipe)
13731 verify_wm_state(crtc, new_state);
13732 verify_connector_state(crtc->dev, crtc);
13733 verify_crtc_state(crtc, old_state, new_state);
13734 verify_shared_dpll_state(crtc->dev, crtc, old_state, new_state);
13738 verify_disabled_dpll_state(struct drm_device *dev)
13740 struct drm_i915_private *dev_priv = to_i915(dev);
13743 for (i = 0; i < dev_priv->num_shared_dpll; i++)
13744 verify_single_dpll_state(dev_priv, &dev_priv->shared_dplls[i], NULL, NULL);
13748 intel_modeset_verify_disabled(struct drm_device *dev)
13750 verify_encoder_state(dev);
13751 verify_connector_state(dev, NULL);
13752 verify_disabled_dpll_state(dev);
13755 static void update_scanline_offset(struct intel_crtc *crtc)
13757 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
13760 * The scanline counter increments at the leading edge of hsync.
13762 * On most platforms it starts counting from vtotal-1 on the
13763 * first active line. That means the scanline counter value is
13764 * always one less than what we would expect. Ie. just after
13765 * start of vblank, which also occurs at start of hsync (on the
13766 * last active line), the scanline counter will read vblank_start-1.
13768 * On gen2 the scanline counter starts counting from 1 instead
13769 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
13770 * to keep the value positive), instead of adding one.
13772 * On HSW+ the behaviour of the scanline counter depends on the output
13773 * type. For DP ports it behaves like most other platforms, but on HDMI
13774 * there's an extra 1 line difference. So we need to add two instead of
13775 * one to the value.
13777 if (IS_GEN2(dev_priv)) {
13778 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
13781 vtotal = adjusted_mode->crtc_vtotal;
13782 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
13785 crtc->scanline_offset = vtotal - 1;
13786 } else if (HAS_DDI(dev_priv) &&
13787 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_HDMI)) {
13788 crtc->scanline_offset = 2;
13790 crtc->scanline_offset = 1;
13793 static void intel_modeset_clear_plls(struct drm_atomic_state *state)
13795 struct drm_device *dev = state->dev;
13796 struct drm_i915_private *dev_priv = to_i915(dev);
13797 struct intel_shared_dpll_config *shared_dpll = NULL;
13798 struct drm_crtc *crtc;
13799 struct drm_crtc_state *crtc_state;
13802 if (!dev_priv->display.crtc_compute_clock)
13805 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13806 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13807 struct intel_shared_dpll *old_dpll =
13808 to_intel_crtc_state(crtc->state)->shared_dpll;
13810 if (!needs_modeset(crtc_state))
13813 to_intel_crtc_state(crtc_state)->shared_dpll = NULL;
13819 shared_dpll = intel_atomic_get_shared_dpll_state(state);
13821 intel_shared_dpll_config_put(shared_dpll, old_dpll, intel_crtc);
13826 * This implements the workaround described in the "notes" section of the mode
13827 * set sequence documentation. When going from no pipes or single pipe to
13828 * multiple pipes, and planes are enabled after the pipe, we need to wait at
13829 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
13831 static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state)
13833 struct drm_crtc_state *crtc_state;
13834 struct intel_crtc *intel_crtc;
13835 struct drm_crtc *crtc;
13836 struct intel_crtc_state *first_crtc_state = NULL;
13837 struct intel_crtc_state *other_crtc_state = NULL;
13838 enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE;
13841 /* look at all crtc's that are going to be enabled in during modeset */
13842 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13843 intel_crtc = to_intel_crtc(crtc);
13845 if (!crtc_state->active || !needs_modeset(crtc_state))
13848 if (first_crtc_state) {
13849 other_crtc_state = to_intel_crtc_state(crtc_state);
13852 first_crtc_state = to_intel_crtc_state(crtc_state);
13853 first_pipe = intel_crtc->pipe;
13857 /* No workaround needed? */
13858 if (!first_crtc_state)
13861 /* w/a possibly needed, check how many crtc's are already enabled. */
13862 for_each_intel_crtc(state->dev, intel_crtc) {
13863 struct intel_crtc_state *pipe_config;
13865 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
13866 if (IS_ERR(pipe_config))
13867 return PTR_ERR(pipe_config);
13869 pipe_config->hsw_workaround_pipe = INVALID_PIPE;
13871 if (!pipe_config->base.active ||
13872 needs_modeset(&pipe_config->base))
13875 /* 2 or more enabled crtcs means no need for w/a */
13876 if (enabled_pipe != INVALID_PIPE)
13879 enabled_pipe = intel_crtc->pipe;
13882 if (enabled_pipe != INVALID_PIPE)
13883 first_crtc_state->hsw_workaround_pipe = enabled_pipe;
13884 else if (other_crtc_state)
13885 other_crtc_state->hsw_workaround_pipe = first_pipe;
13890 static int intel_modeset_all_pipes(struct drm_atomic_state *state)
13892 struct drm_crtc *crtc;
13893 struct drm_crtc_state *crtc_state;
13896 /* add all active pipes to the state */
13897 for_each_crtc(state->dev, crtc) {
13898 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13899 if (IS_ERR(crtc_state))
13900 return PTR_ERR(crtc_state);
13902 if (!crtc_state->active || needs_modeset(crtc_state))
13905 crtc_state->mode_changed = true;
13907 ret = drm_atomic_add_affected_connectors(state, crtc);
13911 ret = drm_atomic_add_affected_planes(state, crtc);
13919 static int intel_modeset_checks(struct drm_atomic_state *state)
13921 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
13922 struct drm_i915_private *dev_priv = to_i915(state->dev);
13923 struct drm_crtc *crtc;
13924 struct drm_crtc_state *crtc_state;
13927 if (!check_digital_port_conflicts(state)) {
13928 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
13932 intel_state->modeset = true;
13933 intel_state->active_crtcs = dev_priv->active_crtcs;
13935 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13936 if (crtc_state->active)
13937 intel_state->active_crtcs |= 1 << i;
13939 intel_state->active_crtcs &= ~(1 << i);
13941 if (crtc_state->active != crtc->state->active)
13942 intel_state->active_pipe_changes |= drm_crtc_mask(crtc);
13946 * See if the config requires any additional preparation, e.g.
13947 * to adjust global state with pipes off. We need to do this
13948 * here so we can get the modeset_pipe updated config for the new
13949 * mode set on this crtc. For other crtcs we need to use the
13950 * adjusted_mode bits in the crtc directly.
13952 if (dev_priv->display.modeset_calc_cdclk) {
13953 if (!intel_state->cdclk_pll_vco)
13954 intel_state->cdclk_pll_vco = dev_priv->cdclk_pll.vco;
13955 if (!intel_state->cdclk_pll_vco)
13956 intel_state->cdclk_pll_vco = dev_priv->skl_preferred_vco_freq;
13958 ret = dev_priv->display.modeset_calc_cdclk(state);
13962 if (intel_state->dev_cdclk != dev_priv->cdclk_freq ||
13963 intel_state->cdclk_pll_vco != dev_priv->cdclk_pll.vco)
13964 ret = intel_modeset_all_pipes(state);
13969 DRM_DEBUG_KMS("New cdclk calculated to be atomic %u, actual %u\n",
13970 intel_state->cdclk, intel_state->dev_cdclk);
13972 to_intel_atomic_state(state)->cdclk = dev_priv->atomic_cdclk_freq;
13974 intel_modeset_clear_plls(state);
13976 if (IS_HASWELL(dev_priv))
13977 return haswell_mode_set_planes_workaround(state);
13983 * Handle calculation of various watermark data at the end of the atomic check
13984 * phase. The code here should be run after the per-crtc and per-plane 'check'
13985 * handlers to ensure that all derived state has been updated.
13987 static int calc_watermark_data(struct drm_atomic_state *state)
13989 struct drm_device *dev = state->dev;
13990 struct drm_i915_private *dev_priv = to_i915(dev);
13992 /* Is there platform-specific watermark information to calculate? */
13993 if (dev_priv->display.compute_global_watermarks)
13994 return dev_priv->display.compute_global_watermarks(state);
14000 * intel_atomic_check - validate state object
14002 * @state: state to validate
14004 static int intel_atomic_check(struct drm_device *dev,
14005 struct drm_atomic_state *state)
14007 struct drm_i915_private *dev_priv = to_i915(dev);
14008 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
14009 struct drm_crtc *crtc;
14010 struct drm_crtc_state *crtc_state;
14012 bool any_ms = false;
14014 ret = drm_atomic_helper_check_modeset(dev, state);
14018 for_each_crtc_in_state(state, crtc, crtc_state, i) {
14019 struct intel_crtc_state *pipe_config =
14020 to_intel_crtc_state(crtc_state);
14022 /* Catch I915_MODE_FLAG_INHERITED */
14023 if (crtc_state->mode.private_flags != crtc->state->mode.private_flags)
14024 crtc_state->mode_changed = true;
14026 if (!needs_modeset(crtc_state))
14029 if (!crtc_state->enable) {
14034 /* FIXME: For only active_changed we shouldn't need to do any
14035 * state recomputation at all. */
14037 ret = drm_atomic_add_affected_connectors(state, crtc);
14041 ret = intel_modeset_pipe_config(crtc, pipe_config);
14043 intel_dump_pipe_config(to_intel_crtc(crtc),
14044 pipe_config, "[failed]");
14048 if (i915.fastboot &&
14049 intel_pipe_config_compare(dev,
14050 to_intel_crtc_state(crtc->state),
14051 pipe_config, true)) {
14052 crtc_state->mode_changed = false;
14053 to_intel_crtc_state(crtc_state)->update_pipe = true;
14056 if (needs_modeset(crtc_state))
14059 ret = drm_atomic_add_affected_planes(state, crtc);
14063 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
14064 needs_modeset(crtc_state) ?
14065 "[modeset]" : "[fastset]");
14069 ret = intel_modeset_checks(state);
14074 intel_state->cdclk = dev_priv->cdclk_freq;
14076 ret = drm_atomic_helper_check_planes(dev, state);
14080 intel_fbc_choose_crtc(dev_priv, state);
14081 return calc_watermark_data(state);
14084 static int intel_atomic_prepare_commit(struct drm_device *dev,
14085 struct drm_atomic_state *state,
14088 struct drm_i915_private *dev_priv = to_i915(dev);
14089 struct drm_plane_state *plane_state;
14090 struct drm_crtc_state *crtc_state;
14091 struct drm_plane *plane;
14092 struct drm_crtc *crtc;
14095 for_each_crtc_in_state(state, crtc, crtc_state, i) {
14096 if (state->legacy_cursor_update)
14099 ret = intel_crtc_wait_for_pending_flips(crtc);
14103 if (atomic_read(&to_intel_crtc(crtc)->unpin_work_count) >= 2)
14104 flush_workqueue(dev_priv->wq);
14107 ret = mutex_lock_interruptible(&dev->struct_mutex);
14111 ret = drm_atomic_helper_prepare_planes(dev, state);
14112 mutex_unlock(&dev->struct_mutex);
14114 if (!ret && !nonblock) {
14115 for_each_plane_in_state(state, plane, plane_state, i) {
14116 struct intel_plane_state *intel_plane_state =
14117 to_intel_plane_state(plane_state);
14119 if (!intel_plane_state->wait_req)
14122 ret = i915_wait_request(intel_plane_state->wait_req,
14123 I915_WAIT_INTERRUPTIBLE,
14126 /* Any hang should be swallowed by the wait */
14127 WARN_ON(ret == -EIO);
14128 mutex_lock(&dev->struct_mutex);
14129 drm_atomic_helper_cleanup_planes(dev, state);
14130 mutex_unlock(&dev->struct_mutex);
14139 u32 intel_crtc_get_vblank_counter(struct intel_crtc *crtc)
14141 struct drm_device *dev = crtc->base.dev;
14143 if (!dev->max_vblank_count)
14144 return drm_accurate_vblank_count(&crtc->base);
14146 return dev->driver->get_vblank_counter(dev, crtc->pipe);
14149 static void intel_atomic_wait_for_vblanks(struct drm_device *dev,
14150 struct drm_i915_private *dev_priv,
14151 unsigned crtc_mask)
14153 unsigned last_vblank_count[I915_MAX_PIPES];
14160 for_each_pipe(dev_priv, pipe) {
14161 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
14163 if (!((1 << pipe) & crtc_mask))
14166 ret = drm_crtc_vblank_get(crtc);
14167 if (WARN_ON(ret != 0)) {
14168 crtc_mask &= ~(1 << pipe);
14172 last_vblank_count[pipe] = drm_crtc_vblank_count(crtc);
14175 for_each_pipe(dev_priv, pipe) {
14176 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
14179 if (!((1 << pipe) & crtc_mask))
14182 lret = wait_event_timeout(dev->vblank[pipe].queue,
14183 last_vblank_count[pipe] !=
14184 drm_crtc_vblank_count(crtc),
14185 msecs_to_jiffies(50));
14187 WARN(!lret, "pipe %c vblank wait timed out\n", pipe_name(pipe));
14189 drm_crtc_vblank_put(crtc);
14193 static bool needs_vblank_wait(struct intel_crtc_state *crtc_state)
14195 /* fb updated, need to unpin old fb */
14196 if (crtc_state->fb_changed)
14199 /* wm changes, need vblank before final wm's */
14200 if (crtc_state->update_wm_post)
14204 * cxsr is re-enabled after vblank.
14205 * This is already handled by crtc_state->update_wm_post,
14206 * but added for clarity.
14208 if (crtc_state->disable_cxsr)
14214 static void intel_update_crtc(struct drm_crtc *crtc,
14215 struct drm_atomic_state *state,
14216 struct drm_crtc_state *old_crtc_state,
14217 unsigned int *crtc_vblank_mask)
14219 struct drm_device *dev = crtc->dev;
14220 struct drm_i915_private *dev_priv = to_i915(dev);
14221 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14222 struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc->state);
14223 bool modeset = needs_modeset(crtc->state);
14226 update_scanline_offset(intel_crtc);
14227 dev_priv->display.crtc_enable(pipe_config, state);
14229 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state));
14232 if (drm_atomic_get_existing_plane_state(state, crtc->primary)) {
14234 intel_crtc, pipe_config,
14235 to_intel_plane_state(crtc->primary->state));
14238 drm_atomic_helper_commit_planes_on_crtc(old_crtc_state);
14240 if (needs_vblank_wait(pipe_config))
14241 *crtc_vblank_mask |= drm_crtc_mask(crtc);
14244 static void intel_update_crtcs(struct drm_atomic_state *state,
14245 unsigned int *crtc_vblank_mask)
14247 struct drm_crtc *crtc;
14248 struct drm_crtc_state *old_crtc_state;
14251 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14252 if (!crtc->state->active)
14255 intel_update_crtc(crtc, state, old_crtc_state,
14260 static void skl_update_crtcs(struct drm_atomic_state *state,
14261 unsigned int *crtc_vblank_mask)
14263 struct drm_device *dev = state->dev;
14264 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
14265 struct drm_crtc *crtc;
14266 struct intel_crtc *intel_crtc;
14267 struct drm_crtc_state *old_crtc_state;
14268 struct intel_crtc_state *cstate;
14269 unsigned int updated = 0;
14274 * Whenever the number of active pipes changes, we need to make sure we
14275 * update the pipes in the right order so that their ddb allocations
14276 * never overlap with eachother inbetween CRTC updates. Otherwise we'll
14277 * cause pipe underruns and other bad stuff.
14283 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14284 bool vbl_wait = false;
14285 unsigned int cmask = drm_crtc_mask(crtc);
14287 intel_crtc = to_intel_crtc(crtc);
14288 cstate = to_intel_crtc_state(crtc->state);
14289 pipe = intel_crtc->pipe;
14291 if (updated & cmask || !crtc->state->active)
14293 if (skl_ddb_allocation_overlaps(state, intel_crtc))
14299 * If this is an already active pipe, it's DDB changed,
14300 * and this isn't the last pipe that needs updating
14301 * then we need to wait for a vblank to pass for the
14302 * new ddb allocation to take effect.
14304 if (!skl_ddb_entry_equal(&cstate->wm.skl.ddb,
14305 &intel_crtc->hw_ddb) &&
14306 !crtc->state->active_changed &&
14307 intel_state->wm_results.dirty_pipes != updated)
14310 intel_update_crtc(crtc, state, old_crtc_state,
14314 intel_wait_for_vblank(dev, pipe);
14318 } while (progress);
14321 static void intel_atomic_commit_tail(struct drm_atomic_state *state)
14323 struct drm_device *dev = state->dev;
14324 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
14325 struct drm_i915_private *dev_priv = to_i915(dev);
14326 struct drm_crtc_state *old_crtc_state;
14327 struct drm_crtc *crtc;
14328 struct intel_crtc_state *intel_cstate;
14329 struct drm_plane *plane;
14330 struct drm_plane_state *plane_state;
14331 bool hw_check = intel_state->modeset;
14332 unsigned long put_domains[I915_MAX_PIPES] = {};
14333 unsigned crtc_vblank_mask = 0;
14336 for_each_plane_in_state(state, plane, plane_state, i) {
14337 struct intel_plane_state *intel_plane_state =
14338 to_intel_plane_state(plane_state);
14340 if (!intel_plane_state->wait_req)
14343 ret = i915_wait_request(intel_plane_state->wait_req,
14345 /* EIO should be eaten, and we can't get interrupted in the
14346 * worker, and blocking commits have waited already. */
14350 drm_atomic_helper_wait_for_dependencies(state);
14352 if (intel_state->modeset) {
14353 memcpy(dev_priv->min_pixclk, intel_state->min_pixclk,
14354 sizeof(intel_state->min_pixclk));
14355 dev_priv->active_crtcs = intel_state->active_crtcs;
14356 dev_priv->atomic_cdclk_freq = intel_state->cdclk;
14358 intel_display_power_get(dev_priv, POWER_DOMAIN_MODESET);
14361 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14362 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14364 if (needs_modeset(crtc->state) ||
14365 to_intel_crtc_state(crtc->state)->update_pipe) {
14368 put_domains[to_intel_crtc(crtc)->pipe] =
14369 modeset_get_crtc_power_domains(crtc,
14370 to_intel_crtc_state(crtc->state));
14373 if (!needs_modeset(crtc->state))
14376 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state));
14378 if (old_crtc_state->active) {
14379 intel_crtc_disable_planes(crtc, old_crtc_state->plane_mask);
14380 dev_priv->display.crtc_disable(to_intel_crtc_state(old_crtc_state), state);
14381 intel_crtc->active = false;
14382 intel_fbc_disable(intel_crtc);
14383 intel_disable_shared_dpll(intel_crtc);
14386 * Underruns don't always raise
14387 * interrupts, so check manually.
14389 intel_check_cpu_fifo_underruns(dev_priv);
14390 intel_check_pch_fifo_underruns(dev_priv);
14392 if (!crtc->state->active)
14393 intel_update_watermarks(crtc);
14397 /* Only after disabling all output pipelines that will be changed can we
14398 * update the the output configuration. */
14399 intel_modeset_update_crtc_state(state);
14401 if (intel_state->modeset) {
14402 drm_atomic_helper_update_legacy_modeset_state(state->dev, state);
14404 if (dev_priv->display.modeset_commit_cdclk &&
14405 (intel_state->dev_cdclk != dev_priv->cdclk_freq ||
14406 intel_state->cdclk_pll_vco != dev_priv->cdclk_pll.vco))
14407 dev_priv->display.modeset_commit_cdclk(state);
14410 * SKL workaround: bspec recommends we disable the SAGV when we
14411 * have more then one pipe enabled
14413 if (!intel_can_enable_sagv(state))
14414 intel_disable_sagv(dev_priv);
14416 intel_modeset_verify_disabled(dev);
14419 /* Complete the events for pipes that have now been disabled */
14420 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14421 bool modeset = needs_modeset(crtc->state);
14423 /* Complete events for now disable pipes here. */
14424 if (modeset && !crtc->state->active && crtc->state->event) {
14425 spin_lock_irq(&dev->event_lock);
14426 drm_crtc_send_vblank_event(crtc, crtc->state->event);
14427 spin_unlock_irq(&dev->event_lock);
14429 crtc->state->event = NULL;
14433 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
14434 dev_priv->display.update_crtcs(state, &crtc_vblank_mask);
14436 /* FIXME: We should call drm_atomic_helper_commit_hw_done() here
14437 * already, but still need the state for the delayed optimization. To
14439 * - wrap the optimization/post_plane_update stuff into a per-crtc work.
14440 * - schedule that vblank worker _before_ calling hw_done
14441 * - at the start of commit_tail, cancel it _synchrously
14442 * - switch over to the vblank wait helper in the core after that since
14443 * we don't need out special handling any more.
14445 if (!state->legacy_cursor_update)
14446 intel_atomic_wait_for_vblanks(dev, dev_priv, crtc_vblank_mask);
14449 * Now that the vblank has passed, we can go ahead and program the
14450 * optimal watermarks on platforms that need two-step watermark
14453 * TODO: Move this (and other cleanup) to an async worker eventually.
14455 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14456 intel_cstate = to_intel_crtc_state(crtc->state);
14458 if (dev_priv->display.optimize_watermarks)
14459 dev_priv->display.optimize_watermarks(intel_cstate);
14462 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14463 intel_post_plane_update(to_intel_crtc_state(old_crtc_state));
14465 if (put_domains[i])
14466 modeset_put_power_domains(dev_priv, put_domains[i]);
14468 intel_modeset_verify_crtc(crtc, old_crtc_state, crtc->state);
14471 if (intel_state->modeset && intel_can_enable_sagv(state))
14472 intel_enable_sagv(dev_priv);
14474 drm_atomic_helper_commit_hw_done(state);
14476 if (intel_state->modeset)
14477 intel_display_power_put(dev_priv, POWER_DOMAIN_MODESET);
14479 mutex_lock(&dev->struct_mutex);
14480 drm_atomic_helper_cleanup_planes(dev, state);
14481 mutex_unlock(&dev->struct_mutex);
14483 drm_atomic_helper_commit_cleanup_done(state);
14485 drm_atomic_state_free(state);
14487 /* As one of the primary mmio accessors, KMS has a high likelihood
14488 * of triggering bugs in unclaimed access. After we finish
14489 * modesetting, see if an error has been flagged, and if so
14490 * enable debugging for the next modeset - and hope we catch
14493 * XXX note that we assume display power is on at this point.
14494 * This might hold true now but we need to add pm helper to check
14495 * unclaimed only when the hardware is on, as atomic commits
14496 * can happen also when the device is completely off.
14498 intel_uncore_arm_unclaimed_mmio_detection(dev_priv);
14501 static void intel_atomic_commit_work(struct work_struct *work)
14503 struct drm_atomic_state *state = container_of(work,
14504 struct drm_atomic_state,
14506 intel_atomic_commit_tail(state);
14509 static void intel_atomic_track_fbs(struct drm_atomic_state *state)
14511 struct drm_plane_state *old_plane_state;
14512 struct drm_plane *plane;
14515 for_each_plane_in_state(state, plane, old_plane_state, i)
14516 i915_gem_track_fb(intel_fb_obj(old_plane_state->fb),
14517 intel_fb_obj(plane->state->fb),
14518 to_intel_plane(plane)->frontbuffer_bit);
14522 * intel_atomic_commit - commit validated state object
14524 * @state: the top-level driver state object
14525 * @nonblock: nonblocking commit
14527 * This function commits a top-level state object that has been validated
14528 * with drm_atomic_helper_check().
14530 * FIXME: Atomic modeset support for i915 is not yet complete. At the moment
14531 * nonblocking commits are only safe for pure plane updates. Everything else
14532 * should work though.
14535 * Zero for success or -errno.
14537 static int intel_atomic_commit(struct drm_device *dev,
14538 struct drm_atomic_state *state,
14541 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
14542 struct drm_i915_private *dev_priv = to_i915(dev);
14545 if (intel_state->modeset && nonblock) {
14546 DRM_DEBUG_KMS("nonblocking commit for modeset not yet implemented.\n");
14550 ret = drm_atomic_helper_setup_commit(state, nonblock);
14554 INIT_WORK(&state->commit_work, intel_atomic_commit_work);
14556 ret = intel_atomic_prepare_commit(dev, state, nonblock);
14558 DRM_DEBUG_ATOMIC("Preparing state failed with %i\n", ret);
14562 drm_atomic_helper_swap_state(state, true);
14563 dev_priv->wm.distrust_bios_wm = false;
14564 dev_priv->wm.skl_results = intel_state->wm_results;
14565 intel_shared_dpll_commit(state);
14566 intel_atomic_track_fbs(state);
14569 queue_work(system_unbound_wq, &state->commit_work);
14571 intel_atomic_commit_tail(state);
14576 void intel_crtc_restore_mode(struct drm_crtc *crtc)
14578 struct drm_device *dev = crtc->dev;
14579 struct drm_atomic_state *state;
14580 struct drm_crtc_state *crtc_state;
14583 state = drm_atomic_state_alloc(dev);
14585 DRM_DEBUG_KMS("[CRTC:%d:%s] crtc restore failed, out of memory",
14586 crtc->base.id, crtc->name);
14590 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
14593 crtc_state = drm_atomic_get_crtc_state(state, crtc);
14594 ret = PTR_ERR_OR_ZERO(crtc_state);
14596 if (!crtc_state->active)
14599 crtc_state->mode_changed = true;
14600 ret = drm_atomic_commit(state);
14603 if (ret == -EDEADLK) {
14604 drm_atomic_state_clear(state);
14605 drm_modeset_backoff(state->acquire_ctx);
14611 drm_atomic_state_free(state);
14615 * FIXME: Remove this once i915 is fully DRIVER_ATOMIC by calling
14616 * drm_atomic_helper_legacy_gamma_set() directly.
14618 static int intel_atomic_legacy_gamma_set(struct drm_crtc *crtc,
14619 u16 *red, u16 *green, u16 *blue,
14622 struct drm_device *dev = crtc->dev;
14623 struct drm_mode_config *config = &dev->mode_config;
14624 struct drm_crtc_state *state;
14627 ret = drm_atomic_helper_legacy_gamma_set(crtc, red, green, blue, size);
14632 * Make sure we update the legacy properties so this works when
14633 * atomic is not enabled.
14636 state = crtc->state;
14638 drm_object_property_set_value(&crtc->base,
14639 config->degamma_lut_property,
14640 (state->degamma_lut) ?
14641 state->degamma_lut->base.id : 0);
14643 drm_object_property_set_value(&crtc->base,
14644 config->ctm_property,
14646 state->ctm->base.id : 0);
14648 drm_object_property_set_value(&crtc->base,
14649 config->gamma_lut_property,
14650 (state->gamma_lut) ?
14651 state->gamma_lut->base.id : 0);
14656 static const struct drm_crtc_funcs intel_crtc_funcs = {
14657 .gamma_set = intel_atomic_legacy_gamma_set,
14658 .set_config = drm_atomic_helper_set_config,
14659 .set_property = drm_atomic_helper_crtc_set_property,
14660 .destroy = intel_crtc_destroy,
14661 .page_flip = intel_crtc_page_flip,
14662 .atomic_duplicate_state = intel_crtc_duplicate_state,
14663 .atomic_destroy_state = intel_crtc_destroy_state,
14667 * intel_prepare_plane_fb - Prepare fb for usage on plane
14668 * @plane: drm plane to prepare for
14669 * @fb: framebuffer to prepare for presentation
14671 * Prepares a framebuffer for usage on a display plane. Generally this
14672 * involves pinning the underlying object and updating the frontbuffer tracking
14673 * bits. Some older platforms need special physical address handling for
14676 * Must be called with struct_mutex held.
14678 * Returns 0 on success, negative error code on failure.
14681 intel_prepare_plane_fb(struct drm_plane *plane,
14682 struct drm_plane_state *new_state)
14684 struct drm_device *dev = plane->dev;
14685 struct drm_i915_private *dev_priv = to_i915(dev);
14686 struct drm_framebuffer *fb = new_state->fb;
14687 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
14688 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->state->fb);
14689 struct reservation_object *resv;
14692 if (!obj && !old_obj)
14696 struct drm_crtc_state *crtc_state =
14697 drm_atomic_get_existing_crtc_state(new_state->state, plane->state->crtc);
14699 /* Big Hammer, we also need to ensure that any pending
14700 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
14701 * current scanout is retired before unpinning the old
14702 * framebuffer. Note that we rely on userspace rendering
14703 * into the buffer attached to the pipe they are waiting
14704 * on. If not, userspace generates a GPU hang with IPEHR
14705 * point to the MI_WAIT_FOR_EVENT.
14707 * This should only fail upon a hung GPU, in which case we
14708 * can safely continue.
14710 if (needs_modeset(crtc_state))
14711 ret = i915_gem_object_wait_rendering(old_obj, true);
14713 /* GPU hangs should have been swallowed by the wait */
14714 WARN_ON(ret == -EIO);
14722 /* For framebuffer backed by dmabuf, wait for fence */
14723 resv = i915_gem_object_get_dmabuf_resv(obj);
14727 lret = reservation_object_wait_timeout_rcu(resv, false, true,
14728 MAX_SCHEDULE_TIMEOUT);
14729 if (lret == -ERESTARTSYS)
14732 WARN(lret < 0, "waiting returns %li\n", lret);
14735 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
14736 INTEL_INFO(dev)->cursor_needs_physical) {
14737 int align = IS_I830(dev_priv) ? 16 * 1024 : 256;
14738 ret = i915_gem_object_attach_phys(obj, align);
14740 DRM_DEBUG_KMS("failed to attach phys object\n");
14742 struct i915_vma *vma;
14744 vma = intel_pin_and_fence_fb_obj(fb, new_state->rotation);
14746 ret = PTR_ERR(vma);
14750 to_intel_plane_state(new_state)->wait_req =
14751 i915_gem_active_get(&obj->last_write,
14752 &obj->base.dev->struct_mutex);
14759 * intel_cleanup_plane_fb - Cleans up an fb after plane use
14760 * @plane: drm plane to clean up for
14761 * @fb: old framebuffer that was on plane
14763 * Cleans up a framebuffer that has just been removed from a plane.
14765 * Must be called with struct_mutex held.
14768 intel_cleanup_plane_fb(struct drm_plane *plane,
14769 struct drm_plane_state *old_state)
14771 struct drm_device *dev = plane->dev;
14772 struct intel_plane_state *old_intel_state;
14773 struct intel_plane_state *intel_state = to_intel_plane_state(plane->state);
14774 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_state->fb);
14775 struct drm_i915_gem_object *obj = intel_fb_obj(plane->state->fb);
14777 old_intel_state = to_intel_plane_state(old_state);
14779 if (!obj && !old_obj)
14782 if (old_obj && (plane->type != DRM_PLANE_TYPE_CURSOR ||
14783 !INTEL_INFO(dev)->cursor_needs_physical))
14784 intel_unpin_fb_obj(old_state->fb, old_state->rotation);
14786 i915_gem_request_assign(&intel_state->wait_req, NULL);
14787 i915_gem_request_assign(&old_intel_state->wait_req, NULL);
14791 skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
14794 int crtc_clock, cdclk;
14796 if (!intel_crtc || !crtc_state->base.enable)
14797 return DRM_PLANE_HELPER_NO_SCALING;
14799 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
14800 cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk;
14802 if (WARN_ON_ONCE(!crtc_clock || cdclk < crtc_clock))
14803 return DRM_PLANE_HELPER_NO_SCALING;
14806 * skl max scale is lower of:
14807 * close to 3 but not 3, -1 is for that purpose
14811 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
14817 intel_check_primary_plane(struct drm_plane *plane,
14818 struct intel_crtc_state *crtc_state,
14819 struct intel_plane_state *state)
14821 struct drm_i915_private *dev_priv = to_i915(plane->dev);
14822 struct drm_crtc *crtc = state->base.crtc;
14823 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
14824 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
14825 bool can_position = false;
14828 if (INTEL_GEN(dev_priv) >= 9) {
14829 /* use scaler when colorkey is not required */
14830 if (state->ckey.flags == I915_SET_COLORKEY_NONE) {
14832 max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state);
14834 can_position = true;
14837 ret = drm_plane_helper_check_state(&state->base,
14839 min_scale, max_scale,
14840 can_position, true);
14844 if (!state->base.fb)
14847 if (INTEL_GEN(dev_priv) >= 9) {
14848 ret = skl_check_plane_surface(state);
14856 static void intel_begin_crtc_commit(struct drm_crtc *crtc,
14857 struct drm_crtc_state *old_crtc_state)
14859 struct drm_device *dev = crtc->dev;
14860 struct drm_i915_private *dev_priv = to_i915(dev);
14861 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14862 struct intel_crtc_state *intel_cstate =
14863 to_intel_crtc_state(crtc->state);
14864 struct intel_crtc_state *old_intel_state =
14865 to_intel_crtc_state(old_crtc_state);
14866 bool modeset = needs_modeset(crtc->state);
14867 enum pipe pipe = intel_crtc->pipe;
14869 /* Perform vblank evasion around commit operation */
14870 intel_pipe_update_start(intel_crtc);
14875 if (crtc->state->color_mgmt_changed || to_intel_crtc_state(crtc->state)->update_pipe) {
14876 intel_color_set_csc(crtc->state);
14877 intel_color_load_luts(crtc->state);
14880 if (intel_cstate->update_pipe) {
14881 intel_update_pipe_config(intel_crtc, old_intel_state);
14882 } else if (INTEL_GEN(dev_priv) >= 9) {
14883 skl_detach_scalers(intel_crtc);
14885 I915_WRITE(PIPE_WM_LINETIME(pipe),
14886 intel_cstate->wm.skl.optimal.linetime);
14890 static void intel_finish_crtc_commit(struct drm_crtc *crtc,
14891 struct drm_crtc_state *old_crtc_state)
14893 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14895 intel_pipe_update_end(intel_crtc, NULL);
14899 * intel_plane_destroy - destroy a plane
14900 * @plane: plane to destroy
14902 * Common destruction function for all types of planes (primary, cursor,
14905 void intel_plane_destroy(struct drm_plane *plane)
14910 drm_plane_cleanup(plane);
14911 kfree(to_intel_plane(plane));
14914 const struct drm_plane_funcs intel_plane_funcs = {
14915 .update_plane = drm_atomic_helper_update_plane,
14916 .disable_plane = drm_atomic_helper_disable_plane,
14917 .destroy = intel_plane_destroy,
14918 .set_property = drm_atomic_helper_plane_set_property,
14919 .atomic_get_property = intel_plane_atomic_get_property,
14920 .atomic_set_property = intel_plane_atomic_set_property,
14921 .atomic_duplicate_state = intel_plane_duplicate_state,
14922 .atomic_destroy_state = intel_plane_destroy_state,
14926 static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
14929 struct drm_i915_private *dev_priv = to_i915(dev);
14930 struct intel_plane *primary = NULL;
14931 struct intel_plane_state *state = NULL;
14932 const uint32_t *intel_primary_formats;
14933 unsigned int num_formats;
14936 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
14940 state = intel_create_plane_state(&primary->base);
14943 primary->base.state = &state->base;
14945 primary->can_scale = false;
14946 primary->max_downscale = 1;
14947 if (INTEL_INFO(dev)->gen >= 9) {
14948 primary->can_scale = true;
14949 state->scaler_id = -1;
14951 primary->pipe = pipe;
14952 primary->plane = pipe;
14953 primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe);
14954 primary->check_plane = intel_check_primary_plane;
14955 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
14956 primary->plane = !pipe;
14958 if (INTEL_INFO(dev)->gen >= 9) {
14959 intel_primary_formats = skl_primary_formats;
14960 num_formats = ARRAY_SIZE(skl_primary_formats);
14962 primary->update_plane = skylake_update_primary_plane;
14963 primary->disable_plane = skylake_disable_primary_plane;
14964 } else if (HAS_PCH_SPLIT(dev_priv)) {
14965 intel_primary_formats = i965_primary_formats;
14966 num_formats = ARRAY_SIZE(i965_primary_formats);
14968 primary->update_plane = ironlake_update_primary_plane;
14969 primary->disable_plane = i9xx_disable_primary_plane;
14970 } else if (INTEL_INFO(dev)->gen >= 4) {
14971 intel_primary_formats = i965_primary_formats;
14972 num_formats = ARRAY_SIZE(i965_primary_formats);
14974 primary->update_plane = i9xx_update_primary_plane;
14975 primary->disable_plane = i9xx_disable_primary_plane;
14977 intel_primary_formats = i8xx_primary_formats;
14978 num_formats = ARRAY_SIZE(i8xx_primary_formats);
14980 primary->update_plane = i9xx_update_primary_plane;
14981 primary->disable_plane = i9xx_disable_primary_plane;
14984 if (INTEL_INFO(dev)->gen >= 9)
14985 ret = drm_universal_plane_init(dev, &primary->base, 0,
14986 &intel_plane_funcs,
14987 intel_primary_formats, num_formats,
14988 DRM_PLANE_TYPE_PRIMARY,
14989 "plane 1%c", pipe_name(pipe));
14990 else if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
14991 ret = drm_universal_plane_init(dev, &primary->base, 0,
14992 &intel_plane_funcs,
14993 intel_primary_formats, num_formats,
14994 DRM_PLANE_TYPE_PRIMARY,
14995 "primary %c", pipe_name(pipe));
14997 ret = drm_universal_plane_init(dev, &primary->base, 0,
14998 &intel_plane_funcs,
14999 intel_primary_formats, num_formats,
15000 DRM_PLANE_TYPE_PRIMARY,
15001 "plane %c", plane_name(primary->plane));
15005 if (INTEL_INFO(dev)->gen >= 4)
15006 intel_create_rotation_property(dev, primary);
15008 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
15010 return &primary->base;
15019 void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
15021 if (!dev->mode_config.rotation_property) {
15022 unsigned long flags = DRM_ROTATE_0 |
15025 if (INTEL_INFO(dev)->gen >= 9)
15026 flags |= DRM_ROTATE_90 | DRM_ROTATE_270;
15028 dev->mode_config.rotation_property =
15029 drm_mode_create_rotation_property(dev, flags);
15031 if (dev->mode_config.rotation_property)
15032 drm_object_attach_property(&plane->base.base,
15033 dev->mode_config.rotation_property,
15034 plane->base.state->rotation);
15038 intel_check_cursor_plane(struct drm_plane *plane,
15039 struct intel_crtc_state *crtc_state,
15040 struct intel_plane_state *state)
15042 struct drm_framebuffer *fb = state->base.fb;
15043 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
15044 enum pipe pipe = to_intel_plane(plane)->pipe;
15048 ret = drm_plane_helper_check_state(&state->base,
15050 DRM_PLANE_HELPER_NO_SCALING,
15051 DRM_PLANE_HELPER_NO_SCALING,
15056 /* if we want to turn off the cursor ignore width and height */
15060 /* Check for which cursor types we support */
15061 if (!cursor_size_ok(to_i915(plane->dev), state->base.crtc_w,
15062 state->base.crtc_h)) {
15063 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
15064 state->base.crtc_w, state->base.crtc_h);
15068 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
15069 if (obj->base.size < stride * state->base.crtc_h) {
15070 DRM_DEBUG_KMS("buffer is too small\n");
15074 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
15075 DRM_DEBUG_KMS("cursor cannot be tiled\n");
15080 * There's something wrong with the cursor on CHV pipe C.
15081 * If it straddles the left edge of the screen then
15082 * moving it away from the edge or disabling it often
15083 * results in a pipe underrun, and often that can lead to
15084 * dead pipe (constant underrun reported, and it scans
15085 * out just a solid color). To recover from that, the
15086 * display power well must be turned off and on again.
15087 * Refuse the put the cursor into that compromised position.
15089 if (IS_CHERRYVIEW(to_i915(plane->dev)) && pipe == PIPE_C &&
15090 state->base.visible && state->base.crtc_x < 0) {
15091 DRM_DEBUG_KMS("CHV cursor C not allowed to straddle the left screen edge\n");
15099 intel_disable_cursor_plane(struct drm_plane *plane,
15100 struct drm_crtc *crtc)
15102 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
15104 intel_crtc->cursor_addr = 0;
15105 intel_crtc_update_cursor(crtc, NULL);
15109 intel_update_cursor_plane(struct drm_plane *plane,
15110 const struct intel_crtc_state *crtc_state,
15111 const struct intel_plane_state *state)
15113 struct drm_crtc *crtc = crtc_state->base.crtc;
15114 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
15115 struct drm_device *dev = plane->dev;
15116 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
15121 else if (!INTEL_INFO(dev)->cursor_needs_physical)
15122 addr = i915_gem_object_ggtt_offset(obj, NULL);
15124 addr = obj->phys_handle->busaddr;
15126 intel_crtc->cursor_addr = addr;
15127 intel_crtc_update_cursor(crtc, state);
15130 static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
15133 struct intel_plane *cursor = NULL;
15134 struct intel_plane_state *state = NULL;
15137 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
15141 state = intel_create_plane_state(&cursor->base);
15144 cursor->base.state = &state->base;
15146 cursor->can_scale = false;
15147 cursor->max_downscale = 1;
15148 cursor->pipe = pipe;
15149 cursor->plane = pipe;
15150 cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe);
15151 cursor->check_plane = intel_check_cursor_plane;
15152 cursor->update_plane = intel_update_cursor_plane;
15153 cursor->disable_plane = intel_disable_cursor_plane;
15155 ret = drm_universal_plane_init(dev, &cursor->base, 0,
15156 &intel_plane_funcs,
15157 intel_cursor_formats,
15158 ARRAY_SIZE(intel_cursor_formats),
15159 DRM_PLANE_TYPE_CURSOR,
15160 "cursor %c", pipe_name(pipe));
15164 if (INTEL_INFO(dev)->gen >= 4) {
15165 if (!dev->mode_config.rotation_property)
15166 dev->mode_config.rotation_property =
15167 drm_mode_create_rotation_property(dev,
15170 if (dev->mode_config.rotation_property)
15171 drm_object_attach_property(&cursor->base.base,
15172 dev->mode_config.rotation_property,
15173 state->base.rotation);
15176 if (INTEL_INFO(dev)->gen >=9)
15177 state->scaler_id = -1;
15179 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
15181 return &cursor->base;
15190 static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
15191 struct intel_crtc_state *crtc_state)
15194 struct intel_scaler *intel_scaler;
15195 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
15197 for (i = 0; i < intel_crtc->num_scalers; i++) {
15198 intel_scaler = &scaler_state->scalers[i];
15199 intel_scaler->in_use = 0;
15200 intel_scaler->mode = PS_SCALER_MODE_DYN;
15203 scaler_state->scaler_id = -1;
15206 static void intel_crtc_init(struct drm_device *dev, int pipe)
15208 struct drm_i915_private *dev_priv = to_i915(dev);
15209 struct intel_crtc *intel_crtc;
15210 struct intel_crtc_state *crtc_state = NULL;
15211 struct drm_plane *primary = NULL;
15212 struct drm_plane *cursor = NULL;
15215 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
15216 if (intel_crtc == NULL)
15219 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
15222 intel_crtc->config = crtc_state;
15223 intel_crtc->base.state = &crtc_state->base;
15224 crtc_state->base.crtc = &intel_crtc->base;
15226 /* initialize shared scalers */
15227 if (INTEL_INFO(dev)->gen >= 9) {
15228 if (pipe == PIPE_C)
15229 intel_crtc->num_scalers = 1;
15231 intel_crtc->num_scalers = SKL_NUM_SCALERS;
15233 skl_init_scalers(dev, intel_crtc, crtc_state);
15236 primary = intel_primary_plane_create(dev, pipe);
15240 cursor = intel_cursor_plane_create(dev, pipe);
15244 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
15245 cursor, &intel_crtc_funcs,
15246 "pipe %c", pipe_name(pipe));
15251 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
15252 * is hooked to pipe B. Hence we want plane A feeding pipe B.
15254 intel_crtc->pipe = pipe;
15255 intel_crtc->plane = pipe;
15256 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
15257 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
15258 intel_crtc->plane = !pipe;
15261 intel_crtc->cursor_base = ~0;
15262 intel_crtc->cursor_cntl = ~0;
15263 intel_crtc->cursor_size = ~0;
15265 intel_crtc->wm.cxsr_allowed = true;
15267 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
15268 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
15269 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
15270 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
15272 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
15274 intel_color_init(&intel_crtc->base);
15276 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
15280 intel_plane_destroy(primary);
15281 intel_plane_destroy(cursor);
15286 enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
15288 struct drm_encoder *encoder = connector->base.encoder;
15289 struct drm_device *dev = connector->base.dev;
15291 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
15293 if (!encoder || WARN_ON(!encoder->crtc))
15294 return INVALID_PIPE;
15296 return to_intel_crtc(encoder->crtc)->pipe;
15299 int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
15300 struct drm_file *file)
15302 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
15303 struct drm_crtc *drmmode_crtc;
15304 struct intel_crtc *crtc;
15306 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
15310 crtc = to_intel_crtc(drmmode_crtc);
15311 pipe_from_crtc_id->pipe = crtc->pipe;
15316 static int intel_encoder_clones(struct intel_encoder *encoder)
15318 struct drm_device *dev = encoder->base.dev;
15319 struct intel_encoder *source_encoder;
15320 int index_mask = 0;
15323 for_each_intel_encoder(dev, source_encoder) {
15324 if (encoders_cloneable(encoder, source_encoder))
15325 index_mask |= (1 << entry);
15333 static bool has_edp_a(struct drm_device *dev)
15335 struct drm_i915_private *dev_priv = to_i915(dev);
15337 if (!IS_MOBILE(dev))
15340 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
15343 if (IS_GEN5(dev_priv) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
15349 static bool intel_crt_present(struct drm_device *dev)
15351 struct drm_i915_private *dev_priv = to_i915(dev);
15353 if (INTEL_INFO(dev)->gen >= 9)
15356 if (IS_HSW_ULT(dev_priv) || IS_BDW_ULT(dev_priv))
15359 if (IS_CHERRYVIEW(dev_priv))
15362 if (HAS_PCH_LPT_H(dev_priv) &&
15363 I915_READ(SFUSE_STRAP) & SFUSE_STRAP_CRT_DISABLED)
15366 /* DDI E can't be used if DDI A requires 4 lanes */
15367 if (HAS_DDI(dev_priv) && I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES)
15370 if (!dev_priv->vbt.int_crt_support)
15376 void intel_pps_unlock_regs_wa(struct drm_i915_private *dev_priv)
15381 if (HAS_DDI(dev_priv))
15384 * This w/a is needed at least on CPT/PPT, but to be sure apply it
15385 * everywhere where registers can be write protected.
15387 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
15392 for (pps_idx = 0; pps_idx < pps_num; pps_idx++) {
15393 u32 val = I915_READ(PP_CONTROL(pps_idx));
15395 val = (val & ~PANEL_UNLOCK_MASK) | PANEL_UNLOCK_REGS;
15396 I915_WRITE(PP_CONTROL(pps_idx), val);
15400 static void intel_pps_init(struct drm_i915_private *dev_priv)
15402 if (HAS_PCH_SPLIT(dev_priv) || IS_BROXTON(dev_priv))
15403 dev_priv->pps_mmio_base = PCH_PPS_BASE;
15404 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
15405 dev_priv->pps_mmio_base = VLV_PPS_BASE;
15407 dev_priv->pps_mmio_base = PPS_BASE;
15409 intel_pps_unlock_regs_wa(dev_priv);
15412 static void intel_setup_outputs(struct drm_device *dev)
15414 struct drm_i915_private *dev_priv = to_i915(dev);
15415 struct intel_encoder *encoder;
15416 bool dpd_is_edp = false;
15418 intel_pps_init(dev_priv);
15421 * intel_edp_init_connector() depends on this completing first, to
15422 * prevent the registeration of both eDP and LVDS and the incorrect
15423 * sharing of the PPS.
15425 intel_lvds_init(dev);
15427 if (intel_crt_present(dev))
15428 intel_crt_init(dev);
15430 if (IS_BROXTON(dev_priv)) {
15432 * FIXME: Broxton doesn't support port detection via the
15433 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
15434 * detect the ports.
15436 intel_ddi_init(dev, PORT_A);
15437 intel_ddi_init(dev, PORT_B);
15438 intel_ddi_init(dev, PORT_C);
15440 intel_dsi_init(dev);
15441 } else if (HAS_DDI(dev_priv)) {
15445 * Haswell uses DDI functions to detect digital outputs.
15446 * On SKL pre-D0 the strap isn't connected, so we assume
15449 found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED;
15450 /* WaIgnoreDDIAStrap: skl */
15451 if (found || IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
15452 intel_ddi_init(dev, PORT_A);
15454 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
15456 found = I915_READ(SFUSE_STRAP);
15458 if (found & SFUSE_STRAP_DDIB_DETECTED)
15459 intel_ddi_init(dev, PORT_B);
15460 if (found & SFUSE_STRAP_DDIC_DETECTED)
15461 intel_ddi_init(dev, PORT_C);
15462 if (found & SFUSE_STRAP_DDID_DETECTED)
15463 intel_ddi_init(dev, PORT_D);
15465 * On SKL we don't have a way to detect DDI-E so we rely on VBT.
15467 if ((IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) &&
15468 (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp ||
15469 dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi ||
15470 dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi))
15471 intel_ddi_init(dev, PORT_E);
15473 } else if (HAS_PCH_SPLIT(dev_priv)) {
15475 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
15477 if (has_edp_a(dev))
15478 intel_dp_init(dev, DP_A, PORT_A);
15480 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
15481 /* PCH SDVOB multiplex with HDMIB */
15482 found = intel_sdvo_init(dev, PCH_SDVOB, PORT_B);
15484 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
15485 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
15486 intel_dp_init(dev, PCH_DP_B, PORT_B);
15489 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
15490 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
15492 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
15493 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
15495 if (I915_READ(PCH_DP_C) & DP_DETECTED)
15496 intel_dp_init(dev, PCH_DP_C, PORT_C);
15498 if (I915_READ(PCH_DP_D) & DP_DETECTED)
15499 intel_dp_init(dev, PCH_DP_D, PORT_D);
15500 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
15501 bool has_edp, has_port;
15504 * The DP_DETECTED bit is the latched state of the DDC
15505 * SDA pin at boot. However since eDP doesn't require DDC
15506 * (no way to plug in a DP->HDMI dongle) the DDC pins for
15507 * eDP ports may have been muxed to an alternate function.
15508 * Thus we can't rely on the DP_DETECTED bit alone to detect
15509 * eDP ports. Consult the VBT as well as DP_DETECTED to
15510 * detect eDP ports.
15512 * Sadly the straps seem to be missing sometimes even for HDMI
15513 * ports (eg. on Voyo V3 - CHT x7-Z8700), so check both strap
15514 * and VBT for the presence of the port. Additionally we can't
15515 * trust the port type the VBT declares as we've seen at least
15516 * HDMI ports that the VBT claim are DP or eDP.
15518 has_edp = intel_dp_is_edp(dev, PORT_B);
15519 has_port = intel_bios_is_port_present(dev_priv, PORT_B);
15520 if (I915_READ(VLV_DP_B) & DP_DETECTED || has_port)
15521 has_edp &= intel_dp_init(dev, VLV_DP_B, PORT_B);
15522 if ((I915_READ(VLV_HDMIB) & SDVO_DETECTED || has_port) && !has_edp)
15523 intel_hdmi_init(dev, VLV_HDMIB, PORT_B);
15525 has_edp = intel_dp_is_edp(dev, PORT_C);
15526 has_port = intel_bios_is_port_present(dev_priv, PORT_C);
15527 if (I915_READ(VLV_DP_C) & DP_DETECTED || has_port)
15528 has_edp &= intel_dp_init(dev, VLV_DP_C, PORT_C);
15529 if ((I915_READ(VLV_HDMIC) & SDVO_DETECTED || has_port) && !has_edp)
15530 intel_hdmi_init(dev, VLV_HDMIC, PORT_C);
15532 if (IS_CHERRYVIEW(dev_priv)) {
15534 * eDP not supported on port D,
15535 * so no need to worry about it
15537 has_port = intel_bios_is_port_present(dev_priv, PORT_D);
15538 if (I915_READ(CHV_DP_D) & DP_DETECTED || has_port)
15539 intel_dp_init(dev, CHV_DP_D, PORT_D);
15540 if (I915_READ(CHV_HDMID) & SDVO_DETECTED || has_port)
15541 intel_hdmi_init(dev, CHV_HDMID, PORT_D);
15544 intel_dsi_init(dev);
15545 } else if (!IS_GEN2(dev_priv) && !IS_PINEVIEW(dev_priv)) {
15546 bool found = false;
15548 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
15549 DRM_DEBUG_KMS("probing SDVOB\n");
15550 found = intel_sdvo_init(dev, GEN3_SDVOB, PORT_B);
15551 if (!found && IS_G4X(dev_priv)) {
15552 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
15553 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
15556 if (!found && IS_G4X(dev_priv))
15557 intel_dp_init(dev, DP_B, PORT_B);
15560 /* Before G4X SDVOC doesn't have its own detect register */
15562 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
15563 DRM_DEBUG_KMS("probing SDVOC\n");
15564 found = intel_sdvo_init(dev, GEN3_SDVOC, PORT_C);
15567 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
15569 if (IS_G4X(dev_priv)) {
15570 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
15571 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
15573 if (IS_G4X(dev_priv))
15574 intel_dp_init(dev, DP_C, PORT_C);
15577 if (IS_G4X(dev_priv) && (I915_READ(DP_D) & DP_DETECTED))
15578 intel_dp_init(dev, DP_D, PORT_D);
15579 } else if (IS_GEN2(dev_priv))
15580 intel_dvo_init(dev);
15582 if (SUPPORTS_TV(dev))
15583 intel_tv_init(dev);
15585 intel_psr_init(dev);
15587 for_each_intel_encoder(dev, encoder) {
15588 encoder->base.possible_crtcs = encoder->crtc_mask;
15589 encoder->base.possible_clones =
15590 intel_encoder_clones(encoder);
15593 intel_init_pch_refclk(dev);
15595 drm_helper_move_panel_connectors_to_head(dev);
15598 static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
15600 struct drm_device *dev = fb->dev;
15601 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
15603 drm_framebuffer_cleanup(fb);
15604 mutex_lock(&dev->struct_mutex);
15605 WARN_ON(!intel_fb->obj->framebuffer_references--);
15606 i915_gem_object_put(intel_fb->obj);
15607 mutex_unlock(&dev->struct_mutex);
15611 static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
15612 struct drm_file *file,
15613 unsigned int *handle)
15615 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
15616 struct drm_i915_gem_object *obj = intel_fb->obj;
15618 if (obj->userptr.mm) {
15619 DRM_DEBUG("attempting to use a userptr for a framebuffer, denied\n");
15623 return drm_gem_handle_create(file, &obj->base, handle);
15626 static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb,
15627 struct drm_file *file,
15628 unsigned flags, unsigned color,
15629 struct drm_clip_rect *clips,
15630 unsigned num_clips)
15632 struct drm_device *dev = fb->dev;
15633 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
15634 struct drm_i915_gem_object *obj = intel_fb->obj;
15636 mutex_lock(&dev->struct_mutex);
15637 intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB);
15638 mutex_unlock(&dev->struct_mutex);
15643 static const struct drm_framebuffer_funcs intel_fb_funcs = {
15644 .destroy = intel_user_framebuffer_destroy,
15645 .create_handle = intel_user_framebuffer_create_handle,
15646 .dirty = intel_user_framebuffer_dirty,
15650 u32 intel_fb_pitch_limit(struct drm_i915_private *dev_priv,
15651 uint64_t fb_modifier, uint32_t pixel_format)
15653 u32 gen = INTEL_INFO(dev_priv)->gen;
15656 int cpp = drm_format_plane_cpp(pixel_format, 0);
15658 /* "The stride in bytes must not exceed the of the size of 8K
15659 * pixels and 32K bytes."
15661 return min(8192 * cpp, 32768);
15662 } else if (gen >= 5 && !IS_VALLEYVIEW(dev_priv) &&
15663 !IS_CHERRYVIEW(dev_priv)) {
15665 } else if (gen >= 4) {
15666 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
15670 } else if (gen >= 3) {
15671 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
15676 /* XXX DSPC is limited to 4k tiled */
15681 static int intel_framebuffer_init(struct drm_device *dev,
15682 struct intel_framebuffer *intel_fb,
15683 struct drm_mode_fb_cmd2 *mode_cmd,
15684 struct drm_i915_gem_object *obj)
15686 struct drm_i915_private *dev_priv = to_i915(dev);
15687 unsigned int tiling = i915_gem_object_get_tiling(obj);
15689 u32 pitch_limit, stride_alignment;
15692 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
15694 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
15696 * If there's a fence, enforce that
15697 * the fb modifier and tiling mode match.
15699 if (tiling != I915_TILING_NONE &&
15700 tiling != intel_fb_modifier_to_tiling(mode_cmd->modifier[0])) {
15701 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
15705 if (tiling == I915_TILING_X) {
15706 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
15707 } else if (tiling == I915_TILING_Y) {
15708 DRM_DEBUG("No Y tiling for legacy addfb\n");
15713 /* Passed in modifier sanity checking. */
15714 switch (mode_cmd->modifier[0]) {
15715 case I915_FORMAT_MOD_Y_TILED:
15716 case I915_FORMAT_MOD_Yf_TILED:
15717 if (INTEL_INFO(dev)->gen < 9) {
15718 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
15719 mode_cmd->modifier[0]);
15722 case DRM_FORMAT_MOD_NONE:
15723 case I915_FORMAT_MOD_X_TILED:
15726 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
15727 mode_cmd->modifier[0]);
15732 * gen2/3 display engine uses the fence if present,
15733 * so the tiling mode must match the fb modifier exactly.
15735 if (INTEL_INFO(dev_priv)->gen < 4 &&
15736 tiling != intel_fb_modifier_to_tiling(mode_cmd->modifier[0])) {
15737 DRM_DEBUG("tiling_mode must match fb modifier exactly on gen2/3\n");
15741 stride_alignment = intel_fb_stride_alignment(dev_priv,
15742 mode_cmd->modifier[0],
15743 mode_cmd->pixel_format);
15744 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
15745 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
15746 mode_cmd->pitches[0], stride_alignment);
15750 pitch_limit = intel_fb_pitch_limit(dev_priv, mode_cmd->modifier[0],
15751 mode_cmd->pixel_format);
15752 if (mode_cmd->pitches[0] > pitch_limit) {
15753 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
15754 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
15755 "tiled" : "linear",
15756 mode_cmd->pitches[0], pitch_limit);
15761 * If there's a fence, enforce that
15762 * the fb pitch and fence stride match.
15764 if (tiling != I915_TILING_NONE &&
15765 mode_cmd->pitches[0] != i915_gem_object_get_stride(obj)) {
15766 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
15767 mode_cmd->pitches[0],
15768 i915_gem_object_get_stride(obj));
15772 /* Reject formats not supported by any plane early. */
15773 switch (mode_cmd->pixel_format) {
15774 case DRM_FORMAT_C8:
15775 case DRM_FORMAT_RGB565:
15776 case DRM_FORMAT_XRGB8888:
15777 case DRM_FORMAT_ARGB8888:
15779 case DRM_FORMAT_XRGB1555:
15780 if (INTEL_INFO(dev)->gen > 3) {
15781 format_name = drm_get_format_name(mode_cmd->pixel_format);
15782 DRM_DEBUG("unsupported pixel format: %s\n", format_name);
15783 kfree(format_name);
15787 case DRM_FORMAT_ABGR8888:
15788 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv) &&
15789 INTEL_INFO(dev)->gen < 9) {
15790 format_name = drm_get_format_name(mode_cmd->pixel_format);
15791 DRM_DEBUG("unsupported pixel format: %s\n", format_name);
15792 kfree(format_name);
15796 case DRM_FORMAT_XBGR8888:
15797 case DRM_FORMAT_XRGB2101010:
15798 case DRM_FORMAT_XBGR2101010:
15799 if (INTEL_INFO(dev)->gen < 4) {
15800 format_name = drm_get_format_name(mode_cmd->pixel_format);
15801 DRM_DEBUG("unsupported pixel format: %s\n", format_name);
15802 kfree(format_name);
15806 case DRM_FORMAT_ABGR2101010:
15807 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv)) {
15808 format_name = drm_get_format_name(mode_cmd->pixel_format);
15809 DRM_DEBUG("unsupported pixel format: %s\n", format_name);
15810 kfree(format_name);
15814 case DRM_FORMAT_YUYV:
15815 case DRM_FORMAT_UYVY:
15816 case DRM_FORMAT_YVYU:
15817 case DRM_FORMAT_VYUY:
15818 if (INTEL_INFO(dev)->gen < 5) {
15819 format_name = drm_get_format_name(mode_cmd->pixel_format);
15820 DRM_DEBUG("unsupported pixel format: %s\n", format_name);
15821 kfree(format_name);
15826 format_name = drm_get_format_name(mode_cmd->pixel_format);
15827 DRM_DEBUG("unsupported pixel format: %s\n", format_name);
15828 kfree(format_name);
15832 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
15833 if (mode_cmd->offsets[0] != 0)
15836 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
15837 intel_fb->obj = obj;
15839 ret = intel_fill_fb_info(dev_priv, &intel_fb->base);
15843 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
15845 DRM_ERROR("framebuffer init failed %d\n", ret);
15849 intel_fb->obj->framebuffer_references++;
15854 static struct drm_framebuffer *
15855 intel_user_framebuffer_create(struct drm_device *dev,
15856 struct drm_file *filp,
15857 const struct drm_mode_fb_cmd2 *user_mode_cmd)
15859 struct drm_framebuffer *fb;
15860 struct drm_i915_gem_object *obj;
15861 struct drm_mode_fb_cmd2 mode_cmd = *user_mode_cmd;
15863 obj = i915_gem_object_lookup(filp, mode_cmd.handles[0]);
15865 return ERR_PTR(-ENOENT);
15867 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
15869 i915_gem_object_put_unlocked(obj);
15874 static const struct drm_mode_config_funcs intel_mode_funcs = {
15875 .fb_create = intel_user_framebuffer_create,
15876 .output_poll_changed = intel_fbdev_output_poll_changed,
15877 .atomic_check = intel_atomic_check,
15878 .atomic_commit = intel_atomic_commit,
15879 .atomic_state_alloc = intel_atomic_state_alloc,
15880 .atomic_state_clear = intel_atomic_state_clear,
15884 * intel_init_display_hooks - initialize the display modesetting hooks
15885 * @dev_priv: device private
15887 void intel_init_display_hooks(struct drm_i915_private *dev_priv)
15889 if (INTEL_INFO(dev_priv)->gen >= 9) {
15890 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
15891 dev_priv->display.get_initial_plane_config =
15892 skylake_get_initial_plane_config;
15893 dev_priv->display.crtc_compute_clock =
15894 haswell_crtc_compute_clock;
15895 dev_priv->display.crtc_enable = haswell_crtc_enable;
15896 dev_priv->display.crtc_disable = haswell_crtc_disable;
15897 } else if (HAS_DDI(dev_priv)) {
15898 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
15899 dev_priv->display.get_initial_plane_config =
15900 ironlake_get_initial_plane_config;
15901 dev_priv->display.crtc_compute_clock =
15902 haswell_crtc_compute_clock;
15903 dev_priv->display.crtc_enable = haswell_crtc_enable;
15904 dev_priv->display.crtc_disable = haswell_crtc_disable;
15905 } else if (HAS_PCH_SPLIT(dev_priv)) {
15906 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
15907 dev_priv->display.get_initial_plane_config =
15908 ironlake_get_initial_plane_config;
15909 dev_priv->display.crtc_compute_clock =
15910 ironlake_crtc_compute_clock;
15911 dev_priv->display.crtc_enable = ironlake_crtc_enable;
15912 dev_priv->display.crtc_disable = ironlake_crtc_disable;
15913 } else if (IS_CHERRYVIEW(dev_priv)) {
15914 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15915 dev_priv->display.get_initial_plane_config =
15916 i9xx_get_initial_plane_config;
15917 dev_priv->display.crtc_compute_clock = chv_crtc_compute_clock;
15918 dev_priv->display.crtc_enable = valleyview_crtc_enable;
15919 dev_priv->display.crtc_disable = i9xx_crtc_disable;
15920 } else if (IS_VALLEYVIEW(dev_priv)) {
15921 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15922 dev_priv->display.get_initial_plane_config =
15923 i9xx_get_initial_plane_config;
15924 dev_priv->display.crtc_compute_clock = vlv_crtc_compute_clock;
15925 dev_priv->display.crtc_enable = valleyview_crtc_enable;
15926 dev_priv->display.crtc_disable = i9xx_crtc_disable;
15927 } else if (IS_G4X(dev_priv)) {
15928 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15929 dev_priv->display.get_initial_plane_config =
15930 i9xx_get_initial_plane_config;
15931 dev_priv->display.crtc_compute_clock = g4x_crtc_compute_clock;
15932 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15933 dev_priv->display.crtc_disable = i9xx_crtc_disable;
15934 } else if (IS_PINEVIEW(dev_priv)) {
15935 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15936 dev_priv->display.get_initial_plane_config =
15937 i9xx_get_initial_plane_config;
15938 dev_priv->display.crtc_compute_clock = pnv_crtc_compute_clock;
15939 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15940 dev_priv->display.crtc_disable = i9xx_crtc_disable;
15941 } else if (!IS_GEN2(dev_priv)) {
15942 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15943 dev_priv->display.get_initial_plane_config =
15944 i9xx_get_initial_plane_config;
15945 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
15946 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15947 dev_priv->display.crtc_disable = i9xx_crtc_disable;
15949 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15950 dev_priv->display.get_initial_plane_config =
15951 i9xx_get_initial_plane_config;
15952 dev_priv->display.crtc_compute_clock = i8xx_crtc_compute_clock;
15953 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15954 dev_priv->display.crtc_disable = i9xx_crtc_disable;
15957 /* Returns the core display clock speed */
15958 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
15959 dev_priv->display.get_display_clock_speed =
15960 skylake_get_display_clock_speed;
15961 else if (IS_BROXTON(dev_priv))
15962 dev_priv->display.get_display_clock_speed =
15963 broxton_get_display_clock_speed;
15964 else if (IS_BROADWELL(dev_priv))
15965 dev_priv->display.get_display_clock_speed =
15966 broadwell_get_display_clock_speed;
15967 else if (IS_HASWELL(dev_priv))
15968 dev_priv->display.get_display_clock_speed =
15969 haswell_get_display_clock_speed;
15970 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
15971 dev_priv->display.get_display_clock_speed =
15972 valleyview_get_display_clock_speed;
15973 else if (IS_GEN5(dev_priv))
15974 dev_priv->display.get_display_clock_speed =
15975 ilk_get_display_clock_speed;
15976 else if (IS_I945G(dev_priv) || IS_BROADWATER(dev_priv) ||
15977 IS_GEN6(dev_priv) || IS_IVYBRIDGE(dev_priv))
15978 dev_priv->display.get_display_clock_speed =
15979 i945_get_display_clock_speed;
15980 else if (IS_GM45(dev_priv))
15981 dev_priv->display.get_display_clock_speed =
15982 gm45_get_display_clock_speed;
15983 else if (IS_CRESTLINE(dev_priv))
15984 dev_priv->display.get_display_clock_speed =
15985 i965gm_get_display_clock_speed;
15986 else if (IS_PINEVIEW(dev_priv))
15987 dev_priv->display.get_display_clock_speed =
15988 pnv_get_display_clock_speed;
15989 else if (IS_G33(dev_priv) || IS_G4X(dev_priv))
15990 dev_priv->display.get_display_clock_speed =
15991 g33_get_display_clock_speed;
15992 else if (IS_I915G(dev_priv))
15993 dev_priv->display.get_display_clock_speed =
15994 i915_get_display_clock_speed;
15995 else if (IS_I945GM(dev_priv) || IS_845G(dev_priv))
15996 dev_priv->display.get_display_clock_speed =
15997 i9xx_misc_get_display_clock_speed;
15998 else if (IS_I915GM(dev_priv))
15999 dev_priv->display.get_display_clock_speed =
16000 i915gm_get_display_clock_speed;
16001 else if (IS_I865G(dev_priv))
16002 dev_priv->display.get_display_clock_speed =
16003 i865_get_display_clock_speed;
16004 else if (IS_I85X(dev_priv))
16005 dev_priv->display.get_display_clock_speed =
16006 i85x_get_display_clock_speed;
16008 WARN(!IS_I830(dev_priv), "Unknown platform. Assuming 133 MHz CDCLK\n");
16009 dev_priv->display.get_display_clock_speed =
16010 i830_get_display_clock_speed;
16013 if (IS_GEN5(dev_priv)) {
16014 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
16015 } else if (IS_GEN6(dev_priv)) {
16016 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
16017 } else if (IS_IVYBRIDGE(dev_priv)) {
16018 /* FIXME: detect B0+ stepping and use auto training */
16019 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
16020 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
16021 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
16024 if (IS_BROADWELL(dev_priv)) {
16025 dev_priv->display.modeset_commit_cdclk =
16026 broadwell_modeset_commit_cdclk;
16027 dev_priv->display.modeset_calc_cdclk =
16028 broadwell_modeset_calc_cdclk;
16029 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
16030 dev_priv->display.modeset_commit_cdclk =
16031 valleyview_modeset_commit_cdclk;
16032 dev_priv->display.modeset_calc_cdclk =
16033 valleyview_modeset_calc_cdclk;
16034 } else if (IS_BROXTON(dev_priv)) {
16035 dev_priv->display.modeset_commit_cdclk =
16036 bxt_modeset_commit_cdclk;
16037 dev_priv->display.modeset_calc_cdclk =
16038 bxt_modeset_calc_cdclk;
16039 } else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
16040 dev_priv->display.modeset_commit_cdclk =
16041 skl_modeset_commit_cdclk;
16042 dev_priv->display.modeset_calc_cdclk =
16043 skl_modeset_calc_cdclk;
16046 if (dev_priv->info.gen >= 9)
16047 dev_priv->display.update_crtcs = skl_update_crtcs;
16049 dev_priv->display.update_crtcs = intel_update_crtcs;
16051 switch (INTEL_INFO(dev_priv)->gen) {
16053 dev_priv->display.queue_flip = intel_gen2_queue_flip;
16057 dev_priv->display.queue_flip = intel_gen3_queue_flip;
16062 dev_priv->display.queue_flip = intel_gen4_queue_flip;
16066 dev_priv->display.queue_flip = intel_gen6_queue_flip;
16069 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
16070 dev_priv->display.queue_flip = intel_gen7_queue_flip;
16073 /* Drop through - unsupported since execlist only. */
16075 /* Default just returns -ENODEV to indicate unsupported */
16076 dev_priv->display.queue_flip = intel_default_queue_flip;
16081 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
16082 * resume, or other times. This quirk makes sure that's the case for
16083 * affected systems.
16085 static void quirk_pipea_force(struct drm_device *dev)
16087 struct drm_i915_private *dev_priv = to_i915(dev);
16089 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
16090 DRM_INFO("applying pipe a force quirk\n");
16093 static void quirk_pipeb_force(struct drm_device *dev)
16095 struct drm_i915_private *dev_priv = to_i915(dev);
16097 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
16098 DRM_INFO("applying pipe b force quirk\n");
16102 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
16104 static void quirk_ssc_force_disable(struct drm_device *dev)
16106 struct drm_i915_private *dev_priv = to_i915(dev);
16107 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
16108 DRM_INFO("applying lvds SSC disable quirk\n");
16112 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
16115 static void quirk_invert_brightness(struct drm_device *dev)
16117 struct drm_i915_private *dev_priv = to_i915(dev);
16118 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
16119 DRM_INFO("applying inverted panel brightness quirk\n");
16122 /* Some VBT's incorrectly indicate no backlight is present */
16123 static void quirk_backlight_present(struct drm_device *dev)
16125 struct drm_i915_private *dev_priv = to_i915(dev);
16126 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
16127 DRM_INFO("applying backlight present quirk\n");
16130 struct intel_quirk {
16132 int subsystem_vendor;
16133 int subsystem_device;
16134 void (*hook)(struct drm_device *dev);
16137 /* For systems that don't have a meaningful PCI subdevice/subvendor ID */
16138 struct intel_dmi_quirk {
16139 void (*hook)(struct drm_device *dev);
16140 const struct dmi_system_id (*dmi_id_list)[];
16143 static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
16145 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
16149 static const struct intel_dmi_quirk intel_dmi_quirks[] = {
16151 .dmi_id_list = &(const struct dmi_system_id[]) {
16153 .callback = intel_dmi_reverse_brightness,
16154 .ident = "NCR Corporation",
16155 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
16156 DMI_MATCH(DMI_PRODUCT_NAME, ""),
16159 { } /* terminating entry */
16161 .hook = quirk_invert_brightness,
16165 static struct intel_quirk intel_quirks[] = {
16166 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
16167 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
16169 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
16170 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
16172 /* 830 needs to leave pipe A & dpll A up */
16173 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
16175 /* 830 needs to leave pipe B & dpll B up */
16176 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
16178 /* Lenovo U160 cannot use SSC on LVDS */
16179 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
16181 /* Sony Vaio Y cannot use SSC on LVDS */
16182 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
16184 /* Acer Aspire 5734Z must invert backlight brightness */
16185 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
16187 /* Acer/eMachines G725 */
16188 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
16190 /* Acer/eMachines e725 */
16191 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
16193 /* Acer/Packard Bell NCL20 */
16194 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
16196 /* Acer Aspire 4736Z */
16197 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
16199 /* Acer Aspire 5336 */
16200 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
16202 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
16203 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
16205 /* Acer C720 Chromebook (Core i3 4005U) */
16206 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
16208 /* Apple Macbook 2,1 (Core 2 T7400) */
16209 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
16211 /* Apple Macbook 4,1 */
16212 { 0x2a02, 0x106b, 0x00a1, quirk_backlight_present },
16214 /* Toshiba CB35 Chromebook (Celeron 2955U) */
16215 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
16217 /* HP Chromebook 14 (Celeron 2955U) */
16218 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
16220 /* Dell Chromebook 11 */
16221 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
16223 /* Dell Chromebook 11 (2015 version) */
16224 { 0x0a16, 0x1028, 0x0a35, quirk_backlight_present },
16227 static void intel_init_quirks(struct drm_device *dev)
16229 struct pci_dev *d = dev->pdev;
16232 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
16233 struct intel_quirk *q = &intel_quirks[i];
16235 if (d->device == q->device &&
16236 (d->subsystem_vendor == q->subsystem_vendor ||
16237 q->subsystem_vendor == PCI_ANY_ID) &&
16238 (d->subsystem_device == q->subsystem_device ||
16239 q->subsystem_device == PCI_ANY_ID))
16242 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
16243 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
16244 intel_dmi_quirks[i].hook(dev);
16248 /* Disable the VGA plane that we never use */
16249 static void i915_disable_vga(struct drm_device *dev)
16251 struct drm_i915_private *dev_priv = to_i915(dev);
16252 struct pci_dev *pdev = dev_priv->drm.pdev;
16254 i915_reg_t vga_reg = i915_vgacntrl_reg(dev_priv);
16256 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
16257 vga_get_uninterruptible(pdev, VGA_RSRC_LEGACY_IO);
16258 outb(SR01, VGA_SR_INDEX);
16259 sr1 = inb(VGA_SR_DATA);
16260 outb(sr1 | 1<<5, VGA_SR_DATA);
16261 vga_put(pdev, VGA_RSRC_LEGACY_IO);
16264 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
16265 POSTING_READ(vga_reg);
16268 void intel_modeset_init_hw(struct drm_device *dev)
16270 struct drm_i915_private *dev_priv = to_i915(dev);
16272 intel_update_cdclk(dev);
16274 dev_priv->atomic_cdclk_freq = dev_priv->cdclk_freq;
16276 intel_init_clock_gating(dev);
16280 * Calculate what we think the watermarks should be for the state we've read
16281 * out of the hardware and then immediately program those watermarks so that
16282 * we ensure the hardware settings match our internal state.
16284 * We can calculate what we think WM's should be by creating a duplicate of the
16285 * current state (which was constructed during hardware readout) and running it
16286 * through the atomic check code to calculate new watermark values in the
16289 static void sanitize_watermarks(struct drm_device *dev)
16291 struct drm_i915_private *dev_priv = to_i915(dev);
16292 struct drm_atomic_state *state;
16293 struct drm_crtc *crtc;
16294 struct drm_crtc_state *cstate;
16295 struct drm_modeset_acquire_ctx ctx;
16299 /* Only supported on platforms that use atomic watermark design */
16300 if (!dev_priv->display.optimize_watermarks)
16304 * We need to hold connection_mutex before calling duplicate_state so
16305 * that the connector loop is protected.
16307 drm_modeset_acquire_init(&ctx, 0);
16309 ret = drm_modeset_lock_all_ctx(dev, &ctx);
16310 if (ret == -EDEADLK) {
16311 drm_modeset_backoff(&ctx);
16313 } else if (WARN_ON(ret)) {
16317 state = drm_atomic_helper_duplicate_state(dev, &ctx);
16318 if (WARN_ON(IS_ERR(state)))
16322 * Hardware readout is the only time we don't want to calculate
16323 * intermediate watermarks (since we don't trust the current
16326 to_intel_atomic_state(state)->skip_intermediate_wm = true;
16328 ret = intel_atomic_check(dev, state);
16331 * If we fail here, it means that the hardware appears to be
16332 * programmed in a way that shouldn't be possible, given our
16333 * understanding of watermark requirements. This might mean a
16334 * mistake in the hardware readout code or a mistake in the
16335 * watermark calculations for a given platform. Raise a WARN
16336 * so that this is noticeable.
16338 * If this actually happens, we'll have to just leave the
16339 * BIOS-programmed watermarks untouched and hope for the best.
16341 WARN(true, "Could not determine valid watermarks for inherited state\n");
16345 /* Write calculated watermark values back */
16346 for_each_crtc_in_state(state, crtc, cstate, i) {
16347 struct intel_crtc_state *cs = to_intel_crtc_state(cstate);
16349 cs->wm.need_postvbl_update = true;
16350 dev_priv->display.optimize_watermarks(cs);
16353 drm_atomic_state_free(state);
16355 drm_modeset_drop_locks(&ctx);
16356 drm_modeset_acquire_fini(&ctx);
16359 void intel_modeset_init(struct drm_device *dev)
16361 struct drm_i915_private *dev_priv = to_i915(dev);
16362 struct i915_ggtt *ggtt = &dev_priv->ggtt;
16365 struct intel_crtc *crtc;
16367 drm_mode_config_init(dev);
16369 dev->mode_config.min_width = 0;
16370 dev->mode_config.min_height = 0;
16372 dev->mode_config.preferred_depth = 24;
16373 dev->mode_config.prefer_shadow = 1;
16375 dev->mode_config.allow_fb_modifiers = true;
16377 dev->mode_config.funcs = &intel_mode_funcs;
16379 intel_init_quirks(dev);
16381 intel_init_pm(dev);
16383 if (INTEL_INFO(dev)->num_pipes == 0)
16387 * There may be no VBT; and if the BIOS enabled SSC we can
16388 * just keep using it to avoid unnecessary flicker. Whereas if the
16389 * BIOS isn't using it, don't assume it will work even if the VBT
16390 * indicates as much.
16392 if (HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv)) {
16393 bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
16396 if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) {
16397 DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n",
16398 bios_lvds_use_ssc ? "en" : "dis",
16399 dev_priv->vbt.lvds_use_ssc ? "en" : "dis");
16400 dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc;
16404 if (IS_GEN2(dev_priv)) {
16405 dev->mode_config.max_width = 2048;
16406 dev->mode_config.max_height = 2048;
16407 } else if (IS_GEN3(dev_priv)) {
16408 dev->mode_config.max_width = 4096;
16409 dev->mode_config.max_height = 4096;
16411 dev->mode_config.max_width = 8192;
16412 dev->mode_config.max_height = 8192;
16415 if (IS_845G(dev_priv) || IS_I865G(dev_priv)) {
16416 dev->mode_config.cursor_width = IS_845G(dev_priv) ? 64 : 512;
16417 dev->mode_config.cursor_height = 1023;
16418 } else if (IS_GEN2(dev_priv)) {
16419 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
16420 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
16422 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
16423 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
16426 dev->mode_config.fb_base = ggtt->mappable_base;
16428 DRM_DEBUG_KMS("%d display pipe%s available.\n",
16429 INTEL_INFO(dev)->num_pipes,
16430 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
16432 for_each_pipe(dev_priv, pipe) {
16433 intel_crtc_init(dev, pipe);
16434 for_each_sprite(dev_priv, pipe, sprite) {
16435 ret = intel_plane_init(dev, pipe, sprite);
16437 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
16438 pipe_name(pipe), sprite_name(pipe, sprite), ret);
16442 intel_update_czclk(dev_priv);
16443 intel_update_cdclk(dev);
16445 intel_shared_dpll_init(dev);
16447 if (dev_priv->max_cdclk_freq == 0)
16448 intel_update_max_cdclk(dev);
16450 /* Just disable it once at startup */
16451 i915_disable_vga(dev);
16452 intel_setup_outputs(dev);
16454 drm_modeset_lock_all(dev);
16455 intel_modeset_setup_hw_state(dev);
16456 drm_modeset_unlock_all(dev);
16458 for_each_intel_crtc(dev, crtc) {
16459 struct intel_initial_plane_config plane_config = {};
16465 * Note that reserving the BIOS fb up front prevents us
16466 * from stuffing other stolen allocations like the ring
16467 * on top. This prevents some ugliness at boot time, and
16468 * can even allow for smooth boot transitions if the BIOS
16469 * fb is large enough for the active pipe configuration.
16471 dev_priv->display.get_initial_plane_config(crtc,
16475 * If the fb is shared between multiple heads, we'll
16476 * just get the first one.
16478 intel_find_initial_plane_obj(crtc, &plane_config);
16482 * Make sure hardware watermarks really match the state we read out.
16483 * Note that we need to do this after reconstructing the BIOS fb's
16484 * since the watermark calculation done here will use pstate->fb.
16486 sanitize_watermarks(dev);
16489 static void intel_enable_pipe_a(struct drm_device *dev)
16491 struct intel_connector *connector;
16492 struct drm_connector *crt = NULL;
16493 struct intel_load_detect_pipe load_detect_temp;
16494 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
16496 /* We can't just switch on the pipe A, we need to set things up with a
16497 * proper mode and output configuration. As a gross hack, enable pipe A
16498 * by enabling the load detect pipe once. */
16499 for_each_intel_connector(dev, connector) {
16500 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
16501 crt = &connector->base;
16509 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
16510 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
16514 intel_check_plane_mapping(struct intel_crtc *crtc)
16516 struct drm_device *dev = crtc->base.dev;
16517 struct drm_i915_private *dev_priv = to_i915(dev);
16520 if (INTEL_INFO(dev)->num_pipes == 1)
16523 val = I915_READ(DSPCNTR(!crtc->plane));
16525 if ((val & DISPLAY_PLANE_ENABLE) &&
16526 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
16532 static bool intel_crtc_has_encoders(struct intel_crtc *crtc)
16534 struct drm_device *dev = crtc->base.dev;
16535 struct intel_encoder *encoder;
16537 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
16543 static struct intel_connector *intel_encoder_find_connector(struct intel_encoder *encoder)
16545 struct drm_device *dev = encoder->base.dev;
16546 struct intel_connector *connector;
16548 for_each_connector_on_encoder(dev, &encoder->base, connector)
16554 static bool has_pch_trancoder(struct drm_i915_private *dev_priv,
16555 enum transcoder pch_transcoder)
16557 return HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv) ||
16558 (HAS_PCH_LPT_H(dev_priv) && pch_transcoder == TRANSCODER_A);
16561 static void intel_sanitize_crtc(struct intel_crtc *crtc)
16563 struct drm_device *dev = crtc->base.dev;
16564 struct drm_i915_private *dev_priv = to_i915(dev);
16565 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
16567 /* Clear any frame start delays used for debugging left by the BIOS */
16568 if (!transcoder_is_dsi(cpu_transcoder)) {
16569 i915_reg_t reg = PIPECONF(cpu_transcoder);
16572 I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
16575 /* restore vblank interrupts to correct state */
16576 drm_crtc_vblank_reset(&crtc->base);
16577 if (crtc->active) {
16578 struct intel_plane *plane;
16580 drm_crtc_vblank_on(&crtc->base);
16582 /* Disable everything but the primary plane */
16583 for_each_intel_plane_on_crtc(dev, crtc, plane) {
16584 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
16587 plane->disable_plane(&plane->base, &crtc->base);
16591 /* We need to sanitize the plane -> pipe mapping first because this will
16592 * disable the crtc (and hence change the state) if it is wrong. Note
16593 * that gen4+ has a fixed plane -> pipe mapping. */
16594 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
16597 DRM_DEBUG_KMS("[CRTC:%d:%s] wrong plane connection detected!\n",
16598 crtc->base.base.id, crtc->base.name);
16600 /* Pipe has the wrong plane attached and the plane is active.
16601 * Temporarily change the plane mapping and disable everything
16603 plane = crtc->plane;
16604 to_intel_plane_state(crtc->base.primary->state)->base.visible = true;
16605 crtc->plane = !plane;
16606 intel_crtc_disable_noatomic(&crtc->base);
16607 crtc->plane = plane;
16610 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
16611 crtc->pipe == PIPE_A && !crtc->active) {
16612 /* BIOS forgot to enable pipe A, this mostly happens after
16613 * resume. Force-enable the pipe to fix this, the update_dpms
16614 * call below we restore the pipe to the right state, but leave
16615 * the required bits on. */
16616 intel_enable_pipe_a(dev);
16619 /* Adjust the state of the output pipe according to whether we
16620 * have active connectors/encoders. */
16621 if (crtc->active && !intel_crtc_has_encoders(crtc))
16622 intel_crtc_disable_noatomic(&crtc->base);
16624 if (crtc->active || HAS_GMCH_DISPLAY(dev_priv)) {
16626 * We start out with underrun reporting disabled to avoid races.
16627 * For correct bookkeeping mark this on active crtcs.
16629 * Also on gmch platforms we dont have any hardware bits to
16630 * disable the underrun reporting. Which means we need to start
16631 * out with underrun reporting disabled also on inactive pipes,
16632 * since otherwise we'll complain about the garbage we read when
16633 * e.g. coming up after runtime pm.
16635 * No protection against concurrent access is required - at
16636 * worst a fifo underrun happens which also sets this to false.
16638 crtc->cpu_fifo_underrun_disabled = true;
16640 * We track the PCH trancoder underrun reporting state
16641 * within the crtc. With crtc for pipe A housing the underrun
16642 * reporting state for PCH transcoder A, crtc for pipe B housing
16643 * it for PCH transcoder B, etc. LPT-H has only PCH transcoder A,
16644 * and marking underrun reporting as disabled for the non-existing
16645 * PCH transcoders B and C would prevent enabling the south
16646 * error interrupt (see cpt_can_enable_serr_int()).
16648 if (has_pch_trancoder(dev_priv, (enum transcoder)crtc->pipe))
16649 crtc->pch_fifo_underrun_disabled = true;
16653 static void intel_sanitize_encoder(struct intel_encoder *encoder)
16655 struct intel_connector *connector;
16657 /* We need to check both for a crtc link (meaning that the
16658 * encoder is active and trying to read from a pipe) and the
16659 * pipe itself being active. */
16660 bool has_active_crtc = encoder->base.crtc &&
16661 to_intel_crtc(encoder->base.crtc)->active;
16663 connector = intel_encoder_find_connector(encoder);
16664 if (connector && !has_active_crtc) {
16665 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
16666 encoder->base.base.id,
16667 encoder->base.name);
16669 /* Connector is active, but has no active pipe. This is
16670 * fallout from our resume register restoring. Disable
16671 * the encoder manually again. */
16672 if (encoder->base.crtc) {
16673 struct drm_crtc_state *crtc_state = encoder->base.crtc->state;
16675 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
16676 encoder->base.base.id,
16677 encoder->base.name);
16678 encoder->disable(encoder, to_intel_crtc_state(crtc_state), connector->base.state);
16679 if (encoder->post_disable)
16680 encoder->post_disable(encoder, to_intel_crtc_state(crtc_state), connector->base.state);
16682 encoder->base.crtc = NULL;
16684 /* Inconsistent output/port/pipe state happens presumably due to
16685 * a bug in one of the get_hw_state functions. Or someplace else
16686 * in our code, like the register restore mess on resume. Clamp
16687 * things to off as a safer default. */
16689 connector->base.dpms = DRM_MODE_DPMS_OFF;
16690 connector->base.encoder = NULL;
16692 /* Enabled encoders without active connectors will be fixed in
16693 * the crtc fixup. */
16696 void i915_redisable_vga_power_on(struct drm_device *dev)
16698 struct drm_i915_private *dev_priv = to_i915(dev);
16699 i915_reg_t vga_reg = i915_vgacntrl_reg(dev_priv);
16701 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
16702 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
16703 i915_disable_vga(dev);
16707 void i915_redisable_vga(struct drm_device *dev)
16709 struct drm_i915_private *dev_priv = to_i915(dev);
16711 /* This function can be called both from intel_modeset_setup_hw_state or
16712 * at a very early point in our resume sequence, where the power well
16713 * structures are not yet restored. Since this function is at a very
16714 * paranoid "someone might have enabled VGA while we were not looking"
16715 * level, just check if the power well is enabled instead of trying to
16716 * follow the "don't touch the power well if we don't need it" policy
16717 * the rest of the driver uses. */
16718 if (!intel_display_power_get_if_enabled(dev_priv, POWER_DOMAIN_VGA))
16721 i915_redisable_vga_power_on(dev);
16723 intel_display_power_put(dev_priv, POWER_DOMAIN_VGA);
16726 static bool primary_get_hw_state(struct intel_plane *plane)
16728 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
16730 return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE;
16733 /* FIXME read out full plane state for all planes */
16734 static void readout_plane_state(struct intel_crtc *crtc)
16736 struct drm_plane *primary = crtc->base.primary;
16737 struct intel_plane_state *plane_state =
16738 to_intel_plane_state(primary->state);
16740 plane_state->base.visible = crtc->active &&
16741 primary_get_hw_state(to_intel_plane(primary));
16743 if (plane_state->base.visible)
16744 crtc->base.state->plane_mask |= 1 << drm_plane_index(primary);
16747 static void intel_modeset_readout_hw_state(struct drm_device *dev)
16749 struct drm_i915_private *dev_priv = to_i915(dev);
16751 struct intel_crtc *crtc;
16752 struct intel_encoder *encoder;
16753 struct intel_connector *connector;
16756 dev_priv->active_crtcs = 0;
16758 for_each_intel_crtc(dev, crtc) {
16759 struct intel_crtc_state *crtc_state = crtc->config;
16762 __drm_atomic_helper_crtc_destroy_state(&crtc_state->base);
16763 memset(crtc_state, 0, sizeof(*crtc_state));
16764 crtc_state->base.crtc = &crtc->base;
16766 crtc_state->base.active = crtc_state->base.enable =
16767 dev_priv->display.get_pipe_config(crtc, crtc_state);
16769 crtc->base.enabled = crtc_state->base.enable;
16770 crtc->active = crtc_state->base.active;
16772 if (crtc_state->base.active) {
16773 dev_priv->active_crtcs |= 1 << crtc->pipe;
16775 if (INTEL_GEN(dev_priv) >= 9 || IS_BROADWELL(dev_priv))
16776 pixclk = ilk_pipe_pixel_rate(crtc_state);
16777 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
16778 pixclk = crtc_state->base.adjusted_mode.crtc_clock;
16780 WARN_ON(dev_priv->display.modeset_calc_cdclk);
16782 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
16783 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
16784 pixclk = DIV_ROUND_UP(pixclk * 100, 95);
16787 dev_priv->min_pixclk[crtc->pipe] = pixclk;
16789 readout_plane_state(crtc);
16791 DRM_DEBUG_KMS("[CRTC:%d:%s] hw state readout: %s\n",
16792 crtc->base.base.id, crtc->base.name,
16793 crtc->active ? "enabled" : "disabled");
16796 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
16797 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
16799 pll->on = pll->funcs.get_hw_state(dev_priv, pll,
16800 &pll->config.hw_state);
16801 pll->config.crtc_mask = 0;
16802 for_each_intel_crtc(dev, crtc) {
16803 if (crtc->active && crtc->config->shared_dpll == pll)
16804 pll->config.crtc_mask |= 1 << crtc->pipe;
16806 pll->active_mask = pll->config.crtc_mask;
16808 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
16809 pll->name, pll->config.crtc_mask, pll->on);
16812 for_each_intel_encoder(dev, encoder) {
16815 if (encoder->get_hw_state(encoder, &pipe)) {
16816 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
16817 encoder->base.crtc = &crtc->base;
16818 crtc->config->output_types |= 1 << encoder->type;
16819 encoder->get_config(encoder, crtc->config);
16821 encoder->base.crtc = NULL;
16824 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
16825 encoder->base.base.id,
16826 encoder->base.name,
16827 encoder->base.crtc ? "enabled" : "disabled",
16831 for_each_intel_connector(dev, connector) {
16832 if (connector->get_hw_state(connector)) {
16833 connector->base.dpms = DRM_MODE_DPMS_ON;
16835 encoder = connector->encoder;
16836 connector->base.encoder = &encoder->base;
16838 if (encoder->base.crtc &&
16839 encoder->base.crtc->state->active) {
16841 * This has to be done during hardware readout
16842 * because anything calling .crtc_disable may
16843 * rely on the connector_mask being accurate.
16845 encoder->base.crtc->state->connector_mask |=
16846 1 << drm_connector_index(&connector->base);
16847 encoder->base.crtc->state->encoder_mask |=
16848 1 << drm_encoder_index(&encoder->base);
16852 connector->base.dpms = DRM_MODE_DPMS_OFF;
16853 connector->base.encoder = NULL;
16855 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
16856 connector->base.base.id,
16857 connector->base.name,
16858 connector->base.encoder ? "enabled" : "disabled");
16861 for_each_intel_crtc(dev, crtc) {
16862 crtc->base.hwmode = crtc->config->base.adjusted_mode;
16864 memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
16865 if (crtc->base.state->active) {
16866 intel_mode_from_pipe_config(&crtc->base.mode, crtc->config);
16867 intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config);
16868 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode));
16871 * The initial mode needs to be set in order to keep
16872 * the atomic core happy. It wants a valid mode if the
16873 * crtc's enabled, so we do the above call.
16875 * At this point some state updated by the connectors
16876 * in their ->detect() callback has not run yet, so
16877 * no recalculation can be done yet.
16879 * Even if we could do a recalculation and modeset
16880 * right now it would cause a double modeset if
16881 * fbdev or userspace chooses a different initial mode.
16883 * If that happens, someone indicated they wanted a
16884 * mode change, which means it's safe to do a full
16887 crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;
16889 drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
16890 update_scanline_offset(crtc);
16893 intel_pipe_config_sanity_check(dev_priv, crtc->config);
16897 /* Scan out the current hw modeset state,
16898 * and sanitizes it to the current state
16901 intel_modeset_setup_hw_state(struct drm_device *dev)
16903 struct drm_i915_private *dev_priv = to_i915(dev);
16905 struct intel_crtc *crtc;
16906 struct intel_encoder *encoder;
16909 intel_modeset_readout_hw_state(dev);
16911 /* HW state is read out, now we need to sanitize this mess. */
16912 for_each_intel_encoder(dev, encoder) {
16913 intel_sanitize_encoder(encoder);
16916 for_each_pipe(dev_priv, pipe) {
16917 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
16918 intel_sanitize_crtc(crtc);
16919 intel_dump_pipe_config(crtc, crtc->config,
16920 "[setup_hw_state]");
16923 intel_modeset_update_connector_atomic_state(dev);
16925 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
16926 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
16928 if (!pll->on || pll->active_mask)
16931 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
16933 pll->funcs.disable(dev_priv, pll);
16937 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
16938 vlv_wm_get_hw_state(dev);
16939 else if (IS_GEN9(dev_priv))
16940 skl_wm_get_hw_state(dev);
16941 else if (HAS_PCH_SPLIT(dev_priv))
16942 ilk_wm_get_hw_state(dev);
16944 for_each_intel_crtc(dev, crtc) {
16945 unsigned long put_domains;
16947 put_domains = modeset_get_crtc_power_domains(&crtc->base, crtc->config);
16948 if (WARN_ON(put_domains))
16949 modeset_put_power_domains(dev_priv, put_domains);
16951 intel_display_set_init_power(dev_priv, false);
16953 intel_fbc_init_pipe_state(dev_priv);
16956 void intel_display_resume(struct drm_device *dev)
16958 struct drm_i915_private *dev_priv = to_i915(dev);
16959 struct drm_atomic_state *state = dev_priv->modeset_restore_state;
16960 struct drm_modeset_acquire_ctx ctx;
16963 dev_priv->modeset_restore_state = NULL;
16965 state->acquire_ctx = &ctx;
16968 * This is a cludge because with real atomic modeset mode_config.mutex
16969 * won't be taken. Unfortunately some probed state like
16970 * audio_codec_enable is still protected by mode_config.mutex, so lock
16973 mutex_lock(&dev->mode_config.mutex);
16974 drm_modeset_acquire_init(&ctx, 0);
16977 ret = drm_modeset_lock_all_ctx(dev, &ctx);
16978 if (ret != -EDEADLK)
16981 drm_modeset_backoff(&ctx);
16985 ret = __intel_display_resume(dev, state);
16987 drm_modeset_drop_locks(&ctx);
16988 drm_modeset_acquire_fini(&ctx);
16989 mutex_unlock(&dev->mode_config.mutex);
16992 DRM_ERROR("Restoring old state failed with %i\n", ret);
16993 drm_atomic_state_free(state);
16997 void intel_modeset_gem_init(struct drm_device *dev)
16999 struct drm_i915_private *dev_priv = to_i915(dev);
17000 struct drm_crtc *c;
17001 struct drm_i915_gem_object *obj;
17003 intel_init_gt_powersave(dev_priv);
17005 intel_modeset_init_hw(dev);
17007 intel_setup_overlay(dev_priv);
17010 * Make sure any fbs we allocated at startup are properly
17011 * pinned & fenced. When we do the allocation it's too early
17014 for_each_crtc(dev, c) {
17015 struct i915_vma *vma;
17017 obj = intel_fb_obj(c->primary->fb);
17021 mutex_lock(&dev->struct_mutex);
17022 vma = intel_pin_and_fence_fb_obj(c->primary->fb,
17023 c->primary->state->rotation);
17024 mutex_unlock(&dev->struct_mutex);
17026 DRM_ERROR("failed to pin boot fb on pipe %d\n",
17027 to_intel_crtc(c)->pipe);
17028 drm_framebuffer_unreference(c->primary->fb);
17029 c->primary->fb = NULL;
17030 c->primary->crtc = c->primary->state->crtc = NULL;
17031 update_state_fb(c->primary);
17032 c->state->plane_mask &= ~(1 << drm_plane_index(c->primary));
17037 int intel_connector_register(struct drm_connector *connector)
17039 struct intel_connector *intel_connector = to_intel_connector(connector);
17042 ret = intel_backlight_device_register(intel_connector);
17052 void intel_connector_unregister(struct drm_connector *connector)
17054 struct intel_connector *intel_connector = to_intel_connector(connector);
17056 intel_backlight_device_unregister(intel_connector);
17057 intel_panel_destroy_backlight(connector);
17060 void intel_modeset_cleanup(struct drm_device *dev)
17062 struct drm_i915_private *dev_priv = to_i915(dev);
17064 intel_disable_gt_powersave(dev_priv);
17067 * Interrupts and polling as the first thing to avoid creating havoc.
17068 * Too much stuff here (turning of connectors, ...) would
17069 * experience fancy races otherwise.
17071 intel_irq_uninstall(dev_priv);
17074 * Due to the hpd irq storm handling the hotplug work can re-arm the
17075 * poll handlers. Hence disable polling after hpd handling is shut down.
17077 drm_kms_helper_poll_fini(dev);
17079 intel_unregister_dsm_handler();
17081 intel_fbc_global_disable(dev_priv);
17083 /* flush any delayed tasks or pending work */
17084 flush_scheduled_work();
17086 drm_mode_config_cleanup(dev);
17088 intel_cleanup_overlay(dev_priv);
17090 intel_cleanup_gt_powersave(dev_priv);
17092 intel_teardown_gmbus(dev);
17095 void intel_connector_attach_encoder(struct intel_connector *connector,
17096 struct intel_encoder *encoder)
17098 connector->encoder = encoder;
17099 drm_mode_connector_attach_encoder(&connector->base,
17104 * set vga decode state - true == enable VGA decode
17106 int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
17108 struct drm_i915_private *dev_priv = to_i915(dev);
17109 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
17112 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
17113 DRM_ERROR("failed to read control word\n");
17117 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
17121 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
17123 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
17125 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
17126 DRM_ERROR("failed to write control word\n");
17133 #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
17135 struct intel_display_error_state {
17137 u32 power_well_driver;
17139 int num_transcoders;
17141 struct intel_cursor_error_state {
17146 } cursor[I915_MAX_PIPES];
17148 struct intel_pipe_error_state {
17149 bool power_domain_on;
17152 } pipe[I915_MAX_PIPES];
17154 struct intel_plane_error_state {
17162 } plane[I915_MAX_PIPES];
17164 struct intel_transcoder_error_state {
17165 bool power_domain_on;
17166 enum transcoder cpu_transcoder;
17179 struct intel_display_error_state *
17180 intel_display_capture_error_state(struct drm_i915_private *dev_priv)
17182 struct intel_display_error_state *error;
17183 int transcoders[] = {
17191 if (INTEL_INFO(dev_priv)->num_pipes == 0)
17194 error = kzalloc(sizeof(*error), GFP_ATOMIC);
17198 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
17199 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
17201 for_each_pipe(dev_priv, i) {
17202 error->pipe[i].power_domain_on =
17203 __intel_display_power_is_enabled(dev_priv,
17204 POWER_DOMAIN_PIPE(i));
17205 if (!error->pipe[i].power_domain_on)
17208 error->cursor[i].control = I915_READ(CURCNTR(i));
17209 error->cursor[i].position = I915_READ(CURPOS(i));
17210 error->cursor[i].base = I915_READ(CURBASE(i));
17212 error->plane[i].control = I915_READ(DSPCNTR(i));
17213 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
17214 if (INTEL_GEN(dev_priv) <= 3) {
17215 error->plane[i].size = I915_READ(DSPSIZE(i));
17216 error->plane[i].pos = I915_READ(DSPPOS(i));
17218 if (INTEL_GEN(dev_priv) <= 7 && !IS_HASWELL(dev_priv))
17219 error->plane[i].addr = I915_READ(DSPADDR(i));
17220 if (INTEL_GEN(dev_priv) >= 4) {
17221 error->plane[i].surface = I915_READ(DSPSURF(i));
17222 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
17225 error->pipe[i].source = I915_READ(PIPESRC(i));
17227 if (HAS_GMCH_DISPLAY(dev_priv))
17228 error->pipe[i].stat = I915_READ(PIPESTAT(i));
17231 /* Note: this does not include DSI transcoders. */
17232 error->num_transcoders = INTEL_INFO(dev_priv)->num_pipes;
17233 if (HAS_DDI(dev_priv))
17234 error->num_transcoders++; /* Account for eDP. */
17236 for (i = 0; i < error->num_transcoders; i++) {
17237 enum transcoder cpu_transcoder = transcoders[i];
17239 error->transcoder[i].power_domain_on =
17240 __intel_display_power_is_enabled(dev_priv,
17241 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
17242 if (!error->transcoder[i].power_domain_on)
17245 error->transcoder[i].cpu_transcoder = cpu_transcoder;
17247 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
17248 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
17249 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
17250 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
17251 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
17252 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
17253 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
17259 #define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
17262 intel_display_print_error_state(struct drm_i915_error_state_buf *m,
17263 struct drm_device *dev,
17264 struct intel_display_error_state *error)
17266 struct drm_i915_private *dev_priv = to_i915(dev);
17272 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
17273 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
17274 err_printf(m, "PWR_WELL_CTL2: %08x\n",
17275 error->power_well_driver);
17276 for_each_pipe(dev_priv, i) {
17277 err_printf(m, "Pipe [%d]:\n", i);
17278 err_printf(m, " Power: %s\n",
17279 onoff(error->pipe[i].power_domain_on));
17280 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
17281 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
17283 err_printf(m, "Plane [%d]:\n", i);
17284 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
17285 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
17286 if (INTEL_INFO(dev)->gen <= 3) {
17287 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
17288 err_printf(m, " POS: %08x\n", error->plane[i].pos);
17290 if (INTEL_GEN(dev_priv) <= 7 && !IS_HASWELL(dev_priv))
17291 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
17292 if (INTEL_INFO(dev)->gen >= 4) {
17293 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
17294 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
17297 err_printf(m, "Cursor [%d]:\n", i);
17298 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
17299 err_printf(m, " POS: %08x\n", error->cursor[i].position);
17300 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
17303 for (i = 0; i < error->num_transcoders; i++) {
17304 err_printf(m, "CPU transcoder: %s\n",
17305 transcoder_name(error->transcoder[i].cpu_transcoder));
17306 err_printf(m, " Power: %s\n",
17307 onoff(error->transcoder[i].power_domain_on));
17308 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
17309 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
17310 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
17311 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
17312 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
17313 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
17314 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);