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_clflush.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 /* Primary plane formats for gen <= 3 */
53 static const uint32_t i8xx_primary_formats
[] = {
60 /* Primary plane formats for gen >= 4 */
61 static const uint32_t i965_primary_formats
[] = {
66 DRM_FORMAT_XRGB2101010
,
67 DRM_FORMAT_XBGR2101010
,
70 static const uint64_t i9xx_format_modifiers
[] = {
71 I915_FORMAT_MOD_X_TILED
,
72 DRM_FORMAT_MOD_LINEAR
,
73 DRM_FORMAT_MOD_INVALID
76 static const uint32_t skl_primary_formats
[] = {
83 DRM_FORMAT_XRGB2101010
,
84 DRM_FORMAT_XBGR2101010
,
91 static const uint64_t skl_format_modifiers_noccs
[] = {
92 I915_FORMAT_MOD_Yf_TILED
,
93 I915_FORMAT_MOD_Y_TILED
,
94 I915_FORMAT_MOD_X_TILED
,
95 DRM_FORMAT_MOD_LINEAR
,
96 DRM_FORMAT_MOD_INVALID
99 static const uint64_t skl_format_modifiers_ccs
[] = {
100 I915_FORMAT_MOD_Yf_TILED_CCS
,
101 I915_FORMAT_MOD_Y_TILED_CCS
,
102 I915_FORMAT_MOD_Yf_TILED
,
103 I915_FORMAT_MOD_Y_TILED
,
104 I915_FORMAT_MOD_X_TILED
,
105 DRM_FORMAT_MOD_LINEAR
,
106 DRM_FORMAT_MOD_INVALID
110 static const uint32_t intel_cursor_formats
[] = {
114 static const uint64_t cursor_format_modifiers
[] = {
115 DRM_FORMAT_MOD_LINEAR
,
116 DRM_FORMAT_MOD_INVALID
119 static void i9xx_crtc_clock_get(struct intel_crtc
*crtc
,
120 struct intel_crtc_state
*pipe_config
);
121 static void ironlake_pch_clock_get(struct intel_crtc
*crtc
,
122 struct intel_crtc_state
*pipe_config
);
124 static int intel_framebuffer_init(struct intel_framebuffer
*ifb
,
125 struct drm_i915_gem_object
*obj
,
126 struct drm_mode_fb_cmd2
*mode_cmd
);
127 static void i9xx_set_pipeconf(struct intel_crtc
*intel_crtc
);
128 static void intel_set_pipe_timings(struct intel_crtc
*intel_crtc
);
129 static void intel_set_pipe_src_size(struct intel_crtc
*intel_crtc
);
130 static void intel_cpu_transcoder_set_m_n(struct intel_crtc
*crtc
,
131 struct intel_link_m_n
*m_n
,
132 struct intel_link_m_n
*m2_n2
);
133 static void ironlake_set_pipeconf(struct drm_crtc
*crtc
);
134 static void haswell_set_pipeconf(struct drm_crtc
*crtc
);
135 static void haswell_set_pipemisc(struct drm_crtc
*crtc
);
136 static void vlv_prepare_pll(struct intel_crtc
*crtc
,
137 const struct intel_crtc_state
*pipe_config
);
138 static void chv_prepare_pll(struct intel_crtc
*crtc
,
139 const struct intel_crtc_state
*pipe_config
);
140 static void intel_begin_crtc_commit(struct drm_crtc
*, struct drm_crtc_state
*);
141 static void intel_finish_crtc_commit(struct drm_crtc
*, struct drm_crtc_state
*);
142 static void intel_crtc_init_scalers(struct intel_crtc
*crtc
,
143 struct intel_crtc_state
*crtc_state
);
144 static void skylake_pfit_enable(struct intel_crtc
*crtc
);
145 static void ironlake_pfit_disable(struct intel_crtc
*crtc
, bool force
);
146 static void ironlake_pfit_enable(struct intel_crtc
*crtc
);
147 static void intel_modeset_setup_hw_state(struct drm_device
*dev
,
148 struct drm_modeset_acquire_ctx
*ctx
);
149 static void intel_pre_disable_primary_noatomic(struct drm_crtc
*crtc
);
154 } dot
, vco
, n
, m
, m1
, m2
, p
, p1
;
158 int p2_slow
, p2_fast
;
162 /* returns HPLL frequency in kHz */
163 int vlv_get_hpll_vco(struct drm_i915_private
*dev_priv
)
165 int hpll_freq
, vco_freq
[] = { 800, 1600, 2000, 2400 };
167 /* Obtain SKU information */
168 mutex_lock(&dev_priv
->sb_lock
);
169 hpll_freq
= vlv_cck_read(dev_priv
, CCK_FUSE_REG
) &
170 CCK_FUSE_HPLL_FREQ_MASK
;
171 mutex_unlock(&dev_priv
->sb_lock
);
173 return vco_freq
[hpll_freq
] * 1000;
176 int vlv_get_cck_clock(struct drm_i915_private
*dev_priv
,
177 const char *name
, u32 reg
, int ref_freq
)
182 mutex_lock(&dev_priv
->sb_lock
);
183 val
= vlv_cck_read(dev_priv
, reg
);
184 mutex_unlock(&dev_priv
->sb_lock
);
186 divider
= val
& CCK_FREQUENCY_VALUES
;
188 WARN((val
& CCK_FREQUENCY_STATUS
) !=
189 (divider
<< CCK_FREQUENCY_STATUS_SHIFT
),
190 "%s change in progress\n", name
);
192 return DIV_ROUND_CLOSEST(ref_freq
<< 1, divider
+ 1);
195 int vlv_get_cck_clock_hpll(struct drm_i915_private
*dev_priv
,
196 const char *name
, u32 reg
)
198 if (dev_priv
->hpll_freq
== 0)
199 dev_priv
->hpll_freq
= vlv_get_hpll_vco(dev_priv
);
201 return vlv_get_cck_clock(dev_priv
, name
, reg
,
202 dev_priv
->hpll_freq
);
205 static void intel_update_czclk(struct drm_i915_private
*dev_priv
)
207 if (!(IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
)))
210 dev_priv
->czclk_freq
= vlv_get_cck_clock_hpll(dev_priv
, "czclk",
211 CCK_CZ_CLOCK_CONTROL
);
213 DRM_DEBUG_DRIVER("CZ clock rate: %d kHz\n", dev_priv
->czclk_freq
);
216 static inline u32
/* units of 100MHz */
217 intel_fdi_link_freq(struct drm_i915_private
*dev_priv
,
218 const struct intel_crtc_state
*pipe_config
)
220 if (HAS_DDI(dev_priv
))
221 return pipe_config
->port_clock
; /* SPLL */
223 return dev_priv
->fdi_pll_freq
;
226 static const struct intel_limit intel_limits_i8xx_dac
= {
227 .dot
= { .min
= 25000, .max
= 350000 },
228 .vco
= { .min
= 908000, .max
= 1512000 },
229 .n
= { .min
= 2, .max
= 16 },
230 .m
= { .min
= 96, .max
= 140 },
231 .m1
= { .min
= 18, .max
= 26 },
232 .m2
= { .min
= 6, .max
= 16 },
233 .p
= { .min
= 4, .max
= 128 },
234 .p1
= { .min
= 2, .max
= 33 },
235 .p2
= { .dot_limit
= 165000,
236 .p2_slow
= 4, .p2_fast
= 2 },
239 static const struct intel_limit intel_limits_i8xx_dvo
= {
240 .dot
= { .min
= 25000, .max
= 350000 },
241 .vco
= { .min
= 908000, .max
= 1512000 },
242 .n
= { .min
= 2, .max
= 16 },
243 .m
= { .min
= 96, .max
= 140 },
244 .m1
= { .min
= 18, .max
= 26 },
245 .m2
= { .min
= 6, .max
= 16 },
246 .p
= { .min
= 4, .max
= 128 },
247 .p1
= { .min
= 2, .max
= 33 },
248 .p2
= { .dot_limit
= 165000,
249 .p2_slow
= 4, .p2_fast
= 4 },
252 static const struct intel_limit intel_limits_i8xx_lvds
= {
253 .dot
= { .min
= 25000, .max
= 350000 },
254 .vco
= { .min
= 908000, .max
= 1512000 },
255 .n
= { .min
= 2, .max
= 16 },
256 .m
= { .min
= 96, .max
= 140 },
257 .m1
= { .min
= 18, .max
= 26 },
258 .m2
= { .min
= 6, .max
= 16 },
259 .p
= { .min
= 4, .max
= 128 },
260 .p1
= { .min
= 1, .max
= 6 },
261 .p2
= { .dot_limit
= 165000,
262 .p2_slow
= 14, .p2_fast
= 7 },
265 static const struct intel_limit intel_limits_i9xx_sdvo
= {
266 .dot
= { .min
= 20000, .max
= 400000 },
267 .vco
= { .min
= 1400000, .max
= 2800000 },
268 .n
= { .min
= 1, .max
= 6 },
269 .m
= { .min
= 70, .max
= 120 },
270 .m1
= { .min
= 8, .max
= 18 },
271 .m2
= { .min
= 3, .max
= 7 },
272 .p
= { .min
= 5, .max
= 80 },
273 .p1
= { .min
= 1, .max
= 8 },
274 .p2
= { .dot_limit
= 200000,
275 .p2_slow
= 10, .p2_fast
= 5 },
278 static const struct intel_limit intel_limits_i9xx_lvds
= {
279 .dot
= { .min
= 20000, .max
= 400000 },
280 .vco
= { .min
= 1400000, .max
= 2800000 },
281 .n
= { .min
= 1, .max
= 6 },
282 .m
= { .min
= 70, .max
= 120 },
283 .m1
= { .min
= 8, .max
= 18 },
284 .m2
= { .min
= 3, .max
= 7 },
285 .p
= { .min
= 7, .max
= 98 },
286 .p1
= { .min
= 1, .max
= 8 },
287 .p2
= { .dot_limit
= 112000,
288 .p2_slow
= 14, .p2_fast
= 7 },
292 static const struct intel_limit intel_limits_g4x_sdvo
= {
293 .dot
= { .min
= 25000, .max
= 270000 },
294 .vco
= { .min
= 1750000, .max
= 3500000},
295 .n
= { .min
= 1, .max
= 4 },
296 .m
= { .min
= 104, .max
= 138 },
297 .m1
= { .min
= 17, .max
= 23 },
298 .m2
= { .min
= 5, .max
= 11 },
299 .p
= { .min
= 10, .max
= 30 },
300 .p1
= { .min
= 1, .max
= 3},
301 .p2
= { .dot_limit
= 270000,
307 static const struct intel_limit intel_limits_g4x_hdmi
= {
308 .dot
= { .min
= 22000, .max
= 400000 },
309 .vco
= { .min
= 1750000, .max
= 3500000},
310 .n
= { .min
= 1, .max
= 4 },
311 .m
= { .min
= 104, .max
= 138 },
312 .m1
= { .min
= 16, .max
= 23 },
313 .m2
= { .min
= 5, .max
= 11 },
314 .p
= { .min
= 5, .max
= 80 },
315 .p1
= { .min
= 1, .max
= 8},
316 .p2
= { .dot_limit
= 165000,
317 .p2_slow
= 10, .p2_fast
= 5 },
320 static const struct intel_limit intel_limits_g4x_single_channel_lvds
= {
321 .dot
= { .min
= 20000, .max
= 115000 },
322 .vco
= { .min
= 1750000, .max
= 3500000 },
323 .n
= { .min
= 1, .max
= 3 },
324 .m
= { .min
= 104, .max
= 138 },
325 .m1
= { .min
= 17, .max
= 23 },
326 .m2
= { .min
= 5, .max
= 11 },
327 .p
= { .min
= 28, .max
= 112 },
328 .p1
= { .min
= 2, .max
= 8 },
329 .p2
= { .dot_limit
= 0,
330 .p2_slow
= 14, .p2_fast
= 14
334 static const struct intel_limit intel_limits_g4x_dual_channel_lvds
= {
335 .dot
= { .min
= 80000, .max
= 224000 },
336 .vco
= { .min
= 1750000, .max
= 3500000 },
337 .n
= { .min
= 1, .max
= 3 },
338 .m
= { .min
= 104, .max
= 138 },
339 .m1
= { .min
= 17, .max
= 23 },
340 .m2
= { .min
= 5, .max
= 11 },
341 .p
= { .min
= 14, .max
= 42 },
342 .p1
= { .min
= 2, .max
= 6 },
343 .p2
= { .dot_limit
= 0,
344 .p2_slow
= 7, .p2_fast
= 7
348 static const struct intel_limit intel_limits_pineview_sdvo
= {
349 .dot
= { .min
= 20000, .max
= 400000},
350 .vco
= { .min
= 1700000, .max
= 3500000 },
351 /* Pineview's Ncounter is a ring counter */
352 .n
= { .min
= 3, .max
= 6 },
353 .m
= { .min
= 2, .max
= 256 },
354 /* Pineview only has one combined m divider, which we treat as m2. */
355 .m1
= { .min
= 0, .max
= 0 },
356 .m2
= { .min
= 0, .max
= 254 },
357 .p
= { .min
= 5, .max
= 80 },
358 .p1
= { .min
= 1, .max
= 8 },
359 .p2
= { .dot_limit
= 200000,
360 .p2_slow
= 10, .p2_fast
= 5 },
363 static const struct intel_limit intel_limits_pineview_lvds
= {
364 .dot
= { .min
= 20000, .max
= 400000 },
365 .vco
= { .min
= 1700000, .max
= 3500000 },
366 .n
= { .min
= 3, .max
= 6 },
367 .m
= { .min
= 2, .max
= 256 },
368 .m1
= { .min
= 0, .max
= 0 },
369 .m2
= { .min
= 0, .max
= 254 },
370 .p
= { .min
= 7, .max
= 112 },
371 .p1
= { .min
= 1, .max
= 8 },
372 .p2
= { .dot_limit
= 112000,
373 .p2_slow
= 14, .p2_fast
= 14 },
376 /* Ironlake / Sandybridge
378 * We calculate clock using (register_value + 2) for N/M1/M2, so here
379 * the range value for them is (actual_value - 2).
381 static const struct intel_limit intel_limits_ironlake_dac
= {
382 .dot
= { .min
= 25000, .max
= 350000 },
383 .vco
= { .min
= 1760000, .max
= 3510000 },
384 .n
= { .min
= 1, .max
= 5 },
385 .m
= { .min
= 79, .max
= 127 },
386 .m1
= { .min
= 12, .max
= 22 },
387 .m2
= { .min
= 5, .max
= 9 },
388 .p
= { .min
= 5, .max
= 80 },
389 .p1
= { .min
= 1, .max
= 8 },
390 .p2
= { .dot_limit
= 225000,
391 .p2_slow
= 10, .p2_fast
= 5 },
394 static const struct intel_limit intel_limits_ironlake_single_lvds
= {
395 .dot
= { .min
= 25000, .max
= 350000 },
396 .vco
= { .min
= 1760000, .max
= 3510000 },
397 .n
= { .min
= 1, .max
= 3 },
398 .m
= { .min
= 79, .max
= 118 },
399 .m1
= { .min
= 12, .max
= 22 },
400 .m2
= { .min
= 5, .max
= 9 },
401 .p
= { .min
= 28, .max
= 112 },
402 .p1
= { .min
= 2, .max
= 8 },
403 .p2
= { .dot_limit
= 225000,
404 .p2_slow
= 14, .p2_fast
= 14 },
407 static const struct intel_limit intel_limits_ironlake_dual_lvds
= {
408 .dot
= { .min
= 25000, .max
= 350000 },
409 .vco
= { .min
= 1760000, .max
= 3510000 },
410 .n
= { .min
= 1, .max
= 3 },
411 .m
= { .min
= 79, .max
= 127 },
412 .m1
= { .min
= 12, .max
= 22 },
413 .m2
= { .min
= 5, .max
= 9 },
414 .p
= { .min
= 14, .max
= 56 },
415 .p1
= { .min
= 2, .max
= 8 },
416 .p2
= { .dot_limit
= 225000,
417 .p2_slow
= 7, .p2_fast
= 7 },
420 /* LVDS 100mhz refclk limits. */
421 static const struct intel_limit intel_limits_ironlake_single_lvds_100m
= {
422 .dot
= { .min
= 25000, .max
= 350000 },
423 .vco
= { .min
= 1760000, .max
= 3510000 },
424 .n
= { .min
= 1, .max
= 2 },
425 .m
= { .min
= 79, .max
= 126 },
426 .m1
= { .min
= 12, .max
= 22 },
427 .m2
= { .min
= 5, .max
= 9 },
428 .p
= { .min
= 28, .max
= 112 },
429 .p1
= { .min
= 2, .max
= 8 },
430 .p2
= { .dot_limit
= 225000,
431 .p2_slow
= 14, .p2_fast
= 14 },
434 static const struct intel_limit intel_limits_ironlake_dual_lvds_100m
= {
435 .dot
= { .min
= 25000, .max
= 350000 },
436 .vco
= { .min
= 1760000, .max
= 3510000 },
437 .n
= { .min
= 1, .max
= 3 },
438 .m
= { .min
= 79, .max
= 126 },
439 .m1
= { .min
= 12, .max
= 22 },
440 .m2
= { .min
= 5, .max
= 9 },
441 .p
= { .min
= 14, .max
= 42 },
442 .p1
= { .min
= 2, .max
= 6 },
443 .p2
= { .dot_limit
= 225000,
444 .p2_slow
= 7, .p2_fast
= 7 },
447 static const struct intel_limit intel_limits_vlv
= {
449 * These are the data rate limits (measured in fast clocks)
450 * since those are the strictest limits we have. The fast
451 * clock and actual rate limits are more relaxed, so checking
452 * them would make no difference.
454 .dot
= { .min
= 25000 * 5, .max
= 270000 * 5 },
455 .vco
= { .min
= 4000000, .max
= 6000000 },
456 .n
= { .min
= 1, .max
= 7 },
457 .m1
= { .min
= 2, .max
= 3 },
458 .m2
= { .min
= 11, .max
= 156 },
459 .p1
= { .min
= 2, .max
= 3 },
460 .p2
= { .p2_slow
= 2, .p2_fast
= 20 }, /* slow=min, fast=max */
463 static const struct intel_limit intel_limits_chv
= {
465 * These are the data rate limits (measured in fast clocks)
466 * since those are the strictest limits we have. The fast
467 * clock and actual rate limits are more relaxed, so checking
468 * them would make no difference.
470 .dot
= { .min
= 25000 * 5, .max
= 540000 * 5},
471 .vco
= { .min
= 4800000, .max
= 6480000 },
472 .n
= { .min
= 1, .max
= 1 },
473 .m1
= { .min
= 2, .max
= 2 },
474 .m2
= { .min
= 24 << 22, .max
= 175 << 22 },
475 .p1
= { .min
= 2, .max
= 4 },
476 .p2
= { .p2_slow
= 1, .p2_fast
= 14 },
479 static const struct intel_limit intel_limits_bxt
= {
480 /* FIXME: find real dot limits */
481 .dot
= { .min
= 0, .max
= INT_MAX
},
482 .vco
= { .min
= 4800000, .max
= 6700000 },
483 .n
= { .min
= 1, .max
= 1 },
484 .m1
= { .min
= 2, .max
= 2 },
485 /* FIXME: find real m2 limits */
486 .m2
= { .min
= 2 << 22, .max
= 255 << 22 },
487 .p1
= { .min
= 2, .max
= 4 },
488 .p2
= { .p2_slow
= 1, .p2_fast
= 20 },
492 needs_modeset(const struct drm_crtc_state
*state
)
494 return drm_atomic_crtc_needs_modeset(state
);
498 * Platform specific helpers to calculate the port PLL loopback- (clock.m),
499 * and post-divider (clock.p) values, pre- (clock.vco) and post-divided fast
500 * (clock.dot) clock rates. This fast dot clock is fed to the port's IO logic.
501 * The helpers' return value is the rate of the clock that is fed to the
502 * display engine's pipe which can be the above fast dot clock rate or a
503 * divided-down version of it.
505 /* m1 is reserved as 0 in Pineview, n is a ring counter */
506 static int pnv_calc_dpll_params(int refclk
, struct dpll
*clock
)
508 clock
->m
= clock
->m2
+ 2;
509 clock
->p
= clock
->p1
* clock
->p2
;
510 if (WARN_ON(clock
->n
== 0 || clock
->p
== 0))
512 clock
->vco
= DIV_ROUND_CLOSEST(refclk
* clock
->m
, clock
->n
);
513 clock
->dot
= DIV_ROUND_CLOSEST(clock
->vco
, clock
->p
);
518 static uint32_t i9xx_dpll_compute_m(struct dpll
*dpll
)
520 return 5 * (dpll
->m1
+ 2) + (dpll
->m2
+ 2);
523 static int i9xx_calc_dpll_params(int refclk
, struct dpll
*clock
)
525 clock
->m
= i9xx_dpll_compute_m(clock
);
526 clock
->p
= clock
->p1
* clock
->p2
;
527 if (WARN_ON(clock
->n
+ 2 == 0 || clock
->p
== 0))
529 clock
->vco
= DIV_ROUND_CLOSEST(refclk
* clock
->m
, clock
->n
+ 2);
530 clock
->dot
= DIV_ROUND_CLOSEST(clock
->vco
, clock
->p
);
535 static int vlv_calc_dpll_params(int refclk
, struct dpll
*clock
)
537 clock
->m
= clock
->m1
* clock
->m2
;
538 clock
->p
= clock
->p1
* clock
->p2
;
539 if (WARN_ON(clock
->n
== 0 || clock
->p
== 0))
541 clock
->vco
= DIV_ROUND_CLOSEST(refclk
* clock
->m
, clock
->n
);
542 clock
->dot
= DIV_ROUND_CLOSEST(clock
->vco
, clock
->p
);
544 return clock
->dot
/ 5;
547 int chv_calc_dpll_params(int refclk
, struct dpll
*clock
)
549 clock
->m
= clock
->m1
* clock
->m2
;
550 clock
->p
= clock
->p1
* clock
->p2
;
551 if (WARN_ON(clock
->n
== 0 || clock
->p
== 0))
553 clock
->vco
= DIV_ROUND_CLOSEST_ULL((uint64_t)refclk
* clock
->m
,
555 clock
->dot
= DIV_ROUND_CLOSEST(clock
->vco
, clock
->p
);
557 return clock
->dot
/ 5;
560 #define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
562 * Returns whether the given set of divisors are valid for a given refclk with
563 * the given connectors.
566 static bool intel_PLL_is_valid(struct drm_i915_private
*dev_priv
,
567 const struct intel_limit
*limit
,
568 const struct dpll
*clock
)
570 if (clock
->n
< limit
->n
.min
|| limit
->n
.max
< clock
->n
)
571 INTELPllInvalid("n out of range\n");
572 if (clock
->p1
< limit
->p1
.min
|| limit
->p1
.max
< clock
->p1
)
573 INTELPllInvalid("p1 out of range\n");
574 if (clock
->m2
< limit
->m2
.min
|| limit
->m2
.max
< clock
->m2
)
575 INTELPllInvalid("m2 out of range\n");
576 if (clock
->m1
< limit
->m1
.min
|| limit
->m1
.max
< clock
->m1
)
577 INTELPllInvalid("m1 out of range\n");
579 if (!IS_PINEVIEW(dev_priv
) && !IS_VALLEYVIEW(dev_priv
) &&
580 !IS_CHERRYVIEW(dev_priv
) && !IS_GEN9_LP(dev_priv
))
581 if (clock
->m1
<= clock
->m2
)
582 INTELPllInvalid("m1 <= m2\n");
584 if (!IS_VALLEYVIEW(dev_priv
) && !IS_CHERRYVIEW(dev_priv
) &&
585 !IS_GEN9_LP(dev_priv
)) {
586 if (clock
->p
< limit
->p
.min
|| limit
->p
.max
< clock
->p
)
587 INTELPllInvalid("p out of range\n");
588 if (clock
->m
< limit
->m
.min
|| limit
->m
.max
< clock
->m
)
589 INTELPllInvalid("m out of range\n");
592 if (clock
->vco
< limit
->vco
.min
|| limit
->vco
.max
< clock
->vco
)
593 INTELPllInvalid("vco out of range\n");
594 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
595 * connector, etc., rather than just a single range.
597 if (clock
->dot
< limit
->dot
.min
|| limit
->dot
.max
< clock
->dot
)
598 INTELPllInvalid("dot out of range\n");
604 i9xx_select_p2_div(const struct intel_limit
*limit
,
605 const struct intel_crtc_state
*crtc_state
,
608 struct drm_device
*dev
= crtc_state
->base
.crtc
->dev
;
610 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
)) {
612 * For LVDS just rely on its current settings for dual-channel.
613 * We haven't figured out how to reliably set up different
614 * single/dual channel state, if we even can.
616 if (intel_is_dual_link_lvds(dev
))
617 return limit
->p2
.p2_fast
;
619 return limit
->p2
.p2_slow
;
621 if (target
< limit
->p2
.dot_limit
)
622 return limit
->p2
.p2_slow
;
624 return limit
->p2
.p2_fast
;
629 * Returns a set of divisors for the desired target clock with the given
630 * refclk, or FALSE. The returned values represent the clock equation:
631 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
633 * Target and reference clocks are specified in kHz.
635 * If match_clock is provided, then best_clock P divider must match the P
636 * divider from @match_clock used for LVDS downclocking.
639 i9xx_find_best_dpll(const struct intel_limit
*limit
,
640 struct intel_crtc_state
*crtc_state
,
641 int target
, int refclk
, struct dpll
*match_clock
,
642 struct dpll
*best_clock
)
644 struct drm_device
*dev
= crtc_state
->base
.crtc
->dev
;
648 memset(best_clock
, 0, sizeof(*best_clock
));
650 clock
.p2
= i9xx_select_p2_div(limit
, crtc_state
, target
);
652 for (clock
.m1
= limit
->m1
.min
; clock
.m1
<= limit
->m1
.max
;
654 for (clock
.m2
= limit
->m2
.min
;
655 clock
.m2
<= limit
->m2
.max
; clock
.m2
++) {
656 if (clock
.m2
>= clock
.m1
)
658 for (clock
.n
= limit
->n
.min
;
659 clock
.n
<= limit
->n
.max
; clock
.n
++) {
660 for (clock
.p1
= limit
->p1
.min
;
661 clock
.p1
<= limit
->p1
.max
; clock
.p1
++) {
664 i9xx_calc_dpll_params(refclk
, &clock
);
665 if (!intel_PLL_is_valid(to_i915(dev
),
670 clock
.p
!= match_clock
->p
)
673 this_err
= abs(clock
.dot
- target
);
674 if (this_err
< err
) {
683 return (err
!= target
);
687 * Returns a set of divisors for the desired target clock with the given
688 * refclk, or FALSE. The returned values represent the clock equation:
689 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
691 * Target and reference clocks are specified in kHz.
693 * If match_clock is provided, then best_clock P divider must match the P
694 * divider from @match_clock used for LVDS downclocking.
697 pnv_find_best_dpll(const struct intel_limit
*limit
,
698 struct intel_crtc_state
*crtc_state
,
699 int target
, int refclk
, struct dpll
*match_clock
,
700 struct dpll
*best_clock
)
702 struct drm_device
*dev
= crtc_state
->base
.crtc
->dev
;
706 memset(best_clock
, 0, sizeof(*best_clock
));
708 clock
.p2
= i9xx_select_p2_div(limit
, crtc_state
, target
);
710 for (clock
.m1
= limit
->m1
.min
; clock
.m1
<= limit
->m1
.max
;
712 for (clock
.m2
= limit
->m2
.min
;
713 clock
.m2
<= limit
->m2
.max
; clock
.m2
++) {
714 for (clock
.n
= limit
->n
.min
;
715 clock
.n
<= limit
->n
.max
; clock
.n
++) {
716 for (clock
.p1
= limit
->p1
.min
;
717 clock
.p1
<= limit
->p1
.max
; clock
.p1
++) {
720 pnv_calc_dpll_params(refclk
, &clock
);
721 if (!intel_PLL_is_valid(to_i915(dev
),
726 clock
.p
!= match_clock
->p
)
729 this_err
= abs(clock
.dot
- target
);
730 if (this_err
< err
) {
739 return (err
!= target
);
743 * Returns a set of divisors for the desired target clock with the given
744 * refclk, or FALSE. The returned values represent the clock equation:
745 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
747 * Target and reference clocks are specified in kHz.
749 * If match_clock is provided, then best_clock P divider must match the P
750 * divider from @match_clock used for LVDS downclocking.
753 g4x_find_best_dpll(const struct intel_limit
*limit
,
754 struct intel_crtc_state
*crtc_state
,
755 int target
, int refclk
, struct dpll
*match_clock
,
756 struct dpll
*best_clock
)
758 struct drm_device
*dev
= crtc_state
->base
.crtc
->dev
;
762 /* approximately equals target * 0.00585 */
763 int err_most
= (target
>> 8) + (target
>> 9);
765 memset(best_clock
, 0, sizeof(*best_clock
));
767 clock
.p2
= i9xx_select_p2_div(limit
, crtc_state
, target
);
769 max_n
= limit
->n
.max
;
770 /* based on hardware requirement, prefer smaller n to precision */
771 for (clock
.n
= limit
->n
.min
; clock
.n
<= max_n
; clock
.n
++) {
772 /* based on hardware requirement, prefere larger m1,m2 */
773 for (clock
.m1
= limit
->m1
.max
;
774 clock
.m1
>= limit
->m1
.min
; clock
.m1
--) {
775 for (clock
.m2
= limit
->m2
.max
;
776 clock
.m2
>= limit
->m2
.min
; clock
.m2
--) {
777 for (clock
.p1
= limit
->p1
.max
;
778 clock
.p1
>= limit
->p1
.min
; clock
.p1
--) {
781 i9xx_calc_dpll_params(refclk
, &clock
);
782 if (!intel_PLL_is_valid(to_i915(dev
),
787 this_err
= abs(clock
.dot
- target
);
788 if (this_err
< err_most
) {
802 * Check if the calculated PLL configuration is more optimal compared to the
803 * best configuration and error found so far. Return the calculated error.
805 static bool vlv_PLL_is_optimal(struct drm_device
*dev
, int target_freq
,
806 const struct dpll
*calculated_clock
,
807 const struct dpll
*best_clock
,
808 unsigned int best_error_ppm
,
809 unsigned int *error_ppm
)
812 * For CHV ignore the error and consider only the P value.
813 * Prefer a bigger P value based on HW requirements.
815 if (IS_CHERRYVIEW(to_i915(dev
))) {
818 return calculated_clock
->p
> best_clock
->p
;
821 if (WARN_ON_ONCE(!target_freq
))
824 *error_ppm
= div_u64(1000000ULL *
825 abs(target_freq
- calculated_clock
->dot
),
828 * Prefer a better P value over a better (smaller) error if the error
829 * is small. Ensure this preference for future configurations too by
830 * setting the error to 0.
832 if (*error_ppm
< 100 && calculated_clock
->p
> best_clock
->p
) {
838 return *error_ppm
+ 10 < best_error_ppm
;
842 * Returns a set of divisors for the desired target clock with the given
843 * refclk, or FALSE. The returned values represent the clock equation:
844 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
847 vlv_find_best_dpll(const struct intel_limit
*limit
,
848 struct intel_crtc_state
*crtc_state
,
849 int target
, int refclk
, struct dpll
*match_clock
,
850 struct dpll
*best_clock
)
852 struct intel_crtc
*crtc
= to_intel_crtc(crtc_state
->base
.crtc
);
853 struct drm_device
*dev
= crtc
->base
.dev
;
855 unsigned int bestppm
= 1000000;
856 /* min update 19.2 MHz */
857 int max_n
= min(limit
->n
.max
, refclk
/ 19200);
860 target
*= 5; /* fast clock */
862 memset(best_clock
, 0, sizeof(*best_clock
));
864 /* based on hardware requirement, prefer smaller n to precision */
865 for (clock
.n
= limit
->n
.min
; clock
.n
<= max_n
; clock
.n
++) {
866 for (clock
.p1
= limit
->p1
.max
; clock
.p1
>= limit
->p1
.min
; clock
.p1
--) {
867 for (clock
.p2
= limit
->p2
.p2_fast
; clock
.p2
>= limit
->p2
.p2_slow
;
868 clock
.p2
-= clock
.p2
> 10 ? 2 : 1) {
869 clock
.p
= clock
.p1
* clock
.p2
;
870 /* based on hardware requirement, prefer bigger m1,m2 values */
871 for (clock
.m1
= limit
->m1
.min
; clock
.m1
<= limit
->m1
.max
; clock
.m1
++) {
874 clock
.m2
= DIV_ROUND_CLOSEST(target
* clock
.p
* clock
.n
,
877 vlv_calc_dpll_params(refclk
, &clock
);
879 if (!intel_PLL_is_valid(to_i915(dev
),
884 if (!vlv_PLL_is_optimal(dev
, target
,
902 * Returns a set of divisors for the desired target clock with the given
903 * refclk, or FALSE. The returned values represent the clock equation:
904 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
907 chv_find_best_dpll(const struct intel_limit
*limit
,
908 struct intel_crtc_state
*crtc_state
,
909 int target
, int refclk
, struct dpll
*match_clock
,
910 struct dpll
*best_clock
)
912 struct intel_crtc
*crtc
= to_intel_crtc(crtc_state
->base
.crtc
);
913 struct drm_device
*dev
= crtc
->base
.dev
;
914 unsigned int best_error_ppm
;
919 memset(best_clock
, 0, sizeof(*best_clock
));
920 best_error_ppm
= 1000000;
923 * Based on hardware doc, the n always set to 1, and m1 always
924 * set to 2. If requires to support 200Mhz refclk, we need to
925 * revisit this because n may not 1 anymore.
927 clock
.n
= 1, clock
.m1
= 2;
928 target
*= 5; /* fast clock */
930 for (clock
.p1
= limit
->p1
.max
; clock
.p1
>= limit
->p1
.min
; clock
.p1
--) {
931 for (clock
.p2
= limit
->p2
.p2_fast
;
932 clock
.p2
>= limit
->p2
.p2_slow
;
933 clock
.p2
-= clock
.p2
> 10 ? 2 : 1) {
934 unsigned int error_ppm
;
936 clock
.p
= clock
.p1
* clock
.p2
;
938 m2
= DIV_ROUND_CLOSEST_ULL(((uint64_t)target
* clock
.p
*
939 clock
.n
) << 22, refclk
* clock
.m1
);
941 if (m2
> INT_MAX
/clock
.m1
)
946 chv_calc_dpll_params(refclk
, &clock
);
948 if (!intel_PLL_is_valid(to_i915(dev
), limit
, &clock
))
951 if (!vlv_PLL_is_optimal(dev
, target
, &clock
, best_clock
,
952 best_error_ppm
, &error_ppm
))
956 best_error_ppm
= error_ppm
;
964 bool bxt_find_best_dpll(struct intel_crtc_state
*crtc_state
, int target_clock
,
965 struct dpll
*best_clock
)
968 const struct intel_limit
*limit
= &intel_limits_bxt
;
970 return chv_find_best_dpll(limit
, crtc_state
,
971 target_clock
, refclk
, NULL
, best_clock
);
974 bool intel_crtc_active(struct intel_crtc
*crtc
)
976 /* Be paranoid as we can arrive here with only partial
977 * state retrieved from the hardware during setup.
979 * We can ditch the adjusted_mode.crtc_clock check as soon
980 * as Haswell has gained clock readout/fastboot support.
982 * We can ditch the crtc->primary->fb check as soon as we can
983 * properly reconstruct framebuffers.
985 * FIXME: The intel_crtc->active here should be switched to
986 * crtc->state->active once we have proper CRTC states wired up
989 return crtc
->active
&& crtc
->base
.primary
->state
->fb
&&
990 crtc
->config
->base
.adjusted_mode
.crtc_clock
;
993 enum transcoder
intel_pipe_to_cpu_transcoder(struct drm_i915_private
*dev_priv
,
996 struct intel_crtc
*crtc
= intel_get_crtc_for_pipe(dev_priv
, pipe
);
998 return crtc
->config
->cpu_transcoder
;
1001 static bool pipe_scanline_is_moving(struct drm_i915_private
*dev_priv
,
1004 i915_reg_t reg
= PIPEDSL(pipe
);
1008 if (IS_GEN2(dev_priv
))
1009 line_mask
= DSL_LINEMASK_GEN2
;
1011 line_mask
= DSL_LINEMASK_GEN3
;
1013 line1
= I915_READ(reg
) & line_mask
;
1015 line2
= I915_READ(reg
) & line_mask
;
1017 return line1
!= line2
;
1020 static void wait_for_pipe_scanline_moving(struct intel_crtc
*crtc
, bool state
)
1022 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
1023 enum pipe pipe
= crtc
->pipe
;
1025 /* Wait for the display line to settle/start moving */
1026 if (wait_for(pipe_scanline_is_moving(dev_priv
, pipe
) == state
, 100))
1027 DRM_ERROR("pipe %c scanline %s wait timed out\n",
1028 pipe_name(pipe
), onoff(state
));
1031 static void intel_wait_for_pipe_scanline_stopped(struct intel_crtc
*crtc
)
1033 wait_for_pipe_scanline_moving(crtc
, false);
1036 static void intel_wait_for_pipe_scanline_moving(struct intel_crtc
*crtc
)
1038 wait_for_pipe_scanline_moving(crtc
, true);
1042 intel_wait_for_pipe_off(const struct intel_crtc_state
*old_crtc_state
)
1044 struct intel_crtc
*crtc
= to_intel_crtc(old_crtc_state
->base
.crtc
);
1045 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
1047 if (INTEL_GEN(dev_priv
) >= 4) {
1048 enum transcoder cpu_transcoder
= old_crtc_state
->cpu_transcoder
;
1049 i915_reg_t reg
= PIPECONF(cpu_transcoder
);
1051 /* Wait for the Pipe State to go off */
1052 if (intel_wait_for_register(dev_priv
,
1053 reg
, I965_PIPECONF_ACTIVE
, 0,
1055 WARN(1, "pipe_off wait timed out\n");
1057 intel_wait_for_pipe_scanline_stopped(crtc
);
1061 /* Only for pre-ILK configs */
1062 void assert_pll(struct drm_i915_private
*dev_priv
,
1063 enum pipe pipe
, bool state
)
1068 val
= I915_READ(DPLL(pipe
));
1069 cur_state
= !!(val
& DPLL_VCO_ENABLE
);
1070 I915_STATE_WARN(cur_state
!= state
,
1071 "PLL state assertion failure (expected %s, current %s)\n",
1072 onoff(state
), onoff(cur_state
));
1075 /* XXX: the dsi pll is shared between MIPI DSI ports */
1076 void assert_dsi_pll(struct drm_i915_private
*dev_priv
, bool state
)
1081 mutex_lock(&dev_priv
->sb_lock
);
1082 val
= vlv_cck_read(dev_priv
, CCK_REG_DSI_PLL_CONTROL
);
1083 mutex_unlock(&dev_priv
->sb_lock
);
1085 cur_state
= val
& DSI_PLL_VCO_EN
;
1086 I915_STATE_WARN(cur_state
!= state
,
1087 "DSI PLL state assertion failure (expected %s, current %s)\n",
1088 onoff(state
), onoff(cur_state
));
1091 static void assert_fdi_tx(struct drm_i915_private
*dev_priv
,
1092 enum pipe pipe
, bool state
)
1095 enum transcoder cpu_transcoder
= intel_pipe_to_cpu_transcoder(dev_priv
,
1098 if (HAS_DDI(dev_priv
)) {
1099 /* DDI does not have a specific FDI_TX register */
1100 u32 val
= I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder
));
1101 cur_state
= !!(val
& TRANS_DDI_FUNC_ENABLE
);
1103 u32 val
= I915_READ(FDI_TX_CTL(pipe
));
1104 cur_state
= !!(val
& FDI_TX_ENABLE
);
1106 I915_STATE_WARN(cur_state
!= state
,
1107 "FDI TX state assertion failure (expected %s, current %s)\n",
1108 onoff(state
), onoff(cur_state
));
1110 #define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1111 #define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1113 static void assert_fdi_rx(struct drm_i915_private
*dev_priv
,
1114 enum pipe pipe
, bool state
)
1119 val
= I915_READ(FDI_RX_CTL(pipe
));
1120 cur_state
= !!(val
& FDI_RX_ENABLE
);
1121 I915_STATE_WARN(cur_state
!= state
,
1122 "FDI RX state assertion failure (expected %s, current %s)\n",
1123 onoff(state
), onoff(cur_state
));
1125 #define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1126 #define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1128 static void assert_fdi_tx_pll_enabled(struct drm_i915_private
*dev_priv
,
1133 /* ILK FDI PLL is always enabled */
1134 if (IS_GEN5(dev_priv
))
1137 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
1138 if (HAS_DDI(dev_priv
))
1141 val
= I915_READ(FDI_TX_CTL(pipe
));
1142 I915_STATE_WARN(!(val
& FDI_TX_PLL_ENABLE
), "FDI TX PLL assertion failure, should be active but is disabled\n");
1145 void assert_fdi_rx_pll(struct drm_i915_private
*dev_priv
,
1146 enum pipe pipe
, bool state
)
1151 val
= I915_READ(FDI_RX_CTL(pipe
));
1152 cur_state
= !!(val
& FDI_RX_PLL_ENABLE
);
1153 I915_STATE_WARN(cur_state
!= state
,
1154 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1155 onoff(state
), onoff(cur_state
));
1158 void assert_panel_unlocked(struct drm_i915_private
*dev_priv
, enum pipe pipe
)
1162 enum pipe panel_pipe
= PIPE_A
;
1165 if (WARN_ON(HAS_DDI(dev_priv
)))
1168 if (HAS_PCH_SPLIT(dev_priv
)) {
1171 pp_reg
= PP_CONTROL(0);
1172 port_sel
= I915_READ(PP_ON_DELAYS(0)) & PANEL_PORT_SELECT_MASK
;
1174 if (port_sel
== PANEL_PORT_SELECT_LVDS
&&
1175 I915_READ(PCH_LVDS
) & LVDS_PIPEB_SELECT
)
1176 panel_pipe
= PIPE_B
;
1177 /* XXX: else fix for eDP */
1178 } else if (IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
)) {
1179 /* presumably write lock depends on pipe, not port select */
1180 pp_reg
= PP_CONTROL(pipe
);
1183 pp_reg
= PP_CONTROL(0);
1184 if (I915_READ(LVDS
) & LVDS_PIPEB_SELECT
)
1185 panel_pipe
= PIPE_B
;
1188 val
= I915_READ(pp_reg
);
1189 if (!(val
& PANEL_POWER_ON
) ||
1190 ((val
& PANEL_UNLOCK_MASK
) == PANEL_UNLOCK_REGS
))
1193 I915_STATE_WARN(panel_pipe
== pipe
&& locked
,
1194 "panel assertion failure, pipe %c regs locked\n",
1198 void assert_pipe(struct drm_i915_private
*dev_priv
,
1199 enum pipe pipe
, bool state
)
1202 enum transcoder cpu_transcoder
= intel_pipe_to_cpu_transcoder(dev_priv
,
1204 enum intel_display_power_domain power_domain
;
1206 /* we keep both pipes enabled on 830 */
1207 if (IS_I830(dev_priv
))
1210 power_domain
= POWER_DOMAIN_TRANSCODER(cpu_transcoder
);
1211 if (intel_display_power_get_if_enabled(dev_priv
, power_domain
)) {
1212 u32 val
= I915_READ(PIPECONF(cpu_transcoder
));
1213 cur_state
= !!(val
& PIPECONF_ENABLE
);
1215 intel_display_power_put(dev_priv
, power_domain
);
1220 I915_STATE_WARN(cur_state
!= state
,
1221 "pipe %c assertion failure (expected %s, current %s)\n",
1222 pipe_name(pipe
), onoff(state
), onoff(cur_state
));
1225 static void assert_plane(struct intel_plane
*plane
, bool state
)
1227 bool cur_state
= plane
->get_hw_state(plane
);
1229 I915_STATE_WARN(cur_state
!= state
,
1230 "%s assertion failure (expected %s, current %s)\n",
1231 plane
->base
.name
, onoff(state
), onoff(cur_state
));
1234 #define assert_plane_enabled(p) assert_plane(p, true)
1235 #define assert_plane_disabled(p) assert_plane(p, false)
1237 static void assert_planes_disabled(struct intel_crtc
*crtc
)
1239 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
1240 struct intel_plane
*plane
;
1242 for_each_intel_plane_on_crtc(&dev_priv
->drm
, crtc
, plane
)
1243 assert_plane_disabled(plane
);
1246 static void assert_vblank_disabled(struct drm_crtc
*crtc
)
1248 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc
) == 0))
1249 drm_crtc_vblank_put(crtc
);
1252 void assert_pch_transcoder_disabled(struct drm_i915_private
*dev_priv
,
1258 val
= I915_READ(PCH_TRANSCONF(pipe
));
1259 enabled
= !!(val
& TRANS_ENABLE
);
1260 I915_STATE_WARN(enabled
,
1261 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1265 static bool dp_pipe_enabled(struct drm_i915_private
*dev_priv
,
1266 enum pipe pipe
, u32 port_sel
, u32 val
)
1268 if ((val
& DP_PORT_EN
) == 0)
1271 if (HAS_PCH_CPT(dev_priv
)) {
1272 u32 trans_dp_ctl
= I915_READ(TRANS_DP_CTL(pipe
));
1273 if ((trans_dp_ctl
& TRANS_DP_PORT_SEL_MASK
) != port_sel
)
1275 } else if (IS_CHERRYVIEW(dev_priv
)) {
1276 if ((val
& DP_PIPE_MASK_CHV
) != DP_PIPE_SELECT_CHV(pipe
))
1279 if ((val
& DP_PIPE_MASK
) != (pipe
<< 30))
1285 static bool hdmi_pipe_enabled(struct drm_i915_private
*dev_priv
,
1286 enum pipe pipe
, u32 val
)
1288 if ((val
& SDVO_ENABLE
) == 0)
1291 if (HAS_PCH_CPT(dev_priv
)) {
1292 if ((val
& SDVO_PIPE_SEL_MASK_CPT
) != SDVO_PIPE_SEL_CPT(pipe
))
1294 } else if (IS_CHERRYVIEW(dev_priv
)) {
1295 if ((val
& SDVO_PIPE_SEL_MASK_CHV
) != SDVO_PIPE_SEL_CHV(pipe
))
1298 if ((val
& SDVO_PIPE_SEL_MASK
) != SDVO_PIPE_SEL(pipe
))
1304 static bool lvds_pipe_enabled(struct drm_i915_private
*dev_priv
,
1305 enum pipe pipe
, u32 val
)
1307 if ((val
& LVDS_PORT_EN
) == 0)
1310 if (HAS_PCH_CPT(dev_priv
)) {
1311 if ((val
& PORT_TRANS_SEL_MASK
) != PORT_TRANS_SEL_CPT(pipe
))
1314 if ((val
& LVDS_PIPE_MASK
) != LVDS_PIPE(pipe
))
1320 static bool adpa_pipe_enabled(struct drm_i915_private
*dev_priv
,
1321 enum pipe pipe
, u32 val
)
1323 if ((val
& ADPA_DAC_ENABLE
) == 0)
1325 if (HAS_PCH_CPT(dev_priv
)) {
1326 if ((val
& PORT_TRANS_SEL_MASK
) != PORT_TRANS_SEL_CPT(pipe
))
1329 if ((val
& ADPA_PIPE_SELECT_MASK
) != ADPA_PIPE_SELECT(pipe
))
1335 static void assert_pch_dp_disabled(struct drm_i915_private
*dev_priv
,
1336 enum pipe pipe
, i915_reg_t reg
,
1339 u32 val
= I915_READ(reg
);
1340 I915_STATE_WARN(dp_pipe_enabled(dev_priv
, pipe
, port_sel
, val
),
1341 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
1342 i915_mmio_reg_offset(reg
), pipe_name(pipe
));
1344 I915_STATE_WARN(HAS_PCH_IBX(dev_priv
) && (val
& DP_PORT_EN
) == 0
1345 && (val
& DP_PIPEB_SELECT
),
1346 "IBX PCH dp port still using transcoder B\n");
1349 static void assert_pch_hdmi_disabled(struct drm_i915_private
*dev_priv
,
1350 enum pipe pipe
, i915_reg_t reg
)
1352 u32 val
= I915_READ(reg
);
1353 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv
, pipe
, val
),
1354 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
1355 i915_mmio_reg_offset(reg
), pipe_name(pipe
));
1357 I915_STATE_WARN(HAS_PCH_IBX(dev_priv
) && (val
& SDVO_ENABLE
) == 0
1358 && (val
& SDVO_PIPE_B_SELECT
),
1359 "IBX PCH hdmi port still using transcoder B\n");
1362 static void assert_pch_ports_disabled(struct drm_i915_private
*dev_priv
,
1367 assert_pch_dp_disabled(dev_priv
, pipe
, PCH_DP_B
, TRANS_DP_PORT_SEL_B
);
1368 assert_pch_dp_disabled(dev_priv
, pipe
, PCH_DP_C
, TRANS_DP_PORT_SEL_C
);
1369 assert_pch_dp_disabled(dev_priv
, pipe
, PCH_DP_D
, TRANS_DP_PORT_SEL_D
);
1371 val
= I915_READ(PCH_ADPA
);
1372 I915_STATE_WARN(adpa_pipe_enabled(dev_priv
, pipe
, val
),
1373 "PCH VGA enabled on transcoder %c, should be disabled\n",
1376 val
= I915_READ(PCH_LVDS
);
1377 I915_STATE_WARN(lvds_pipe_enabled(dev_priv
, pipe
, val
),
1378 "PCH LVDS enabled on transcoder %c, should be disabled\n",
1381 assert_pch_hdmi_disabled(dev_priv
, pipe
, PCH_HDMIB
);
1382 assert_pch_hdmi_disabled(dev_priv
, pipe
, PCH_HDMIC
);
1383 assert_pch_hdmi_disabled(dev_priv
, pipe
, PCH_HDMID
);
1386 static void _vlv_enable_pll(struct intel_crtc
*crtc
,
1387 const struct intel_crtc_state
*pipe_config
)
1389 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
1390 enum pipe pipe
= crtc
->pipe
;
1392 I915_WRITE(DPLL(pipe
), pipe_config
->dpll_hw_state
.dpll
);
1393 POSTING_READ(DPLL(pipe
));
1396 if (intel_wait_for_register(dev_priv
,
1401 DRM_ERROR("DPLL %d failed to lock\n", pipe
);
1404 static void vlv_enable_pll(struct intel_crtc
*crtc
,
1405 const struct intel_crtc_state
*pipe_config
)
1407 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
1408 enum pipe pipe
= crtc
->pipe
;
1410 assert_pipe_disabled(dev_priv
, pipe
);
1412 /* PLL is protected by panel, make sure we can write it */
1413 assert_panel_unlocked(dev_priv
, pipe
);
1415 if (pipe_config
->dpll_hw_state
.dpll
& DPLL_VCO_ENABLE
)
1416 _vlv_enable_pll(crtc
, pipe_config
);
1418 I915_WRITE(DPLL_MD(pipe
), pipe_config
->dpll_hw_state
.dpll_md
);
1419 POSTING_READ(DPLL_MD(pipe
));
1423 static void _chv_enable_pll(struct intel_crtc
*crtc
,
1424 const struct intel_crtc_state
*pipe_config
)
1426 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
1427 enum pipe pipe
= crtc
->pipe
;
1428 enum dpio_channel port
= vlv_pipe_to_channel(pipe
);
1431 mutex_lock(&dev_priv
->sb_lock
);
1433 /* Enable back the 10bit clock to display controller */
1434 tmp
= vlv_dpio_read(dev_priv
, pipe
, CHV_CMN_DW14(port
));
1435 tmp
|= DPIO_DCLKP_EN
;
1436 vlv_dpio_write(dev_priv
, pipe
, CHV_CMN_DW14(port
), tmp
);
1438 mutex_unlock(&dev_priv
->sb_lock
);
1441 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1446 I915_WRITE(DPLL(pipe
), pipe_config
->dpll_hw_state
.dpll
);
1448 /* Check PLL is locked */
1449 if (intel_wait_for_register(dev_priv
,
1450 DPLL(pipe
), DPLL_LOCK_VLV
, DPLL_LOCK_VLV
,
1452 DRM_ERROR("PLL %d failed to lock\n", pipe
);
1455 static void chv_enable_pll(struct intel_crtc
*crtc
,
1456 const struct intel_crtc_state
*pipe_config
)
1458 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
1459 enum pipe pipe
= crtc
->pipe
;
1461 assert_pipe_disabled(dev_priv
, pipe
);
1463 /* PLL is protected by panel, make sure we can write it */
1464 assert_panel_unlocked(dev_priv
, pipe
);
1466 if (pipe_config
->dpll_hw_state
.dpll
& DPLL_VCO_ENABLE
)
1467 _chv_enable_pll(crtc
, pipe_config
);
1469 if (pipe
!= PIPE_A
) {
1471 * WaPixelRepeatModeFixForC0:chv
1473 * DPLLCMD is AWOL. Use chicken bits to propagate
1474 * the value from DPLLBMD to either pipe B or C.
1476 I915_WRITE(CBR4_VLV
, CBR_DPLLBMD_PIPE(pipe
));
1477 I915_WRITE(DPLL_MD(PIPE_B
), pipe_config
->dpll_hw_state
.dpll_md
);
1478 I915_WRITE(CBR4_VLV
, 0);
1479 dev_priv
->chv_dpll_md
[pipe
] = pipe_config
->dpll_hw_state
.dpll_md
;
1482 * DPLLB VGA mode also seems to cause problems.
1483 * We should always have it disabled.
1485 WARN_ON((I915_READ(DPLL(PIPE_B
)) & DPLL_VGA_MODE_DIS
) == 0);
1487 I915_WRITE(DPLL_MD(pipe
), pipe_config
->dpll_hw_state
.dpll_md
);
1488 POSTING_READ(DPLL_MD(pipe
));
1492 static int intel_num_dvo_pipes(struct drm_i915_private
*dev_priv
)
1494 struct intel_crtc
*crtc
;
1497 for_each_intel_crtc(&dev_priv
->drm
, crtc
) {
1498 count
+= crtc
->base
.state
->active
&&
1499 intel_crtc_has_type(crtc
->config
, INTEL_OUTPUT_DVO
);
1505 static void i9xx_enable_pll(struct intel_crtc
*crtc
,
1506 const struct intel_crtc_state
*crtc_state
)
1508 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
1509 i915_reg_t reg
= DPLL(crtc
->pipe
);
1510 u32 dpll
= crtc_state
->dpll_hw_state
.dpll
;
1513 assert_pipe_disabled(dev_priv
, crtc
->pipe
);
1515 /* PLL is protected by panel, make sure we can write it */
1516 if (IS_MOBILE(dev_priv
) && !IS_I830(dev_priv
))
1517 assert_panel_unlocked(dev_priv
, crtc
->pipe
);
1519 /* Enable DVO 2x clock on both PLLs if necessary */
1520 if (IS_I830(dev_priv
) && intel_num_dvo_pipes(dev_priv
) > 0) {
1522 * It appears to be important that we don't enable this
1523 * for the current pipe before otherwise configuring the
1524 * PLL. No idea how this should be handled if multiple
1525 * DVO outputs are enabled simultaneosly.
1527 dpll
|= DPLL_DVO_2X_MODE
;
1528 I915_WRITE(DPLL(!crtc
->pipe
),
1529 I915_READ(DPLL(!crtc
->pipe
)) | DPLL_DVO_2X_MODE
);
1533 * Apparently we need to have VGA mode enabled prior to changing
1534 * the P1/P2 dividers. Otherwise the DPLL will keep using the old
1535 * dividers, even though the register value does change.
1539 I915_WRITE(reg
, dpll
);
1541 /* Wait for the clocks to stabilize. */
1545 if (INTEL_GEN(dev_priv
) >= 4) {
1546 I915_WRITE(DPLL_MD(crtc
->pipe
),
1547 crtc_state
->dpll_hw_state
.dpll_md
);
1549 /* The pixel multiplier can only be updated once the
1550 * DPLL is enabled and the clocks are stable.
1552 * So write it again.
1554 I915_WRITE(reg
, dpll
);
1557 /* We do this three times for luck */
1558 for (i
= 0; i
< 3; i
++) {
1559 I915_WRITE(reg
, dpll
);
1561 udelay(150); /* wait for warmup */
1565 static void i9xx_disable_pll(struct intel_crtc
*crtc
)
1567 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
1568 enum pipe pipe
= crtc
->pipe
;
1570 /* Disable DVO 2x clock on both PLLs if necessary */
1571 if (IS_I830(dev_priv
) &&
1572 intel_crtc_has_type(crtc
->config
, INTEL_OUTPUT_DVO
) &&
1573 !intel_num_dvo_pipes(dev_priv
)) {
1574 I915_WRITE(DPLL(PIPE_B
),
1575 I915_READ(DPLL(PIPE_B
)) & ~DPLL_DVO_2X_MODE
);
1576 I915_WRITE(DPLL(PIPE_A
),
1577 I915_READ(DPLL(PIPE_A
)) & ~DPLL_DVO_2X_MODE
);
1580 /* Don't disable pipe or pipe PLLs if needed */
1581 if (IS_I830(dev_priv
))
1584 /* Make sure the pipe isn't still relying on us */
1585 assert_pipe_disabled(dev_priv
, pipe
);
1587 I915_WRITE(DPLL(pipe
), DPLL_VGA_MODE_DIS
);
1588 POSTING_READ(DPLL(pipe
));
1591 static void vlv_disable_pll(struct drm_i915_private
*dev_priv
, enum pipe pipe
)
1595 /* Make sure the pipe isn't still relying on us */
1596 assert_pipe_disabled(dev_priv
, pipe
);
1598 val
= DPLL_INTEGRATED_REF_CLK_VLV
|
1599 DPLL_REF_CLK_ENABLE_VLV
| DPLL_VGA_MODE_DIS
;
1601 val
|= DPLL_INTEGRATED_CRI_CLK_VLV
;
1603 I915_WRITE(DPLL(pipe
), val
);
1604 POSTING_READ(DPLL(pipe
));
1607 static void chv_disable_pll(struct drm_i915_private
*dev_priv
, enum pipe pipe
)
1609 enum dpio_channel port
= vlv_pipe_to_channel(pipe
);
1612 /* Make sure the pipe isn't still relying on us */
1613 assert_pipe_disabled(dev_priv
, pipe
);
1615 val
= DPLL_SSC_REF_CLK_CHV
|
1616 DPLL_REF_CLK_ENABLE_VLV
| DPLL_VGA_MODE_DIS
;
1618 val
|= DPLL_INTEGRATED_CRI_CLK_VLV
;
1620 I915_WRITE(DPLL(pipe
), val
);
1621 POSTING_READ(DPLL(pipe
));
1623 mutex_lock(&dev_priv
->sb_lock
);
1625 /* Disable 10bit clock to display controller */
1626 val
= vlv_dpio_read(dev_priv
, pipe
, CHV_CMN_DW14(port
));
1627 val
&= ~DPIO_DCLKP_EN
;
1628 vlv_dpio_write(dev_priv
, pipe
, CHV_CMN_DW14(port
), val
);
1630 mutex_unlock(&dev_priv
->sb_lock
);
1633 void vlv_wait_port_ready(struct drm_i915_private
*dev_priv
,
1634 struct intel_digital_port
*dport
,
1635 unsigned int expected_mask
)
1638 i915_reg_t dpll_reg
;
1640 switch (dport
->base
.port
) {
1642 port_mask
= DPLL_PORTB_READY_MASK
;
1646 port_mask
= DPLL_PORTC_READY_MASK
;
1648 expected_mask
<<= 4;
1651 port_mask
= DPLL_PORTD_READY_MASK
;
1652 dpll_reg
= DPIO_PHY_STATUS
;
1658 if (intel_wait_for_register(dev_priv
,
1659 dpll_reg
, port_mask
, expected_mask
,
1661 WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n",
1662 port_name(dport
->base
.port
),
1663 I915_READ(dpll_reg
) & port_mask
, expected_mask
);
1666 static void ironlake_enable_pch_transcoder(struct drm_i915_private
*dev_priv
,
1669 struct intel_crtc
*intel_crtc
= intel_get_crtc_for_pipe(dev_priv
,
1672 uint32_t val
, pipeconf_val
;
1674 /* Make sure PCH DPLL is enabled */
1675 assert_shared_dpll_enabled(dev_priv
, intel_crtc
->config
->shared_dpll
);
1677 /* FDI must be feeding us bits for PCH ports */
1678 assert_fdi_tx_enabled(dev_priv
, pipe
);
1679 assert_fdi_rx_enabled(dev_priv
, pipe
);
1681 if (HAS_PCH_CPT(dev_priv
)) {
1682 /* Workaround: Set the timing override bit before enabling the
1683 * pch transcoder. */
1684 reg
= TRANS_CHICKEN2(pipe
);
1685 val
= I915_READ(reg
);
1686 val
|= TRANS_CHICKEN2_TIMING_OVERRIDE
;
1687 I915_WRITE(reg
, val
);
1690 reg
= PCH_TRANSCONF(pipe
);
1691 val
= I915_READ(reg
);
1692 pipeconf_val
= I915_READ(PIPECONF(pipe
));
1694 if (HAS_PCH_IBX(dev_priv
)) {
1696 * Make the BPC in transcoder be consistent with
1697 * that in pipeconf reg. For HDMI we must use 8bpc
1698 * here for both 8bpc and 12bpc.
1700 val
&= ~PIPECONF_BPC_MASK
;
1701 if (intel_crtc_has_type(intel_crtc
->config
, INTEL_OUTPUT_HDMI
))
1702 val
|= PIPECONF_8BPC
;
1704 val
|= pipeconf_val
& PIPECONF_BPC_MASK
;
1707 val
&= ~TRANS_INTERLACE_MASK
;
1708 if ((pipeconf_val
& PIPECONF_INTERLACE_MASK
) == PIPECONF_INTERLACED_ILK
)
1709 if (HAS_PCH_IBX(dev_priv
) &&
1710 intel_crtc_has_type(intel_crtc
->config
, INTEL_OUTPUT_SDVO
))
1711 val
|= TRANS_LEGACY_INTERLACED_ILK
;
1713 val
|= TRANS_INTERLACED
;
1715 val
|= TRANS_PROGRESSIVE
;
1717 I915_WRITE(reg
, val
| TRANS_ENABLE
);
1718 if (intel_wait_for_register(dev_priv
,
1719 reg
, TRANS_STATE_ENABLE
, TRANS_STATE_ENABLE
,
1721 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe
));
1724 static void lpt_enable_pch_transcoder(struct drm_i915_private
*dev_priv
,
1725 enum transcoder cpu_transcoder
)
1727 u32 val
, pipeconf_val
;
1729 /* FDI must be feeding us bits for PCH ports */
1730 assert_fdi_tx_enabled(dev_priv
, (enum pipe
) cpu_transcoder
);
1731 assert_fdi_rx_enabled(dev_priv
, PIPE_A
);
1733 /* Workaround: set timing override bit. */
1734 val
= I915_READ(TRANS_CHICKEN2(PIPE_A
));
1735 val
|= TRANS_CHICKEN2_TIMING_OVERRIDE
;
1736 I915_WRITE(TRANS_CHICKEN2(PIPE_A
), val
);
1739 pipeconf_val
= I915_READ(PIPECONF(cpu_transcoder
));
1741 if ((pipeconf_val
& PIPECONF_INTERLACE_MASK_HSW
) ==
1742 PIPECONF_INTERLACED_ILK
)
1743 val
|= TRANS_INTERLACED
;
1745 val
|= TRANS_PROGRESSIVE
;
1747 I915_WRITE(LPT_TRANSCONF
, val
);
1748 if (intel_wait_for_register(dev_priv
,
1753 DRM_ERROR("Failed to enable PCH transcoder\n");
1756 static void ironlake_disable_pch_transcoder(struct drm_i915_private
*dev_priv
,
1762 /* FDI relies on the transcoder */
1763 assert_fdi_tx_disabled(dev_priv
, pipe
);
1764 assert_fdi_rx_disabled(dev_priv
, pipe
);
1766 /* Ports must be off as well */
1767 assert_pch_ports_disabled(dev_priv
, pipe
);
1769 reg
= PCH_TRANSCONF(pipe
);
1770 val
= I915_READ(reg
);
1771 val
&= ~TRANS_ENABLE
;
1772 I915_WRITE(reg
, val
);
1773 /* wait for PCH transcoder off, transcoder state */
1774 if (intel_wait_for_register(dev_priv
,
1775 reg
, TRANS_STATE_ENABLE
, 0,
1777 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe
));
1779 if (HAS_PCH_CPT(dev_priv
)) {
1780 /* Workaround: Clear the timing override chicken bit again. */
1781 reg
= TRANS_CHICKEN2(pipe
);
1782 val
= I915_READ(reg
);
1783 val
&= ~TRANS_CHICKEN2_TIMING_OVERRIDE
;
1784 I915_WRITE(reg
, val
);
1788 void lpt_disable_pch_transcoder(struct drm_i915_private
*dev_priv
)
1792 val
= I915_READ(LPT_TRANSCONF
);
1793 val
&= ~TRANS_ENABLE
;
1794 I915_WRITE(LPT_TRANSCONF
, val
);
1795 /* wait for PCH transcoder off, transcoder state */
1796 if (intel_wait_for_register(dev_priv
,
1797 LPT_TRANSCONF
, TRANS_STATE_ENABLE
, 0,
1799 DRM_ERROR("Failed to disable PCH transcoder\n");
1801 /* Workaround: clear timing override bit. */
1802 val
= I915_READ(TRANS_CHICKEN2(PIPE_A
));
1803 val
&= ~TRANS_CHICKEN2_TIMING_OVERRIDE
;
1804 I915_WRITE(TRANS_CHICKEN2(PIPE_A
), val
);
1807 enum pipe
intel_crtc_pch_transcoder(struct intel_crtc
*crtc
)
1809 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
1811 if (HAS_PCH_LPT(dev_priv
))
1817 static void intel_enable_pipe(const struct intel_crtc_state
*new_crtc_state
)
1819 struct intel_crtc
*crtc
= to_intel_crtc(new_crtc_state
->base
.crtc
);
1820 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
1821 enum transcoder cpu_transcoder
= new_crtc_state
->cpu_transcoder
;
1822 enum pipe pipe
= crtc
->pipe
;
1826 DRM_DEBUG_KMS("enabling pipe %c\n", pipe_name(pipe
));
1828 assert_planes_disabled(crtc
);
1831 * A pipe without a PLL won't actually be able to drive bits from
1832 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1835 if (HAS_GMCH_DISPLAY(dev_priv
)) {
1836 if (intel_crtc_has_type(new_crtc_state
, INTEL_OUTPUT_DSI
))
1837 assert_dsi_pll_enabled(dev_priv
);
1839 assert_pll_enabled(dev_priv
, pipe
);
1841 if (new_crtc_state
->has_pch_encoder
) {
1842 /* if driving the PCH, we need FDI enabled */
1843 assert_fdi_rx_pll_enabled(dev_priv
,
1844 intel_crtc_pch_transcoder(crtc
));
1845 assert_fdi_tx_pll_enabled(dev_priv
,
1846 (enum pipe
) cpu_transcoder
);
1848 /* FIXME: assert CPU port conditions for SNB+ */
1851 reg
= PIPECONF(cpu_transcoder
);
1852 val
= I915_READ(reg
);
1853 if (val
& PIPECONF_ENABLE
) {
1854 /* we keep both pipes enabled on 830 */
1855 WARN_ON(!IS_I830(dev_priv
));
1859 I915_WRITE(reg
, val
| PIPECONF_ENABLE
);
1863 * Until the pipe starts PIPEDSL reads will return a stale value,
1864 * which causes an apparent vblank timestamp jump when PIPEDSL
1865 * resets to its proper value. That also messes up the frame count
1866 * when it's derived from the timestamps. So let's wait for the
1867 * pipe to start properly before we call drm_crtc_vblank_on()
1869 if (dev_priv
->drm
.max_vblank_count
== 0)
1870 intel_wait_for_pipe_scanline_moving(crtc
);
1873 static void intel_disable_pipe(const struct intel_crtc_state
*old_crtc_state
)
1875 struct intel_crtc
*crtc
= to_intel_crtc(old_crtc_state
->base
.crtc
);
1876 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
1877 enum transcoder cpu_transcoder
= old_crtc_state
->cpu_transcoder
;
1878 enum pipe pipe
= crtc
->pipe
;
1882 DRM_DEBUG_KMS("disabling pipe %c\n", pipe_name(pipe
));
1885 * Make sure planes won't keep trying to pump pixels to us,
1886 * or we might hang the display.
1888 assert_planes_disabled(crtc
);
1890 reg
= PIPECONF(cpu_transcoder
);
1891 val
= I915_READ(reg
);
1892 if ((val
& PIPECONF_ENABLE
) == 0)
1896 * Double wide has implications for planes
1897 * so best keep it disabled when not needed.
1899 if (old_crtc_state
->double_wide
)
1900 val
&= ~PIPECONF_DOUBLE_WIDE
;
1902 /* Don't disable pipe or pipe PLLs if needed */
1903 if (!IS_I830(dev_priv
))
1904 val
&= ~PIPECONF_ENABLE
;
1906 I915_WRITE(reg
, val
);
1907 if ((val
& PIPECONF_ENABLE
) == 0)
1908 intel_wait_for_pipe_off(old_crtc_state
);
1911 static unsigned int intel_tile_size(const struct drm_i915_private
*dev_priv
)
1913 return IS_GEN2(dev_priv
) ? 2048 : 4096;
1917 intel_tile_width_bytes(const struct drm_framebuffer
*fb
, int plane
)
1919 struct drm_i915_private
*dev_priv
= to_i915(fb
->dev
);
1920 unsigned int cpp
= fb
->format
->cpp
[plane
];
1922 switch (fb
->modifier
) {
1923 case DRM_FORMAT_MOD_LINEAR
:
1925 case I915_FORMAT_MOD_X_TILED
:
1926 if (IS_GEN2(dev_priv
))
1930 case I915_FORMAT_MOD_Y_TILED_CCS
:
1934 case I915_FORMAT_MOD_Y_TILED
:
1935 if (IS_GEN2(dev_priv
) || HAS_128_BYTE_Y_TILING(dev_priv
))
1939 case I915_FORMAT_MOD_Yf_TILED_CCS
:
1943 case I915_FORMAT_MOD_Yf_TILED
:
1959 MISSING_CASE(fb
->modifier
);
1965 intel_tile_height(const struct drm_framebuffer
*fb
, int plane
)
1967 if (fb
->modifier
== DRM_FORMAT_MOD_LINEAR
)
1970 return intel_tile_size(to_i915(fb
->dev
)) /
1971 intel_tile_width_bytes(fb
, plane
);
1974 /* Return the tile dimensions in pixel units */
1975 static void intel_tile_dims(const struct drm_framebuffer
*fb
, int plane
,
1976 unsigned int *tile_width
,
1977 unsigned int *tile_height
)
1979 unsigned int tile_width_bytes
= intel_tile_width_bytes(fb
, plane
);
1980 unsigned int cpp
= fb
->format
->cpp
[plane
];
1982 *tile_width
= tile_width_bytes
/ cpp
;
1983 *tile_height
= intel_tile_size(to_i915(fb
->dev
)) / tile_width_bytes
;
1987 intel_fb_align_height(const struct drm_framebuffer
*fb
,
1988 int plane
, unsigned int height
)
1990 unsigned int tile_height
= intel_tile_height(fb
, plane
);
1992 return ALIGN(height
, tile_height
);
1995 unsigned int intel_rotation_info_size(const struct intel_rotation_info
*rot_info
)
1997 unsigned int size
= 0;
2000 for (i
= 0 ; i
< ARRAY_SIZE(rot_info
->plane
); i
++)
2001 size
+= rot_info
->plane
[i
].width
* rot_info
->plane
[i
].height
;
2007 intel_fill_fb_ggtt_view(struct i915_ggtt_view
*view
,
2008 const struct drm_framebuffer
*fb
,
2009 unsigned int rotation
)
2011 view
->type
= I915_GGTT_VIEW_NORMAL
;
2012 if (drm_rotation_90_or_270(rotation
)) {
2013 view
->type
= I915_GGTT_VIEW_ROTATED
;
2014 view
->rotated
= to_intel_framebuffer(fb
)->rot_info
;
2018 static unsigned int intel_cursor_alignment(const struct drm_i915_private
*dev_priv
)
2020 if (IS_I830(dev_priv
))
2022 else if (IS_I85X(dev_priv
))
2024 else if (IS_I845G(dev_priv
) || IS_I865G(dev_priv
))
2030 static unsigned int intel_linear_alignment(const struct drm_i915_private
*dev_priv
)
2032 if (INTEL_INFO(dev_priv
)->gen
>= 9)
2034 else if (IS_I965G(dev_priv
) || IS_I965GM(dev_priv
) ||
2035 IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
))
2037 else if (INTEL_INFO(dev_priv
)->gen
>= 4)
2043 static unsigned int intel_surf_alignment(const struct drm_framebuffer
*fb
,
2046 struct drm_i915_private
*dev_priv
= to_i915(fb
->dev
);
2048 /* AUX_DIST needs only 4K alignment */
2052 switch (fb
->modifier
) {
2053 case DRM_FORMAT_MOD_LINEAR
:
2054 return intel_linear_alignment(dev_priv
);
2055 case I915_FORMAT_MOD_X_TILED
:
2056 if (INTEL_GEN(dev_priv
) >= 9)
2059 case I915_FORMAT_MOD_Y_TILED_CCS
:
2060 case I915_FORMAT_MOD_Yf_TILED_CCS
:
2061 case I915_FORMAT_MOD_Y_TILED
:
2062 case I915_FORMAT_MOD_Yf_TILED
:
2063 return 1 * 1024 * 1024;
2065 MISSING_CASE(fb
->modifier
);
2071 intel_pin_and_fence_fb_obj(struct drm_framebuffer
*fb
, unsigned int rotation
)
2073 struct drm_device
*dev
= fb
->dev
;
2074 struct drm_i915_private
*dev_priv
= to_i915(dev
);
2075 struct drm_i915_gem_object
*obj
= intel_fb_obj(fb
);
2076 struct i915_ggtt_view view
;
2077 struct i915_vma
*vma
;
2080 WARN_ON(!mutex_is_locked(&dev
->struct_mutex
));
2082 alignment
= intel_surf_alignment(fb
, 0);
2084 intel_fill_fb_ggtt_view(&view
, fb
, rotation
);
2086 /* Note that the w/a also requires 64 PTE of padding following the
2087 * bo. We currently fill all unused PTE with the shadow page and so
2088 * we should always have valid PTE following the scanout preventing
2091 if (intel_scanout_needs_vtd_wa(dev_priv
) && alignment
< 256 * 1024)
2092 alignment
= 256 * 1024;
2095 * Global gtt pte registers are special registers which actually forward
2096 * writes to a chunk of system memory. Which means that there is no risk
2097 * that the register values disappear as soon as we call
2098 * intel_runtime_pm_put(), so it is correct to wrap only the
2099 * pin/unpin/fence and not more.
2101 intel_runtime_pm_get(dev_priv
);
2103 atomic_inc(&dev_priv
->gpu_error
.pending_fb_pin
);
2105 vma
= i915_gem_object_pin_to_display_plane(obj
, alignment
, &view
);
2109 if (i915_vma_is_map_and_fenceable(vma
)) {
2110 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2111 * fence, whereas 965+ only requires a fence if using
2112 * framebuffer compression. For simplicity, we always, when
2113 * possible, install a fence as the cost is not that onerous.
2115 * If we fail to fence the tiled scanout, then either the
2116 * modeset will reject the change (which is highly unlikely as
2117 * the affected systems, all but one, do not have unmappable
2118 * space) or we will not be able to enable full powersaving
2119 * techniques (also likely not to apply due to various limits
2120 * FBC and the like impose on the size of the buffer, which
2121 * presumably we violated anyway with this unmappable buffer).
2122 * Anyway, it is presumably better to stumble onwards with
2123 * something and try to run the system in a "less than optimal"
2124 * mode that matches the user configuration.
2126 i915_vma_pin_fence(vma
);
2131 atomic_dec(&dev_priv
->gpu_error
.pending_fb_pin
);
2133 intel_runtime_pm_put(dev_priv
);
2137 void intel_unpin_fb_vma(struct i915_vma
*vma
)
2139 lockdep_assert_held(&vma
->vm
->i915
->drm
.struct_mutex
);
2141 i915_vma_unpin_fence(vma
);
2142 i915_gem_object_unpin_from_display_plane(vma
);
2146 static int intel_fb_pitch(const struct drm_framebuffer
*fb
, int plane
,
2147 unsigned int rotation
)
2149 if (drm_rotation_90_or_270(rotation
))
2150 return to_intel_framebuffer(fb
)->rotated
[plane
].pitch
;
2152 return fb
->pitches
[plane
];
2156 * Convert the x/y offsets into a linear offset.
2157 * Only valid with 0/180 degree rotation, which is fine since linear
2158 * offset is only used with linear buffers on pre-hsw and tiled buffers
2159 * with gen2/3, and 90/270 degree rotations isn't supported on any of them.
2161 u32
intel_fb_xy_to_linear(int x
, int y
,
2162 const struct intel_plane_state
*state
,
2165 const struct drm_framebuffer
*fb
= state
->base
.fb
;
2166 unsigned int cpp
= fb
->format
->cpp
[plane
];
2167 unsigned int pitch
= fb
->pitches
[plane
];
2169 return y
* pitch
+ x
* cpp
;
2173 * Add the x/y offsets derived from fb->offsets[] to the user
2174 * specified plane src x/y offsets. The resulting x/y offsets
2175 * specify the start of scanout from the beginning of the gtt mapping.
2177 void intel_add_fb_offsets(int *x
, int *y
,
2178 const struct intel_plane_state
*state
,
2182 const struct intel_framebuffer
*intel_fb
= to_intel_framebuffer(state
->base
.fb
);
2183 unsigned int rotation
= state
->base
.rotation
;
2185 if (drm_rotation_90_or_270(rotation
)) {
2186 *x
+= intel_fb
->rotated
[plane
].x
;
2187 *y
+= intel_fb
->rotated
[plane
].y
;
2189 *x
+= intel_fb
->normal
[plane
].x
;
2190 *y
+= intel_fb
->normal
[plane
].y
;
2194 static u32
__intel_adjust_tile_offset(int *x
, int *y
,
2195 unsigned int tile_width
,
2196 unsigned int tile_height
,
2197 unsigned int tile_size
,
2198 unsigned int pitch_tiles
,
2202 unsigned int pitch_pixels
= pitch_tiles
* tile_width
;
2205 WARN_ON(old_offset
& (tile_size
- 1));
2206 WARN_ON(new_offset
& (tile_size
- 1));
2207 WARN_ON(new_offset
> old_offset
);
2209 tiles
= (old_offset
- new_offset
) / tile_size
;
2211 *y
+= tiles
/ pitch_tiles
* tile_height
;
2212 *x
+= tiles
% pitch_tiles
* tile_width
;
2214 /* minimize x in case it got needlessly big */
2215 *y
+= *x
/ pitch_pixels
* tile_height
;
2221 static u32
_intel_adjust_tile_offset(int *x
, int *y
,
2222 const struct drm_framebuffer
*fb
, int plane
,
2223 unsigned int rotation
,
2224 u32 old_offset
, u32 new_offset
)
2226 const struct drm_i915_private
*dev_priv
= to_i915(fb
->dev
);
2227 unsigned int cpp
= fb
->format
->cpp
[plane
];
2228 unsigned int pitch
= intel_fb_pitch(fb
, plane
, rotation
);
2230 WARN_ON(new_offset
> old_offset
);
2232 if (fb
->modifier
!= DRM_FORMAT_MOD_LINEAR
) {
2233 unsigned int tile_size
, tile_width
, tile_height
;
2234 unsigned int pitch_tiles
;
2236 tile_size
= intel_tile_size(dev_priv
);
2237 intel_tile_dims(fb
, plane
, &tile_width
, &tile_height
);
2239 if (drm_rotation_90_or_270(rotation
)) {
2240 pitch_tiles
= pitch
/ tile_height
;
2241 swap(tile_width
, tile_height
);
2243 pitch_tiles
= pitch
/ (tile_width
* cpp
);
2246 __intel_adjust_tile_offset(x
, y
, tile_width
, tile_height
,
2247 tile_size
, pitch_tiles
,
2248 old_offset
, new_offset
);
2250 old_offset
+= *y
* pitch
+ *x
* cpp
;
2252 *y
= (old_offset
- new_offset
) / pitch
;
2253 *x
= ((old_offset
- new_offset
) - *y
* pitch
) / cpp
;
2260 * Adjust the tile offset by moving the difference into
2263 static u32
intel_adjust_tile_offset(int *x
, int *y
,
2264 const struct intel_plane_state
*state
, int plane
,
2265 u32 old_offset
, u32 new_offset
)
2267 return _intel_adjust_tile_offset(x
, y
, state
->base
.fb
, plane
,
2268 state
->base
.rotation
,
2269 old_offset
, new_offset
);
2273 * Computes the linear offset to the base tile and adjusts
2274 * x, y. bytes per pixel is assumed to be a power-of-two.
2276 * In the 90/270 rotated case, x and y are assumed
2277 * to be already rotated to match the rotated GTT view, and
2278 * pitch is the tile_height aligned framebuffer height.
2280 * This function is used when computing the derived information
2281 * under intel_framebuffer, so using any of that information
2282 * here is not allowed. Anything under drm_framebuffer can be
2283 * used. This is why the user has to pass in the pitch since it
2284 * is specified in the rotated orientation.
2286 static u32
_intel_compute_tile_offset(const struct drm_i915_private
*dev_priv
,
2288 const struct drm_framebuffer
*fb
, int plane
,
2290 unsigned int rotation
,
2293 uint64_t fb_modifier
= fb
->modifier
;
2294 unsigned int cpp
= fb
->format
->cpp
[plane
];
2295 u32 offset
, offset_aligned
;
2300 if (fb_modifier
!= DRM_FORMAT_MOD_LINEAR
) {
2301 unsigned int tile_size
, tile_width
, tile_height
;
2302 unsigned int tile_rows
, tiles
, pitch_tiles
;
2304 tile_size
= intel_tile_size(dev_priv
);
2305 intel_tile_dims(fb
, plane
, &tile_width
, &tile_height
);
2307 if (drm_rotation_90_or_270(rotation
)) {
2308 pitch_tiles
= pitch
/ tile_height
;
2309 swap(tile_width
, tile_height
);
2311 pitch_tiles
= pitch
/ (tile_width
* cpp
);
2314 tile_rows
= *y
/ tile_height
;
2317 tiles
= *x
/ tile_width
;
2320 offset
= (tile_rows
* pitch_tiles
+ tiles
) * tile_size
;
2321 offset_aligned
= offset
& ~alignment
;
2323 __intel_adjust_tile_offset(x
, y
, tile_width
, tile_height
,
2324 tile_size
, pitch_tiles
,
2325 offset
, offset_aligned
);
2327 offset
= *y
* pitch
+ *x
* cpp
;
2328 offset_aligned
= offset
& ~alignment
;
2330 *y
= (offset
& alignment
) / pitch
;
2331 *x
= ((offset
& alignment
) - *y
* pitch
) / cpp
;
2334 return offset_aligned
;
2337 u32
intel_compute_tile_offset(int *x
, int *y
,
2338 const struct intel_plane_state
*state
,
2341 struct intel_plane
*intel_plane
= to_intel_plane(state
->base
.plane
);
2342 struct drm_i915_private
*dev_priv
= to_i915(intel_plane
->base
.dev
);
2343 const struct drm_framebuffer
*fb
= state
->base
.fb
;
2344 unsigned int rotation
= state
->base
.rotation
;
2345 int pitch
= intel_fb_pitch(fb
, plane
, rotation
);
2348 if (intel_plane
->id
== PLANE_CURSOR
)
2349 alignment
= intel_cursor_alignment(dev_priv
);
2351 alignment
= intel_surf_alignment(fb
, plane
);
2353 return _intel_compute_tile_offset(dev_priv
, x
, y
, fb
, plane
, pitch
,
2354 rotation
, alignment
);
2357 /* Convert the fb->offset[] into x/y offsets */
2358 static int intel_fb_offset_to_xy(int *x
, int *y
,
2359 const struct drm_framebuffer
*fb
, int plane
)
2361 struct drm_i915_private
*dev_priv
= to_i915(fb
->dev
);
2363 if (fb
->modifier
!= DRM_FORMAT_MOD_LINEAR
&&
2364 fb
->offsets
[plane
] % intel_tile_size(dev_priv
))
2370 _intel_adjust_tile_offset(x
, y
,
2371 fb
, plane
, DRM_MODE_ROTATE_0
,
2372 fb
->offsets
[plane
], 0);
2377 static unsigned int intel_fb_modifier_to_tiling(uint64_t fb_modifier
)
2379 switch (fb_modifier
) {
2380 case I915_FORMAT_MOD_X_TILED
:
2381 return I915_TILING_X
;
2382 case I915_FORMAT_MOD_Y_TILED
:
2383 case I915_FORMAT_MOD_Y_TILED_CCS
:
2384 return I915_TILING_Y
;
2386 return I915_TILING_NONE
;
2390 static const struct drm_format_info ccs_formats
[] = {
2391 { .format
= DRM_FORMAT_XRGB8888
, .depth
= 24, .num_planes
= 2, .cpp
= { 4, 1, }, .hsub
= 8, .vsub
= 16, },
2392 { .format
= DRM_FORMAT_XBGR8888
, .depth
= 24, .num_planes
= 2, .cpp
= { 4, 1, }, .hsub
= 8, .vsub
= 16, },
2393 { .format
= DRM_FORMAT_ARGB8888
, .depth
= 32, .num_planes
= 2, .cpp
= { 4, 1, }, .hsub
= 8, .vsub
= 16, },
2394 { .format
= DRM_FORMAT_ABGR8888
, .depth
= 32, .num_planes
= 2, .cpp
= { 4, 1, }, .hsub
= 8, .vsub
= 16, },
2397 static const struct drm_format_info
*
2398 lookup_format_info(const struct drm_format_info formats
[],
2399 int num_formats
, u32 format
)
2403 for (i
= 0; i
< num_formats
; i
++) {
2404 if (formats
[i
].format
== format
)
2411 static const struct drm_format_info
*
2412 intel_get_format_info(const struct drm_mode_fb_cmd2
*cmd
)
2414 switch (cmd
->modifier
[0]) {
2415 case I915_FORMAT_MOD_Y_TILED_CCS
:
2416 case I915_FORMAT_MOD_Yf_TILED_CCS
:
2417 return lookup_format_info(ccs_formats
,
2418 ARRAY_SIZE(ccs_formats
),
2426 intel_fill_fb_info(struct drm_i915_private
*dev_priv
,
2427 struct drm_framebuffer
*fb
)
2429 struct intel_framebuffer
*intel_fb
= to_intel_framebuffer(fb
);
2430 struct intel_rotation_info
*rot_info
= &intel_fb
->rot_info
;
2431 u32 gtt_offset_rotated
= 0;
2432 unsigned int max_size
= 0;
2433 int i
, num_planes
= fb
->format
->num_planes
;
2434 unsigned int tile_size
= intel_tile_size(dev_priv
);
2436 for (i
= 0; i
< num_planes
; i
++) {
2437 unsigned int width
, height
;
2438 unsigned int cpp
, size
;
2443 cpp
= fb
->format
->cpp
[i
];
2444 width
= drm_framebuffer_plane_width(fb
->width
, fb
, i
);
2445 height
= drm_framebuffer_plane_height(fb
->height
, fb
, i
);
2447 ret
= intel_fb_offset_to_xy(&x
, &y
, fb
, i
);
2449 DRM_DEBUG_KMS("bad fb plane %d offset: 0x%x\n",
2454 if ((fb
->modifier
== I915_FORMAT_MOD_Y_TILED_CCS
||
2455 fb
->modifier
== I915_FORMAT_MOD_Yf_TILED_CCS
) && i
== 1) {
2456 int hsub
= fb
->format
->hsub
;
2457 int vsub
= fb
->format
->vsub
;
2458 int tile_width
, tile_height
;
2462 intel_tile_dims(fb
, i
, &tile_width
, &tile_height
);
2464 tile_height
*= vsub
;
2466 ccs_x
= (x
* hsub
) % tile_width
;
2467 ccs_y
= (y
* vsub
) % tile_height
;
2468 main_x
= intel_fb
->normal
[0].x
% tile_width
;
2469 main_y
= intel_fb
->normal
[0].y
% tile_height
;
2472 * CCS doesn't have its own x/y offset register, so the intra CCS tile
2473 * x/y offsets must match between CCS and the main surface.
2475 if (main_x
!= ccs_x
|| main_y
!= ccs_y
) {
2476 DRM_DEBUG_KMS("Bad CCS x/y (main %d,%d ccs %d,%d) full (main %d,%d ccs %d,%d)\n",
2479 intel_fb
->normal
[0].x
,
2480 intel_fb
->normal
[0].y
,
2487 * The fence (if used) is aligned to the start of the object
2488 * so having the framebuffer wrap around across the edge of the
2489 * fenced region doesn't really work. We have no API to configure
2490 * the fence start offset within the object (nor could we probably
2491 * on gen2/3). So it's just easier if we just require that the
2492 * fb layout agrees with the fence layout. We already check that the
2493 * fb stride matches the fence stride elsewhere.
2495 if (i
== 0 && i915_gem_object_is_tiled(intel_fb
->obj
) &&
2496 (x
+ width
) * cpp
> fb
->pitches
[i
]) {
2497 DRM_DEBUG_KMS("bad fb plane %d offset: 0x%x\n",
2503 * First pixel of the framebuffer from
2504 * the start of the normal gtt mapping.
2506 intel_fb
->normal
[i
].x
= x
;
2507 intel_fb
->normal
[i
].y
= y
;
2509 offset
= _intel_compute_tile_offset(dev_priv
, &x
, &y
,
2510 fb
, i
, fb
->pitches
[i
],
2511 DRM_MODE_ROTATE_0
, tile_size
);
2512 offset
/= tile_size
;
2514 if (fb
->modifier
!= DRM_FORMAT_MOD_LINEAR
) {
2515 unsigned int tile_width
, tile_height
;
2516 unsigned int pitch_tiles
;
2519 intel_tile_dims(fb
, i
, &tile_width
, &tile_height
);
2521 rot_info
->plane
[i
].offset
= offset
;
2522 rot_info
->plane
[i
].stride
= DIV_ROUND_UP(fb
->pitches
[i
], tile_width
* cpp
);
2523 rot_info
->plane
[i
].width
= DIV_ROUND_UP(x
+ width
, tile_width
);
2524 rot_info
->plane
[i
].height
= DIV_ROUND_UP(y
+ height
, tile_height
);
2526 intel_fb
->rotated
[i
].pitch
=
2527 rot_info
->plane
[i
].height
* tile_height
;
2529 /* how many tiles does this plane need */
2530 size
= rot_info
->plane
[i
].stride
* rot_info
->plane
[i
].height
;
2532 * If the plane isn't horizontally tile aligned,
2533 * we need one more tile.
2538 /* rotate the x/y offsets to match the GTT view */
2544 rot_info
->plane
[i
].width
* tile_width
,
2545 rot_info
->plane
[i
].height
* tile_height
,
2546 DRM_MODE_ROTATE_270
);
2550 /* rotate the tile dimensions to match the GTT view */
2551 pitch_tiles
= intel_fb
->rotated
[i
].pitch
/ tile_height
;
2552 swap(tile_width
, tile_height
);
2555 * We only keep the x/y offsets, so push all of the
2556 * gtt offset into the x/y offsets.
2558 __intel_adjust_tile_offset(&x
, &y
,
2559 tile_width
, tile_height
,
2560 tile_size
, pitch_tiles
,
2561 gtt_offset_rotated
* tile_size
, 0);
2563 gtt_offset_rotated
+= rot_info
->plane
[i
].width
* rot_info
->plane
[i
].height
;
2566 * First pixel of the framebuffer from
2567 * the start of the rotated gtt mapping.
2569 intel_fb
->rotated
[i
].x
= x
;
2570 intel_fb
->rotated
[i
].y
= y
;
2572 size
= DIV_ROUND_UP((y
+ height
) * fb
->pitches
[i
] +
2573 x
* cpp
, tile_size
);
2576 /* how many tiles in total needed in the bo */
2577 max_size
= max(max_size
, offset
+ size
);
2580 if (max_size
* tile_size
> intel_fb
->obj
->base
.size
) {
2581 DRM_DEBUG_KMS("fb too big for bo (need %u bytes, have %zu bytes)\n",
2582 max_size
* tile_size
, intel_fb
->obj
->base
.size
);
2589 static int i9xx_format_to_fourcc(int format
)
2592 case DISPPLANE_8BPP
:
2593 return DRM_FORMAT_C8
;
2594 case DISPPLANE_BGRX555
:
2595 return DRM_FORMAT_XRGB1555
;
2596 case DISPPLANE_BGRX565
:
2597 return DRM_FORMAT_RGB565
;
2599 case DISPPLANE_BGRX888
:
2600 return DRM_FORMAT_XRGB8888
;
2601 case DISPPLANE_RGBX888
:
2602 return DRM_FORMAT_XBGR8888
;
2603 case DISPPLANE_BGRX101010
:
2604 return DRM_FORMAT_XRGB2101010
;
2605 case DISPPLANE_RGBX101010
:
2606 return DRM_FORMAT_XBGR2101010
;
2610 static int skl_format_to_fourcc(int format
, bool rgb_order
, bool alpha
)
2613 case PLANE_CTL_FORMAT_RGB_565
:
2614 return DRM_FORMAT_RGB565
;
2616 case PLANE_CTL_FORMAT_XRGB_8888
:
2619 return DRM_FORMAT_ABGR8888
;
2621 return DRM_FORMAT_XBGR8888
;
2624 return DRM_FORMAT_ARGB8888
;
2626 return DRM_FORMAT_XRGB8888
;
2628 case PLANE_CTL_FORMAT_XRGB_2101010
:
2630 return DRM_FORMAT_XBGR2101010
;
2632 return DRM_FORMAT_XRGB2101010
;
2637 intel_alloc_initial_plane_obj(struct intel_crtc
*crtc
,
2638 struct intel_initial_plane_config
*plane_config
)
2640 struct drm_device
*dev
= crtc
->base
.dev
;
2641 struct drm_i915_private
*dev_priv
= to_i915(dev
);
2642 struct drm_i915_gem_object
*obj
= NULL
;
2643 struct drm_mode_fb_cmd2 mode_cmd
= { 0 };
2644 struct drm_framebuffer
*fb
= &plane_config
->fb
->base
;
2645 u32 base_aligned
= round_down(plane_config
->base
, PAGE_SIZE
);
2646 u32 size_aligned
= round_up(plane_config
->base
+ plane_config
->size
,
2649 size_aligned
-= base_aligned
;
2651 if (plane_config
->size
== 0)
2654 /* If the FB is too big, just don't use it since fbdev is not very
2655 * important and we should probably use that space with FBC or other
2657 if (size_aligned
* 2 > dev_priv
->stolen_usable_size
)
2660 mutex_lock(&dev
->struct_mutex
);
2661 obj
= i915_gem_object_create_stolen_for_preallocated(dev_priv
,
2665 mutex_unlock(&dev
->struct_mutex
);
2669 if (plane_config
->tiling
== I915_TILING_X
)
2670 obj
->tiling_and_stride
= fb
->pitches
[0] | I915_TILING_X
;
2672 mode_cmd
.pixel_format
= fb
->format
->format
;
2673 mode_cmd
.width
= fb
->width
;
2674 mode_cmd
.height
= fb
->height
;
2675 mode_cmd
.pitches
[0] = fb
->pitches
[0];
2676 mode_cmd
.modifier
[0] = fb
->modifier
;
2677 mode_cmd
.flags
= DRM_MODE_FB_MODIFIERS
;
2679 if (intel_framebuffer_init(to_intel_framebuffer(fb
), obj
, &mode_cmd
)) {
2680 DRM_DEBUG_KMS("intel fb init failed\n");
2685 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj
);
2689 i915_gem_object_put(obj
);
2694 intel_set_plane_visible(struct intel_crtc_state
*crtc_state
,
2695 struct intel_plane_state
*plane_state
,
2698 struct intel_plane
*plane
= to_intel_plane(plane_state
->base
.plane
);
2700 plane_state
->base
.visible
= visible
;
2702 /* FIXME pre-g4x don't work like this */
2704 crtc_state
->base
.plane_mask
|= BIT(drm_plane_index(&plane
->base
));
2705 crtc_state
->active_planes
|= BIT(plane
->id
);
2707 crtc_state
->base
.plane_mask
&= ~BIT(drm_plane_index(&plane
->base
));
2708 crtc_state
->active_planes
&= ~BIT(plane
->id
);
2711 DRM_DEBUG_KMS("%s active planes 0x%x\n",
2712 crtc_state
->base
.crtc
->name
,
2713 crtc_state
->active_planes
);
2716 static void intel_plane_disable_noatomic(struct intel_crtc
*crtc
,
2717 struct intel_plane
*plane
)
2719 struct intel_crtc_state
*crtc_state
=
2720 to_intel_crtc_state(crtc
->base
.state
);
2721 struct intel_plane_state
*plane_state
=
2722 to_intel_plane_state(plane
->base
.state
);
2724 intel_set_plane_visible(crtc_state
, plane_state
, false);
2726 if (plane
->id
== PLANE_PRIMARY
)
2727 intel_pre_disable_primary_noatomic(&crtc
->base
);
2729 trace_intel_disable_plane(&plane
->base
, crtc
);
2730 plane
->disable_plane(plane
, crtc
);
2734 intel_find_initial_plane_obj(struct intel_crtc
*intel_crtc
,
2735 struct intel_initial_plane_config
*plane_config
)
2737 struct drm_device
*dev
= intel_crtc
->base
.dev
;
2738 struct drm_i915_private
*dev_priv
= to_i915(dev
);
2740 struct drm_i915_gem_object
*obj
;
2741 struct drm_plane
*primary
= intel_crtc
->base
.primary
;
2742 struct drm_plane_state
*plane_state
= primary
->state
;
2743 struct drm_crtc_state
*crtc_state
= intel_crtc
->base
.state
;
2744 struct intel_plane
*intel_plane
= to_intel_plane(primary
);
2745 struct intel_plane_state
*intel_state
=
2746 to_intel_plane_state(plane_state
);
2747 struct drm_framebuffer
*fb
;
2749 if (!plane_config
->fb
)
2752 if (intel_alloc_initial_plane_obj(intel_crtc
, plane_config
)) {
2753 fb
= &plane_config
->fb
->base
;
2757 kfree(plane_config
->fb
);
2760 * Failed to alloc the obj, check to see if we should share
2761 * an fb with another CRTC instead
2763 for_each_crtc(dev
, c
) {
2764 struct intel_plane_state
*state
;
2766 if (c
== &intel_crtc
->base
)
2769 if (!to_intel_crtc(c
)->active
)
2772 state
= to_intel_plane_state(c
->primary
->state
);
2776 if (intel_plane_ggtt_offset(state
) == plane_config
->base
) {
2777 fb
= c
->primary
->fb
;
2778 drm_framebuffer_get(fb
);
2784 * We've failed to reconstruct the BIOS FB. Current display state
2785 * indicates that the primary plane is visible, but has a NULL FB,
2786 * which will lead to problems later if we don't fix it up. The
2787 * simplest solution is to just disable the primary plane now and
2788 * pretend the BIOS never had it enabled.
2790 intel_plane_disable_noatomic(intel_crtc
, intel_plane
);
2795 mutex_lock(&dev
->struct_mutex
);
2797 intel_pin_and_fence_fb_obj(fb
, primary
->state
->rotation
);
2798 mutex_unlock(&dev
->struct_mutex
);
2799 if (IS_ERR(intel_state
->vma
)) {
2800 DRM_ERROR("failed to pin boot fb on pipe %d: %li\n",
2801 intel_crtc
->pipe
, PTR_ERR(intel_state
->vma
));
2803 intel_state
->vma
= NULL
;
2804 drm_framebuffer_put(fb
);
2808 plane_state
->src_x
= 0;
2809 plane_state
->src_y
= 0;
2810 plane_state
->src_w
= fb
->width
<< 16;
2811 plane_state
->src_h
= fb
->height
<< 16;
2813 plane_state
->crtc_x
= 0;
2814 plane_state
->crtc_y
= 0;
2815 plane_state
->crtc_w
= fb
->width
;
2816 plane_state
->crtc_h
= fb
->height
;
2818 intel_state
->base
.src
= drm_plane_state_src(plane_state
);
2819 intel_state
->base
.dst
= drm_plane_state_dest(plane_state
);
2821 obj
= intel_fb_obj(fb
);
2822 if (i915_gem_object_is_tiled(obj
))
2823 dev_priv
->preserve_bios_swizzle
= true;
2825 drm_framebuffer_get(fb
);
2826 primary
->fb
= primary
->state
->fb
= fb
;
2827 primary
->crtc
= primary
->state
->crtc
= &intel_crtc
->base
;
2829 intel_set_plane_visible(to_intel_crtc_state(crtc_state
),
2830 to_intel_plane_state(plane_state
),
2833 atomic_or(to_intel_plane(primary
)->frontbuffer_bit
,
2834 &obj
->frontbuffer_bits
);
2837 static int skl_max_plane_width(const struct drm_framebuffer
*fb
, int plane
,
2838 unsigned int rotation
)
2840 int cpp
= fb
->format
->cpp
[plane
];
2842 switch (fb
->modifier
) {
2843 case DRM_FORMAT_MOD_LINEAR
:
2844 case I915_FORMAT_MOD_X_TILED
:
2857 case I915_FORMAT_MOD_Y_TILED_CCS
:
2858 case I915_FORMAT_MOD_Yf_TILED_CCS
:
2859 /* FIXME AUX plane? */
2860 case I915_FORMAT_MOD_Y_TILED
:
2861 case I915_FORMAT_MOD_Yf_TILED
:
2876 MISSING_CASE(fb
->modifier
);
2882 static bool skl_check_main_ccs_coordinates(struct intel_plane_state
*plane_state
,
2883 int main_x
, int main_y
, u32 main_offset
)
2885 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
2886 int hsub
= fb
->format
->hsub
;
2887 int vsub
= fb
->format
->vsub
;
2888 int aux_x
= plane_state
->aux
.x
;
2889 int aux_y
= plane_state
->aux
.y
;
2890 u32 aux_offset
= plane_state
->aux
.offset
;
2891 u32 alignment
= intel_surf_alignment(fb
, 1);
2893 while (aux_offset
>= main_offset
&& aux_y
<= main_y
) {
2896 if (aux_x
== main_x
&& aux_y
== main_y
)
2899 if (aux_offset
== 0)
2904 aux_offset
= intel_adjust_tile_offset(&x
, &y
, plane_state
, 1,
2905 aux_offset
, aux_offset
- alignment
);
2906 aux_x
= x
* hsub
+ aux_x
% hsub
;
2907 aux_y
= y
* vsub
+ aux_y
% vsub
;
2910 if (aux_x
!= main_x
|| aux_y
!= main_y
)
2913 plane_state
->aux
.offset
= aux_offset
;
2914 plane_state
->aux
.x
= aux_x
;
2915 plane_state
->aux
.y
= aux_y
;
2920 static int skl_check_main_surface(struct intel_plane_state
*plane_state
)
2922 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
2923 unsigned int rotation
= plane_state
->base
.rotation
;
2924 int x
= plane_state
->base
.src
.x1
>> 16;
2925 int y
= plane_state
->base
.src
.y1
>> 16;
2926 int w
= drm_rect_width(&plane_state
->base
.src
) >> 16;
2927 int h
= drm_rect_height(&plane_state
->base
.src
) >> 16;
2928 int max_width
= skl_max_plane_width(fb
, 0, rotation
);
2929 int max_height
= 4096;
2930 u32 alignment
, offset
, aux_offset
= plane_state
->aux
.offset
;
2932 if (w
> max_width
|| h
> max_height
) {
2933 DRM_DEBUG_KMS("requested Y/RGB source size %dx%d too big (limit %dx%d)\n",
2934 w
, h
, max_width
, max_height
);
2938 intel_add_fb_offsets(&x
, &y
, plane_state
, 0);
2939 offset
= intel_compute_tile_offset(&x
, &y
, plane_state
, 0);
2940 alignment
= intel_surf_alignment(fb
, 0);
2943 * AUX surface offset is specified as the distance from the
2944 * main surface offset, and it must be non-negative. Make
2945 * sure that is what we will get.
2947 if (offset
> aux_offset
)
2948 offset
= intel_adjust_tile_offset(&x
, &y
, plane_state
, 0,
2949 offset
, aux_offset
& ~(alignment
- 1));
2952 * When using an X-tiled surface, the plane blows up
2953 * if the x offset + width exceed the stride.
2955 * TODO: linear and Y-tiled seem fine, Yf untested,
2957 if (fb
->modifier
== I915_FORMAT_MOD_X_TILED
) {
2958 int cpp
= fb
->format
->cpp
[0];
2960 while ((x
+ w
) * cpp
> fb
->pitches
[0]) {
2962 DRM_DEBUG_KMS("Unable to find suitable display surface offset due to X-tiling\n");
2966 offset
= intel_adjust_tile_offset(&x
, &y
, plane_state
, 0,
2967 offset
, offset
- alignment
);
2972 * CCS AUX surface doesn't have its own x/y offsets, we must make sure
2973 * they match with the main surface x/y offsets.
2975 if (fb
->modifier
== I915_FORMAT_MOD_Y_TILED_CCS
||
2976 fb
->modifier
== I915_FORMAT_MOD_Yf_TILED_CCS
) {
2977 while (!skl_check_main_ccs_coordinates(plane_state
, x
, y
, offset
)) {
2981 offset
= intel_adjust_tile_offset(&x
, &y
, plane_state
, 0,
2982 offset
, offset
- alignment
);
2985 if (x
!= plane_state
->aux
.x
|| y
!= plane_state
->aux
.y
) {
2986 DRM_DEBUG_KMS("Unable to find suitable display surface offset due to CCS\n");
2991 plane_state
->main
.offset
= offset
;
2992 plane_state
->main
.x
= x
;
2993 plane_state
->main
.y
= y
;
2998 static int skl_check_nv12_aux_surface(struct intel_plane_state
*plane_state
)
3000 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
3001 unsigned int rotation
= plane_state
->base
.rotation
;
3002 int max_width
= skl_max_plane_width(fb
, 1, rotation
);
3003 int max_height
= 4096;
3004 int x
= plane_state
->base
.src
.x1
>> 17;
3005 int y
= plane_state
->base
.src
.y1
>> 17;
3006 int w
= drm_rect_width(&plane_state
->base
.src
) >> 17;
3007 int h
= drm_rect_height(&plane_state
->base
.src
) >> 17;
3010 intel_add_fb_offsets(&x
, &y
, plane_state
, 1);
3011 offset
= intel_compute_tile_offset(&x
, &y
, plane_state
, 1);
3013 /* FIXME not quite sure how/if these apply to the chroma plane */
3014 if (w
> max_width
|| h
> max_height
) {
3015 DRM_DEBUG_KMS("CbCr source size %dx%d too big (limit %dx%d)\n",
3016 w
, h
, max_width
, max_height
);
3020 plane_state
->aux
.offset
= offset
;
3021 plane_state
->aux
.x
= x
;
3022 plane_state
->aux
.y
= y
;
3027 static int skl_check_ccs_aux_surface(struct intel_plane_state
*plane_state
)
3029 struct intel_plane
*plane
= to_intel_plane(plane_state
->base
.plane
);
3030 struct intel_crtc
*crtc
= to_intel_crtc(plane_state
->base
.crtc
);
3031 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
3032 int src_x
= plane_state
->base
.src
.x1
>> 16;
3033 int src_y
= plane_state
->base
.src
.y1
>> 16;
3034 int hsub
= fb
->format
->hsub
;
3035 int vsub
= fb
->format
->vsub
;
3036 int x
= src_x
/ hsub
;
3037 int y
= src_y
/ vsub
;
3040 switch (plane
->id
) {
3045 DRM_DEBUG_KMS("RC support only on plane 1 and 2\n");
3049 if (crtc
->pipe
== PIPE_C
) {
3050 DRM_DEBUG_KMS("No RC support on pipe C\n");
3054 if (plane_state
->base
.rotation
& ~(DRM_MODE_ROTATE_0
| DRM_MODE_ROTATE_180
)) {
3055 DRM_DEBUG_KMS("RC support only with 0/180 degree rotation %x\n",
3056 plane_state
->base
.rotation
);
3060 intel_add_fb_offsets(&x
, &y
, plane_state
, 1);
3061 offset
= intel_compute_tile_offset(&x
, &y
, plane_state
, 1);
3063 plane_state
->aux
.offset
= offset
;
3064 plane_state
->aux
.x
= x
* hsub
+ src_x
% hsub
;
3065 plane_state
->aux
.y
= y
* vsub
+ src_y
% vsub
;
3070 int skl_check_plane_surface(struct intel_plane_state
*plane_state
)
3072 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
3073 unsigned int rotation
= plane_state
->base
.rotation
;
3076 if (rotation
& DRM_MODE_REFLECT_X
&&
3077 fb
->modifier
== DRM_FORMAT_MOD_LINEAR
) {
3078 DRM_DEBUG_KMS("horizontal flip is not supported with linear surface formats\n");
3082 if (!plane_state
->base
.visible
)
3085 /* Rotate src coordinates to match rotated GTT view */
3086 if (drm_rotation_90_or_270(rotation
))
3087 drm_rect_rotate(&plane_state
->base
.src
,
3088 fb
->width
<< 16, fb
->height
<< 16,
3089 DRM_MODE_ROTATE_270
);
3092 * Handle the AUX surface first since
3093 * the main surface setup depends on it.
3095 if (fb
->format
->format
== DRM_FORMAT_NV12
) {
3096 ret
= skl_check_nv12_aux_surface(plane_state
);
3099 } else if (fb
->modifier
== I915_FORMAT_MOD_Y_TILED_CCS
||
3100 fb
->modifier
== I915_FORMAT_MOD_Yf_TILED_CCS
) {
3101 ret
= skl_check_ccs_aux_surface(plane_state
);
3105 plane_state
->aux
.offset
= ~0xfff;
3106 plane_state
->aux
.x
= 0;
3107 plane_state
->aux
.y
= 0;
3110 ret
= skl_check_main_surface(plane_state
);
3117 static u32
i9xx_plane_ctl(const struct intel_crtc_state
*crtc_state
,
3118 const struct intel_plane_state
*plane_state
)
3120 struct drm_i915_private
*dev_priv
=
3121 to_i915(plane_state
->base
.plane
->dev
);
3122 struct intel_crtc
*crtc
= to_intel_crtc(crtc_state
->base
.crtc
);
3123 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
3124 unsigned int rotation
= plane_state
->base
.rotation
;
3127 dspcntr
= DISPLAY_PLANE_ENABLE
| DISPPLANE_GAMMA_ENABLE
;
3129 if (IS_G4X(dev_priv
) || IS_GEN5(dev_priv
) ||
3130 IS_GEN6(dev_priv
) || IS_IVYBRIDGE(dev_priv
))
3131 dspcntr
|= DISPPLANE_TRICKLE_FEED_DISABLE
;
3133 if (IS_HASWELL(dev_priv
) || IS_BROADWELL(dev_priv
))
3134 dspcntr
|= DISPPLANE_PIPE_CSC_ENABLE
;
3136 if (INTEL_GEN(dev_priv
) < 4)
3137 dspcntr
|= DISPPLANE_SEL_PIPE(crtc
->pipe
);
3139 switch (fb
->format
->format
) {
3141 dspcntr
|= DISPPLANE_8BPP
;
3143 case DRM_FORMAT_XRGB1555
:
3144 dspcntr
|= DISPPLANE_BGRX555
;
3146 case DRM_FORMAT_RGB565
:
3147 dspcntr
|= DISPPLANE_BGRX565
;
3149 case DRM_FORMAT_XRGB8888
:
3150 dspcntr
|= DISPPLANE_BGRX888
;
3152 case DRM_FORMAT_XBGR8888
:
3153 dspcntr
|= DISPPLANE_RGBX888
;
3155 case DRM_FORMAT_XRGB2101010
:
3156 dspcntr
|= DISPPLANE_BGRX101010
;
3158 case DRM_FORMAT_XBGR2101010
:
3159 dspcntr
|= DISPPLANE_RGBX101010
;
3162 MISSING_CASE(fb
->format
->format
);
3166 if (INTEL_GEN(dev_priv
) >= 4 &&
3167 fb
->modifier
== I915_FORMAT_MOD_X_TILED
)
3168 dspcntr
|= DISPPLANE_TILED
;
3170 if (rotation
& DRM_MODE_ROTATE_180
)
3171 dspcntr
|= DISPPLANE_ROTATE_180
;
3173 if (rotation
& DRM_MODE_REFLECT_X
)
3174 dspcntr
|= DISPPLANE_MIRROR
;
3179 int i9xx_check_plane_surface(struct intel_plane_state
*plane_state
)
3181 struct drm_i915_private
*dev_priv
=
3182 to_i915(plane_state
->base
.plane
->dev
);
3183 int src_x
= plane_state
->base
.src
.x1
>> 16;
3184 int src_y
= plane_state
->base
.src
.y1
>> 16;
3187 intel_add_fb_offsets(&src_x
, &src_y
, plane_state
, 0);
3189 if (INTEL_GEN(dev_priv
) >= 4)
3190 offset
= intel_compute_tile_offset(&src_x
, &src_y
,
3195 /* HSW/BDW do this automagically in hardware */
3196 if (!IS_HASWELL(dev_priv
) && !IS_BROADWELL(dev_priv
)) {
3197 unsigned int rotation
= plane_state
->base
.rotation
;
3198 int src_w
= drm_rect_width(&plane_state
->base
.src
) >> 16;
3199 int src_h
= drm_rect_height(&plane_state
->base
.src
) >> 16;
3201 if (rotation
& DRM_MODE_ROTATE_180
) {
3204 } else if (rotation
& DRM_MODE_REFLECT_X
) {
3209 plane_state
->main
.offset
= offset
;
3210 plane_state
->main
.x
= src_x
;
3211 plane_state
->main
.y
= src_y
;
3216 static void i9xx_update_plane(struct intel_plane
*plane
,
3217 const struct intel_crtc_state
*crtc_state
,
3218 const struct intel_plane_state
*plane_state
)
3220 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
3221 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
3222 enum i9xx_plane_id i9xx_plane
= plane
->i9xx_plane
;
3224 u32 dspcntr
= plane_state
->ctl
;
3225 i915_reg_t reg
= DSPCNTR(i9xx_plane
);
3226 int x
= plane_state
->main
.x
;
3227 int y
= plane_state
->main
.y
;
3228 unsigned long irqflags
;
3231 linear_offset
= intel_fb_xy_to_linear(x
, y
, plane_state
, 0);
3233 if (INTEL_GEN(dev_priv
) >= 4)
3234 dspaddr_offset
= plane_state
->main
.offset
;
3236 dspaddr_offset
= linear_offset
;
3238 spin_lock_irqsave(&dev_priv
->uncore
.lock
, irqflags
);
3240 if (INTEL_GEN(dev_priv
) < 4) {
3241 /* pipesrc and dspsize control the size that is scaled from,
3242 * which should always be the user's requested size.
3244 I915_WRITE_FW(DSPSIZE(i9xx_plane
),
3245 ((crtc_state
->pipe_src_h
- 1) << 16) |
3246 (crtc_state
->pipe_src_w
- 1));
3247 I915_WRITE_FW(DSPPOS(i9xx_plane
), 0);
3248 } else if (IS_CHERRYVIEW(dev_priv
) && i9xx_plane
== PLANE_B
) {
3249 I915_WRITE_FW(PRIMSIZE(i9xx_plane
),
3250 ((crtc_state
->pipe_src_h
- 1) << 16) |
3251 (crtc_state
->pipe_src_w
- 1));
3252 I915_WRITE_FW(PRIMPOS(i9xx_plane
), 0);
3253 I915_WRITE_FW(PRIMCNSTALPHA(i9xx_plane
), 0);
3256 I915_WRITE_FW(reg
, dspcntr
);
3258 I915_WRITE_FW(DSPSTRIDE(i9xx_plane
), fb
->pitches
[0]);
3259 if (IS_HASWELL(dev_priv
) || IS_BROADWELL(dev_priv
)) {
3260 I915_WRITE_FW(DSPSURF(i9xx_plane
),
3261 intel_plane_ggtt_offset(plane_state
) +
3263 I915_WRITE_FW(DSPOFFSET(i9xx_plane
), (y
<< 16) | x
);
3264 } else if (INTEL_GEN(dev_priv
) >= 4) {
3265 I915_WRITE_FW(DSPSURF(i9xx_plane
),
3266 intel_plane_ggtt_offset(plane_state
) +
3268 I915_WRITE_FW(DSPTILEOFF(i9xx_plane
), (y
<< 16) | x
);
3269 I915_WRITE_FW(DSPLINOFF(i9xx_plane
), linear_offset
);
3271 I915_WRITE_FW(DSPADDR(i9xx_plane
),
3272 intel_plane_ggtt_offset(plane_state
) +
3275 POSTING_READ_FW(reg
);
3277 spin_unlock_irqrestore(&dev_priv
->uncore
.lock
, irqflags
);
3280 static void i9xx_disable_plane(struct intel_plane
*plane
,
3281 struct intel_crtc
*crtc
)
3283 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
3284 enum i9xx_plane_id i9xx_plane
= plane
->i9xx_plane
;
3285 unsigned long irqflags
;
3287 spin_lock_irqsave(&dev_priv
->uncore
.lock
, irqflags
);
3289 I915_WRITE_FW(DSPCNTR(i9xx_plane
), 0);
3290 if (INTEL_GEN(dev_priv
) >= 4)
3291 I915_WRITE_FW(DSPSURF(i9xx_plane
), 0);
3293 I915_WRITE_FW(DSPADDR(i9xx_plane
), 0);
3294 POSTING_READ_FW(DSPCNTR(i9xx_plane
));
3296 spin_unlock_irqrestore(&dev_priv
->uncore
.lock
, irqflags
);
3299 static bool i9xx_plane_get_hw_state(struct intel_plane
*plane
)
3301 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
3302 enum intel_display_power_domain power_domain
;
3303 enum i9xx_plane_id i9xx_plane
= plane
->i9xx_plane
;
3304 enum pipe pipe
= plane
->pipe
;
3308 * Not 100% correct for planes that can move between pipes,
3309 * but that's only the case for gen2-4 which don't have any
3310 * display power wells.
3312 power_domain
= POWER_DOMAIN_PIPE(pipe
);
3313 if (!intel_display_power_get_if_enabled(dev_priv
, power_domain
))
3316 ret
= I915_READ(DSPCNTR(i9xx_plane
)) & DISPLAY_PLANE_ENABLE
;
3318 intel_display_power_put(dev_priv
, power_domain
);
3324 intel_fb_stride_alignment(const struct drm_framebuffer
*fb
, int plane
)
3326 if (fb
->modifier
== DRM_FORMAT_MOD_LINEAR
)
3329 return intel_tile_width_bytes(fb
, plane
);
3332 static void skl_detach_scaler(struct intel_crtc
*intel_crtc
, int id
)
3334 struct drm_device
*dev
= intel_crtc
->base
.dev
;
3335 struct drm_i915_private
*dev_priv
= to_i915(dev
);
3337 I915_WRITE(SKL_PS_CTRL(intel_crtc
->pipe
, id
), 0);
3338 I915_WRITE(SKL_PS_WIN_POS(intel_crtc
->pipe
, id
), 0);
3339 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc
->pipe
, id
), 0);
3343 * This function detaches (aka. unbinds) unused scalers in hardware
3345 static void skl_detach_scalers(struct intel_crtc
*intel_crtc
)
3347 struct intel_crtc_scaler_state
*scaler_state
;
3350 scaler_state
= &intel_crtc
->config
->scaler_state
;
3352 /* loop through and disable scalers that aren't in use */
3353 for (i
= 0; i
< intel_crtc
->num_scalers
; i
++) {
3354 if (!scaler_state
->scalers
[i
].in_use
)
3355 skl_detach_scaler(intel_crtc
, i
);
3359 u32
skl_plane_stride(const struct drm_framebuffer
*fb
, int plane
,
3360 unsigned int rotation
)
3364 if (plane
>= fb
->format
->num_planes
)
3367 stride
= intel_fb_pitch(fb
, plane
, rotation
);
3370 * The stride is either expressed as a multiple of 64 bytes chunks for
3371 * linear buffers or in number of tiles for tiled buffers.
3373 if (drm_rotation_90_or_270(rotation
))
3374 stride
/= intel_tile_height(fb
, plane
);
3376 stride
/= intel_fb_stride_alignment(fb
, plane
);
3381 static u32
skl_plane_ctl_format(uint32_t pixel_format
)
3383 switch (pixel_format
) {
3385 return PLANE_CTL_FORMAT_INDEXED
;
3386 case DRM_FORMAT_RGB565
:
3387 return PLANE_CTL_FORMAT_RGB_565
;
3388 case DRM_FORMAT_XBGR8888
:
3389 case DRM_FORMAT_ABGR8888
:
3390 return PLANE_CTL_FORMAT_XRGB_8888
| PLANE_CTL_ORDER_RGBX
;
3391 case DRM_FORMAT_XRGB8888
:
3392 case DRM_FORMAT_ARGB8888
:
3393 return PLANE_CTL_FORMAT_XRGB_8888
;
3394 case DRM_FORMAT_XRGB2101010
:
3395 return PLANE_CTL_FORMAT_XRGB_2101010
;
3396 case DRM_FORMAT_XBGR2101010
:
3397 return PLANE_CTL_ORDER_RGBX
| PLANE_CTL_FORMAT_XRGB_2101010
;
3398 case DRM_FORMAT_YUYV
:
3399 return PLANE_CTL_FORMAT_YUV422
| PLANE_CTL_YUV422_YUYV
;
3400 case DRM_FORMAT_YVYU
:
3401 return PLANE_CTL_FORMAT_YUV422
| PLANE_CTL_YUV422_YVYU
;
3402 case DRM_FORMAT_UYVY
:
3403 return PLANE_CTL_FORMAT_YUV422
| PLANE_CTL_YUV422_UYVY
;
3404 case DRM_FORMAT_VYUY
:
3405 return PLANE_CTL_FORMAT_YUV422
| PLANE_CTL_YUV422_VYUY
;
3407 MISSING_CASE(pixel_format
);
3414 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
3415 * to be already pre-multiplied. We need to add a knob (or a different
3416 * DRM_FORMAT) for user-space to configure that.
3418 static u32
skl_plane_ctl_alpha(uint32_t pixel_format
)
3420 switch (pixel_format
) {
3421 case DRM_FORMAT_ABGR8888
:
3422 case DRM_FORMAT_ARGB8888
:
3423 return PLANE_CTL_ALPHA_SW_PREMULTIPLY
;
3425 return PLANE_CTL_ALPHA_DISABLE
;
3429 static u32
glk_plane_color_ctl_alpha(uint32_t pixel_format
)
3431 switch (pixel_format
) {
3432 case DRM_FORMAT_ABGR8888
:
3433 case DRM_FORMAT_ARGB8888
:
3434 return PLANE_COLOR_ALPHA_SW_PREMULTIPLY
;
3436 return PLANE_COLOR_ALPHA_DISABLE
;
3440 static u32
skl_plane_ctl_tiling(uint64_t fb_modifier
)
3442 switch (fb_modifier
) {
3443 case DRM_FORMAT_MOD_LINEAR
:
3445 case I915_FORMAT_MOD_X_TILED
:
3446 return PLANE_CTL_TILED_X
;
3447 case I915_FORMAT_MOD_Y_TILED
:
3448 return PLANE_CTL_TILED_Y
;
3449 case I915_FORMAT_MOD_Y_TILED_CCS
:
3450 return PLANE_CTL_TILED_Y
| PLANE_CTL_DECOMPRESSION_ENABLE
;
3451 case I915_FORMAT_MOD_Yf_TILED
:
3452 return PLANE_CTL_TILED_YF
;
3453 case I915_FORMAT_MOD_Yf_TILED_CCS
:
3454 return PLANE_CTL_TILED_YF
| PLANE_CTL_DECOMPRESSION_ENABLE
;
3456 MISSING_CASE(fb_modifier
);
3462 static u32
skl_plane_ctl_rotate(unsigned int rotate
)
3465 case DRM_MODE_ROTATE_0
:
3468 * DRM_MODE_ROTATE_ is counter clockwise to stay compatible with Xrandr
3469 * while i915 HW rotation is clockwise, thats why this swapping.
3471 case DRM_MODE_ROTATE_90
:
3472 return PLANE_CTL_ROTATE_270
;
3473 case DRM_MODE_ROTATE_180
:
3474 return PLANE_CTL_ROTATE_180
;
3475 case DRM_MODE_ROTATE_270
:
3476 return PLANE_CTL_ROTATE_90
;
3478 MISSING_CASE(rotate
);
3484 static u32
cnl_plane_ctl_flip(unsigned int reflect
)
3489 case DRM_MODE_REFLECT_X
:
3490 return PLANE_CTL_FLIP_HORIZONTAL
;
3491 case DRM_MODE_REFLECT_Y
:
3493 MISSING_CASE(reflect
);
3499 u32
skl_plane_ctl(const struct intel_crtc_state
*crtc_state
,
3500 const struct intel_plane_state
*plane_state
)
3502 struct drm_i915_private
*dev_priv
=
3503 to_i915(plane_state
->base
.plane
->dev
);
3504 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
3505 unsigned int rotation
= plane_state
->base
.rotation
;
3506 const struct drm_intel_sprite_colorkey
*key
= &plane_state
->ckey
;
3509 plane_ctl
= PLANE_CTL_ENABLE
;
3511 if (INTEL_GEN(dev_priv
) < 10 && !IS_GEMINILAKE(dev_priv
)) {
3512 plane_ctl
|= skl_plane_ctl_alpha(fb
->format
->format
);
3514 PLANE_CTL_PIPE_GAMMA_ENABLE
|
3515 PLANE_CTL_PIPE_CSC_ENABLE
|
3516 PLANE_CTL_PLANE_GAMMA_DISABLE
;
3519 plane_ctl
|= skl_plane_ctl_format(fb
->format
->format
);
3520 plane_ctl
|= skl_plane_ctl_tiling(fb
->modifier
);
3521 plane_ctl
|= skl_plane_ctl_rotate(rotation
& DRM_MODE_ROTATE_MASK
);
3523 if (INTEL_GEN(dev_priv
) >= 10)
3524 plane_ctl
|= cnl_plane_ctl_flip(rotation
&
3525 DRM_MODE_REFLECT_MASK
);
3527 if (key
->flags
& I915_SET_COLORKEY_DESTINATION
)
3528 plane_ctl
|= PLANE_CTL_KEY_ENABLE_DESTINATION
;
3529 else if (key
->flags
& I915_SET_COLORKEY_SOURCE
)
3530 plane_ctl
|= PLANE_CTL_KEY_ENABLE_SOURCE
;
3535 u32
glk_plane_color_ctl(const struct intel_crtc_state
*crtc_state
,
3536 const struct intel_plane_state
*plane_state
)
3538 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
3539 u32 plane_color_ctl
= 0;
3541 plane_color_ctl
|= PLANE_COLOR_PIPE_GAMMA_ENABLE
;
3542 plane_color_ctl
|= PLANE_COLOR_PIPE_CSC_ENABLE
;
3543 plane_color_ctl
|= PLANE_COLOR_PLANE_GAMMA_DISABLE
;
3544 plane_color_ctl
|= glk_plane_color_ctl_alpha(fb
->format
->format
);
3546 return plane_color_ctl
;
3550 __intel_display_resume(struct drm_device
*dev
,
3551 struct drm_atomic_state
*state
,
3552 struct drm_modeset_acquire_ctx
*ctx
)
3554 struct drm_crtc_state
*crtc_state
;
3555 struct drm_crtc
*crtc
;
3558 intel_modeset_setup_hw_state(dev
, ctx
);
3559 i915_redisable_vga(to_i915(dev
));
3565 * We've duplicated the state, pointers to the old state are invalid.
3567 * Don't attempt to use the old state until we commit the duplicated state.
3569 for_each_new_crtc_in_state(state
, crtc
, crtc_state
, i
) {
3571 * Force recalculation even if we restore
3572 * current state. With fast modeset this may not result
3573 * in a modeset when the state is compatible.
3575 crtc_state
->mode_changed
= true;
3578 /* ignore any reset values/BIOS leftovers in the WM registers */
3579 if (!HAS_GMCH_DISPLAY(to_i915(dev
)))
3580 to_intel_atomic_state(state
)->skip_intermediate_wm
= true;
3582 ret
= drm_atomic_helper_commit_duplicated_state(state
, ctx
);
3584 WARN_ON(ret
== -EDEADLK
);
3588 static bool gpu_reset_clobbers_display(struct drm_i915_private
*dev_priv
)
3590 return intel_has_gpu_reset(dev_priv
) &&
3591 INTEL_GEN(dev_priv
) < 5 && !IS_G4X(dev_priv
);
3594 void intel_prepare_reset(struct drm_i915_private
*dev_priv
)
3596 struct drm_device
*dev
= &dev_priv
->drm
;
3597 struct drm_modeset_acquire_ctx
*ctx
= &dev_priv
->reset_ctx
;
3598 struct drm_atomic_state
*state
;
3602 /* reset doesn't touch the display */
3603 if (!i915_modparams
.force_reset_modeset_test
&&
3604 !gpu_reset_clobbers_display(dev_priv
))
3607 /* We have a modeset vs reset deadlock, defensively unbreak it. */
3608 set_bit(I915_RESET_MODESET
, &dev_priv
->gpu_error
.flags
);
3609 wake_up_all(&dev_priv
->gpu_error
.wait_queue
);
3611 if (atomic_read(&dev_priv
->gpu_error
.pending_fb_pin
)) {
3612 DRM_DEBUG_KMS("Modeset potentially stuck, unbreaking through wedging\n");
3613 i915_gem_set_wedged(dev_priv
);
3617 * Need mode_config.mutex so that we don't
3618 * trample ongoing ->detect() and whatnot.
3620 mutex_lock(&dev
->mode_config
.mutex
);
3621 drm_modeset_acquire_init(ctx
, 0);
3623 ret
= drm_modeset_lock_all_ctx(dev
, ctx
);
3624 if (ret
!= -EDEADLK
)
3627 drm_modeset_backoff(ctx
);
3630 * Disabling the crtcs gracefully seems nicer. Also the
3631 * g33 docs say we should at least disable all the planes.
3633 state
= drm_atomic_helper_duplicate_state(dev
, ctx
);
3634 if (IS_ERR(state
)) {
3635 ret
= PTR_ERR(state
);
3636 DRM_ERROR("Duplicating state failed with %i\n", ret
);
3640 ret
= drm_atomic_helper_disable_all(dev
, ctx
);
3642 DRM_ERROR("Suspending crtc's failed with %i\n", ret
);
3643 drm_atomic_state_put(state
);
3647 dev_priv
->modeset_restore_state
= state
;
3648 state
->acquire_ctx
= ctx
;
3651 void intel_finish_reset(struct drm_i915_private
*dev_priv
)
3653 struct drm_device
*dev
= &dev_priv
->drm
;
3654 struct drm_modeset_acquire_ctx
*ctx
= &dev_priv
->reset_ctx
;
3655 struct drm_atomic_state
*state
= dev_priv
->modeset_restore_state
;
3658 /* reset doesn't touch the display */
3659 if (!i915_modparams
.force_reset_modeset_test
&&
3660 !gpu_reset_clobbers_display(dev_priv
))
3666 dev_priv
->modeset_restore_state
= NULL
;
3668 /* reset doesn't touch the display */
3669 if (!gpu_reset_clobbers_display(dev_priv
)) {
3670 /* for testing only restore the display */
3671 ret
= __intel_display_resume(dev
, state
, ctx
);
3673 DRM_ERROR("Restoring old state failed with %i\n", ret
);
3676 * The display has been reset as well,
3677 * so need a full re-initialization.
3679 intel_runtime_pm_disable_interrupts(dev_priv
);
3680 intel_runtime_pm_enable_interrupts(dev_priv
);
3682 intel_pps_unlock_regs_wa(dev_priv
);
3683 intel_modeset_init_hw(dev
);
3684 intel_init_clock_gating(dev_priv
);
3686 spin_lock_irq(&dev_priv
->irq_lock
);
3687 if (dev_priv
->display
.hpd_irq_setup
)
3688 dev_priv
->display
.hpd_irq_setup(dev_priv
);
3689 spin_unlock_irq(&dev_priv
->irq_lock
);
3691 ret
= __intel_display_resume(dev
, state
, ctx
);
3693 DRM_ERROR("Restoring old state failed with %i\n", ret
);
3695 intel_hpd_init(dev_priv
);
3698 drm_atomic_state_put(state
);
3700 drm_modeset_drop_locks(ctx
);
3701 drm_modeset_acquire_fini(ctx
);
3702 mutex_unlock(&dev
->mode_config
.mutex
);
3704 clear_bit(I915_RESET_MODESET
, &dev_priv
->gpu_error
.flags
);
3707 static void intel_update_pipe_config(const struct intel_crtc_state
*old_crtc_state
,
3708 const struct intel_crtc_state
*new_crtc_state
)
3710 struct intel_crtc
*crtc
= to_intel_crtc(new_crtc_state
->base
.crtc
);
3711 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
3713 /* drm_atomic_helper_update_legacy_modeset_state might not be called. */
3714 crtc
->base
.mode
= new_crtc_state
->base
.mode
;
3717 * Update pipe size and adjust fitter if needed: the reason for this is
3718 * that in compute_mode_changes we check the native mode (not the pfit
3719 * mode) to see if we can flip rather than do a full mode set. In the
3720 * fastboot case, we'll flip, but if we don't update the pipesrc and
3721 * pfit state, we'll end up with a big fb scanned out into the wrong
3725 I915_WRITE(PIPESRC(crtc
->pipe
),
3726 ((new_crtc_state
->pipe_src_w
- 1) << 16) |
3727 (new_crtc_state
->pipe_src_h
- 1));
3729 /* on skylake this is done by detaching scalers */
3730 if (INTEL_GEN(dev_priv
) >= 9) {
3731 skl_detach_scalers(crtc
);
3733 if (new_crtc_state
->pch_pfit
.enabled
)
3734 skylake_pfit_enable(crtc
);
3735 } else if (HAS_PCH_SPLIT(dev_priv
)) {
3736 if (new_crtc_state
->pch_pfit
.enabled
)
3737 ironlake_pfit_enable(crtc
);
3738 else if (old_crtc_state
->pch_pfit
.enabled
)
3739 ironlake_pfit_disable(crtc
, true);
3743 static void intel_fdi_normal_train(struct intel_crtc
*crtc
)
3745 struct drm_device
*dev
= crtc
->base
.dev
;
3746 struct drm_i915_private
*dev_priv
= to_i915(dev
);
3747 int pipe
= crtc
->pipe
;
3751 /* enable normal train */
3752 reg
= FDI_TX_CTL(pipe
);
3753 temp
= I915_READ(reg
);
3754 if (IS_IVYBRIDGE(dev_priv
)) {
3755 temp
&= ~FDI_LINK_TRAIN_NONE_IVB
;
3756 temp
|= FDI_LINK_TRAIN_NONE_IVB
| FDI_TX_ENHANCE_FRAME_ENABLE
;
3758 temp
&= ~FDI_LINK_TRAIN_NONE
;
3759 temp
|= FDI_LINK_TRAIN_NONE
| FDI_TX_ENHANCE_FRAME_ENABLE
;
3761 I915_WRITE(reg
, temp
);
3763 reg
= FDI_RX_CTL(pipe
);
3764 temp
= I915_READ(reg
);
3765 if (HAS_PCH_CPT(dev_priv
)) {
3766 temp
&= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT
;
3767 temp
|= FDI_LINK_TRAIN_NORMAL_CPT
;
3769 temp
&= ~FDI_LINK_TRAIN_NONE
;
3770 temp
|= FDI_LINK_TRAIN_NONE
;
3772 I915_WRITE(reg
, temp
| FDI_RX_ENHANCE_FRAME_ENABLE
);
3774 /* wait one idle pattern time */
3778 /* IVB wants error correction enabled */
3779 if (IS_IVYBRIDGE(dev_priv
))
3780 I915_WRITE(reg
, I915_READ(reg
) | FDI_FS_ERRC_ENABLE
|
3781 FDI_FE_ERRC_ENABLE
);
3784 /* The FDI link training functions for ILK/Ibexpeak. */
3785 static void ironlake_fdi_link_train(struct intel_crtc
*crtc
,
3786 const struct intel_crtc_state
*crtc_state
)
3788 struct drm_device
*dev
= crtc
->base
.dev
;
3789 struct drm_i915_private
*dev_priv
= to_i915(dev
);
3790 int pipe
= crtc
->pipe
;
3794 /* FDI needs bits from pipe first */
3795 assert_pipe_enabled(dev_priv
, pipe
);
3797 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3799 reg
= FDI_RX_IMR(pipe
);
3800 temp
= I915_READ(reg
);
3801 temp
&= ~FDI_RX_SYMBOL_LOCK
;
3802 temp
&= ~FDI_RX_BIT_LOCK
;
3803 I915_WRITE(reg
, temp
);
3807 /* enable CPU FDI TX and PCH FDI RX */
3808 reg
= FDI_TX_CTL(pipe
);
3809 temp
= I915_READ(reg
);
3810 temp
&= ~FDI_DP_PORT_WIDTH_MASK
;
3811 temp
|= FDI_DP_PORT_WIDTH(crtc_state
->fdi_lanes
);
3812 temp
&= ~FDI_LINK_TRAIN_NONE
;
3813 temp
|= FDI_LINK_TRAIN_PATTERN_1
;
3814 I915_WRITE(reg
, temp
| FDI_TX_ENABLE
);
3816 reg
= FDI_RX_CTL(pipe
);
3817 temp
= I915_READ(reg
);
3818 temp
&= ~FDI_LINK_TRAIN_NONE
;
3819 temp
|= FDI_LINK_TRAIN_PATTERN_1
;
3820 I915_WRITE(reg
, temp
| FDI_RX_ENABLE
);
3825 /* Ironlake workaround, enable clock pointer after FDI enable*/
3826 I915_WRITE(FDI_RX_CHICKEN(pipe
), FDI_RX_PHASE_SYNC_POINTER_OVR
);
3827 I915_WRITE(FDI_RX_CHICKEN(pipe
), FDI_RX_PHASE_SYNC_POINTER_OVR
|
3828 FDI_RX_PHASE_SYNC_POINTER_EN
);
3830 reg
= FDI_RX_IIR(pipe
);
3831 for (tries
= 0; tries
< 5; tries
++) {
3832 temp
= I915_READ(reg
);
3833 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp
);
3835 if ((temp
& FDI_RX_BIT_LOCK
)) {
3836 DRM_DEBUG_KMS("FDI train 1 done.\n");
3837 I915_WRITE(reg
, temp
| FDI_RX_BIT_LOCK
);
3842 DRM_ERROR("FDI train 1 fail!\n");
3845 reg
= FDI_TX_CTL(pipe
);
3846 temp
= I915_READ(reg
);
3847 temp
&= ~FDI_LINK_TRAIN_NONE
;
3848 temp
|= FDI_LINK_TRAIN_PATTERN_2
;
3849 I915_WRITE(reg
, temp
);
3851 reg
= FDI_RX_CTL(pipe
);
3852 temp
= I915_READ(reg
);
3853 temp
&= ~FDI_LINK_TRAIN_NONE
;
3854 temp
|= FDI_LINK_TRAIN_PATTERN_2
;
3855 I915_WRITE(reg
, temp
);
3860 reg
= FDI_RX_IIR(pipe
);
3861 for (tries
= 0; tries
< 5; tries
++) {
3862 temp
= I915_READ(reg
);
3863 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp
);
3865 if (temp
& FDI_RX_SYMBOL_LOCK
) {
3866 I915_WRITE(reg
, temp
| FDI_RX_SYMBOL_LOCK
);
3867 DRM_DEBUG_KMS("FDI train 2 done.\n");
3872 DRM_ERROR("FDI train 2 fail!\n");
3874 DRM_DEBUG_KMS("FDI train done\n");
3878 static const int snb_b_fdi_train_param
[] = {
3879 FDI_LINK_TRAIN_400MV_0DB_SNB_B
,
3880 FDI_LINK_TRAIN_400MV_6DB_SNB_B
,
3881 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B
,
3882 FDI_LINK_TRAIN_800MV_0DB_SNB_B
,
3885 /* The FDI link training functions for SNB/Cougarpoint. */
3886 static void gen6_fdi_link_train(struct intel_crtc
*crtc
,
3887 const struct intel_crtc_state
*crtc_state
)
3889 struct drm_device
*dev
= crtc
->base
.dev
;
3890 struct drm_i915_private
*dev_priv
= to_i915(dev
);
3891 int pipe
= crtc
->pipe
;
3895 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3897 reg
= FDI_RX_IMR(pipe
);
3898 temp
= I915_READ(reg
);
3899 temp
&= ~FDI_RX_SYMBOL_LOCK
;
3900 temp
&= ~FDI_RX_BIT_LOCK
;
3901 I915_WRITE(reg
, temp
);
3906 /* enable CPU FDI TX and PCH FDI RX */
3907 reg
= FDI_TX_CTL(pipe
);
3908 temp
= I915_READ(reg
);
3909 temp
&= ~FDI_DP_PORT_WIDTH_MASK
;
3910 temp
|= FDI_DP_PORT_WIDTH(crtc_state
->fdi_lanes
);
3911 temp
&= ~FDI_LINK_TRAIN_NONE
;
3912 temp
|= FDI_LINK_TRAIN_PATTERN_1
;
3913 temp
&= ~FDI_LINK_TRAIN_VOL_EMP_MASK
;
3915 temp
|= FDI_LINK_TRAIN_400MV_0DB_SNB_B
;
3916 I915_WRITE(reg
, temp
| FDI_TX_ENABLE
);
3918 I915_WRITE(FDI_RX_MISC(pipe
),
3919 FDI_RX_TP1_TO_TP2_48
| FDI_RX_FDI_DELAY_90
);
3921 reg
= FDI_RX_CTL(pipe
);
3922 temp
= I915_READ(reg
);
3923 if (HAS_PCH_CPT(dev_priv
)) {
3924 temp
&= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT
;
3925 temp
|= FDI_LINK_TRAIN_PATTERN_1_CPT
;
3927 temp
&= ~FDI_LINK_TRAIN_NONE
;
3928 temp
|= FDI_LINK_TRAIN_PATTERN_1
;
3930 I915_WRITE(reg
, temp
| FDI_RX_ENABLE
);
3935 for (i
= 0; i
< 4; i
++) {
3936 reg
= FDI_TX_CTL(pipe
);
3937 temp
= I915_READ(reg
);
3938 temp
&= ~FDI_LINK_TRAIN_VOL_EMP_MASK
;
3939 temp
|= snb_b_fdi_train_param
[i
];
3940 I915_WRITE(reg
, temp
);
3945 for (retry
= 0; retry
< 5; retry
++) {
3946 reg
= FDI_RX_IIR(pipe
);
3947 temp
= I915_READ(reg
);
3948 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp
);
3949 if (temp
& FDI_RX_BIT_LOCK
) {
3950 I915_WRITE(reg
, temp
| FDI_RX_BIT_LOCK
);
3951 DRM_DEBUG_KMS("FDI train 1 done.\n");
3960 DRM_ERROR("FDI train 1 fail!\n");
3963 reg
= FDI_TX_CTL(pipe
);
3964 temp
= I915_READ(reg
);
3965 temp
&= ~FDI_LINK_TRAIN_NONE
;
3966 temp
|= FDI_LINK_TRAIN_PATTERN_2
;
3967 if (IS_GEN6(dev_priv
)) {
3968 temp
&= ~FDI_LINK_TRAIN_VOL_EMP_MASK
;
3970 temp
|= FDI_LINK_TRAIN_400MV_0DB_SNB_B
;
3972 I915_WRITE(reg
, temp
);
3974 reg
= FDI_RX_CTL(pipe
);
3975 temp
= I915_READ(reg
);
3976 if (HAS_PCH_CPT(dev_priv
)) {
3977 temp
&= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT
;
3978 temp
|= FDI_LINK_TRAIN_PATTERN_2_CPT
;
3980 temp
&= ~FDI_LINK_TRAIN_NONE
;
3981 temp
|= FDI_LINK_TRAIN_PATTERN_2
;
3983 I915_WRITE(reg
, temp
);
3988 for (i
= 0; i
< 4; i
++) {
3989 reg
= FDI_TX_CTL(pipe
);
3990 temp
= I915_READ(reg
);
3991 temp
&= ~FDI_LINK_TRAIN_VOL_EMP_MASK
;
3992 temp
|= snb_b_fdi_train_param
[i
];
3993 I915_WRITE(reg
, temp
);
3998 for (retry
= 0; retry
< 5; retry
++) {
3999 reg
= FDI_RX_IIR(pipe
);
4000 temp
= I915_READ(reg
);
4001 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp
);
4002 if (temp
& FDI_RX_SYMBOL_LOCK
) {
4003 I915_WRITE(reg
, temp
| FDI_RX_SYMBOL_LOCK
);
4004 DRM_DEBUG_KMS("FDI train 2 done.\n");
4013 DRM_ERROR("FDI train 2 fail!\n");
4015 DRM_DEBUG_KMS("FDI train done.\n");
4018 /* Manual link training for Ivy Bridge A0 parts */
4019 static void ivb_manual_fdi_link_train(struct intel_crtc
*crtc
,
4020 const struct intel_crtc_state
*crtc_state
)
4022 struct drm_device
*dev
= crtc
->base
.dev
;
4023 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4024 int pipe
= crtc
->pipe
;
4028 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
4030 reg
= FDI_RX_IMR(pipe
);
4031 temp
= I915_READ(reg
);
4032 temp
&= ~FDI_RX_SYMBOL_LOCK
;
4033 temp
&= ~FDI_RX_BIT_LOCK
;
4034 I915_WRITE(reg
, temp
);
4039 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
4040 I915_READ(FDI_RX_IIR(pipe
)));
4042 /* Try each vswing and preemphasis setting twice before moving on */
4043 for (j
= 0; j
< ARRAY_SIZE(snb_b_fdi_train_param
) * 2; j
++) {
4044 /* disable first in case we need to retry */
4045 reg
= FDI_TX_CTL(pipe
);
4046 temp
= I915_READ(reg
);
4047 temp
&= ~(FDI_LINK_TRAIN_AUTO
| FDI_LINK_TRAIN_NONE_IVB
);
4048 temp
&= ~FDI_TX_ENABLE
;
4049 I915_WRITE(reg
, temp
);
4051 reg
= FDI_RX_CTL(pipe
);
4052 temp
= I915_READ(reg
);
4053 temp
&= ~FDI_LINK_TRAIN_AUTO
;
4054 temp
&= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT
;
4055 temp
&= ~FDI_RX_ENABLE
;
4056 I915_WRITE(reg
, temp
);
4058 /* enable CPU FDI TX and PCH FDI RX */
4059 reg
= FDI_TX_CTL(pipe
);
4060 temp
= I915_READ(reg
);
4061 temp
&= ~FDI_DP_PORT_WIDTH_MASK
;
4062 temp
|= FDI_DP_PORT_WIDTH(crtc_state
->fdi_lanes
);
4063 temp
|= FDI_LINK_TRAIN_PATTERN_1_IVB
;
4064 temp
&= ~FDI_LINK_TRAIN_VOL_EMP_MASK
;
4065 temp
|= snb_b_fdi_train_param
[j
/2];
4066 temp
|= FDI_COMPOSITE_SYNC
;
4067 I915_WRITE(reg
, temp
| FDI_TX_ENABLE
);
4069 I915_WRITE(FDI_RX_MISC(pipe
),
4070 FDI_RX_TP1_TO_TP2_48
| FDI_RX_FDI_DELAY_90
);
4072 reg
= FDI_RX_CTL(pipe
);
4073 temp
= I915_READ(reg
);
4074 temp
|= FDI_LINK_TRAIN_PATTERN_1_CPT
;
4075 temp
|= FDI_COMPOSITE_SYNC
;
4076 I915_WRITE(reg
, temp
| FDI_RX_ENABLE
);
4079 udelay(1); /* should be 0.5us */
4081 for (i
= 0; i
< 4; i
++) {
4082 reg
= FDI_RX_IIR(pipe
);
4083 temp
= I915_READ(reg
);
4084 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp
);
4086 if (temp
& FDI_RX_BIT_LOCK
||
4087 (I915_READ(reg
) & FDI_RX_BIT_LOCK
)) {
4088 I915_WRITE(reg
, temp
| FDI_RX_BIT_LOCK
);
4089 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
4093 udelay(1); /* should be 0.5us */
4096 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j
/ 2);
4101 reg
= FDI_TX_CTL(pipe
);
4102 temp
= I915_READ(reg
);
4103 temp
&= ~FDI_LINK_TRAIN_NONE_IVB
;
4104 temp
|= FDI_LINK_TRAIN_PATTERN_2_IVB
;
4105 I915_WRITE(reg
, temp
);
4107 reg
= FDI_RX_CTL(pipe
);
4108 temp
= I915_READ(reg
);
4109 temp
&= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT
;
4110 temp
|= FDI_LINK_TRAIN_PATTERN_2_CPT
;
4111 I915_WRITE(reg
, temp
);
4114 udelay(2); /* should be 1.5us */
4116 for (i
= 0; i
< 4; i
++) {
4117 reg
= FDI_RX_IIR(pipe
);
4118 temp
= I915_READ(reg
);
4119 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp
);
4121 if (temp
& FDI_RX_SYMBOL_LOCK
||
4122 (I915_READ(reg
) & FDI_RX_SYMBOL_LOCK
)) {
4123 I915_WRITE(reg
, temp
| FDI_RX_SYMBOL_LOCK
);
4124 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
4128 udelay(2); /* should be 1.5us */
4131 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j
/ 2);
4135 DRM_DEBUG_KMS("FDI train done.\n");
4138 static void ironlake_fdi_pll_enable(struct intel_crtc
*intel_crtc
)
4140 struct drm_device
*dev
= intel_crtc
->base
.dev
;
4141 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4142 int pipe
= intel_crtc
->pipe
;
4146 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
4147 reg
= FDI_RX_CTL(pipe
);
4148 temp
= I915_READ(reg
);
4149 temp
&= ~(FDI_DP_PORT_WIDTH_MASK
| (0x7 << 16));
4150 temp
|= FDI_DP_PORT_WIDTH(intel_crtc
->config
->fdi_lanes
);
4151 temp
|= (I915_READ(PIPECONF(pipe
)) & PIPECONF_BPC_MASK
) << 11;
4152 I915_WRITE(reg
, temp
| FDI_RX_PLL_ENABLE
);
4157 /* Switch from Rawclk to PCDclk */
4158 temp
= I915_READ(reg
);
4159 I915_WRITE(reg
, temp
| FDI_PCDCLK
);
4164 /* Enable CPU FDI TX PLL, always on for Ironlake */
4165 reg
= FDI_TX_CTL(pipe
);
4166 temp
= I915_READ(reg
);
4167 if ((temp
& FDI_TX_PLL_ENABLE
) == 0) {
4168 I915_WRITE(reg
, temp
| FDI_TX_PLL_ENABLE
);
4175 static void ironlake_fdi_pll_disable(struct intel_crtc
*intel_crtc
)
4177 struct drm_device
*dev
= intel_crtc
->base
.dev
;
4178 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4179 int pipe
= intel_crtc
->pipe
;
4183 /* Switch from PCDclk to Rawclk */
4184 reg
= FDI_RX_CTL(pipe
);
4185 temp
= I915_READ(reg
);
4186 I915_WRITE(reg
, temp
& ~FDI_PCDCLK
);
4188 /* Disable CPU FDI TX PLL */
4189 reg
= FDI_TX_CTL(pipe
);
4190 temp
= I915_READ(reg
);
4191 I915_WRITE(reg
, temp
& ~FDI_TX_PLL_ENABLE
);
4196 reg
= FDI_RX_CTL(pipe
);
4197 temp
= I915_READ(reg
);
4198 I915_WRITE(reg
, temp
& ~FDI_RX_PLL_ENABLE
);
4200 /* Wait for the clocks to turn off. */
4205 static void ironlake_fdi_disable(struct drm_crtc
*crtc
)
4207 struct drm_device
*dev
= crtc
->dev
;
4208 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4209 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
4210 int pipe
= intel_crtc
->pipe
;
4214 /* disable CPU FDI tx and PCH FDI rx */
4215 reg
= FDI_TX_CTL(pipe
);
4216 temp
= I915_READ(reg
);
4217 I915_WRITE(reg
, temp
& ~FDI_TX_ENABLE
);
4220 reg
= FDI_RX_CTL(pipe
);
4221 temp
= I915_READ(reg
);
4222 temp
&= ~(0x7 << 16);
4223 temp
|= (I915_READ(PIPECONF(pipe
)) & PIPECONF_BPC_MASK
) << 11;
4224 I915_WRITE(reg
, temp
& ~FDI_RX_ENABLE
);
4229 /* Ironlake workaround, disable clock pointer after downing FDI */
4230 if (HAS_PCH_IBX(dev_priv
))
4231 I915_WRITE(FDI_RX_CHICKEN(pipe
), FDI_RX_PHASE_SYNC_POINTER_OVR
);
4233 /* still set train pattern 1 */
4234 reg
= FDI_TX_CTL(pipe
);
4235 temp
= I915_READ(reg
);
4236 temp
&= ~FDI_LINK_TRAIN_NONE
;
4237 temp
|= FDI_LINK_TRAIN_PATTERN_1
;
4238 I915_WRITE(reg
, temp
);
4240 reg
= FDI_RX_CTL(pipe
);
4241 temp
= I915_READ(reg
);
4242 if (HAS_PCH_CPT(dev_priv
)) {
4243 temp
&= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT
;
4244 temp
|= FDI_LINK_TRAIN_PATTERN_1_CPT
;
4246 temp
&= ~FDI_LINK_TRAIN_NONE
;
4247 temp
|= FDI_LINK_TRAIN_PATTERN_1
;
4249 /* BPC in FDI rx is consistent with that in PIPECONF */
4250 temp
&= ~(0x07 << 16);
4251 temp
|= (I915_READ(PIPECONF(pipe
)) & PIPECONF_BPC_MASK
) << 11;
4252 I915_WRITE(reg
, temp
);
4258 bool intel_has_pending_fb_unpin(struct drm_i915_private
*dev_priv
)
4260 struct drm_crtc
*crtc
;
4263 drm_for_each_crtc(crtc
, &dev_priv
->drm
) {
4264 struct drm_crtc_commit
*commit
;
4265 spin_lock(&crtc
->commit_lock
);
4266 commit
= list_first_entry_or_null(&crtc
->commit_list
,
4267 struct drm_crtc_commit
, commit_entry
);
4268 cleanup_done
= commit
?
4269 try_wait_for_completion(&commit
->cleanup_done
) : true;
4270 spin_unlock(&crtc
->commit_lock
);
4275 drm_crtc_wait_one_vblank(crtc
);
4283 void lpt_disable_iclkip(struct drm_i915_private
*dev_priv
)
4287 I915_WRITE(PIXCLK_GATE
, PIXCLK_GATE_GATE
);
4289 mutex_lock(&dev_priv
->sb_lock
);
4291 temp
= intel_sbi_read(dev_priv
, SBI_SSCCTL6
, SBI_ICLK
);
4292 temp
|= SBI_SSCCTL_DISABLE
;
4293 intel_sbi_write(dev_priv
, SBI_SSCCTL6
, temp
, SBI_ICLK
);
4295 mutex_unlock(&dev_priv
->sb_lock
);
4298 /* Program iCLKIP clock to the desired frequency */
4299 static void lpt_program_iclkip(struct intel_crtc
*crtc
)
4301 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
4302 int clock
= crtc
->config
->base
.adjusted_mode
.crtc_clock
;
4303 u32 divsel
, phaseinc
, auxdiv
, phasedir
= 0;
4306 lpt_disable_iclkip(dev_priv
);
4308 /* The iCLK virtual clock root frequency is in MHz,
4309 * but the adjusted_mode->crtc_clock in in KHz. To get the
4310 * divisors, it is necessary to divide one by another, so we
4311 * convert the virtual clock precision to KHz here for higher
4314 for (auxdiv
= 0; auxdiv
< 2; auxdiv
++) {
4315 u32 iclk_virtual_root_freq
= 172800 * 1000;
4316 u32 iclk_pi_range
= 64;
4317 u32 desired_divisor
;
4319 desired_divisor
= DIV_ROUND_CLOSEST(iclk_virtual_root_freq
,
4321 divsel
= (desired_divisor
/ iclk_pi_range
) - 2;
4322 phaseinc
= desired_divisor
% iclk_pi_range
;
4325 * Near 20MHz is a corner case which is
4326 * out of range for the 7-bit divisor
4332 /* This should not happen with any sane values */
4333 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel
) &
4334 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK
);
4335 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir
) &
4336 ~SBI_SSCDIVINTPHASE_INCVAL_MASK
);
4338 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
4345 mutex_lock(&dev_priv
->sb_lock
);
4347 /* Program SSCDIVINTPHASE6 */
4348 temp
= intel_sbi_read(dev_priv
, SBI_SSCDIVINTPHASE6
, SBI_ICLK
);
4349 temp
&= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK
;
4350 temp
|= SBI_SSCDIVINTPHASE_DIVSEL(divsel
);
4351 temp
&= ~SBI_SSCDIVINTPHASE_INCVAL_MASK
;
4352 temp
|= SBI_SSCDIVINTPHASE_INCVAL(phaseinc
);
4353 temp
|= SBI_SSCDIVINTPHASE_DIR(phasedir
);
4354 temp
|= SBI_SSCDIVINTPHASE_PROPAGATE
;
4355 intel_sbi_write(dev_priv
, SBI_SSCDIVINTPHASE6
, temp
, SBI_ICLK
);
4357 /* Program SSCAUXDIV */
4358 temp
= intel_sbi_read(dev_priv
, SBI_SSCAUXDIV6
, SBI_ICLK
);
4359 temp
&= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
4360 temp
|= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv
);
4361 intel_sbi_write(dev_priv
, SBI_SSCAUXDIV6
, temp
, SBI_ICLK
);
4363 /* Enable modulator and associated divider */
4364 temp
= intel_sbi_read(dev_priv
, SBI_SSCCTL6
, SBI_ICLK
);
4365 temp
&= ~SBI_SSCCTL_DISABLE
;
4366 intel_sbi_write(dev_priv
, SBI_SSCCTL6
, temp
, SBI_ICLK
);
4368 mutex_unlock(&dev_priv
->sb_lock
);
4370 /* Wait for initialization time */
4373 I915_WRITE(PIXCLK_GATE
, PIXCLK_GATE_UNGATE
);
4376 int lpt_get_iclkip(struct drm_i915_private
*dev_priv
)
4378 u32 divsel
, phaseinc
, auxdiv
;
4379 u32 iclk_virtual_root_freq
= 172800 * 1000;
4380 u32 iclk_pi_range
= 64;
4381 u32 desired_divisor
;
4384 if ((I915_READ(PIXCLK_GATE
) & PIXCLK_GATE_UNGATE
) == 0)
4387 mutex_lock(&dev_priv
->sb_lock
);
4389 temp
= intel_sbi_read(dev_priv
, SBI_SSCCTL6
, SBI_ICLK
);
4390 if (temp
& SBI_SSCCTL_DISABLE
) {
4391 mutex_unlock(&dev_priv
->sb_lock
);
4395 temp
= intel_sbi_read(dev_priv
, SBI_SSCDIVINTPHASE6
, SBI_ICLK
);
4396 divsel
= (temp
& SBI_SSCDIVINTPHASE_DIVSEL_MASK
) >>
4397 SBI_SSCDIVINTPHASE_DIVSEL_SHIFT
;
4398 phaseinc
= (temp
& SBI_SSCDIVINTPHASE_INCVAL_MASK
) >>
4399 SBI_SSCDIVINTPHASE_INCVAL_SHIFT
;
4401 temp
= intel_sbi_read(dev_priv
, SBI_SSCAUXDIV6
, SBI_ICLK
);
4402 auxdiv
= (temp
& SBI_SSCAUXDIV_FINALDIV2SEL_MASK
) >>
4403 SBI_SSCAUXDIV_FINALDIV2SEL_SHIFT
;
4405 mutex_unlock(&dev_priv
->sb_lock
);
4407 desired_divisor
= (divsel
+ 2) * iclk_pi_range
+ phaseinc
;
4409 return DIV_ROUND_CLOSEST(iclk_virtual_root_freq
,
4410 desired_divisor
<< auxdiv
);
4413 static void ironlake_pch_transcoder_set_timings(struct intel_crtc
*crtc
,
4414 enum pipe pch_transcoder
)
4416 struct drm_device
*dev
= crtc
->base
.dev
;
4417 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4418 enum transcoder cpu_transcoder
= crtc
->config
->cpu_transcoder
;
4420 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder
),
4421 I915_READ(HTOTAL(cpu_transcoder
)));
4422 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder
),
4423 I915_READ(HBLANK(cpu_transcoder
)));
4424 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder
),
4425 I915_READ(HSYNC(cpu_transcoder
)));
4427 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder
),
4428 I915_READ(VTOTAL(cpu_transcoder
)));
4429 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder
),
4430 I915_READ(VBLANK(cpu_transcoder
)));
4431 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder
),
4432 I915_READ(VSYNC(cpu_transcoder
)));
4433 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder
),
4434 I915_READ(VSYNCSHIFT(cpu_transcoder
)));
4437 static void cpt_set_fdi_bc_bifurcation(struct drm_device
*dev
, bool enable
)
4439 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4442 temp
= I915_READ(SOUTH_CHICKEN1
);
4443 if (!!(temp
& FDI_BC_BIFURCATION_SELECT
) == enable
)
4446 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B
)) & FDI_RX_ENABLE
);
4447 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C
)) & FDI_RX_ENABLE
);
4449 temp
&= ~FDI_BC_BIFURCATION_SELECT
;
4451 temp
|= FDI_BC_BIFURCATION_SELECT
;
4453 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable
? "en" : "dis");
4454 I915_WRITE(SOUTH_CHICKEN1
, temp
);
4455 POSTING_READ(SOUTH_CHICKEN1
);
4458 static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc
*intel_crtc
)
4460 struct drm_device
*dev
= intel_crtc
->base
.dev
;
4462 switch (intel_crtc
->pipe
) {
4466 if (intel_crtc
->config
->fdi_lanes
> 2)
4467 cpt_set_fdi_bc_bifurcation(dev
, false);
4469 cpt_set_fdi_bc_bifurcation(dev
, true);
4473 cpt_set_fdi_bc_bifurcation(dev
, true);
4481 /* Return which DP Port should be selected for Transcoder DP control */
4483 intel_trans_dp_port_sel(struct intel_crtc
*crtc
)
4485 struct drm_device
*dev
= crtc
->base
.dev
;
4486 struct intel_encoder
*encoder
;
4488 for_each_encoder_on_crtc(dev
, &crtc
->base
, encoder
) {
4489 if (encoder
->type
== INTEL_OUTPUT_DP
||
4490 encoder
->type
== INTEL_OUTPUT_EDP
)
4491 return encoder
->port
;
4498 * Enable PCH resources required for PCH ports:
4500 * - FDI training & RX/TX
4501 * - update transcoder timings
4502 * - DP transcoding bits
4505 static void ironlake_pch_enable(const struct intel_crtc_state
*crtc_state
)
4507 struct intel_crtc
*crtc
= to_intel_crtc(crtc_state
->base
.crtc
);
4508 struct drm_device
*dev
= crtc
->base
.dev
;
4509 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4510 int pipe
= crtc
->pipe
;
4513 assert_pch_transcoder_disabled(dev_priv
, pipe
);
4515 if (IS_IVYBRIDGE(dev_priv
))
4516 ivybridge_update_fdi_bc_bifurcation(crtc
);
4518 /* Write the TU size bits before fdi link training, so that error
4519 * detection works. */
4520 I915_WRITE(FDI_RX_TUSIZE1(pipe
),
4521 I915_READ(PIPE_DATA_M1(pipe
)) & TU_SIZE_MASK
);
4523 /* For PCH output, training FDI link */
4524 dev_priv
->display
.fdi_link_train(crtc
, crtc_state
);
4526 /* We need to program the right clock selection before writing the pixel
4527 * mutliplier into the DPLL. */
4528 if (HAS_PCH_CPT(dev_priv
)) {
4531 temp
= I915_READ(PCH_DPLL_SEL
);
4532 temp
|= TRANS_DPLL_ENABLE(pipe
);
4533 sel
= TRANS_DPLLB_SEL(pipe
);
4534 if (crtc_state
->shared_dpll
==
4535 intel_get_shared_dpll_by_id(dev_priv
, DPLL_ID_PCH_PLL_B
))
4539 I915_WRITE(PCH_DPLL_SEL
, temp
);
4542 /* XXX: pch pll's can be enabled any time before we enable the PCH
4543 * transcoder, and we actually should do this to not upset any PCH
4544 * transcoder that already use the clock when we share it.
4546 * Note that enable_shared_dpll tries to do the right thing, but
4547 * get_shared_dpll unconditionally resets the pll - we need that to have
4548 * the right LVDS enable sequence. */
4549 intel_enable_shared_dpll(crtc
);
4551 /* set transcoder timing, panel must allow it */
4552 assert_panel_unlocked(dev_priv
, pipe
);
4553 ironlake_pch_transcoder_set_timings(crtc
, pipe
);
4555 intel_fdi_normal_train(crtc
);
4557 /* For PCH DP, enable TRANS_DP_CTL */
4558 if (HAS_PCH_CPT(dev_priv
) &&
4559 intel_crtc_has_dp_encoder(crtc_state
)) {
4560 const struct drm_display_mode
*adjusted_mode
=
4561 &crtc_state
->base
.adjusted_mode
;
4562 u32 bpc
= (I915_READ(PIPECONF(pipe
)) & PIPECONF_BPC_MASK
) >> 5;
4563 i915_reg_t reg
= TRANS_DP_CTL(pipe
);
4564 temp
= I915_READ(reg
);
4565 temp
&= ~(TRANS_DP_PORT_SEL_MASK
|
4566 TRANS_DP_SYNC_MASK
|
4568 temp
|= TRANS_DP_OUTPUT_ENABLE
;
4569 temp
|= bpc
<< 9; /* same format but at 11:9 */
4571 if (adjusted_mode
->flags
& DRM_MODE_FLAG_PHSYNC
)
4572 temp
|= TRANS_DP_HSYNC_ACTIVE_HIGH
;
4573 if (adjusted_mode
->flags
& DRM_MODE_FLAG_PVSYNC
)
4574 temp
|= TRANS_DP_VSYNC_ACTIVE_HIGH
;
4576 switch (intel_trans_dp_port_sel(crtc
)) {
4578 temp
|= TRANS_DP_PORT_SEL_B
;
4581 temp
|= TRANS_DP_PORT_SEL_C
;
4584 temp
|= TRANS_DP_PORT_SEL_D
;
4590 I915_WRITE(reg
, temp
);
4593 ironlake_enable_pch_transcoder(dev_priv
, pipe
);
4596 static void lpt_pch_enable(const struct intel_crtc_state
*crtc_state
)
4598 struct intel_crtc
*crtc
= to_intel_crtc(crtc_state
->base
.crtc
);
4599 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
4600 enum transcoder cpu_transcoder
= crtc_state
->cpu_transcoder
;
4602 assert_pch_transcoder_disabled(dev_priv
, PIPE_A
);
4604 lpt_program_iclkip(crtc
);
4606 /* Set transcoder timing. */
4607 ironlake_pch_transcoder_set_timings(crtc
, PIPE_A
);
4609 lpt_enable_pch_transcoder(dev_priv
, cpu_transcoder
);
4612 static void cpt_verify_modeset(struct drm_device
*dev
, int pipe
)
4614 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4615 i915_reg_t dslreg
= PIPEDSL(pipe
);
4618 temp
= I915_READ(dslreg
);
4620 if (wait_for(I915_READ(dslreg
) != temp
, 5)) {
4621 if (wait_for(I915_READ(dslreg
) != temp
, 5))
4622 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe
));
4627 skl_update_scaler(struct intel_crtc_state
*crtc_state
, bool force_detach
,
4628 unsigned int scaler_user
, int *scaler_id
,
4629 int src_w
, int src_h
, int dst_w
, int dst_h
)
4631 struct intel_crtc_scaler_state
*scaler_state
=
4632 &crtc_state
->scaler_state
;
4633 struct intel_crtc
*intel_crtc
=
4634 to_intel_crtc(crtc_state
->base
.crtc
);
4635 struct drm_i915_private
*dev_priv
= to_i915(intel_crtc
->base
.dev
);
4636 const struct drm_display_mode
*adjusted_mode
=
4637 &crtc_state
->base
.adjusted_mode
;
4641 * Src coordinates are already rotated by 270 degrees for
4642 * the 90/270 degree plane rotation cases (to match the
4643 * GTT mapping), hence no need to account for rotation here.
4645 need_scaling
= src_w
!= dst_w
|| src_h
!= dst_h
;
4647 if (crtc_state
->ycbcr420
&& scaler_user
== SKL_CRTC_INDEX
)
4648 need_scaling
= true;
4651 * Scaling/fitting not supported in IF-ID mode in GEN9+
4652 * TODO: Interlace fetch mode doesn't support YUV420 planar formats.
4653 * Once NV12 is enabled, handle it here while allocating scaler
4656 if (INTEL_GEN(dev_priv
) >= 9 && crtc_state
->base
.enable
&&
4657 need_scaling
&& adjusted_mode
->flags
& DRM_MODE_FLAG_INTERLACE
) {
4658 DRM_DEBUG_KMS("Pipe/Plane scaling not supported with IF-ID mode\n");
4663 * if plane is being disabled or scaler is no more required or force detach
4664 * - free scaler binded to this plane/crtc
4665 * - in order to do this, update crtc->scaler_usage
4667 * Here scaler state in crtc_state is set free so that
4668 * scaler can be assigned to other user. Actual register
4669 * update to free the scaler is done in plane/panel-fit programming.
4670 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4672 if (force_detach
|| !need_scaling
) {
4673 if (*scaler_id
>= 0) {
4674 scaler_state
->scaler_users
&= ~(1 << scaler_user
);
4675 scaler_state
->scalers
[*scaler_id
].in_use
= 0;
4677 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4678 "Staged freeing scaler id %d scaler_users = 0x%x\n",
4679 intel_crtc
->pipe
, scaler_user
, *scaler_id
,
4680 scaler_state
->scaler_users
);
4687 if (src_w
< SKL_MIN_SRC_W
|| src_h
< SKL_MIN_SRC_H
||
4688 dst_w
< SKL_MIN_DST_W
|| dst_h
< SKL_MIN_DST_H
||
4690 src_w
> SKL_MAX_SRC_W
|| src_h
> SKL_MAX_SRC_H
||
4691 dst_w
> SKL_MAX_DST_W
|| dst_h
> SKL_MAX_DST_H
) {
4692 DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u "
4693 "size is out of scaler range\n",
4694 intel_crtc
->pipe
, scaler_user
, src_w
, src_h
, dst_w
, dst_h
);
4698 /* mark this plane as a scaler user in crtc_state */
4699 scaler_state
->scaler_users
|= (1 << scaler_user
);
4700 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4701 "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n",
4702 intel_crtc
->pipe
, scaler_user
, src_w
, src_h
, dst_w
, dst_h
,
4703 scaler_state
->scaler_users
);
4709 * skl_update_scaler_crtc - Stages update to scaler state for a given crtc.
4711 * @state: crtc's scaler state
4714 * 0 - scaler_usage updated successfully
4715 * error - requested scaling cannot be supported or other error condition
4717 int skl_update_scaler_crtc(struct intel_crtc_state
*state
)
4719 const struct drm_display_mode
*adjusted_mode
= &state
->base
.adjusted_mode
;
4721 return skl_update_scaler(state
, !state
->base
.active
, SKL_CRTC_INDEX
,
4722 &state
->scaler_state
.scaler_id
,
4723 state
->pipe_src_w
, state
->pipe_src_h
,
4724 adjusted_mode
->crtc_hdisplay
, adjusted_mode
->crtc_vdisplay
);
4728 * skl_update_scaler_plane - Stages update to scaler state for a given plane.
4730 * @state: crtc's scaler state
4731 * @plane_state: atomic plane state to update
4734 * 0 - scaler_usage updated successfully
4735 * error - requested scaling cannot be supported or other error condition
4737 static int skl_update_scaler_plane(struct intel_crtc_state
*crtc_state
,
4738 struct intel_plane_state
*plane_state
)
4741 struct intel_plane
*intel_plane
=
4742 to_intel_plane(plane_state
->base
.plane
);
4743 struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
4746 bool force_detach
= !fb
|| !plane_state
->base
.visible
;
4748 ret
= skl_update_scaler(crtc_state
, force_detach
,
4749 drm_plane_index(&intel_plane
->base
),
4750 &plane_state
->scaler_id
,
4751 drm_rect_width(&plane_state
->base
.src
) >> 16,
4752 drm_rect_height(&plane_state
->base
.src
) >> 16,
4753 drm_rect_width(&plane_state
->base
.dst
),
4754 drm_rect_height(&plane_state
->base
.dst
));
4756 if (ret
|| plane_state
->scaler_id
< 0)
4759 /* check colorkey */
4760 if (plane_state
->ckey
.flags
!= I915_SET_COLORKEY_NONE
) {
4761 DRM_DEBUG_KMS("[PLANE:%d:%s] scaling with color key not allowed",
4762 intel_plane
->base
.base
.id
,
4763 intel_plane
->base
.name
);
4767 /* Check src format */
4768 switch (fb
->format
->format
) {
4769 case DRM_FORMAT_RGB565
:
4770 case DRM_FORMAT_XBGR8888
:
4771 case DRM_FORMAT_XRGB8888
:
4772 case DRM_FORMAT_ABGR8888
:
4773 case DRM_FORMAT_ARGB8888
:
4774 case DRM_FORMAT_XRGB2101010
:
4775 case DRM_FORMAT_XBGR2101010
:
4776 case DRM_FORMAT_YUYV
:
4777 case DRM_FORMAT_YVYU
:
4778 case DRM_FORMAT_UYVY
:
4779 case DRM_FORMAT_VYUY
:
4782 DRM_DEBUG_KMS("[PLANE:%d:%s] FB:%d unsupported scaling format 0x%x\n",
4783 intel_plane
->base
.base
.id
, intel_plane
->base
.name
,
4784 fb
->base
.id
, fb
->format
->format
);
4791 static void skylake_scaler_disable(struct intel_crtc
*crtc
)
4795 for (i
= 0; i
< crtc
->num_scalers
; i
++)
4796 skl_detach_scaler(crtc
, i
);
4799 static void skylake_pfit_enable(struct intel_crtc
*crtc
)
4801 struct drm_device
*dev
= crtc
->base
.dev
;
4802 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4803 int pipe
= crtc
->pipe
;
4804 struct intel_crtc_scaler_state
*scaler_state
=
4805 &crtc
->config
->scaler_state
;
4807 if (crtc
->config
->pch_pfit
.enabled
) {
4810 if (WARN_ON(crtc
->config
->scaler_state
.scaler_id
< 0))
4813 id
= scaler_state
->scaler_id
;
4814 I915_WRITE(SKL_PS_CTRL(pipe
, id
), PS_SCALER_EN
|
4815 PS_FILTER_MEDIUM
| scaler_state
->scalers
[id
].mode
);
4816 I915_WRITE(SKL_PS_WIN_POS(pipe
, id
), crtc
->config
->pch_pfit
.pos
);
4817 I915_WRITE(SKL_PS_WIN_SZ(pipe
, id
), crtc
->config
->pch_pfit
.size
);
4821 static void ironlake_pfit_enable(struct intel_crtc
*crtc
)
4823 struct drm_device
*dev
= crtc
->base
.dev
;
4824 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4825 int pipe
= crtc
->pipe
;
4827 if (crtc
->config
->pch_pfit
.enabled
) {
4828 /* Force use of hard-coded filter coefficients
4829 * as some pre-programmed values are broken,
4832 if (IS_IVYBRIDGE(dev_priv
) || IS_HASWELL(dev_priv
))
4833 I915_WRITE(PF_CTL(pipe
), PF_ENABLE
| PF_FILTER_MED_3x3
|
4834 PF_PIPE_SEL_IVB(pipe
));
4836 I915_WRITE(PF_CTL(pipe
), PF_ENABLE
| PF_FILTER_MED_3x3
);
4837 I915_WRITE(PF_WIN_POS(pipe
), crtc
->config
->pch_pfit
.pos
);
4838 I915_WRITE(PF_WIN_SZ(pipe
), crtc
->config
->pch_pfit
.size
);
4842 void hsw_enable_ips(const struct intel_crtc_state
*crtc_state
)
4844 struct intel_crtc
*crtc
= to_intel_crtc(crtc_state
->base
.crtc
);
4845 struct drm_device
*dev
= crtc
->base
.dev
;
4846 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4848 if (!crtc_state
->ips_enabled
)
4852 * We can only enable IPS after we enable a plane and wait for a vblank
4853 * This function is called from post_plane_update, which is run after
4856 WARN_ON(!(crtc_state
->active_planes
& ~BIT(PLANE_CURSOR
)));
4858 if (IS_BROADWELL(dev_priv
)) {
4859 mutex_lock(&dev_priv
->pcu_lock
);
4860 WARN_ON(sandybridge_pcode_write(dev_priv
, DISPLAY_IPS_CONTROL
,
4861 IPS_ENABLE
| IPS_PCODE_CONTROL
));
4862 mutex_unlock(&dev_priv
->pcu_lock
);
4863 /* Quoting Art Runyan: "its not safe to expect any particular
4864 * value in IPS_CTL bit 31 after enabling IPS through the
4865 * mailbox." Moreover, the mailbox may return a bogus state,
4866 * so we need to just enable it and continue on.
4869 I915_WRITE(IPS_CTL
, IPS_ENABLE
);
4870 /* The bit only becomes 1 in the next vblank, so this wait here
4871 * is essentially intel_wait_for_vblank. If we don't have this
4872 * and don't wait for vblanks until the end of crtc_enable, then
4873 * the HW state readout code will complain that the expected
4874 * IPS_CTL value is not the one we read. */
4875 if (intel_wait_for_register(dev_priv
,
4876 IPS_CTL
, IPS_ENABLE
, IPS_ENABLE
,
4878 DRM_ERROR("Timed out waiting for IPS enable\n");
4882 void hsw_disable_ips(const struct intel_crtc_state
*crtc_state
)
4884 struct intel_crtc
*crtc
= to_intel_crtc(crtc_state
->base
.crtc
);
4885 struct drm_device
*dev
= crtc
->base
.dev
;
4886 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4888 if (!crtc_state
->ips_enabled
)
4891 if (IS_BROADWELL(dev_priv
)) {
4892 mutex_lock(&dev_priv
->pcu_lock
);
4893 WARN_ON(sandybridge_pcode_write(dev_priv
, DISPLAY_IPS_CONTROL
, 0));
4894 mutex_unlock(&dev_priv
->pcu_lock
);
4895 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4896 if (intel_wait_for_register(dev_priv
,
4897 IPS_CTL
, IPS_ENABLE
, 0,
4899 DRM_ERROR("Timed out waiting for IPS disable\n");
4901 I915_WRITE(IPS_CTL
, 0);
4902 POSTING_READ(IPS_CTL
);
4905 /* We need to wait for a vblank before we can disable the plane. */
4906 intel_wait_for_vblank(dev_priv
, crtc
->pipe
);
4909 static void intel_crtc_dpms_overlay_disable(struct intel_crtc
*intel_crtc
)
4911 if (intel_crtc
->overlay
) {
4912 struct drm_device
*dev
= intel_crtc
->base
.dev
;
4914 mutex_lock(&dev
->struct_mutex
);
4915 (void) intel_overlay_switch_off(intel_crtc
->overlay
);
4916 mutex_unlock(&dev
->struct_mutex
);
4919 /* Let userspace switch the overlay on again. In most cases userspace
4920 * has to recompute where to put it anyway.
4925 * intel_post_enable_primary - Perform operations after enabling primary plane
4926 * @crtc: the CRTC whose primary plane was just enabled
4928 * Performs potentially sleeping operations that must be done after the primary
4929 * plane is enabled, such as updating FBC and IPS. Note that this may be
4930 * called due to an explicit primary plane update, or due to an implicit
4931 * re-enable that is caused when a sprite plane is updated to no longer
4932 * completely hide the primary plane.
4935 intel_post_enable_primary(struct drm_crtc
*crtc
,
4936 const struct intel_crtc_state
*new_crtc_state
)
4938 struct drm_device
*dev
= crtc
->dev
;
4939 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4940 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
4941 int pipe
= intel_crtc
->pipe
;
4944 * Gen2 reports pipe underruns whenever all planes are disabled.
4945 * So don't enable underrun reporting before at least some planes
4947 * FIXME: Need to fix the logic to work when we turn off all planes
4948 * but leave the pipe running.
4950 if (IS_GEN2(dev_priv
))
4951 intel_set_cpu_fifo_underrun_reporting(dev_priv
, pipe
, true);
4953 /* Underruns don't always raise interrupts, so check manually. */
4954 intel_check_cpu_fifo_underruns(dev_priv
);
4955 intel_check_pch_fifo_underruns(dev_priv
);
4958 /* FIXME get rid of this and use pre_plane_update */
4960 intel_pre_disable_primary_noatomic(struct drm_crtc
*crtc
)
4962 struct drm_device
*dev
= crtc
->dev
;
4963 struct drm_i915_private
*dev_priv
= to_i915(dev
);
4964 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
4965 int pipe
= intel_crtc
->pipe
;
4968 * Gen2 reports pipe underruns whenever all planes are disabled.
4969 * So disable underrun reporting before all the planes get disabled.
4971 if (IS_GEN2(dev_priv
))
4972 intel_set_cpu_fifo_underrun_reporting(dev_priv
, pipe
, false);
4974 hsw_disable_ips(to_intel_crtc_state(crtc
->state
));
4977 * Vblank time updates from the shadow to live plane control register
4978 * are blocked if the memory self-refresh mode is active at that
4979 * moment. So to make sure the plane gets truly disabled, disable
4980 * first the self-refresh mode. The self-refresh enable bit in turn
4981 * will be checked/applied by the HW only at the next frame start
4982 * event which is after the vblank start event, so we need to have a
4983 * wait-for-vblank between disabling the plane and the pipe.
4985 if (HAS_GMCH_DISPLAY(dev_priv
) &&
4986 intel_set_memory_cxsr(dev_priv
, false))
4987 intel_wait_for_vblank(dev_priv
, pipe
);
4990 static bool hsw_pre_update_disable_ips(const struct intel_crtc_state
*old_crtc_state
,
4991 const struct intel_crtc_state
*new_crtc_state
)
4993 if (!old_crtc_state
->ips_enabled
)
4996 if (needs_modeset(&new_crtc_state
->base
))
4999 return !new_crtc_state
->ips_enabled
;
5002 static bool hsw_post_update_enable_ips(const struct intel_crtc_state
*old_crtc_state
,
5003 const struct intel_crtc_state
*new_crtc_state
)
5005 if (!new_crtc_state
->ips_enabled
)
5008 if (needs_modeset(&new_crtc_state
->base
))
5012 * We can't read out IPS on broadwell, assume the worst and
5013 * forcibly enable IPS on the first fastset.
5015 if (new_crtc_state
->update_pipe
&&
5016 old_crtc_state
->base
.adjusted_mode
.private_flags
& I915_MODE_FLAG_INHERITED
)
5019 return !old_crtc_state
->ips_enabled
;
5022 static void intel_post_plane_update(struct intel_crtc_state
*old_crtc_state
)
5024 struct intel_crtc
*crtc
= to_intel_crtc(old_crtc_state
->base
.crtc
);
5025 struct drm_atomic_state
*old_state
= old_crtc_state
->base
.state
;
5026 struct intel_crtc_state
*pipe_config
=
5027 intel_atomic_get_new_crtc_state(to_intel_atomic_state(old_state
),
5029 struct drm_plane
*primary
= crtc
->base
.primary
;
5030 struct drm_plane_state
*old_pri_state
=
5031 drm_atomic_get_existing_plane_state(old_state
, primary
);
5033 intel_frontbuffer_flip(to_i915(crtc
->base
.dev
), pipe_config
->fb_bits
);
5035 if (pipe_config
->update_wm_post
&& pipe_config
->base
.active
)
5036 intel_update_watermarks(crtc
);
5038 if (hsw_post_update_enable_ips(old_crtc_state
, pipe_config
))
5039 hsw_enable_ips(pipe_config
);
5041 if (old_pri_state
) {
5042 struct intel_plane_state
*primary_state
=
5043 intel_atomic_get_new_plane_state(to_intel_atomic_state(old_state
),
5044 to_intel_plane(primary
));
5045 struct intel_plane_state
*old_primary_state
=
5046 to_intel_plane_state(old_pri_state
);
5048 intel_fbc_post_update(crtc
);
5050 if (primary_state
->base
.visible
&&
5051 (needs_modeset(&pipe_config
->base
) ||
5052 !old_primary_state
->base
.visible
))
5053 intel_post_enable_primary(&crtc
->base
, pipe_config
);
5057 static void intel_pre_plane_update(struct intel_crtc_state
*old_crtc_state
,
5058 struct intel_crtc_state
*pipe_config
)
5060 struct intel_crtc
*crtc
= to_intel_crtc(old_crtc_state
->base
.crtc
);
5061 struct drm_device
*dev
= crtc
->base
.dev
;
5062 struct drm_i915_private
*dev_priv
= to_i915(dev
);
5063 struct drm_atomic_state
*old_state
= old_crtc_state
->base
.state
;
5064 struct drm_plane
*primary
= crtc
->base
.primary
;
5065 struct drm_plane_state
*old_pri_state
=
5066 drm_atomic_get_existing_plane_state(old_state
, primary
);
5067 bool modeset
= needs_modeset(&pipe_config
->base
);
5068 struct intel_atomic_state
*old_intel_state
=
5069 to_intel_atomic_state(old_state
);
5071 if (hsw_pre_update_disable_ips(old_crtc_state
, pipe_config
))
5072 hsw_disable_ips(old_crtc_state
);
5074 if (old_pri_state
) {
5075 struct intel_plane_state
*primary_state
=
5076 intel_atomic_get_new_plane_state(old_intel_state
,
5077 to_intel_plane(primary
));
5078 struct intel_plane_state
*old_primary_state
=
5079 to_intel_plane_state(old_pri_state
);
5081 intel_fbc_pre_update(crtc
, pipe_config
, primary_state
);
5083 * Gen2 reports pipe underruns whenever all planes are disabled.
5084 * So disable underrun reporting before all the planes get disabled.
5086 if (IS_GEN2(dev_priv
) && old_primary_state
->base
.visible
&&
5087 (modeset
|| !primary_state
->base
.visible
))
5088 intel_set_cpu_fifo_underrun_reporting(dev_priv
, crtc
->pipe
, false);
5092 * Vblank time updates from the shadow to live plane control register
5093 * are blocked if the memory self-refresh mode is active at that
5094 * moment. So to make sure the plane gets truly disabled, disable
5095 * first the self-refresh mode. The self-refresh enable bit in turn
5096 * will be checked/applied by the HW only at the next frame start
5097 * event which is after the vblank start event, so we need to have a
5098 * wait-for-vblank between disabling the plane and the pipe.
5100 if (HAS_GMCH_DISPLAY(dev_priv
) && old_crtc_state
->base
.active
&&
5101 pipe_config
->disable_cxsr
&& intel_set_memory_cxsr(dev_priv
, false))
5102 intel_wait_for_vblank(dev_priv
, crtc
->pipe
);
5105 * IVB workaround: must disable low power watermarks for at least
5106 * one frame before enabling scaling. LP watermarks can be re-enabled
5107 * when scaling is disabled.
5109 * WaCxSRDisabledForSpriteScaling:ivb
5111 if (pipe_config
->disable_lp_wm
&& ilk_disable_lp_wm(dev
))
5112 intel_wait_for_vblank(dev_priv
, crtc
->pipe
);
5115 * If we're doing a modeset, we're done. No need to do any pre-vblank
5116 * watermark programming here.
5118 if (needs_modeset(&pipe_config
->base
))
5122 * For platforms that support atomic watermarks, program the
5123 * 'intermediate' watermarks immediately. On pre-gen9 platforms, these
5124 * will be the intermediate values that are safe for both pre- and
5125 * post- vblank; when vblank happens, the 'active' values will be set
5126 * to the final 'target' values and we'll do this again to get the
5127 * optimal watermarks. For gen9+ platforms, the values we program here
5128 * will be the final target values which will get automatically latched
5129 * at vblank time; no further programming will be necessary.
5131 * If a platform hasn't been transitioned to atomic watermarks yet,
5132 * we'll continue to update watermarks the old way, if flags tell
5135 if (dev_priv
->display
.initial_watermarks
!= NULL
)
5136 dev_priv
->display
.initial_watermarks(old_intel_state
,
5138 else if (pipe_config
->update_wm_pre
)
5139 intel_update_watermarks(crtc
);
5142 static void intel_crtc_disable_planes(struct drm_crtc
*crtc
, unsigned plane_mask
)
5144 struct drm_device
*dev
= crtc
->dev
;
5145 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5146 struct drm_plane
*p
;
5147 int pipe
= intel_crtc
->pipe
;
5149 intel_crtc_dpms_overlay_disable(intel_crtc
);
5151 drm_for_each_plane_mask(p
, dev
, plane_mask
)
5152 to_intel_plane(p
)->disable_plane(to_intel_plane(p
), intel_crtc
);
5155 * FIXME: Once we grow proper nuclear flip support out of this we need
5156 * to compute the mask of flip planes precisely. For the time being
5157 * consider this a flip to a NULL plane.
5159 intel_frontbuffer_flip(to_i915(dev
), INTEL_FRONTBUFFER_ALL_MASK(pipe
));
5162 static void intel_encoders_pre_pll_enable(struct drm_crtc
*crtc
,
5163 struct intel_crtc_state
*crtc_state
,
5164 struct drm_atomic_state
*old_state
)
5166 struct drm_connector_state
*conn_state
;
5167 struct drm_connector
*conn
;
5170 for_each_new_connector_in_state(old_state
, conn
, conn_state
, i
) {
5171 struct intel_encoder
*encoder
=
5172 to_intel_encoder(conn_state
->best_encoder
);
5174 if (conn_state
->crtc
!= crtc
)
5177 if (encoder
->pre_pll_enable
)
5178 encoder
->pre_pll_enable(encoder
, crtc_state
, conn_state
);
5182 static void intel_encoders_pre_enable(struct drm_crtc
*crtc
,
5183 struct intel_crtc_state
*crtc_state
,
5184 struct drm_atomic_state
*old_state
)
5186 struct drm_connector_state
*conn_state
;
5187 struct drm_connector
*conn
;
5190 for_each_new_connector_in_state(old_state
, conn
, conn_state
, i
) {
5191 struct intel_encoder
*encoder
=
5192 to_intel_encoder(conn_state
->best_encoder
);
5194 if (conn_state
->crtc
!= crtc
)
5197 if (encoder
->pre_enable
)
5198 encoder
->pre_enable(encoder
, crtc_state
, conn_state
);
5202 static void intel_encoders_enable(struct drm_crtc
*crtc
,
5203 struct intel_crtc_state
*crtc_state
,
5204 struct drm_atomic_state
*old_state
)
5206 struct drm_connector_state
*conn_state
;
5207 struct drm_connector
*conn
;
5210 for_each_new_connector_in_state(old_state
, conn
, conn_state
, i
) {
5211 struct intel_encoder
*encoder
=
5212 to_intel_encoder(conn_state
->best_encoder
);
5214 if (conn_state
->crtc
!= crtc
)
5217 encoder
->enable(encoder
, crtc_state
, conn_state
);
5218 intel_opregion_notify_encoder(encoder
, true);
5222 static void intel_encoders_disable(struct drm_crtc
*crtc
,
5223 struct intel_crtc_state
*old_crtc_state
,
5224 struct drm_atomic_state
*old_state
)
5226 struct drm_connector_state
*old_conn_state
;
5227 struct drm_connector
*conn
;
5230 for_each_old_connector_in_state(old_state
, conn
, old_conn_state
, i
) {
5231 struct intel_encoder
*encoder
=
5232 to_intel_encoder(old_conn_state
->best_encoder
);
5234 if (old_conn_state
->crtc
!= crtc
)
5237 intel_opregion_notify_encoder(encoder
, false);
5238 encoder
->disable(encoder
, old_crtc_state
, old_conn_state
);
5242 static void intel_encoders_post_disable(struct drm_crtc
*crtc
,
5243 struct intel_crtc_state
*old_crtc_state
,
5244 struct drm_atomic_state
*old_state
)
5246 struct drm_connector_state
*old_conn_state
;
5247 struct drm_connector
*conn
;
5250 for_each_old_connector_in_state(old_state
, conn
, old_conn_state
, i
) {
5251 struct intel_encoder
*encoder
=
5252 to_intel_encoder(old_conn_state
->best_encoder
);
5254 if (old_conn_state
->crtc
!= crtc
)
5257 if (encoder
->post_disable
)
5258 encoder
->post_disable(encoder
, old_crtc_state
, old_conn_state
);
5262 static void intel_encoders_post_pll_disable(struct drm_crtc
*crtc
,
5263 struct intel_crtc_state
*old_crtc_state
,
5264 struct drm_atomic_state
*old_state
)
5266 struct drm_connector_state
*old_conn_state
;
5267 struct drm_connector
*conn
;
5270 for_each_old_connector_in_state(old_state
, conn
, old_conn_state
, i
) {
5271 struct intel_encoder
*encoder
=
5272 to_intel_encoder(old_conn_state
->best_encoder
);
5274 if (old_conn_state
->crtc
!= crtc
)
5277 if (encoder
->post_pll_disable
)
5278 encoder
->post_pll_disable(encoder
, old_crtc_state
, old_conn_state
);
5282 static void ironlake_crtc_enable(struct intel_crtc_state
*pipe_config
,
5283 struct drm_atomic_state
*old_state
)
5285 struct drm_crtc
*crtc
= pipe_config
->base
.crtc
;
5286 struct drm_device
*dev
= crtc
->dev
;
5287 struct drm_i915_private
*dev_priv
= to_i915(dev
);
5288 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5289 int pipe
= intel_crtc
->pipe
;
5290 struct intel_atomic_state
*old_intel_state
=
5291 to_intel_atomic_state(old_state
);
5293 if (WARN_ON(intel_crtc
->active
))
5297 * Sometimes spurious CPU pipe underruns happen during FDI
5298 * training, at least with VGA+HDMI cloning. Suppress them.
5300 * On ILK we get an occasional spurious CPU pipe underruns
5301 * between eDP port A enable and vdd enable. Also PCH port
5302 * enable seems to result in the occasional CPU pipe underrun.
5304 * Spurious PCH underruns also occur during PCH enabling.
5306 if (intel_crtc
->config
->has_pch_encoder
|| IS_GEN5(dev_priv
))
5307 intel_set_cpu_fifo_underrun_reporting(dev_priv
, pipe
, false);
5308 if (intel_crtc
->config
->has_pch_encoder
)
5309 intel_set_pch_fifo_underrun_reporting(dev_priv
, pipe
, false);
5311 if (intel_crtc
->config
->has_pch_encoder
)
5312 intel_prepare_shared_dpll(intel_crtc
);
5314 if (intel_crtc_has_dp_encoder(intel_crtc
->config
))
5315 intel_dp_set_m_n(intel_crtc
, M1_N1
);
5317 intel_set_pipe_timings(intel_crtc
);
5318 intel_set_pipe_src_size(intel_crtc
);
5320 if (intel_crtc
->config
->has_pch_encoder
) {
5321 intel_cpu_transcoder_set_m_n(intel_crtc
,
5322 &intel_crtc
->config
->fdi_m_n
, NULL
);
5325 ironlake_set_pipeconf(crtc
);
5327 intel_crtc
->active
= true;
5329 intel_encoders_pre_enable(crtc
, pipe_config
, old_state
);
5331 if (intel_crtc
->config
->has_pch_encoder
) {
5332 /* Note: FDI PLL enabling _must_ be done before we enable the
5333 * cpu pipes, hence this is separate from all the other fdi/pch
5335 ironlake_fdi_pll_enable(intel_crtc
);
5337 assert_fdi_tx_disabled(dev_priv
, pipe
);
5338 assert_fdi_rx_disabled(dev_priv
, pipe
);
5341 ironlake_pfit_enable(intel_crtc
);
5344 * On ILK+ LUT must be loaded before the pipe is running but with
5347 intel_color_load_luts(&pipe_config
->base
);
5349 if (dev_priv
->display
.initial_watermarks
!= NULL
)
5350 dev_priv
->display
.initial_watermarks(old_intel_state
, intel_crtc
->config
);
5351 intel_enable_pipe(pipe_config
);
5353 if (intel_crtc
->config
->has_pch_encoder
)
5354 ironlake_pch_enable(pipe_config
);
5356 assert_vblank_disabled(crtc
);
5357 drm_crtc_vblank_on(crtc
);
5359 intel_encoders_enable(crtc
, pipe_config
, old_state
);
5361 if (HAS_PCH_CPT(dev_priv
))
5362 cpt_verify_modeset(dev
, intel_crtc
->pipe
);
5364 /* Must wait for vblank to avoid spurious PCH FIFO underruns */
5365 if (intel_crtc
->config
->has_pch_encoder
)
5366 intel_wait_for_vblank(dev_priv
, pipe
);
5367 intel_set_cpu_fifo_underrun_reporting(dev_priv
, pipe
, true);
5368 intel_set_pch_fifo_underrun_reporting(dev_priv
, pipe
, true);
5371 /* IPS only exists on ULT machines and is tied to pipe A. */
5372 static bool hsw_crtc_supports_ips(struct intel_crtc
*crtc
)
5374 return HAS_IPS(to_i915(crtc
->base
.dev
)) && crtc
->pipe
== PIPE_A
;
5377 static void glk_pipe_scaler_clock_gating_wa(struct drm_i915_private
*dev_priv
,
5378 enum pipe pipe
, bool apply
)
5380 u32 val
= I915_READ(CLKGATE_DIS_PSL(pipe
));
5381 u32 mask
= DPF_GATING_DIS
| DPF_RAM_GATING_DIS
| DPFR_GATING_DIS
;
5388 I915_WRITE(CLKGATE_DIS_PSL(pipe
), val
);
5391 static void haswell_crtc_enable(struct intel_crtc_state
*pipe_config
,
5392 struct drm_atomic_state
*old_state
)
5394 struct drm_crtc
*crtc
= pipe_config
->base
.crtc
;
5395 struct drm_i915_private
*dev_priv
= to_i915(crtc
->dev
);
5396 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5397 int pipe
= intel_crtc
->pipe
, hsw_workaround_pipe
;
5398 enum transcoder cpu_transcoder
= intel_crtc
->config
->cpu_transcoder
;
5399 struct intel_atomic_state
*old_intel_state
=
5400 to_intel_atomic_state(old_state
);
5401 bool psl_clkgate_wa
;
5403 if (WARN_ON(intel_crtc
->active
))
5406 intel_encoders_pre_pll_enable(crtc
, pipe_config
, old_state
);
5408 if (intel_crtc
->config
->shared_dpll
)
5409 intel_enable_shared_dpll(intel_crtc
);
5411 if (intel_crtc_has_dp_encoder(intel_crtc
->config
))
5412 intel_dp_set_m_n(intel_crtc
, M1_N1
);
5414 if (!transcoder_is_dsi(cpu_transcoder
))
5415 intel_set_pipe_timings(intel_crtc
);
5417 intel_set_pipe_src_size(intel_crtc
);
5419 if (cpu_transcoder
!= TRANSCODER_EDP
&&
5420 !transcoder_is_dsi(cpu_transcoder
)) {
5421 I915_WRITE(PIPE_MULT(cpu_transcoder
),
5422 intel_crtc
->config
->pixel_multiplier
- 1);
5425 if (intel_crtc
->config
->has_pch_encoder
) {
5426 intel_cpu_transcoder_set_m_n(intel_crtc
,
5427 &intel_crtc
->config
->fdi_m_n
, NULL
);
5430 if (!transcoder_is_dsi(cpu_transcoder
))
5431 haswell_set_pipeconf(crtc
);
5433 haswell_set_pipemisc(crtc
);
5435 intel_color_set_csc(&pipe_config
->base
);
5437 intel_crtc
->active
= true;
5439 intel_encoders_pre_enable(crtc
, pipe_config
, old_state
);
5441 if (!transcoder_is_dsi(cpu_transcoder
))
5442 intel_ddi_enable_pipe_clock(pipe_config
);
5444 /* Display WA #1180: WaDisableScalarClockGating: glk, cnl */
5445 psl_clkgate_wa
= (IS_GEMINILAKE(dev_priv
) || IS_CANNONLAKE(dev_priv
)) &&
5446 intel_crtc
->config
->pch_pfit
.enabled
;
5448 glk_pipe_scaler_clock_gating_wa(dev_priv
, pipe
, true);
5450 if (INTEL_GEN(dev_priv
) >= 9)
5451 skylake_pfit_enable(intel_crtc
);
5453 ironlake_pfit_enable(intel_crtc
);
5456 * On ILK+ LUT must be loaded before the pipe is running but with
5459 intel_color_load_luts(&pipe_config
->base
);
5461 intel_ddi_set_pipe_settings(pipe_config
);
5462 if (!transcoder_is_dsi(cpu_transcoder
))
5463 intel_ddi_enable_transcoder_func(pipe_config
);
5465 if (dev_priv
->display
.initial_watermarks
!= NULL
)
5466 dev_priv
->display
.initial_watermarks(old_intel_state
, pipe_config
);
5468 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
5469 if (!transcoder_is_dsi(cpu_transcoder
))
5470 intel_enable_pipe(pipe_config
);
5472 if (intel_crtc
->config
->has_pch_encoder
)
5473 lpt_pch_enable(pipe_config
);
5475 if (intel_crtc_has_type(intel_crtc
->config
, INTEL_OUTPUT_DP_MST
))
5476 intel_ddi_set_vc_payload_alloc(pipe_config
, true);
5478 assert_vblank_disabled(crtc
);
5479 drm_crtc_vblank_on(crtc
);
5481 intel_encoders_enable(crtc
, pipe_config
, old_state
);
5483 if (psl_clkgate_wa
) {
5484 intel_wait_for_vblank(dev_priv
, pipe
);
5485 glk_pipe_scaler_clock_gating_wa(dev_priv
, pipe
, false);
5488 /* If we change the relative order between pipe/planes enabling, we need
5489 * to change the workaround. */
5490 hsw_workaround_pipe
= pipe_config
->hsw_workaround_pipe
;
5491 if (IS_HASWELL(dev_priv
) && hsw_workaround_pipe
!= INVALID_PIPE
) {
5492 intel_wait_for_vblank(dev_priv
, hsw_workaround_pipe
);
5493 intel_wait_for_vblank(dev_priv
, hsw_workaround_pipe
);
5497 static void ironlake_pfit_disable(struct intel_crtc
*crtc
, bool force
)
5499 struct drm_device
*dev
= crtc
->base
.dev
;
5500 struct drm_i915_private
*dev_priv
= to_i915(dev
);
5501 int pipe
= crtc
->pipe
;
5503 /* To avoid upsetting the power well on haswell only disable the pfit if
5504 * it's in use. The hw state code will make sure we get this right. */
5505 if (force
|| crtc
->config
->pch_pfit
.enabled
) {
5506 I915_WRITE(PF_CTL(pipe
), 0);
5507 I915_WRITE(PF_WIN_POS(pipe
), 0);
5508 I915_WRITE(PF_WIN_SZ(pipe
), 0);
5512 static void ironlake_crtc_disable(struct intel_crtc_state
*old_crtc_state
,
5513 struct drm_atomic_state
*old_state
)
5515 struct drm_crtc
*crtc
= old_crtc_state
->base
.crtc
;
5516 struct drm_device
*dev
= crtc
->dev
;
5517 struct drm_i915_private
*dev_priv
= to_i915(dev
);
5518 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5519 int pipe
= intel_crtc
->pipe
;
5522 * Sometimes spurious CPU pipe underruns happen when the
5523 * pipe is already disabled, but FDI RX/TX is still enabled.
5524 * Happens at least with VGA+HDMI cloning. Suppress them.
5526 if (intel_crtc
->config
->has_pch_encoder
) {
5527 intel_set_cpu_fifo_underrun_reporting(dev_priv
, pipe
, false);
5528 intel_set_pch_fifo_underrun_reporting(dev_priv
, pipe
, false);
5531 intel_encoders_disable(crtc
, old_crtc_state
, old_state
);
5533 drm_crtc_vblank_off(crtc
);
5534 assert_vblank_disabled(crtc
);
5536 intel_disable_pipe(old_crtc_state
);
5538 ironlake_pfit_disable(intel_crtc
, false);
5540 if (intel_crtc
->config
->has_pch_encoder
)
5541 ironlake_fdi_disable(crtc
);
5543 intel_encoders_post_disable(crtc
, old_crtc_state
, old_state
);
5545 if (intel_crtc
->config
->has_pch_encoder
) {
5546 ironlake_disable_pch_transcoder(dev_priv
, pipe
);
5548 if (HAS_PCH_CPT(dev_priv
)) {
5552 /* disable TRANS_DP_CTL */
5553 reg
= TRANS_DP_CTL(pipe
);
5554 temp
= I915_READ(reg
);
5555 temp
&= ~(TRANS_DP_OUTPUT_ENABLE
|
5556 TRANS_DP_PORT_SEL_MASK
);
5557 temp
|= TRANS_DP_PORT_SEL_NONE
;
5558 I915_WRITE(reg
, temp
);
5560 /* disable DPLL_SEL */
5561 temp
= I915_READ(PCH_DPLL_SEL
);
5562 temp
&= ~(TRANS_DPLL_ENABLE(pipe
) | TRANS_DPLLB_SEL(pipe
));
5563 I915_WRITE(PCH_DPLL_SEL
, temp
);
5566 ironlake_fdi_pll_disable(intel_crtc
);
5569 intel_set_cpu_fifo_underrun_reporting(dev_priv
, pipe
, true);
5570 intel_set_pch_fifo_underrun_reporting(dev_priv
, pipe
, true);
5573 static void haswell_crtc_disable(struct intel_crtc_state
*old_crtc_state
,
5574 struct drm_atomic_state
*old_state
)
5576 struct drm_crtc
*crtc
= old_crtc_state
->base
.crtc
;
5577 struct drm_i915_private
*dev_priv
= to_i915(crtc
->dev
);
5578 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5579 enum transcoder cpu_transcoder
= intel_crtc
->config
->cpu_transcoder
;
5581 intel_encoders_disable(crtc
, old_crtc_state
, old_state
);
5583 drm_crtc_vblank_off(crtc
);
5584 assert_vblank_disabled(crtc
);
5586 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
5587 if (!transcoder_is_dsi(cpu_transcoder
))
5588 intel_disable_pipe(old_crtc_state
);
5590 if (intel_crtc_has_type(intel_crtc
->config
, INTEL_OUTPUT_DP_MST
))
5591 intel_ddi_set_vc_payload_alloc(intel_crtc
->config
, false);
5593 if (!transcoder_is_dsi(cpu_transcoder
))
5594 intel_ddi_disable_transcoder_func(dev_priv
, cpu_transcoder
);
5596 if (INTEL_GEN(dev_priv
) >= 9)
5597 skylake_scaler_disable(intel_crtc
);
5599 ironlake_pfit_disable(intel_crtc
, false);
5601 if (!transcoder_is_dsi(cpu_transcoder
))
5602 intel_ddi_disable_pipe_clock(intel_crtc
->config
);
5604 intel_encoders_post_disable(crtc
, old_crtc_state
, old_state
);
5607 static void i9xx_pfit_enable(struct intel_crtc
*crtc
)
5609 struct drm_device
*dev
= crtc
->base
.dev
;
5610 struct drm_i915_private
*dev_priv
= to_i915(dev
);
5611 struct intel_crtc_state
*pipe_config
= crtc
->config
;
5613 if (!pipe_config
->gmch_pfit
.control
)
5617 * The panel fitter should only be adjusted whilst the pipe is disabled,
5618 * according to register description and PRM.
5620 WARN_ON(I915_READ(PFIT_CONTROL
) & PFIT_ENABLE
);
5621 assert_pipe_disabled(dev_priv
, crtc
->pipe
);
5623 I915_WRITE(PFIT_PGM_RATIOS
, pipe_config
->gmch_pfit
.pgm_ratios
);
5624 I915_WRITE(PFIT_CONTROL
, pipe_config
->gmch_pfit
.control
);
5626 /* Border color in case we don't scale up to the full screen. Black by
5627 * default, change to something else for debugging. */
5628 I915_WRITE(BCLRPAT(crtc
->pipe
), 0);
5631 enum intel_display_power_domain
intel_port_to_power_domain(enum port port
)
5635 return POWER_DOMAIN_PORT_DDI_A_LANES
;
5637 return POWER_DOMAIN_PORT_DDI_B_LANES
;
5639 return POWER_DOMAIN_PORT_DDI_C_LANES
;
5641 return POWER_DOMAIN_PORT_DDI_D_LANES
;
5643 return POWER_DOMAIN_PORT_DDI_E_LANES
;
5646 return POWER_DOMAIN_PORT_OTHER
;
5650 static u64
get_crtc_power_domains(struct drm_crtc
*crtc
,
5651 struct intel_crtc_state
*crtc_state
)
5653 struct drm_device
*dev
= crtc
->dev
;
5654 struct drm_i915_private
*dev_priv
= to_i915(dev
);
5655 struct drm_encoder
*encoder
;
5656 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5657 enum pipe pipe
= intel_crtc
->pipe
;
5659 enum transcoder transcoder
= crtc_state
->cpu_transcoder
;
5661 if (!crtc_state
->base
.active
)
5664 mask
= BIT_ULL(POWER_DOMAIN_PIPE(pipe
));
5665 mask
|= BIT_ULL(POWER_DOMAIN_TRANSCODER(transcoder
));
5666 if (crtc_state
->pch_pfit
.enabled
||
5667 crtc_state
->pch_pfit
.force_thru
)
5668 mask
|= BIT_ULL(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe
));
5670 drm_for_each_encoder_mask(encoder
, dev
, crtc_state
->base
.encoder_mask
) {
5671 struct intel_encoder
*intel_encoder
= to_intel_encoder(encoder
);
5673 mask
|= BIT_ULL(intel_encoder
->power_domain
);
5676 if (HAS_DDI(dev_priv
) && crtc_state
->has_audio
)
5677 mask
|= BIT_ULL(POWER_DOMAIN_AUDIO
);
5679 if (crtc_state
->shared_dpll
)
5680 mask
|= BIT_ULL(POWER_DOMAIN_PLLS
);
5686 modeset_get_crtc_power_domains(struct drm_crtc
*crtc
,
5687 struct intel_crtc_state
*crtc_state
)
5689 struct drm_i915_private
*dev_priv
= to_i915(crtc
->dev
);
5690 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5691 enum intel_display_power_domain domain
;
5692 u64 domains
, new_domains
, old_domains
;
5694 old_domains
= intel_crtc
->enabled_power_domains
;
5695 intel_crtc
->enabled_power_domains
= new_domains
=
5696 get_crtc_power_domains(crtc
, crtc_state
);
5698 domains
= new_domains
& ~old_domains
;
5700 for_each_power_domain(domain
, domains
)
5701 intel_display_power_get(dev_priv
, domain
);
5703 return old_domains
& ~new_domains
;
5706 static void modeset_put_power_domains(struct drm_i915_private
*dev_priv
,
5709 enum intel_display_power_domain domain
;
5711 for_each_power_domain(domain
, domains
)
5712 intel_display_power_put(dev_priv
, domain
);
5715 static void valleyview_crtc_enable(struct intel_crtc_state
*pipe_config
,
5716 struct drm_atomic_state
*old_state
)
5718 struct intel_atomic_state
*old_intel_state
=
5719 to_intel_atomic_state(old_state
);
5720 struct drm_crtc
*crtc
= pipe_config
->base
.crtc
;
5721 struct drm_device
*dev
= crtc
->dev
;
5722 struct drm_i915_private
*dev_priv
= to_i915(dev
);
5723 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5724 int pipe
= intel_crtc
->pipe
;
5726 if (WARN_ON(intel_crtc
->active
))
5729 if (intel_crtc_has_dp_encoder(intel_crtc
->config
))
5730 intel_dp_set_m_n(intel_crtc
, M1_N1
);
5732 intel_set_pipe_timings(intel_crtc
);
5733 intel_set_pipe_src_size(intel_crtc
);
5735 if (IS_CHERRYVIEW(dev_priv
) && pipe
== PIPE_B
) {
5736 struct drm_i915_private
*dev_priv
= to_i915(dev
);
5738 I915_WRITE(CHV_BLEND(pipe
), CHV_BLEND_LEGACY
);
5739 I915_WRITE(CHV_CANVAS(pipe
), 0);
5742 i9xx_set_pipeconf(intel_crtc
);
5744 intel_crtc
->active
= true;
5746 intel_set_cpu_fifo_underrun_reporting(dev_priv
, pipe
, true);
5748 intel_encoders_pre_pll_enable(crtc
, pipe_config
, old_state
);
5750 if (IS_CHERRYVIEW(dev_priv
)) {
5751 chv_prepare_pll(intel_crtc
, intel_crtc
->config
);
5752 chv_enable_pll(intel_crtc
, intel_crtc
->config
);
5754 vlv_prepare_pll(intel_crtc
, intel_crtc
->config
);
5755 vlv_enable_pll(intel_crtc
, intel_crtc
->config
);
5758 intel_encoders_pre_enable(crtc
, pipe_config
, old_state
);
5760 i9xx_pfit_enable(intel_crtc
);
5762 intel_color_load_luts(&pipe_config
->base
);
5764 dev_priv
->display
.initial_watermarks(old_intel_state
,
5766 intel_enable_pipe(pipe_config
);
5768 assert_vblank_disabled(crtc
);
5769 drm_crtc_vblank_on(crtc
);
5771 intel_encoders_enable(crtc
, pipe_config
, old_state
);
5774 static void i9xx_set_pll_dividers(struct intel_crtc
*crtc
)
5776 struct drm_device
*dev
= crtc
->base
.dev
;
5777 struct drm_i915_private
*dev_priv
= to_i915(dev
);
5779 I915_WRITE(FP0(crtc
->pipe
), crtc
->config
->dpll_hw_state
.fp0
);
5780 I915_WRITE(FP1(crtc
->pipe
), crtc
->config
->dpll_hw_state
.fp1
);
5783 static void i9xx_crtc_enable(struct intel_crtc_state
*pipe_config
,
5784 struct drm_atomic_state
*old_state
)
5786 struct intel_atomic_state
*old_intel_state
=
5787 to_intel_atomic_state(old_state
);
5788 struct drm_crtc
*crtc
= pipe_config
->base
.crtc
;
5789 struct drm_device
*dev
= crtc
->dev
;
5790 struct drm_i915_private
*dev_priv
= to_i915(dev
);
5791 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5792 enum pipe pipe
= intel_crtc
->pipe
;
5794 if (WARN_ON(intel_crtc
->active
))
5797 i9xx_set_pll_dividers(intel_crtc
);
5799 if (intel_crtc_has_dp_encoder(intel_crtc
->config
))
5800 intel_dp_set_m_n(intel_crtc
, M1_N1
);
5802 intel_set_pipe_timings(intel_crtc
);
5803 intel_set_pipe_src_size(intel_crtc
);
5805 i9xx_set_pipeconf(intel_crtc
);
5807 intel_crtc
->active
= true;
5809 if (!IS_GEN2(dev_priv
))
5810 intel_set_cpu_fifo_underrun_reporting(dev_priv
, pipe
, true);
5812 intel_encoders_pre_enable(crtc
, pipe_config
, old_state
);
5814 i9xx_enable_pll(intel_crtc
, pipe_config
);
5816 i9xx_pfit_enable(intel_crtc
);
5818 intel_color_load_luts(&pipe_config
->base
);
5820 if (dev_priv
->display
.initial_watermarks
!= NULL
)
5821 dev_priv
->display
.initial_watermarks(old_intel_state
,
5822 intel_crtc
->config
);
5824 intel_update_watermarks(intel_crtc
);
5825 intel_enable_pipe(pipe_config
);
5827 assert_vblank_disabled(crtc
);
5828 drm_crtc_vblank_on(crtc
);
5830 intel_encoders_enable(crtc
, pipe_config
, old_state
);
5833 static void i9xx_pfit_disable(struct intel_crtc
*crtc
)
5835 struct drm_device
*dev
= crtc
->base
.dev
;
5836 struct drm_i915_private
*dev_priv
= to_i915(dev
);
5838 if (!crtc
->config
->gmch_pfit
.control
)
5841 assert_pipe_disabled(dev_priv
, crtc
->pipe
);
5843 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
5844 I915_READ(PFIT_CONTROL
));
5845 I915_WRITE(PFIT_CONTROL
, 0);
5848 static void i9xx_crtc_disable(struct intel_crtc_state
*old_crtc_state
,
5849 struct drm_atomic_state
*old_state
)
5851 struct drm_crtc
*crtc
= old_crtc_state
->base
.crtc
;
5852 struct drm_device
*dev
= crtc
->dev
;
5853 struct drm_i915_private
*dev_priv
= to_i915(dev
);
5854 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5855 int pipe
= intel_crtc
->pipe
;
5858 * On gen2 planes are double buffered but the pipe isn't, so we must
5859 * wait for planes to fully turn off before disabling the pipe.
5861 if (IS_GEN2(dev_priv
))
5862 intel_wait_for_vblank(dev_priv
, pipe
);
5864 intel_encoders_disable(crtc
, old_crtc_state
, old_state
);
5866 drm_crtc_vblank_off(crtc
);
5867 assert_vblank_disabled(crtc
);
5869 intel_disable_pipe(old_crtc_state
);
5871 i9xx_pfit_disable(intel_crtc
);
5873 intel_encoders_post_disable(crtc
, old_crtc_state
, old_state
);
5875 if (!intel_crtc_has_type(intel_crtc
->config
, INTEL_OUTPUT_DSI
)) {
5876 if (IS_CHERRYVIEW(dev_priv
))
5877 chv_disable_pll(dev_priv
, pipe
);
5878 else if (IS_VALLEYVIEW(dev_priv
))
5879 vlv_disable_pll(dev_priv
, pipe
);
5881 i9xx_disable_pll(intel_crtc
);
5884 intel_encoders_post_pll_disable(crtc
, old_crtc_state
, old_state
);
5886 if (!IS_GEN2(dev_priv
))
5887 intel_set_cpu_fifo_underrun_reporting(dev_priv
, pipe
, false);
5889 if (!dev_priv
->display
.initial_watermarks
)
5890 intel_update_watermarks(intel_crtc
);
5892 /* clock the pipe down to 640x480@60 to potentially save power */
5893 if (IS_I830(dev_priv
))
5894 i830_enable_pipe(dev_priv
, pipe
);
5897 static void intel_crtc_disable_noatomic(struct drm_crtc
*crtc
,
5898 struct drm_modeset_acquire_ctx
*ctx
)
5900 struct intel_encoder
*encoder
;
5901 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
5902 struct drm_i915_private
*dev_priv
= to_i915(crtc
->dev
);
5903 enum intel_display_power_domain domain
;
5904 struct intel_plane
*plane
;
5906 struct drm_atomic_state
*state
;
5907 struct intel_crtc_state
*crtc_state
;
5910 if (!intel_crtc
->active
)
5913 for_each_intel_plane_on_crtc(&dev_priv
->drm
, intel_crtc
, plane
) {
5914 const struct intel_plane_state
*plane_state
=
5915 to_intel_plane_state(plane
->base
.state
);
5917 if (plane_state
->base
.visible
)
5918 intel_plane_disable_noatomic(intel_crtc
, plane
);
5921 state
= drm_atomic_state_alloc(crtc
->dev
);
5923 DRM_DEBUG_KMS("failed to disable [CRTC:%d:%s], out of memory",
5924 crtc
->base
.id
, crtc
->name
);
5928 state
->acquire_ctx
= ctx
;
5930 /* Everything's already locked, -EDEADLK can't happen. */
5931 crtc_state
= intel_atomic_get_crtc_state(state
, intel_crtc
);
5932 ret
= drm_atomic_add_affected_connectors(state
, crtc
);
5934 WARN_ON(IS_ERR(crtc_state
) || ret
);
5936 dev_priv
->display
.crtc_disable(crtc_state
, state
);
5938 drm_atomic_state_put(state
);
5940 DRM_DEBUG_KMS("[CRTC:%d:%s] hw state adjusted, was enabled, now disabled\n",
5941 crtc
->base
.id
, crtc
->name
);
5943 WARN_ON(drm_atomic_set_mode_for_crtc(crtc
->state
, NULL
) < 0);
5944 crtc
->state
->active
= false;
5945 intel_crtc
->active
= false;
5946 crtc
->enabled
= false;
5947 crtc
->state
->connector_mask
= 0;
5948 crtc
->state
->encoder_mask
= 0;
5950 for_each_encoder_on_crtc(crtc
->dev
, crtc
, encoder
)
5951 encoder
->base
.crtc
= NULL
;
5953 intel_fbc_disable(intel_crtc
);
5954 intel_update_watermarks(intel_crtc
);
5955 intel_disable_shared_dpll(intel_crtc
);
5957 domains
= intel_crtc
->enabled_power_domains
;
5958 for_each_power_domain(domain
, domains
)
5959 intel_display_power_put(dev_priv
, domain
);
5960 intel_crtc
->enabled_power_domains
= 0;
5962 dev_priv
->active_crtcs
&= ~(1 << intel_crtc
->pipe
);
5963 dev_priv
->min_cdclk
[intel_crtc
->pipe
] = 0;
5964 dev_priv
->min_voltage_level
[intel_crtc
->pipe
] = 0;
5968 * turn all crtc's off, but do not adjust state
5969 * This has to be paired with a call to intel_modeset_setup_hw_state.
5971 int intel_display_suspend(struct drm_device
*dev
)
5973 struct drm_i915_private
*dev_priv
= to_i915(dev
);
5974 struct drm_atomic_state
*state
;
5977 state
= drm_atomic_helper_suspend(dev
);
5978 ret
= PTR_ERR_OR_ZERO(state
);
5980 DRM_ERROR("Suspending crtc's failed with %i\n", ret
);
5982 dev_priv
->modeset_restore_state
= state
;
5986 void intel_encoder_destroy(struct drm_encoder
*encoder
)
5988 struct intel_encoder
*intel_encoder
= to_intel_encoder(encoder
);
5990 drm_encoder_cleanup(encoder
);
5991 kfree(intel_encoder
);
5994 /* Cross check the actual hw state with our own modeset state tracking (and it's
5995 * internal consistency). */
5996 static void intel_connector_verify_state(struct drm_crtc_state
*crtc_state
,
5997 struct drm_connector_state
*conn_state
)
5999 struct intel_connector
*connector
= to_intel_connector(conn_state
->connector
);
6001 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6002 connector
->base
.base
.id
,
6003 connector
->base
.name
);
6005 if (connector
->get_hw_state(connector
)) {
6006 struct intel_encoder
*encoder
= connector
->encoder
;
6008 I915_STATE_WARN(!crtc_state
,
6009 "connector enabled without attached crtc\n");
6014 I915_STATE_WARN(!crtc_state
->active
,
6015 "connector is active, but attached crtc isn't\n");
6017 if (!encoder
|| encoder
->type
== INTEL_OUTPUT_DP_MST
)
6020 I915_STATE_WARN(conn_state
->best_encoder
!= &encoder
->base
,
6021 "atomic encoder doesn't match attached encoder\n");
6023 I915_STATE_WARN(conn_state
->crtc
!= encoder
->base
.crtc
,
6024 "attached encoder crtc differs from connector crtc\n");
6026 I915_STATE_WARN(crtc_state
&& crtc_state
->active
,
6027 "attached crtc is active, but connector isn't\n");
6028 I915_STATE_WARN(!crtc_state
&& conn_state
->best_encoder
,
6029 "best encoder set without crtc!\n");
6033 int intel_connector_init(struct intel_connector
*connector
)
6035 struct intel_digital_connector_state
*conn_state
;
6038 * Allocate enough memory to hold intel_digital_connector_state,
6039 * This might be a few bytes too many, but for connectors that don't
6040 * need it we'll free the state and allocate a smaller one on the first
6041 * succesful commit anyway.
6043 conn_state
= kzalloc(sizeof(*conn_state
), GFP_KERNEL
);
6047 __drm_atomic_helper_connector_reset(&connector
->base
,
6053 struct intel_connector
*intel_connector_alloc(void)
6055 struct intel_connector
*connector
;
6057 connector
= kzalloc(sizeof *connector
, GFP_KERNEL
);
6061 if (intel_connector_init(connector
) < 0) {
6070 * Free the bits allocated by intel_connector_alloc.
6071 * This should only be used after intel_connector_alloc has returned
6072 * successfully, and before drm_connector_init returns successfully.
6073 * Otherwise the destroy callbacks for the connector and the state should
6074 * take care of proper cleanup/free
6076 void intel_connector_free(struct intel_connector
*connector
)
6078 kfree(to_intel_digital_connector_state(connector
->base
.state
));
6082 /* Simple connector->get_hw_state implementation for encoders that support only
6083 * one connector and no cloning and hence the encoder state determines the state
6084 * of the connector. */
6085 bool intel_connector_get_hw_state(struct intel_connector
*connector
)
6088 struct intel_encoder
*encoder
= connector
->encoder
;
6090 return encoder
->get_hw_state(encoder
, &pipe
);
6093 static int pipe_required_fdi_lanes(struct intel_crtc_state
*crtc_state
)
6095 if (crtc_state
->base
.enable
&& crtc_state
->has_pch_encoder
)
6096 return crtc_state
->fdi_lanes
;
6101 static int ironlake_check_fdi_lanes(struct drm_device
*dev
, enum pipe pipe
,
6102 struct intel_crtc_state
*pipe_config
)
6104 struct drm_i915_private
*dev_priv
= to_i915(dev
);
6105 struct drm_atomic_state
*state
= pipe_config
->base
.state
;
6106 struct intel_crtc
*other_crtc
;
6107 struct intel_crtc_state
*other_crtc_state
;
6109 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
6110 pipe_name(pipe
), pipe_config
->fdi_lanes
);
6111 if (pipe_config
->fdi_lanes
> 4) {
6112 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
6113 pipe_name(pipe
), pipe_config
->fdi_lanes
);
6117 if (IS_HASWELL(dev_priv
) || IS_BROADWELL(dev_priv
)) {
6118 if (pipe_config
->fdi_lanes
> 2) {
6119 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
6120 pipe_config
->fdi_lanes
);
6127 if (INTEL_INFO(dev_priv
)->num_pipes
== 2)
6130 /* Ivybridge 3 pipe is really complicated */
6135 if (pipe_config
->fdi_lanes
<= 2)
6138 other_crtc
= intel_get_crtc_for_pipe(dev_priv
, PIPE_C
);
6140 intel_atomic_get_crtc_state(state
, other_crtc
);
6141 if (IS_ERR(other_crtc_state
))
6142 return PTR_ERR(other_crtc_state
);
6144 if (pipe_required_fdi_lanes(other_crtc_state
) > 0) {
6145 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
6146 pipe_name(pipe
), pipe_config
->fdi_lanes
);
6151 if (pipe_config
->fdi_lanes
> 2) {
6152 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
6153 pipe_name(pipe
), pipe_config
->fdi_lanes
);
6157 other_crtc
= intel_get_crtc_for_pipe(dev_priv
, PIPE_B
);
6159 intel_atomic_get_crtc_state(state
, other_crtc
);
6160 if (IS_ERR(other_crtc_state
))
6161 return PTR_ERR(other_crtc_state
);
6163 if (pipe_required_fdi_lanes(other_crtc_state
) > 2) {
6164 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
6174 static int ironlake_fdi_compute_config(struct intel_crtc
*intel_crtc
,
6175 struct intel_crtc_state
*pipe_config
)
6177 struct drm_device
*dev
= intel_crtc
->base
.dev
;
6178 const struct drm_display_mode
*adjusted_mode
= &pipe_config
->base
.adjusted_mode
;
6179 int lane
, link_bw
, fdi_dotclock
, ret
;
6180 bool needs_recompute
= false;
6183 /* FDI is a binary signal running at ~2.7GHz, encoding
6184 * each output octet as 10 bits. The actual frequency
6185 * is stored as a divider into a 100MHz clock, and the
6186 * mode pixel clock is stored in units of 1KHz.
6187 * Hence the bw of each lane in terms of the mode signal
6190 link_bw
= intel_fdi_link_freq(to_i915(dev
), pipe_config
);
6192 fdi_dotclock
= adjusted_mode
->crtc_clock
;
6194 lane
= ironlake_get_lanes_required(fdi_dotclock
, link_bw
,
6195 pipe_config
->pipe_bpp
);
6197 pipe_config
->fdi_lanes
= lane
;
6199 intel_link_compute_m_n(pipe_config
->pipe_bpp
, lane
, fdi_dotclock
,
6200 link_bw
, &pipe_config
->fdi_m_n
, false);
6202 ret
= ironlake_check_fdi_lanes(dev
, intel_crtc
->pipe
, pipe_config
);
6203 if (ret
== -EINVAL
&& pipe_config
->pipe_bpp
> 6*3) {
6204 pipe_config
->pipe_bpp
-= 2*3;
6205 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
6206 pipe_config
->pipe_bpp
);
6207 needs_recompute
= true;
6208 pipe_config
->bw_constrained
= true;
6213 if (needs_recompute
)
6219 bool hsw_crtc_state_ips_capable(const struct intel_crtc_state
*crtc_state
)
6221 struct intel_crtc
*crtc
= to_intel_crtc(crtc_state
->base
.crtc
);
6222 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
6224 /* IPS only exists on ULT machines and is tied to pipe A. */
6225 if (!hsw_crtc_supports_ips(crtc
))
6228 if (!i915_modparams
.enable_ips
)
6231 if (crtc_state
->pipe_bpp
> 24)
6235 * We compare against max which means we must take
6236 * the increased cdclk requirement into account when
6237 * calculating the new cdclk.
6239 * Should measure whether using a lower cdclk w/o IPS
6241 if (IS_BROADWELL(dev_priv
) &&
6242 crtc_state
->pixel_rate
> dev_priv
->max_cdclk_freq
* 95 / 100)
6248 static bool hsw_compute_ips_config(struct intel_crtc_state
*crtc_state
)
6250 struct drm_i915_private
*dev_priv
=
6251 to_i915(crtc_state
->base
.crtc
->dev
);
6252 struct intel_atomic_state
*intel_state
=
6253 to_intel_atomic_state(crtc_state
->base
.state
);
6255 if (!hsw_crtc_state_ips_capable(crtc_state
))
6258 if (crtc_state
->ips_force_disable
)
6261 /* IPS should be fine as long as at least one plane is enabled. */
6262 if (!(crtc_state
->active_planes
& ~BIT(PLANE_CURSOR
)))
6265 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
6266 if (IS_BROADWELL(dev_priv
) &&
6267 crtc_state
->pixel_rate
> intel_state
->cdclk
.logical
.cdclk
* 95 / 100)
6273 static bool intel_crtc_supports_double_wide(const struct intel_crtc
*crtc
)
6275 const struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
6277 /* GDG double wide on either pipe, otherwise pipe A only */
6278 return INTEL_INFO(dev_priv
)->gen
< 4 &&
6279 (crtc
->pipe
== PIPE_A
|| IS_I915G(dev_priv
));
6282 static uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state
*pipe_config
)
6284 uint32_t pixel_rate
;
6286 pixel_rate
= pipe_config
->base
.adjusted_mode
.crtc_clock
;
6289 * We only use IF-ID interlacing. If we ever use
6290 * PF-ID we'll need to adjust the pixel_rate here.
6293 if (pipe_config
->pch_pfit
.enabled
) {
6294 uint64_t pipe_w
, pipe_h
, pfit_w
, pfit_h
;
6295 uint32_t pfit_size
= pipe_config
->pch_pfit
.size
;
6297 pipe_w
= pipe_config
->pipe_src_w
;
6298 pipe_h
= pipe_config
->pipe_src_h
;
6300 pfit_w
= (pfit_size
>> 16) & 0xFFFF;
6301 pfit_h
= pfit_size
& 0xFFFF;
6302 if (pipe_w
< pfit_w
)
6304 if (pipe_h
< pfit_h
)
6307 if (WARN_ON(!pfit_w
|| !pfit_h
))
6310 pixel_rate
= div_u64((uint64_t) pixel_rate
* pipe_w
* pipe_h
,
6317 static void intel_crtc_compute_pixel_rate(struct intel_crtc_state
*crtc_state
)
6319 struct drm_i915_private
*dev_priv
= to_i915(crtc_state
->base
.crtc
->dev
);
6321 if (HAS_GMCH_DISPLAY(dev_priv
))
6322 /* FIXME calculate proper pipe pixel rate for GMCH pfit */
6323 crtc_state
->pixel_rate
=
6324 crtc_state
->base
.adjusted_mode
.crtc_clock
;
6326 crtc_state
->pixel_rate
=
6327 ilk_pipe_pixel_rate(crtc_state
);
6330 static int intel_crtc_compute_config(struct intel_crtc
*crtc
,
6331 struct intel_crtc_state
*pipe_config
)
6333 struct drm_device
*dev
= crtc
->base
.dev
;
6334 struct drm_i915_private
*dev_priv
= to_i915(dev
);
6335 const struct drm_display_mode
*adjusted_mode
= &pipe_config
->base
.adjusted_mode
;
6336 int clock_limit
= dev_priv
->max_dotclk_freq
;
6338 if (INTEL_GEN(dev_priv
) < 4) {
6339 clock_limit
= dev_priv
->max_cdclk_freq
* 9 / 10;
6342 * Enable double wide mode when the dot clock
6343 * is > 90% of the (display) core speed.
6345 if (intel_crtc_supports_double_wide(crtc
) &&
6346 adjusted_mode
->crtc_clock
> clock_limit
) {
6347 clock_limit
= dev_priv
->max_dotclk_freq
;
6348 pipe_config
->double_wide
= true;
6352 if (adjusted_mode
->crtc_clock
> clock_limit
) {
6353 DRM_DEBUG_KMS("requested pixel clock (%d kHz) too high (max: %d kHz, double wide: %s)\n",
6354 adjusted_mode
->crtc_clock
, clock_limit
,
6355 yesno(pipe_config
->double_wide
));
6359 if (pipe_config
->ycbcr420
&& pipe_config
->base
.ctm
) {
6361 * There is only one pipe CSC unit per pipe, and we need that
6362 * for output conversion from RGB->YCBCR. So if CTM is already
6363 * applied we can't support YCBCR420 output.
6365 DRM_DEBUG_KMS("YCBCR420 and CTM together are not possible\n");
6370 * Pipe horizontal size must be even in:
6372 * - LVDS dual channel mode
6373 * - Double wide pipe
6375 if ((intel_crtc_has_type(pipe_config
, INTEL_OUTPUT_LVDS
) &&
6376 intel_is_dual_link_lvds(dev
)) || pipe_config
->double_wide
)
6377 pipe_config
->pipe_src_w
&= ~1;
6379 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
6380 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
6382 if ((INTEL_GEN(dev_priv
) > 4 || IS_G4X(dev_priv
)) &&
6383 adjusted_mode
->crtc_hsync_start
== adjusted_mode
->crtc_hdisplay
)
6386 intel_crtc_compute_pixel_rate(pipe_config
);
6388 if (pipe_config
->has_pch_encoder
)
6389 return ironlake_fdi_compute_config(crtc
, pipe_config
);
6395 intel_reduce_m_n_ratio(uint32_t *num
, uint32_t *den
)
6397 while (*num
> DATA_LINK_M_N_MASK
||
6398 *den
> DATA_LINK_M_N_MASK
) {
6404 static void compute_m_n(unsigned int m
, unsigned int n
,
6405 uint32_t *ret_m
, uint32_t *ret_n
,
6409 * Reduce M/N as much as possible without loss in precision. Several DP
6410 * dongles in particular seem to be fussy about too large *link* M/N
6411 * values. The passed in values are more likely to have the least
6412 * significant bits zero than M after rounding below, so do this first.
6415 while ((m
& 1) == 0 && (n
& 1) == 0) {
6421 *ret_n
= min_t(unsigned int, roundup_pow_of_two(n
), DATA_LINK_N_MAX
);
6422 *ret_m
= div_u64((uint64_t) m
* *ret_n
, n
);
6423 intel_reduce_m_n_ratio(ret_m
, ret_n
);
6427 intel_link_compute_m_n(int bits_per_pixel
, int nlanes
,
6428 int pixel_clock
, int link_clock
,
6429 struct intel_link_m_n
*m_n
,
6434 compute_m_n(bits_per_pixel
* pixel_clock
,
6435 link_clock
* nlanes
* 8,
6436 &m_n
->gmch_m
, &m_n
->gmch_n
,
6439 compute_m_n(pixel_clock
, link_clock
,
6440 &m_n
->link_m
, &m_n
->link_n
,
6444 static inline bool intel_panel_use_ssc(struct drm_i915_private
*dev_priv
)
6446 if (i915_modparams
.panel_use_ssc
>= 0)
6447 return i915_modparams
.panel_use_ssc
!= 0;
6448 return dev_priv
->vbt
.lvds_use_ssc
6449 && !(dev_priv
->quirks
& QUIRK_LVDS_SSC_DISABLE
);
6452 static uint32_t pnv_dpll_compute_fp(struct dpll
*dpll
)
6454 return (1 << dpll
->n
) << 16 | dpll
->m2
;
6457 static uint32_t i9xx_dpll_compute_fp(struct dpll
*dpll
)
6459 return dpll
->n
<< 16 | dpll
->m1
<< 8 | dpll
->m2
;
6462 static void i9xx_update_pll_dividers(struct intel_crtc
*crtc
,
6463 struct intel_crtc_state
*crtc_state
,
6464 struct dpll
*reduced_clock
)
6466 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
6469 if (IS_PINEVIEW(dev_priv
)) {
6470 fp
= pnv_dpll_compute_fp(&crtc_state
->dpll
);
6472 fp2
= pnv_dpll_compute_fp(reduced_clock
);
6474 fp
= i9xx_dpll_compute_fp(&crtc_state
->dpll
);
6476 fp2
= i9xx_dpll_compute_fp(reduced_clock
);
6479 crtc_state
->dpll_hw_state
.fp0
= fp
;
6481 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
) &&
6483 crtc_state
->dpll_hw_state
.fp1
= fp2
;
6485 crtc_state
->dpll_hw_state
.fp1
= fp
;
6489 static void vlv_pllb_recal_opamp(struct drm_i915_private
*dev_priv
, enum pipe
6495 * PLLB opamp always calibrates to max value of 0x3f, force enable it
6496 * and set it to a reasonable value instead.
6498 reg_val
= vlv_dpio_read(dev_priv
, pipe
, VLV_PLL_DW9(1));
6499 reg_val
&= 0xffffff00;
6500 reg_val
|= 0x00000030;
6501 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW9(1), reg_val
);
6503 reg_val
= vlv_dpio_read(dev_priv
, pipe
, VLV_REF_DW13
);
6504 reg_val
&= 0x00ffffff;
6505 reg_val
|= 0x8c000000;
6506 vlv_dpio_write(dev_priv
, pipe
, VLV_REF_DW13
, reg_val
);
6508 reg_val
= vlv_dpio_read(dev_priv
, pipe
, VLV_PLL_DW9(1));
6509 reg_val
&= 0xffffff00;
6510 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW9(1), reg_val
);
6512 reg_val
= vlv_dpio_read(dev_priv
, pipe
, VLV_REF_DW13
);
6513 reg_val
&= 0x00ffffff;
6514 reg_val
|= 0xb0000000;
6515 vlv_dpio_write(dev_priv
, pipe
, VLV_REF_DW13
, reg_val
);
6518 static void intel_pch_transcoder_set_m_n(struct intel_crtc
*crtc
,
6519 struct intel_link_m_n
*m_n
)
6521 struct drm_device
*dev
= crtc
->base
.dev
;
6522 struct drm_i915_private
*dev_priv
= to_i915(dev
);
6523 int pipe
= crtc
->pipe
;
6525 I915_WRITE(PCH_TRANS_DATA_M1(pipe
), TU_SIZE(m_n
->tu
) | m_n
->gmch_m
);
6526 I915_WRITE(PCH_TRANS_DATA_N1(pipe
), m_n
->gmch_n
);
6527 I915_WRITE(PCH_TRANS_LINK_M1(pipe
), m_n
->link_m
);
6528 I915_WRITE(PCH_TRANS_LINK_N1(pipe
), m_n
->link_n
);
6531 static void intel_cpu_transcoder_set_m_n(struct intel_crtc
*crtc
,
6532 struct intel_link_m_n
*m_n
,
6533 struct intel_link_m_n
*m2_n2
)
6535 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
6536 int pipe
= crtc
->pipe
;
6537 enum transcoder transcoder
= crtc
->config
->cpu_transcoder
;
6539 if (INTEL_GEN(dev_priv
) >= 5) {
6540 I915_WRITE(PIPE_DATA_M1(transcoder
), TU_SIZE(m_n
->tu
) | m_n
->gmch_m
);
6541 I915_WRITE(PIPE_DATA_N1(transcoder
), m_n
->gmch_n
);
6542 I915_WRITE(PIPE_LINK_M1(transcoder
), m_n
->link_m
);
6543 I915_WRITE(PIPE_LINK_N1(transcoder
), m_n
->link_n
);
6544 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
6545 * for gen < 8) and if DRRS is supported (to make sure the
6546 * registers are not unnecessarily accessed).
6548 if (m2_n2
&& (IS_CHERRYVIEW(dev_priv
) ||
6549 INTEL_GEN(dev_priv
) < 8) && crtc
->config
->has_drrs
) {
6550 I915_WRITE(PIPE_DATA_M2(transcoder
),
6551 TU_SIZE(m2_n2
->tu
) | m2_n2
->gmch_m
);
6552 I915_WRITE(PIPE_DATA_N2(transcoder
), m2_n2
->gmch_n
);
6553 I915_WRITE(PIPE_LINK_M2(transcoder
), m2_n2
->link_m
);
6554 I915_WRITE(PIPE_LINK_N2(transcoder
), m2_n2
->link_n
);
6557 I915_WRITE(PIPE_DATA_M_G4X(pipe
), TU_SIZE(m_n
->tu
) | m_n
->gmch_m
);
6558 I915_WRITE(PIPE_DATA_N_G4X(pipe
), m_n
->gmch_n
);
6559 I915_WRITE(PIPE_LINK_M_G4X(pipe
), m_n
->link_m
);
6560 I915_WRITE(PIPE_LINK_N_G4X(pipe
), m_n
->link_n
);
6564 void intel_dp_set_m_n(struct intel_crtc
*crtc
, enum link_m_n_set m_n
)
6566 struct intel_link_m_n
*dp_m_n
, *dp_m2_n2
= NULL
;
6569 dp_m_n
= &crtc
->config
->dp_m_n
;
6570 dp_m2_n2
= &crtc
->config
->dp_m2_n2
;
6571 } else if (m_n
== M2_N2
) {
6574 * M2_N2 registers are not supported. Hence m2_n2 divider value
6575 * needs to be programmed into M1_N1.
6577 dp_m_n
= &crtc
->config
->dp_m2_n2
;
6579 DRM_ERROR("Unsupported divider value\n");
6583 if (crtc
->config
->has_pch_encoder
)
6584 intel_pch_transcoder_set_m_n(crtc
, &crtc
->config
->dp_m_n
);
6586 intel_cpu_transcoder_set_m_n(crtc
, dp_m_n
, dp_m2_n2
);
6589 static void vlv_compute_dpll(struct intel_crtc
*crtc
,
6590 struct intel_crtc_state
*pipe_config
)
6592 pipe_config
->dpll_hw_state
.dpll
= DPLL_INTEGRATED_REF_CLK_VLV
|
6593 DPLL_REF_CLK_ENABLE_VLV
| DPLL_VGA_MODE_DIS
;
6594 if (crtc
->pipe
!= PIPE_A
)
6595 pipe_config
->dpll_hw_state
.dpll
|= DPLL_INTEGRATED_CRI_CLK_VLV
;
6597 /* DPLL not used with DSI, but still need the rest set up */
6598 if (!intel_crtc_has_type(pipe_config
, INTEL_OUTPUT_DSI
))
6599 pipe_config
->dpll_hw_state
.dpll
|= DPLL_VCO_ENABLE
|
6600 DPLL_EXT_BUFFER_ENABLE_VLV
;
6602 pipe_config
->dpll_hw_state
.dpll_md
=
6603 (pipe_config
->pixel_multiplier
- 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT
;
6606 static void chv_compute_dpll(struct intel_crtc
*crtc
,
6607 struct intel_crtc_state
*pipe_config
)
6609 pipe_config
->dpll_hw_state
.dpll
= DPLL_SSC_REF_CLK_CHV
|
6610 DPLL_REF_CLK_ENABLE_VLV
| DPLL_VGA_MODE_DIS
;
6611 if (crtc
->pipe
!= PIPE_A
)
6612 pipe_config
->dpll_hw_state
.dpll
|= DPLL_INTEGRATED_CRI_CLK_VLV
;
6614 /* DPLL not used with DSI, but still need the rest set up */
6615 if (!intel_crtc_has_type(pipe_config
, INTEL_OUTPUT_DSI
))
6616 pipe_config
->dpll_hw_state
.dpll
|= DPLL_VCO_ENABLE
;
6618 pipe_config
->dpll_hw_state
.dpll_md
=
6619 (pipe_config
->pixel_multiplier
- 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT
;
6622 static void vlv_prepare_pll(struct intel_crtc
*crtc
,
6623 const struct intel_crtc_state
*pipe_config
)
6625 struct drm_device
*dev
= crtc
->base
.dev
;
6626 struct drm_i915_private
*dev_priv
= to_i915(dev
);
6627 enum pipe pipe
= crtc
->pipe
;
6629 u32 bestn
, bestm1
, bestm2
, bestp1
, bestp2
;
6630 u32 coreclk
, reg_val
;
6633 I915_WRITE(DPLL(pipe
),
6634 pipe_config
->dpll_hw_state
.dpll
&
6635 ~(DPLL_VCO_ENABLE
| DPLL_EXT_BUFFER_ENABLE_VLV
));
6637 /* No need to actually set up the DPLL with DSI */
6638 if ((pipe_config
->dpll_hw_state
.dpll
& DPLL_VCO_ENABLE
) == 0)
6641 mutex_lock(&dev_priv
->sb_lock
);
6643 bestn
= pipe_config
->dpll
.n
;
6644 bestm1
= pipe_config
->dpll
.m1
;
6645 bestm2
= pipe_config
->dpll
.m2
;
6646 bestp1
= pipe_config
->dpll
.p1
;
6647 bestp2
= pipe_config
->dpll
.p2
;
6649 /* See eDP HDMI DPIO driver vbios notes doc */
6651 /* PLL B needs special handling */
6653 vlv_pllb_recal_opamp(dev_priv
, pipe
);
6655 /* Set up Tx target for periodic Rcomp update */
6656 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW9_BCAST
, 0x0100000f);
6658 /* Disable target IRef on PLL */
6659 reg_val
= vlv_dpio_read(dev_priv
, pipe
, VLV_PLL_DW8(pipe
));
6660 reg_val
&= 0x00ffffff;
6661 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW8(pipe
), reg_val
);
6663 /* Disable fast lock */
6664 vlv_dpio_write(dev_priv
, pipe
, VLV_CMN_DW0
, 0x610);
6666 /* Set idtafcrecal before PLL is enabled */
6667 mdiv
= ((bestm1
<< DPIO_M1DIV_SHIFT
) | (bestm2
& DPIO_M2DIV_MASK
));
6668 mdiv
|= ((bestp1
<< DPIO_P1_SHIFT
) | (bestp2
<< DPIO_P2_SHIFT
));
6669 mdiv
|= ((bestn
<< DPIO_N_SHIFT
));
6670 mdiv
|= (1 << DPIO_K_SHIFT
);
6673 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
6674 * but we don't support that).
6675 * Note: don't use the DAC post divider as it seems unstable.
6677 mdiv
|= (DPIO_POST_DIV_HDMIDP
<< DPIO_POST_DIV_SHIFT
);
6678 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW3(pipe
), mdiv
);
6680 mdiv
|= DPIO_ENABLE_CALIBRATION
;
6681 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW3(pipe
), mdiv
);
6683 /* Set HBR and RBR LPF coefficients */
6684 if (pipe_config
->port_clock
== 162000 ||
6685 intel_crtc_has_type(crtc
->config
, INTEL_OUTPUT_ANALOG
) ||
6686 intel_crtc_has_type(crtc
->config
, INTEL_OUTPUT_HDMI
))
6687 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW10(pipe
),
6690 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW10(pipe
),
6693 if (intel_crtc_has_dp_encoder(pipe_config
)) {
6694 /* Use SSC source */
6696 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW5(pipe
),
6699 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW5(pipe
),
6701 } else { /* HDMI or VGA */
6702 /* Use bend source */
6704 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW5(pipe
),
6707 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW5(pipe
),
6711 coreclk
= vlv_dpio_read(dev_priv
, pipe
, VLV_PLL_DW7(pipe
));
6712 coreclk
= (coreclk
& 0x0000ff00) | 0x01c00000;
6713 if (intel_crtc_has_dp_encoder(crtc
->config
))
6714 coreclk
|= 0x01000000;
6715 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW7(pipe
), coreclk
);
6717 vlv_dpio_write(dev_priv
, pipe
, VLV_PLL_DW11(pipe
), 0x87871000);
6718 mutex_unlock(&dev_priv
->sb_lock
);
6721 static void chv_prepare_pll(struct intel_crtc
*crtc
,
6722 const struct intel_crtc_state
*pipe_config
)
6724 struct drm_device
*dev
= crtc
->base
.dev
;
6725 struct drm_i915_private
*dev_priv
= to_i915(dev
);
6726 enum pipe pipe
= crtc
->pipe
;
6727 enum dpio_channel port
= vlv_pipe_to_channel(pipe
);
6728 u32 loopfilter
, tribuf_calcntr
;
6729 u32 bestn
, bestm1
, bestm2
, bestp1
, bestp2
, bestm2_frac
;
6733 /* Enable Refclk and SSC */
6734 I915_WRITE(DPLL(pipe
),
6735 pipe_config
->dpll_hw_state
.dpll
& ~DPLL_VCO_ENABLE
);
6737 /* No need to actually set up the DPLL with DSI */
6738 if ((pipe_config
->dpll_hw_state
.dpll
& DPLL_VCO_ENABLE
) == 0)
6741 bestn
= pipe_config
->dpll
.n
;
6742 bestm2_frac
= pipe_config
->dpll
.m2
& 0x3fffff;
6743 bestm1
= pipe_config
->dpll
.m1
;
6744 bestm2
= pipe_config
->dpll
.m2
>> 22;
6745 bestp1
= pipe_config
->dpll
.p1
;
6746 bestp2
= pipe_config
->dpll
.p2
;
6747 vco
= pipe_config
->dpll
.vco
;
6751 mutex_lock(&dev_priv
->sb_lock
);
6753 /* p1 and p2 divider */
6754 vlv_dpio_write(dev_priv
, pipe
, CHV_CMN_DW13(port
),
6755 5 << DPIO_CHV_S1_DIV_SHIFT
|
6756 bestp1
<< DPIO_CHV_P1_DIV_SHIFT
|
6757 bestp2
<< DPIO_CHV_P2_DIV_SHIFT
|
6758 1 << DPIO_CHV_K_DIV_SHIFT
);
6760 /* Feedback post-divider - m2 */
6761 vlv_dpio_write(dev_priv
, pipe
, CHV_PLL_DW0(port
), bestm2
);
6763 /* Feedback refclk divider - n and m1 */
6764 vlv_dpio_write(dev_priv
, pipe
, CHV_PLL_DW1(port
),
6765 DPIO_CHV_M1_DIV_BY_2
|
6766 1 << DPIO_CHV_N_DIV_SHIFT
);
6768 /* M2 fraction division */
6769 vlv_dpio_write(dev_priv
, pipe
, CHV_PLL_DW2(port
), bestm2_frac
);
6771 /* M2 fraction division enable */
6772 dpio_val
= vlv_dpio_read(dev_priv
, pipe
, CHV_PLL_DW3(port
));
6773 dpio_val
&= ~(DPIO_CHV_FEEDFWD_GAIN_MASK
| DPIO_CHV_FRAC_DIV_EN
);
6774 dpio_val
|= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT
);
6776 dpio_val
|= DPIO_CHV_FRAC_DIV_EN
;
6777 vlv_dpio_write(dev_priv
, pipe
, CHV_PLL_DW3(port
), dpio_val
);
6779 /* Program digital lock detect threshold */
6780 dpio_val
= vlv_dpio_read(dev_priv
, pipe
, CHV_PLL_DW9(port
));
6781 dpio_val
&= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK
|
6782 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE
);
6783 dpio_val
|= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT
);
6785 dpio_val
|= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE
;
6786 vlv_dpio_write(dev_priv
, pipe
, CHV_PLL_DW9(port
), dpio_val
);
6789 if (vco
== 5400000) {
6790 loopfilter
|= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT
);
6791 loopfilter
|= (0x8 << DPIO_CHV_INT_COEFF_SHIFT
);
6792 loopfilter
|= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT
);
6793 tribuf_calcntr
= 0x9;
6794 } else if (vco
<= 6200000) {
6795 loopfilter
|= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT
);
6796 loopfilter
|= (0xB << DPIO_CHV_INT_COEFF_SHIFT
);
6797 loopfilter
|= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT
);
6798 tribuf_calcntr
= 0x9;
6799 } else if (vco
<= 6480000) {
6800 loopfilter
|= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT
);
6801 loopfilter
|= (0x9 << DPIO_CHV_INT_COEFF_SHIFT
);
6802 loopfilter
|= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT
);
6803 tribuf_calcntr
= 0x8;
6805 /* Not supported. Apply the same limits as in the max case */
6806 loopfilter
|= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT
);
6807 loopfilter
|= (0x9 << DPIO_CHV_INT_COEFF_SHIFT
);
6808 loopfilter
|= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT
);
6811 vlv_dpio_write(dev_priv
, pipe
, CHV_PLL_DW6(port
), loopfilter
);
6813 dpio_val
= vlv_dpio_read(dev_priv
, pipe
, CHV_PLL_DW8(port
));
6814 dpio_val
&= ~DPIO_CHV_TDC_TARGET_CNT_MASK
;
6815 dpio_val
|= (tribuf_calcntr
<< DPIO_CHV_TDC_TARGET_CNT_SHIFT
);
6816 vlv_dpio_write(dev_priv
, pipe
, CHV_PLL_DW8(port
), dpio_val
);
6819 vlv_dpio_write(dev_priv
, pipe
, CHV_CMN_DW14(port
),
6820 vlv_dpio_read(dev_priv
, pipe
, CHV_CMN_DW14(port
)) |
6823 mutex_unlock(&dev_priv
->sb_lock
);
6827 * vlv_force_pll_on - forcibly enable just the PLL
6828 * @dev_priv: i915 private structure
6829 * @pipe: pipe PLL to enable
6830 * @dpll: PLL configuration
6832 * Enable the PLL for @pipe using the supplied @dpll config. To be used
6833 * in cases where we need the PLL enabled even when @pipe is not going to
6836 int vlv_force_pll_on(struct drm_i915_private
*dev_priv
, enum pipe pipe
,
6837 const struct dpll
*dpll
)
6839 struct intel_crtc
*crtc
= intel_get_crtc_for_pipe(dev_priv
, pipe
);
6840 struct intel_crtc_state
*pipe_config
;
6842 pipe_config
= kzalloc(sizeof(*pipe_config
), GFP_KERNEL
);
6846 pipe_config
->base
.crtc
= &crtc
->base
;
6847 pipe_config
->pixel_multiplier
= 1;
6848 pipe_config
->dpll
= *dpll
;
6850 if (IS_CHERRYVIEW(dev_priv
)) {
6851 chv_compute_dpll(crtc
, pipe_config
);
6852 chv_prepare_pll(crtc
, pipe_config
);
6853 chv_enable_pll(crtc
, pipe_config
);
6855 vlv_compute_dpll(crtc
, pipe_config
);
6856 vlv_prepare_pll(crtc
, pipe_config
);
6857 vlv_enable_pll(crtc
, pipe_config
);
6866 * vlv_force_pll_off - forcibly disable just the PLL
6867 * @dev_priv: i915 private structure
6868 * @pipe: pipe PLL to disable
6870 * Disable the PLL for @pipe. To be used in cases where we need
6871 * the PLL enabled even when @pipe is not going to be enabled.
6873 void vlv_force_pll_off(struct drm_i915_private
*dev_priv
, enum pipe pipe
)
6875 if (IS_CHERRYVIEW(dev_priv
))
6876 chv_disable_pll(dev_priv
, pipe
);
6878 vlv_disable_pll(dev_priv
, pipe
);
6881 static void i9xx_compute_dpll(struct intel_crtc
*crtc
,
6882 struct intel_crtc_state
*crtc_state
,
6883 struct dpll
*reduced_clock
)
6885 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
6887 struct dpll
*clock
= &crtc_state
->dpll
;
6889 i9xx_update_pll_dividers(crtc
, crtc_state
, reduced_clock
);
6891 dpll
= DPLL_VGA_MODE_DIS
;
6893 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
))
6894 dpll
|= DPLLB_MODE_LVDS
;
6896 dpll
|= DPLLB_MODE_DAC_SERIAL
;
6898 if (IS_I945G(dev_priv
) || IS_I945GM(dev_priv
) ||
6899 IS_G33(dev_priv
) || IS_PINEVIEW(dev_priv
)) {
6900 dpll
|= (crtc_state
->pixel_multiplier
- 1)
6901 << SDVO_MULTIPLIER_SHIFT_HIRES
;
6904 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_SDVO
) ||
6905 intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_HDMI
))
6906 dpll
|= DPLL_SDVO_HIGH_SPEED
;
6908 if (intel_crtc_has_dp_encoder(crtc_state
))
6909 dpll
|= DPLL_SDVO_HIGH_SPEED
;
6911 /* compute bitmask from p1 value */
6912 if (IS_PINEVIEW(dev_priv
))
6913 dpll
|= (1 << (clock
->p1
- 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW
;
6915 dpll
|= (1 << (clock
->p1
- 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT
;
6916 if (IS_G4X(dev_priv
) && reduced_clock
)
6917 dpll
|= (1 << (reduced_clock
->p1
- 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT
;
6919 switch (clock
->p2
) {
6921 dpll
|= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5
;
6924 dpll
|= DPLLB_LVDS_P2_CLOCK_DIV_7
;
6927 dpll
|= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10
;
6930 dpll
|= DPLLB_LVDS_P2_CLOCK_DIV_14
;
6933 if (INTEL_GEN(dev_priv
) >= 4)
6934 dpll
|= (6 << PLL_LOAD_PULSE_PHASE_SHIFT
);
6936 if (crtc_state
->sdvo_tv_clock
)
6937 dpll
|= PLL_REF_INPUT_TVCLKINBC
;
6938 else if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
) &&
6939 intel_panel_use_ssc(dev_priv
))
6940 dpll
|= PLLB_REF_INPUT_SPREADSPECTRUMIN
;
6942 dpll
|= PLL_REF_INPUT_DREFCLK
;
6944 dpll
|= DPLL_VCO_ENABLE
;
6945 crtc_state
->dpll_hw_state
.dpll
= dpll
;
6947 if (INTEL_GEN(dev_priv
) >= 4) {
6948 u32 dpll_md
= (crtc_state
->pixel_multiplier
- 1)
6949 << DPLL_MD_UDI_MULTIPLIER_SHIFT
;
6950 crtc_state
->dpll_hw_state
.dpll_md
= dpll_md
;
6954 static void i8xx_compute_dpll(struct intel_crtc
*crtc
,
6955 struct intel_crtc_state
*crtc_state
,
6956 struct dpll
*reduced_clock
)
6958 struct drm_device
*dev
= crtc
->base
.dev
;
6959 struct drm_i915_private
*dev_priv
= to_i915(dev
);
6961 struct dpll
*clock
= &crtc_state
->dpll
;
6963 i9xx_update_pll_dividers(crtc
, crtc_state
, reduced_clock
);
6965 dpll
= DPLL_VGA_MODE_DIS
;
6967 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
)) {
6968 dpll
|= (1 << (clock
->p1
- 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT
;
6971 dpll
|= PLL_P1_DIVIDE_BY_TWO
;
6973 dpll
|= (clock
->p1
- 2) << DPLL_FPA01_P1_POST_DIV_SHIFT
;
6975 dpll
|= PLL_P2_DIVIDE_BY_4
;
6978 if (!IS_I830(dev_priv
) &&
6979 intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_DVO
))
6980 dpll
|= DPLL_DVO_2X_MODE
;
6982 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
) &&
6983 intel_panel_use_ssc(dev_priv
))
6984 dpll
|= PLLB_REF_INPUT_SPREADSPECTRUMIN
;
6986 dpll
|= PLL_REF_INPUT_DREFCLK
;
6988 dpll
|= DPLL_VCO_ENABLE
;
6989 crtc_state
->dpll_hw_state
.dpll
= dpll
;
6992 static void intel_set_pipe_timings(struct intel_crtc
*intel_crtc
)
6994 struct drm_i915_private
*dev_priv
= to_i915(intel_crtc
->base
.dev
);
6995 enum pipe pipe
= intel_crtc
->pipe
;
6996 enum transcoder cpu_transcoder
= intel_crtc
->config
->cpu_transcoder
;
6997 const struct drm_display_mode
*adjusted_mode
= &intel_crtc
->config
->base
.adjusted_mode
;
6998 uint32_t crtc_vtotal
, crtc_vblank_end
;
7001 /* We need to be careful not to changed the adjusted mode, for otherwise
7002 * the hw state checker will get angry at the mismatch. */
7003 crtc_vtotal
= adjusted_mode
->crtc_vtotal
;
7004 crtc_vblank_end
= adjusted_mode
->crtc_vblank_end
;
7006 if (adjusted_mode
->flags
& DRM_MODE_FLAG_INTERLACE
) {
7007 /* the chip adds 2 halflines automatically */
7009 crtc_vblank_end
-= 1;
7011 if (intel_crtc_has_type(intel_crtc
->config
, INTEL_OUTPUT_SDVO
))
7012 vsyncshift
= (adjusted_mode
->crtc_htotal
- 1) / 2;
7014 vsyncshift
= adjusted_mode
->crtc_hsync_start
-
7015 adjusted_mode
->crtc_htotal
/ 2;
7017 vsyncshift
+= adjusted_mode
->crtc_htotal
;
7020 if (INTEL_GEN(dev_priv
) > 3)
7021 I915_WRITE(VSYNCSHIFT(cpu_transcoder
), vsyncshift
);
7023 I915_WRITE(HTOTAL(cpu_transcoder
),
7024 (adjusted_mode
->crtc_hdisplay
- 1) |
7025 ((adjusted_mode
->crtc_htotal
- 1) << 16));
7026 I915_WRITE(HBLANK(cpu_transcoder
),
7027 (adjusted_mode
->crtc_hblank_start
- 1) |
7028 ((adjusted_mode
->crtc_hblank_end
- 1) << 16));
7029 I915_WRITE(HSYNC(cpu_transcoder
),
7030 (adjusted_mode
->crtc_hsync_start
- 1) |
7031 ((adjusted_mode
->crtc_hsync_end
- 1) << 16));
7033 I915_WRITE(VTOTAL(cpu_transcoder
),
7034 (adjusted_mode
->crtc_vdisplay
- 1) |
7035 ((crtc_vtotal
- 1) << 16));
7036 I915_WRITE(VBLANK(cpu_transcoder
),
7037 (adjusted_mode
->crtc_vblank_start
- 1) |
7038 ((crtc_vblank_end
- 1) << 16));
7039 I915_WRITE(VSYNC(cpu_transcoder
),
7040 (adjusted_mode
->crtc_vsync_start
- 1) |
7041 ((adjusted_mode
->crtc_vsync_end
- 1) << 16));
7043 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
7044 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
7045 * documented on the DDI_FUNC_CTL register description, EDP Input Select
7047 if (IS_HASWELL(dev_priv
) && cpu_transcoder
== TRANSCODER_EDP
&&
7048 (pipe
== PIPE_B
|| pipe
== PIPE_C
))
7049 I915_WRITE(VTOTAL(pipe
), I915_READ(VTOTAL(cpu_transcoder
)));
7053 static void intel_set_pipe_src_size(struct intel_crtc
*intel_crtc
)
7055 struct drm_device
*dev
= intel_crtc
->base
.dev
;
7056 struct drm_i915_private
*dev_priv
= to_i915(dev
);
7057 enum pipe pipe
= intel_crtc
->pipe
;
7059 /* pipesrc controls the size that is scaled from, which should
7060 * always be the user's requested size.
7062 I915_WRITE(PIPESRC(pipe
),
7063 ((intel_crtc
->config
->pipe_src_w
- 1) << 16) |
7064 (intel_crtc
->config
->pipe_src_h
- 1));
7067 static void intel_get_pipe_timings(struct intel_crtc
*crtc
,
7068 struct intel_crtc_state
*pipe_config
)
7070 struct drm_device
*dev
= crtc
->base
.dev
;
7071 struct drm_i915_private
*dev_priv
= to_i915(dev
);
7072 enum transcoder cpu_transcoder
= pipe_config
->cpu_transcoder
;
7075 tmp
= I915_READ(HTOTAL(cpu_transcoder
));
7076 pipe_config
->base
.adjusted_mode
.crtc_hdisplay
= (tmp
& 0xffff) + 1;
7077 pipe_config
->base
.adjusted_mode
.crtc_htotal
= ((tmp
>> 16) & 0xffff) + 1;
7078 tmp
= I915_READ(HBLANK(cpu_transcoder
));
7079 pipe_config
->base
.adjusted_mode
.crtc_hblank_start
= (tmp
& 0xffff) + 1;
7080 pipe_config
->base
.adjusted_mode
.crtc_hblank_end
= ((tmp
>> 16) & 0xffff) + 1;
7081 tmp
= I915_READ(HSYNC(cpu_transcoder
));
7082 pipe_config
->base
.adjusted_mode
.crtc_hsync_start
= (tmp
& 0xffff) + 1;
7083 pipe_config
->base
.adjusted_mode
.crtc_hsync_end
= ((tmp
>> 16) & 0xffff) + 1;
7085 tmp
= I915_READ(VTOTAL(cpu_transcoder
));
7086 pipe_config
->base
.adjusted_mode
.crtc_vdisplay
= (tmp
& 0xffff) + 1;
7087 pipe_config
->base
.adjusted_mode
.crtc_vtotal
= ((tmp
>> 16) & 0xffff) + 1;
7088 tmp
= I915_READ(VBLANK(cpu_transcoder
));
7089 pipe_config
->base
.adjusted_mode
.crtc_vblank_start
= (tmp
& 0xffff) + 1;
7090 pipe_config
->base
.adjusted_mode
.crtc_vblank_end
= ((tmp
>> 16) & 0xffff) + 1;
7091 tmp
= I915_READ(VSYNC(cpu_transcoder
));
7092 pipe_config
->base
.adjusted_mode
.crtc_vsync_start
= (tmp
& 0xffff) + 1;
7093 pipe_config
->base
.adjusted_mode
.crtc_vsync_end
= ((tmp
>> 16) & 0xffff) + 1;
7095 if (I915_READ(PIPECONF(cpu_transcoder
)) & PIPECONF_INTERLACE_MASK
) {
7096 pipe_config
->base
.adjusted_mode
.flags
|= DRM_MODE_FLAG_INTERLACE
;
7097 pipe_config
->base
.adjusted_mode
.crtc_vtotal
+= 1;
7098 pipe_config
->base
.adjusted_mode
.crtc_vblank_end
+= 1;
7102 static void intel_get_pipe_src_size(struct intel_crtc
*crtc
,
7103 struct intel_crtc_state
*pipe_config
)
7105 struct drm_device
*dev
= crtc
->base
.dev
;
7106 struct drm_i915_private
*dev_priv
= to_i915(dev
);
7109 tmp
= I915_READ(PIPESRC(crtc
->pipe
));
7110 pipe_config
->pipe_src_h
= (tmp
& 0xffff) + 1;
7111 pipe_config
->pipe_src_w
= ((tmp
>> 16) & 0xffff) + 1;
7113 pipe_config
->base
.mode
.vdisplay
= pipe_config
->pipe_src_h
;
7114 pipe_config
->base
.mode
.hdisplay
= pipe_config
->pipe_src_w
;
7117 void intel_mode_from_pipe_config(struct drm_display_mode
*mode
,
7118 struct intel_crtc_state
*pipe_config
)
7120 mode
->hdisplay
= pipe_config
->base
.adjusted_mode
.crtc_hdisplay
;
7121 mode
->htotal
= pipe_config
->base
.adjusted_mode
.crtc_htotal
;
7122 mode
->hsync_start
= pipe_config
->base
.adjusted_mode
.crtc_hsync_start
;
7123 mode
->hsync_end
= pipe_config
->base
.adjusted_mode
.crtc_hsync_end
;
7125 mode
->vdisplay
= pipe_config
->base
.adjusted_mode
.crtc_vdisplay
;
7126 mode
->vtotal
= pipe_config
->base
.adjusted_mode
.crtc_vtotal
;
7127 mode
->vsync_start
= pipe_config
->base
.adjusted_mode
.crtc_vsync_start
;
7128 mode
->vsync_end
= pipe_config
->base
.adjusted_mode
.crtc_vsync_end
;
7130 mode
->flags
= pipe_config
->base
.adjusted_mode
.flags
;
7131 mode
->type
= DRM_MODE_TYPE_DRIVER
;
7133 mode
->clock
= pipe_config
->base
.adjusted_mode
.crtc_clock
;
7135 mode
->hsync
= drm_mode_hsync(mode
);
7136 mode
->vrefresh
= drm_mode_vrefresh(mode
);
7137 drm_mode_set_name(mode
);
7140 static void i9xx_set_pipeconf(struct intel_crtc
*intel_crtc
)
7142 struct drm_i915_private
*dev_priv
= to_i915(intel_crtc
->base
.dev
);
7147 /* we keep both pipes enabled on 830 */
7148 if (IS_I830(dev_priv
))
7149 pipeconf
|= I915_READ(PIPECONF(intel_crtc
->pipe
)) & PIPECONF_ENABLE
;
7151 if (intel_crtc
->config
->double_wide
)
7152 pipeconf
|= PIPECONF_DOUBLE_WIDE
;
7154 /* only g4x and later have fancy bpc/dither controls */
7155 if (IS_G4X(dev_priv
) || IS_VALLEYVIEW(dev_priv
) ||
7156 IS_CHERRYVIEW(dev_priv
)) {
7157 /* Bspec claims that we can't use dithering for 30bpp pipes. */
7158 if (intel_crtc
->config
->dither
&& intel_crtc
->config
->pipe_bpp
!= 30)
7159 pipeconf
|= PIPECONF_DITHER_EN
|
7160 PIPECONF_DITHER_TYPE_SP
;
7162 switch (intel_crtc
->config
->pipe_bpp
) {
7164 pipeconf
|= PIPECONF_6BPC
;
7167 pipeconf
|= PIPECONF_8BPC
;
7170 pipeconf
|= PIPECONF_10BPC
;
7173 /* Case prevented by intel_choose_pipe_bpp_dither. */
7178 if (intel_crtc
->config
->base
.adjusted_mode
.flags
& DRM_MODE_FLAG_INTERLACE
) {
7179 if (INTEL_GEN(dev_priv
) < 4 ||
7180 intel_crtc_has_type(intel_crtc
->config
, INTEL_OUTPUT_SDVO
))
7181 pipeconf
|= PIPECONF_INTERLACE_W_FIELD_INDICATION
;
7183 pipeconf
|= PIPECONF_INTERLACE_W_SYNC_SHIFT
;
7185 pipeconf
|= PIPECONF_PROGRESSIVE
;
7187 if ((IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
)) &&
7188 intel_crtc
->config
->limited_color_range
)
7189 pipeconf
|= PIPECONF_COLOR_RANGE_SELECT
;
7191 I915_WRITE(PIPECONF(intel_crtc
->pipe
), pipeconf
);
7192 POSTING_READ(PIPECONF(intel_crtc
->pipe
));
7195 static int i8xx_crtc_compute_clock(struct intel_crtc
*crtc
,
7196 struct intel_crtc_state
*crtc_state
)
7198 struct drm_device
*dev
= crtc
->base
.dev
;
7199 struct drm_i915_private
*dev_priv
= to_i915(dev
);
7200 const struct intel_limit
*limit
;
7203 memset(&crtc_state
->dpll_hw_state
, 0,
7204 sizeof(crtc_state
->dpll_hw_state
));
7206 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
)) {
7207 if (intel_panel_use_ssc(dev_priv
)) {
7208 refclk
= dev_priv
->vbt
.lvds_ssc_freq
;
7209 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk
);
7212 limit
= &intel_limits_i8xx_lvds
;
7213 } else if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_DVO
)) {
7214 limit
= &intel_limits_i8xx_dvo
;
7216 limit
= &intel_limits_i8xx_dac
;
7219 if (!crtc_state
->clock_set
&&
7220 !i9xx_find_best_dpll(limit
, crtc_state
, crtc_state
->port_clock
,
7221 refclk
, NULL
, &crtc_state
->dpll
)) {
7222 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7226 i8xx_compute_dpll(crtc
, crtc_state
, NULL
);
7231 static int g4x_crtc_compute_clock(struct intel_crtc
*crtc
,
7232 struct intel_crtc_state
*crtc_state
)
7234 struct drm_device
*dev
= crtc
->base
.dev
;
7235 struct drm_i915_private
*dev_priv
= to_i915(dev
);
7236 const struct intel_limit
*limit
;
7239 memset(&crtc_state
->dpll_hw_state
, 0,
7240 sizeof(crtc_state
->dpll_hw_state
));
7242 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
)) {
7243 if (intel_panel_use_ssc(dev_priv
)) {
7244 refclk
= dev_priv
->vbt
.lvds_ssc_freq
;
7245 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk
);
7248 if (intel_is_dual_link_lvds(dev
))
7249 limit
= &intel_limits_g4x_dual_channel_lvds
;
7251 limit
= &intel_limits_g4x_single_channel_lvds
;
7252 } else if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_HDMI
) ||
7253 intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_ANALOG
)) {
7254 limit
= &intel_limits_g4x_hdmi
;
7255 } else if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_SDVO
)) {
7256 limit
= &intel_limits_g4x_sdvo
;
7258 /* The option is for other outputs */
7259 limit
= &intel_limits_i9xx_sdvo
;
7262 if (!crtc_state
->clock_set
&&
7263 !g4x_find_best_dpll(limit
, crtc_state
, crtc_state
->port_clock
,
7264 refclk
, NULL
, &crtc_state
->dpll
)) {
7265 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7269 i9xx_compute_dpll(crtc
, crtc_state
, NULL
);
7274 static int pnv_crtc_compute_clock(struct intel_crtc
*crtc
,
7275 struct intel_crtc_state
*crtc_state
)
7277 struct drm_device
*dev
= crtc
->base
.dev
;
7278 struct drm_i915_private
*dev_priv
= to_i915(dev
);
7279 const struct intel_limit
*limit
;
7282 memset(&crtc_state
->dpll_hw_state
, 0,
7283 sizeof(crtc_state
->dpll_hw_state
));
7285 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
)) {
7286 if (intel_panel_use_ssc(dev_priv
)) {
7287 refclk
= dev_priv
->vbt
.lvds_ssc_freq
;
7288 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk
);
7291 limit
= &intel_limits_pineview_lvds
;
7293 limit
= &intel_limits_pineview_sdvo
;
7296 if (!crtc_state
->clock_set
&&
7297 !pnv_find_best_dpll(limit
, crtc_state
, crtc_state
->port_clock
,
7298 refclk
, NULL
, &crtc_state
->dpll
)) {
7299 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7303 i9xx_compute_dpll(crtc
, crtc_state
, NULL
);
7308 static int i9xx_crtc_compute_clock(struct intel_crtc
*crtc
,
7309 struct intel_crtc_state
*crtc_state
)
7311 struct drm_device
*dev
= crtc
->base
.dev
;
7312 struct drm_i915_private
*dev_priv
= to_i915(dev
);
7313 const struct intel_limit
*limit
;
7316 memset(&crtc_state
->dpll_hw_state
, 0,
7317 sizeof(crtc_state
->dpll_hw_state
));
7319 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
)) {
7320 if (intel_panel_use_ssc(dev_priv
)) {
7321 refclk
= dev_priv
->vbt
.lvds_ssc_freq
;
7322 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk
);
7325 limit
= &intel_limits_i9xx_lvds
;
7327 limit
= &intel_limits_i9xx_sdvo
;
7330 if (!crtc_state
->clock_set
&&
7331 !i9xx_find_best_dpll(limit
, crtc_state
, crtc_state
->port_clock
,
7332 refclk
, NULL
, &crtc_state
->dpll
)) {
7333 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7337 i9xx_compute_dpll(crtc
, crtc_state
, NULL
);
7342 static int chv_crtc_compute_clock(struct intel_crtc
*crtc
,
7343 struct intel_crtc_state
*crtc_state
)
7345 int refclk
= 100000;
7346 const struct intel_limit
*limit
= &intel_limits_chv
;
7348 memset(&crtc_state
->dpll_hw_state
, 0,
7349 sizeof(crtc_state
->dpll_hw_state
));
7351 if (!crtc_state
->clock_set
&&
7352 !chv_find_best_dpll(limit
, crtc_state
, crtc_state
->port_clock
,
7353 refclk
, NULL
, &crtc_state
->dpll
)) {
7354 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7358 chv_compute_dpll(crtc
, crtc_state
);
7363 static int vlv_crtc_compute_clock(struct intel_crtc
*crtc
,
7364 struct intel_crtc_state
*crtc_state
)
7366 int refclk
= 100000;
7367 const struct intel_limit
*limit
= &intel_limits_vlv
;
7369 memset(&crtc_state
->dpll_hw_state
, 0,
7370 sizeof(crtc_state
->dpll_hw_state
));
7372 if (!crtc_state
->clock_set
&&
7373 !vlv_find_best_dpll(limit
, crtc_state
, crtc_state
->port_clock
,
7374 refclk
, NULL
, &crtc_state
->dpll
)) {
7375 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7379 vlv_compute_dpll(crtc
, crtc_state
);
7384 static void i9xx_get_pfit_config(struct intel_crtc
*crtc
,
7385 struct intel_crtc_state
*pipe_config
)
7387 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
7390 if (INTEL_GEN(dev_priv
) <= 3 &&
7391 (IS_I830(dev_priv
) || !IS_MOBILE(dev_priv
)))
7394 tmp
= I915_READ(PFIT_CONTROL
);
7395 if (!(tmp
& PFIT_ENABLE
))
7398 /* Check whether the pfit is attached to our pipe. */
7399 if (INTEL_GEN(dev_priv
) < 4) {
7400 if (crtc
->pipe
!= PIPE_B
)
7403 if ((tmp
& PFIT_PIPE_MASK
) != (crtc
->pipe
<< PFIT_PIPE_SHIFT
))
7407 pipe_config
->gmch_pfit
.control
= tmp
;
7408 pipe_config
->gmch_pfit
.pgm_ratios
= I915_READ(PFIT_PGM_RATIOS
);
7411 static void vlv_crtc_clock_get(struct intel_crtc
*crtc
,
7412 struct intel_crtc_state
*pipe_config
)
7414 struct drm_device
*dev
= crtc
->base
.dev
;
7415 struct drm_i915_private
*dev_priv
= to_i915(dev
);
7416 int pipe
= pipe_config
->cpu_transcoder
;
7419 int refclk
= 100000;
7421 /* In case of DSI, DPLL will not be used */
7422 if ((pipe_config
->dpll_hw_state
.dpll
& DPLL_VCO_ENABLE
) == 0)
7425 mutex_lock(&dev_priv
->sb_lock
);
7426 mdiv
= vlv_dpio_read(dev_priv
, pipe
, VLV_PLL_DW3(pipe
));
7427 mutex_unlock(&dev_priv
->sb_lock
);
7429 clock
.m1
= (mdiv
>> DPIO_M1DIV_SHIFT
) & 7;
7430 clock
.m2
= mdiv
& DPIO_M2DIV_MASK
;
7431 clock
.n
= (mdiv
>> DPIO_N_SHIFT
) & 0xf;
7432 clock
.p1
= (mdiv
>> DPIO_P1_SHIFT
) & 7;
7433 clock
.p2
= (mdiv
>> DPIO_P2_SHIFT
) & 0x1f;
7435 pipe_config
->port_clock
= vlv_calc_dpll_params(refclk
, &clock
);
7439 i9xx_get_initial_plane_config(struct intel_crtc
*crtc
,
7440 struct intel_initial_plane_config
*plane_config
)
7442 struct drm_device
*dev
= crtc
->base
.dev
;
7443 struct drm_i915_private
*dev_priv
= to_i915(dev
);
7444 struct intel_plane
*plane
= to_intel_plane(crtc
->base
.primary
);
7445 enum i9xx_plane_id i9xx_plane
= plane
->i9xx_plane
;
7446 enum pipe pipe
= crtc
->pipe
;
7447 u32 val
, base
, offset
;
7448 int fourcc
, pixel_format
;
7449 unsigned int aligned_height
;
7450 struct drm_framebuffer
*fb
;
7451 struct intel_framebuffer
*intel_fb
;
7453 if (!plane
->get_hw_state(plane
))
7456 intel_fb
= kzalloc(sizeof(*intel_fb
), GFP_KERNEL
);
7458 DRM_DEBUG_KMS("failed to alloc fb\n");
7462 fb
= &intel_fb
->base
;
7466 val
= I915_READ(DSPCNTR(i9xx_plane
));
7468 if (INTEL_GEN(dev_priv
) >= 4) {
7469 if (val
& DISPPLANE_TILED
) {
7470 plane_config
->tiling
= I915_TILING_X
;
7471 fb
->modifier
= I915_FORMAT_MOD_X_TILED
;
7475 pixel_format
= val
& DISPPLANE_PIXFORMAT_MASK
;
7476 fourcc
= i9xx_format_to_fourcc(pixel_format
);
7477 fb
->format
= drm_format_info(fourcc
);
7479 if (IS_HASWELL(dev_priv
) || IS_BROADWELL(dev_priv
)) {
7480 offset
= I915_READ(DSPOFFSET(i9xx_plane
));
7481 base
= I915_READ(DSPSURF(i9xx_plane
)) & 0xfffff000;
7482 } else if (INTEL_GEN(dev_priv
) >= 4) {
7483 if (plane_config
->tiling
)
7484 offset
= I915_READ(DSPTILEOFF(i9xx_plane
));
7486 offset
= I915_READ(DSPLINOFF(i9xx_plane
));
7487 base
= I915_READ(DSPSURF(i9xx_plane
)) & 0xfffff000;
7489 base
= I915_READ(DSPADDR(i9xx_plane
));
7491 plane_config
->base
= base
;
7493 val
= I915_READ(PIPESRC(pipe
));
7494 fb
->width
= ((val
>> 16) & 0xfff) + 1;
7495 fb
->height
= ((val
>> 0) & 0xfff) + 1;
7497 val
= I915_READ(DSPSTRIDE(i9xx_plane
));
7498 fb
->pitches
[0] = val
& 0xffffffc0;
7500 aligned_height
= intel_fb_align_height(fb
, 0, fb
->height
);
7502 plane_config
->size
= fb
->pitches
[0] * aligned_height
;
7504 DRM_DEBUG_KMS("%s/%s with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
7505 crtc
->base
.name
, plane
->base
.name
, fb
->width
, fb
->height
,
7506 fb
->format
->cpp
[0] * 8, base
, fb
->pitches
[0],
7507 plane_config
->size
);
7509 plane_config
->fb
= intel_fb
;
7512 static void chv_crtc_clock_get(struct intel_crtc
*crtc
,
7513 struct intel_crtc_state
*pipe_config
)
7515 struct drm_device
*dev
= crtc
->base
.dev
;
7516 struct drm_i915_private
*dev_priv
= to_i915(dev
);
7517 int pipe
= pipe_config
->cpu_transcoder
;
7518 enum dpio_channel port
= vlv_pipe_to_channel(pipe
);
7520 u32 cmn_dw13
, pll_dw0
, pll_dw1
, pll_dw2
, pll_dw3
;
7521 int refclk
= 100000;
7523 /* In case of DSI, DPLL will not be used */
7524 if ((pipe_config
->dpll_hw_state
.dpll
& DPLL_VCO_ENABLE
) == 0)
7527 mutex_lock(&dev_priv
->sb_lock
);
7528 cmn_dw13
= vlv_dpio_read(dev_priv
, pipe
, CHV_CMN_DW13(port
));
7529 pll_dw0
= vlv_dpio_read(dev_priv
, pipe
, CHV_PLL_DW0(port
));
7530 pll_dw1
= vlv_dpio_read(dev_priv
, pipe
, CHV_PLL_DW1(port
));
7531 pll_dw2
= vlv_dpio_read(dev_priv
, pipe
, CHV_PLL_DW2(port
));
7532 pll_dw3
= vlv_dpio_read(dev_priv
, pipe
, CHV_PLL_DW3(port
));
7533 mutex_unlock(&dev_priv
->sb_lock
);
7535 clock
.m1
= (pll_dw1
& 0x7) == DPIO_CHV_M1_DIV_BY_2
? 2 : 0;
7536 clock
.m2
= (pll_dw0
& 0xff) << 22;
7537 if (pll_dw3
& DPIO_CHV_FRAC_DIV_EN
)
7538 clock
.m2
|= pll_dw2
& 0x3fffff;
7539 clock
.n
= (pll_dw1
>> DPIO_CHV_N_DIV_SHIFT
) & 0xf;
7540 clock
.p1
= (cmn_dw13
>> DPIO_CHV_P1_DIV_SHIFT
) & 0x7;
7541 clock
.p2
= (cmn_dw13
>> DPIO_CHV_P2_DIV_SHIFT
) & 0x1f;
7543 pipe_config
->port_clock
= chv_calc_dpll_params(refclk
, &clock
);
7546 static bool i9xx_get_pipe_config(struct intel_crtc
*crtc
,
7547 struct intel_crtc_state
*pipe_config
)
7549 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
7550 enum intel_display_power_domain power_domain
;
7554 power_domain
= POWER_DOMAIN_PIPE(crtc
->pipe
);
7555 if (!intel_display_power_get_if_enabled(dev_priv
, power_domain
))
7558 pipe_config
->cpu_transcoder
= (enum transcoder
) crtc
->pipe
;
7559 pipe_config
->shared_dpll
= NULL
;
7563 tmp
= I915_READ(PIPECONF(crtc
->pipe
));
7564 if (!(tmp
& PIPECONF_ENABLE
))
7567 if (IS_G4X(dev_priv
) || IS_VALLEYVIEW(dev_priv
) ||
7568 IS_CHERRYVIEW(dev_priv
)) {
7569 switch (tmp
& PIPECONF_BPC_MASK
) {
7571 pipe_config
->pipe_bpp
= 18;
7574 pipe_config
->pipe_bpp
= 24;
7576 case PIPECONF_10BPC
:
7577 pipe_config
->pipe_bpp
= 30;
7584 if ((IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
)) &&
7585 (tmp
& PIPECONF_COLOR_RANGE_SELECT
))
7586 pipe_config
->limited_color_range
= true;
7588 if (INTEL_GEN(dev_priv
) < 4)
7589 pipe_config
->double_wide
= tmp
& PIPECONF_DOUBLE_WIDE
;
7591 intel_get_pipe_timings(crtc
, pipe_config
);
7592 intel_get_pipe_src_size(crtc
, pipe_config
);
7594 i9xx_get_pfit_config(crtc
, pipe_config
);
7596 if (INTEL_GEN(dev_priv
) >= 4) {
7597 /* No way to read it out on pipes B and C */
7598 if (IS_CHERRYVIEW(dev_priv
) && crtc
->pipe
!= PIPE_A
)
7599 tmp
= dev_priv
->chv_dpll_md
[crtc
->pipe
];
7601 tmp
= I915_READ(DPLL_MD(crtc
->pipe
));
7602 pipe_config
->pixel_multiplier
=
7603 ((tmp
& DPLL_MD_UDI_MULTIPLIER_MASK
)
7604 >> DPLL_MD_UDI_MULTIPLIER_SHIFT
) + 1;
7605 pipe_config
->dpll_hw_state
.dpll_md
= tmp
;
7606 } else if (IS_I945G(dev_priv
) || IS_I945GM(dev_priv
) ||
7607 IS_G33(dev_priv
) || IS_PINEVIEW(dev_priv
)) {
7608 tmp
= I915_READ(DPLL(crtc
->pipe
));
7609 pipe_config
->pixel_multiplier
=
7610 ((tmp
& SDVO_MULTIPLIER_MASK
)
7611 >> SDVO_MULTIPLIER_SHIFT_HIRES
) + 1;
7613 /* Note that on i915G/GM the pixel multiplier is in the sdvo
7614 * port and will be fixed up in the encoder->get_config
7616 pipe_config
->pixel_multiplier
= 1;
7618 pipe_config
->dpll_hw_state
.dpll
= I915_READ(DPLL(crtc
->pipe
));
7619 if (!IS_VALLEYVIEW(dev_priv
) && !IS_CHERRYVIEW(dev_priv
)) {
7621 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
7622 * on 830. Filter it out here so that we don't
7623 * report errors due to that.
7625 if (IS_I830(dev_priv
))
7626 pipe_config
->dpll_hw_state
.dpll
&= ~DPLL_DVO_2X_MODE
;
7628 pipe_config
->dpll_hw_state
.fp0
= I915_READ(FP0(crtc
->pipe
));
7629 pipe_config
->dpll_hw_state
.fp1
= I915_READ(FP1(crtc
->pipe
));
7631 /* Mask out read-only status bits. */
7632 pipe_config
->dpll_hw_state
.dpll
&= ~(DPLL_LOCK_VLV
|
7633 DPLL_PORTC_READY_MASK
|
7634 DPLL_PORTB_READY_MASK
);
7637 if (IS_CHERRYVIEW(dev_priv
))
7638 chv_crtc_clock_get(crtc
, pipe_config
);
7639 else if (IS_VALLEYVIEW(dev_priv
))
7640 vlv_crtc_clock_get(crtc
, pipe_config
);
7642 i9xx_crtc_clock_get(crtc
, pipe_config
);
7645 * Normally the dotclock is filled in by the encoder .get_config()
7646 * but in case the pipe is enabled w/o any ports we need a sane
7649 pipe_config
->base
.adjusted_mode
.crtc_clock
=
7650 pipe_config
->port_clock
/ pipe_config
->pixel_multiplier
;
7655 intel_display_power_put(dev_priv
, power_domain
);
7660 static void ironlake_init_pch_refclk(struct drm_i915_private
*dev_priv
)
7662 struct intel_encoder
*encoder
;
7665 bool has_lvds
= false;
7666 bool has_cpu_edp
= false;
7667 bool has_panel
= false;
7668 bool has_ck505
= false;
7669 bool can_ssc
= false;
7670 bool using_ssc_source
= false;
7672 /* We need to take the global config into account */
7673 for_each_intel_encoder(&dev_priv
->drm
, encoder
) {
7674 switch (encoder
->type
) {
7675 case INTEL_OUTPUT_LVDS
:
7679 case INTEL_OUTPUT_EDP
:
7681 if (encoder
->port
== PORT_A
)
7689 if (HAS_PCH_IBX(dev_priv
)) {
7690 has_ck505
= dev_priv
->vbt
.display_clock_mode
;
7691 can_ssc
= has_ck505
;
7697 /* Check if any DPLLs are using the SSC source */
7698 for (i
= 0; i
< dev_priv
->num_shared_dpll
; i
++) {
7699 u32 temp
= I915_READ(PCH_DPLL(i
));
7701 if (!(temp
& DPLL_VCO_ENABLE
))
7704 if ((temp
& PLL_REF_INPUT_MASK
) ==
7705 PLLB_REF_INPUT_SPREADSPECTRUMIN
) {
7706 using_ssc_source
= true;
7711 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d using_ssc_source %d\n",
7712 has_panel
, has_lvds
, has_ck505
, using_ssc_source
);
7714 /* Ironlake: try to setup display ref clock before DPLL
7715 * enabling. This is only under driver's control after
7716 * PCH B stepping, previous chipset stepping should be
7717 * ignoring this setting.
7719 val
= I915_READ(PCH_DREF_CONTROL
);
7721 /* As we must carefully and slowly disable/enable each source in turn,
7722 * compute the final state we want first and check if we need to
7723 * make any changes at all.
7726 final
&= ~DREF_NONSPREAD_SOURCE_MASK
;
7728 final
|= DREF_NONSPREAD_CK505_ENABLE
;
7730 final
|= DREF_NONSPREAD_SOURCE_ENABLE
;
7732 final
&= ~DREF_SSC_SOURCE_MASK
;
7733 final
&= ~DREF_CPU_SOURCE_OUTPUT_MASK
;
7734 final
&= ~DREF_SSC1_ENABLE
;
7737 final
|= DREF_SSC_SOURCE_ENABLE
;
7739 if (intel_panel_use_ssc(dev_priv
) && can_ssc
)
7740 final
|= DREF_SSC1_ENABLE
;
7743 if (intel_panel_use_ssc(dev_priv
) && can_ssc
)
7744 final
|= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD
;
7746 final
|= DREF_CPU_SOURCE_OUTPUT_NONSPREAD
;
7748 final
|= DREF_CPU_SOURCE_OUTPUT_DISABLE
;
7749 } else if (using_ssc_source
) {
7750 final
|= DREF_SSC_SOURCE_ENABLE
;
7751 final
|= DREF_SSC1_ENABLE
;
7757 /* Always enable nonspread source */
7758 val
&= ~DREF_NONSPREAD_SOURCE_MASK
;
7761 val
|= DREF_NONSPREAD_CK505_ENABLE
;
7763 val
|= DREF_NONSPREAD_SOURCE_ENABLE
;
7766 val
&= ~DREF_SSC_SOURCE_MASK
;
7767 val
|= DREF_SSC_SOURCE_ENABLE
;
7769 /* SSC must be turned on before enabling the CPU output */
7770 if (intel_panel_use_ssc(dev_priv
) && can_ssc
) {
7771 DRM_DEBUG_KMS("Using SSC on panel\n");
7772 val
|= DREF_SSC1_ENABLE
;
7774 val
&= ~DREF_SSC1_ENABLE
;
7776 /* Get SSC going before enabling the outputs */
7777 I915_WRITE(PCH_DREF_CONTROL
, val
);
7778 POSTING_READ(PCH_DREF_CONTROL
);
7781 val
&= ~DREF_CPU_SOURCE_OUTPUT_MASK
;
7783 /* Enable CPU source on CPU attached eDP */
7785 if (intel_panel_use_ssc(dev_priv
) && can_ssc
) {
7786 DRM_DEBUG_KMS("Using SSC on eDP\n");
7787 val
|= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD
;
7789 val
|= DREF_CPU_SOURCE_OUTPUT_NONSPREAD
;
7791 val
|= DREF_CPU_SOURCE_OUTPUT_DISABLE
;
7793 I915_WRITE(PCH_DREF_CONTROL
, val
);
7794 POSTING_READ(PCH_DREF_CONTROL
);
7797 DRM_DEBUG_KMS("Disabling CPU source output\n");
7799 val
&= ~DREF_CPU_SOURCE_OUTPUT_MASK
;
7801 /* Turn off CPU output */
7802 val
|= DREF_CPU_SOURCE_OUTPUT_DISABLE
;
7804 I915_WRITE(PCH_DREF_CONTROL
, val
);
7805 POSTING_READ(PCH_DREF_CONTROL
);
7808 if (!using_ssc_source
) {
7809 DRM_DEBUG_KMS("Disabling SSC source\n");
7811 /* Turn off the SSC source */
7812 val
&= ~DREF_SSC_SOURCE_MASK
;
7813 val
|= DREF_SSC_SOURCE_DISABLE
;
7816 val
&= ~DREF_SSC1_ENABLE
;
7818 I915_WRITE(PCH_DREF_CONTROL
, val
);
7819 POSTING_READ(PCH_DREF_CONTROL
);
7824 BUG_ON(val
!= final
);
7827 static void lpt_reset_fdi_mphy(struct drm_i915_private
*dev_priv
)
7831 tmp
= I915_READ(SOUTH_CHICKEN2
);
7832 tmp
|= FDI_MPHY_IOSFSB_RESET_CTL
;
7833 I915_WRITE(SOUTH_CHICKEN2
, tmp
);
7835 if (wait_for_us(I915_READ(SOUTH_CHICKEN2
) &
7836 FDI_MPHY_IOSFSB_RESET_STATUS
, 100))
7837 DRM_ERROR("FDI mPHY reset assert timeout\n");
7839 tmp
= I915_READ(SOUTH_CHICKEN2
);
7840 tmp
&= ~FDI_MPHY_IOSFSB_RESET_CTL
;
7841 I915_WRITE(SOUTH_CHICKEN2
, tmp
);
7843 if (wait_for_us((I915_READ(SOUTH_CHICKEN2
) &
7844 FDI_MPHY_IOSFSB_RESET_STATUS
) == 0, 100))
7845 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
7848 /* WaMPhyProgramming:hsw */
7849 static void lpt_program_fdi_mphy(struct drm_i915_private
*dev_priv
)
7853 tmp
= intel_sbi_read(dev_priv
, 0x8008, SBI_MPHY
);
7854 tmp
&= ~(0xFF << 24);
7855 tmp
|= (0x12 << 24);
7856 intel_sbi_write(dev_priv
, 0x8008, tmp
, SBI_MPHY
);
7858 tmp
= intel_sbi_read(dev_priv
, 0x2008, SBI_MPHY
);
7860 intel_sbi_write(dev_priv
, 0x2008, tmp
, SBI_MPHY
);
7862 tmp
= intel_sbi_read(dev_priv
, 0x2108, SBI_MPHY
);
7864 intel_sbi_write(dev_priv
, 0x2108, tmp
, SBI_MPHY
);
7866 tmp
= intel_sbi_read(dev_priv
, 0x206C, SBI_MPHY
);
7867 tmp
|= (1 << 24) | (1 << 21) | (1 << 18);
7868 intel_sbi_write(dev_priv
, 0x206C, tmp
, SBI_MPHY
);
7870 tmp
= intel_sbi_read(dev_priv
, 0x216C, SBI_MPHY
);
7871 tmp
|= (1 << 24) | (1 << 21) | (1 << 18);
7872 intel_sbi_write(dev_priv
, 0x216C, tmp
, SBI_MPHY
);
7874 tmp
= intel_sbi_read(dev_priv
, 0x2080, SBI_MPHY
);
7877 intel_sbi_write(dev_priv
, 0x2080, tmp
, SBI_MPHY
);
7879 tmp
= intel_sbi_read(dev_priv
, 0x2180, SBI_MPHY
);
7882 intel_sbi_write(dev_priv
, 0x2180, tmp
, SBI_MPHY
);
7884 tmp
= intel_sbi_read(dev_priv
, 0x208C, SBI_MPHY
);
7887 intel_sbi_write(dev_priv
, 0x208C, tmp
, SBI_MPHY
);
7889 tmp
= intel_sbi_read(dev_priv
, 0x218C, SBI_MPHY
);
7892 intel_sbi_write(dev_priv
, 0x218C, tmp
, SBI_MPHY
);
7894 tmp
= intel_sbi_read(dev_priv
, 0x2098, SBI_MPHY
);
7895 tmp
&= ~(0xFF << 16);
7896 tmp
|= (0x1C << 16);
7897 intel_sbi_write(dev_priv
, 0x2098, tmp
, SBI_MPHY
);
7899 tmp
= intel_sbi_read(dev_priv
, 0x2198, SBI_MPHY
);
7900 tmp
&= ~(0xFF << 16);
7901 tmp
|= (0x1C << 16);
7902 intel_sbi_write(dev_priv
, 0x2198, tmp
, SBI_MPHY
);
7904 tmp
= intel_sbi_read(dev_priv
, 0x20C4, SBI_MPHY
);
7906 intel_sbi_write(dev_priv
, 0x20C4, tmp
, SBI_MPHY
);
7908 tmp
= intel_sbi_read(dev_priv
, 0x21C4, SBI_MPHY
);
7910 intel_sbi_write(dev_priv
, 0x21C4, tmp
, SBI_MPHY
);
7912 tmp
= intel_sbi_read(dev_priv
, 0x20EC, SBI_MPHY
);
7913 tmp
&= ~(0xF << 28);
7915 intel_sbi_write(dev_priv
, 0x20EC, tmp
, SBI_MPHY
);
7917 tmp
= intel_sbi_read(dev_priv
, 0x21EC, SBI_MPHY
);
7918 tmp
&= ~(0xF << 28);
7920 intel_sbi_write(dev_priv
, 0x21EC, tmp
, SBI_MPHY
);
7923 /* Implements 3 different sequences from BSpec chapter "Display iCLK
7924 * Programming" based on the parameters passed:
7925 * - Sequence to enable CLKOUT_DP
7926 * - Sequence to enable CLKOUT_DP without spread
7927 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
7929 static void lpt_enable_clkout_dp(struct drm_i915_private
*dev_priv
,
7930 bool with_spread
, bool with_fdi
)
7934 if (WARN(with_fdi
&& !with_spread
, "FDI requires downspread\n"))
7936 if (WARN(HAS_PCH_LPT_LP(dev_priv
) &&
7937 with_fdi
, "LP PCH doesn't have FDI\n"))
7940 mutex_lock(&dev_priv
->sb_lock
);
7942 tmp
= intel_sbi_read(dev_priv
, SBI_SSCCTL
, SBI_ICLK
);
7943 tmp
&= ~SBI_SSCCTL_DISABLE
;
7944 tmp
|= SBI_SSCCTL_PATHALT
;
7945 intel_sbi_write(dev_priv
, SBI_SSCCTL
, tmp
, SBI_ICLK
);
7950 tmp
= intel_sbi_read(dev_priv
, SBI_SSCCTL
, SBI_ICLK
);
7951 tmp
&= ~SBI_SSCCTL_PATHALT
;
7952 intel_sbi_write(dev_priv
, SBI_SSCCTL
, tmp
, SBI_ICLK
);
7955 lpt_reset_fdi_mphy(dev_priv
);
7956 lpt_program_fdi_mphy(dev_priv
);
7960 reg
= HAS_PCH_LPT_LP(dev_priv
) ? SBI_GEN0
: SBI_DBUFF0
;
7961 tmp
= intel_sbi_read(dev_priv
, reg
, SBI_ICLK
);
7962 tmp
|= SBI_GEN0_CFG_BUFFENABLE_DISABLE
;
7963 intel_sbi_write(dev_priv
, reg
, tmp
, SBI_ICLK
);
7965 mutex_unlock(&dev_priv
->sb_lock
);
7968 /* Sequence to disable CLKOUT_DP */
7969 static void lpt_disable_clkout_dp(struct drm_i915_private
*dev_priv
)
7973 mutex_lock(&dev_priv
->sb_lock
);
7975 reg
= HAS_PCH_LPT_LP(dev_priv
) ? SBI_GEN0
: SBI_DBUFF0
;
7976 tmp
= intel_sbi_read(dev_priv
, reg
, SBI_ICLK
);
7977 tmp
&= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE
;
7978 intel_sbi_write(dev_priv
, reg
, tmp
, SBI_ICLK
);
7980 tmp
= intel_sbi_read(dev_priv
, SBI_SSCCTL
, SBI_ICLK
);
7981 if (!(tmp
& SBI_SSCCTL_DISABLE
)) {
7982 if (!(tmp
& SBI_SSCCTL_PATHALT
)) {
7983 tmp
|= SBI_SSCCTL_PATHALT
;
7984 intel_sbi_write(dev_priv
, SBI_SSCCTL
, tmp
, SBI_ICLK
);
7987 tmp
|= SBI_SSCCTL_DISABLE
;
7988 intel_sbi_write(dev_priv
, SBI_SSCCTL
, tmp
, SBI_ICLK
);
7991 mutex_unlock(&dev_priv
->sb_lock
);
7994 #define BEND_IDX(steps) ((50 + (steps)) / 5)
7996 static const uint16_t sscdivintphase
[] = {
7997 [BEND_IDX( 50)] = 0x3B23,
7998 [BEND_IDX( 45)] = 0x3B23,
7999 [BEND_IDX( 40)] = 0x3C23,
8000 [BEND_IDX( 35)] = 0x3C23,
8001 [BEND_IDX( 30)] = 0x3D23,
8002 [BEND_IDX( 25)] = 0x3D23,
8003 [BEND_IDX( 20)] = 0x3E23,
8004 [BEND_IDX( 15)] = 0x3E23,
8005 [BEND_IDX( 10)] = 0x3F23,
8006 [BEND_IDX( 5)] = 0x3F23,
8007 [BEND_IDX( 0)] = 0x0025,
8008 [BEND_IDX( -5)] = 0x0025,
8009 [BEND_IDX(-10)] = 0x0125,
8010 [BEND_IDX(-15)] = 0x0125,
8011 [BEND_IDX(-20)] = 0x0225,
8012 [BEND_IDX(-25)] = 0x0225,
8013 [BEND_IDX(-30)] = 0x0325,
8014 [BEND_IDX(-35)] = 0x0325,
8015 [BEND_IDX(-40)] = 0x0425,
8016 [BEND_IDX(-45)] = 0x0425,
8017 [BEND_IDX(-50)] = 0x0525,
8022 * steps -50 to 50 inclusive, in steps of 5
8023 * < 0 slow down the clock, > 0 speed up the clock, 0 == no bend (135MHz)
8024 * change in clock period = -(steps / 10) * 5.787 ps
8026 static void lpt_bend_clkout_dp(struct drm_i915_private
*dev_priv
, int steps
)
8029 int idx
= BEND_IDX(steps
);
8031 if (WARN_ON(steps
% 5 != 0))
8034 if (WARN_ON(idx
>= ARRAY_SIZE(sscdivintphase
)))
8037 mutex_lock(&dev_priv
->sb_lock
);
8039 if (steps
% 10 != 0)
8043 intel_sbi_write(dev_priv
, SBI_SSCDITHPHASE
, tmp
, SBI_ICLK
);
8045 tmp
= intel_sbi_read(dev_priv
, SBI_SSCDIVINTPHASE
, SBI_ICLK
);
8047 tmp
|= sscdivintphase
[idx
];
8048 intel_sbi_write(dev_priv
, SBI_SSCDIVINTPHASE
, tmp
, SBI_ICLK
);
8050 mutex_unlock(&dev_priv
->sb_lock
);
8055 static void lpt_init_pch_refclk(struct drm_i915_private
*dev_priv
)
8057 struct intel_encoder
*encoder
;
8058 bool has_vga
= false;
8060 for_each_intel_encoder(&dev_priv
->drm
, encoder
) {
8061 switch (encoder
->type
) {
8062 case INTEL_OUTPUT_ANALOG
:
8071 lpt_bend_clkout_dp(dev_priv
, 0);
8072 lpt_enable_clkout_dp(dev_priv
, true, true);
8074 lpt_disable_clkout_dp(dev_priv
);
8079 * Initialize reference clocks when the driver loads
8081 void intel_init_pch_refclk(struct drm_i915_private
*dev_priv
)
8083 if (HAS_PCH_IBX(dev_priv
) || HAS_PCH_CPT(dev_priv
))
8084 ironlake_init_pch_refclk(dev_priv
);
8085 else if (HAS_PCH_LPT(dev_priv
))
8086 lpt_init_pch_refclk(dev_priv
);
8089 static void ironlake_set_pipeconf(struct drm_crtc
*crtc
)
8091 struct drm_i915_private
*dev_priv
= to_i915(crtc
->dev
);
8092 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
8093 int pipe
= intel_crtc
->pipe
;
8098 switch (intel_crtc
->config
->pipe_bpp
) {
8100 val
|= PIPECONF_6BPC
;
8103 val
|= PIPECONF_8BPC
;
8106 val
|= PIPECONF_10BPC
;
8109 val
|= PIPECONF_12BPC
;
8112 /* Case prevented by intel_choose_pipe_bpp_dither. */
8116 if (intel_crtc
->config
->dither
)
8117 val
|= (PIPECONF_DITHER_EN
| PIPECONF_DITHER_TYPE_SP
);
8119 if (intel_crtc
->config
->base
.adjusted_mode
.flags
& DRM_MODE_FLAG_INTERLACE
)
8120 val
|= PIPECONF_INTERLACED_ILK
;
8122 val
|= PIPECONF_PROGRESSIVE
;
8124 if (intel_crtc
->config
->limited_color_range
)
8125 val
|= PIPECONF_COLOR_RANGE_SELECT
;
8127 I915_WRITE(PIPECONF(pipe
), val
);
8128 POSTING_READ(PIPECONF(pipe
));
8131 static void haswell_set_pipeconf(struct drm_crtc
*crtc
)
8133 struct drm_i915_private
*dev_priv
= to_i915(crtc
->dev
);
8134 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
8135 enum transcoder cpu_transcoder
= intel_crtc
->config
->cpu_transcoder
;
8138 if (IS_HASWELL(dev_priv
) && intel_crtc
->config
->dither
)
8139 val
|= (PIPECONF_DITHER_EN
| PIPECONF_DITHER_TYPE_SP
);
8141 if (intel_crtc
->config
->base
.adjusted_mode
.flags
& DRM_MODE_FLAG_INTERLACE
)
8142 val
|= PIPECONF_INTERLACED_ILK
;
8144 val
|= PIPECONF_PROGRESSIVE
;
8146 I915_WRITE(PIPECONF(cpu_transcoder
), val
);
8147 POSTING_READ(PIPECONF(cpu_transcoder
));
8150 static void haswell_set_pipemisc(struct drm_crtc
*crtc
)
8152 struct drm_i915_private
*dev_priv
= to_i915(crtc
->dev
);
8153 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
8154 struct intel_crtc_state
*config
= intel_crtc
->config
;
8156 if (IS_BROADWELL(dev_priv
) || INTEL_INFO(dev_priv
)->gen
>= 9) {
8159 switch (intel_crtc
->config
->pipe_bpp
) {
8161 val
|= PIPEMISC_DITHER_6_BPC
;
8164 val
|= PIPEMISC_DITHER_8_BPC
;
8167 val
|= PIPEMISC_DITHER_10_BPC
;
8170 val
|= PIPEMISC_DITHER_12_BPC
;
8173 /* Case prevented by pipe_config_set_bpp. */
8177 if (intel_crtc
->config
->dither
)
8178 val
|= PIPEMISC_DITHER_ENABLE
| PIPEMISC_DITHER_TYPE_SP
;
8180 if (config
->ycbcr420
) {
8181 val
|= PIPEMISC_OUTPUT_COLORSPACE_YUV
|
8182 PIPEMISC_YUV420_ENABLE
|
8183 PIPEMISC_YUV420_MODE_FULL_BLEND
;
8186 I915_WRITE(PIPEMISC(intel_crtc
->pipe
), val
);
8190 int ironlake_get_lanes_required(int target_clock
, int link_bw
, int bpp
)
8193 * Account for spread spectrum to avoid
8194 * oversubscribing the link. Max center spread
8195 * is 2.5%; use 5% for safety's sake.
8197 u32 bps
= target_clock
* bpp
* 21 / 20;
8198 return DIV_ROUND_UP(bps
, link_bw
* 8);
8201 static bool ironlake_needs_fb_cb_tune(struct dpll
*dpll
, int factor
)
8203 return i9xx_dpll_compute_m(dpll
) < factor
* dpll
->n
;
8206 static void ironlake_compute_dpll(struct intel_crtc
*intel_crtc
,
8207 struct intel_crtc_state
*crtc_state
,
8208 struct dpll
*reduced_clock
)
8210 struct drm_crtc
*crtc
= &intel_crtc
->base
;
8211 struct drm_device
*dev
= crtc
->dev
;
8212 struct drm_i915_private
*dev_priv
= to_i915(dev
);
8216 /* Enable autotuning of the PLL clock (if permissible) */
8218 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
)) {
8219 if ((intel_panel_use_ssc(dev_priv
) &&
8220 dev_priv
->vbt
.lvds_ssc_freq
== 100000) ||
8221 (HAS_PCH_IBX(dev_priv
) && intel_is_dual_link_lvds(dev
)))
8223 } else if (crtc_state
->sdvo_tv_clock
)
8226 fp
= i9xx_dpll_compute_fp(&crtc_state
->dpll
);
8228 if (ironlake_needs_fb_cb_tune(&crtc_state
->dpll
, factor
))
8231 if (reduced_clock
) {
8232 fp2
= i9xx_dpll_compute_fp(reduced_clock
);
8234 if (reduced_clock
->m
< factor
* reduced_clock
->n
)
8242 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
))
8243 dpll
|= DPLLB_MODE_LVDS
;
8245 dpll
|= DPLLB_MODE_DAC_SERIAL
;
8247 dpll
|= (crtc_state
->pixel_multiplier
- 1)
8248 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT
;
8250 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_SDVO
) ||
8251 intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_HDMI
))
8252 dpll
|= DPLL_SDVO_HIGH_SPEED
;
8254 if (intel_crtc_has_dp_encoder(crtc_state
))
8255 dpll
|= DPLL_SDVO_HIGH_SPEED
;
8258 * The high speed IO clock is only really required for
8259 * SDVO/HDMI/DP, but we also enable it for CRT to make it
8260 * possible to share the DPLL between CRT and HDMI. Enabling
8261 * the clock needlessly does no real harm, except use up a
8262 * bit of power potentially.
8264 * We'll limit this to IVB with 3 pipes, since it has only two
8265 * DPLLs and so DPLL sharing is the only way to get three pipes
8266 * driving PCH ports at the same time. On SNB we could do this,
8267 * and potentially avoid enabling the second DPLL, but it's not
8268 * clear if it''s a win or loss power wise. No point in doing
8269 * this on ILK at all since it has a fixed DPLL<->pipe mapping.
8271 if (INTEL_INFO(dev_priv
)->num_pipes
== 3 &&
8272 intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_ANALOG
))
8273 dpll
|= DPLL_SDVO_HIGH_SPEED
;
8275 /* compute bitmask from p1 value */
8276 dpll
|= (1 << (crtc_state
->dpll
.p1
- 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT
;
8278 dpll
|= (1 << (crtc_state
->dpll
.p1
- 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT
;
8280 switch (crtc_state
->dpll
.p2
) {
8282 dpll
|= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5
;
8285 dpll
|= DPLLB_LVDS_P2_CLOCK_DIV_7
;
8288 dpll
|= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10
;
8291 dpll
|= DPLLB_LVDS_P2_CLOCK_DIV_14
;
8295 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
) &&
8296 intel_panel_use_ssc(dev_priv
))
8297 dpll
|= PLLB_REF_INPUT_SPREADSPECTRUMIN
;
8299 dpll
|= PLL_REF_INPUT_DREFCLK
;
8301 dpll
|= DPLL_VCO_ENABLE
;
8303 crtc_state
->dpll_hw_state
.dpll
= dpll
;
8304 crtc_state
->dpll_hw_state
.fp0
= fp
;
8305 crtc_state
->dpll_hw_state
.fp1
= fp2
;
8308 static int ironlake_crtc_compute_clock(struct intel_crtc
*crtc
,
8309 struct intel_crtc_state
*crtc_state
)
8311 struct drm_device
*dev
= crtc
->base
.dev
;
8312 struct drm_i915_private
*dev_priv
= to_i915(dev
);
8313 const struct intel_limit
*limit
;
8314 int refclk
= 120000;
8316 memset(&crtc_state
->dpll_hw_state
, 0,
8317 sizeof(crtc_state
->dpll_hw_state
));
8319 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
8320 if (!crtc_state
->has_pch_encoder
)
8323 if (intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_LVDS
)) {
8324 if (intel_panel_use_ssc(dev_priv
)) {
8325 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
8326 dev_priv
->vbt
.lvds_ssc_freq
);
8327 refclk
= dev_priv
->vbt
.lvds_ssc_freq
;
8330 if (intel_is_dual_link_lvds(dev
)) {
8331 if (refclk
== 100000)
8332 limit
= &intel_limits_ironlake_dual_lvds_100m
;
8334 limit
= &intel_limits_ironlake_dual_lvds
;
8336 if (refclk
== 100000)
8337 limit
= &intel_limits_ironlake_single_lvds_100m
;
8339 limit
= &intel_limits_ironlake_single_lvds
;
8342 limit
= &intel_limits_ironlake_dac
;
8345 if (!crtc_state
->clock_set
&&
8346 !g4x_find_best_dpll(limit
, crtc_state
, crtc_state
->port_clock
,
8347 refclk
, NULL
, &crtc_state
->dpll
)) {
8348 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8352 ironlake_compute_dpll(crtc
, crtc_state
, NULL
);
8354 if (!intel_get_shared_dpll(crtc
, crtc_state
, NULL
)) {
8355 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
8356 pipe_name(crtc
->pipe
));
8363 static void intel_pch_transcoder_get_m_n(struct intel_crtc
*crtc
,
8364 struct intel_link_m_n
*m_n
)
8366 struct drm_device
*dev
= crtc
->base
.dev
;
8367 struct drm_i915_private
*dev_priv
= to_i915(dev
);
8368 enum pipe pipe
= crtc
->pipe
;
8370 m_n
->link_m
= I915_READ(PCH_TRANS_LINK_M1(pipe
));
8371 m_n
->link_n
= I915_READ(PCH_TRANS_LINK_N1(pipe
));
8372 m_n
->gmch_m
= I915_READ(PCH_TRANS_DATA_M1(pipe
))
8374 m_n
->gmch_n
= I915_READ(PCH_TRANS_DATA_N1(pipe
));
8375 m_n
->tu
= ((I915_READ(PCH_TRANS_DATA_M1(pipe
))
8376 & TU_SIZE_MASK
) >> TU_SIZE_SHIFT
) + 1;
8379 static void intel_cpu_transcoder_get_m_n(struct intel_crtc
*crtc
,
8380 enum transcoder transcoder
,
8381 struct intel_link_m_n
*m_n
,
8382 struct intel_link_m_n
*m2_n2
)
8384 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
8385 enum pipe pipe
= crtc
->pipe
;
8387 if (INTEL_GEN(dev_priv
) >= 5) {
8388 m_n
->link_m
= I915_READ(PIPE_LINK_M1(transcoder
));
8389 m_n
->link_n
= I915_READ(PIPE_LINK_N1(transcoder
));
8390 m_n
->gmch_m
= I915_READ(PIPE_DATA_M1(transcoder
))
8392 m_n
->gmch_n
= I915_READ(PIPE_DATA_N1(transcoder
));
8393 m_n
->tu
= ((I915_READ(PIPE_DATA_M1(transcoder
))
8394 & TU_SIZE_MASK
) >> TU_SIZE_SHIFT
) + 1;
8395 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
8396 * gen < 8) and if DRRS is supported (to make sure the
8397 * registers are not unnecessarily read).
8399 if (m2_n2
&& INTEL_GEN(dev_priv
) < 8 &&
8400 crtc
->config
->has_drrs
) {
8401 m2_n2
->link_m
= I915_READ(PIPE_LINK_M2(transcoder
));
8402 m2_n2
->link_n
= I915_READ(PIPE_LINK_N2(transcoder
));
8403 m2_n2
->gmch_m
= I915_READ(PIPE_DATA_M2(transcoder
))
8405 m2_n2
->gmch_n
= I915_READ(PIPE_DATA_N2(transcoder
));
8406 m2_n2
->tu
= ((I915_READ(PIPE_DATA_M2(transcoder
))
8407 & TU_SIZE_MASK
) >> TU_SIZE_SHIFT
) + 1;
8410 m_n
->link_m
= I915_READ(PIPE_LINK_M_G4X(pipe
));
8411 m_n
->link_n
= I915_READ(PIPE_LINK_N_G4X(pipe
));
8412 m_n
->gmch_m
= I915_READ(PIPE_DATA_M_G4X(pipe
))
8414 m_n
->gmch_n
= I915_READ(PIPE_DATA_N_G4X(pipe
));
8415 m_n
->tu
= ((I915_READ(PIPE_DATA_M_G4X(pipe
))
8416 & TU_SIZE_MASK
) >> TU_SIZE_SHIFT
) + 1;
8420 void intel_dp_get_m_n(struct intel_crtc
*crtc
,
8421 struct intel_crtc_state
*pipe_config
)
8423 if (pipe_config
->has_pch_encoder
)
8424 intel_pch_transcoder_get_m_n(crtc
, &pipe_config
->dp_m_n
);
8426 intel_cpu_transcoder_get_m_n(crtc
, pipe_config
->cpu_transcoder
,
8427 &pipe_config
->dp_m_n
,
8428 &pipe_config
->dp_m2_n2
);
8431 static void ironlake_get_fdi_m_n_config(struct intel_crtc
*crtc
,
8432 struct intel_crtc_state
*pipe_config
)
8434 intel_cpu_transcoder_get_m_n(crtc
, pipe_config
->cpu_transcoder
,
8435 &pipe_config
->fdi_m_n
, NULL
);
8438 static void skylake_get_pfit_config(struct intel_crtc
*crtc
,
8439 struct intel_crtc_state
*pipe_config
)
8441 struct drm_device
*dev
= crtc
->base
.dev
;
8442 struct drm_i915_private
*dev_priv
= to_i915(dev
);
8443 struct intel_crtc_scaler_state
*scaler_state
= &pipe_config
->scaler_state
;
8444 uint32_t ps_ctrl
= 0;
8448 /* find scaler attached to this pipe */
8449 for (i
= 0; i
< crtc
->num_scalers
; i
++) {
8450 ps_ctrl
= I915_READ(SKL_PS_CTRL(crtc
->pipe
, i
));
8451 if (ps_ctrl
& PS_SCALER_EN
&& !(ps_ctrl
& PS_PLANE_SEL_MASK
)) {
8453 pipe_config
->pch_pfit
.enabled
= true;
8454 pipe_config
->pch_pfit
.pos
= I915_READ(SKL_PS_WIN_POS(crtc
->pipe
, i
));
8455 pipe_config
->pch_pfit
.size
= I915_READ(SKL_PS_WIN_SZ(crtc
->pipe
, i
));
8460 scaler_state
->scaler_id
= id
;
8462 scaler_state
->scaler_users
|= (1 << SKL_CRTC_INDEX
);
8464 scaler_state
->scaler_users
&= ~(1 << SKL_CRTC_INDEX
);
8469 skylake_get_initial_plane_config(struct intel_crtc
*crtc
,
8470 struct intel_initial_plane_config
*plane_config
)
8472 struct drm_device
*dev
= crtc
->base
.dev
;
8473 struct drm_i915_private
*dev_priv
= to_i915(dev
);
8474 struct intel_plane
*plane
= to_intel_plane(crtc
->base
.primary
);
8475 enum plane_id plane_id
= plane
->id
;
8476 enum pipe pipe
= crtc
->pipe
;
8477 u32 val
, base
, offset
, stride_mult
, tiling
, alpha
;
8478 int fourcc
, pixel_format
;
8479 unsigned int aligned_height
;
8480 struct drm_framebuffer
*fb
;
8481 struct intel_framebuffer
*intel_fb
;
8483 if (!plane
->get_hw_state(plane
))
8486 intel_fb
= kzalloc(sizeof(*intel_fb
), GFP_KERNEL
);
8488 DRM_DEBUG_KMS("failed to alloc fb\n");
8492 fb
= &intel_fb
->base
;
8496 val
= I915_READ(PLANE_CTL(pipe
, plane_id
));
8498 pixel_format
= val
& PLANE_CTL_FORMAT_MASK
;
8500 if (INTEL_GEN(dev_priv
) >= 10 || IS_GEMINILAKE(dev_priv
)) {
8501 alpha
= I915_READ(PLANE_COLOR_CTL(pipe
, plane_id
));
8502 alpha
&= PLANE_COLOR_ALPHA_MASK
;
8504 alpha
= val
& PLANE_CTL_ALPHA_MASK
;
8507 fourcc
= skl_format_to_fourcc(pixel_format
,
8508 val
& PLANE_CTL_ORDER_RGBX
, alpha
);
8509 fb
->format
= drm_format_info(fourcc
);
8511 tiling
= val
& PLANE_CTL_TILED_MASK
;
8513 case PLANE_CTL_TILED_LINEAR
:
8514 fb
->modifier
= DRM_FORMAT_MOD_LINEAR
;
8516 case PLANE_CTL_TILED_X
:
8517 plane_config
->tiling
= I915_TILING_X
;
8518 fb
->modifier
= I915_FORMAT_MOD_X_TILED
;
8520 case PLANE_CTL_TILED_Y
:
8521 if (val
& PLANE_CTL_DECOMPRESSION_ENABLE
)
8522 fb
->modifier
= I915_FORMAT_MOD_Y_TILED_CCS
;
8524 fb
->modifier
= I915_FORMAT_MOD_Y_TILED
;
8526 case PLANE_CTL_TILED_YF
:
8527 if (val
& PLANE_CTL_DECOMPRESSION_ENABLE
)
8528 fb
->modifier
= I915_FORMAT_MOD_Yf_TILED_CCS
;
8530 fb
->modifier
= I915_FORMAT_MOD_Yf_TILED
;
8533 MISSING_CASE(tiling
);
8537 base
= I915_READ(PLANE_SURF(pipe
, plane_id
)) & 0xfffff000;
8538 plane_config
->base
= base
;
8540 offset
= I915_READ(PLANE_OFFSET(pipe
, plane_id
));
8542 val
= I915_READ(PLANE_SIZE(pipe
, plane_id
));
8543 fb
->height
= ((val
>> 16) & 0xfff) + 1;
8544 fb
->width
= ((val
>> 0) & 0x1fff) + 1;
8546 val
= I915_READ(PLANE_STRIDE(pipe
, plane_id
));
8547 stride_mult
= intel_fb_stride_alignment(fb
, 0);
8548 fb
->pitches
[0] = (val
& 0x3ff) * stride_mult
;
8550 aligned_height
= intel_fb_align_height(fb
, 0, fb
->height
);
8552 plane_config
->size
= fb
->pitches
[0] * aligned_height
;
8554 DRM_DEBUG_KMS("%s/%s with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8555 crtc
->base
.name
, plane
->base
.name
, fb
->width
, fb
->height
,
8556 fb
->format
->cpp
[0] * 8, base
, fb
->pitches
[0],
8557 plane_config
->size
);
8559 plane_config
->fb
= intel_fb
;
8566 static void ironlake_get_pfit_config(struct intel_crtc
*crtc
,
8567 struct intel_crtc_state
*pipe_config
)
8569 struct drm_device
*dev
= crtc
->base
.dev
;
8570 struct drm_i915_private
*dev_priv
= to_i915(dev
);
8573 tmp
= I915_READ(PF_CTL(crtc
->pipe
));
8575 if (tmp
& PF_ENABLE
) {
8576 pipe_config
->pch_pfit
.enabled
= true;
8577 pipe_config
->pch_pfit
.pos
= I915_READ(PF_WIN_POS(crtc
->pipe
));
8578 pipe_config
->pch_pfit
.size
= I915_READ(PF_WIN_SZ(crtc
->pipe
));
8580 /* We currently do not free assignements of panel fitters on
8581 * ivb/hsw (since we don't use the higher upscaling modes which
8582 * differentiates them) so just WARN about this case for now. */
8583 if (IS_GEN7(dev_priv
)) {
8584 WARN_ON((tmp
& PF_PIPE_SEL_MASK_IVB
) !=
8585 PF_PIPE_SEL_IVB(crtc
->pipe
));
8590 static bool ironlake_get_pipe_config(struct intel_crtc
*crtc
,
8591 struct intel_crtc_state
*pipe_config
)
8593 struct drm_device
*dev
= crtc
->base
.dev
;
8594 struct drm_i915_private
*dev_priv
= to_i915(dev
);
8595 enum intel_display_power_domain power_domain
;
8599 power_domain
= POWER_DOMAIN_PIPE(crtc
->pipe
);
8600 if (!intel_display_power_get_if_enabled(dev_priv
, power_domain
))
8603 pipe_config
->cpu_transcoder
= (enum transcoder
) crtc
->pipe
;
8604 pipe_config
->shared_dpll
= NULL
;
8607 tmp
= I915_READ(PIPECONF(crtc
->pipe
));
8608 if (!(tmp
& PIPECONF_ENABLE
))
8611 switch (tmp
& PIPECONF_BPC_MASK
) {
8613 pipe_config
->pipe_bpp
= 18;
8616 pipe_config
->pipe_bpp
= 24;
8618 case PIPECONF_10BPC
:
8619 pipe_config
->pipe_bpp
= 30;
8621 case PIPECONF_12BPC
:
8622 pipe_config
->pipe_bpp
= 36;
8628 if (tmp
& PIPECONF_COLOR_RANGE_SELECT
)
8629 pipe_config
->limited_color_range
= true;
8631 if (I915_READ(PCH_TRANSCONF(crtc
->pipe
)) & TRANS_ENABLE
) {
8632 struct intel_shared_dpll
*pll
;
8633 enum intel_dpll_id pll_id
;
8635 pipe_config
->has_pch_encoder
= true;
8637 tmp
= I915_READ(FDI_RX_CTL(crtc
->pipe
));
8638 pipe_config
->fdi_lanes
= ((FDI_DP_PORT_WIDTH_MASK
& tmp
) >>
8639 FDI_DP_PORT_WIDTH_SHIFT
) + 1;
8641 ironlake_get_fdi_m_n_config(crtc
, pipe_config
);
8643 if (HAS_PCH_IBX(dev_priv
)) {
8645 * The pipe->pch transcoder and pch transcoder->pll
8648 pll_id
= (enum intel_dpll_id
) crtc
->pipe
;
8650 tmp
= I915_READ(PCH_DPLL_SEL
);
8651 if (tmp
& TRANS_DPLLB_SEL(crtc
->pipe
))
8652 pll_id
= DPLL_ID_PCH_PLL_B
;
8654 pll_id
= DPLL_ID_PCH_PLL_A
;
8657 pipe_config
->shared_dpll
=
8658 intel_get_shared_dpll_by_id(dev_priv
, pll_id
);
8659 pll
= pipe_config
->shared_dpll
;
8661 WARN_ON(!pll
->funcs
.get_hw_state(dev_priv
, pll
,
8662 &pipe_config
->dpll_hw_state
));
8664 tmp
= pipe_config
->dpll_hw_state
.dpll
;
8665 pipe_config
->pixel_multiplier
=
8666 ((tmp
& PLL_REF_SDVO_HDMI_MULTIPLIER_MASK
)
8667 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT
) + 1;
8669 ironlake_pch_clock_get(crtc
, pipe_config
);
8671 pipe_config
->pixel_multiplier
= 1;
8674 intel_get_pipe_timings(crtc
, pipe_config
);
8675 intel_get_pipe_src_size(crtc
, pipe_config
);
8677 ironlake_get_pfit_config(crtc
, pipe_config
);
8682 intel_display_power_put(dev_priv
, power_domain
);
8687 static void assert_can_disable_lcpll(struct drm_i915_private
*dev_priv
)
8689 struct drm_device
*dev
= &dev_priv
->drm
;
8690 struct intel_crtc
*crtc
;
8692 for_each_intel_crtc(dev
, crtc
)
8693 I915_STATE_WARN(crtc
->active
, "CRTC for pipe %c enabled\n",
8694 pipe_name(crtc
->pipe
));
8696 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_CTL_DRIVER(HSW_DISP_PW_GLOBAL
)),
8697 "Display power well on\n");
8698 I915_STATE_WARN(I915_READ(SPLL_CTL
) & SPLL_PLL_ENABLE
, "SPLL enabled\n");
8699 I915_STATE_WARN(I915_READ(WRPLL_CTL(0)) & WRPLL_PLL_ENABLE
, "WRPLL1 enabled\n");
8700 I915_STATE_WARN(I915_READ(WRPLL_CTL(1)) & WRPLL_PLL_ENABLE
, "WRPLL2 enabled\n");
8701 I915_STATE_WARN(I915_READ(PP_STATUS(0)) & PP_ON
, "Panel power on\n");
8702 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2
) & BLM_PWM_ENABLE
,
8703 "CPU PWM1 enabled\n");
8704 if (IS_HASWELL(dev_priv
))
8705 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL
) & BLM_PWM_ENABLE
,
8706 "CPU PWM2 enabled\n");
8707 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1
) & BLM_PCH_PWM_ENABLE
,
8708 "PCH PWM1 enabled\n");
8709 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL
) & UTIL_PIN_ENABLE
,
8710 "Utility pin enabled\n");
8711 I915_STATE_WARN(I915_READ(PCH_GTC_CTL
) & PCH_GTC_ENABLE
, "PCH GTC enabled\n");
8714 * In theory we can still leave IRQs enabled, as long as only the HPD
8715 * interrupts remain enabled. We used to check for that, but since it's
8716 * gen-specific and since we only disable LCPLL after we fully disable
8717 * the interrupts, the check below should be enough.
8719 I915_STATE_WARN(intel_irqs_enabled(dev_priv
), "IRQs enabled\n");
8722 static uint32_t hsw_read_dcomp(struct drm_i915_private
*dev_priv
)
8724 if (IS_HASWELL(dev_priv
))
8725 return I915_READ(D_COMP_HSW
);
8727 return I915_READ(D_COMP_BDW
);
8730 static void hsw_write_dcomp(struct drm_i915_private
*dev_priv
, uint32_t val
)
8732 if (IS_HASWELL(dev_priv
)) {
8733 mutex_lock(&dev_priv
->pcu_lock
);
8734 if (sandybridge_pcode_write(dev_priv
, GEN6_PCODE_WRITE_D_COMP
,
8736 DRM_DEBUG_KMS("Failed to write to D_COMP\n");
8737 mutex_unlock(&dev_priv
->pcu_lock
);
8739 I915_WRITE(D_COMP_BDW
, val
);
8740 POSTING_READ(D_COMP_BDW
);
8745 * This function implements pieces of two sequences from BSpec:
8746 * - Sequence for display software to disable LCPLL
8747 * - Sequence for display software to allow package C8+
8748 * The steps implemented here are just the steps that actually touch the LCPLL
8749 * register. Callers should take care of disabling all the display engine
8750 * functions, doing the mode unset, fixing interrupts, etc.
8752 static void hsw_disable_lcpll(struct drm_i915_private
*dev_priv
,
8753 bool switch_to_fclk
, bool allow_power_down
)
8757 assert_can_disable_lcpll(dev_priv
);
8759 val
= I915_READ(LCPLL_CTL
);
8761 if (switch_to_fclk
) {
8762 val
|= LCPLL_CD_SOURCE_FCLK
;
8763 I915_WRITE(LCPLL_CTL
, val
);
8765 if (wait_for_us(I915_READ(LCPLL_CTL
) &
8766 LCPLL_CD_SOURCE_FCLK_DONE
, 1))
8767 DRM_ERROR("Switching to FCLK failed\n");
8769 val
= I915_READ(LCPLL_CTL
);
8772 val
|= LCPLL_PLL_DISABLE
;
8773 I915_WRITE(LCPLL_CTL
, val
);
8774 POSTING_READ(LCPLL_CTL
);
8776 if (intel_wait_for_register(dev_priv
, LCPLL_CTL
, LCPLL_PLL_LOCK
, 0, 1))
8777 DRM_ERROR("LCPLL still locked\n");
8779 val
= hsw_read_dcomp(dev_priv
);
8780 val
|= D_COMP_COMP_DISABLE
;
8781 hsw_write_dcomp(dev_priv
, val
);
8784 if (wait_for((hsw_read_dcomp(dev_priv
) & D_COMP_RCOMP_IN_PROGRESS
) == 0,
8786 DRM_ERROR("D_COMP RCOMP still in progress\n");
8788 if (allow_power_down
) {
8789 val
= I915_READ(LCPLL_CTL
);
8790 val
|= LCPLL_POWER_DOWN_ALLOW
;
8791 I915_WRITE(LCPLL_CTL
, val
);
8792 POSTING_READ(LCPLL_CTL
);
8797 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
8800 static void hsw_restore_lcpll(struct drm_i915_private
*dev_priv
)
8804 val
= I915_READ(LCPLL_CTL
);
8806 if ((val
& (LCPLL_PLL_LOCK
| LCPLL_PLL_DISABLE
| LCPLL_CD_SOURCE_FCLK
|
8807 LCPLL_POWER_DOWN_ALLOW
)) == LCPLL_PLL_LOCK
)
8811 * Make sure we're not on PC8 state before disabling PC8, otherwise
8812 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
8814 intel_uncore_forcewake_get(dev_priv
, FORCEWAKE_ALL
);
8816 if (val
& LCPLL_POWER_DOWN_ALLOW
) {
8817 val
&= ~LCPLL_POWER_DOWN_ALLOW
;
8818 I915_WRITE(LCPLL_CTL
, val
);
8819 POSTING_READ(LCPLL_CTL
);
8822 val
= hsw_read_dcomp(dev_priv
);
8823 val
|= D_COMP_COMP_FORCE
;
8824 val
&= ~D_COMP_COMP_DISABLE
;
8825 hsw_write_dcomp(dev_priv
, val
);
8827 val
= I915_READ(LCPLL_CTL
);
8828 val
&= ~LCPLL_PLL_DISABLE
;
8829 I915_WRITE(LCPLL_CTL
, val
);
8831 if (intel_wait_for_register(dev_priv
,
8832 LCPLL_CTL
, LCPLL_PLL_LOCK
, LCPLL_PLL_LOCK
,
8834 DRM_ERROR("LCPLL not locked yet\n");
8836 if (val
& LCPLL_CD_SOURCE_FCLK
) {
8837 val
= I915_READ(LCPLL_CTL
);
8838 val
&= ~LCPLL_CD_SOURCE_FCLK
;
8839 I915_WRITE(LCPLL_CTL
, val
);
8841 if (wait_for_us((I915_READ(LCPLL_CTL
) &
8842 LCPLL_CD_SOURCE_FCLK_DONE
) == 0, 1))
8843 DRM_ERROR("Switching back to LCPLL failed\n");
8846 intel_uncore_forcewake_put(dev_priv
, FORCEWAKE_ALL
);
8848 intel_update_cdclk(dev_priv
);
8849 intel_dump_cdclk_state(&dev_priv
->cdclk
.hw
, "Current CDCLK");
8853 * Package states C8 and deeper are really deep PC states that can only be
8854 * reached when all the devices on the system allow it, so even if the graphics
8855 * device allows PC8+, it doesn't mean the system will actually get to these
8856 * states. Our driver only allows PC8+ when going into runtime PM.
8858 * The requirements for PC8+ are that all the outputs are disabled, the power
8859 * well is disabled and most interrupts are disabled, and these are also
8860 * requirements for runtime PM. When these conditions are met, we manually do
8861 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
8862 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
8865 * When we really reach PC8 or deeper states (not just when we allow it) we lose
8866 * the state of some registers, so when we come back from PC8+ we need to
8867 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
8868 * need to take care of the registers kept by RC6. Notice that this happens even
8869 * if we don't put the device in PCI D3 state (which is what currently happens
8870 * because of the runtime PM support).
8872 * For more, read "Display Sequences for Package C8" on the hardware
8875 void hsw_enable_pc8(struct drm_i915_private
*dev_priv
)
8879 DRM_DEBUG_KMS("Enabling package C8+\n");
8881 if (HAS_PCH_LPT_LP(dev_priv
)) {
8882 val
= I915_READ(SOUTH_DSPCLK_GATE_D
);
8883 val
&= ~PCH_LP_PARTITION_LEVEL_DISABLE
;
8884 I915_WRITE(SOUTH_DSPCLK_GATE_D
, val
);
8887 lpt_disable_clkout_dp(dev_priv
);
8888 hsw_disable_lcpll(dev_priv
, true, true);
8891 void hsw_disable_pc8(struct drm_i915_private
*dev_priv
)
8895 DRM_DEBUG_KMS("Disabling package C8+\n");
8897 hsw_restore_lcpll(dev_priv
);
8898 lpt_init_pch_refclk(dev_priv
);
8900 if (HAS_PCH_LPT_LP(dev_priv
)) {
8901 val
= I915_READ(SOUTH_DSPCLK_GATE_D
);
8902 val
|= PCH_LP_PARTITION_LEVEL_DISABLE
;
8903 I915_WRITE(SOUTH_DSPCLK_GATE_D
, val
);
8907 static int haswell_crtc_compute_clock(struct intel_crtc
*crtc
,
8908 struct intel_crtc_state
*crtc_state
)
8910 if (!intel_crtc_has_type(crtc_state
, INTEL_OUTPUT_DSI
)) {
8911 struct intel_encoder
*encoder
=
8912 intel_ddi_get_crtc_new_encoder(crtc_state
);
8914 if (!intel_get_shared_dpll(crtc
, crtc_state
, encoder
)) {
8915 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
8916 pipe_name(crtc
->pipe
));
8924 static void cannonlake_get_ddi_pll(struct drm_i915_private
*dev_priv
,
8926 struct intel_crtc_state
*pipe_config
)
8928 enum intel_dpll_id id
;
8931 temp
= I915_READ(DPCLKA_CFGCR0
) & DPCLKA_CFGCR0_DDI_CLK_SEL_MASK(port
);
8932 id
= temp
>> DPCLKA_CFGCR0_DDI_CLK_SEL_SHIFT(port
);
8934 if (WARN_ON(id
< SKL_DPLL0
|| id
> SKL_DPLL2
))
8937 pipe_config
->shared_dpll
= intel_get_shared_dpll_by_id(dev_priv
, id
);
8940 static void bxt_get_ddi_pll(struct drm_i915_private
*dev_priv
,
8942 struct intel_crtc_state
*pipe_config
)
8944 enum intel_dpll_id id
;
8948 id
= DPLL_ID_SKL_DPLL0
;
8951 id
= DPLL_ID_SKL_DPLL1
;
8954 id
= DPLL_ID_SKL_DPLL2
;
8957 DRM_ERROR("Incorrect port type\n");
8961 pipe_config
->shared_dpll
= intel_get_shared_dpll_by_id(dev_priv
, id
);
8964 static void skylake_get_ddi_pll(struct drm_i915_private
*dev_priv
,
8966 struct intel_crtc_state
*pipe_config
)
8968 enum intel_dpll_id id
;
8971 temp
= I915_READ(DPLL_CTRL2
) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port
);
8972 id
= temp
>> (port
* 3 + 1);
8974 if (WARN_ON(id
< SKL_DPLL0
|| id
> SKL_DPLL3
))
8977 pipe_config
->shared_dpll
= intel_get_shared_dpll_by_id(dev_priv
, id
);
8980 static void haswell_get_ddi_pll(struct drm_i915_private
*dev_priv
,
8982 struct intel_crtc_state
*pipe_config
)
8984 enum intel_dpll_id id
;
8985 uint32_t ddi_pll_sel
= I915_READ(PORT_CLK_SEL(port
));
8987 switch (ddi_pll_sel
) {
8988 case PORT_CLK_SEL_WRPLL1
:
8989 id
= DPLL_ID_WRPLL1
;
8991 case PORT_CLK_SEL_WRPLL2
:
8992 id
= DPLL_ID_WRPLL2
;
8994 case PORT_CLK_SEL_SPLL
:
8997 case PORT_CLK_SEL_LCPLL_810
:
8998 id
= DPLL_ID_LCPLL_810
;
9000 case PORT_CLK_SEL_LCPLL_1350
:
9001 id
= DPLL_ID_LCPLL_1350
;
9003 case PORT_CLK_SEL_LCPLL_2700
:
9004 id
= DPLL_ID_LCPLL_2700
;
9007 MISSING_CASE(ddi_pll_sel
);
9009 case PORT_CLK_SEL_NONE
:
9013 pipe_config
->shared_dpll
= intel_get_shared_dpll_by_id(dev_priv
, id
);
9016 static bool hsw_get_transcoder_state(struct intel_crtc
*crtc
,
9017 struct intel_crtc_state
*pipe_config
,
9018 u64
*power_domain_mask
)
9020 struct drm_device
*dev
= crtc
->base
.dev
;
9021 struct drm_i915_private
*dev_priv
= to_i915(dev
);
9022 enum intel_display_power_domain power_domain
;
9026 * The pipe->transcoder mapping is fixed with the exception of the eDP
9027 * transcoder handled below.
9029 pipe_config
->cpu_transcoder
= (enum transcoder
) crtc
->pipe
;
9032 * XXX: Do intel_display_power_get_if_enabled before reading this (for
9033 * consistency and less surprising code; it's in always on power).
9035 tmp
= I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP
));
9036 if (tmp
& TRANS_DDI_FUNC_ENABLE
) {
9037 enum pipe trans_edp_pipe
;
9038 switch (tmp
& TRANS_DDI_EDP_INPUT_MASK
) {
9040 WARN(1, "unknown pipe linked to edp transcoder\n");
9041 case TRANS_DDI_EDP_INPUT_A_ONOFF
:
9042 case TRANS_DDI_EDP_INPUT_A_ON
:
9043 trans_edp_pipe
= PIPE_A
;
9045 case TRANS_DDI_EDP_INPUT_B_ONOFF
:
9046 trans_edp_pipe
= PIPE_B
;
9048 case TRANS_DDI_EDP_INPUT_C_ONOFF
:
9049 trans_edp_pipe
= PIPE_C
;
9053 if (trans_edp_pipe
== crtc
->pipe
)
9054 pipe_config
->cpu_transcoder
= TRANSCODER_EDP
;
9057 power_domain
= POWER_DOMAIN_TRANSCODER(pipe_config
->cpu_transcoder
);
9058 if (!intel_display_power_get_if_enabled(dev_priv
, power_domain
))
9060 *power_domain_mask
|= BIT_ULL(power_domain
);
9062 tmp
= I915_READ(PIPECONF(pipe_config
->cpu_transcoder
));
9064 return tmp
& PIPECONF_ENABLE
;
9067 static bool bxt_get_dsi_transcoder_state(struct intel_crtc
*crtc
,
9068 struct intel_crtc_state
*pipe_config
,
9069 u64
*power_domain_mask
)
9071 struct drm_device
*dev
= crtc
->base
.dev
;
9072 struct drm_i915_private
*dev_priv
= to_i915(dev
);
9073 enum intel_display_power_domain power_domain
;
9075 enum transcoder cpu_transcoder
;
9078 for_each_port_masked(port
, BIT(PORT_A
) | BIT(PORT_C
)) {
9080 cpu_transcoder
= TRANSCODER_DSI_A
;
9082 cpu_transcoder
= TRANSCODER_DSI_C
;
9084 power_domain
= POWER_DOMAIN_TRANSCODER(cpu_transcoder
);
9085 if (!intel_display_power_get_if_enabled(dev_priv
, power_domain
))
9087 *power_domain_mask
|= BIT_ULL(power_domain
);
9090 * The PLL needs to be enabled with a valid divider
9091 * configuration, otherwise accessing DSI registers will hang
9092 * the machine. See BSpec North Display Engine
9093 * registers/MIPI[BXT]. We can break out here early, since we
9094 * need the same DSI PLL to be enabled for both DSI ports.
9096 if (!intel_dsi_pll_is_enabled(dev_priv
))
9099 /* XXX: this works for video mode only */
9100 tmp
= I915_READ(BXT_MIPI_PORT_CTRL(port
));
9101 if (!(tmp
& DPI_ENABLE
))
9104 tmp
= I915_READ(MIPI_CTRL(port
));
9105 if ((tmp
& BXT_PIPE_SELECT_MASK
) != BXT_PIPE_SELECT(crtc
->pipe
))
9108 pipe_config
->cpu_transcoder
= cpu_transcoder
;
9112 return transcoder_is_dsi(pipe_config
->cpu_transcoder
);
9115 static void haswell_get_ddi_port_state(struct intel_crtc
*crtc
,
9116 struct intel_crtc_state
*pipe_config
)
9118 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
9119 struct intel_shared_dpll
*pll
;
9123 tmp
= I915_READ(TRANS_DDI_FUNC_CTL(pipe_config
->cpu_transcoder
));
9125 port
= (tmp
& TRANS_DDI_PORT_MASK
) >> TRANS_DDI_PORT_SHIFT
;
9127 if (IS_CANNONLAKE(dev_priv
))
9128 cannonlake_get_ddi_pll(dev_priv
, port
, pipe_config
);
9129 else if (IS_GEN9_BC(dev_priv
))
9130 skylake_get_ddi_pll(dev_priv
, port
, pipe_config
);
9131 else if (IS_GEN9_LP(dev_priv
))
9132 bxt_get_ddi_pll(dev_priv
, port
, pipe_config
);
9134 haswell_get_ddi_pll(dev_priv
, port
, pipe_config
);
9136 pll
= pipe_config
->shared_dpll
;
9138 WARN_ON(!pll
->funcs
.get_hw_state(dev_priv
, pll
,
9139 &pipe_config
->dpll_hw_state
));
9143 * Haswell has only FDI/PCH transcoder A. It is which is connected to
9144 * DDI E. So just check whether this pipe is wired to DDI E and whether
9145 * the PCH transcoder is on.
9147 if (INTEL_GEN(dev_priv
) < 9 &&
9148 (port
== PORT_E
) && I915_READ(LPT_TRANSCONF
) & TRANS_ENABLE
) {
9149 pipe_config
->has_pch_encoder
= true;
9151 tmp
= I915_READ(FDI_RX_CTL(PIPE_A
));
9152 pipe_config
->fdi_lanes
= ((FDI_DP_PORT_WIDTH_MASK
& tmp
) >>
9153 FDI_DP_PORT_WIDTH_SHIFT
) + 1;
9155 ironlake_get_fdi_m_n_config(crtc
, pipe_config
);
9159 static bool haswell_get_pipe_config(struct intel_crtc
*crtc
,
9160 struct intel_crtc_state
*pipe_config
)
9162 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
9163 enum intel_display_power_domain power_domain
;
9164 u64 power_domain_mask
;
9167 intel_crtc_init_scalers(crtc
, pipe_config
);
9169 power_domain
= POWER_DOMAIN_PIPE(crtc
->pipe
);
9170 if (!intel_display_power_get_if_enabled(dev_priv
, power_domain
))
9172 power_domain_mask
= BIT_ULL(power_domain
);
9174 pipe_config
->shared_dpll
= NULL
;
9176 active
= hsw_get_transcoder_state(crtc
, pipe_config
, &power_domain_mask
);
9178 if (IS_GEN9_LP(dev_priv
) &&
9179 bxt_get_dsi_transcoder_state(crtc
, pipe_config
, &power_domain_mask
)) {
9187 if (!transcoder_is_dsi(pipe_config
->cpu_transcoder
)) {
9188 haswell_get_ddi_port_state(crtc
, pipe_config
);
9189 intel_get_pipe_timings(crtc
, pipe_config
);
9192 intel_get_pipe_src_size(crtc
, pipe_config
);
9194 pipe_config
->gamma_mode
=
9195 I915_READ(GAMMA_MODE(crtc
->pipe
)) & GAMMA_MODE_MODE_MASK
;
9197 if (IS_BROADWELL(dev_priv
) || INTEL_GEN(dev_priv
) >= 9) {
9198 u32 tmp
= I915_READ(PIPEMISC(crtc
->pipe
));
9199 bool clrspace_yuv
= tmp
& PIPEMISC_OUTPUT_COLORSPACE_YUV
;
9201 if (IS_GEMINILAKE(dev_priv
) || INTEL_GEN(dev_priv
) >= 10) {
9202 bool blend_mode_420
= tmp
&
9203 PIPEMISC_YUV420_MODE_FULL_BLEND
;
9205 pipe_config
->ycbcr420
= tmp
& PIPEMISC_YUV420_ENABLE
;
9206 if (pipe_config
->ycbcr420
!= clrspace_yuv
||
9207 pipe_config
->ycbcr420
!= blend_mode_420
)
9208 DRM_DEBUG_KMS("Bad 4:2:0 mode (%08x)\n", tmp
);
9209 } else if (clrspace_yuv
) {
9210 DRM_DEBUG_KMS("YCbCr 4:2:0 Unsupported\n");
9214 power_domain
= POWER_DOMAIN_PIPE_PANEL_FITTER(crtc
->pipe
);
9215 if (intel_display_power_get_if_enabled(dev_priv
, power_domain
)) {
9216 power_domain_mask
|= BIT_ULL(power_domain
);
9217 if (INTEL_GEN(dev_priv
) >= 9)
9218 skylake_get_pfit_config(crtc
, pipe_config
);
9220 ironlake_get_pfit_config(crtc
, pipe_config
);
9223 if (hsw_crtc_supports_ips(crtc
)) {
9224 if (IS_HASWELL(dev_priv
))
9225 pipe_config
->ips_enabled
= I915_READ(IPS_CTL
) & IPS_ENABLE
;
9228 * We cannot readout IPS state on broadwell, set to
9229 * true so we can set it to a defined state on first
9232 pipe_config
->ips_enabled
= true;
9236 if (pipe_config
->cpu_transcoder
!= TRANSCODER_EDP
&&
9237 !transcoder_is_dsi(pipe_config
->cpu_transcoder
)) {
9238 pipe_config
->pixel_multiplier
=
9239 I915_READ(PIPE_MULT(pipe_config
->cpu_transcoder
)) + 1;
9241 pipe_config
->pixel_multiplier
= 1;
9245 for_each_power_domain(power_domain
, power_domain_mask
)
9246 intel_display_power_put(dev_priv
, power_domain
);
9251 static u32
intel_cursor_base(const struct intel_plane_state
*plane_state
)
9253 struct drm_i915_private
*dev_priv
=
9254 to_i915(plane_state
->base
.plane
->dev
);
9255 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
9256 const struct drm_i915_gem_object
*obj
= intel_fb_obj(fb
);
9259 if (INTEL_INFO(dev_priv
)->cursor_needs_physical
)
9260 base
= obj
->phys_handle
->busaddr
;
9262 base
= intel_plane_ggtt_offset(plane_state
);
9264 base
+= plane_state
->main
.offset
;
9266 /* ILK+ do this automagically */
9267 if (HAS_GMCH_DISPLAY(dev_priv
) &&
9268 plane_state
->base
.rotation
& DRM_MODE_ROTATE_180
)
9269 base
+= (plane_state
->base
.crtc_h
*
9270 plane_state
->base
.crtc_w
- 1) * fb
->format
->cpp
[0];
9275 static u32
intel_cursor_position(const struct intel_plane_state
*plane_state
)
9277 int x
= plane_state
->base
.crtc_x
;
9278 int y
= plane_state
->base
.crtc_y
;
9282 pos
|= CURSOR_POS_SIGN
<< CURSOR_X_SHIFT
;
9285 pos
|= x
<< CURSOR_X_SHIFT
;
9288 pos
|= CURSOR_POS_SIGN
<< CURSOR_Y_SHIFT
;
9291 pos
|= y
<< CURSOR_Y_SHIFT
;
9296 static bool intel_cursor_size_ok(const struct intel_plane_state
*plane_state
)
9298 const struct drm_mode_config
*config
=
9299 &plane_state
->base
.plane
->dev
->mode_config
;
9300 int width
= plane_state
->base
.crtc_w
;
9301 int height
= plane_state
->base
.crtc_h
;
9303 return width
> 0 && width
<= config
->cursor_width
&&
9304 height
> 0 && height
<= config
->cursor_height
;
9307 static int intel_check_cursor(struct intel_crtc_state
*crtc_state
,
9308 struct intel_plane_state
*plane_state
)
9310 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
9315 ret
= drm_atomic_helper_check_plane_state(&plane_state
->base
,
9318 DRM_PLANE_HELPER_NO_SCALING
,
9319 DRM_PLANE_HELPER_NO_SCALING
,
9327 if (fb
->modifier
!= DRM_FORMAT_MOD_LINEAR
) {
9328 DRM_DEBUG_KMS("cursor cannot be tiled\n");
9332 src_x
= plane_state
->base
.src_x
>> 16;
9333 src_y
= plane_state
->base
.src_y
>> 16;
9335 intel_add_fb_offsets(&src_x
, &src_y
, plane_state
, 0);
9336 offset
= intel_compute_tile_offset(&src_x
, &src_y
, plane_state
, 0);
9338 if (src_x
!= 0 || src_y
!= 0) {
9339 DRM_DEBUG_KMS("Arbitrary cursor panning not supported\n");
9343 plane_state
->main
.offset
= offset
;
9348 static u32
i845_cursor_ctl(const struct intel_crtc_state
*crtc_state
,
9349 const struct intel_plane_state
*plane_state
)
9351 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
9353 return CURSOR_ENABLE
|
9354 CURSOR_GAMMA_ENABLE
|
9355 CURSOR_FORMAT_ARGB
|
9356 CURSOR_STRIDE(fb
->pitches
[0]);
9359 static bool i845_cursor_size_ok(const struct intel_plane_state
*plane_state
)
9361 int width
= plane_state
->base
.crtc_w
;
9364 * 845g/865g are only limited by the width of their cursors,
9365 * the height is arbitrary up to the precision of the register.
9367 return intel_cursor_size_ok(plane_state
) && IS_ALIGNED(width
, 64);
9370 static int i845_check_cursor(struct intel_plane
*plane
,
9371 struct intel_crtc_state
*crtc_state
,
9372 struct intel_plane_state
*plane_state
)
9374 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
9377 ret
= intel_check_cursor(crtc_state
, plane_state
);
9381 /* if we want to turn off the cursor ignore width and height */
9385 /* Check for which cursor types we support */
9386 if (!i845_cursor_size_ok(plane_state
)) {
9387 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
9388 plane_state
->base
.crtc_w
,
9389 plane_state
->base
.crtc_h
);
9393 switch (fb
->pitches
[0]) {
9400 DRM_DEBUG_KMS("Invalid cursor stride (%u)\n",
9405 plane_state
->ctl
= i845_cursor_ctl(crtc_state
, plane_state
);
9410 static void i845_update_cursor(struct intel_plane
*plane
,
9411 const struct intel_crtc_state
*crtc_state
,
9412 const struct intel_plane_state
*plane_state
)
9414 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
9415 u32 cntl
= 0, base
= 0, pos
= 0, size
= 0;
9416 unsigned long irqflags
;
9418 if (plane_state
&& plane_state
->base
.visible
) {
9419 unsigned int width
= plane_state
->base
.crtc_w
;
9420 unsigned int height
= plane_state
->base
.crtc_h
;
9422 cntl
= plane_state
->ctl
;
9423 size
= (height
<< 12) | width
;
9425 base
= intel_cursor_base(plane_state
);
9426 pos
= intel_cursor_position(plane_state
);
9429 spin_lock_irqsave(&dev_priv
->uncore
.lock
, irqflags
);
9431 /* On these chipsets we can only modify the base/size/stride
9432 * whilst the cursor is disabled.
9434 if (plane
->cursor
.base
!= base
||
9435 plane
->cursor
.size
!= size
||
9436 plane
->cursor
.cntl
!= cntl
) {
9437 I915_WRITE_FW(CURCNTR(PIPE_A
), 0);
9438 I915_WRITE_FW(CURBASE(PIPE_A
), base
);
9439 I915_WRITE_FW(CURSIZE
, size
);
9440 I915_WRITE_FW(CURPOS(PIPE_A
), pos
);
9441 I915_WRITE_FW(CURCNTR(PIPE_A
), cntl
);
9443 plane
->cursor
.base
= base
;
9444 plane
->cursor
.size
= size
;
9445 plane
->cursor
.cntl
= cntl
;
9447 I915_WRITE_FW(CURPOS(PIPE_A
), pos
);
9450 POSTING_READ_FW(CURCNTR(PIPE_A
));
9452 spin_unlock_irqrestore(&dev_priv
->uncore
.lock
, irqflags
);
9455 static void i845_disable_cursor(struct intel_plane
*plane
,
9456 struct intel_crtc
*crtc
)
9458 i845_update_cursor(plane
, NULL
, NULL
);
9461 static bool i845_cursor_get_hw_state(struct intel_plane
*plane
)
9463 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
9464 enum intel_display_power_domain power_domain
;
9467 power_domain
= POWER_DOMAIN_PIPE(PIPE_A
);
9468 if (!intel_display_power_get_if_enabled(dev_priv
, power_domain
))
9471 ret
= I915_READ(CURCNTR(PIPE_A
)) & CURSOR_ENABLE
;
9473 intel_display_power_put(dev_priv
, power_domain
);
9478 static u32
i9xx_cursor_ctl(const struct intel_crtc_state
*crtc_state
,
9479 const struct intel_plane_state
*plane_state
)
9481 struct drm_i915_private
*dev_priv
=
9482 to_i915(plane_state
->base
.plane
->dev
);
9483 struct intel_crtc
*crtc
= to_intel_crtc(crtc_state
->base
.crtc
);
9486 cntl
= MCURSOR_GAMMA_ENABLE
;
9488 if (HAS_DDI(dev_priv
))
9489 cntl
|= CURSOR_PIPE_CSC_ENABLE
;
9491 cntl
|= MCURSOR_PIPE_SELECT(crtc
->pipe
);
9493 switch (plane_state
->base
.crtc_w
) {
9495 cntl
|= CURSOR_MODE_64_ARGB_AX
;
9498 cntl
|= CURSOR_MODE_128_ARGB_AX
;
9501 cntl
|= CURSOR_MODE_256_ARGB_AX
;
9504 MISSING_CASE(plane_state
->base
.crtc_w
);
9508 if (plane_state
->base
.rotation
& DRM_MODE_ROTATE_180
)
9509 cntl
|= CURSOR_ROTATE_180
;
9514 static bool i9xx_cursor_size_ok(const struct intel_plane_state
*plane_state
)
9516 struct drm_i915_private
*dev_priv
=
9517 to_i915(plane_state
->base
.plane
->dev
);
9518 int width
= plane_state
->base
.crtc_w
;
9519 int height
= plane_state
->base
.crtc_h
;
9521 if (!intel_cursor_size_ok(plane_state
))
9524 /* Cursor width is limited to a few power-of-two sizes */
9535 * IVB+ have CUR_FBC_CTL which allows an arbitrary cursor
9536 * height from 8 lines up to the cursor width, when the
9537 * cursor is not rotated. Everything else requires square
9540 if (HAS_CUR_FBC(dev_priv
) &&
9541 plane_state
->base
.rotation
& DRM_MODE_ROTATE_0
) {
9542 if (height
< 8 || height
> width
)
9545 if (height
!= width
)
9552 static int i9xx_check_cursor(struct intel_plane
*plane
,
9553 struct intel_crtc_state
*crtc_state
,
9554 struct intel_plane_state
*plane_state
)
9556 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
9557 const struct drm_framebuffer
*fb
= plane_state
->base
.fb
;
9558 enum pipe pipe
= plane
->pipe
;
9561 ret
= intel_check_cursor(crtc_state
, plane_state
);
9565 /* if we want to turn off the cursor ignore width and height */
9569 /* Check for which cursor types we support */
9570 if (!i9xx_cursor_size_ok(plane_state
)) {
9571 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
9572 plane_state
->base
.crtc_w
,
9573 plane_state
->base
.crtc_h
);
9577 if (fb
->pitches
[0] != plane_state
->base
.crtc_w
* fb
->format
->cpp
[0]) {
9578 DRM_DEBUG_KMS("Invalid cursor stride (%u) (cursor width %d)\n",
9579 fb
->pitches
[0], plane_state
->base
.crtc_w
);
9584 * There's something wrong with the cursor on CHV pipe C.
9585 * If it straddles the left edge of the screen then
9586 * moving it away from the edge or disabling it often
9587 * results in a pipe underrun, and often that can lead to
9588 * dead pipe (constant underrun reported, and it scans
9589 * out just a solid color). To recover from that, the
9590 * display power well must be turned off and on again.
9591 * Refuse the put the cursor into that compromised position.
9593 if (IS_CHERRYVIEW(dev_priv
) && pipe
== PIPE_C
&&
9594 plane_state
->base
.visible
&& plane_state
->base
.crtc_x
< 0) {
9595 DRM_DEBUG_KMS("CHV cursor C not allowed to straddle the left screen edge\n");
9599 plane_state
->ctl
= i9xx_cursor_ctl(crtc_state
, plane_state
);
9604 static void i9xx_update_cursor(struct intel_plane
*plane
,
9605 const struct intel_crtc_state
*crtc_state
,
9606 const struct intel_plane_state
*plane_state
)
9608 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
9609 enum pipe pipe
= plane
->pipe
;
9610 u32 cntl
= 0, base
= 0, pos
= 0, fbc_ctl
= 0;
9611 unsigned long irqflags
;
9613 if (plane_state
&& plane_state
->base
.visible
) {
9614 cntl
= plane_state
->ctl
;
9616 if (plane_state
->base
.crtc_h
!= plane_state
->base
.crtc_w
)
9617 fbc_ctl
= CUR_FBC_CTL_EN
| (plane_state
->base
.crtc_h
- 1);
9619 base
= intel_cursor_base(plane_state
);
9620 pos
= intel_cursor_position(plane_state
);
9623 spin_lock_irqsave(&dev_priv
->uncore
.lock
, irqflags
);
9626 * On some platforms writing CURCNTR first will also
9627 * cause CURPOS to be armed by the CURBASE write.
9628 * Without the CURCNTR write the CURPOS write would
9629 * arm itself. Thus we always start the full update
9630 * with a CURCNTR write.
9632 * On other platforms CURPOS always requires the
9633 * CURBASE write to arm the update. Additonally
9634 * a write to any of the cursor register will cancel
9635 * an already armed cursor update. Thus leaving out
9636 * the CURBASE write after CURPOS could lead to a
9637 * cursor that doesn't appear to move, or even change
9638 * shape. Thus we always write CURBASE.
9640 * CURCNTR and CUR_FBC_CTL are always
9641 * armed by the CURBASE write only.
9643 if (plane
->cursor
.base
!= base
||
9644 plane
->cursor
.size
!= fbc_ctl
||
9645 plane
->cursor
.cntl
!= cntl
) {
9646 I915_WRITE_FW(CURCNTR(pipe
), cntl
);
9647 if (HAS_CUR_FBC(dev_priv
))
9648 I915_WRITE_FW(CUR_FBC_CTL(pipe
), fbc_ctl
);
9649 I915_WRITE_FW(CURPOS(pipe
), pos
);
9650 I915_WRITE_FW(CURBASE(pipe
), base
);
9652 plane
->cursor
.base
= base
;
9653 plane
->cursor
.size
= fbc_ctl
;
9654 plane
->cursor
.cntl
= cntl
;
9656 I915_WRITE_FW(CURPOS(pipe
), pos
);
9657 I915_WRITE_FW(CURBASE(pipe
), base
);
9660 POSTING_READ_FW(CURBASE(pipe
));
9662 spin_unlock_irqrestore(&dev_priv
->uncore
.lock
, irqflags
);
9665 static void i9xx_disable_cursor(struct intel_plane
*plane
,
9666 struct intel_crtc
*crtc
)
9668 i9xx_update_cursor(plane
, NULL
, NULL
);
9671 static bool i9xx_cursor_get_hw_state(struct intel_plane
*plane
)
9673 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
9674 enum intel_display_power_domain power_domain
;
9675 enum pipe pipe
= plane
->pipe
;
9679 * Not 100% correct for planes that can move between pipes,
9680 * but that's only the case for gen2-3 which don't have any
9681 * display power wells.
9683 power_domain
= POWER_DOMAIN_PIPE(pipe
);
9684 if (!intel_display_power_get_if_enabled(dev_priv
, power_domain
))
9687 ret
= I915_READ(CURCNTR(pipe
)) & CURSOR_MODE
;
9689 intel_display_power_put(dev_priv
, power_domain
);
9694 /* VESA 640x480x72Hz mode to set on the pipe */
9695 static const struct drm_display_mode load_detect_mode
= {
9696 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT
, 31500, 640, 664,
9697 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC
| DRM_MODE_FLAG_NVSYNC
),
9700 struct drm_framebuffer
*
9701 intel_framebuffer_create(struct drm_i915_gem_object
*obj
,
9702 struct drm_mode_fb_cmd2
*mode_cmd
)
9704 struct intel_framebuffer
*intel_fb
;
9707 intel_fb
= kzalloc(sizeof(*intel_fb
), GFP_KERNEL
);
9709 return ERR_PTR(-ENOMEM
);
9711 ret
= intel_framebuffer_init(intel_fb
, obj
, mode_cmd
);
9715 return &intel_fb
->base
;
9719 return ERR_PTR(ret
);
9722 static int intel_modeset_disable_planes(struct drm_atomic_state
*state
,
9723 struct drm_crtc
*crtc
)
9725 struct drm_plane
*plane
;
9726 struct drm_plane_state
*plane_state
;
9729 ret
= drm_atomic_add_affected_planes(state
, crtc
);
9733 for_each_new_plane_in_state(state
, plane
, plane_state
, i
) {
9734 if (plane_state
->crtc
!= crtc
)
9737 ret
= drm_atomic_set_crtc_for_plane(plane_state
, NULL
);
9741 drm_atomic_set_fb_for_plane(plane_state
, NULL
);
9747 int intel_get_load_detect_pipe(struct drm_connector
*connector
,
9748 const struct drm_display_mode
*mode
,
9749 struct intel_load_detect_pipe
*old
,
9750 struct drm_modeset_acquire_ctx
*ctx
)
9752 struct intel_crtc
*intel_crtc
;
9753 struct intel_encoder
*intel_encoder
=
9754 intel_attached_encoder(connector
);
9755 struct drm_crtc
*possible_crtc
;
9756 struct drm_encoder
*encoder
= &intel_encoder
->base
;
9757 struct drm_crtc
*crtc
= NULL
;
9758 struct drm_device
*dev
= encoder
->dev
;
9759 struct drm_i915_private
*dev_priv
= to_i915(dev
);
9760 struct drm_mode_config
*config
= &dev
->mode_config
;
9761 struct drm_atomic_state
*state
= NULL
, *restore_state
= NULL
;
9762 struct drm_connector_state
*connector_state
;
9763 struct intel_crtc_state
*crtc_state
;
9766 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
9767 connector
->base
.id
, connector
->name
,
9768 encoder
->base
.id
, encoder
->name
);
9770 old
->restore_state
= NULL
;
9772 WARN_ON(!drm_modeset_is_locked(&config
->connection_mutex
));
9775 * Algorithm gets a little messy:
9777 * - if the connector already has an assigned crtc, use it (but make
9778 * sure it's on first)
9780 * - try to find the first unused crtc that can drive this connector,
9781 * and use that if we find one
9784 /* See if we already have a CRTC for this connector */
9785 if (connector
->state
->crtc
) {
9786 crtc
= connector
->state
->crtc
;
9788 ret
= drm_modeset_lock(&crtc
->mutex
, ctx
);
9792 /* Make sure the crtc and connector are running */
9796 /* Find an unused one (if possible) */
9797 for_each_crtc(dev
, possible_crtc
) {
9799 if (!(encoder
->possible_crtcs
& (1 << i
)))
9802 ret
= drm_modeset_lock(&possible_crtc
->mutex
, ctx
);
9806 if (possible_crtc
->state
->enable
) {
9807 drm_modeset_unlock(&possible_crtc
->mutex
);
9811 crtc
= possible_crtc
;
9816 * If we didn't find an unused CRTC, don't use any.
9819 DRM_DEBUG_KMS("no pipe available for load-detect\n");
9825 intel_crtc
= to_intel_crtc(crtc
);
9827 state
= drm_atomic_state_alloc(dev
);
9828 restore_state
= drm_atomic_state_alloc(dev
);
9829 if (!state
|| !restore_state
) {
9834 state
->acquire_ctx
= ctx
;
9835 restore_state
->acquire_ctx
= ctx
;
9837 connector_state
= drm_atomic_get_connector_state(state
, connector
);
9838 if (IS_ERR(connector_state
)) {
9839 ret
= PTR_ERR(connector_state
);
9843 ret
= drm_atomic_set_crtc_for_connector(connector_state
, crtc
);
9847 crtc_state
= intel_atomic_get_crtc_state(state
, intel_crtc
);
9848 if (IS_ERR(crtc_state
)) {
9849 ret
= PTR_ERR(crtc_state
);
9853 crtc_state
->base
.active
= crtc_state
->base
.enable
= true;
9856 mode
= &load_detect_mode
;
9858 ret
= drm_atomic_set_mode_for_crtc(&crtc_state
->base
, mode
);
9862 ret
= intel_modeset_disable_planes(state
, crtc
);
9866 ret
= PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(restore_state
, connector
));
9868 ret
= PTR_ERR_OR_ZERO(drm_atomic_get_crtc_state(restore_state
, crtc
));
9870 DRM_DEBUG_KMS("Failed to create a copy of old state to restore: %i\n", ret
);
9874 ret
= drm_atomic_commit(state
);
9876 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
9880 old
->restore_state
= restore_state
;
9881 drm_atomic_state_put(state
);
9883 /* let the connector get through one full cycle before testing */
9884 intel_wait_for_vblank(dev_priv
, intel_crtc
->pipe
);
9889 drm_atomic_state_put(state
);
9892 if (restore_state
) {
9893 drm_atomic_state_put(restore_state
);
9894 restore_state
= NULL
;
9897 if (ret
== -EDEADLK
)
9903 void intel_release_load_detect_pipe(struct drm_connector
*connector
,
9904 struct intel_load_detect_pipe
*old
,
9905 struct drm_modeset_acquire_ctx
*ctx
)
9907 struct intel_encoder
*intel_encoder
=
9908 intel_attached_encoder(connector
);
9909 struct drm_encoder
*encoder
= &intel_encoder
->base
;
9910 struct drm_atomic_state
*state
= old
->restore_state
;
9913 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
9914 connector
->base
.id
, connector
->name
,
9915 encoder
->base
.id
, encoder
->name
);
9920 ret
= drm_atomic_helper_commit_duplicated_state(state
, ctx
);
9922 DRM_DEBUG_KMS("Couldn't release load detect pipe: %i\n", ret
);
9923 drm_atomic_state_put(state
);
9926 static int i9xx_pll_refclk(struct drm_device
*dev
,
9927 const struct intel_crtc_state
*pipe_config
)
9929 struct drm_i915_private
*dev_priv
= to_i915(dev
);
9930 u32 dpll
= pipe_config
->dpll_hw_state
.dpll
;
9932 if ((dpll
& PLL_REF_INPUT_MASK
) == PLLB_REF_INPUT_SPREADSPECTRUMIN
)
9933 return dev_priv
->vbt
.lvds_ssc_freq
;
9934 else if (HAS_PCH_SPLIT(dev_priv
))
9936 else if (!IS_GEN2(dev_priv
))
9942 /* Returns the clock of the currently programmed mode of the given pipe. */
9943 static void i9xx_crtc_clock_get(struct intel_crtc
*crtc
,
9944 struct intel_crtc_state
*pipe_config
)
9946 struct drm_device
*dev
= crtc
->base
.dev
;
9947 struct drm_i915_private
*dev_priv
= to_i915(dev
);
9948 int pipe
= pipe_config
->cpu_transcoder
;
9949 u32 dpll
= pipe_config
->dpll_hw_state
.dpll
;
9953 int refclk
= i9xx_pll_refclk(dev
, pipe_config
);
9955 if ((dpll
& DISPLAY_RATE_SELECT_FPA1
) == 0)
9956 fp
= pipe_config
->dpll_hw_state
.fp0
;
9958 fp
= pipe_config
->dpll_hw_state
.fp1
;
9960 clock
.m1
= (fp
& FP_M1_DIV_MASK
) >> FP_M1_DIV_SHIFT
;
9961 if (IS_PINEVIEW(dev_priv
)) {
9962 clock
.n
= ffs((fp
& FP_N_PINEVIEW_DIV_MASK
) >> FP_N_DIV_SHIFT
) - 1;
9963 clock
.m2
= (fp
& FP_M2_PINEVIEW_DIV_MASK
) >> FP_M2_DIV_SHIFT
;
9965 clock
.n
= (fp
& FP_N_DIV_MASK
) >> FP_N_DIV_SHIFT
;
9966 clock
.m2
= (fp
& FP_M2_DIV_MASK
) >> FP_M2_DIV_SHIFT
;
9969 if (!IS_GEN2(dev_priv
)) {
9970 if (IS_PINEVIEW(dev_priv
))
9971 clock
.p1
= ffs((dpll
& DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW
) >>
9972 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW
);
9974 clock
.p1
= ffs((dpll
& DPLL_FPA01_P1_POST_DIV_MASK
) >>
9975 DPLL_FPA01_P1_POST_DIV_SHIFT
);
9977 switch (dpll
& DPLL_MODE_MASK
) {
9978 case DPLLB_MODE_DAC_SERIAL
:
9979 clock
.p2
= dpll
& DPLL_DAC_SERIAL_P2_CLOCK_DIV_5
?
9982 case DPLLB_MODE_LVDS
:
9983 clock
.p2
= dpll
& DPLLB_LVDS_P2_CLOCK_DIV_7
?
9987 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
9988 "mode\n", (int)(dpll
& DPLL_MODE_MASK
));
9992 if (IS_PINEVIEW(dev_priv
))
9993 port_clock
= pnv_calc_dpll_params(refclk
, &clock
);
9995 port_clock
= i9xx_calc_dpll_params(refclk
, &clock
);
9997 u32 lvds
= IS_I830(dev_priv
) ? 0 : I915_READ(LVDS
);
9998 bool is_lvds
= (pipe
== 1) && (lvds
& LVDS_PORT_EN
);
10001 clock
.p1
= ffs((dpll
& DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS
) >>
10002 DPLL_FPA01_P1_POST_DIV_SHIFT
);
10004 if (lvds
& LVDS_CLKB_POWER_UP
)
10009 if (dpll
& PLL_P1_DIVIDE_BY_TWO
)
10012 clock
.p1
= ((dpll
& DPLL_FPA01_P1_POST_DIV_MASK_I830
) >>
10013 DPLL_FPA01_P1_POST_DIV_SHIFT
) + 2;
10015 if (dpll
& PLL_P2_DIVIDE_BY_4
)
10021 port_clock
= i9xx_calc_dpll_params(refclk
, &clock
);
10025 * This value includes pixel_multiplier. We will use
10026 * port_clock to compute adjusted_mode.crtc_clock in the
10027 * encoder's get_config() function.
10029 pipe_config
->port_clock
= port_clock
;
10032 int intel_dotclock_calculate(int link_freq
,
10033 const struct intel_link_m_n
*m_n
)
10036 * The calculation for the data clock is:
10037 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
10038 * But we want to avoid losing precison if possible, so:
10039 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
10041 * and the link clock is simpler:
10042 * link_clock = (m * link_clock) / n
10048 return div_u64(mul_u32_u32(m_n
->link_m
, link_freq
), m_n
->link_n
);
10051 static void ironlake_pch_clock_get(struct intel_crtc
*crtc
,
10052 struct intel_crtc_state
*pipe_config
)
10054 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
10056 /* read out port_clock from the DPLL */
10057 i9xx_crtc_clock_get(crtc
, pipe_config
);
10060 * In case there is an active pipe without active ports,
10061 * we may need some idea for the dotclock anyway.
10062 * Calculate one based on the FDI configuration.
10064 pipe_config
->base
.adjusted_mode
.crtc_clock
=
10065 intel_dotclock_calculate(intel_fdi_link_freq(dev_priv
, pipe_config
),
10066 &pipe_config
->fdi_m_n
);
10069 /* Returns the currently programmed mode of the given encoder. */
10070 struct drm_display_mode
*
10071 intel_encoder_current_mode(struct intel_encoder
*encoder
)
10073 struct drm_i915_private
*dev_priv
= to_i915(encoder
->base
.dev
);
10074 struct intel_crtc_state
*crtc_state
;
10075 struct drm_display_mode
*mode
;
10076 struct intel_crtc
*crtc
;
10079 if (!encoder
->get_hw_state(encoder
, &pipe
))
10082 crtc
= intel_get_crtc_for_pipe(dev_priv
, pipe
);
10084 mode
= kzalloc(sizeof(*mode
), GFP_KERNEL
);
10088 crtc_state
= kzalloc(sizeof(*crtc_state
), GFP_KERNEL
);
10094 crtc_state
->base
.crtc
= &crtc
->base
;
10096 if (!dev_priv
->display
.get_pipe_config(crtc
, crtc_state
)) {
10102 encoder
->get_config(encoder
, crtc_state
);
10104 intel_mode_from_pipe_config(mode
, crtc_state
);
10111 static void intel_crtc_destroy(struct drm_crtc
*crtc
)
10113 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
10115 drm_crtc_cleanup(crtc
);
10120 * intel_wm_need_update - Check whether watermarks need updating
10121 * @plane: drm plane
10122 * @state: new plane state
10124 * Check current plane state versus the new one to determine whether
10125 * watermarks need to be recalculated.
10127 * Returns true or false.
10129 static bool intel_wm_need_update(struct drm_plane
*plane
,
10130 struct drm_plane_state
*state
)
10132 struct intel_plane_state
*new = to_intel_plane_state(state
);
10133 struct intel_plane_state
*cur
= to_intel_plane_state(plane
->state
);
10135 /* Update watermarks on tiling or size changes. */
10136 if (new->base
.visible
!= cur
->base
.visible
)
10139 if (!cur
->base
.fb
|| !new->base
.fb
)
10142 if (cur
->base
.fb
->modifier
!= new->base
.fb
->modifier
||
10143 cur
->base
.rotation
!= new->base
.rotation
||
10144 drm_rect_width(&new->base
.src
) != drm_rect_width(&cur
->base
.src
) ||
10145 drm_rect_height(&new->base
.src
) != drm_rect_height(&cur
->base
.src
) ||
10146 drm_rect_width(&new->base
.dst
) != drm_rect_width(&cur
->base
.dst
) ||
10147 drm_rect_height(&new->base
.dst
) != drm_rect_height(&cur
->base
.dst
))
10153 static bool needs_scaling(const struct intel_plane_state
*state
)
10155 int src_w
= drm_rect_width(&state
->base
.src
) >> 16;
10156 int src_h
= drm_rect_height(&state
->base
.src
) >> 16;
10157 int dst_w
= drm_rect_width(&state
->base
.dst
);
10158 int dst_h
= drm_rect_height(&state
->base
.dst
);
10160 return (src_w
!= dst_w
|| src_h
!= dst_h
);
10163 int intel_plane_atomic_calc_changes(const struct intel_crtc_state
*old_crtc_state
,
10164 struct drm_crtc_state
*crtc_state
,
10165 const struct intel_plane_state
*old_plane_state
,
10166 struct drm_plane_state
*plane_state
)
10168 struct intel_crtc_state
*pipe_config
= to_intel_crtc_state(crtc_state
);
10169 struct drm_crtc
*crtc
= crtc_state
->crtc
;
10170 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
10171 struct intel_plane
*plane
= to_intel_plane(plane_state
->plane
);
10172 struct drm_device
*dev
= crtc
->dev
;
10173 struct drm_i915_private
*dev_priv
= to_i915(dev
);
10174 bool mode_changed
= needs_modeset(crtc_state
);
10175 bool was_crtc_enabled
= old_crtc_state
->base
.active
;
10176 bool is_crtc_enabled
= crtc_state
->active
;
10177 bool turn_off
, turn_on
, visible
, was_visible
;
10178 struct drm_framebuffer
*fb
= plane_state
->fb
;
10181 if (INTEL_GEN(dev_priv
) >= 9 && plane
->id
!= PLANE_CURSOR
) {
10182 ret
= skl_update_scaler_plane(
10183 to_intel_crtc_state(crtc_state
),
10184 to_intel_plane_state(plane_state
));
10189 was_visible
= old_plane_state
->base
.visible
;
10190 visible
= plane_state
->visible
;
10192 if (!was_crtc_enabled
&& WARN_ON(was_visible
))
10193 was_visible
= false;
10196 * Visibility is calculated as if the crtc was on, but
10197 * after scaler setup everything depends on it being off
10198 * when the crtc isn't active.
10200 * FIXME this is wrong for watermarks. Watermarks should also
10201 * be computed as if the pipe would be active. Perhaps move
10202 * per-plane wm computation to the .check_plane() hook, and
10203 * only combine the results from all planes in the current place?
10205 if (!is_crtc_enabled
) {
10206 plane_state
->visible
= visible
= false;
10207 to_intel_crtc_state(crtc_state
)->active_planes
&= ~BIT(plane
->id
);
10210 if (!was_visible
&& !visible
)
10213 if (fb
!= old_plane_state
->base
.fb
)
10214 pipe_config
->fb_changed
= true;
10216 turn_off
= was_visible
&& (!visible
|| mode_changed
);
10217 turn_on
= visible
&& (!was_visible
|| mode_changed
);
10219 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] has [PLANE:%d:%s] with fb %i\n",
10220 intel_crtc
->base
.base
.id
, intel_crtc
->base
.name
,
10221 plane
->base
.base
.id
, plane
->base
.name
,
10222 fb
? fb
->base
.id
: -1);
10224 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] visible %i -> %i, off %i, on %i, ms %i\n",
10225 plane
->base
.base
.id
, plane
->base
.name
,
10226 was_visible
, visible
,
10227 turn_off
, turn_on
, mode_changed
);
10230 if (INTEL_GEN(dev_priv
) < 5 && !IS_G4X(dev_priv
))
10231 pipe_config
->update_wm_pre
= true;
10233 /* must disable cxsr around plane enable/disable */
10234 if (plane
->id
!= PLANE_CURSOR
)
10235 pipe_config
->disable_cxsr
= true;
10236 } else if (turn_off
) {
10237 if (INTEL_GEN(dev_priv
) < 5 && !IS_G4X(dev_priv
))
10238 pipe_config
->update_wm_post
= true;
10240 /* must disable cxsr around plane enable/disable */
10241 if (plane
->id
!= PLANE_CURSOR
)
10242 pipe_config
->disable_cxsr
= true;
10243 } else if (intel_wm_need_update(&plane
->base
, plane_state
)) {
10244 if (INTEL_GEN(dev_priv
) < 5 && !IS_G4X(dev_priv
)) {
10245 /* FIXME bollocks */
10246 pipe_config
->update_wm_pre
= true;
10247 pipe_config
->update_wm_post
= true;
10251 if (visible
|| was_visible
)
10252 pipe_config
->fb_bits
|= plane
->frontbuffer_bit
;
10255 * WaCxSRDisabledForSpriteScaling:ivb
10257 * cstate->update_wm was already set above, so this flag will
10258 * take effect when we commit and program watermarks.
10260 if (plane
->id
== PLANE_SPRITE0
&& IS_IVYBRIDGE(dev_priv
) &&
10261 needs_scaling(to_intel_plane_state(plane_state
)) &&
10262 !needs_scaling(old_plane_state
))
10263 pipe_config
->disable_lp_wm
= true;
10268 static bool encoders_cloneable(const struct intel_encoder
*a
,
10269 const struct intel_encoder
*b
)
10271 /* masks could be asymmetric, so check both ways */
10272 return a
== b
|| (a
->cloneable
& (1 << b
->type
) &&
10273 b
->cloneable
& (1 << a
->type
));
10276 static bool check_single_encoder_cloning(struct drm_atomic_state
*state
,
10277 struct intel_crtc
*crtc
,
10278 struct intel_encoder
*encoder
)
10280 struct intel_encoder
*source_encoder
;
10281 struct drm_connector
*connector
;
10282 struct drm_connector_state
*connector_state
;
10285 for_each_new_connector_in_state(state
, connector
, connector_state
, i
) {
10286 if (connector_state
->crtc
!= &crtc
->base
)
10290 to_intel_encoder(connector_state
->best_encoder
);
10291 if (!encoders_cloneable(encoder
, source_encoder
))
10298 static int intel_crtc_atomic_check(struct drm_crtc
*crtc
,
10299 struct drm_crtc_state
*crtc_state
)
10301 struct drm_device
*dev
= crtc
->dev
;
10302 struct drm_i915_private
*dev_priv
= to_i915(dev
);
10303 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
10304 struct intel_crtc_state
*pipe_config
=
10305 to_intel_crtc_state(crtc_state
);
10306 struct drm_atomic_state
*state
= crtc_state
->state
;
10308 bool mode_changed
= needs_modeset(crtc_state
);
10310 if (mode_changed
&& !crtc_state
->active
)
10311 pipe_config
->update_wm_post
= true;
10313 if (mode_changed
&& crtc_state
->enable
&&
10314 dev_priv
->display
.crtc_compute_clock
&&
10315 !WARN_ON(pipe_config
->shared_dpll
)) {
10316 ret
= dev_priv
->display
.crtc_compute_clock(intel_crtc
,
10322 if (crtc_state
->color_mgmt_changed
) {
10323 ret
= intel_color_check(crtc
, crtc_state
);
10328 * Changing color management on Intel hardware is
10329 * handled as part of planes update.
10331 crtc_state
->planes_changed
= true;
10335 if (dev_priv
->display
.compute_pipe_wm
) {
10336 ret
= dev_priv
->display
.compute_pipe_wm(pipe_config
);
10338 DRM_DEBUG_KMS("Target pipe watermarks are invalid\n");
10343 if (dev_priv
->display
.compute_intermediate_wm
&&
10344 !to_intel_atomic_state(state
)->skip_intermediate_wm
) {
10345 if (WARN_ON(!dev_priv
->display
.compute_pipe_wm
))
10349 * Calculate 'intermediate' watermarks that satisfy both the
10350 * old state and the new state. We can program these
10353 ret
= dev_priv
->display
.compute_intermediate_wm(dev
,
10357 DRM_DEBUG_KMS("No valid intermediate pipe watermarks are possible\n");
10360 } else if (dev_priv
->display
.compute_intermediate_wm
) {
10361 if (HAS_PCH_SPLIT(dev_priv
) && INTEL_GEN(dev_priv
) < 9)
10362 pipe_config
->wm
.ilk
.intermediate
= pipe_config
->wm
.ilk
.optimal
;
10365 if (INTEL_GEN(dev_priv
) >= 9) {
10367 ret
= skl_update_scaler_crtc(pipe_config
);
10370 ret
= skl_check_pipe_max_pixel_rate(intel_crtc
,
10373 ret
= intel_atomic_setup_scalers(dev_priv
, intel_crtc
,
10377 if (HAS_IPS(dev_priv
))
10378 pipe_config
->ips_enabled
= hsw_compute_ips_config(pipe_config
);
10383 static const struct drm_crtc_helper_funcs intel_helper_funcs
= {
10384 .atomic_begin
= intel_begin_crtc_commit
,
10385 .atomic_flush
= intel_finish_crtc_commit
,
10386 .atomic_check
= intel_crtc_atomic_check
,
10389 static void intel_modeset_update_connector_atomic_state(struct drm_device
*dev
)
10391 struct intel_connector
*connector
;
10392 struct drm_connector_list_iter conn_iter
;
10394 drm_connector_list_iter_begin(dev
, &conn_iter
);
10395 for_each_intel_connector_iter(connector
, &conn_iter
) {
10396 if (connector
->base
.state
->crtc
)
10397 drm_connector_unreference(&connector
->base
);
10399 if (connector
->base
.encoder
) {
10400 connector
->base
.state
->best_encoder
=
10401 connector
->base
.encoder
;
10402 connector
->base
.state
->crtc
=
10403 connector
->base
.encoder
->crtc
;
10405 drm_connector_reference(&connector
->base
);
10407 connector
->base
.state
->best_encoder
= NULL
;
10408 connector
->base
.state
->crtc
= NULL
;
10411 drm_connector_list_iter_end(&conn_iter
);
10415 connected_sink_compute_bpp(struct intel_connector
*connector
,
10416 struct intel_crtc_state
*pipe_config
)
10418 const struct drm_display_info
*info
= &connector
->base
.display_info
;
10419 int bpp
= pipe_config
->pipe_bpp
;
10421 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
10422 connector
->base
.base
.id
,
10423 connector
->base
.name
);
10425 /* Don't use an invalid EDID bpc value */
10426 if (info
->bpc
!= 0 && info
->bpc
* 3 < bpp
) {
10427 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
10428 bpp
, info
->bpc
* 3);
10429 pipe_config
->pipe_bpp
= info
->bpc
* 3;
10432 /* Clamp bpp to 8 on screens without EDID 1.4 */
10433 if (info
->bpc
== 0 && bpp
> 24) {
10434 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
10436 pipe_config
->pipe_bpp
= 24;
10441 compute_baseline_pipe_bpp(struct intel_crtc
*crtc
,
10442 struct intel_crtc_state
*pipe_config
)
10444 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
10445 struct drm_atomic_state
*state
;
10446 struct drm_connector
*connector
;
10447 struct drm_connector_state
*connector_state
;
10450 if ((IS_G4X(dev_priv
) || IS_VALLEYVIEW(dev_priv
) ||
10451 IS_CHERRYVIEW(dev_priv
)))
10453 else if (INTEL_GEN(dev_priv
) >= 5)
10459 pipe_config
->pipe_bpp
= bpp
;
10461 state
= pipe_config
->base
.state
;
10463 /* Clamp display bpp to EDID value */
10464 for_each_new_connector_in_state(state
, connector
, connector_state
, i
) {
10465 if (connector_state
->crtc
!= &crtc
->base
)
10468 connected_sink_compute_bpp(to_intel_connector(connector
),
10475 static void intel_dump_crtc_timings(const struct drm_display_mode
*mode
)
10477 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
10478 "type: 0x%x flags: 0x%x\n",
10480 mode
->crtc_hdisplay
, mode
->crtc_hsync_start
,
10481 mode
->crtc_hsync_end
, mode
->crtc_htotal
,
10482 mode
->crtc_vdisplay
, mode
->crtc_vsync_start
,
10483 mode
->crtc_vsync_end
, mode
->crtc_vtotal
, mode
->type
, mode
->flags
);
10487 intel_dump_m_n_config(struct intel_crtc_state
*pipe_config
, char *id
,
10488 unsigned int lane_count
, struct intel_link_m_n
*m_n
)
10490 DRM_DEBUG_KMS("%s: lanes: %i; gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
10492 m_n
->gmch_m
, m_n
->gmch_n
,
10493 m_n
->link_m
, m_n
->link_n
, m_n
->tu
);
10496 #define OUTPUT_TYPE(x) [INTEL_OUTPUT_ ## x] = #x
10498 static const char * const output_type_str
[] = {
10499 OUTPUT_TYPE(UNUSED
),
10500 OUTPUT_TYPE(ANALOG
),
10504 OUTPUT_TYPE(TVOUT
),
10510 OUTPUT_TYPE(DP_MST
),
10515 static void snprintf_output_types(char *buf
, size_t len
,
10516 unsigned int output_types
)
10523 for (i
= 0; i
< ARRAY_SIZE(output_type_str
); i
++) {
10526 if ((output_types
& BIT(i
)) == 0)
10529 r
= snprintf(str
, len
, "%s%s",
10530 str
!= buf
? "," : "", output_type_str
[i
]);
10536 output_types
&= ~BIT(i
);
10539 WARN_ON_ONCE(output_types
!= 0);
10542 static void intel_dump_pipe_config(struct intel_crtc
*crtc
,
10543 struct intel_crtc_state
*pipe_config
,
10544 const char *context
)
10546 struct drm_device
*dev
= crtc
->base
.dev
;
10547 struct drm_i915_private
*dev_priv
= to_i915(dev
);
10548 struct drm_plane
*plane
;
10549 struct intel_plane
*intel_plane
;
10550 struct intel_plane_state
*state
;
10551 struct drm_framebuffer
*fb
;
10554 DRM_DEBUG_KMS("[CRTC:%d:%s]%s\n",
10555 crtc
->base
.base
.id
, crtc
->base
.name
, context
);
10557 snprintf_output_types(buf
, sizeof(buf
), pipe_config
->output_types
);
10558 DRM_DEBUG_KMS("output_types: %s (0x%x)\n",
10559 buf
, pipe_config
->output_types
);
10561 DRM_DEBUG_KMS("cpu_transcoder: %s, pipe bpp: %i, dithering: %i\n",
10562 transcoder_name(pipe_config
->cpu_transcoder
),
10563 pipe_config
->pipe_bpp
, pipe_config
->dither
);
10565 if (pipe_config
->has_pch_encoder
)
10566 intel_dump_m_n_config(pipe_config
, "fdi",
10567 pipe_config
->fdi_lanes
,
10568 &pipe_config
->fdi_m_n
);
10570 if (pipe_config
->ycbcr420
)
10571 DRM_DEBUG_KMS("YCbCr 4:2:0 output enabled\n");
10573 if (intel_crtc_has_dp_encoder(pipe_config
)) {
10574 intel_dump_m_n_config(pipe_config
, "dp m_n",
10575 pipe_config
->lane_count
, &pipe_config
->dp_m_n
);
10576 if (pipe_config
->has_drrs
)
10577 intel_dump_m_n_config(pipe_config
, "dp m2_n2",
10578 pipe_config
->lane_count
,
10579 &pipe_config
->dp_m2_n2
);
10582 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
10583 pipe_config
->has_audio
, pipe_config
->has_infoframe
);
10585 DRM_DEBUG_KMS("requested mode:\n");
10586 drm_mode_debug_printmodeline(&pipe_config
->base
.mode
);
10587 DRM_DEBUG_KMS("adjusted mode:\n");
10588 drm_mode_debug_printmodeline(&pipe_config
->base
.adjusted_mode
);
10589 intel_dump_crtc_timings(&pipe_config
->base
.adjusted_mode
);
10590 DRM_DEBUG_KMS("port clock: %d, pipe src size: %dx%d, pixel rate %d\n",
10591 pipe_config
->port_clock
,
10592 pipe_config
->pipe_src_w
, pipe_config
->pipe_src_h
,
10593 pipe_config
->pixel_rate
);
10595 if (INTEL_GEN(dev_priv
) >= 9)
10596 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
10598 pipe_config
->scaler_state
.scaler_users
,
10599 pipe_config
->scaler_state
.scaler_id
);
10601 if (HAS_GMCH_DISPLAY(dev_priv
))
10602 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
10603 pipe_config
->gmch_pfit
.control
,
10604 pipe_config
->gmch_pfit
.pgm_ratios
,
10605 pipe_config
->gmch_pfit
.lvds_border_bits
);
10607 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
10608 pipe_config
->pch_pfit
.pos
,
10609 pipe_config
->pch_pfit
.size
,
10610 enableddisabled(pipe_config
->pch_pfit
.enabled
));
10612 DRM_DEBUG_KMS("ips: %i, double wide: %i\n",
10613 pipe_config
->ips_enabled
, pipe_config
->double_wide
);
10615 intel_dpll_dump_hw_state(dev_priv
, &pipe_config
->dpll_hw_state
);
10617 DRM_DEBUG_KMS("planes on this crtc\n");
10618 list_for_each_entry(plane
, &dev
->mode_config
.plane_list
, head
) {
10619 struct drm_format_name_buf format_name
;
10620 intel_plane
= to_intel_plane(plane
);
10621 if (intel_plane
->pipe
!= crtc
->pipe
)
10624 state
= to_intel_plane_state(plane
->state
);
10625 fb
= state
->base
.fb
;
10627 DRM_DEBUG_KMS("[PLANE:%d:%s] disabled, scaler_id = %d\n",
10628 plane
->base
.id
, plane
->name
, state
->scaler_id
);
10632 DRM_DEBUG_KMS("[PLANE:%d:%s] FB:%d, fb = %ux%u format = %s\n",
10633 plane
->base
.id
, plane
->name
,
10634 fb
->base
.id
, fb
->width
, fb
->height
,
10635 drm_get_format_name(fb
->format
->format
, &format_name
));
10636 if (INTEL_GEN(dev_priv
) >= 9)
10637 DRM_DEBUG_KMS("\tscaler:%d src %dx%d+%d+%d dst %dx%d+%d+%d\n",
10639 state
->base
.src
.x1
>> 16,
10640 state
->base
.src
.y1
>> 16,
10641 drm_rect_width(&state
->base
.src
) >> 16,
10642 drm_rect_height(&state
->base
.src
) >> 16,
10643 state
->base
.dst
.x1
, state
->base
.dst
.y1
,
10644 drm_rect_width(&state
->base
.dst
),
10645 drm_rect_height(&state
->base
.dst
));
10649 static bool check_digital_port_conflicts(struct drm_atomic_state
*state
)
10651 struct drm_device
*dev
= state
->dev
;
10652 struct drm_connector
*connector
;
10653 struct drm_connector_list_iter conn_iter
;
10654 unsigned int used_ports
= 0;
10655 unsigned int used_mst_ports
= 0;
10658 * Walk the connector list instead of the encoder
10659 * list to detect the problem on ddi platforms
10660 * where there's just one encoder per digital port.
10662 drm_connector_list_iter_begin(dev
, &conn_iter
);
10663 drm_for_each_connector_iter(connector
, &conn_iter
) {
10664 struct drm_connector_state
*connector_state
;
10665 struct intel_encoder
*encoder
;
10667 connector_state
= drm_atomic_get_existing_connector_state(state
, connector
);
10668 if (!connector_state
)
10669 connector_state
= connector
->state
;
10671 if (!connector_state
->best_encoder
)
10674 encoder
= to_intel_encoder(connector_state
->best_encoder
);
10676 WARN_ON(!connector_state
->crtc
);
10678 switch (encoder
->type
) {
10679 unsigned int port_mask
;
10680 case INTEL_OUTPUT_DDI
:
10681 if (WARN_ON(!HAS_DDI(to_i915(dev
))))
10683 case INTEL_OUTPUT_DP
:
10684 case INTEL_OUTPUT_HDMI
:
10685 case INTEL_OUTPUT_EDP
:
10686 port_mask
= 1 << encoder
->port
;
10688 /* the same port mustn't appear more than once */
10689 if (used_ports
& port_mask
)
10692 used_ports
|= port_mask
;
10694 case INTEL_OUTPUT_DP_MST
:
10696 1 << encoder
->port
;
10702 drm_connector_list_iter_end(&conn_iter
);
10704 /* can't mix MST and SST/HDMI on the same port */
10705 if (used_ports
& used_mst_ports
)
10712 clear_intel_crtc_state(struct intel_crtc_state
*crtc_state
)
10714 struct drm_i915_private
*dev_priv
=
10715 to_i915(crtc_state
->base
.crtc
->dev
);
10716 struct intel_crtc_scaler_state scaler_state
;
10717 struct intel_dpll_hw_state dpll_hw_state
;
10718 struct intel_shared_dpll
*shared_dpll
;
10719 struct intel_crtc_wm_state wm_state
;
10720 bool force_thru
, ips_force_disable
;
10722 /* FIXME: before the switch to atomic started, a new pipe_config was
10723 * kzalloc'd. Code that depends on any field being zero should be
10724 * fixed, so that the crtc_state can be safely duplicated. For now,
10725 * only fields that are know to not cause problems are preserved. */
10727 scaler_state
= crtc_state
->scaler_state
;
10728 shared_dpll
= crtc_state
->shared_dpll
;
10729 dpll_hw_state
= crtc_state
->dpll_hw_state
;
10730 force_thru
= crtc_state
->pch_pfit
.force_thru
;
10731 ips_force_disable
= crtc_state
->ips_force_disable
;
10732 if (IS_G4X(dev_priv
) ||
10733 IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
))
10734 wm_state
= crtc_state
->wm
;
10736 /* Keep base drm_crtc_state intact, only clear our extended struct */
10737 BUILD_BUG_ON(offsetof(struct intel_crtc_state
, base
));
10738 memset(&crtc_state
->base
+ 1, 0,
10739 sizeof(*crtc_state
) - sizeof(crtc_state
->base
));
10741 crtc_state
->scaler_state
= scaler_state
;
10742 crtc_state
->shared_dpll
= shared_dpll
;
10743 crtc_state
->dpll_hw_state
= dpll_hw_state
;
10744 crtc_state
->pch_pfit
.force_thru
= force_thru
;
10745 crtc_state
->ips_force_disable
= ips_force_disable
;
10746 if (IS_G4X(dev_priv
) ||
10747 IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
))
10748 crtc_state
->wm
= wm_state
;
10752 intel_modeset_pipe_config(struct drm_crtc
*crtc
,
10753 struct intel_crtc_state
*pipe_config
)
10755 struct drm_atomic_state
*state
= pipe_config
->base
.state
;
10756 struct intel_encoder
*encoder
;
10757 struct drm_connector
*connector
;
10758 struct drm_connector_state
*connector_state
;
10759 int base_bpp
, ret
= -EINVAL
;
10763 clear_intel_crtc_state(pipe_config
);
10765 pipe_config
->cpu_transcoder
=
10766 (enum transcoder
) to_intel_crtc(crtc
)->pipe
;
10769 * Sanitize sync polarity flags based on requested ones. If neither
10770 * positive or negative polarity is requested, treat this as meaning
10771 * negative polarity.
10773 if (!(pipe_config
->base
.adjusted_mode
.flags
&
10774 (DRM_MODE_FLAG_PHSYNC
| DRM_MODE_FLAG_NHSYNC
)))
10775 pipe_config
->base
.adjusted_mode
.flags
|= DRM_MODE_FLAG_NHSYNC
;
10777 if (!(pipe_config
->base
.adjusted_mode
.flags
&
10778 (DRM_MODE_FLAG_PVSYNC
| DRM_MODE_FLAG_NVSYNC
)))
10779 pipe_config
->base
.adjusted_mode
.flags
|= DRM_MODE_FLAG_NVSYNC
;
10781 base_bpp
= compute_baseline_pipe_bpp(to_intel_crtc(crtc
),
10787 * Determine the real pipe dimensions. Note that stereo modes can
10788 * increase the actual pipe size due to the frame doubling and
10789 * insertion of additional space for blanks between the frame. This
10790 * is stored in the crtc timings. We use the requested mode to do this
10791 * computation to clearly distinguish it from the adjusted mode, which
10792 * can be changed by the connectors in the below retry loop.
10794 drm_mode_get_hv_timing(&pipe_config
->base
.mode
,
10795 &pipe_config
->pipe_src_w
,
10796 &pipe_config
->pipe_src_h
);
10798 for_each_new_connector_in_state(state
, connector
, connector_state
, i
) {
10799 if (connector_state
->crtc
!= crtc
)
10802 encoder
= to_intel_encoder(connector_state
->best_encoder
);
10804 if (!check_single_encoder_cloning(state
, to_intel_crtc(crtc
), encoder
)) {
10805 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
10810 * Determine output_types before calling the .compute_config()
10811 * hooks so that the hooks can use this information safely.
10813 if (encoder
->compute_output_type
)
10814 pipe_config
->output_types
|=
10815 BIT(encoder
->compute_output_type(encoder
, pipe_config
,
10818 pipe_config
->output_types
|= BIT(encoder
->type
);
10822 /* Ensure the port clock defaults are reset when retrying. */
10823 pipe_config
->port_clock
= 0;
10824 pipe_config
->pixel_multiplier
= 1;
10826 /* Fill in default crtc timings, allow encoders to overwrite them. */
10827 drm_mode_set_crtcinfo(&pipe_config
->base
.adjusted_mode
,
10828 CRTC_STEREO_DOUBLE
);
10830 /* Pass our mode to the connectors and the CRTC to give them a chance to
10831 * adjust it according to limitations or connector properties, and also
10832 * a chance to reject the mode entirely.
10834 for_each_new_connector_in_state(state
, connector
, connector_state
, i
) {
10835 if (connector_state
->crtc
!= crtc
)
10838 encoder
= to_intel_encoder(connector_state
->best_encoder
);
10840 if (!(encoder
->compute_config(encoder
, pipe_config
, connector_state
))) {
10841 DRM_DEBUG_KMS("Encoder config failure\n");
10846 /* Set default port clock if not overwritten by the encoder. Needs to be
10847 * done afterwards in case the encoder adjusts the mode. */
10848 if (!pipe_config
->port_clock
)
10849 pipe_config
->port_clock
= pipe_config
->base
.adjusted_mode
.crtc_clock
10850 * pipe_config
->pixel_multiplier
;
10852 ret
= intel_crtc_compute_config(to_intel_crtc(crtc
), pipe_config
);
10854 DRM_DEBUG_KMS("CRTC fixup failed\n");
10858 if (ret
== RETRY
) {
10859 if (WARN(!retry
, "loop in pipe configuration computation\n")) {
10864 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
10866 goto encoder_retry
;
10869 /* Dithering seems to not pass-through bits correctly when it should, so
10870 * only enable it on 6bpc panels and when its not a compliance
10871 * test requesting 6bpc video pattern.
10873 pipe_config
->dither
= (pipe_config
->pipe_bpp
== 6*3) &&
10874 !pipe_config
->dither_force_disable
;
10875 DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n",
10876 base_bpp
, pipe_config
->pipe_bpp
, pipe_config
->dither
);
10882 static bool intel_fuzzy_clock_check(int clock1
, int clock2
)
10886 if (clock1
== clock2
)
10889 if (!clock1
|| !clock2
)
10892 diff
= abs(clock1
- clock2
);
10894 if (((((diff
+ clock1
+ clock2
) * 100)) / (clock1
+ clock2
)) < 105)
10901 intel_compare_m_n(unsigned int m
, unsigned int n
,
10902 unsigned int m2
, unsigned int n2
,
10905 if (m
== m2
&& n
== n2
)
10908 if (exact
|| !m
|| !n
|| !m2
|| !n2
)
10911 BUILD_BUG_ON(DATA_LINK_M_N_MASK
> INT_MAX
);
10918 } else if (n
< n2
) {
10928 return intel_fuzzy_clock_check(m
, m2
);
10932 intel_compare_link_m_n(const struct intel_link_m_n
*m_n
,
10933 struct intel_link_m_n
*m2_n2
,
10936 if (m_n
->tu
== m2_n2
->tu
&&
10937 intel_compare_m_n(m_n
->gmch_m
, m_n
->gmch_n
,
10938 m2_n2
->gmch_m
, m2_n2
->gmch_n
, !adjust
) &&
10939 intel_compare_m_n(m_n
->link_m
, m_n
->link_n
,
10940 m2_n2
->link_m
, m2_n2
->link_n
, !adjust
)) {
10950 static void __printf(3, 4)
10951 pipe_config_err(bool adjust
, const char *name
, const char *format
, ...)
10954 unsigned int category
;
10955 struct va_format vaf
;
10959 level
= KERN_DEBUG
;
10960 category
= DRM_UT_KMS
;
10963 category
= DRM_UT_NONE
;
10966 va_start(args
, format
);
10970 drm_printk(level
, category
, "mismatch in %s %pV", name
, &vaf
);
10976 intel_pipe_config_compare(struct drm_i915_private
*dev_priv
,
10977 struct intel_crtc_state
*current_config
,
10978 struct intel_crtc_state
*pipe_config
,
10982 bool fixup_inherited
= adjust
&&
10983 (current_config
->base
.mode
.private_flags
& I915_MODE_FLAG_INHERITED
) &&
10984 !(pipe_config
->base
.mode
.private_flags
& I915_MODE_FLAG_INHERITED
);
10986 #define PIPE_CONF_CHECK_X(name) \
10987 if (current_config->name != pipe_config->name) { \
10988 pipe_config_err(adjust, __stringify(name), \
10989 "(expected 0x%08x, found 0x%08x)\n", \
10990 current_config->name, \
10991 pipe_config->name); \
10995 #define PIPE_CONF_CHECK_I(name) \
10996 if (current_config->name != pipe_config->name) { \
10997 pipe_config_err(adjust, __stringify(name), \
10998 "(expected %i, found %i)\n", \
10999 current_config->name, \
11000 pipe_config->name); \
11004 #define PIPE_CONF_CHECK_BOOL(name) \
11005 if (current_config->name != pipe_config->name) { \
11006 pipe_config_err(adjust, __stringify(name), \
11007 "(expected %s, found %s)\n", \
11008 yesno(current_config->name), \
11009 yesno(pipe_config->name)); \
11014 * Checks state where we only read out the enabling, but not the entire
11015 * state itself (like full infoframes or ELD for audio). These states
11016 * require a full modeset on bootup to fix up.
11018 #define PIPE_CONF_CHECK_BOOL_INCOMPLETE(name) \
11019 if (!fixup_inherited || (!current_config->name && !pipe_config->name)) { \
11020 PIPE_CONF_CHECK_BOOL(name); \
11022 pipe_config_err(adjust, __stringify(name), \
11023 "unable to verify whether state matches exactly, forcing modeset (expected %s, found %s)\n", \
11024 yesno(current_config->name), \
11025 yesno(pipe_config->name)); \
11029 #define PIPE_CONF_CHECK_P(name) \
11030 if (current_config->name != pipe_config->name) { \
11031 pipe_config_err(adjust, __stringify(name), \
11032 "(expected %p, found %p)\n", \
11033 current_config->name, \
11034 pipe_config->name); \
11038 #define PIPE_CONF_CHECK_M_N(name) \
11039 if (!intel_compare_link_m_n(¤t_config->name, \
11040 &pipe_config->name,\
11042 pipe_config_err(adjust, __stringify(name), \
11043 "(expected tu %i gmch %i/%i link %i/%i, " \
11044 "found tu %i, gmch %i/%i link %i/%i)\n", \
11045 current_config->name.tu, \
11046 current_config->name.gmch_m, \
11047 current_config->name.gmch_n, \
11048 current_config->name.link_m, \
11049 current_config->name.link_n, \
11050 pipe_config->name.tu, \
11051 pipe_config->name.gmch_m, \
11052 pipe_config->name.gmch_n, \
11053 pipe_config->name.link_m, \
11054 pipe_config->name.link_n); \
11058 /* This is required for BDW+ where there is only one set of registers for
11059 * switching between high and low RR.
11060 * This macro can be used whenever a comparison has to be made between one
11061 * hw state and multiple sw state variables.
11063 #define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \
11064 if (!intel_compare_link_m_n(¤t_config->name, \
11065 &pipe_config->name, adjust) && \
11066 !intel_compare_link_m_n(¤t_config->alt_name, \
11067 &pipe_config->name, adjust)) { \
11068 pipe_config_err(adjust, __stringify(name), \
11069 "(expected tu %i gmch %i/%i link %i/%i, " \
11070 "or tu %i gmch %i/%i link %i/%i, " \
11071 "found tu %i, gmch %i/%i link %i/%i)\n", \
11072 current_config->name.tu, \
11073 current_config->name.gmch_m, \
11074 current_config->name.gmch_n, \
11075 current_config->name.link_m, \
11076 current_config->name.link_n, \
11077 current_config->alt_name.tu, \
11078 current_config->alt_name.gmch_m, \
11079 current_config->alt_name.gmch_n, \
11080 current_config->alt_name.link_m, \
11081 current_config->alt_name.link_n, \
11082 pipe_config->name.tu, \
11083 pipe_config->name.gmch_m, \
11084 pipe_config->name.gmch_n, \
11085 pipe_config->name.link_m, \
11086 pipe_config->name.link_n); \
11090 #define PIPE_CONF_CHECK_FLAGS(name, mask) \
11091 if ((current_config->name ^ pipe_config->name) & (mask)) { \
11092 pipe_config_err(adjust, __stringify(name), \
11093 "(%x) (expected %i, found %i)\n", \
11095 current_config->name & (mask), \
11096 pipe_config->name & (mask)); \
11100 #define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
11101 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
11102 pipe_config_err(adjust, __stringify(name), \
11103 "(expected %i, found %i)\n", \
11104 current_config->name, \
11105 pipe_config->name); \
11109 #define PIPE_CONF_QUIRK(quirk) \
11110 ((current_config->quirks | pipe_config->quirks) & (quirk))
11112 PIPE_CONF_CHECK_I(cpu_transcoder
);
11114 PIPE_CONF_CHECK_BOOL(has_pch_encoder
);
11115 PIPE_CONF_CHECK_I(fdi_lanes
);
11116 PIPE_CONF_CHECK_M_N(fdi_m_n
);
11118 PIPE_CONF_CHECK_I(lane_count
);
11119 PIPE_CONF_CHECK_X(lane_lat_optim_mask
);
11121 if (INTEL_GEN(dev_priv
) < 8) {
11122 PIPE_CONF_CHECK_M_N(dp_m_n
);
11124 if (current_config
->has_drrs
)
11125 PIPE_CONF_CHECK_M_N(dp_m2_n2
);
11127 PIPE_CONF_CHECK_M_N_ALT(dp_m_n
, dp_m2_n2
);
11129 PIPE_CONF_CHECK_X(output_types
);
11131 PIPE_CONF_CHECK_I(base
.adjusted_mode
.crtc_hdisplay
);
11132 PIPE_CONF_CHECK_I(base
.adjusted_mode
.crtc_htotal
);
11133 PIPE_CONF_CHECK_I(base
.adjusted_mode
.crtc_hblank_start
);
11134 PIPE_CONF_CHECK_I(base
.adjusted_mode
.crtc_hblank_end
);
11135 PIPE_CONF_CHECK_I(base
.adjusted_mode
.crtc_hsync_start
);
11136 PIPE_CONF_CHECK_I(base
.adjusted_mode
.crtc_hsync_end
);
11138 PIPE_CONF_CHECK_I(base
.adjusted_mode
.crtc_vdisplay
);
11139 PIPE_CONF_CHECK_I(base
.adjusted_mode
.crtc_vtotal
);
11140 PIPE_CONF_CHECK_I(base
.adjusted_mode
.crtc_vblank_start
);
11141 PIPE_CONF_CHECK_I(base
.adjusted_mode
.crtc_vblank_end
);
11142 PIPE_CONF_CHECK_I(base
.adjusted_mode
.crtc_vsync_start
);
11143 PIPE_CONF_CHECK_I(base
.adjusted_mode
.crtc_vsync_end
);
11145 PIPE_CONF_CHECK_I(pixel_multiplier
);
11146 PIPE_CONF_CHECK_BOOL(has_hdmi_sink
);
11147 if ((INTEL_GEN(dev_priv
) < 8 && !IS_HASWELL(dev_priv
)) ||
11148 IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
))
11149 PIPE_CONF_CHECK_BOOL(limited_color_range
);
11151 PIPE_CONF_CHECK_BOOL(hdmi_scrambling
);
11152 PIPE_CONF_CHECK_BOOL(hdmi_high_tmds_clock_ratio
);
11153 PIPE_CONF_CHECK_BOOL_INCOMPLETE(has_infoframe
);
11154 PIPE_CONF_CHECK_BOOL(ycbcr420
);
11156 PIPE_CONF_CHECK_BOOL_INCOMPLETE(has_audio
);
11158 PIPE_CONF_CHECK_FLAGS(base
.adjusted_mode
.flags
,
11159 DRM_MODE_FLAG_INTERLACE
);
11161 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS
)) {
11162 PIPE_CONF_CHECK_FLAGS(base
.adjusted_mode
.flags
,
11163 DRM_MODE_FLAG_PHSYNC
);
11164 PIPE_CONF_CHECK_FLAGS(base
.adjusted_mode
.flags
,
11165 DRM_MODE_FLAG_NHSYNC
);
11166 PIPE_CONF_CHECK_FLAGS(base
.adjusted_mode
.flags
,
11167 DRM_MODE_FLAG_PVSYNC
);
11168 PIPE_CONF_CHECK_FLAGS(base
.adjusted_mode
.flags
,
11169 DRM_MODE_FLAG_NVSYNC
);
11172 PIPE_CONF_CHECK_X(gmch_pfit
.control
);
11173 /* pfit ratios are autocomputed by the hw on gen4+ */
11174 if (INTEL_GEN(dev_priv
) < 4)
11175 PIPE_CONF_CHECK_X(gmch_pfit
.pgm_ratios
);
11176 PIPE_CONF_CHECK_X(gmch_pfit
.lvds_border_bits
);
11179 PIPE_CONF_CHECK_I(pipe_src_w
);
11180 PIPE_CONF_CHECK_I(pipe_src_h
);
11182 PIPE_CONF_CHECK_BOOL(pch_pfit
.enabled
);
11183 if (current_config
->pch_pfit
.enabled
) {
11184 PIPE_CONF_CHECK_X(pch_pfit
.pos
);
11185 PIPE_CONF_CHECK_X(pch_pfit
.size
);
11188 PIPE_CONF_CHECK_I(scaler_state
.scaler_id
);
11189 PIPE_CONF_CHECK_CLOCK_FUZZY(pixel_rate
);
11192 PIPE_CONF_CHECK_BOOL(double_wide
);
11194 PIPE_CONF_CHECK_P(shared_dpll
);
11195 PIPE_CONF_CHECK_X(dpll_hw_state
.dpll
);
11196 PIPE_CONF_CHECK_X(dpll_hw_state
.dpll_md
);
11197 PIPE_CONF_CHECK_X(dpll_hw_state
.fp0
);
11198 PIPE_CONF_CHECK_X(dpll_hw_state
.fp1
);
11199 PIPE_CONF_CHECK_X(dpll_hw_state
.wrpll
);
11200 PIPE_CONF_CHECK_X(dpll_hw_state
.spll
);
11201 PIPE_CONF_CHECK_X(dpll_hw_state
.ctrl1
);
11202 PIPE_CONF_CHECK_X(dpll_hw_state
.cfgcr1
);
11203 PIPE_CONF_CHECK_X(dpll_hw_state
.cfgcr2
);
11204 PIPE_CONF_CHECK_X(dpll_hw_state
.cfgcr0
);
11205 PIPE_CONF_CHECK_X(dpll_hw_state
.ebb0
);
11206 PIPE_CONF_CHECK_X(dpll_hw_state
.ebb4
);
11207 PIPE_CONF_CHECK_X(dpll_hw_state
.pll0
);
11208 PIPE_CONF_CHECK_X(dpll_hw_state
.pll1
);
11209 PIPE_CONF_CHECK_X(dpll_hw_state
.pll2
);
11210 PIPE_CONF_CHECK_X(dpll_hw_state
.pll3
);
11211 PIPE_CONF_CHECK_X(dpll_hw_state
.pll6
);
11212 PIPE_CONF_CHECK_X(dpll_hw_state
.pll8
);
11213 PIPE_CONF_CHECK_X(dpll_hw_state
.pll9
);
11214 PIPE_CONF_CHECK_X(dpll_hw_state
.pll10
);
11215 PIPE_CONF_CHECK_X(dpll_hw_state
.pcsdw12
);
11217 PIPE_CONF_CHECK_X(dsi_pll
.ctrl
);
11218 PIPE_CONF_CHECK_X(dsi_pll
.div
);
11220 if (IS_G4X(dev_priv
) || INTEL_GEN(dev_priv
) >= 5)
11221 PIPE_CONF_CHECK_I(pipe_bpp
);
11223 PIPE_CONF_CHECK_CLOCK_FUZZY(base
.adjusted_mode
.crtc_clock
);
11224 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock
);
11226 PIPE_CONF_CHECK_I(min_voltage_level
);
11228 #undef PIPE_CONF_CHECK_X
11229 #undef PIPE_CONF_CHECK_I
11230 #undef PIPE_CONF_CHECK_BOOL
11231 #undef PIPE_CONF_CHECK_BOOL_INCOMPLETE
11232 #undef PIPE_CONF_CHECK_P
11233 #undef PIPE_CONF_CHECK_FLAGS
11234 #undef PIPE_CONF_CHECK_CLOCK_FUZZY
11235 #undef PIPE_CONF_QUIRK
11240 static void intel_pipe_config_sanity_check(struct drm_i915_private
*dev_priv
,
11241 const struct intel_crtc_state
*pipe_config
)
11243 if (pipe_config
->has_pch_encoder
) {
11244 int fdi_dotclock
= intel_dotclock_calculate(intel_fdi_link_freq(dev_priv
, pipe_config
),
11245 &pipe_config
->fdi_m_n
);
11246 int dotclock
= pipe_config
->base
.adjusted_mode
.crtc_clock
;
11249 * FDI already provided one idea for the dotclock.
11250 * Yell if the encoder disagrees.
11252 WARN(!intel_fuzzy_clock_check(fdi_dotclock
, dotclock
),
11253 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
11254 fdi_dotclock
, dotclock
);
11258 static void verify_wm_state(struct drm_crtc
*crtc
,
11259 struct drm_crtc_state
*new_state
)
11261 struct drm_i915_private
*dev_priv
= to_i915(crtc
->dev
);
11262 struct skl_ddb_allocation hw_ddb
, *sw_ddb
;
11263 struct skl_pipe_wm hw_wm
, *sw_wm
;
11264 struct skl_plane_wm
*hw_plane_wm
, *sw_plane_wm
;
11265 struct skl_ddb_entry
*hw_ddb_entry
, *sw_ddb_entry
;
11266 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
11267 const enum pipe pipe
= intel_crtc
->pipe
;
11268 int plane
, level
, max_level
= ilk_wm_max_level(dev_priv
);
11270 if (INTEL_GEN(dev_priv
) < 9 || !new_state
->active
)
11273 skl_pipe_wm_get_hw_state(crtc
, &hw_wm
);
11274 sw_wm
= &to_intel_crtc_state(new_state
)->wm
.skl
.optimal
;
11276 skl_ddb_get_hw_state(dev_priv
, &hw_ddb
);
11277 sw_ddb
= &dev_priv
->wm
.skl_hw
.ddb
;
11280 for_each_universal_plane(dev_priv
, pipe
, plane
) {
11281 hw_plane_wm
= &hw_wm
.planes
[plane
];
11282 sw_plane_wm
= &sw_wm
->planes
[plane
];
11285 for (level
= 0; level
<= max_level
; level
++) {
11286 if (skl_wm_level_equals(&hw_plane_wm
->wm
[level
],
11287 &sw_plane_wm
->wm
[level
]))
11290 DRM_ERROR("mismatch in WM pipe %c plane %d level %d (expected e=%d b=%u l=%u, got e=%d b=%u l=%u)\n",
11291 pipe_name(pipe
), plane
+ 1, level
,
11292 sw_plane_wm
->wm
[level
].plane_en
,
11293 sw_plane_wm
->wm
[level
].plane_res_b
,
11294 sw_plane_wm
->wm
[level
].plane_res_l
,
11295 hw_plane_wm
->wm
[level
].plane_en
,
11296 hw_plane_wm
->wm
[level
].plane_res_b
,
11297 hw_plane_wm
->wm
[level
].plane_res_l
);
11300 if (!skl_wm_level_equals(&hw_plane_wm
->trans_wm
,
11301 &sw_plane_wm
->trans_wm
)) {
11302 DRM_ERROR("mismatch in trans WM pipe %c plane %d (expected e=%d b=%u l=%u, got e=%d b=%u l=%u)\n",
11303 pipe_name(pipe
), plane
+ 1,
11304 sw_plane_wm
->trans_wm
.plane_en
,
11305 sw_plane_wm
->trans_wm
.plane_res_b
,
11306 sw_plane_wm
->trans_wm
.plane_res_l
,
11307 hw_plane_wm
->trans_wm
.plane_en
,
11308 hw_plane_wm
->trans_wm
.plane_res_b
,
11309 hw_plane_wm
->trans_wm
.plane_res_l
);
11313 hw_ddb_entry
= &hw_ddb
.plane
[pipe
][plane
];
11314 sw_ddb_entry
= &sw_ddb
->plane
[pipe
][plane
];
11316 if (!skl_ddb_entry_equal(hw_ddb_entry
, sw_ddb_entry
)) {
11317 DRM_ERROR("mismatch in DDB state pipe %c plane %d (expected (%u,%u), found (%u,%u))\n",
11318 pipe_name(pipe
), plane
+ 1,
11319 sw_ddb_entry
->start
, sw_ddb_entry
->end
,
11320 hw_ddb_entry
->start
, hw_ddb_entry
->end
);
11326 * If the cursor plane isn't active, we may not have updated it's ddb
11327 * allocation. In that case since the ddb allocation will be updated
11328 * once the plane becomes visible, we can skip this check
11331 hw_plane_wm
= &hw_wm
.planes
[PLANE_CURSOR
];
11332 sw_plane_wm
= &sw_wm
->planes
[PLANE_CURSOR
];
11335 for (level
= 0; level
<= max_level
; level
++) {
11336 if (skl_wm_level_equals(&hw_plane_wm
->wm
[level
],
11337 &sw_plane_wm
->wm
[level
]))
11340 DRM_ERROR("mismatch in WM pipe %c cursor level %d (expected e=%d b=%u l=%u, got e=%d b=%u l=%u)\n",
11341 pipe_name(pipe
), level
,
11342 sw_plane_wm
->wm
[level
].plane_en
,
11343 sw_plane_wm
->wm
[level
].plane_res_b
,
11344 sw_plane_wm
->wm
[level
].plane_res_l
,
11345 hw_plane_wm
->wm
[level
].plane_en
,
11346 hw_plane_wm
->wm
[level
].plane_res_b
,
11347 hw_plane_wm
->wm
[level
].plane_res_l
);
11350 if (!skl_wm_level_equals(&hw_plane_wm
->trans_wm
,
11351 &sw_plane_wm
->trans_wm
)) {
11352 DRM_ERROR("mismatch in trans WM pipe %c cursor (expected e=%d b=%u l=%u, got e=%d b=%u l=%u)\n",
11354 sw_plane_wm
->trans_wm
.plane_en
,
11355 sw_plane_wm
->trans_wm
.plane_res_b
,
11356 sw_plane_wm
->trans_wm
.plane_res_l
,
11357 hw_plane_wm
->trans_wm
.plane_en
,
11358 hw_plane_wm
->trans_wm
.plane_res_b
,
11359 hw_plane_wm
->trans_wm
.plane_res_l
);
11363 hw_ddb_entry
= &hw_ddb
.plane
[pipe
][PLANE_CURSOR
];
11364 sw_ddb_entry
= &sw_ddb
->plane
[pipe
][PLANE_CURSOR
];
11366 if (!skl_ddb_entry_equal(hw_ddb_entry
, sw_ddb_entry
)) {
11367 DRM_ERROR("mismatch in DDB state pipe %c cursor (expected (%u,%u), found (%u,%u))\n",
11369 sw_ddb_entry
->start
, sw_ddb_entry
->end
,
11370 hw_ddb_entry
->start
, hw_ddb_entry
->end
);
11376 verify_connector_state(struct drm_device
*dev
,
11377 struct drm_atomic_state
*state
,
11378 struct drm_crtc
*crtc
)
11380 struct drm_connector
*connector
;
11381 struct drm_connector_state
*new_conn_state
;
11384 for_each_new_connector_in_state(state
, connector
, new_conn_state
, i
) {
11385 struct drm_encoder
*encoder
= connector
->encoder
;
11386 struct drm_crtc_state
*crtc_state
= NULL
;
11388 if (new_conn_state
->crtc
!= crtc
)
11392 crtc_state
= drm_atomic_get_new_crtc_state(state
, new_conn_state
->crtc
);
11394 intel_connector_verify_state(crtc_state
, new_conn_state
);
11396 I915_STATE_WARN(new_conn_state
->best_encoder
!= encoder
,
11397 "connector's atomic encoder doesn't match legacy encoder\n");
11402 verify_encoder_state(struct drm_device
*dev
, struct drm_atomic_state
*state
)
11404 struct intel_encoder
*encoder
;
11405 struct drm_connector
*connector
;
11406 struct drm_connector_state
*old_conn_state
, *new_conn_state
;
11409 for_each_intel_encoder(dev
, encoder
) {
11410 bool enabled
= false, found
= false;
11413 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
11414 encoder
->base
.base
.id
,
11415 encoder
->base
.name
);
11417 for_each_oldnew_connector_in_state(state
, connector
, old_conn_state
,
11418 new_conn_state
, i
) {
11419 if (old_conn_state
->best_encoder
== &encoder
->base
)
11422 if (new_conn_state
->best_encoder
!= &encoder
->base
)
11424 found
= enabled
= true;
11426 I915_STATE_WARN(new_conn_state
->crtc
!=
11427 encoder
->base
.crtc
,
11428 "connector's crtc doesn't match encoder crtc\n");
11434 I915_STATE_WARN(!!encoder
->base
.crtc
!= enabled
,
11435 "encoder's enabled state mismatch "
11436 "(expected %i, found %i)\n",
11437 !!encoder
->base
.crtc
, enabled
);
11439 if (!encoder
->base
.crtc
) {
11442 active
= encoder
->get_hw_state(encoder
, &pipe
);
11443 I915_STATE_WARN(active
,
11444 "encoder detached but still enabled on pipe %c.\n",
11451 verify_crtc_state(struct drm_crtc
*crtc
,
11452 struct drm_crtc_state
*old_crtc_state
,
11453 struct drm_crtc_state
*new_crtc_state
)
11455 struct drm_device
*dev
= crtc
->dev
;
11456 struct drm_i915_private
*dev_priv
= to_i915(dev
);
11457 struct intel_encoder
*encoder
;
11458 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
11459 struct intel_crtc_state
*pipe_config
, *sw_config
;
11460 struct drm_atomic_state
*old_state
;
11463 old_state
= old_crtc_state
->state
;
11464 __drm_atomic_helper_crtc_destroy_state(old_crtc_state
);
11465 pipe_config
= to_intel_crtc_state(old_crtc_state
);
11466 memset(pipe_config
, 0, sizeof(*pipe_config
));
11467 pipe_config
->base
.crtc
= crtc
;
11468 pipe_config
->base
.state
= old_state
;
11470 DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc
->base
.id
, crtc
->name
);
11472 active
= dev_priv
->display
.get_pipe_config(intel_crtc
, pipe_config
);
11474 /* we keep both pipes enabled on 830 */
11475 if (IS_I830(dev_priv
))
11476 active
= new_crtc_state
->active
;
11478 I915_STATE_WARN(new_crtc_state
->active
!= active
,
11479 "crtc active state doesn't match with hw state "
11480 "(expected %i, found %i)\n", new_crtc_state
->active
, active
);
11482 I915_STATE_WARN(intel_crtc
->active
!= new_crtc_state
->active
,
11483 "transitional active state does not match atomic hw state "
11484 "(expected %i, found %i)\n", new_crtc_state
->active
, intel_crtc
->active
);
11486 for_each_encoder_on_crtc(dev
, crtc
, encoder
) {
11489 active
= encoder
->get_hw_state(encoder
, &pipe
);
11490 I915_STATE_WARN(active
!= new_crtc_state
->active
,
11491 "[ENCODER:%i] active %i with crtc active %i\n",
11492 encoder
->base
.base
.id
, active
, new_crtc_state
->active
);
11494 I915_STATE_WARN(active
&& intel_crtc
->pipe
!= pipe
,
11495 "Encoder connected to wrong pipe %c\n",
11499 encoder
->get_config(encoder
, pipe_config
);
11502 intel_crtc_compute_pixel_rate(pipe_config
);
11504 if (!new_crtc_state
->active
)
11507 intel_pipe_config_sanity_check(dev_priv
, pipe_config
);
11509 sw_config
= to_intel_crtc_state(new_crtc_state
);
11510 if (!intel_pipe_config_compare(dev_priv
, sw_config
,
11511 pipe_config
, false)) {
11512 I915_STATE_WARN(1, "pipe state doesn't match!\n");
11513 intel_dump_pipe_config(intel_crtc
, pipe_config
,
11515 intel_dump_pipe_config(intel_crtc
, sw_config
,
11521 intel_verify_planes(struct intel_atomic_state
*state
)
11523 struct intel_plane
*plane
;
11524 const struct intel_plane_state
*plane_state
;
11527 for_each_new_intel_plane_in_state(state
, plane
,
11529 assert_plane(plane
, plane_state
->base
.visible
);
11533 verify_single_dpll_state(struct drm_i915_private
*dev_priv
,
11534 struct intel_shared_dpll
*pll
,
11535 struct drm_crtc
*crtc
,
11536 struct drm_crtc_state
*new_state
)
11538 struct intel_dpll_hw_state dpll_hw_state
;
11539 unsigned crtc_mask
;
11542 memset(&dpll_hw_state
, 0, sizeof(dpll_hw_state
));
11544 DRM_DEBUG_KMS("%s\n", pll
->name
);
11546 active
= pll
->funcs
.get_hw_state(dev_priv
, pll
, &dpll_hw_state
);
11548 if (!(pll
->flags
& INTEL_DPLL_ALWAYS_ON
)) {
11549 I915_STATE_WARN(!pll
->on
&& pll
->active_mask
,
11550 "pll in active use but not on in sw tracking\n");
11551 I915_STATE_WARN(pll
->on
&& !pll
->active_mask
,
11552 "pll is on but not used by any active crtc\n");
11553 I915_STATE_WARN(pll
->on
!= active
,
11554 "pll on state mismatch (expected %i, found %i)\n",
11559 I915_STATE_WARN(pll
->active_mask
& ~pll
->state
.crtc_mask
,
11560 "more active pll users than references: %x vs %x\n",
11561 pll
->active_mask
, pll
->state
.crtc_mask
);
11566 crtc_mask
= 1 << drm_crtc_index(crtc
);
11568 if (new_state
->active
)
11569 I915_STATE_WARN(!(pll
->active_mask
& crtc_mask
),
11570 "pll active mismatch (expected pipe %c in active mask 0x%02x)\n",
11571 pipe_name(drm_crtc_index(crtc
)), pll
->active_mask
);
11573 I915_STATE_WARN(pll
->active_mask
& crtc_mask
,
11574 "pll active mismatch (didn't expect pipe %c in active mask 0x%02x)\n",
11575 pipe_name(drm_crtc_index(crtc
)), pll
->active_mask
);
11577 I915_STATE_WARN(!(pll
->state
.crtc_mask
& crtc_mask
),
11578 "pll enabled crtcs mismatch (expected 0x%x in 0x%02x)\n",
11579 crtc_mask
, pll
->state
.crtc_mask
);
11581 I915_STATE_WARN(pll
->on
&& memcmp(&pll
->state
.hw_state
,
11583 sizeof(dpll_hw_state
)),
11584 "pll hw state mismatch\n");
11588 verify_shared_dpll_state(struct drm_device
*dev
, struct drm_crtc
*crtc
,
11589 struct drm_crtc_state
*old_crtc_state
,
11590 struct drm_crtc_state
*new_crtc_state
)
11592 struct drm_i915_private
*dev_priv
= to_i915(dev
);
11593 struct intel_crtc_state
*old_state
= to_intel_crtc_state(old_crtc_state
);
11594 struct intel_crtc_state
*new_state
= to_intel_crtc_state(new_crtc_state
);
11596 if (new_state
->shared_dpll
)
11597 verify_single_dpll_state(dev_priv
, new_state
->shared_dpll
, crtc
, new_crtc_state
);
11599 if (old_state
->shared_dpll
&&
11600 old_state
->shared_dpll
!= new_state
->shared_dpll
) {
11601 unsigned crtc_mask
= 1 << drm_crtc_index(crtc
);
11602 struct intel_shared_dpll
*pll
= old_state
->shared_dpll
;
11604 I915_STATE_WARN(pll
->active_mask
& crtc_mask
,
11605 "pll active mismatch (didn't expect pipe %c in active mask)\n",
11606 pipe_name(drm_crtc_index(crtc
)));
11607 I915_STATE_WARN(pll
->state
.crtc_mask
& crtc_mask
,
11608 "pll enabled crtcs mismatch (found %x in enabled mask)\n",
11609 pipe_name(drm_crtc_index(crtc
)));
11614 intel_modeset_verify_crtc(struct drm_crtc
*crtc
,
11615 struct drm_atomic_state
*state
,
11616 struct drm_crtc_state
*old_state
,
11617 struct drm_crtc_state
*new_state
)
11619 if (!needs_modeset(new_state
) &&
11620 !to_intel_crtc_state(new_state
)->update_pipe
)
11623 verify_wm_state(crtc
, new_state
);
11624 verify_connector_state(crtc
->dev
, state
, crtc
);
11625 verify_crtc_state(crtc
, old_state
, new_state
);
11626 verify_shared_dpll_state(crtc
->dev
, crtc
, old_state
, new_state
);
11630 verify_disabled_dpll_state(struct drm_device
*dev
)
11632 struct drm_i915_private
*dev_priv
= to_i915(dev
);
11635 for (i
= 0; i
< dev_priv
->num_shared_dpll
; i
++)
11636 verify_single_dpll_state(dev_priv
, &dev_priv
->shared_dplls
[i
], NULL
, NULL
);
11640 intel_modeset_verify_disabled(struct drm_device
*dev
,
11641 struct drm_atomic_state
*state
)
11643 verify_encoder_state(dev
, state
);
11644 verify_connector_state(dev
, state
, NULL
);
11645 verify_disabled_dpll_state(dev
);
11648 static void update_scanline_offset(struct intel_crtc
*crtc
)
11650 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
11653 * The scanline counter increments at the leading edge of hsync.
11655 * On most platforms it starts counting from vtotal-1 on the
11656 * first active line. That means the scanline counter value is
11657 * always one less than what we would expect. Ie. just after
11658 * start of vblank, which also occurs at start of hsync (on the
11659 * last active line), the scanline counter will read vblank_start-1.
11661 * On gen2 the scanline counter starts counting from 1 instead
11662 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
11663 * to keep the value positive), instead of adding one.
11665 * On HSW+ the behaviour of the scanline counter depends on the output
11666 * type. For DP ports it behaves like most other platforms, but on HDMI
11667 * there's an extra 1 line difference. So we need to add two instead of
11668 * one to the value.
11670 * On VLV/CHV DSI the scanline counter would appear to increment
11671 * approx. 1/3 of a scanline before start of vblank. Unfortunately
11672 * that means we can't tell whether we're in vblank or not while
11673 * we're on that particular line. We must still set scanline_offset
11674 * to 1 so that the vblank timestamps come out correct when we query
11675 * the scanline counter from within the vblank interrupt handler.
11676 * However if queried just before the start of vblank we'll get an
11677 * answer that's slightly in the future.
11679 if (IS_GEN2(dev_priv
)) {
11680 const struct drm_display_mode
*adjusted_mode
= &crtc
->config
->base
.adjusted_mode
;
11683 vtotal
= adjusted_mode
->crtc_vtotal
;
11684 if (adjusted_mode
->flags
& DRM_MODE_FLAG_INTERLACE
)
11687 crtc
->scanline_offset
= vtotal
- 1;
11688 } else if (HAS_DDI(dev_priv
) &&
11689 intel_crtc_has_type(crtc
->config
, INTEL_OUTPUT_HDMI
)) {
11690 crtc
->scanline_offset
= 2;
11692 crtc
->scanline_offset
= 1;
11695 static void intel_modeset_clear_plls(struct drm_atomic_state
*state
)
11697 struct drm_device
*dev
= state
->dev
;
11698 struct drm_i915_private
*dev_priv
= to_i915(dev
);
11699 struct drm_crtc
*crtc
;
11700 struct drm_crtc_state
*old_crtc_state
, *new_crtc_state
;
11703 if (!dev_priv
->display
.crtc_compute_clock
)
11706 for_each_oldnew_crtc_in_state(state
, crtc
, old_crtc_state
, new_crtc_state
, i
) {
11707 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
11708 struct intel_shared_dpll
*old_dpll
=
11709 to_intel_crtc_state(old_crtc_state
)->shared_dpll
;
11711 if (!needs_modeset(new_crtc_state
))
11714 to_intel_crtc_state(new_crtc_state
)->shared_dpll
= NULL
;
11719 intel_release_shared_dpll(old_dpll
, intel_crtc
, state
);
11724 * This implements the workaround described in the "notes" section of the mode
11725 * set sequence documentation. When going from no pipes or single pipe to
11726 * multiple pipes, and planes are enabled after the pipe, we need to wait at
11727 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
11729 static int haswell_mode_set_planes_workaround(struct drm_atomic_state
*state
)
11731 struct drm_crtc_state
*crtc_state
;
11732 struct intel_crtc
*intel_crtc
;
11733 struct drm_crtc
*crtc
;
11734 struct intel_crtc_state
*first_crtc_state
= NULL
;
11735 struct intel_crtc_state
*other_crtc_state
= NULL
;
11736 enum pipe first_pipe
= INVALID_PIPE
, enabled_pipe
= INVALID_PIPE
;
11739 /* look at all crtc's that are going to be enabled in during modeset */
11740 for_each_new_crtc_in_state(state
, crtc
, crtc_state
, i
) {
11741 intel_crtc
= to_intel_crtc(crtc
);
11743 if (!crtc_state
->active
|| !needs_modeset(crtc_state
))
11746 if (first_crtc_state
) {
11747 other_crtc_state
= to_intel_crtc_state(crtc_state
);
11750 first_crtc_state
= to_intel_crtc_state(crtc_state
);
11751 first_pipe
= intel_crtc
->pipe
;
11755 /* No workaround needed? */
11756 if (!first_crtc_state
)
11759 /* w/a possibly needed, check how many crtc's are already enabled. */
11760 for_each_intel_crtc(state
->dev
, intel_crtc
) {
11761 struct intel_crtc_state
*pipe_config
;
11763 pipe_config
= intel_atomic_get_crtc_state(state
, intel_crtc
);
11764 if (IS_ERR(pipe_config
))
11765 return PTR_ERR(pipe_config
);
11767 pipe_config
->hsw_workaround_pipe
= INVALID_PIPE
;
11769 if (!pipe_config
->base
.active
||
11770 needs_modeset(&pipe_config
->base
))
11773 /* 2 or more enabled crtcs means no need for w/a */
11774 if (enabled_pipe
!= INVALID_PIPE
)
11777 enabled_pipe
= intel_crtc
->pipe
;
11780 if (enabled_pipe
!= INVALID_PIPE
)
11781 first_crtc_state
->hsw_workaround_pipe
= enabled_pipe
;
11782 else if (other_crtc_state
)
11783 other_crtc_state
->hsw_workaround_pipe
= first_pipe
;
11788 static int intel_lock_all_pipes(struct drm_atomic_state
*state
)
11790 struct drm_crtc
*crtc
;
11792 /* Add all pipes to the state */
11793 for_each_crtc(state
->dev
, crtc
) {
11794 struct drm_crtc_state
*crtc_state
;
11796 crtc_state
= drm_atomic_get_crtc_state(state
, crtc
);
11797 if (IS_ERR(crtc_state
))
11798 return PTR_ERR(crtc_state
);
11804 static int intel_modeset_all_pipes(struct drm_atomic_state
*state
)
11806 struct drm_crtc
*crtc
;
11809 * Add all pipes to the state, and force
11810 * a modeset on all the active ones.
11812 for_each_crtc(state
->dev
, crtc
) {
11813 struct drm_crtc_state
*crtc_state
;
11816 crtc_state
= drm_atomic_get_crtc_state(state
, crtc
);
11817 if (IS_ERR(crtc_state
))
11818 return PTR_ERR(crtc_state
);
11820 if (!crtc_state
->active
|| needs_modeset(crtc_state
))
11823 crtc_state
->mode_changed
= true;
11825 ret
= drm_atomic_add_affected_connectors(state
, crtc
);
11829 ret
= drm_atomic_add_affected_planes(state
, crtc
);
11837 static int intel_modeset_checks(struct drm_atomic_state
*state
)
11839 struct intel_atomic_state
*intel_state
= to_intel_atomic_state(state
);
11840 struct drm_i915_private
*dev_priv
= to_i915(state
->dev
);
11841 struct drm_crtc
*crtc
;
11842 struct drm_crtc_state
*old_crtc_state
, *new_crtc_state
;
11845 if (!check_digital_port_conflicts(state
)) {
11846 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
11850 intel_state
->modeset
= true;
11851 intel_state
->active_crtcs
= dev_priv
->active_crtcs
;
11852 intel_state
->cdclk
.logical
= dev_priv
->cdclk
.logical
;
11853 intel_state
->cdclk
.actual
= dev_priv
->cdclk
.actual
;
11855 for_each_oldnew_crtc_in_state(state
, crtc
, old_crtc_state
, new_crtc_state
, i
) {
11856 if (new_crtc_state
->active
)
11857 intel_state
->active_crtcs
|= 1 << i
;
11859 intel_state
->active_crtcs
&= ~(1 << i
);
11861 if (old_crtc_state
->active
!= new_crtc_state
->active
)
11862 intel_state
->active_pipe_changes
|= drm_crtc_mask(crtc
);
11866 * See if the config requires any additional preparation, e.g.
11867 * to adjust global state with pipes off. We need to do this
11868 * here so we can get the modeset_pipe updated config for the new
11869 * mode set on this crtc. For other crtcs we need to use the
11870 * adjusted_mode bits in the crtc directly.
11872 if (dev_priv
->display
.modeset_calc_cdclk
) {
11873 ret
= dev_priv
->display
.modeset_calc_cdclk(state
);
11878 * Writes to dev_priv->cdclk.logical must protected by
11879 * holding all the crtc locks, even if we don't end up
11880 * touching the hardware
11882 if (intel_cdclk_changed(&dev_priv
->cdclk
.logical
,
11883 &intel_state
->cdclk
.logical
)) {
11884 ret
= intel_lock_all_pipes(state
);
11889 /* All pipes must be switched off while we change the cdclk. */
11890 if (intel_cdclk_needs_modeset(&dev_priv
->cdclk
.actual
,
11891 &intel_state
->cdclk
.actual
)) {
11892 ret
= intel_modeset_all_pipes(state
);
11897 DRM_DEBUG_KMS("New cdclk calculated to be logical %u kHz, actual %u kHz\n",
11898 intel_state
->cdclk
.logical
.cdclk
,
11899 intel_state
->cdclk
.actual
.cdclk
);
11900 DRM_DEBUG_KMS("New voltage level calculated to be logical %u, actual %u\n",
11901 intel_state
->cdclk
.logical
.voltage_level
,
11902 intel_state
->cdclk
.actual
.voltage_level
);
11904 to_intel_atomic_state(state
)->cdclk
.logical
= dev_priv
->cdclk
.logical
;
11907 intel_modeset_clear_plls(state
);
11909 if (IS_HASWELL(dev_priv
))
11910 return haswell_mode_set_planes_workaround(state
);
11916 * Handle calculation of various watermark data at the end of the atomic check
11917 * phase. The code here should be run after the per-crtc and per-plane 'check'
11918 * handlers to ensure that all derived state has been updated.
11920 static int calc_watermark_data(struct drm_atomic_state
*state
)
11922 struct drm_device
*dev
= state
->dev
;
11923 struct drm_i915_private
*dev_priv
= to_i915(dev
);
11925 /* Is there platform-specific watermark information to calculate? */
11926 if (dev_priv
->display
.compute_global_watermarks
)
11927 return dev_priv
->display
.compute_global_watermarks(state
);
11933 * intel_atomic_check - validate state object
11935 * @state: state to validate
11937 static int intel_atomic_check(struct drm_device
*dev
,
11938 struct drm_atomic_state
*state
)
11940 struct drm_i915_private
*dev_priv
= to_i915(dev
);
11941 struct intel_atomic_state
*intel_state
= to_intel_atomic_state(state
);
11942 struct drm_crtc
*crtc
;
11943 struct drm_crtc_state
*old_crtc_state
, *crtc_state
;
11945 bool any_ms
= false;
11947 ret
= drm_atomic_helper_check_modeset(dev
, state
);
11951 for_each_oldnew_crtc_in_state(state
, crtc
, old_crtc_state
, crtc_state
, i
) {
11952 struct intel_crtc_state
*pipe_config
=
11953 to_intel_crtc_state(crtc_state
);
11955 /* Catch I915_MODE_FLAG_INHERITED */
11956 if (crtc_state
->mode
.private_flags
!= old_crtc_state
->mode
.private_flags
)
11957 crtc_state
->mode_changed
= true;
11959 if (!needs_modeset(crtc_state
))
11962 if (!crtc_state
->enable
) {
11967 /* FIXME: For only active_changed we shouldn't need to do any
11968 * state recomputation at all. */
11970 ret
= drm_atomic_add_affected_connectors(state
, crtc
);
11974 ret
= intel_modeset_pipe_config(crtc
, pipe_config
);
11976 intel_dump_pipe_config(to_intel_crtc(crtc
),
11977 pipe_config
, "[failed]");
11981 if (i915_modparams
.fastboot
&&
11982 intel_pipe_config_compare(dev_priv
,
11983 to_intel_crtc_state(old_crtc_state
),
11984 pipe_config
, true)) {
11985 crtc_state
->mode_changed
= false;
11986 pipe_config
->update_pipe
= true;
11989 if (needs_modeset(crtc_state
))
11992 ret
= drm_atomic_add_affected_planes(state
, crtc
);
11996 intel_dump_pipe_config(to_intel_crtc(crtc
), pipe_config
,
11997 needs_modeset(crtc_state
) ?
11998 "[modeset]" : "[fastset]");
12002 ret
= intel_modeset_checks(state
);
12007 intel_state
->cdclk
.logical
= dev_priv
->cdclk
.logical
;
12010 ret
= drm_atomic_helper_check_planes(dev
, state
);
12014 intel_fbc_choose_crtc(dev_priv
, intel_state
);
12015 return calc_watermark_data(state
);
12018 static int intel_atomic_prepare_commit(struct drm_device
*dev
,
12019 struct drm_atomic_state
*state
)
12021 return drm_atomic_helper_prepare_planes(dev
, state
);
12024 u32
intel_crtc_get_vblank_counter(struct intel_crtc
*crtc
)
12026 struct drm_device
*dev
= crtc
->base
.dev
;
12028 if (!dev
->max_vblank_count
)
12029 return drm_crtc_accurate_vblank_count(&crtc
->base
);
12031 return dev
->driver
->get_vblank_counter(dev
, crtc
->pipe
);
12034 static void intel_update_crtc(struct drm_crtc
*crtc
,
12035 struct drm_atomic_state
*state
,
12036 struct drm_crtc_state
*old_crtc_state
,
12037 struct drm_crtc_state
*new_crtc_state
)
12039 struct drm_device
*dev
= crtc
->dev
;
12040 struct drm_i915_private
*dev_priv
= to_i915(dev
);
12041 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
12042 struct intel_crtc_state
*pipe_config
= to_intel_crtc_state(new_crtc_state
);
12043 bool modeset
= needs_modeset(new_crtc_state
);
12046 update_scanline_offset(intel_crtc
);
12047 dev_priv
->display
.crtc_enable(pipe_config
, state
);
12049 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state
),
12053 if (drm_atomic_get_existing_plane_state(state
, crtc
->primary
)) {
12055 intel_crtc
, pipe_config
,
12056 to_intel_plane_state(crtc
->primary
->state
));
12059 drm_atomic_helper_commit_planes_on_crtc(old_crtc_state
);
12062 static void intel_update_crtcs(struct drm_atomic_state
*state
)
12064 struct drm_crtc
*crtc
;
12065 struct drm_crtc_state
*old_crtc_state
, *new_crtc_state
;
12068 for_each_oldnew_crtc_in_state(state
, crtc
, old_crtc_state
, new_crtc_state
, i
) {
12069 if (!new_crtc_state
->active
)
12072 intel_update_crtc(crtc
, state
, old_crtc_state
,
12077 static void skl_update_crtcs(struct drm_atomic_state
*state
)
12079 struct drm_i915_private
*dev_priv
= to_i915(state
->dev
);
12080 struct intel_atomic_state
*intel_state
= to_intel_atomic_state(state
);
12081 struct drm_crtc
*crtc
;
12082 struct intel_crtc
*intel_crtc
;
12083 struct drm_crtc_state
*old_crtc_state
, *new_crtc_state
;
12084 struct intel_crtc_state
*cstate
;
12085 unsigned int updated
= 0;
12090 const struct skl_ddb_entry
*entries
[I915_MAX_PIPES
] = {};
12092 for_each_oldnew_crtc_in_state(state
, crtc
, old_crtc_state
, new_crtc_state
, i
)
12093 /* ignore allocations for crtc's that have been turned off. */
12094 if (new_crtc_state
->active
)
12095 entries
[i
] = &to_intel_crtc_state(old_crtc_state
)->wm
.skl
.ddb
;
12098 * Whenever the number of active pipes changes, we need to make sure we
12099 * update the pipes in the right order so that their ddb allocations
12100 * never overlap with eachother inbetween CRTC updates. Otherwise we'll
12101 * cause pipe underruns and other bad stuff.
12106 for_each_oldnew_crtc_in_state(state
, crtc
, old_crtc_state
, new_crtc_state
, i
) {
12107 bool vbl_wait
= false;
12108 unsigned int cmask
= drm_crtc_mask(crtc
);
12110 intel_crtc
= to_intel_crtc(crtc
);
12111 cstate
= to_intel_crtc_state(new_crtc_state
);
12112 pipe
= intel_crtc
->pipe
;
12114 if (updated
& cmask
|| !cstate
->base
.active
)
12117 if (skl_ddb_allocation_overlaps(dev_priv
,
12119 &cstate
->wm
.skl
.ddb
,
12124 entries
[i
] = &cstate
->wm
.skl
.ddb
;
12127 * If this is an already active pipe, it's DDB changed,
12128 * and this isn't the last pipe that needs updating
12129 * then we need to wait for a vblank to pass for the
12130 * new ddb allocation to take effect.
12132 if (!skl_ddb_entry_equal(&cstate
->wm
.skl
.ddb
,
12133 &to_intel_crtc_state(old_crtc_state
)->wm
.skl
.ddb
) &&
12134 !new_crtc_state
->active_changed
&&
12135 intel_state
->wm_results
.dirty_pipes
!= updated
)
12138 intel_update_crtc(crtc
, state
, old_crtc_state
,
12142 intel_wait_for_vblank(dev_priv
, pipe
);
12146 } while (progress
);
12149 static void intel_atomic_helper_free_state(struct drm_i915_private
*dev_priv
)
12151 struct intel_atomic_state
*state
, *next
;
12152 struct llist_node
*freed
;
12154 freed
= llist_del_all(&dev_priv
->atomic_helper
.free_list
);
12155 llist_for_each_entry_safe(state
, next
, freed
, freed
)
12156 drm_atomic_state_put(&state
->base
);
12159 static void intel_atomic_helper_free_state_worker(struct work_struct
*work
)
12161 struct drm_i915_private
*dev_priv
=
12162 container_of(work
, typeof(*dev_priv
), atomic_helper
.free_work
);
12164 intel_atomic_helper_free_state(dev_priv
);
12167 static void intel_atomic_commit_fence_wait(struct intel_atomic_state
*intel_state
)
12169 struct wait_queue_entry wait_fence
, wait_reset
;
12170 struct drm_i915_private
*dev_priv
= to_i915(intel_state
->base
.dev
);
12172 init_wait_entry(&wait_fence
, 0);
12173 init_wait_entry(&wait_reset
, 0);
12175 prepare_to_wait(&intel_state
->commit_ready
.wait
,
12176 &wait_fence
, TASK_UNINTERRUPTIBLE
);
12177 prepare_to_wait(&dev_priv
->gpu_error
.wait_queue
,
12178 &wait_reset
, TASK_UNINTERRUPTIBLE
);
12181 if (i915_sw_fence_done(&intel_state
->commit_ready
)
12182 || test_bit(I915_RESET_MODESET
, &dev_priv
->gpu_error
.flags
))
12187 finish_wait(&intel_state
->commit_ready
.wait
, &wait_fence
);
12188 finish_wait(&dev_priv
->gpu_error
.wait_queue
, &wait_reset
);
12191 static void intel_atomic_commit_tail(struct drm_atomic_state
*state
)
12193 struct drm_device
*dev
= state
->dev
;
12194 struct intel_atomic_state
*intel_state
= to_intel_atomic_state(state
);
12195 struct drm_i915_private
*dev_priv
= to_i915(dev
);
12196 struct drm_crtc_state
*old_crtc_state
, *new_crtc_state
;
12197 struct drm_crtc
*crtc
;
12198 struct intel_crtc_state
*intel_cstate
;
12199 u64 put_domains
[I915_MAX_PIPES
] = {};
12202 intel_atomic_commit_fence_wait(intel_state
);
12204 drm_atomic_helper_wait_for_dependencies(state
);
12206 if (intel_state
->modeset
)
12207 intel_display_power_get(dev_priv
, POWER_DOMAIN_MODESET
);
12209 for_each_oldnew_crtc_in_state(state
, crtc
, old_crtc_state
, new_crtc_state
, i
) {
12210 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
12212 if (needs_modeset(new_crtc_state
) ||
12213 to_intel_crtc_state(new_crtc_state
)->update_pipe
) {
12215 put_domains
[to_intel_crtc(crtc
)->pipe
] =
12216 modeset_get_crtc_power_domains(crtc
,
12217 to_intel_crtc_state(new_crtc_state
));
12220 if (!needs_modeset(new_crtc_state
))
12223 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state
),
12224 to_intel_crtc_state(new_crtc_state
));
12226 if (old_crtc_state
->active
) {
12227 intel_crtc_disable_planes(crtc
, old_crtc_state
->plane_mask
);
12228 dev_priv
->display
.crtc_disable(to_intel_crtc_state(old_crtc_state
), state
);
12229 intel_crtc
->active
= false;
12230 intel_fbc_disable(intel_crtc
);
12231 intel_disable_shared_dpll(intel_crtc
);
12234 * Underruns don't always raise
12235 * interrupts, so check manually.
12237 intel_check_cpu_fifo_underruns(dev_priv
);
12238 intel_check_pch_fifo_underruns(dev_priv
);
12240 if (!new_crtc_state
->active
) {
12242 * Make sure we don't call initial_watermarks
12243 * for ILK-style watermark updates.
12245 * No clue what this is supposed to achieve.
12247 if (INTEL_GEN(dev_priv
) >= 9)
12248 dev_priv
->display
.initial_watermarks(intel_state
,
12249 to_intel_crtc_state(new_crtc_state
));
12254 /* FIXME: Eventually get rid of our intel_crtc->config pointer */
12255 for_each_new_crtc_in_state(state
, crtc
, new_crtc_state
, i
)
12256 to_intel_crtc(crtc
)->config
= to_intel_crtc_state(new_crtc_state
);
12258 if (intel_state
->modeset
) {
12259 drm_atomic_helper_update_legacy_modeset_state(state
->dev
, state
);
12261 intel_set_cdclk(dev_priv
, &dev_priv
->cdclk
.actual
);
12264 * SKL workaround: bspec recommends we disable the SAGV when we
12265 * have more then one pipe enabled
12267 if (!intel_can_enable_sagv(state
))
12268 intel_disable_sagv(dev_priv
);
12270 intel_modeset_verify_disabled(dev
, state
);
12273 /* Complete the events for pipes that have now been disabled */
12274 for_each_new_crtc_in_state(state
, crtc
, new_crtc_state
, i
) {
12275 bool modeset
= needs_modeset(new_crtc_state
);
12277 /* Complete events for now disable pipes here. */
12278 if (modeset
&& !new_crtc_state
->active
&& new_crtc_state
->event
) {
12279 spin_lock_irq(&dev
->event_lock
);
12280 drm_crtc_send_vblank_event(crtc
, new_crtc_state
->event
);
12281 spin_unlock_irq(&dev
->event_lock
);
12283 new_crtc_state
->event
= NULL
;
12287 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
12288 dev_priv
->display
.update_crtcs(state
);
12290 /* FIXME: We should call drm_atomic_helper_commit_hw_done() here
12291 * already, but still need the state for the delayed optimization. To
12293 * - wrap the optimization/post_plane_update stuff into a per-crtc work.
12294 * - schedule that vblank worker _before_ calling hw_done
12295 * - at the start of commit_tail, cancel it _synchrously
12296 * - switch over to the vblank wait helper in the core after that since
12297 * we don't need out special handling any more.
12299 drm_atomic_helper_wait_for_flip_done(dev
, state
);
12302 * Now that the vblank has passed, we can go ahead and program the
12303 * optimal watermarks on platforms that need two-step watermark
12306 * TODO: Move this (and other cleanup) to an async worker eventually.
12308 for_each_new_crtc_in_state(state
, crtc
, new_crtc_state
, i
) {
12309 intel_cstate
= to_intel_crtc_state(new_crtc_state
);
12311 if (dev_priv
->display
.optimize_watermarks
)
12312 dev_priv
->display
.optimize_watermarks(intel_state
,
12316 for_each_oldnew_crtc_in_state(state
, crtc
, old_crtc_state
, new_crtc_state
, i
) {
12317 intel_post_plane_update(to_intel_crtc_state(old_crtc_state
));
12319 if (put_domains
[i
])
12320 modeset_put_power_domains(dev_priv
, put_domains
[i
]);
12322 intel_modeset_verify_crtc(crtc
, state
, old_crtc_state
, new_crtc_state
);
12325 if (intel_state
->modeset
)
12326 intel_verify_planes(intel_state
);
12328 if (intel_state
->modeset
&& intel_can_enable_sagv(state
))
12329 intel_enable_sagv(dev_priv
);
12331 drm_atomic_helper_commit_hw_done(state
);
12333 if (intel_state
->modeset
) {
12334 /* As one of the primary mmio accessors, KMS has a high
12335 * likelihood of triggering bugs in unclaimed access. After we
12336 * finish modesetting, see if an error has been flagged, and if
12337 * so enable debugging for the next modeset - and hope we catch
12340 intel_uncore_arm_unclaimed_mmio_detection(dev_priv
);
12341 intel_display_power_put(dev_priv
, POWER_DOMAIN_MODESET
);
12344 drm_atomic_helper_cleanup_planes(dev
, state
);
12346 drm_atomic_helper_commit_cleanup_done(state
);
12348 drm_atomic_state_put(state
);
12350 intel_atomic_helper_free_state(dev_priv
);
12353 static void intel_atomic_commit_work(struct work_struct
*work
)
12355 struct drm_atomic_state
*state
=
12356 container_of(work
, struct drm_atomic_state
, commit_work
);
12358 intel_atomic_commit_tail(state
);
12361 static int __i915_sw_fence_call
12362 intel_atomic_commit_ready(struct i915_sw_fence
*fence
,
12363 enum i915_sw_fence_notify notify
)
12365 struct intel_atomic_state
*state
=
12366 container_of(fence
, struct intel_atomic_state
, commit_ready
);
12369 case FENCE_COMPLETE
:
12370 /* we do blocking waits in the worker, nothing to do here */
12374 struct intel_atomic_helper
*helper
=
12375 &to_i915(state
->base
.dev
)->atomic_helper
;
12377 if (llist_add(&state
->freed
, &helper
->free_list
))
12378 schedule_work(&helper
->free_work
);
12383 return NOTIFY_DONE
;
12386 static void intel_atomic_track_fbs(struct drm_atomic_state
*state
)
12388 struct drm_plane_state
*old_plane_state
, *new_plane_state
;
12389 struct drm_plane
*plane
;
12392 for_each_oldnew_plane_in_state(state
, plane
, old_plane_state
, new_plane_state
, i
)
12393 i915_gem_track_fb(intel_fb_obj(old_plane_state
->fb
),
12394 intel_fb_obj(new_plane_state
->fb
),
12395 to_intel_plane(plane
)->frontbuffer_bit
);
12399 * intel_atomic_commit - commit validated state object
12401 * @state: the top-level driver state object
12402 * @nonblock: nonblocking commit
12404 * This function commits a top-level state object that has been validated
12405 * with drm_atomic_helper_check().
12408 * Zero for success or -errno.
12410 static int intel_atomic_commit(struct drm_device
*dev
,
12411 struct drm_atomic_state
*state
,
12414 struct intel_atomic_state
*intel_state
= to_intel_atomic_state(state
);
12415 struct drm_i915_private
*dev_priv
= to_i915(dev
);
12418 drm_atomic_state_get(state
);
12419 i915_sw_fence_init(&intel_state
->commit_ready
,
12420 intel_atomic_commit_ready
);
12423 * The intel_legacy_cursor_update() fast path takes care
12424 * of avoiding the vblank waits for simple cursor
12425 * movement and flips. For cursor on/off and size changes,
12426 * we want to perform the vblank waits so that watermark
12427 * updates happen during the correct frames. Gen9+ have
12428 * double buffered watermarks and so shouldn't need this.
12430 * Unset state->legacy_cursor_update before the call to
12431 * drm_atomic_helper_setup_commit() because otherwise
12432 * drm_atomic_helper_wait_for_flip_done() is a noop and
12433 * we get FIFO underruns because we didn't wait
12436 * FIXME doing watermarks and fb cleanup from a vblank worker
12437 * (assuming we had any) would solve these problems.
12439 if (INTEL_GEN(dev_priv
) < 9 && state
->legacy_cursor_update
) {
12440 struct intel_crtc_state
*new_crtc_state
;
12441 struct intel_crtc
*crtc
;
12444 for_each_new_intel_crtc_in_state(intel_state
, crtc
, new_crtc_state
, i
)
12445 if (new_crtc_state
->wm
.need_postvbl_update
||
12446 new_crtc_state
->update_wm_post
)
12447 state
->legacy_cursor_update
= false;
12450 ret
= intel_atomic_prepare_commit(dev
, state
);
12452 DRM_DEBUG_ATOMIC("Preparing state failed with %i\n", ret
);
12453 i915_sw_fence_commit(&intel_state
->commit_ready
);
12457 ret
= drm_atomic_helper_setup_commit(state
, nonblock
);
12459 ret
= drm_atomic_helper_swap_state(state
, true);
12462 i915_sw_fence_commit(&intel_state
->commit_ready
);
12464 drm_atomic_helper_cleanup_planes(dev
, state
);
12467 dev_priv
->wm
.distrust_bios_wm
= false;
12468 intel_shared_dpll_swap_state(state
);
12469 intel_atomic_track_fbs(state
);
12471 if (intel_state
->modeset
) {
12472 memcpy(dev_priv
->min_cdclk
, intel_state
->min_cdclk
,
12473 sizeof(intel_state
->min_cdclk
));
12474 memcpy(dev_priv
->min_voltage_level
,
12475 intel_state
->min_voltage_level
,
12476 sizeof(intel_state
->min_voltage_level
));
12477 dev_priv
->active_crtcs
= intel_state
->active_crtcs
;
12478 dev_priv
->cdclk
.logical
= intel_state
->cdclk
.logical
;
12479 dev_priv
->cdclk
.actual
= intel_state
->cdclk
.actual
;
12482 drm_atomic_state_get(state
);
12483 INIT_WORK(&state
->commit_work
, intel_atomic_commit_work
);
12485 i915_sw_fence_commit(&intel_state
->commit_ready
);
12486 if (nonblock
&& intel_state
->modeset
) {
12487 queue_work(dev_priv
->modeset_wq
, &state
->commit_work
);
12488 } else if (nonblock
) {
12489 queue_work(system_unbound_wq
, &state
->commit_work
);
12491 if (intel_state
->modeset
)
12492 flush_workqueue(dev_priv
->modeset_wq
);
12493 intel_atomic_commit_tail(state
);
12499 static const struct drm_crtc_funcs intel_crtc_funcs
= {
12500 .gamma_set
= drm_atomic_helper_legacy_gamma_set
,
12501 .set_config
= drm_atomic_helper_set_config
,
12502 .destroy
= intel_crtc_destroy
,
12503 .page_flip
= drm_atomic_helper_page_flip
,
12504 .atomic_duplicate_state
= intel_crtc_duplicate_state
,
12505 .atomic_destroy_state
= intel_crtc_destroy_state
,
12506 .set_crc_source
= intel_crtc_set_crc_source
,
12509 struct wait_rps_boost
{
12510 struct wait_queue_entry wait
;
12512 struct drm_crtc
*crtc
;
12513 struct drm_i915_gem_request
*request
;
12516 static int do_rps_boost(struct wait_queue_entry
*_wait
,
12517 unsigned mode
, int sync
, void *key
)
12519 struct wait_rps_boost
*wait
= container_of(_wait
, typeof(*wait
), wait
);
12520 struct drm_i915_gem_request
*rq
= wait
->request
;
12522 gen6_rps_boost(rq
, NULL
);
12523 i915_gem_request_put(rq
);
12525 drm_crtc_vblank_put(wait
->crtc
);
12527 list_del(&wait
->wait
.entry
);
12532 static void add_rps_boost_after_vblank(struct drm_crtc
*crtc
,
12533 struct dma_fence
*fence
)
12535 struct wait_rps_boost
*wait
;
12537 if (!dma_fence_is_i915(fence
))
12540 if (INTEL_GEN(to_i915(crtc
->dev
)) < 6)
12543 if (drm_crtc_vblank_get(crtc
))
12546 wait
= kmalloc(sizeof(*wait
), GFP_KERNEL
);
12548 drm_crtc_vblank_put(crtc
);
12552 wait
->request
= to_request(dma_fence_get(fence
));
12555 wait
->wait
.func
= do_rps_boost
;
12556 wait
->wait
.flags
= 0;
12558 add_wait_queue(drm_crtc_vblank_waitqueue(crtc
), &wait
->wait
);
12562 * intel_prepare_plane_fb - Prepare fb for usage on plane
12563 * @plane: drm plane to prepare for
12564 * @fb: framebuffer to prepare for presentation
12566 * Prepares a framebuffer for usage on a display plane. Generally this
12567 * involves pinning the underlying object and updating the frontbuffer tracking
12568 * bits. Some older platforms need special physical address handling for
12571 * Must be called with struct_mutex held.
12573 * Returns 0 on success, negative error code on failure.
12576 intel_prepare_plane_fb(struct drm_plane
*plane
,
12577 struct drm_plane_state
*new_state
)
12579 struct intel_atomic_state
*intel_state
=
12580 to_intel_atomic_state(new_state
->state
);
12581 struct drm_i915_private
*dev_priv
= to_i915(plane
->dev
);
12582 struct drm_framebuffer
*fb
= new_state
->fb
;
12583 struct drm_i915_gem_object
*obj
= intel_fb_obj(fb
);
12584 struct drm_i915_gem_object
*old_obj
= intel_fb_obj(plane
->state
->fb
);
12588 struct drm_crtc_state
*crtc_state
=
12589 drm_atomic_get_existing_crtc_state(new_state
->state
,
12590 plane
->state
->crtc
);
12592 /* Big Hammer, we also need to ensure that any pending
12593 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
12594 * current scanout is retired before unpinning the old
12595 * framebuffer. Note that we rely on userspace rendering
12596 * into the buffer attached to the pipe they are waiting
12597 * on. If not, userspace generates a GPU hang with IPEHR
12598 * point to the MI_WAIT_FOR_EVENT.
12600 * This should only fail upon a hung GPU, in which case we
12601 * can safely continue.
12603 if (needs_modeset(crtc_state
)) {
12604 ret
= i915_sw_fence_await_reservation(&intel_state
->commit_ready
,
12605 old_obj
->resv
, NULL
,
12613 if (new_state
->fence
) { /* explicit fencing */
12614 ret
= i915_sw_fence_await_dma_fence(&intel_state
->commit_ready
,
12616 I915_FENCE_TIMEOUT
,
12625 ret
= i915_gem_object_pin_pages(obj
);
12629 ret
= mutex_lock_interruptible(&dev_priv
->drm
.struct_mutex
);
12631 i915_gem_object_unpin_pages(obj
);
12635 if (plane
->type
== DRM_PLANE_TYPE_CURSOR
&&
12636 INTEL_INFO(dev_priv
)->cursor_needs_physical
) {
12637 const int align
= intel_cursor_alignment(dev_priv
);
12639 ret
= i915_gem_object_attach_phys(obj
, align
);
12641 struct i915_vma
*vma
;
12643 vma
= intel_pin_and_fence_fb_obj(fb
, new_state
->rotation
);
12645 to_intel_plane_state(new_state
)->vma
= vma
;
12647 ret
= PTR_ERR(vma
);
12650 i915_gem_object_wait_priority(obj
, 0, I915_PRIORITY_DISPLAY
);
12652 mutex_unlock(&dev_priv
->drm
.struct_mutex
);
12653 i915_gem_object_unpin_pages(obj
);
12657 if (!new_state
->fence
) { /* implicit fencing */
12658 struct dma_fence
*fence
;
12660 ret
= i915_sw_fence_await_reservation(&intel_state
->commit_ready
,
12662 false, I915_FENCE_TIMEOUT
,
12667 fence
= reservation_object_get_excl_rcu(obj
->resv
);
12669 add_rps_boost_after_vblank(new_state
->crtc
, fence
);
12670 dma_fence_put(fence
);
12673 add_rps_boost_after_vblank(new_state
->crtc
, new_state
->fence
);
12680 * intel_cleanup_plane_fb - Cleans up an fb after plane use
12681 * @plane: drm plane to clean up for
12682 * @fb: old framebuffer that was on plane
12684 * Cleans up a framebuffer that has just been removed from a plane.
12686 * Must be called with struct_mutex held.
12689 intel_cleanup_plane_fb(struct drm_plane
*plane
,
12690 struct drm_plane_state
*old_state
)
12692 struct i915_vma
*vma
;
12694 /* Should only be called after a successful intel_prepare_plane_fb()! */
12695 vma
= fetch_and_zero(&to_intel_plane_state(old_state
)->vma
);
12697 mutex_lock(&plane
->dev
->struct_mutex
);
12698 intel_unpin_fb_vma(vma
);
12699 mutex_unlock(&plane
->dev
->struct_mutex
);
12704 skl_max_scale(struct intel_crtc
*intel_crtc
, struct intel_crtc_state
*crtc_state
)
12706 struct drm_i915_private
*dev_priv
;
12708 int crtc_clock
, max_dotclk
;
12710 if (!intel_crtc
|| !crtc_state
->base
.enable
)
12711 return DRM_PLANE_HELPER_NO_SCALING
;
12713 dev_priv
= to_i915(intel_crtc
->base
.dev
);
12715 crtc_clock
= crtc_state
->base
.adjusted_mode
.crtc_clock
;
12716 max_dotclk
= to_intel_atomic_state(crtc_state
->base
.state
)->cdclk
.logical
.cdclk
;
12718 if (IS_GEMINILAKE(dev_priv
) || INTEL_GEN(dev_priv
) >= 10)
12721 if (WARN_ON_ONCE(!crtc_clock
|| max_dotclk
< crtc_clock
))
12722 return DRM_PLANE_HELPER_NO_SCALING
;
12725 * skl max scale is lower of:
12726 * close to 3 but not 3, -1 is for that purpose
12730 max_scale
= min((1 << 16) * 3 - 1,
12731 (1 << 8) * ((max_dotclk
<< 8) / crtc_clock
));
12737 intel_check_primary_plane(struct intel_plane
*plane
,
12738 struct intel_crtc_state
*crtc_state
,
12739 struct intel_plane_state
*state
)
12741 struct drm_i915_private
*dev_priv
= to_i915(plane
->base
.dev
);
12742 struct drm_crtc
*crtc
= state
->base
.crtc
;
12743 int min_scale
= DRM_PLANE_HELPER_NO_SCALING
;
12744 int max_scale
= DRM_PLANE_HELPER_NO_SCALING
;
12745 bool can_position
= false;
12748 if (INTEL_GEN(dev_priv
) >= 9) {
12749 /* use scaler when colorkey is not required */
12750 if (state
->ckey
.flags
== I915_SET_COLORKEY_NONE
) {
12752 max_scale
= skl_max_scale(to_intel_crtc(crtc
), crtc_state
);
12754 can_position
= true;
12757 ret
= drm_atomic_helper_check_plane_state(&state
->base
,
12760 min_scale
, max_scale
,
12761 can_position
, true);
12765 if (!state
->base
.fb
)
12768 if (INTEL_GEN(dev_priv
) >= 9) {
12769 ret
= skl_check_plane_surface(state
);
12773 state
->ctl
= skl_plane_ctl(crtc_state
, state
);
12775 ret
= i9xx_check_plane_surface(state
);
12779 state
->ctl
= i9xx_plane_ctl(crtc_state
, state
);
12782 if (INTEL_GEN(dev_priv
) >= 10 || IS_GEMINILAKE(dev_priv
))
12783 state
->color_ctl
= glk_plane_color_ctl(crtc_state
, state
);
12788 static void intel_begin_crtc_commit(struct drm_crtc
*crtc
,
12789 struct drm_crtc_state
*old_crtc_state
)
12791 struct drm_device
*dev
= crtc
->dev
;
12792 struct drm_i915_private
*dev_priv
= to_i915(dev
);
12793 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
12794 struct intel_crtc_state
*old_intel_cstate
=
12795 to_intel_crtc_state(old_crtc_state
);
12796 struct intel_atomic_state
*old_intel_state
=
12797 to_intel_atomic_state(old_crtc_state
->state
);
12798 struct intel_crtc_state
*intel_cstate
=
12799 intel_atomic_get_new_crtc_state(old_intel_state
, intel_crtc
);
12800 bool modeset
= needs_modeset(&intel_cstate
->base
);
12803 (intel_cstate
->base
.color_mgmt_changed
||
12804 intel_cstate
->update_pipe
)) {
12805 intel_color_set_csc(&intel_cstate
->base
);
12806 intel_color_load_luts(&intel_cstate
->base
);
12809 /* Perform vblank evasion around commit operation */
12810 intel_pipe_update_start(intel_cstate
);
12815 if (intel_cstate
->update_pipe
)
12816 intel_update_pipe_config(old_intel_cstate
, intel_cstate
);
12817 else if (INTEL_GEN(dev_priv
) >= 9)
12818 skl_detach_scalers(intel_crtc
);
12821 if (dev_priv
->display
.atomic_update_watermarks
)
12822 dev_priv
->display
.atomic_update_watermarks(old_intel_state
,
12826 static void intel_finish_crtc_commit(struct drm_crtc
*crtc
,
12827 struct drm_crtc_state
*old_crtc_state
)
12829 struct drm_i915_private
*dev_priv
= to_i915(crtc
->dev
);
12830 struct intel_crtc
*intel_crtc
= to_intel_crtc(crtc
);
12831 struct intel_atomic_state
*old_intel_state
=
12832 to_intel_atomic_state(old_crtc_state
->state
);
12833 struct intel_crtc_state
*new_crtc_state
=
12834 intel_atomic_get_new_crtc_state(old_intel_state
, intel_crtc
);
12836 intel_pipe_update_end(new_crtc_state
);
12838 if (new_crtc_state
->update_pipe
&&
12839 !needs_modeset(&new_crtc_state
->base
) &&
12840 old_crtc_state
->mode
.private_flags
& I915_MODE_FLAG_INHERITED
) {
12841 if (!IS_GEN2(dev_priv
))
12842 intel_set_cpu_fifo_underrun_reporting(dev_priv
, intel_crtc
->pipe
, true);
12844 if (new_crtc_state
->has_pch_encoder
) {
12845 enum pipe pch_transcoder
=
12846 intel_crtc_pch_transcoder(intel_crtc
);
12848 intel_set_pch_fifo_underrun_reporting(dev_priv
, pch_transcoder
, true);
12854 * intel_plane_destroy - destroy a plane
12855 * @plane: plane to destroy
12857 * Common destruction function for all types of planes (primary, cursor,
12860 void intel_plane_destroy(struct drm_plane
*plane
)
12862 drm_plane_cleanup(plane
);
12863 kfree(to_intel_plane(plane
));
12866 static bool i8xx_mod_supported(uint32_t format
, uint64_t modifier
)
12869 case DRM_FORMAT_C8
:
12870 case DRM_FORMAT_RGB565
:
12871 case DRM_FORMAT_XRGB1555
:
12872 case DRM_FORMAT_XRGB8888
:
12873 return modifier
== DRM_FORMAT_MOD_LINEAR
||
12874 modifier
== I915_FORMAT_MOD_X_TILED
;
12880 static bool i965_mod_supported(uint32_t format
, uint64_t modifier
)
12883 case DRM_FORMAT_C8
:
12884 case DRM_FORMAT_RGB565
:
12885 case DRM_FORMAT_XRGB8888
:
12886 case DRM_FORMAT_XBGR8888
:
12887 case DRM_FORMAT_XRGB2101010
:
12888 case DRM_FORMAT_XBGR2101010
:
12889 return modifier
== DRM_FORMAT_MOD_LINEAR
||
12890 modifier
== I915_FORMAT_MOD_X_TILED
;
12896 static bool skl_mod_supported(uint32_t format
, uint64_t modifier
)
12899 case DRM_FORMAT_XRGB8888
:
12900 case DRM_FORMAT_XBGR8888
:
12901 case DRM_FORMAT_ARGB8888
:
12902 case DRM_FORMAT_ABGR8888
:
12903 if (modifier
== I915_FORMAT_MOD_Yf_TILED_CCS
||
12904 modifier
== I915_FORMAT_MOD_Y_TILED_CCS
)
12907 case DRM_FORMAT_RGB565
:
12908 case DRM_FORMAT_XRGB2101010
:
12909 case DRM_FORMAT_XBGR2101010
:
12910 case DRM_FORMAT_YUYV
:
12911 case DRM_FORMAT_YVYU
:
12912 case DRM_FORMAT_UYVY
:
12913 case DRM_FORMAT_VYUY
:
12914 if (modifier
== I915_FORMAT_MOD_Yf_TILED
)
12917 case DRM_FORMAT_C8
:
12918 if (modifier
== DRM_FORMAT_MOD_LINEAR
||
12919 modifier
== I915_FORMAT_MOD_X_TILED
||
12920 modifier
== I915_FORMAT_MOD_Y_TILED
)
12928 static bool intel_primary_plane_format_mod_supported(struct drm_plane
*plane
,
12932 struct drm_i915_private
*dev_priv
= to_i915(plane
->dev
);
12934 if (WARN_ON(modifier
== DRM_FORMAT_MOD_INVALID
))
12937 if ((modifier
>> 56) != DRM_FORMAT_MOD_VENDOR_INTEL
&&
12938 modifier
!= DRM_FORMAT_MOD_LINEAR
)
12941 if (INTEL_GEN(dev_priv
) >= 9)
12942 return skl_mod_supported(format
, modifier
);
12943 else if (INTEL_GEN(dev_priv
) >= 4)
12944 return i965_mod_supported(format
, modifier
);
12946 return i8xx_mod_supported(format
, modifier
);
12951 static bool intel_cursor_plane_format_mod_supported(struct drm_plane
*plane
,
12955 if (WARN_ON(modifier
== DRM_FORMAT_MOD_INVALID
))
12958 return modifier
== DRM_FORMAT_MOD_LINEAR
&& format
== DRM_FORMAT_ARGB8888
;
12961 static struct drm_plane_funcs intel_plane_funcs
= {
12962 .update_plane
= drm_atomic_helper_update_plane
,
12963 .disable_plane
= drm_atomic_helper_disable_plane
,
12964 .destroy
= intel_plane_destroy
,
12965 .atomic_get_property
= intel_plane_atomic_get_property
,
12966 .atomic_set_property
= intel_plane_atomic_set_property
,
12967 .atomic_duplicate_state
= intel_plane_duplicate_state
,
12968 .atomic_destroy_state
= intel_plane_destroy_state
,
12969 .format_mod_supported
= intel_primary_plane_format_mod_supported
,
12973 intel_legacy_cursor_update(struct drm_plane
*plane
,
12974 struct drm_crtc
*crtc
,
12975 struct drm_framebuffer
*fb
,
12976 int crtc_x
, int crtc_y
,
12977 unsigned int crtc_w
, unsigned int crtc_h
,
12978 uint32_t src_x
, uint32_t src_y
,
12979 uint32_t src_w
, uint32_t src_h
,
12980 struct drm_modeset_acquire_ctx
*ctx
)
12982 struct drm_i915_private
*dev_priv
= to_i915(crtc
->dev
);
12984 struct drm_plane_state
*old_plane_state
, *new_plane_state
;
12985 struct intel_plane
*intel_plane
= to_intel_plane(plane
);
12986 struct drm_framebuffer
*old_fb
;
12987 struct drm_crtc_state
*crtc_state
= crtc
->state
;
12988 struct i915_vma
*old_vma
, *vma
;
12991 * When crtc is inactive or there is a modeset pending,
12992 * wait for it to complete in the slowpath
12994 if (!crtc_state
->active
|| needs_modeset(crtc_state
) ||
12995 to_intel_crtc_state(crtc_state
)->update_pipe
)
12998 old_plane_state
= plane
->state
;
13000 * Don't do an async update if there is an outstanding commit modifying
13001 * the plane. This prevents our async update's changes from getting
13002 * overridden by a previous synchronous update's state.
13004 if (old_plane_state
->commit
&&
13005 !try_wait_for_completion(&old_plane_state
->commit
->hw_done
))
13009 * If any parameters change that may affect watermarks,
13010 * take the slowpath. Only changing fb or position should be
13013 if (old_plane_state
->crtc
!= crtc
||
13014 old_plane_state
->src_w
!= src_w
||
13015 old_plane_state
->src_h
!= src_h
||
13016 old_plane_state
->crtc_w
!= crtc_w
||
13017 old_plane_state
->crtc_h
!= crtc_h
||
13018 !old_plane_state
->fb
!= !fb
)
13021 new_plane_state
= intel_plane_duplicate_state(plane
);
13022 if (!new_plane_state
)
13025 drm_atomic_set_fb_for_plane(new_plane_state
, fb
);
13027 new_plane_state
->src_x
= src_x
;
13028 new_plane_state
->src_y
= src_y
;
13029 new_plane_state
->src_w
= src_w
;
13030 new_plane_state
->src_h
= src_h
;
13031 new_plane_state
->crtc_x
= crtc_x
;
13032 new_plane_state
->crtc_y
= crtc_y
;
13033 new_plane_state
->crtc_w
= crtc_w
;
13034 new_plane_state
->crtc_h
= crtc_h
;
13036 ret
= intel_plane_atomic_check_with_state(to_intel_crtc_state(crtc
->state
),
13037 to_intel_crtc_state(crtc
->state
), /* FIXME need a new crtc state? */
13038 to_intel_plane_state(plane
->state
),
13039 to_intel_plane_state(new_plane_state
));
13043 ret
= mutex_lock_interruptible(&dev_priv
->drm
.struct_mutex
);
13047 if (INTEL_INFO(dev_priv
)->cursor_needs_physical
) {
13048 int align
= intel_cursor_alignment(dev_priv
);
13050 ret
= i915_gem_object_attach_phys(intel_fb_obj(fb
), align
);
13052 DRM_DEBUG_KMS("failed to attach phys object\n");
13056 vma
= intel_pin_and_fence_fb_obj(fb
, new_plane_state
->rotation
);
13058 DRM_DEBUG_KMS("failed to pin object\n");
13060 ret
= PTR_ERR(vma
);
13064 to_intel_plane_state(new_plane_state
)->vma
= vma
;
13067 old_fb
= old_plane_state
->fb
;
13069 i915_gem_track_fb(intel_fb_obj(old_fb
), intel_fb_obj(fb
),
13070 intel_plane
->frontbuffer_bit
);
13072 /* Swap plane state */
13073 plane
->state
= new_plane_state
;
13075 if (plane
->state
->visible
) {
13076 trace_intel_update_plane(plane
, to_intel_crtc(crtc
));
13077 intel_plane
->update_plane(intel_plane
,
13078 to_intel_crtc_state(crtc
->state
),
13079 to_intel_plane_state(plane
->state
));
13081 trace_intel_disable_plane(plane
, to_intel_crtc(crtc
));
13082 intel_plane
->disable_plane(intel_plane
, to_intel_crtc(crtc
));
13085 old_vma
= fetch_and_zero(&to_intel_plane_state(old_plane_state
)->vma
);
13087 intel_unpin_fb_vma(old_vma
);
13090 mutex_unlock(&dev_priv
->drm
.struct_mutex
);
13093 intel_plane_destroy_state(plane
, new_plane_state
);
13095 intel_plane_destroy_state(plane
, old_plane_state
);
13099 return drm_atomic_helper_update_plane(plane
, crtc
, fb
,
13100 crtc_x
, crtc_y
, crtc_w
, crtc_h
,
13101 src_x
, src_y
, src_w
, src_h
, ctx
);
13104 static const struct drm_plane_funcs intel_cursor_plane_funcs
= {
13105 .update_plane
= intel_legacy_cursor_update
,
13106 .disable_plane
= drm_atomic_helper_disable_plane
,
13107 .destroy
= intel_plane_destroy
,
13108 .atomic_get_property
= intel_plane_atomic_get_property
,
13109 .atomic_set_property
= intel_plane_atomic_set_property
,
13110 .atomic_duplicate_state
= intel_plane_duplicate_state
,
13111 .atomic_destroy_state
= intel_plane_destroy_state
,
13112 .format_mod_supported
= intel_cursor_plane_format_mod_supported
,
13115 static struct intel_plane
*
13116 intel_primary_plane_create(struct drm_i915_private
*dev_priv
, enum pipe pipe
)
13118 struct intel_plane
*primary
= NULL
;
13119 struct intel_plane_state
*state
= NULL
;
13120 const uint32_t *intel_primary_formats
;
13121 unsigned int supported_rotations
;
13122 unsigned int num_formats
;
13123 const uint64_t *modifiers
;
13126 primary
= kzalloc(sizeof(*primary
), GFP_KERNEL
);
13132 state
= intel_create_plane_state(&primary
->base
);
13138 primary
->base
.state
= &state
->base
;
13140 primary
->can_scale
= false;
13141 primary
->max_downscale
= 1;
13142 if (INTEL_GEN(dev_priv
) >= 9) {
13143 primary
->can_scale
= true;
13144 state
->scaler_id
= -1;
13146 primary
->pipe
= pipe
;
13148 * On gen2/3 only plane A can do FBC, but the panel fitter and LVDS
13149 * port is hooked to pipe B. Hence we want plane A feeding pipe B.
13151 if (HAS_FBC(dev_priv
) && INTEL_GEN(dev_priv
) < 4)
13152 primary
->i9xx_plane
= (enum i9xx_plane_id
) !pipe
;
13154 primary
->i9xx_plane
= (enum i9xx_plane_id
) pipe
;
13155 primary
->id
= PLANE_PRIMARY
;
13156 primary
->frontbuffer_bit
= INTEL_FRONTBUFFER_PRIMARY(pipe
);
13157 primary
->check_plane
= intel_check_primary_plane
;
13159 if (INTEL_GEN(dev_priv
) >= 10) {
13160 intel_primary_formats
= skl_primary_formats
;
13161 num_formats
= ARRAY_SIZE(skl_primary_formats
);
13162 modifiers
= skl_format_modifiers_ccs
;
13164 primary
->update_plane
= skl_update_plane
;
13165 primary
->disable_plane
= skl_disable_plane
;
13166 primary
->get_hw_state
= skl_plane_get_hw_state
;
13167 } else if (INTEL_GEN(dev_priv
) >= 9) {
13168 intel_primary_formats
= skl_primary_formats
;
13169 num_formats
= ARRAY_SIZE(skl_primary_formats
);
13171 modifiers
= skl_format_modifiers_ccs
;
13173 modifiers
= skl_format_modifiers_noccs
;
13175 primary
->update_plane
= skl_update_plane
;
13176 primary
->disable_plane
= skl_disable_plane
;
13177 primary
->get_hw_state
= skl_plane_get_hw_state
;
13178 } else if (INTEL_GEN(dev_priv
) >= 4) {
13179 intel_primary_formats
= i965_primary_formats
;
13180 num_formats
= ARRAY_SIZE(i965_primary_formats
);
13181 modifiers
= i9xx_format_modifiers
;
13183 primary
->update_plane
= i9xx_update_plane
;
13184 primary
->disable_plane
= i9xx_disable_plane
;
13185 primary
->get_hw_state
= i9xx_plane_get_hw_state
;
13187 intel_primary_formats
= i8xx_primary_formats
;
13188 num_formats
= ARRAY_SIZE(i8xx_primary_formats
);
13189 modifiers
= i9xx_format_modifiers
;
13191 primary
->update_plane
= i9xx_update_plane
;
13192 primary
->disable_plane
= i9xx_disable_plane
;
13193 primary
->get_hw_state
= i9xx_plane_get_hw_state
;
13196 if (INTEL_GEN(dev_priv
) >= 9)
13197 ret
= drm_universal_plane_init(&dev_priv
->drm
, &primary
->base
,
13198 0, &intel_plane_funcs
,
13199 intel_primary_formats
, num_formats
,
13201 DRM_PLANE_TYPE_PRIMARY
,
13202 "plane 1%c", pipe_name(pipe
));
13203 else if (INTEL_GEN(dev_priv
) >= 5 || IS_G4X(dev_priv
))
13204 ret
= drm_universal_plane_init(&dev_priv
->drm
, &primary
->base
,
13205 0, &intel_plane_funcs
,
13206 intel_primary_formats
, num_formats
,
13208 DRM_PLANE_TYPE_PRIMARY
,
13209 "primary %c", pipe_name(pipe
));
13211 ret
= drm_universal_plane_init(&dev_priv
->drm
, &primary
->base
,
13212 0, &intel_plane_funcs
,
13213 intel_primary_formats
, num_formats
,
13215 DRM_PLANE_TYPE_PRIMARY
,
13217 plane_name(primary
->i9xx_plane
));
13221 if (INTEL_GEN(dev_priv
) >= 10) {
13222 supported_rotations
=
13223 DRM_MODE_ROTATE_0
| DRM_MODE_ROTATE_90
|
13224 DRM_MODE_ROTATE_180
| DRM_MODE_ROTATE_270
|
13225 DRM_MODE_REFLECT_X
;
13226 } else if (INTEL_GEN(dev_priv
) >= 9) {
13227 supported_rotations
=
13228 DRM_MODE_ROTATE_0
| DRM_MODE_ROTATE_90
|
13229 DRM_MODE_ROTATE_180
| DRM_MODE_ROTATE_270
;
13230 } else if (IS_CHERRYVIEW(dev_priv
) && pipe
== PIPE_B
) {
13231 supported_rotations
=
13232 DRM_MODE_ROTATE_0
| DRM_MODE_ROTATE_180
|
13233 DRM_MODE_REFLECT_X
;
13234 } else if (INTEL_GEN(dev_priv
) >= 4) {
13235 supported_rotations
=
13236 DRM_MODE_ROTATE_0
| DRM_MODE_ROTATE_180
;
13238 supported_rotations
= DRM_MODE_ROTATE_0
;
13241 if (INTEL_GEN(dev_priv
) >= 4)
13242 drm_plane_create_rotation_property(&primary
->base
,
13244 supported_rotations
);
13246 drm_plane_helper_add(&primary
->base
, &intel_plane_helper_funcs
);
13254 return ERR_PTR(ret
);
13257 static struct intel_plane
*
13258 intel_cursor_plane_create(struct drm_i915_private
*dev_priv
,
13261 struct intel_plane
*cursor
= NULL
;
13262 struct intel_plane_state
*state
= NULL
;
13265 cursor
= kzalloc(sizeof(*cursor
), GFP_KERNEL
);
13271 state
= intel_create_plane_state(&cursor
->base
);
13277 cursor
->base
.state
= &state
->base
;
13279 cursor
->can_scale
= false;
13280 cursor
->max_downscale
= 1;
13281 cursor
->pipe
= pipe
;
13282 cursor
->i9xx_plane
= (enum i9xx_plane_id
) pipe
;
13283 cursor
->id
= PLANE_CURSOR
;
13284 cursor
->frontbuffer_bit
= INTEL_FRONTBUFFER_CURSOR(pipe
);
13286 if (IS_I845G(dev_priv
) || IS_I865G(dev_priv
)) {
13287 cursor
->update_plane
= i845_update_cursor
;
13288 cursor
->disable_plane
= i845_disable_cursor
;
13289 cursor
->get_hw_state
= i845_cursor_get_hw_state
;
13290 cursor
->check_plane
= i845_check_cursor
;
13292 cursor
->update_plane
= i9xx_update_cursor
;
13293 cursor
->disable_plane
= i9xx_disable_cursor
;
13294 cursor
->get_hw_state
= i9xx_cursor_get_hw_state
;
13295 cursor
->check_plane
= i9xx_check_cursor
;
13298 cursor
->cursor
.base
= ~0;
13299 cursor
->cursor
.cntl
= ~0;
13301 if (IS_I845G(dev_priv
) || IS_I865G(dev_priv
) || HAS_CUR_FBC(dev_priv
))
13302 cursor
->cursor
.size
= ~0;
13304 ret
= drm_universal_plane_init(&dev_priv
->drm
, &cursor
->base
,
13305 0, &intel_cursor_plane_funcs
,
13306 intel_cursor_formats
,
13307 ARRAY_SIZE(intel_cursor_formats
),
13308 cursor_format_modifiers
,
13309 DRM_PLANE_TYPE_CURSOR
,
13310 "cursor %c", pipe_name(pipe
));
13314 if (INTEL_GEN(dev_priv
) >= 4)
13315 drm_plane_create_rotation_property(&cursor
->base
,
13317 DRM_MODE_ROTATE_0
|
13318 DRM_MODE_ROTATE_180
);
13320 if (INTEL_GEN(dev_priv
) >= 9)
13321 state
->scaler_id
= -1;
13323 drm_plane_helper_add(&cursor
->base
, &intel_plane_helper_funcs
);
13331 return ERR_PTR(ret
);
13334 static void intel_crtc_init_scalers(struct intel_crtc
*crtc
,
13335 struct intel_crtc_state
*crtc_state
)
13337 struct intel_crtc_scaler_state
*scaler_state
=
13338 &crtc_state
->scaler_state
;
13339 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
13342 crtc
->num_scalers
= dev_priv
->info
.num_scalers
[crtc
->pipe
];
13343 if (!crtc
->num_scalers
)
13346 for (i
= 0; i
< crtc
->num_scalers
; i
++) {
13347 struct intel_scaler
*scaler
= &scaler_state
->scalers
[i
];
13349 scaler
->in_use
= 0;
13350 scaler
->mode
= PS_SCALER_MODE_DYN
;
13353 scaler_state
->scaler_id
= -1;
13356 static int intel_crtc_init(struct drm_i915_private
*dev_priv
, enum pipe pipe
)
13358 struct intel_crtc
*intel_crtc
;
13359 struct intel_crtc_state
*crtc_state
= NULL
;
13360 struct intel_plane
*primary
= NULL
;
13361 struct intel_plane
*cursor
= NULL
;
13364 intel_crtc
= kzalloc(sizeof(*intel_crtc
), GFP_KERNEL
);
13368 crtc_state
= kzalloc(sizeof(*crtc_state
), GFP_KERNEL
);
13373 intel_crtc
->config
= crtc_state
;
13374 intel_crtc
->base
.state
= &crtc_state
->base
;
13375 crtc_state
->base
.crtc
= &intel_crtc
->base
;
13377 primary
= intel_primary_plane_create(dev_priv
, pipe
);
13378 if (IS_ERR(primary
)) {
13379 ret
= PTR_ERR(primary
);
13382 intel_crtc
->plane_ids_mask
|= BIT(primary
->id
);
13384 for_each_sprite(dev_priv
, pipe
, sprite
) {
13385 struct intel_plane
*plane
;
13387 plane
= intel_sprite_plane_create(dev_priv
, pipe
, sprite
);
13388 if (IS_ERR(plane
)) {
13389 ret
= PTR_ERR(plane
);
13392 intel_crtc
->plane_ids_mask
|= BIT(plane
->id
);
13395 cursor
= intel_cursor_plane_create(dev_priv
, pipe
);
13396 if (IS_ERR(cursor
)) {
13397 ret
= PTR_ERR(cursor
);
13400 intel_crtc
->plane_ids_mask
|= BIT(cursor
->id
);
13402 ret
= drm_crtc_init_with_planes(&dev_priv
->drm
, &intel_crtc
->base
,
13403 &primary
->base
, &cursor
->base
,
13405 "pipe %c", pipe_name(pipe
));
13409 intel_crtc
->pipe
= pipe
;
13411 /* initialize shared scalers */
13412 intel_crtc_init_scalers(intel_crtc
, crtc_state
);
13414 BUG_ON(pipe
>= ARRAY_SIZE(dev_priv
->plane_to_crtc_mapping
) ||
13415 dev_priv
->plane_to_crtc_mapping
[primary
->i9xx_plane
] != NULL
);
13416 dev_priv
->plane_to_crtc_mapping
[primary
->i9xx_plane
] = intel_crtc
;
13417 dev_priv
->pipe_to_crtc_mapping
[intel_crtc
->pipe
] = intel_crtc
;
13419 drm_crtc_helper_add(&intel_crtc
->base
, &intel_helper_funcs
);
13421 intel_color_init(&intel_crtc
->base
);
13423 WARN_ON(drm_crtc_index(&intel_crtc
->base
) != intel_crtc
->pipe
);
13429 * drm_mode_config_cleanup() will free up any
13430 * crtcs/planes already initialized.
13438 enum pipe
intel_get_pipe_from_connector(struct intel_connector
*connector
)
13440 struct drm_device
*dev
= connector
->base
.dev
;
13442 WARN_ON(!drm_modeset_is_locked(&dev
->mode_config
.connection_mutex
));
13444 if (!connector
->base
.state
->crtc
)
13445 return INVALID_PIPE
;
13447 return to_intel_crtc(connector
->base
.state
->crtc
)->pipe
;
13450 int intel_get_pipe_from_crtc_id(struct drm_device
*dev
, void *data
,
13451 struct drm_file
*file
)
13453 struct drm_i915_get_pipe_from_crtc_id
*pipe_from_crtc_id
= data
;
13454 struct drm_crtc
*drmmode_crtc
;
13455 struct intel_crtc
*crtc
;
13457 drmmode_crtc
= drm_crtc_find(dev
, file
, pipe_from_crtc_id
->crtc_id
);
13461 crtc
= to_intel_crtc(drmmode_crtc
);
13462 pipe_from_crtc_id
->pipe
= crtc
->pipe
;
13467 static int intel_encoder_clones(struct intel_encoder
*encoder
)
13469 struct drm_device
*dev
= encoder
->base
.dev
;
13470 struct intel_encoder
*source_encoder
;
13471 int index_mask
= 0;
13474 for_each_intel_encoder(dev
, source_encoder
) {
13475 if (encoders_cloneable(encoder
, source_encoder
))
13476 index_mask
|= (1 << entry
);
13484 static bool has_edp_a(struct drm_i915_private
*dev_priv
)
13486 if (!IS_MOBILE(dev_priv
))
13489 if ((I915_READ(DP_A
) & DP_DETECTED
) == 0)
13492 if (IS_GEN5(dev_priv
) && (I915_READ(FUSE_STRAP
) & ILK_eDP_A_DISABLE
))
13498 static bool intel_crt_present(struct drm_i915_private
*dev_priv
)
13500 if (INTEL_GEN(dev_priv
) >= 9)
13503 if (IS_HSW_ULT(dev_priv
) || IS_BDW_ULT(dev_priv
))
13506 if (IS_CHERRYVIEW(dev_priv
))
13509 if (HAS_PCH_LPT_H(dev_priv
) &&
13510 I915_READ(SFUSE_STRAP
) & SFUSE_STRAP_CRT_DISABLED
)
13513 /* DDI E can't be used if DDI A requires 4 lanes */
13514 if (HAS_DDI(dev_priv
) && I915_READ(DDI_BUF_CTL(PORT_A
)) & DDI_A_4_LANES
)
13517 if (!dev_priv
->vbt
.int_crt_support
)
13523 void intel_pps_unlock_regs_wa(struct drm_i915_private
*dev_priv
)
13528 if (HAS_DDI(dev_priv
))
13531 * This w/a is needed at least on CPT/PPT, but to be sure apply it
13532 * everywhere where registers can be write protected.
13534 if (IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
))
13539 for (pps_idx
= 0; pps_idx
< pps_num
; pps_idx
++) {
13540 u32 val
= I915_READ(PP_CONTROL(pps_idx
));
13542 val
= (val
& ~PANEL_UNLOCK_MASK
) | PANEL_UNLOCK_REGS
;
13543 I915_WRITE(PP_CONTROL(pps_idx
), val
);
13547 static void intel_pps_init(struct drm_i915_private
*dev_priv
)
13549 if (HAS_PCH_SPLIT(dev_priv
) || IS_GEN9_LP(dev_priv
))
13550 dev_priv
->pps_mmio_base
= PCH_PPS_BASE
;
13551 else if (IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
))
13552 dev_priv
->pps_mmio_base
= VLV_PPS_BASE
;
13554 dev_priv
->pps_mmio_base
= PPS_BASE
;
13556 intel_pps_unlock_regs_wa(dev_priv
);
13559 static void intel_setup_outputs(struct drm_i915_private
*dev_priv
)
13561 struct intel_encoder
*encoder
;
13562 bool dpd_is_edp
= false;
13564 intel_pps_init(dev_priv
);
13567 * intel_edp_init_connector() depends on this completing first, to
13568 * prevent the registeration of both eDP and LVDS and the incorrect
13569 * sharing of the PPS.
13571 intel_lvds_init(dev_priv
);
13573 if (intel_crt_present(dev_priv
))
13574 intel_crt_init(dev_priv
);
13576 if (IS_GEN9_LP(dev_priv
)) {
13578 * FIXME: Broxton doesn't support port detection via the
13579 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
13580 * detect the ports.
13582 intel_ddi_init(dev_priv
, PORT_A
);
13583 intel_ddi_init(dev_priv
, PORT_B
);
13584 intel_ddi_init(dev_priv
, PORT_C
);
13586 intel_dsi_init(dev_priv
);
13587 } else if (HAS_DDI(dev_priv
)) {
13591 * Haswell uses DDI functions to detect digital outputs.
13592 * On SKL pre-D0 the strap isn't connected, so we assume
13595 found
= I915_READ(DDI_BUF_CTL(PORT_A
)) & DDI_INIT_DISPLAY_DETECTED
;
13596 /* WaIgnoreDDIAStrap: skl */
13597 if (found
|| IS_GEN9_BC(dev_priv
))
13598 intel_ddi_init(dev_priv
, PORT_A
);
13600 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
13602 found
= I915_READ(SFUSE_STRAP
);
13604 if (found
& SFUSE_STRAP_DDIB_DETECTED
)
13605 intel_ddi_init(dev_priv
, PORT_B
);
13606 if (found
& SFUSE_STRAP_DDIC_DETECTED
)
13607 intel_ddi_init(dev_priv
, PORT_C
);
13608 if (found
& SFUSE_STRAP_DDID_DETECTED
)
13609 intel_ddi_init(dev_priv
, PORT_D
);
13611 * On SKL we don't have a way to detect DDI-E so we rely on VBT.
13613 if (IS_GEN9_BC(dev_priv
) &&
13614 (dev_priv
->vbt
.ddi_port_info
[PORT_E
].supports_dp
||
13615 dev_priv
->vbt
.ddi_port_info
[PORT_E
].supports_dvi
||
13616 dev_priv
->vbt
.ddi_port_info
[PORT_E
].supports_hdmi
))
13617 intel_ddi_init(dev_priv
, PORT_E
);
13619 } else if (HAS_PCH_SPLIT(dev_priv
)) {
13621 dpd_is_edp
= intel_dp_is_port_edp(dev_priv
, PORT_D
);
13623 if (has_edp_a(dev_priv
))
13624 intel_dp_init(dev_priv
, DP_A
, PORT_A
);
13626 if (I915_READ(PCH_HDMIB
) & SDVO_DETECTED
) {
13627 /* PCH SDVOB multiplex with HDMIB */
13628 found
= intel_sdvo_init(dev_priv
, PCH_SDVOB
, PORT_B
);
13630 intel_hdmi_init(dev_priv
, PCH_HDMIB
, PORT_B
);
13631 if (!found
&& (I915_READ(PCH_DP_B
) & DP_DETECTED
))
13632 intel_dp_init(dev_priv
, PCH_DP_B
, PORT_B
);
13635 if (I915_READ(PCH_HDMIC
) & SDVO_DETECTED
)
13636 intel_hdmi_init(dev_priv
, PCH_HDMIC
, PORT_C
);
13638 if (!dpd_is_edp
&& I915_READ(PCH_HDMID
) & SDVO_DETECTED
)
13639 intel_hdmi_init(dev_priv
, PCH_HDMID
, PORT_D
);
13641 if (I915_READ(PCH_DP_C
) & DP_DETECTED
)
13642 intel_dp_init(dev_priv
, PCH_DP_C
, PORT_C
);
13644 if (I915_READ(PCH_DP_D
) & DP_DETECTED
)
13645 intel_dp_init(dev_priv
, PCH_DP_D
, PORT_D
);
13646 } else if (IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
)) {
13647 bool has_edp
, has_port
;
13650 * The DP_DETECTED bit is the latched state of the DDC
13651 * SDA pin at boot. However since eDP doesn't require DDC
13652 * (no way to plug in a DP->HDMI dongle) the DDC pins for
13653 * eDP ports may have been muxed to an alternate function.
13654 * Thus we can't rely on the DP_DETECTED bit alone to detect
13655 * eDP ports. Consult the VBT as well as DP_DETECTED to
13656 * detect eDP ports.
13658 * Sadly the straps seem to be missing sometimes even for HDMI
13659 * ports (eg. on Voyo V3 - CHT x7-Z8700), so check both strap
13660 * and VBT for the presence of the port. Additionally we can't
13661 * trust the port type the VBT declares as we've seen at least
13662 * HDMI ports that the VBT claim are DP or eDP.
13664 has_edp
= intel_dp_is_port_edp(dev_priv
, PORT_B
);
13665 has_port
= intel_bios_is_port_present(dev_priv
, PORT_B
);
13666 if (I915_READ(VLV_DP_B
) & DP_DETECTED
|| has_port
)
13667 has_edp
&= intel_dp_init(dev_priv
, VLV_DP_B
, PORT_B
);
13668 if ((I915_READ(VLV_HDMIB
) & SDVO_DETECTED
|| has_port
) && !has_edp
)
13669 intel_hdmi_init(dev_priv
, VLV_HDMIB
, PORT_B
);
13671 has_edp
= intel_dp_is_port_edp(dev_priv
, PORT_C
);
13672 has_port
= intel_bios_is_port_present(dev_priv
, PORT_C
);
13673 if (I915_READ(VLV_DP_C
) & DP_DETECTED
|| has_port
)
13674 has_edp
&= intel_dp_init(dev_priv
, VLV_DP_C
, PORT_C
);
13675 if ((I915_READ(VLV_HDMIC
) & SDVO_DETECTED
|| has_port
) && !has_edp
)
13676 intel_hdmi_init(dev_priv
, VLV_HDMIC
, PORT_C
);
13678 if (IS_CHERRYVIEW(dev_priv
)) {
13680 * eDP not supported on port D,
13681 * so no need to worry about it
13683 has_port
= intel_bios_is_port_present(dev_priv
, PORT_D
);
13684 if (I915_READ(CHV_DP_D
) & DP_DETECTED
|| has_port
)
13685 intel_dp_init(dev_priv
, CHV_DP_D
, PORT_D
);
13686 if (I915_READ(CHV_HDMID
) & SDVO_DETECTED
|| has_port
)
13687 intel_hdmi_init(dev_priv
, CHV_HDMID
, PORT_D
);
13690 intel_dsi_init(dev_priv
);
13691 } else if (!IS_GEN2(dev_priv
) && !IS_PINEVIEW(dev_priv
)) {
13692 bool found
= false;
13694 if (I915_READ(GEN3_SDVOB
) & SDVO_DETECTED
) {
13695 DRM_DEBUG_KMS("probing SDVOB\n");
13696 found
= intel_sdvo_init(dev_priv
, GEN3_SDVOB
, PORT_B
);
13697 if (!found
&& IS_G4X(dev_priv
)) {
13698 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
13699 intel_hdmi_init(dev_priv
, GEN4_HDMIB
, PORT_B
);
13702 if (!found
&& IS_G4X(dev_priv
))
13703 intel_dp_init(dev_priv
, DP_B
, PORT_B
);
13706 /* Before G4X SDVOC doesn't have its own detect register */
13708 if (I915_READ(GEN3_SDVOB
) & SDVO_DETECTED
) {
13709 DRM_DEBUG_KMS("probing SDVOC\n");
13710 found
= intel_sdvo_init(dev_priv
, GEN3_SDVOC
, PORT_C
);
13713 if (!found
&& (I915_READ(GEN3_SDVOC
) & SDVO_DETECTED
)) {
13715 if (IS_G4X(dev_priv
)) {
13716 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
13717 intel_hdmi_init(dev_priv
, GEN4_HDMIC
, PORT_C
);
13719 if (IS_G4X(dev_priv
))
13720 intel_dp_init(dev_priv
, DP_C
, PORT_C
);
13723 if (IS_G4X(dev_priv
) && (I915_READ(DP_D
) & DP_DETECTED
))
13724 intel_dp_init(dev_priv
, DP_D
, PORT_D
);
13725 } else if (IS_GEN2(dev_priv
))
13726 intel_dvo_init(dev_priv
);
13728 if (SUPPORTS_TV(dev_priv
))
13729 intel_tv_init(dev_priv
);
13731 intel_psr_init(dev_priv
);
13733 for_each_intel_encoder(&dev_priv
->drm
, encoder
) {
13734 encoder
->base
.possible_crtcs
= encoder
->crtc_mask
;
13735 encoder
->base
.possible_clones
=
13736 intel_encoder_clones(encoder
);
13739 intel_init_pch_refclk(dev_priv
);
13741 drm_helper_move_panel_connectors_to_head(&dev_priv
->drm
);
13744 static void intel_user_framebuffer_destroy(struct drm_framebuffer
*fb
)
13746 struct intel_framebuffer
*intel_fb
= to_intel_framebuffer(fb
);
13748 drm_framebuffer_cleanup(fb
);
13750 i915_gem_object_lock(intel_fb
->obj
);
13751 WARN_ON(!intel_fb
->obj
->framebuffer_references
--);
13752 i915_gem_object_unlock(intel_fb
->obj
);
13754 i915_gem_object_put(intel_fb
->obj
);
13759 static int intel_user_framebuffer_create_handle(struct drm_framebuffer
*fb
,
13760 struct drm_file
*file
,
13761 unsigned int *handle
)
13763 struct intel_framebuffer
*intel_fb
= to_intel_framebuffer(fb
);
13764 struct drm_i915_gem_object
*obj
= intel_fb
->obj
;
13766 if (obj
->userptr
.mm
) {
13767 DRM_DEBUG("attempting to use a userptr for a framebuffer, denied\n");
13771 return drm_gem_handle_create(file
, &obj
->base
, handle
);
13774 static int intel_user_framebuffer_dirty(struct drm_framebuffer
*fb
,
13775 struct drm_file
*file
,
13776 unsigned flags
, unsigned color
,
13777 struct drm_clip_rect
*clips
,
13778 unsigned num_clips
)
13780 struct drm_i915_gem_object
*obj
= intel_fb_obj(fb
);
13782 i915_gem_object_flush_if_display(obj
);
13783 intel_fb_obj_flush(obj
, ORIGIN_DIRTYFB
);
13788 static const struct drm_framebuffer_funcs intel_fb_funcs
= {
13789 .destroy
= intel_user_framebuffer_destroy
,
13790 .create_handle
= intel_user_framebuffer_create_handle
,
13791 .dirty
= intel_user_framebuffer_dirty
,
13795 u32
intel_fb_pitch_limit(struct drm_i915_private
*dev_priv
,
13796 uint64_t fb_modifier
, uint32_t pixel_format
)
13798 u32 gen
= INTEL_GEN(dev_priv
);
13801 int cpp
= drm_format_plane_cpp(pixel_format
, 0);
13803 /* "The stride in bytes must not exceed the of the size of 8K
13804 * pixels and 32K bytes."
13806 return min(8192 * cpp
, 32768);
13807 } else if (gen
>= 5 && !HAS_GMCH_DISPLAY(dev_priv
)) {
13809 } else if (gen
>= 4) {
13810 if (fb_modifier
== I915_FORMAT_MOD_X_TILED
)
13814 } else if (gen
>= 3) {
13815 if (fb_modifier
== I915_FORMAT_MOD_X_TILED
)
13820 /* XXX DSPC is limited to 4k tiled */
13825 static int intel_framebuffer_init(struct intel_framebuffer
*intel_fb
,
13826 struct drm_i915_gem_object
*obj
,
13827 struct drm_mode_fb_cmd2
*mode_cmd
)
13829 struct drm_i915_private
*dev_priv
= to_i915(obj
->base
.dev
);
13830 struct drm_framebuffer
*fb
= &intel_fb
->base
;
13831 struct drm_format_name_buf format_name
;
13833 unsigned int tiling
, stride
;
13837 i915_gem_object_lock(obj
);
13838 obj
->framebuffer_references
++;
13839 tiling
= i915_gem_object_get_tiling(obj
);
13840 stride
= i915_gem_object_get_stride(obj
);
13841 i915_gem_object_unlock(obj
);
13843 if (mode_cmd
->flags
& DRM_MODE_FB_MODIFIERS
) {
13845 * If there's a fence, enforce that
13846 * the fb modifier and tiling mode match.
13848 if (tiling
!= I915_TILING_NONE
&&
13849 tiling
!= intel_fb_modifier_to_tiling(mode_cmd
->modifier
[0])) {
13850 DRM_DEBUG_KMS("tiling_mode doesn't match fb modifier\n");
13854 if (tiling
== I915_TILING_X
) {
13855 mode_cmd
->modifier
[0] = I915_FORMAT_MOD_X_TILED
;
13856 } else if (tiling
== I915_TILING_Y
) {
13857 DRM_DEBUG_KMS("No Y tiling for legacy addfb\n");
13862 /* Passed in modifier sanity checking. */
13863 switch (mode_cmd
->modifier
[0]) {
13864 case I915_FORMAT_MOD_Y_TILED_CCS
:
13865 case I915_FORMAT_MOD_Yf_TILED_CCS
:
13866 switch (mode_cmd
->pixel_format
) {
13867 case DRM_FORMAT_XBGR8888
:
13868 case DRM_FORMAT_ABGR8888
:
13869 case DRM_FORMAT_XRGB8888
:
13870 case DRM_FORMAT_ARGB8888
:
13873 DRM_DEBUG_KMS("RC supported only with RGB8888 formats\n");
13877 case I915_FORMAT_MOD_Y_TILED
:
13878 case I915_FORMAT_MOD_Yf_TILED
:
13879 if (INTEL_GEN(dev_priv
) < 9) {
13880 DRM_DEBUG_KMS("Unsupported tiling 0x%llx!\n",
13881 mode_cmd
->modifier
[0]);
13884 case DRM_FORMAT_MOD_LINEAR
:
13885 case I915_FORMAT_MOD_X_TILED
:
13888 DRM_DEBUG_KMS("Unsupported fb modifier 0x%llx!\n",
13889 mode_cmd
->modifier
[0]);
13894 * gen2/3 display engine uses the fence if present,
13895 * so the tiling mode must match the fb modifier exactly.
13897 if (INTEL_INFO(dev_priv
)->gen
< 4 &&
13898 tiling
!= intel_fb_modifier_to_tiling(mode_cmd
->modifier
[0])) {
13899 DRM_DEBUG_KMS("tiling_mode must match fb modifier exactly on gen2/3\n");
13903 pitch_limit
= intel_fb_pitch_limit(dev_priv
, mode_cmd
->modifier
[0],
13904 mode_cmd
->pixel_format
);
13905 if (mode_cmd
->pitches
[0] > pitch_limit
) {
13906 DRM_DEBUG_KMS("%s pitch (%u) must be at most %d\n",
13907 mode_cmd
->modifier
[0] != DRM_FORMAT_MOD_LINEAR
?
13908 "tiled" : "linear",
13909 mode_cmd
->pitches
[0], pitch_limit
);
13914 * If there's a fence, enforce that
13915 * the fb pitch and fence stride match.
13917 if (tiling
!= I915_TILING_NONE
&& mode_cmd
->pitches
[0] != stride
) {
13918 DRM_DEBUG_KMS("pitch (%d) must match tiling stride (%d)\n",
13919 mode_cmd
->pitches
[0], stride
);
13923 /* Reject formats not supported by any plane early. */
13924 switch (mode_cmd
->pixel_format
) {
13925 case DRM_FORMAT_C8
:
13926 case DRM_FORMAT_RGB565
:
13927 case DRM_FORMAT_XRGB8888
:
13928 case DRM_FORMAT_ARGB8888
:
13930 case DRM_FORMAT_XRGB1555
:
13931 if (INTEL_GEN(dev_priv
) > 3) {
13932 DRM_DEBUG_KMS("unsupported pixel format: %s\n",
13933 drm_get_format_name(mode_cmd
->pixel_format
, &format_name
));
13937 case DRM_FORMAT_ABGR8888
:
13938 if (!IS_VALLEYVIEW(dev_priv
) && !IS_CHERRYVIEW(dev_priv
) &&
13939 INTEL_GEN(dev_priv
) < 9) {
13940 DRM_DEBUG_KMS("unsupported pixel format: %s\n",
13941 drm_get_format_name(mode_cmd
->pixel_format
, &format_name
));
13945 case DRM_FORMAT_XBGR8888
:
13946 case DRM_FORMAT_XRGB2101010
:
13947 case DRM_FORMAT_XBGR2101010
:
13948 if (INTEL_GEN(dev_priv
) < 4) {
13949 DRM_DEBUG_KMS("unsupported pixel format: %s\n",
13950 drm_get_format_name(mode_cmd
->pixel_format
, &format_name
));
13954 case DRM_FORMAT_ABGR2101010
:
13955 if (!IS_VALLEYVIEW(dev_priv
) && !IS_CHERRYVIEW(dev_priv
)) {
13956 DRM_DEBUG_KMS("unsupported pixel format: %s\n",
13957 drm_get_format_name(mode_cmd
->pixel_format
, &format_name
));
13961 case DRM_FORMAT_YUYV
:
13962 case DRM_FORMAT_UYVY
:
13963 case DRM_FORMAT_YVYU
:
13964 case DRM_FORMAT_VYUY
:
13965 if (INTEL_GEN(dev_priv
) < 5 && !IS_G4X(dev_priv
)) {
13966 DRM_DEBUG_KMS("unsupported pixel format: %s\n",
13967 drm_get_format_name(mode_cmd
->pixel_format
, &format_name
));
13972 DRM_DEBUG_KMS("unsupported pixel format: %s\n",
13973 drm_get_format_name(mode_cmd
->pixel_format
, &format_name
));
13977 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
13978 if (mode_cmd
->offsets
[0] != 0)
13981 drm_helper_mode_fill_fb_struct(&dev_priv
->drm
, fb
, mode_cmd
);
13983 for (i
= 0; i
< fb
->format
->num_planes
; i
++) {
13984 u32 stride_alignment
;
13986 if (mode_cmd
->handles
[i
] != mode_cmd
->handles
[0]) {
13987 DRM_DEBUG_KMS("bad plane %d handle\n", i
);
13991 stride_alignment
= intel_fb_stride_alignment(fb
, i
);
13994 * Display WA #0531: skl,bxt,kbl,glk
13996 * Render decompression and plane width > 3840
13997 * combined with horizontal panning requires the
13998 * plane stride to be a multiple of 4. We'll just
13999 * require the entire fb to accommodate that to avoid
14000 * potential runtime errors at plane configuration time.
14002 if (IS_GEN9(dev_priv
) && i
== 0 && fb
->width
> 3840 &&
14003 (fb
->modifier
== I915_FORMAT_MOD_Y_TILED_CCS
||
14004 fb
->modifier
== I915_FORMAT_MOD_Yf_TILED_CCS
))
14005 stride_alignment
*= 4;
14007 if (fb
->pitches
[i
] & (stride_alignment
- 1)) {
14008 DRM_DEBUG_KMS("plane %d pitch (%d) must be at least %u byte aligned\n",
14009 i
, fb
->pitches
[i
], stride_alignment
);
14014 intel_fb
->obj
= obj
;
14016 ret
= intel_fill_fb_info(dev_priv
, fb
);
14020 ret
= drm_framebuffer_init(&dev_priv
->drm
, fb
, &intel_fb_funcs
);
14022 DRM_ERROR("framebuffer init failed %d\n", ret
);
14029 i915_gem_object_lock(obj
);
14030 obj
->framebuffer_references
--;
14031 i915_gem_object_unlock(obj
);
14035 static struct drm_framebuffer
*
14036 intel_user_framebuffer_create(struct drm_device
*dev
,
14037 struct drm_file
*filp
,
14038 const struct drm_mode_fb_cmd2
*user_mode_cmd
)
14040 struct drm_framebuffer
*fb
;
14041 struct drm_i915_gem_object
*obj
;
14042 struct drm_mode_fb_cmd2 mode_cmd
= *user_mode_cmd
;
14044 obj
= i915_gem_object_lookup(filp
, mode_cmd
.handles
[0]);
14046 return ERR_PTR(-ENOENT
);
14048 fb
= intel_framebuffer_create(obj
, &mode_cmd
);
14050 i915_gem_object_put(obj
);
14055 static void intel_atomic_state_free(struct drm_atomic_state
*state
)
14057 struct intel_atomic_state
*intel_state
= to_intel_atomic_state(state
);
14059 drm_atomic_state_default_release(state
);
14061 i915_sw_fence_fini(&intel_state
->commit_ready
);
14066 static const struct drm_mode_config_funcs intel_mode_funcs
= {
14067 .fb_create
= intel_user_framebuffer_create
,
14068 .get_format_info
= intel_get_format_info
,
14069 .output_poll_changed
= intel_fbdev_output_poll_changed
,
14070 .atomic_check
= intel_atomic_check
,
14071 .atomic_commit
= intel_atomic_commit
,
14072 .atomic_state_alloc
= intel_atomic_state_alloc
,
14073 .atomic_state_clear
= intel_atomic_state_clear
,
14074 .atomic_state_free
= intel_atomic_state_free
,
14078 * intel_init_display_hooks - initialize the display modesetting hooks
14079 * @dev_priv: device private
14081 void intel_init_display_hooks(struct drm_i915_private
*dev_priv
)
14083 intel_init_cdclk_hooks(dev_priv
);
14085 if (INTEL_INFO(dev_priv
)->gen
>= 9) {
14086 dev_priv
->display
.get_pipe_config
= haswell_get_pipe_config
;
14087 dev_priv
->display
.get_initial_plane_config
=
14088 skylake_get_initial_plane_config
;
14089 dev_priv
->display
.crtc_compute_clock
=
14090 haswell_crtc_compute_clock
;
14091 dev_priv
->display
.crtc_enable
= haswell_crtc_enable
;
14092 dev_priv
->display
.crtc_disable
= haswell_crtc_disable
;
14093 } else if (HAS_DDI(dev_priv
)) {
14094 dev_priv
->display
.get_pipe_config
= haswell_get_pipe_config
;
14095 dev_priv
->display
.get_initial_plane_config
=
14096 i9xx_get_initial_plane_config
;
14097 dev_priv
->display
.crtc_compute_clock
=
14098 haswell_crtc_compute_clock
;
14099 dev_priv
->display
.crtc_enable
= haswell_crtc_enable
;
14100 dev_priv
->display
.crtc_disable
= haswell_crtc_disable
;
14101 } else if (HAS_PCH_SPLIT(dev_priv
)) {
14102 dev_priv
->display
.get_pipe_config
= ironlake_get_pipe_config
;
14103 dev_priv
->display
.get_initial_plane_config
=
14104 i9xx_get_initial_plane_config
;
14105 dev_priv
->display
.crtc_compute_clock
=
14106 ironlake_crtc_compute_clock
;
14107 dev_priv
->display
.crtc_enable
= ironlake_crtc_enable
;
14108 dev_priv
->display
.crtc_disable
= ironlake_crtc_disable
;
14109 } else if (IS_CHERRYVIEW(dev_priv
)) {
14110 dev_priv
->display
.get_pipe_config
= i9xx_get_pipe_config
;
14111 dev_priv
->display
.get_initial_plane_config
=
14112 i9xx_get_initial_plane_config
;
14113 dev_priv
->display
.crtc_compute_clock
= chv_crtc_compute_clock
;
14114 dev_priv
->display
.crtc_enable
= valleyview_crtc_enable
;
14115 dev_priv
->display
.crtc_disable
= i9xx_crtc_disable
;
14116 } else if (IS_VALLEYVIEW(dev_priv
)) {
14117 dev_priv
->display
.get_pipe_config
= i9xx_get_pipe_config
;
14118 dev_priv
->display
.get_initial_plane_config
=
14119 i9xx_get_initial_plane_config
;
14120 dev_priv
->display
.crtc_compute_clock
= vlv_crtc_compute_clock
;
14121 dev_priv
->display
.crtc_enable
= valleyview_crtc_enable
;
14122 dev_priv
->display
.crtc_disable
= i9xx_crtc_disable
;
14123 } else if (IS_G4X(dev_priv
)) {
14124 dev_priv
->display
.get_pipe_config
= i9xx_get_pipe_config
;
14125 dev_priv
->display
.get_initial_plane_config
=
14126 i9xx_get_initial_plane_config
;
14127 dev_priv
->display
.crtc_compute_clock
= g4x_crtc_compute_clock
;
14128 dev_priv
->display
.crtc_enable
= i9xx_crtc_enable
;
14129 dev_priv
->display
.crtc_disable
= i9xx_crtc_disable
;
14130 } else if (IS_PINEVIEW(dev_priv
)) {
14131 dev_priv
->display
.get_pipe_config
= i9xx_get_pipe_config
;
14132 dev_priv
->display
.get_initial_plane_config
=
14133 i9xx_get_initial_plane_config
;
14134 dev_priv
->display
.crtc_compute_clock
= pnv_crtc_compute_clock
;
14135 dev_priv
->display
.crtc_enable
= i9xx_crtc_enable
;
14136 dev_priv
->display
.crtc_disable
= i9xx_crtc_disable
;
14137 } else if (!IS_GEN2(dev_priv
)) {
14138 dev_priv
->display
.get_pipe_config
= i9xx_get_pipe_config
;
14139 dev_priv
->display
.get_initial_plane_config
=
14140 i9xx_get_initial_plane_config
;
14141 dev_priv
->display
.crtc_compute_clock
= i9xx_crtc_compute_clock
;
14142 dev_priv
->display
.crtc_enable
= i9xx_crtc_enable
;
14143 dev_priv
->display
.crtc_disable
= i9xx_crtc_disable
;
14145 dev_priv
->display
.get_pipe_config
= i9xx_get_pipe_config
;
14146 dev_priv
->display
.get_initial_plane_config
=
14147 i9xx_get_initial_plane_config
;
14148 dev_priv
->display
.crtc_compute_clock
= i8xx_crtc_compute_clock
;
14149 dev_priv
->display
.crtc_enable
= i9xx_crtc_enable
;
14150 dev_priv
->display
.crtc_disable
= i9xx_crtc_disable
;
14153 if (IS_GEN5(dev_priv
)) {
14154 dev_priv
->display
.fdi_link_train
= ironlake_fdi_link_train
;
14155 } else if (IS_GEN6(dev_priv
)) {
14156 dev_priv
->display
.fdi_link_train
= gen6_fdi_link_train
;
14157 } else if (IS_IVYBRIDGE(dev_priv
)) {
14158 /* FIXME: detect B0+ stepping and use auto training */
14159 dev_priv
->display
.fdi_link_train
= ivb_manual_fdi_link_train
;
14160 } else if (IS_HASWELL(dev_priv
) || IS_BROADWELL(dev_priv
)) {
14161 dev_priv
->display
.fdi_link_train
= hsw_fdi_link_train
;
14164 if (INTEL_GEN(dev_priv
) >= 9)
14165 dev_priv
->display
.update_crtcs
= skl_update_crtcs
;
14167 dev_priv
->display
.update_crtcs
= intel_update_crtcs
;
14171 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
14173 static void quirk_ssc_force_disable(struct drm_device
*dev
)
14175 struct drm_i915_private
*dev_priv
= to_i915(dev
);
14176 dev_priv
->quirks
|= QUIRK_LVDS_SSC_DISABLE
;
14177 DRM_INFO("applying lvds SSC disable quirk\n");
14181 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
14184 static void quirk_invert_brightness(struct drm_device
*dev
)
14186 struct drm_i915_private
*dev_priv
= to_i915(dev
);
14187 dev_priv
->quirks
|= QUIRK_INVERT_BRIGHTNESS
;
14188 DRM_INFO("applying inverted panel brightness quirk\n");
14191 /* Some VBT's incorrectly indicate no backlight is present */
14192 static void quirk_backlight_present(struct drm_device
*dev
)
14194 struct drm_i915_private
*dev_priv
= to_i915(dev
);
14195 dev_priv
->quirks
|= QUIRK_BACKLIGHT_PRESENT
;
14196 DRM_INFO("applying backlight present quirk\n");
14199 /* Toshiba Satellite P50-C-18C requires T12 delay to be min 800ms
14200 * which is 300 ms greater than eDP spec T12 min.
14202 static void quirk_increase_t12_delay(struct drm_device
*dev
)
14204 struct drm_i915_private
*dev_priv
= to_i915(dev
);
14206 dev_priv
->quirks
|= QUIRK_INCREASE_T12_DELAY
;
14207 DRM_INFO("Applying T12 delay quirk\n");
14210 struct intel_quirk
{
14212 int subsystem_vendor
;
14213 int subsystem_device
;
14214 void (*hook
)(struct drm_device
*dev
);
14217 /* For systems that don't have a meaningful PCI subdevice/subvendor ID */
14218 struct intel_dmi_quirk
{
14219 void (*hook
)(struct drm_device
*dev
);
14220 const struct dmi_system_id (*dmi_id_list
)[];
14223 static int intel_dmi_reverse_brightness(const struct dmi_system_id
*id
)
14225 DRM_INFO("Backlight polarity reversed on %s\n", id
->ident
);
14229 static const struct intel_dmi_quirk intel_dmi_quirks
[] = {
14231 .dmi_id_list
= &(const struct dmi_system_id
[]) {
14233 .callback
= intel_dmi_reverse_brightness
,
14234 .ident
= "NCR Corporation",
14235 .matches
= {DMI_MATCH(DMI_SYS_VENDOR
, "NCR Corporation"),
14236 DMI_MATCH(DMI_PRODUCT_NAME
, ""),
14239 { } /* terminating entry */
14241 .hook
= quirk_invert_brightness
,
14245 static struct intel_quirk intel_quirks
[] = {
14246 /* Lenovo U160 cannot use SSC on LVDS */
14247 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable
},
14249 /* Sony Vaio Y cannot use SSC on LVDS */
14250 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable
},
14252 /* Acer Aspire 5734Z must invert backlight brightness */
14253 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness
},
14255 /* Acer/eMachines G725 */
14256 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness
},
14258 /* Acer/eMachines e725 */
14259 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness
},
14261 /* Acer/Packard Bell NCL20 */
14262 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness
},
14264 /* Acer Aspire 4736Z */
14265 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness
},
14267 /* Acer Aspire 5336 */
14268 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness
},
14270 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
14271 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present
},
14273 /* Acer C720 Chromebook (Core i3 4005U) */
14274 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present
},
14276 /* Apple Macbook 2,1 (Core 2 T7400) */
14277 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present
},
14279 /* Apple Macbook 4,1 */
14280 { 0x2a02, 0x106b, 0x00a1, quirk_backlight_present
},
14282 /* Toshiba CB35 Chromebook (Celeron 2955U) */
14283 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present
},
14285 /* HP Chromebook 14 (Celeron 2955U) */
14286 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present
},
14288 /* Dell Chromebook 11 */
14289 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present
},
14291 /* Dell Chromebook 11 (2015 version) */
14292 { 0x0a16, 0x1028, 0x0a35, quirk_backlight_present
},
14294 /* Toshiba Satellite P50-C-18C */
14295 { 0x191B, 0x1179, 0xF840, quirk_increase_t12_delay
},
14298 static void intel_init_quirks(struct drm_device
*dev
)
14300 struct pci_dev
*d
= dev
->pdev
;
14303 for (i
= 0; i
< ARRAY_SIZE(intel_quirks
); i
++) {
14304 struct intel_quirk
*q
= &intel_quirks
[i
];
14306 if (d
->device
== q
->device
&&
14307 (d
->subsystem_vendor
== q
->subsystem_vendor
||
14308 q
->subsystem_vendor
== PCI_ANY_ID
) &&
14309 (d
->subsystem_device
== q
->subsystem_device
||
14310 q
->subsystem_device
== PCI_ANY_ID
))
14313 for (i
= 0; i
< ARRAY_SIZE(intel_dmi_quirks
); i
++) {
14314 if (dmi_check_system(*intel_dmi_quirks
[i
].dmi_id_list
) != 0)
14315 intel_dmi_quirks
[i
].hook(dev
);
14319 /* Disable the VGA plane that we never use */
14320 static void i915_disable_vga(struct drm_i915_private
*dev_priv
)
14322 struct pci_dev
*pdev
= dev_priv
->drm
.pdev
;
14324 i915_reg_t vga_reg
= i915_vgacntrl_reg(dev_priv
);
14326 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
14327 vga_get_uninterruptible(pdev
, VGA_RSRC_LEGACY_IO
);
14328 outb(SR01
, VGA_SR_INDEX
);
14329 sr1
= inb(VGA_SR_DATA
);
14330 outb(sr1
| 1<<5, VGA_SR_DATA
);
14331 vga_put(pdev
, VGA_RSRC_LEGACY_IO
);
14334 I915_WRITE(vga_reg
, VGA_DISP_DISABLE
);
14335 POSTING_READ(vga_reg
);
14338 void intel_modeset_init_hw(struct drm_device
*dev
)
14340 struct drm_i915_private
*dev_priv
= to_i915(dev
);
14342 intel_update_cdclk(dev_priv
);
14343 intel_dump_cdclk_state(&dev_priv
->cdclk
.hw
, "Current CDCLK");
14344 dev_priv
->cdclk
.logical
= dev_priv
->cdclk
.actual
= dev_priv
->cdclk
.hw
;
14348 * Calculate what we think the watermarks should be for the state we've read
14349 * out of the hardware and then immediately program those watermarks so that
14350 * we ensure the hardware settings match our internal state.
14352 * We can calculate what we think WM's should be by creating a duplicate of the
14353 * current state (which was constructed during hardware readout) and running it
14354 * through the atomic check code to calculate new watermark values in the
14357 static void sanitize_watermarks(struct drm_device
*dev
)
14359 struct drm_i915_private
*dev_priv
= to_i915(dev
);
14360 struct drm_atomic_state
*state
;
14361 struct intel_atomic_state
*intel_state
;
14362 struct drm_crtc
*crtc
;
14363 struct drm_crtc_state
*cstate
;
14364 struct drm_modeset_acquire_ctx ctx
;
14368 /* Only supported on platforms that use atomic watermark design */
14369 if (!dev_priv
->display
.optimize_watermarks
)
14373 * We need to hold connection_mutex before calling duplicate_state so
14374 * that the connector loop is protected.
14376 drm_modeset_acquire_init(&ctx
, 0);
14378 ret
= drm_modeset_lock_all_ctx(dev
, &ctx
);
14379 if (ret
== -EDEADLK
) {
14380 drm_modeset_backoff(&ctx
);
14382 } else if (WARN_ON(ret
)) {
14386 state
= drm_atomic_helper_duplicate_state(dev
, &ctx
);
14387 if (WARN_ON(IS_ERR(state
)))
14390 intel_state
= to_intel_atomic_state(state
);
14393 * Hardware readout is the only time we don't want to calculate
14394 * intermediate watermarks (since we don't trust the current
14397 if (!HAS_GMCH_DISPLAY(dev_priv
))
14398 intel_state
->skip_intermediate_wm
= true;
14400 ret
= intel_atomic_check(dev
, state
);
14403 * If we fail here, it means that the hardware appears to be
14404 * programmed in a way that shouldn't be possible, given our
14405 * understanding of watermark requirements. This might mean a
14406 * mistake in the hardware readout code or a mistake in the
14407 * watermark calculations for a given platform. Raise a WARN
14408 * so that this is noticeable.
14410 * If this actually happens, we'll have to just leave the
14411 * BIOS-programmed watermarks untouched and hope for the best.
14413 WARN(true, "Could not determine valid watermarks for inherited state\n");
14417 /* Write calculated watermark values back */
14418 for_each_new_crtc_in_state(state
, crtc
, cstate
, i
) {
14419 struct intel_crtc_state
*cs
= to_intel_crtc_state(cstate
);
14421 cs
->wm
.need_postvbl_update
= true;
14422 dev_priv
->display
.optimize_watermarks(intel_state
, cs
);
14424 to_intel_crtc_state(crtc
->state
)->wm
= cs
->wm
;
14428 drm_atomic_state_put(state
);
14430 drm_modeset_drop_locks(&ctx
);
14431 drm_modeset_acquire_fini(&ctx
);
14434 static void intel_update_fdi_pll_freq(struct drm_i915_private
*dev_priv
)
14436 if (IS_GEN5(dev_priv
)) {
14438 I915_READ(FDI_PLL_BIOS_0
) & FDI_PLL_FB_CLOCK_MASK
;
14440 dev_priv
->fdi_pll_freq
= (fdi_pll_clk
+ 2) * 10000;
14441 } else if (IS_GEN6(dev_priv
) || IS_IVYBRIDGE(dev_priv
)) {
14442 dev_priv
->fdi_pll_freq
= 270000;
14447 DRM_DEBUG_DRIVER("FDI PLL freq=%d\n", dev_priv
->fdi_pll_freq
);
14450 int intel_modeset_init(struct drm_device
*dev
)
14452 struct drm_i915_private
*dev_priv
= to_i915(dev
);
14453 struct i915_ggtt
*ggtt
= &dev_priv
->ggtt
;
14455 struct intel_crtc
*crtc
;
14457 dev_priv
->modeset_wq
= alloc_ordered_workqueue("i915_modeset", 0);
14459 drm_mode_config_init(dev
);
14461 dev
->mode_config
.min_width
= 0;
14462 dev
->mode_config
.min_height
= 0;
14464 dev
->mode_config
.preferred_depth
= 24;
14465 dev
->mode_config
.prefer_shadow
= 1;
14467 dev
->mode_config
.allow_fb_modifiers
= true;
14469 dev
->mode_config
.funcs
= &intel_mode_funcs
;
14471 init_llist_head(&dev_priv
->atomic_helper
.free_list
);
14472 INIT_WORK(&dev_priv
->atomic_helper
.free_work
,
14473 intel_atomic_helper_free_state_worker
);
14475 intel_init_quirks(dev
);
14477 intel_init_pm(dev_priv
);
14479 if (INTEL_INFO(dev_priv
)->num_pipes
== 0)
14483 * There may be no VBT; and if the BIOS enabled SSC we can
14484 * just keep using it to avoid unnecessary flicker. Whereas if the
14485 * BIOS isn't using it, don't assume it will work even if the VBT
14486 * indicates as much.
14488 if (HAS_PCH_IBX(dev_priv
) || HAS_PCH_CPT(dev_priv
)) {
14489 bool bios_lvds_use_ssc
= !!(I915_READ(PCH_DREF_CONTROL
) &
14492 if (dev_priv
->vbt
.lvds_use_ssc
!= bios_lvds_use_ssc
) {
14493 DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n",
14494 bios_lvds_use_ssc
? "en" : "dis",
14495 dev_priv
->vbt
.lvds_use_ssc
? "en" : "dis");
14496 dev_priv
->vbt
.lvds_use_ssc
= bios_lvds_use_ssc
;
14500 if (IS_GEN2(dev_priv
)) {
14501 dev
->mode_config
.max_width
= 2048;
14502 dev
->mode_config
.max_height
= 2048;
14503 } else if (IS_GEN3(dev_priv
)) {
14504 dev
->mode_config
.max_width
= 4096;
14505 dev
->mode_config
.max_height
= 4096;
14507 dev
->mode_config
.max_width
= 8192;
14508 dev
->mode_config
.max_height
= 8192;
14511 if (IS_I845G(dev_priv
) || IS_I865G(dev_priv
)) {
14512 dev
->mode_config
.cursor_width
= IS_I845G(dev_priv
) ? 64 : 512;
14513 dev
->mode_config
.cursor_height
= 1023;
14514 } else if (IS_GEN2(dev_priv
)) {
14515 dev
->mode_config
.cursor_width
= GEN2_CURSOR_WIDTH
;
14516 dev
->mode_config
.cursor_height
= GEN2_CURSOR_HEIGHT
;
14518 dev
->mode_config
.cursor_width
= MAX_CURSOR_WIDTH
;
14519 dev
->mode_config
.cursor_height
= MAX_CURSOR_HEIGHT
;
14522 dev
->mode_config
.fb_base
= ggtt
->gmadr
.start
;
14524 DRM_DEBUG_KMS("%d display pipe%s available.\n",
14525 INTEL_INFO(dev_priv
)->num_pipes
,
14526 INTEL_INFO(dev_priv
)->num_pipes
> 1 ? "s" : "");
14528 for_each_pipe(dev_priv
, pipe
) {
14531 ret
= intel_crtc_init(dev_priv
, pipe
);
14533 drm_mode_config_cleanup(dev
);
14538 intel_shared_dpll_init(dev
);
14539 intel_update_fdi_pll_freq(dev_priv
);
14541 intel_update_czclk(dev_priv
);
14542 intel_modeset_init_hw(dev
);
14544 if (dev_priv
->max_cdclk_freq
== 0)
14545 intel_update_max_cdclk(dev_priv
);
14547 /* Just disable it once at startup */
14548 i915_disable_vga(dev_priv
);
14549 intel_setup_outputs(dev_priv
);
14551 drm_modeset_lock_all(dev
);
14552 intel_modeset_setup_hw_state(dev
, dev
->mode_config
.acquire_ctx
);
14553 drm_modeset_unlock_all(dev
);
14555 for_each_intel_crtc(dev
, crtc
) {
14556 struct intel_initial_plane_config plane_config
= {};
14562 * Note that reserving the BIOS fb up front prevents us
14563 * from stuffing other stolen allocations like the ring
14564 * on top. This prevents some ugliness at boot time, and
14565 * can even allow for smooth boot transitions if the BIOS
14566 * fb is large enough for the active pipe configuration.
14568 dev_priv
->display
.get_initial_plane_config(crtc
,
14572 * If the fb is shared between multiple heads, we'll
14573 * just get the first one.
14575 intel_find_initial_plane_obj(crtc
, &plane_config
);
14579 * Make sure hardware watermarks really match the state we read out.
14580 * Note that we need to do this after reconstructing the BIOS fb's
14581 * since the watermark calculation done here will use pstate->fb.
14583 if (!HAS_GMCH_DISPLAY(dev_priv
))
14584 sanitize_watermarks(dev
);
14589 void i830_enable_pipe(struct drm_i915_private
*dev_priv
, enum pipe pipe
)
14591 struct intel_crtc
*crtc
= intel_get_crtc_for_pipe(dev_priv
, pipe
);
14592 /* 640x480@60Hz, ~25175 kHz */
14593 struct dpll clock
= {
14603 WARN_ON(i9xx_calc_dpll_params(48000, &clock
) != 25154);
14605 DRM_DEBUG_KMS("enabling pipe %c due to force quirk (vco=%d dot=%d)\n",
14606 pipe_name(pipe
), clock
.vco
, clock
.dot
);
14608 fp
= i9xx_dpll_compute_fp(&clock
);
14609 dpll
= (I915_READ(DPLL(pipe
)) & DPLL_DVO_2X_MODE
) |
14610 DPLL_VGA_MODE_DIS
|
14611 ((clock
.p1
- 2) << DPLL_FPA01_P1_POST_DIV_SHIFT
) |
14612 PLL_P2_DIVIDE_BY_4
|
14613 PLL_REF_INPUT_DREFCLK
|
14616 I915_WRITE(FP0(pipe
), fp
);
14617 I915_WRITE(FP1(pipe
), fp
);
14619 I915_WRITE(HTOTAL(pipe
), (640 - 1) | ((800 - 1) << 16));
14620 I915_WRITE(HBLANK(pipe
), (640 - 1) | ((800 - 1) << 16));
14621 I915_WRITE(HSYNC(pipe
), (656 - 1) | ((752 - 1) << 16));
14622 I915_WRITE(VTOTAL(pipe
), (480 - 1) | ((525 - 1) << 16));
14623 I915_WRITE(VBLANK(pipe
), (480 - 1) | ((525 - 1) << 16));
14624 I915_WRITE(VSYNC(pipe
), (490 - 1) | ((492 - 1) << 16));
14625 I915_WRITE(PIPESRC(pipe
), ((640 - 1) << 16) | (480 - 1));
14628 * Apparently we need to have VGA mode enabled prior to changing
14629 * the P1/P2 dividers. Otherwise the DPLL will keep using the old
14630 * dividers, even though the register value does change.
14632 I915_WRITE(DPLL(pipe
), dpll
& ~DPLL_VGA_MODE_DIS
);
14633 I915_WRITE(DPLL(pipe
), dpll
);
14635 /* Wait for the clocks to stabilize. */
14636 POSTING_READ(DPLL(pipe
));
14639 /* The pixel multiplier can only be updated once the
14640 * DPLL is enabled and the clocks are stable.
14642 * So write it again.
14644 I915_WRITE(DPLL(pipe
), dpll
);
14646 /* We do this three times for luck */
14647 for (i
= 0; i
< 3 ; i
++) {
14648 I915_WRITE(DPLL(pipe
), dpll
);
14649 POSTING_READ(DPLL(pipe
));
14650 udelay(150); /* wait for warmup */
14653 I915_WRITE(PIPECONF(pipe
), PIPECONF_ENABLE
| PIPECONF_PROGRESSIVE
);
14654 POSTING_READ(PIPECONF(pipe
));
14656 intel_wait_for_pipe_scanline_moving(crtc
);
14659 void i830_disable_pipe(struct drm_i915_private
*dev_priv
, enum pipe pipe
)
14661 struct intel_crtc
*crtc
= intel_get_crtc_for_pipe(dev_priv
, pipe
);
14663 DRM_DEBUG_KMS("disabling pipe %c due to force quirk\n",
14666 WARN_ON(I915_READ(DSPCNTR(PLANE_A
)) & DISPLAY_PLANE_ENABLE
);
14667 WARN_ON(I915_READ(DSPCNTR(PLANE_B
)) & DISPLAY_PLANE_ENABLE
);
14668 WARN_ON(I915_READ(DSPCNTR(PLANE_C
)) & DISPLAY_PLANE_ENABLE
);
14669 WARN_ON(I915_READ(CURCNTR(PIPE_A
)) & CURSOR_MODE
);
14670 WARN_ON(I915_READ(CURCNTR(PIPE_B
)) & CURSOR_MODE
);
14672 I915_WRITE(PIPECONF(pipe
), 0);
14673 POSTING_READ(PIPECONF(pipe
));
14675 intel_wait_for_pipe_scanline_stopped(crtc
);
14677 I915_WRITE(DPLL(pipe
), DPLL_VGA_MODE_DIS
);
14678 POSTING_READ(DPLL(pipe
));
14681 static bool intel_plane_mapping_ok(struct intel_crtc
*crtc
,
14682 struct intel_plane
*plane
)
14684 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
14685 enum i9xx_plane_id i9xx_plane
= plane
->i9xx_plane
;
14686 u32 val
= I915_READ(DSPCNTR(i9xx_plane
));
14688 return (val
& DISPLAY_PLANE_ENABLE
) == 0 ||
14689 (val
& DISPPLANE_SEL_PIPE_MASK
) == DISPPLANE_SEL_PIPE(crtc
->pipe
);
14693 intel_sanitize_plane_mapping(struct drm_i915_private
*dev_priv
)
14695 struct intel_crtc
*crtc
;
14697 if (INTEL_GEN(dev_priv
) >= 4)
14700 for_each_intel_crtc(&dev_priv
->drm
, crtc
) {
14701 struct intel_plane
*plane
=
14702 to_intel_plane(crtc
->base
.primary
);
14704 if (intel_plane_mapping_ok(crtc
, plane
))
14707 DRM_DEBUG_KMS("%s attached to the wrong pipe, disabling plane\n",
14709 intel_plane_disable_noatomic(crtc
, plane
);
14713 static bool intel_crtc_has_encoders(struct intel_crtc
*crtc
)
14715 struct drm_device
*dev
= crtc
->base
.dev
;
14716 struct intel_encoder
*encoder
;
14718 for_each_encoder_on_crtc(dev
, &crtc
->base
, encoder
)
14724 static struct intel_connector
*intel_encoder_find_connector(struct intel_encoder
*encoder
)
14726 struct drm_device
*dev
= encoder
->base
.dev
;
14727 struct intel_connector
*connector
;
14729 for_each_connector_on_encoder(dev
, &encoder
->base
, connector
)
14735 static bool has_pch_trancoder(struct drm_i915_private
*dev_priv
,
14736 enum pipe pch_transcoder
)
14738 return HAS_PCH_IBX(dev_priv
) || HAS_PCH_CPT(dev_priv
) ||
14739 (HAS_PCH_LPT_H(dev_priv
) && pch_transcoder
== PIPE_A
);
14742 static void intel_sanitize_crtc(struct intel_crtc
*crtc
,
14743 struct drm_modeset_acquire_ctx
*ctx
)
14745 struct drm_device
*dev
= crtc
->base
.dev
;
14746 struct drm_i915_private
*dev_priv
= to_i915(dev
);
14747 enum transcoder cpu_transcoder
= crtc
->config
->cpu_transcoder
;
14749 /* Clear any frame start delays used for debugging left by the BIOS */
14750 if (crtc
->active
&& !transcoder_is_dsi(cpu_transcoder
)) {
14751 i915_reg_t reg
= PIPECONF(cpu_transcoder
);
14754 I915_READ(reg
) & ~PIPECONF_FRAME_START_DELAY_MASK
);
14757 /* restore vblank interrupts to correct state */
14758 drm_crtc_vblank_reset(&crtc
->base
);
14759 if (crtc
->active
) {
14760 struct intel_plane
*plane
;
14762 drm_crtc_vblank_on(&crtc
->base
);
14764 /* Disable everything but the primary plane */
14765 for_each_intel_plane_on_crtc(dev
, crtc
, plane
) {
14766 const struct intel_plane_state
*plane_state
=
14767 to_intel_plane_state(plane
->base
.state
);
14769 if (plane_state
->base
.visible
&&
14770 plane
->base
.type
!= DRM_PLANE_TYPE_PRIMARY
)
14771 intel_plane_disable_noatomic(crtc
, plane
);
14775 /* Adjust the state of the output pipe according to whether we
14776 * have active connectors/encoders. */
14777 if (crtc
->active
&& !intel_crtc_has_encoders(crtc
))
14778 intel_crtc_disable_noatomic(&crtc
->base
, ctx
);
14780 if (crtc
->active
|| HAS_GMCH_DISPLAY(dev_priv
)) {
14782 * We start out with underrun reporting disabled to avoid races.
14783 * For correct bookkeeping mark this on active crtcs.
14785 * Also on gmch platforms we dont have any hardware bits to
14786 * disable the underrun reporting. Which means we need to start
14787 * out with underrun reporting disabled also on inactive pipes,
14788 * since otherwise we'll complain about the garbage we read when
14789 * e.g. coming up after runtime pm.
14791 * No protection against concurrent access is required - at
14792 * worst a fifo underrun happens which also sets this to false.
14794 crtc
->cpu_fifo_underrun_disabled
= true;
14796 * We track the PCH trancoder underrun reporting state
14797 * within the crtc. With crtc for pipe A housing the underrun
14798 * reporting state for PCH transcoder A, crtc for pipe B housing
14799 * it for PCH transcoder B, etc. LPT-H has only PCH transcoder A,
14800 * and marking underrun reporting as disabled for the non-existing
14801 * PCH transcoders B and C would prevent enabling the south
14802 * error interrupt (see cpt_can_enable_serr_int()).
14804 if (has_pch_trancoder(dev_priv
, crtc
->pipe
))
14805 crtc
->pch_fifo_underrun_disabled
= true;
14809 static void intel_sanitize_encoder(struct intel_encoder
*encoder
)
14811 struct intel_connector
*connector
;
14813 /* We need to check both for a crtc link (meaning that the
14814 * encoder is active and trying to read from a pipe) and the
14815 * pipe itself being active. */
14816 bool has_active_crtc
= encoder
->base
.crtc
&&
14817 to_intel_crtc(encoder
->base
.crtc
)->active
;
14819 connector
= intel_encoder_find_connector(encoder
);
14820 if (connector
&& !has_active_crtc
) {
14821 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
14822 encoder
->base
.base
.id
,
14823 encoder
->base
.name
);
14825 /* Connector is active, but has no active pipe. This is
14826 * fallout from our resume register restoring. Disable
14827 * the encoder manually again. */
14828 if (encoder
->base
.crtc
) {
14829 struct drm_crtc_state
*crtc_state
= encoder
->base
.crtc
->state
;
14831 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
14832 encoder
->base
.base
.id
,
14833 encoder
->base
.name
);
14834 encoder
->disable(encoder
, to_intel_crtc_state(crtc_state
), connector
->base
.state
);
14835 if (encoder
->post_disable
)
14836 encoder
->post_disable(encoder
, to_intel_crtc_state(crtc_state
), connector
->base
.state
);
14838 encoder
->base
.crtc
= NULL
;
14840 /* Inconsistent output/port/pipe state happens presumably due to
14841 * a bug in one of the get_hw_state functions. Or someplace else
14842 * in our code, like the register restore mess on resume. Clamp
14843 * things to off as a safer default. */
14845 connector
->base
.dpms
= DRM_MODE_DPMS_OFF
;
14846 connector
->base
.encoder
= NULL
;
14850 void i915_redisable_vga_power_on(struct drm_i915_private
*dev_priv
)
14852 i915_reg_t vga_reg
= i915_vgacntrl_reg(dev_priv
);
14854 if (!(I915_READ(vga_reg
) & VGA_DISP_DISABLE
)) {
14855 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
14856 i915_disable_vga(dev_priv
);
14860 void i915_redisable_vga(struct drm_i915_private
*dev_priv
)
14862 /* This function can be called both from intel_modeset_setup_hw_state or
14863 * at a very early point in our resume sequence, where the power well
14864 * structures are not yet restored. Since this function is at a very
14865 * paranoid "someone might have enabled VGA while we were not looking"
14866 * level, just check if the power well is enabled instead of trying to
14867 * follow the "don't touch the power well if we don't need it" policy
14868 * the rest of the driver uses. */
14869 if (!intel_display_power_get_if_enabled(dev_priv
, POWER_DOMAIN_VGA
))
14872 i915_redisable_vga_power_on(dev_priv
);
14874 intel_display_power_put(dev_priv
, POWER_DOMAIN_VGA
);
14877 /* FIXME read out full plane state for all planes */
14878 static void readout_plane_state(struct intel_crtc
*crtc
)
14880 struct drm_i915_private
*dev_priv
= to_i915(crtc
->base
.dev
);
14881 struct intel_crtc_state
*crtc_state
=
14882 to_intel_crtc_state(crtc
->base
.state
);
14883 struct intel_plane
*plane
;
14885 for_each_intel_plane_on_crtc(&dev_priv
->drm
, crtc
, plane
) {
14886 struct intel_plane_state
*plane_state
=
14887 to_intel_plane_state(plane
->base
.state
);
14888 bool visible
= plane
->get_hw_state(plane
);
14890 intel_set_plane_visible(crtc_state
, plane_state
, visible
);
14894 static void intel_modeset_readout_hw_state(struct drm_device
*dev
)
14896 struct drm_i915_private
*dev_priv
= to_i915(dev
);
14898 struct intel_crtc
*crtc
;
14899 struct intel_encoder
*encoder
;
14900 struct intel_connector
*connector
;
14901 struct drm_connector_list_iter conn_iter
;
14904 dev_priv
->active_crtcs
= 0;
14906 for_each_intel_crtc(dev
, crtc
) {
14907 struct intel_crtc_state
*crtc_state
=
14908 to_intel_crtc_state(crtc
->base
.state
);
14910 __drm_atomic_helper_crtc_destroy_state(&crtc_state
->base
);
14911 memset(crtc_state
, 0, sizeof(*crtc_state
));
14912 crtc_state
->base
.crtc
= &crtc
->base
;
14914 crtc_state
->base
.active
= crtc_state
->base
.enable
=
14915 dev_priv
->display
.get_pipe_config(crtc
, crtc_state
);
14917 crtc
->base
.enabled
= crtc_state
->base
.enable
;
14918 crtc
->active
= crtc_state
->base
.active
;
14920 if (crtc_state
->base
.active
)
14921 dev_priv
->active_crtcs
|= 1 << crtc
->pipe
;
14923 readout_plane_state(crtc
);
14925 DRM_DEBUG_KMS("[CRTC:%d:%s] hw state readout: %s\n",
14926 crtc
->base
.base
.id
, crtc
->base
.name
,
14927 enableddisabled(crtc_state
->base
.active
));
14930 for (i
= 0; i
< dev_priv
->num_shared_dpll
; i
++) {
14931 struct intel_shared_dpll
*pll
= &dev_priv
->shared_dplls
[i
];
14933 pll
->on
= pll
->funcs
.get_hw_state(dev_priv
, pll
,
14934 &pll
->state
.hw_state
);
14935 pll
->state
.crtc_mask
= 0;
14936 for_each_intel_crtc(dev
, crtc
) {
14937 struct intel_crtc_state
*crtc_state
=
14938 to_intel_crtc_state(crtc
->base
.state
);
14940 if (crtc_state
->base
.active
&&
14941 crtc_state
->shared_dpll
== pll
)
14942 pll
->state
.crtc_mask
|= 1 << crtc
->pipe
;
14944 pll
->active_mask
= pll
->state
.crtc_mask
;
14946 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
14947 pll
->name
, pll
->state
.crtc_mask
, pll
->on
);
14950 for_each_intel_encoder(dev
, encoder
) {
14953 if (encoder
->get_hw_state(encoder
, &pipe
)) {
14954 struct intel_crtc_state
*crtc_state
;
14956 crtc
= intel_get_crtc_for_pipe(dev_priv
, pipe
);
14957 crtc_state
= to_intel_crtc_state(crtc
->base
.state
);
14959 encoder
->base
.crtc
= &crtc
->base
;
14960 encoder
->get_config(encoder
, crtc_state
);
14962 encoder
->base
.crtc
= NULL
;
14965 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
14966 encoder
->base
.base
.id
, encoder
->base
.name
,
14967 enableddisabled(encoder
->base
.crtc
),
14971 drm_connector_list_iter_begin(dev
, &conn_iter
);
14972 for_each_intel_connector_iter(connector
, &conn_iter
) {
14973 if (connector
->get_hw_state(connector
)) {
14974 connector
->base
.dpms
= DRM_MODE_DPMS_ON
;
14976 encoder
= connector
->encoder
;
14977 connector
->base
.encoder
= &encoder
->base
;
14979 if (encoder
->base
.crtc
&&
14980 encoder
->base
.crtc
->state
->active
) {
14982 * This has to be done during hardware readout
14983 * because anything calling .crtc_disable may
14984 * rely on the connector_mask being accurate.
14986 encoder
->base
.crtc
->state
->connector_mask
|=
14987 1 << drm_connector_index(&connector
->base
);
14988 encoder
->base
.crtc
->state
->encoder_mask
|=
14989 1 << drm_encoder_index(&encoder
->base
);
14993 connector
->base
.dpms
= DRM_MODE_DPMS_OFF
;
14994 connector
->base
.encoder
= NULL
;
14996 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
14997 connector
->base
.base
.id
, connector
->base
.name
,
14998 enableddisabled(connector
->base
.encoder
));
15000 drm_connector_list_iter_end(&conn_iter
);
15002 for_each_intel_crtc(dev
, crtc
) {
15003 struct intel_crtc_state
*crtc_state
=
15004 to_intel_crtc_state(crtc
->base
.state
);
15007 memset(&crtc
->base
.mode
, 0, sizeof(crtc
->base
.mode
));
15008 if (crtc_state
->base
.active
) {
15009 intel_mode_from_pipe_config(&crtc
->base
.mode
, crtc_state
);
15010 intel_mode_from_pipe_config(&crtc_state
->base
.adjusted_mode
, crtc_state
);
15011 WARN_ON(drm_atomic_set_mode_for_crtc(crtc
->base
.state
, &crtc
->base
.mode
));
15014 * The initial mode needs to be set in order to keep
15015 * the atomic core happy. It wants a valid mode if the
15016 * crtc's enabled, so we do the above call.
15018 * But we don't set all the derived state fully, hence
15019 * set a flag to indicate that a full recalculation is
15020 * needed on the next commit.
15022 crtc_state
->base
.mode
.private_flags
= I915_MODE_FLAG_INHERITED
;
15024 intel_crtc_compute_pixel_rate(crtc_state
);
15026 if (dev_priv
->display
.modeset_calc_cdclk
) {
15027 min_cdclk
= intel_crtc_compute_min_cdclk(crtc_state
);
15028 if (WARN_ON(min_cdclk
< 0))
15032 drm_calc_timestamping_constants(&crtc
->base
,
15033 &crtc_state
->base
.adjusted_mode
);
15034 update_scanline_offset(crtc
);
15037 dev_priv
->min_cdclk
[crtc
->pipe
] = min_cdclk
;
15038 dev_priv
->min_voltage_level
[crtc
->pipe
] =
15039 crtc_state
->min_voltage_level
;
15041 intel_pipe_config_sanity_check(dev_priv
, crtc_state
);
15046 get_encoder_power_domains(struct drm_i915_private
*dev_priv
)
15048 struct intel_encoder
*encoder
;
15050 for_each_intel_encoder(&dev_priv
->drm
, encoder
) {
15052 enum intel_display_power_domain domain
;
15054 if (!encoder
->get_power_domains
)
15057 get_domains
= encoder
->get_power_domains(encoder
);
15058 for_each_power_domain(domain
, get_domains
)
15059 intel_display_power_get(dev_priv
, domain
);
15063 static void intel_early_display_was(struct drm_i915_private
*dev_priv
)
15065 /* Display WA #1185 WaDisableDARBFClkGating:cnl,glk */
15066 if (IS_CANNONLAKE(dev_priv
) || IS_GEMINILAKE(dev_priv
))
15067 I915_WRITE(GEN9_CLKGATE_DIS_0
, I915_READ(GEN9_CLKGATE_DIS_0
) |
15070 if (IS_HASWELL(dev_priv
)) {
15072 * WaRsPkgCStateDisplayPMReq:hsw
15073 * System hang if this isn't done before disabling all planes!
15075 I915_WRITE(CHICKEN_PAR1_1
,
15076 I915_READ(CHICKEN_PAR1_1
) | FORCE_ARB_IDLE_PLANES
);
15080 /* Scan out the current hw modeset state,
15081 * and sanitizes it to the current state
15084 intel_modeset_setup_hw_state(struct drm_device
*dev
,
15085 struct drm_modeset_acquire_ctx
*ctx
)
15087 struct drm_i915_private
*dev_priv
= to_i915(dev
);
15089 struct intel_crtc
*crtc
;
15090 struct intel_encoder
*encoder
;
15093 intel_early_display_was(dev_priv
);
15094 intel_modeset_readout_hw_state(dev
);
15096 /* HW state is read out, now we need to sanitize this mess. */
15097 get_encoder_power_domains(dev_priv
);
15099 intel_sanitize_plane_mapping(dev_priv
);
15101 for_each_intel_encoder(dev
, encoder
) {
15102 intel_sanitize_encoder(encoder
);
15105 for_each_pipe(dev_priv
, pipe
) {
15106 crtc
= intel_get_crtc_for_pipe(dev_priv
, pipe
);
15108 intel_sanitize_crtc(crtc
, ctx
);
15109 intel_dump_pipe_config(crtc
, crtc
->config
,
15110 "[setup_hw_state]");
15113 intel_modeset_update_connector_atomic_state(dev
);
15115 for (i
= 0; i
< dev_priv
->num_shared_dpll
; i
++) {
15116 struct intel_shared_dpll
*pll
= &dev_priv
->shared_dplls
[i
];
15118 if (!pll
->on
|| pll
->active_mask
)
15121 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll
->name
);
15123 pll
->funcs
.disable(dev_priv
, pll
);
15127 if (IS_G4X(dev_priv
)) {
15128 g4x_wm_get_hw_state(dev
);
15129 g4x_wm_sanitize(dev_priv
);
15130 } else if (IS_VALLEYVIEW(dev_priv
) || IS_CHERRYVIEW(dev_priv
)) {
15131 vlv_wm_get_hw_state(dev
);
15132 vlv_wm_sanitize(dev_priv
);
15133 } else if (INTEL_GEN(dev_priv
) >= 9) {
15134 skl_wm_get_hw_state(dev
);
15135 } else if (HAS_PCH_SPLIT(dev_priv
)) {
15136 ilk_wm_get_hw_state(dev
);
15139 for_each_intel_crtc(dev
, crtc
) {
15142 put_domains
= modeset_get_crtc_power_domains(&crtc
->base
, crtc
->config
);
15143 if (WARN_ON(put_domains
))
15144 modeset_put_power_domains(dev_priv
, put_domains
);
15146 intel_display_set_init_power(dev_priv
, false);
15148 intel_power_domains_verify_state(dev_priv
);
15150 intel_fbc_init_pipe_state(dev_priv
);
15153 void intel_display_resume(struct drm_device
*dev
)
15155 struct drm_i915_private
*dev_priv
= to_i915(dev
);
15156 struct drm_atomic_state
*state
= dev_priv
->modeset_restore_state
;
15157 struct drm_modeset_acquire_ctx ctx
;
15160 dev_priv
->modeset_restore_state
= NULL
;
15162 state
->acquire_ctx
= &ctx
;
15164 drm_modeset_acquire_init(&ctx
, 0);
15167 ret
= drm_modeset_lock_all_ctx(dev
, &ctx
);
15168 if (ret
!= -EDEADLK
)
15171 drm_modeset_backoff(&ctx
);
15175 ret
= __intel_display_resume(dev
, state
, &ctx
);
15177 intel_enable_ipc(dev_priv
);
15178 drm_modeset_drop_locks(&ctx
);
15179 drm_modeset_acquire_fini(&ctx
);
15182 DRM_ERROR("Restoring old state failed with %i\n", ret
);
15184 drm_atomic_state_put(state
);
15187 int intel_connector_register(struct drm_connector
*connector
)
15189 struct intel_connector
*intel_connector
= to_intel_connector(connector
);
15192 ret
= intel_backlight_device_register(intel_connector
);
15202 void intel_connector_unregister(struct drm_connector
*connector
)
15204 struct intel_connector
*intel_connector
= to_intel_connector(connector
);
15206 intel_backlight_device_unregister(intel_connector
);
15207 intel_panel_destroy_backlight(connector
);
15210 static void intel_hpd_poll_fini(struct drm_device
*dev
)
15212 struct intel_connector
*connector
;
15213 struct drm_connector_list_iter conn_iter
;
15215 /* Kill all the work that may have been queued by hpd. */
15216 drm_connector_list_iter_begin(dev
, &conn_iter
);
15217 for_each_intel_connector_iter(connector
, &conn_iter
) {
15218 if (connector
->modeset_retry_work
.func
)
15219 cancel_work_sync(&connector
->modeset_retry_work
);
15221 drm_connector_list_iter_end(&conn_iter
);
15224 void intel_modeset_cleanup(struct drm_device
*dev
)
15226 struct drm_i915_private
*dev_priv
= to_i915(dev
);
15228 flush_work(&dev_priv
->atomic_helper
.free_work
);
15229 WARN_ON(!llist_empty(&dev_priv
->atomic_helper
.free_list
));
15231 intel_disable_gt_powersave(dev_priv
);
15234 * Interrupts and polling as the first thing to avoid creating havoc.
15235 * Too much stuff here (turning of connectors, ...) would
15236 * experience fancy races otherwise.
15238 intel_irq_uninstall(dev_priv
);
15241 * Due to the hpd irq storm handling the hotplug work can re-arm the
15242 * poll handlers. Hence disable polling after hpd handling is shut down.
15244 intel_hpd_poll_fini(dev
);
15246 /* poll work can call into fbdev, hence clean that up afterwards */
15247 intel_fbdev_fini(dev_priv
);
15249 intel_unregister_dsm_handler();
15251 intel_fbc_global_disable(dev_priv
);
15253 /* flush any delayed tasks or pending work */
15254 flush_scheduled_work();
15256 drm_mode_config_cleanup(dev
);
15258 intel_cleanup_overlay(dev_priv
);
15260 intel_cleanup_gt_powersave(dev_priv
);
15262 intel_teardown_gmbus(dev_priv
);
15264 destroy_workqueue(dev_priv
->modeset_wq
);
15267 void intel_connector_attach_encoder(struct intel_connector
*connector
,
15268 struct intel_encoder
*encoder
)
15270 connector
->encoder
= encoder
;
15271 drm_mode_connector_attach_encoder(&connector
->base
,
15276 * set vga decode state - true == enable VGA decode
15278 int intel_modeset_vga_set_state(struct drm_i915_private
*dev_priv
, bool state
)
15280 unsigned reg
= INTEL_GEN(dev_priv
) >= 6 ? SNB_GMCH_CTRL
: INTEL_GMCH_CTRL
;
15283 if (pci_read_config_word(dev_priv
->bridge_dev
, reg
, &gmch_ctrl
)) {
15284 DRM_ERROR("failed to read control word\n");
15288 if (!!(gmch_ctrl
& INTEL_GMCH_VGA_DISABLE
) == !state
)
15292 gmch_ctrl
&= ~INTEL_GMCH_VGA_DISABLE
;
15294 gmch_ctrl
|= INTEL_GMCH_VGA_DISABLE
;
15296 if (pci_write_config_word(dev_priv
->bridge_dev
, reg
, gmch_ctrl
)) {
15297 DRM_ERROR("failed to write control word\n");
15304 #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
15306 struct intel_display_error_state
{
15308 u32 power_well_driver
;
15310 int num_transcoders
;
15312 struct intel_cursor_error_state
{
15317 } cursor
[I915_MAX_PIPES
];
15319 struct intel_pipe_error_state
{
15320 bool power_domain_on
;
15323 } pipe
[I915_MAX_PIPES
];
15325 struct intel_plane_error_state
{
15333 } plane
[I915_MAX_PIPES
];
15335 struct intel_transcoder_error_state
{
15336 bool power_domain_on
;
15337 enum transcoder cpu_transcoder
;
15350 struct intel_display_error_state
*
15351 intel_display_capture_error_state(struct drm_i915_private
*dev_priv
)
15353 struct intel_display_error_state
*error
;
15354 int transcoders
[] = {
15362 if (INTEL_INFO(dev_priv
)->num_pipes
== 0)
15365 error
= kzalloc(sizeof(*error
), GFP_ATOMIC
);
15369 if (IS_HASWELL(dev_priv
) || IS_BROADWELL(dev_priv
))
15370 error
->power_well_driver
=
15371 I915_READ(HSW_PWR_WELL_CTL_DRIVER(HSW_DISP_PW_GLOBAL
));
15373 for_each_pipe(dev_priv
, i
) {
15374 error
->pipe
[i
].power_domain_on
=
15375 __intel_display_power_is_enabled(dev_priv
,
15376 POWER_DOMAIN_PIPE(i
));
15377 if (!error
->pipe
[i
].power_domain_on
)
15380 error
->cursor
[i
].control
= I915_READ(CURCNTR(i
));
15381 error
->cursor
[i
].position
= I915_READ(CURPOS(i
));
15382 error
->cursor
[i
].base
= I915_READ(CURBASE(i
));
15384 error
->plane
[i
].control
= I915_READ(DSPCNTR(i
));
15385 error
->plane
[i
].stride
= I915_READ(DSPSTRIDE(i
));
15386 if (INTEL_GEN(dev_priv
) <= 3) {
15387 error
->plane
[i
].size
= I915_READ(DSPSIZE(i
));
15388 error
->plane
[i
].pos
= I915_READ(DSPPOS(i
));
15390 if (INTEL_GEN(dev_priv
) <= 7 && !IS_HASWELL(dev_priv
))
15391 error
->plane
[i
].addr
= I915_READ(DSPADDR(i
));
15392 if (INTEL_GEN(dev_priv
) >= 4) {
15393 error
->plane
[i
].surface
= I915_READ(DSPSURF(i
));
15394 error
->plane
[i
].tile_offset
= I915_READ(DSPTILEOFF(i
));
15397 error
->pipe
[i
].source
= I915_READ(PIPESRC(i
));
15399 if (HAS_GMCH_DISPLAY(dev_priv
))
15400 error
->pipe
[i
].stat
= I915_READ(PIPESTAT(i
));
15403 /* Note: this does not include DSI transcoders. */
15404 error
->num_transcoders
= INTEL_INFO(dev_priv
)->num_pipes
;
15405 if (HAS_DDI(dev_priv
))
15406 error
->num_transcoders
++; /* Account for eDP. */
15408 for (i
= 0; i
< error
->num_transcoders
; i
++) {
15409 enum transcoder cpu_transcoder
= transcoders
[i
];
15411 error
->transcoder
[i
].power_domain_on
=
15412 __intel_display_power_is_enabled(dev_priv
,
15413 POWER_DOMAIN_TRANSCODER(cpu_transcoder
));
15414 if (!error
->transcoder
[i
].power_domain_on
)
15417 error
->transcoder
[i
].cpu_transcoder
= cpu_transcoder
;
15419 error
->transcoder
[i
].conf
= I915_READ(PIPECONF(cpu_transcoder
));
15420 error
->transcoder
[i
].htotal
= I915_READ(HTOTAL(cpu_transcoder
));
15421 error
->transcoder
[i
].hblank
= I915_READ(HBLANK(cpu_transcoder
));
15422 error
->transcoder
[i
].hsync
= I915_READ(HSYNC(cpu_transcoder
));
15423 error
->transcoder
[i
].vtotal
= I915_READ(VTOTAL(cpu_transcoder
));
15424 error
->transcoder
[i
].vblank
= I915_READ(VBLANK(cpu_transcoder
));
15425 error
->transcoder
[i
].vsync
= I915_READ(VSYNC(cpu_transcoder
));
15431 #define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
15434 intel_display_print_error_state(struct drm_i915_error_state_buf
*m
,
15435 struct intel_display_error_state
*error
)
15437 struct drm_i915_private
*dev_priv
= m
->i915
;
15443 err_printf(m
, "Num Pipes: %d\n", INTEL_INFO(dev_priv
)->num_pipes
);
15444 if (IS_HASWELL(dev_priv
) || IS_BROADWELL(dev_priv
))
15445 err_printf(m
, "PWR_WELL_CTL2: %08x\n",
15446 error
->power_well_driver
);
15447 for_each_pipe(dev_priv
, i
) {
15448 err_printf(m
, "Pipe [%d]:\n", i
);
15449 err_printf(m
, " Power: %s\n",
15450 onoff(error
->pipe
[i
].power_domain_on
));
15451 err_printf(m
, " SRC: %08x\n", error
->pipe
[i
].source
);
15452 err_printf(m
, " STAT: %08x\n", error
->pipe
[i
].stat
);
15454 err_printf(m
, "Plane [%d]:\n", i
);
15455 err_printf(m
, " CNTR: %08x\n", error
->plane
[i
].control
);
15456 err_printf(m
, " STRIDE: %08x\n", error
->plane
[i
].stride
);
15457 if (INTEL_GEN(dev_priv
) <= 3) {
15458 err_printf(m
, " SIZE: %08x\n", error
->plane
[i
].size
);
15459 err_printf(m
, " POS: %08x\n", error
->plane
[i
].pos
);
15461 if (INTEL_GEN(dev_priv
) <= 7 && !IS_HASWELL(dev_priv
))
15462 err_printf(m
, " ADDR: %08x\n", error
->plane
[i
].addr
);
15463 if (INTEL_GEN(dev_priv
) >= 4) {
15464 err_printf(m
, " SURF: %08x\n", error
->plane
[i
].surface
);
15465 err_printf(m
, " TILEOFF: %08x\n", error
->plane
[i
].tile_offset
);
15468 err_printf(m
, "Cursor [%d]:\n", i
);
15469 err_printf(m
, " CNTR: %08x\n", error
->cursor
[i
].control
);
15470 err_printf(m
, " POS: %08x\n", error
->cursor
[i
].position
);
15471 err_printf(m
, " BASE: %08x\n", error
->cursor
[i
].base
);
15474 for (i
= 0; i
< error
->num_transcoders
; i
++) {
15475 err_printf(m
, "CPU transcoder: %s\n",
15476 transcoder_name(error
->transcoder
[i
].cpu_transcoder
));
15477 err_printf(m
, " Power: %s\n",
15478 onoff(error
->transcoder
[i
].power_domain_on
));
15479 err_printf(m
, " CONF: %08x\n", error
->transcoder
[i
].conf
);
15480 err_printf(m
, " HTOTAL: %08x\n", error
->transcoder
[i
].htotal
);
15481 err_printf(m
, " HBLANK: %08x\n", error
->transcoder
[i
].hblank
);
15482 err_printf(m
, " HSYNC: %08x\n", error
->transcoder
[i
].hsync
);
15483 err_printf(m
, " VTOTAL: %08x\n", error
->transcoder
[i
].vtotal
);
15484 err_printf(m
, " VBLANK: %08x\n", error
->transcoder
[i
].vblank
);
15485 err_printf(m
, " VSYNC: %08x\n", error
->transcoder
[i
].vsync
);