drm/i915: Kill has_dp_encoder from pipe_config
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_display.c
CommitLineData
79e53945
JB
1/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
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:
10 *
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
13 * Software.
14 *
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.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
618563e3 27#include <linux/dmi.h>
c1c7af60
JB
28#include <linux/module.h>
29#include <linux/input.h>
79e53945 30#include <linux/i2c.h>
7662c8bd 31#include <linux/kernel.h>
5a0e3ad6 32#include <linux/slab.h>
9cce37f4 33#include <linux/vgaarb.h>
e0dac65e 34#include <drm/drm_edid.h>
760285e7 35#include <drm/drmP.h>
79e53945 36#include "intel_drv.h"
760285e7 37#include <drm/i915_drm.h>
79e53945 38#include "i915_drv.h"
c37efb99 39#include "i915_gem_dmabuf.h"
db18b6a6 40#include "intel_dsi.h"
e5510fac 41#include "i915_trace.h"
319c1d42 42#include <drm/drm_atomic.h>
c196e1d6 43#include <drm/drm_atomic_helper.h>
760285e7
DH
44#include <drm/drm_dp_helper.h>
45#include <drm/drm_crtc_helper.h>
465c120c
MR
46#include <drm/drm_plane_helper.h>
47#include <drm/drm_rect.h>
c0f372b3 48#include <linux/dma_remapping.h>
fd8e058a 49#include <linux/reservation.h>
79e53945 50
5a21b665
DV
51static bool is_mmio_work(struct intel_flip_work *work)
52{
53 return work->mmio_work.func;
54}
55
465c120c 56/* Primary plane formats for gen <= 3 */
568db4f2 57static const uint32_t i8xx_primary_formats[] = {
67fe7dc5
DL
58 DRM_FORMAT_C8,
59 DRM_FORMAT_RGB565,
465c120c 60 DRM_FORMAT_XRGB1555,
67fe7dc5 61 DRM_FORMAT_XRGB8888,
465c120c
MR
62};
63
64/* Primary plane formats for gen >= 4 */
568db4f2 65static const uint32_t i965_primary_formats[] = {
6c0fd451
DL
66 DRM_FORMAT_C8,
67 DRM_FORMAT_RGB565,
68 DRM_FORMAT_XRGB8888,
69 DRM_FORMAT_XBGR8888,
70 DRM_FORMAT_XRGB2101010,
71 DRM_FORMAT_XBGR2101010,
72};
73
74static const uint32_t skl_primary_formats[] = {
67fe7dc5
DL
75 DRM_FORMAT_C8,
76 DRM_FORMAT_RGB565,
77 DRM_FORMAT_XRGB8888,
465c120c 78 DRM_FORMAT_XBGR8888,
67fe7dc5 79 DRM_FORMAT_ARGB8888,
465c120c
MR
80 DRM_FORMAT_ABGR8888,
81 DRM_FORMAT_XRGB2101010,
465c120c 82 DRM_FORMAT_XBGR2101010,
ea916ea0
KM
83 DRM_FORMAT_YUYV,
84 DRM_FORMAT_YVYU,
85 DRM_FORMAT_UYVY,
86 DRM_FORMAT_VYUY,
465c120c
MR
87};
88
3d7d6510
MR
89/* Cursor formats */
90static const uint32_t intel_cursor_formats[] = {
91 DRM_FORMAT_ARGB8888,
92};
93
f1f644dc 94static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 95 struct intel_crtc_state *pipe_config);
18442d08 96static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 97 struct intel_crtc_state *pipe_config);
f1f644dc 98
eb1bfe80
JB
99static int intel_framebuffer_init(struct drm_device *dev,
100 struct intel_framebuffer *ifb,
101 struct drm_mode_fb_cmd2 *mode_cmd,
102 struct drm_i915_gem_object *obj);
5b18e57c
DV
103static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
104static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
bc58be60 105static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc);
29407aab 106static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
f769cd24
VK
107 struct intel_link_m_n *m_n,
108 struct intel_link_m_n *m2_n2);
29407aab 109static void ironlake_set_pipeconf(struct drm_crtc *crtc);
229fca97 110static void haswell_set_pipeconf(struct drm_crtc *crtc);
391bf048 111static void haswell_set_pipemisc(struct drm_crtc *crtc);
d288f65f 112static void vlv_prepare_pll(struct intel_crtc *crtc,
5cec258b 113 const struct intel_crtc_state *pipe_config);
d288f65f 114static void chv_prepare_pll(struct intel_crtc *crtc,
5cec258b 115 const struct intel_crtc_state *pipe_config);
5a21b665
DV
116static void intel_begin_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
117static void intel_finish_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
549e2bfb
CK
118static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
119 struct intel_crtc_state *crtc_state);
bfd16b2a
ML
120static void skylake_pfit_enable(struct intel_crtc *crtc);
121static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force);
122static void ironlake_pfit_enable(struct intel_crtc *crtc);
043e9bda 123static void intel_modeset_setup_hw_state(struct drm_device *dev);
2622a081 124static void intel_pre_disable_primary_noatomic(struct drm_crtc *crtc);
4e5ca60f 125static int ilk_max_pixel_rate(struct drm_atomic_state *state);
324513c0 126static int bxt_calc_cdclk(int max_pixclk);
e7457a9a 127
d4906093 128struct intel_limit {
4c5def93
ACO
129 struct {
130 int min, max;
131 } dot, vco, n, m, m1, m2, p, p1;
132
133 struct {
134 int dot_limit;
135 int p2_slow, p2_fast;
136 } p2;
d4906093 137};
79e53945 138
bfa7df01
VS
139/* returns HPLL frequency in kHz */
140static int valleyview_get_vco(struct drm_i915_private *dev_priv)
141{
142 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
143
144 /* Obtain SKU information */
145 mutex_lock(&dev_priv->sb_lock);
146 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
147 CCK_FUSE_HPLL_FREQ_MASK;
148 mutex_unlock(&dev_priv->sb_lock);
149
150 return vco_freq[hpll_freq] * 1000;
151}
152
c30fec65
VS
153int vlv_get_cck_clock(struct drm_i915_private *dev_priv,
154 const char *name, u32 reg, int ref_freq)
bfa7df01
VS
155{
156 u32 val;
157 int divider;
158
bfa7df01
VS
159 mutex_lock(&dev_priv->sb_lock);
160 val = vlv_cck_read(dev_priv, reg);
161 mutex_unlock(&dev_priv->sb_lock);
162
163 divider = val & CCK_FREQUENCY_VALUES;
164
165 WARN((val & CCK_FREQUENCY_STATUS) !=
166 (divider << CCK_FREQUENCY_STATUS_SHIFT),
167 "%s change in progress\n", name);
168
c30fec65
VS
169 return DIV_ROUND_CLOSEST(ref_freq << 1, divider + 1);
170}
171
172static int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
173 const char *name, u32 reg)
174{
175 if (dev_priv->hpll_freq == 0)
176 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
177
178 return vlv_get_cck_clock(dev_priv, name, reg,
179 dev_priv->hpll_freq);
bfa7df01
VS
180}
181
e7dc33f3
VS
182static int
183intel_pch_rawclk(struct drm_i915_private *dev_priv)
d2acd215 184{
e7dc33f3
VS
185 return (I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK) * 1000;
186}
d2acd215 187
e7dc33f3
VS
188static int
189intel_vlv_hrawclk(struct drm_i915_private *dev_priv)
190{
19ab4ed3 191 /* RAWCLK_FREQ_VLV register updated from power well code */
35d38d1f
VS
192 return vlv_get_cck_clock_hpll(dev_priv, "hrawclk",
193 CCK_DISPLAY_REF_CLOCK_CONTROL);
d2acd215
DV
194}
195
e7dc33f3
VS
196static int
197intel_g4x_hrawclk(struct drm_i915_private *dev_priv)
79e50a4f 198{
79e50a4f
JN
199 uint32_t clkcfg;
200
e7dc33f3 201 /* hrawclock is 1/4 the FSB frequency */
79e50a4f
JN
202 clkcfg = I915_READ(CLKCFG);
203 switch (clkcfg & CLKCFG_FSB_MASK) {
204 case CLKCFG_FSB_400:
e7dc33f3 205 return 100000;
79e50a4f 206 case CLKCFG_FSB_533:
e7dc33f3 207 return 133333;
79e50a4f 208 case CLKCFG_FSB_667:
e7dc33f3 209 return 166667;
79e50a4f 210 case CLKCFG_FSB_800:
e7dc33f3 211 return 200000;
79e50a4f 212 case CLKCFG_FSB_1067:
e7dc33f3 213 return 266667;
79e50a4f 214 case CLKCFG_FSB_1333:
e7dc33f3 215 return 333333;
79e50a4f
JN
216 /* these two are just a guess; one of them might be right */
217 case CLKCFG_FSB_1600:
218 case CLKCFG_FSB_1600_ALT:
e7dc33f3 219 return 400000;
79e50a4f 220 default:
e7dc33f3 221 return 133333;
79e50a4f
JN
222 }
223}
224
19ab4ed3 225void intel_update_rawclk(struct drm_i915_private *dev_priv)
e7dc33f3
VS
226{
227 if (HAS_PCH_SPLIT(dev_priv))
228 dev_priv->rawclk_freq = intel_pch_rawclk(dev_priv);
229 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
230 dev_priv->rawclk_freq = intel_vlv_hrawclk(dev_priv);
231 else if (IS_G4X(dev_priv) || IS_PINEVIEW(dev_priv))
232 dev_priv->rawclk_freq = intel_g4x_hrawclk(dev_priv);
233 else
234 return; /* no rawclk on other platforms, or no need to know it */
235
236 DRM_DEBUG_DRIVER("rawclk rate: %d kHz\n", dev_priv->rawclk_freq);
237}
238
bfa7df01
VS
239static void intel_update_czclk(struct drm_i915_private *dev_priv)
240{
666a4537 241 if (!(IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)))
bfa7df01
VS
242 return;
243
244 dev_priv->czclk_freq = vlv_get_cck_clock_hpll(dev_priv, "czclk",
245 CCK_CZ_CLOCK_CONTROL);
246
247 DRM_DEBUG_DRIVER("CZ clock rate: %d kHz\n", dev_priv->czclk_freq);
248}
249
021357ac 250static inline u32 /* units of 100MHz */
21a727b3
VS
251intel_fdi_link_freq(struct drm_i915_private *dev_priv,
252 const struct intel_crtc_state *pipe_config)
021357ac 253{
21a727b3
VS
254 if (HAS_DDI(dev_priv))
255 return pipe_config->port_clock; /* SPLL */
256 else if (IS_GEN5(dev_priv))
257 return ((I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2) * 10000;
e3b247da 258 else
21a727b3 259 return 270000;
021357ac
CW
260}
261
1b6f4958 262static const struct intel_limit intel_limits_i8xx_dac = {
0206e353 263 .dot = { .min = 25000, .max = 350000 },
9c333719 264 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 265 .n = { .min = 2, .max = 16 },
0206e353
AJ
266 .m = { .min = 96, .max = 140 },
267 .m1 = { .min = 18, .max = 26 },
268 .m2 = { .min = 6, .max = 16 },
269 .p = { .min = 4, .max = 128 },
270 .p1 = { .min = 2, .max = 33 },
273e27ca
EA
271 .p2 = { .dot_limit = 165000,
272 .p2_slow = 4, .p2_fast = 2 },
e4b36699
KP
273};
274
1b6f4958 275static const struct intel_limit intel_limits_i8xx_dvo = {
5d536e28 276 .dot = { .min = 25000, .max = 350000 },
9c333719 277 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 278 .n = { .min = 2, .max = 16 },
5d536e28
DV
279 .m = { .min = 96, .max = 140 },
280 .m1 = { .min = 18, .max = 26 },
281 .m2 = { .min = 6, .max = 16 },
282 .p = { .min = 4, .max = 128 },
283 .p1 = { .min = 2, .max = 33 },
284 .p2 = { .dot_limit = 165000,
285 .p2_slow = 4, .p2_fast = 4 },
286};
287
1b6f4958 288static const struct intel_limit intel_limits_i8xx_lvds = {
0206e353 289 .dot = { .min = 25000, .max = 350000 },
9c333719 290 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 291 .n = { .min = 2, .max = 16 },
0206e353
AJ
292 .m = { .min = 96, .max = 140 },
293 .m1 = { .min = 18, .max = 26 },
294 .m2 = { .min = 6, .max = 16 },
295 .p = { .min = 4, .max = 128 },
296 .p1 = { .min = 1, .max = 6 },
273e27ca
EA
297 .p2 = { .dot_limit = 165000,
298 .p2_slow = 14, .p2_fast = 7 },
e4b36699 299};
273e27ca 300
1b6f4958 301static const struct intel_limit intel_limits_i9xx_sdvo = {
0206e353
AJ
302 .dot = { .min = 20000, .max = 400000 },
303 .vco = { .min = 1400000, .max = 2800000 },
304 .n = { .min = 1, .max = 6 },
305 .m = { .min = 70, .max = 120 },
4f7dfb67
PJ
306 .m1 = { .min = 8, .max = 18 },
307 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
308 .p = { .min = 5, .max = 80 },
309 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
310 .p2 = { .dot_limit = 200000,
311 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
312};
313
1b6f4958 314static const struct intel_limit intel_limits_i9xx_lvds = {
0206e353
AJ
315 .dot = { .min = 20000, .max = 400000 },
316 .vco = { .min = 1400000, .max = 2800000 },
317 .n = { .min = 1, .max = 6 },
318 .m = { .min = 70, .max = 120 },
53a7d2d1
PJ
319 .m1 = { .min = 8, .max = 18 },
320 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
321 .p = { .min = 7, .max = 98 },
322 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
323 .p2 = { .dot_limit = 112000,
324 .p2_slow = 14, .p2_fast = 7 },
e4b36699
KP
325};
326
273e27ca 327
1b6f4958 328static const struct intel_limit intel_limits_g4x_sdvo = {
273e27ca
EA
329 .dot = { .min = 25000, .max = 270000 },
330 .vco = { .min = 1750000, .max = 3500000},
331 .n = { .min = 1, .max = 4 },
332 .m = { .min = 104, .max = 138 },
333 .m1 = { .min = 17, .max = 23 },
334 .m2 = { .min = 5, .max = 11 },
335 .p = { .min = 10, .max = 30 },
336 .p1 = { .min = 1, .max = 3},
337 .p2 = { .dot_limit = 270000,
338 .p2_slow = 10,
339 .p2_fast = 10
044c7c41 340 },
e4b36699
KP
341};
342
1b6f4958 343static const struct intel_limit intel_limits_g4x_hdmi = {
273e27ca
EA
344 .dot = { .min = 22000, .max = 400000 },
345 .vco = { .min = 1750000, .max = 3500000},
346 .n = { .min = 1, .max = 4 },
347 .m = { .min = 104, .max = 138 },
348 .m1 = { .min = 16, .max = 23 },
349 .m2 = { .min = 5, .max = 11 },
350 .p = { .min = 5, .max = 80 },
351 .p1 = { .min = 1, .max = 8},
352 .p2 = { .dot_limit = 165000,
353 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
354};
355
1b6f4958 356static const struct intel_limit intel_limits_g4x_single_channel_lvds = {
273e27ca
EA
357 .dot = { .min = 20000, .max = 115000 },
358 .vco = { .min = 1750000, .max = 3500000 },
359 .n = { .min = 1, .max = 3 },
360 .m = { .min = 104, .max = 138 },
361 .m1 = { .min = 17, .max = 23 },
362 .m2 = { .min = 5, .max = 11 },
363 .p = { .min = 28, .max = 112 },
364 .p1 = { .min = 2, .max = 8 },
365 .p2 = { .dot_limit = 0,
366 .p2_slow = 14, .p2_fast = 14
044c7c41 367 },
e4b36699
KP
368};
369
1b6f4958 370static const struct intel_limit intel_limits_g4x_dual_channel_lvds = {
273e27ca
EA
371 .dot = { .min = 80000, .max = 224000 },
372 .vco = { .min = 1750000, .max = 3500000 },
373 .n = { .min = 1, .max = 3 },
374 .m = { .min = 104, .max = 138 },
375 .m1 = { .min = 17, .max = 23 },
376 .m2 = { .min = 5, .max = 11 },
377 .p = { .min = 14, .max = 42 },
378 .p1 = { .min = 2, .max = 6 },
379 .p2 = { .dot_limit = 0,
380 .p2_slow = 7, .p2_fast = 7
044c7c41 381 },
e4b36699
KP
382};
383
1b6f4958 384static const struct intel_limit intel_limits_pineview_sdvo = {
0206e353
AJ
385 .dot = { .min = 20000, .max = 400000},
386 .vco = { .min = 1700000, .max = 3500000 },
273e27ca 387 /* Pineview's Ncounter is a ring counter */
0206e353
AJ
388 .n = { .min = 3, .max = 6 },
389 .m = { .min = 2, .max = 256 },
273e27ca 390 /* Pineview only has one combined m divider, which we treat as m2. */
0206e353
AJ
391 .m1 = { .min = 0, .max = 0 },
392 .m2 = { .min = 0, .max = 254 },
393 .p = { .min = 5, .max = 80 },
394 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
395 .p2 = { .dot_limit = 200000,
396 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
397};
398
1b6f4958 399static const struct intel_limit intel_limits_pineview_lvds = {
0206e353
AJ
400 .dot = { .min = 20000, .max = 400000 },
401 .vco = { .min = 1700000, .max = 3500000 },
402 .n = { .min = 3, .max = 6 },
403 .m = { .min = 2, .max = 256 },
404 .m1 = { .min = 0, .max = 0 },
405 .m2 = { .min = 0, .max = 254 },
406 .p = { .min = 7, .max = 112 },
407 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
408 .p2 = { .dot_limit = 112000,
409 .p2_slow = 14, .p2_fast = 14 },
e4b36699
KP
410};
411
273e27ca
EA
412/* Ironlake / Sandybridge
413 *
414 * We calculate clock using (register_value + 2) for N/M1/M2, so here
415 * the range value for them is (actual_value - 2).
416 */
1b6f4958 417static const struct intel_limit intel_limits_ironlake_dac = {
273e27ca
EA
418 .dot = { .min = 25000, .max = 350000 },
419 .vco = { .min = 1760000, .max = 3510000 },
420 .n = { .min = 1, .max = 5 },
421 .m = { .min = 79, .max = 127 },
422 .m1 = { .min = 12, .max = 22 },
423 .m2 = { .min = 5, .max = 9 },
424 .p = { .min = 5, .max = 80 },
425 .p1 = { .min = 1, .max = 8 },
426 .p2 = { .dot_limit = 225000,
427 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
428};
429
1b6f4958 430static const struct intel_limit intel_limits_ironlake_single_lvds = {
273e27ca
EA
431 .dot = { .min = 25000, .max = 350000 },
432 .vco = { .min = 1760000, .max = 3510000 },
433 .n = { .min = 1, .max = 3 },
434 .m = { .min = 79, .max = 118 },
435 .m1 = { .min = 12, .max = 22 },
436 .m2 = { .min = 5, .max = 9 },
437 .p = { .min = 28, .max = 112 },
438 .p1 = { .min = 2, .max = 8 },
439 .p2 = { .dot_limit = 225000,
440 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
441};
442
1b6f4958 443static const struct intel_limit intel_limits_ironlake_dual_lvds = {
273e27ca
EA
444 .dot = { .min = 25000, .max = 350000 },
445 .vco = { .min = 1760000, .max = 3510000 },
446 .n = { .min = 1, .max = 3 },
447 .m = { .min = 79, .max = 127 },
448 .m1 = { .min = 12, .max = 22 },
449 .m2 = { .min = 5, .max = 9 },
450 .p = { .min = 14, .max = 56 },
451 .p1 = { .min = 2, .max = 8 },
452 .p2 = { .dot_limit = 225000,
453 .p2_slow = 7, .p2_fast = 7 },
b91ad0ec
ZW
454};
455
273e27ca 456/* LVDS 100mhz refclk limits. */
1b6f4958 457static const struct intel_limit intel_limits_ironlake_single_lvds_100m = {
273e27ca
EA
458 .dot = { .min = 25000, .max = 350000 },
459 .vco = { .min = 1760000, .max = 3510000 },
460 .n = { .min = 1, .max = 2 },
461 .m = { .min = 79, .max = 126 },
462 .m1 = { .min = 12, .max = 22 },
463 .m2 = { .min = 5, .max = 9 },
464 .p = { .min = 28, .max = 112 },
0206e353 465 .p1 = { .min = 2, .max = 8 },
273e27ca
EA
466 .p2 = { .dot_limit = 225000,
467 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
468};
469
1b6f4958 470static const struct intel_limit intel_limits_ironlake_dual_lvds_100m = {
273e27ca
EA
471 .dot = { .min = 25000, .max = 350000 },
472 .vco = { .min = 1760000, .max = 3510000 },
473 .n = { .min = 1, .max = 3 },
474 .m = { .min = 79, .max = 126 },
475 .m1 = { .min = 12, .max = 22 },
476 .m2 = { .min = 5, .max = 9 },
477 .p = { .min = 14, .max = 42 },
0206e353 478 .p1 = { .min = 2, .max = 6 },
273e27ca
EA
479 .p2 = { .dot_limit = 225000,
480 .p2_slow = 7, .p2_fast = 7 },
4547668a
ZY
481};
482
1b6f4958 483static const struct intel_limit intel_limits_vlv = {
f01b7962
VS
484 /*
485 * These are the data rate limits (measured in fast clocks)
486 * since those are the strictest limits we have. The fast
487 * clock and actual rate limits are more relaxed, so checking
488 * them would make no difference.
489 */
490 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
75e53986 491 .vco = { .min = 4000000, .max = 6000000 },
a0c4da24 492 .n = { .min = 1, .max = 7 },
a0c4da24
JB
493 .m1 = { .min = 2, .max = 3 },
494 .m2 = { .min = 11, .max = 156 },
b99ab663 495 .p1 = { .min = 2, .max = 3 },
5fdc9c49 496 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
a0c4da24
JB
497};
498
1b6f4958 499static const struct intel_limit intel_limits_chv = {
ef9348c8
CML
500 /*
501 * These are the data rate limits (measured in fast clocks)
502 * since those are the strictest limits we have. The fast
503 * clock and actual rate limits are more relaxed, so checking
504 * them would make no difference.
505 */
506 .dot = { .min = 25000 * 5, .max = 540000 * 5},
17fe1021 507 .vco = { .min = 4800000, .max = 6480000 },
ef9348c8
CML
508 .n = { .min = 1, .max = 1 },
509 .m1 = { .min = 2, .max = 2 },
510 .m2 = { .min = 24 << 22, .max = 175 << 22 },
511 .p1 = { .min = 2, .max = 4 },
512 .p2 = { .p2_slow = 1, .p2_fast = 14 },
513};
514
1b6f4958 515static const struct intel_limit intel_limits_bxt = {
5ab7b0b7
ID
516 /* FIXME: find real dot limits */
517 .dot = { .min = 0, .max = INT_MAX },
e6292556 518 .vco = { .min = 4800000, .max = 6700000 },
5ab7b0b7
ID
519 .n = { .min = 1, .max = 1 },
520 .m1 = { .min = 2, .max = 2 },
521 /* FIXME: find real m2 limits */
522 .m2 = { .min = 2 << 22, .max = 255 << 22 },
523 .p1 = { .min = 2, .max = 4 },
524 .p2 = { .p2_slow = 1, .p2_fast = 20 },
525};
526
cdba954e
ACO
527static bool
528needs_modeset(struct drm_crtc_state *state)
529{
fc596660 530 return drm_atomic_crtc_needs_modeset(state);
cdba954e
ACO
531}
532
dccbea3b
ID
533/*
534 * Platform specific helpers to calculate the port PLL loopback- (clock.m),
535 * and post-divider (clock.p) values, pre- (clock.vco) and post-divided fast
536 * (clock.dot) clock rates. This fast dot clock is fed to the port's IO logic.
537 * The helpers' return value is the rate of the clock that is fed to the
538 * display engine's pipe which can be the above fast dot clock rate or a
539 * divided-down version of it.
540 */
f2b115e6 541/* m1 is reserved as 0 in Pineview, n is a ring counter */
9e2c8475 542static int pnv_calc_dpll_params(int refclk, struct dpll *clock)
79e53945 543{
2177832f
SL
544 clock->m = clock->m2 + 2;
545 clock->p = clock->p1 * clock->p2;
ed5ca77e 546 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 547 return 0;
fb03ac01
VS
548 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
549 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
550
551 return clock->dot;
2177832f
SL
552}
553
7429e9d4
DV
554static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
555{
556 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
557}
558
9e2c8475 559static int i9xx_calc_dpll_params(int refclk, struct dpll *clock)
2177832f 560{
7429e9d4 561 clock->m = i9xx_dpll_compute_m(clock);
79e53945 562 clock->p = clock->p1 * clock->p2;
ed5ca77e 563 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
dccbea3b 564 return 0;
fb03ac01
VS
565 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
566 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
567
568 return clock->dot;
79e53945
JB
569}
570
9e2c8475 571static int vlv_calc_dpll_params(int refclk, struct dpll *clock)
589eca67
ID
572{
573 clock->m = clock->m1 * clock->m2;
574 clock->p = clock->p1 * clock->p2;
575 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 576 return 0;
589eca67
ID
577 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
578 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
579
580 return clock->dot / 5;
589eca67
ID
581}
582
9e2c8475 583int chv_calc_dpll_params(int refclk, struct dpll *clock)
ef9348c8
CML
584{
585 clock->m = clock->m1 * clock->m2;
586 clock->p = clock->p1 * clock->p2;
587 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 588 return 0;
ef9348c8
CML
589 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
590 clock->n << 22);
591 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
592
593 return clock->dot / 5;
ef9348c8
CML
594}
595
7c04d1d9 596#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
79e53945
JB
597/**
598 * Returns whether the given set of divisors are valid for a given refclk with
599 * the given connectors.
600 */
601
1b894b59 602static bool intel_PLL_is_valid(struct drm_device *dev,
1b6f4958 603 const struct intel_limit *limit,
9e2c8475 604 const struct dpll *clock)
79e53945 605{
f01b7962
VS
606 if (clock->n < limit->n.min || limit->n.max < clock->n)
607 INTELPllInvalid("n out of range\n");
79e53945 608 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
0206e353 609 INTELPllInvalid("p1 out of range\n");
79e53945 610 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
0206e353 611 INTELPllInvalid("m2 out of range\n");
79e53945 612 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
0206e353 613 INTELPllInvalid("m1 out of range\n");
f01b7962 614
666a4537
WB
615 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev) &&
616 !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev))
f01b7962
VS
617 if (clock->m1 <= clock->m2)
618 INTELPllInvalid("m1 <= m2\n");
619
666a4537 620 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev)) {
f01b7962
VS
621 if (clock->p < limit->p.min || limit->p.max < clock->p)
622 INTELPllInvalid("p out of range\n");
623 if (clock->m < limit->m.min || limit->m.max < clock->m)
624 INTELPllInvalid("m out of range\n");
625 }
626
79e53945 627 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
0206e353 628 INTELPllInvalid("vco out of range\n");
79e53945
JB
629 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
630 * connector, etc., rather than just a single range.
631 */
632 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
0206e353 633 INTELPllInvalid("dot out of range\n");
79e53945
JB
634
635 return true;
636}
637
3b1429d9 638static int
1b6f4958 639i9xx_select_p2_div(const struct intel_limit *limit,
3b1429d9
VS
640 const struct intel_crtc_state *crtc_state,
641 int target)
79e53945 642{
3b1429d9 643 struct drm_device *dev = crtc_state->base.crtc->dev;
79e53945 644
2d84d2b3 645 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
79e53945 646 /*
a210b028
DV
647 * For LVDS just rely on its current settings for dual-channel.
648 * We haven't figured out how to reliably set up different
649 * single/dual channel state, if we even can.
79e53945 650 */
1974cad0 651 if (intel_is_dual_link_lvds(dev))
3b1429d9 652 return limit->p2.p2_fast;
79e53945 653 else
3b1429d9 654 return limit->p2.p2_slow;
79e53945
JB
655 } else {
656 if (target < limit->p2.dot_limit)
3b1429d9 657 return limit->p2.p2_slow;
79e53945 658 else
3b1429d9 659 return limit->p2.p2_fast;
79e53945 660 }
3b1429d9
VS
661}
662
70e8aa21
ACO
663/*
664 * Returns a set of divisors for the desired target clock with the given
665 * refclk, or FALSE. The returned values represent the clock equation:
666 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
667 *
668 * Target and reference clocks are specified in kHz.
669 *
670 * If match_clock is provided, then best_clock P divider must match the P
671 * divider from @match_clock used for LVDS downclocking.
672 */
3b1429d9 673static bool
1b6f4958 674i9xx_find_best_dpll(const struct intel_limit *limit,
3b1429d9 675 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
676 int target, int refclk, struct dpll *match_clock,
677 struct dpll *best_clock)
3b1429d9
VS
678{
679 struct drm_device *dev = crtc_state->base.crtc->dev;
9e2c8475 680 struct dpll clock;
3b1429d9 681 int err = target;
79e53945 682
0206e353 683 memset(best_clock, 0, sizeof(*best_clock));
79e53945 684
3b1429d9
VS
685 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
686
42158660
ZY
687 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
688 clock.m1++) {
689 for (clock.m2 = limit->m2.min;
690 clock.m2 <= limit->m2.max; clock.m2++) {
c0efc387 691 if (clock.m2 >= clock.m1)
42158660
ZY
692 break;
693 for (clock.n = limit->n.min;
694 clock.n <= limit->n.max; clock.n++) {
695 for (clock.p1 = limit->p1.min;
696 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
697 int this_err;
698
dccbea3b 699 i9xx_calc_dpll_params(refclk, &clock);
ac58c3f0
DV
700 if (!intel_PLL_is_valid(dev, limit,
701 &clock))
702 continue;
703 if (match_clock &&
704 clock.p != match_clock->p)
705 continue;
706
707 this_err = abs(clock.dot - target);
708 if (this_err < err) {
709 *best_clock = clock;
710 err = this_err;
711 }
712 }
713 }
714 }
715 }
716
717 return (err != target);
718}
719
70e8aa21
ACO
720/*
721 * Returns a set of divisors for the desired target clock with the given
722 * refclk, or FALSE. The returned values represent the clock equation:
723 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
724 *
725 * Target and reference clocks are specified in kHz.
726 *
727 * If match_clock is provided, then best_clock P divider must match the P
728 * divider from @match_clock used for LVDS downclocking.
729 */
ac58c3f0 730static bool
1b6f4958 731pnv_find_best_dpll(const struct intel_limit *limit,
a93e255f 732 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
733 int target, int refclk, struct dpll *match_clock,
734 struct dpll *best_clock)
79e53945 735{
3b1429d9 736 struct drm_device *dev = crtc_state->base.crtc->dev;
9e2c8475 737 struct dpll clock;
79e53945
JB
738 int err = target;
739
0206e353 740 memset(best_clock, 0, sizeof(*best_clock));
79e53945 741
3b1429d9
VS
742 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
743
42158660
ZY
744 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
745 clock.m1++) {
746 for (clock.m2 = limit->m2.min;
747 clock.m2 <= limit->m2.max; clock.m2++) {
42158660
ZY
748 for (clock.n = limit->n.min;
749 clock.n <= limit->n.max; clock.n++) {
750 for (clock.p1 = limit->p1.min;
751 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
752 int this_err;
753
dccbea3b 754 pnv_calc_dpll_params(refclk, &clock);
1b894b59
CW
755 if (!intel_PLL_is_valid(dev, limit,
756 &clock))
79e53945 757 continue;
cec2f356
SP
758 if (match_clock &&
759 clock.p != match_clock->p)
760 continue;
79e53945
JB
761
762 this_err = abs(clock.dot - target);
763 if (this_err < err) {
764 *best_clock = clock;
765 err = this_err;
766 }
767 }
768 }
769 }
770 }
771
772 return (err != target);
773}
774
997c030c
ACO
775/*
776 * Returns a set of divisors for the desired target clock with the given
777 * refclk, or FALSE. The returned values represent the clock equation:
778 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
70e8aa21
ACO
779 *
780 * Target and reference clocks are specified in kHz.
781 *
782 * If match_clock is provided, then best_clock P divider must match the P
783 * divider from @match_clock used for LVDS downclocking.
997c030c 784 */
d4906093 785static bool
1b6f4958 786g4x_find_best_dpll(const struct intel_limit *limit,
a93e255f 787 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
788 int target, int refclk, struct dpll *match_clock,
789 struct dpll *best_clock)
d4906093 790{
3b1429d9 791 struct drm_device *dev = crtc_state->base.crtc->dev;
9e2c8475 792 struct dpll clock;
d4906093 793 int max_n;
3b1429d9 794 bool found = false;
6ba770dc
AJ
795 /* approximately equals target * 0.00585 */
796 int err_most = (target >> 8) + (target >> 9);
d4906093
ML
797
798 memset(best_clock, 0, sizeof(*best_clock));
3b1429d9
VS
799
800 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
801
d4906093 802 max_n = limit->n.max;
f77f13e2 803 /* based on hardware requirement, prefer smaller n to precision */
d4906093 804 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
f77f13e2 805 /* based on hardware requirement, prefere larger m1,m2 */
d4906093
ML
806 for (clock.m1 = limit->m1.max;
807 clock.m1 >= limit->m1.min; clock.m1--) {
808 for (clock.m2 = limit->m2.max;
809 clock.m2 >= limit->m2.min; clock.m2--) {
810 for (clock.p1 = limit->p1.max;
811 clock.p1 >= limit->p1.min; clock.p1--) {
812 int this_err;
813
dccbea3b 814 i9xx_calc_dpll_params(refclk, &clock);
1b894b59
CW
815 if (!intel_PLL_is_valid(dev, limit,
816 &clock))
d4906093 817 continue;
1b894b59
CW
818
819 this_err = abs(clock.dot - target);
d4906093
ML
820 if (this_err < err_most) {
821 *best_clock = clock;
822 err_most = this_err;
823 max_n = clock.n;
824 found = true;
825 }
826 }
827 }
828 }
829 }
2c07245f
ZW
830 return found;
831}
832
d5dd62bd
ID
833/*
834 * Check if the calculated PLL configuration is more optimal compared to the
835 * best configuration and error found so far. Return the calculated error.
836 */
837static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq,
9e2c8475
ACO
838 const struct dpll *calculated_clock,
839 const struct dpll *best_clock,
d5dd62bd
ID
840 unsigned int best_error_ppm,
841 unsigned int *error_ppm)
842{
9ca3ba01
ID
843 /*
844 * For CHV ignore the error and consider only the P value.
845 * Prefer a bigger P value based on HW requirements.
846 */
847 if (IS_CHERRYVIEW(dev)) {
848 *error_ppm = 0;
849
850 return calculated_clock->p > best_clock->p;
851 }
852
24be4e46
ID
853 if (WARN_ON_ONCE(!target_freq))
854 return false;
855
d5dd62bd
ID
856 *error_ppm = div_u64(1000000ULL *
857 abs(target_freq - calculated_clock->dot),
858 target_freq);
859 /*
860 * Prefer a better P value over a better (smaller) error if the error
861 * is small. Ensure this preference for future configurations too by
862 * setting the error to 0.
863 */
864 if (*error_ppm < 100 && calculated_clock->p > best_clock->p) {
865 *error_ppm = 0;
866
867 return true;
868 }
869
870 return *error_ppm + 10 < best_error_ppm;
871}
872
65b3d6a9
ACO
873/*
874 * Returns a set of divisors for the desired target clock with the given
875 * refclk, or FALSE. The returned values represent the clock equation:
876 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
877 */
a0c4da24 878static bool
1b6f4958 879vlv_find_best_dpll(const struct intel_limit *limit,
a93e255f 880 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
881 int target, int refclk, struct dpll *match_clock,
882 struct dpll *best_clock)
a0c4da24 883{
a93e255f 884 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
a919ff14 885 struct drm_device *dev = crtc->base.dev;
9e2c8475 886 struct dpll clock;
69e4f900 887 unsigned int bestppm = 1000000;
27e639bf
VS
888 /* min update 19.2 MHz */
889 int max_n = min(limit->n.max, refclk / 19200);
49e497ef 890 bool found = false;
a0c4da24 891
6b4bf1c4
VS
892 target *= 5; /* fast clock */
893
894 memset(best_clock, 0, sizeof(*best_clock));
a0c4da24
JB
895
896 /* based on hardware requirement, prefer smaller n to precision */
27e639bf 897 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
811bbf05 898 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
889059d8 899 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
c1a9ae43 900 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
6b4bf1c4 901 clock.p = clock.p1 * clock.p2;
a0c4da24 902 /* based on hardware requirement, prefer bigger m1,m2 values */
6b4bf1c4 903 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
d5dd62bd 904 unsigned int ppm;
69e4f900 905
6b4bf1c4
VS
906 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
907 refclk * clock.m1);
908
dccbea3b 909 vlv_calc_dpll_params(refclk, &clock);
43b0ac53 910
f01b7962
VS
911 if (!intel_PLL_is_valid(dev, limit,
912 &clock))
43b0ac53
VS
913 continue;
914
d5dd62bd
ID
915 if (!vlv_PLL_is_optimal(dev, target,
916 &clock,
917 best_clock,
918 bestppm, &ppm))
919 continue;
6b4bf1c4 920
d5dd62bd
ID
921 *best_clock = clock;
922 bestppm = ppm;
923 found = true;
a0c4da24
JB
924 }
925 }
926 }
927 }
a0c4da24 928
49e497ef 929 return found;
a0c4da24 930}
a4fc5ed6 931
65b3d6a9
ACO
932/*
933 * Returns a set of divisors for the desired target clock with the given
934 * refclk, or FALSE. The returned values represent the clock equation:
935 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
936 */
ef9348c8 937static bool
1b6f4958 938chv_find_best_dpll(const struct intel_limit *limit,
a93e255f 939 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
940 int target, int refclk, struct dpll *match_clock,
941 struct dpll *best_clock)
ef9348c8 942{
a93e255f 943 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
a919ff14 944 struct drm_device *dev = crtc->base.dev;
9ca3ba01 945 unsigned int best_error_ppm;
9e2c8475 946 struct dpll clock;
ef9348c8
CML
947 uint64_t m2;
948 int found = false;
949
950 memset(best_clock, 0, sizeof(*best_clock));
9ca3ba01 951 best_error_ppm = 1000000;
ef9348c8
CML
952
953 /*
954 * Based on hardware doc, the n always set to 1, and m1 always
955 * set to 2. If requires to support 200Mhz refclk, we need to
956 * revisit this because n may not 1 anymore.
957 */
958 clock.n = 1, clock.m1 = 2;
959 target *= 5; /* fast clock */
960
961 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
962 for (clock.p2 = limit->p2.p2_fast;
963 clock.p2 >= limit->p2.p2_slow;
964 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
9ca3ba01 965 unsigned int error_ppm;
ef9348c8
CML
966
967 clock.p = clock.p1 * clock.p2;
968
969 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
970 clock.n) << 22, refclk * clock.m1);
971
972 if (m2 > INT_MAX/clock.m1)
973 continue;
974
975 clock.m2 = m2;
976
dccbea3b 977 chv_calc_dpll_params(refclk, &clock);
ef9348c8
CML
978
979 if (!intel_PLL_is_valid(dev, limit, &clock))
980 continue;
981
9ca3ba01
ID
982 if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock,
983 best_error_ppm, &error_ppm))
984 continue;
985
986 *best_clock = clock;
987 best_error_ppm = error_ppm;
988 found = true;
ef9348c8
CML
989 }
990 }
991
992 return found;
993}
994
5ab7b0b7 995bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
9e2c8475 996 struct dpll *best_clock)
5ab7b0b7 997{
65b3d6a9 998 int refclk = 100000;
1b6f4958 999 const struct intel_limit *limit = &intel_limits_bxt;
5ab7b0b7 1000
65b3d6a9 1001 return chv_find_best_dpll(limit, crtc_state,
5ab7b0b7
ID
1002 target_clock, refclk, NULL, best_clock);
1003}
1004
20ddf665
VS
1005bool intel_crtc_active(struct drm_crtc *crtc)
1006{
1007 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1008
1009 /* Be paranoid as we can arrive here with only partial
1010 * state retrieved from the hardware during setup.
1011 *
241bfc38 1012 * We can ditch the adjusted_mode.crtc_clock check as soon
20ddf665
VS
1013 * as Haswell has gained clock readout/fastboot support.
1014 *
66e514c1 1015 * We can ditch the crtc->primary->fb check as soon as we can
20ddf665 1016 * properly reconstruct framebuffers.
c3d1f436
MR
1017 *
1018 * FIXME: The intel_crtc->active here should be switched to
1019 * crtc->state->active once we have proper CRTC states wired up
1020 * for atomic.
20ddf665 1021 */
c3d1f436 1022 return intel_crtc->active && crtc->primary->state->fb &&
6e3c9717 1023 intel_crtc->config->base.adjusted_mode.crtc_clock;
20ddf665
VS
1024}
1025
a5c961d1
PZ
1026enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1027 enum pipe pipe)
1028{
1029 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1030 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1031
6e3c9717 1032 return intel_crtc->config->cpu_transcoder;
a5c961d1
PZ
1033}
1034
fbf49ea2
VS
1035static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
1036{
fac5e23e 1037 struct drm_i915_private *dev_priv = to_i915(dev);
f0f59a00 1038 i915_reg_t reg = PIPEDSL(pipe);
fbf49ea2
VS
1039 u32 line1, line2;
1040 u32 line_mask;
1041
1042 if (IS_GEN2(dev))
1043 line_mask = DSL_LINEMASK_GEN2;
1044 else
1045 line_mask = DSL_LINEMASK_GEN3;
1046
1047 line1 = I915_READ(reg) & line_mask;
6adfb1ef 1048 msleep(5);
fbf49ea2
VS
1049 line2 = I915_READ(reg) & line_mask;
1050
1051 return line1 == line2;
1052}
1053
ab7ad7f6
KP
1054/*
1055 * intel_wait_for_pipe_off - wait for pipe to turn off
575f7ab7 1056 * @crtc: crtc whose pipe to wait for
9d0498a2
JB
1057 *
1058 * After disabling a pipe, we can't wait for vblank in the usual way,
1059 * spinning on the vblank interrupt status bit, since we won't actually
1060 * see an interrupt when the pipe is disabled.
1061 *
ab7ad7f6
KP
1062 * On Gen4 and above:
1063 * wait for the pipe register state bit to turn off
1064 *
1065 * Otherwise:
1066 * wait for the display line value to settle (it usually
1067 * ends up stopping at the start of the next frame).
58e10eb9 1068 *
9d0498a2 1069 */
575f7ab7 1070static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
9d0498a2 1071{
575f7ab7 1072 struct drm_device *dev = crtc->base.dev;
fac5e23e 1073 struct drm_i915_private *dev_priv = to_i915(dev);
6e3c9717 1074 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 1075 enum pipe pipe = crtc->pipe;
ab7ad7f6
KP
1076
1077 if (INTEL_INFO(dev)->gen >= 4) {
f0f59a00 1078 i915_reg_t reg = PIPECONF(cpu_transcoder);
ab7ad7f6
KP
1079
1080 /* Wait for the Pipe State to go off */
b8511f53
CW
1081 if (intel_wait_for_register(dev_priv,
1082 reg, I965_PIPECONF_ACTIVE, 0,
1083 100))
284637d9 1084 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 1085 } else {
ab7ad7f6 1086 /* Wait for the display line to settle */
fbf49ea2 1087 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
284637d9 1088 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 1089 }
79e53945
JB
1090}
1091
b24e7179 1092/* Only for pre-ILK configs */
55607e8a
DV
1093void assert_pll(struct drm_i915_private *dev_priv,
1094 enum pipe pipe, bool state)
b24e7179 1095{
b24e7179
JB
1096 u32 val;
1097 bool cur_state;
1098
649636ef 1099 val = I915_READ(DPLL(pipe));
b24e7179 1100 cur_state = !!(val & DPLL_VCO_ENABLE);
e2c719b7 1101 I915_STATE_WARN(cur_state != state,
b24e7179 1102 "PLL state assertion failure (expected %s, current %s)\n",
87ad3212 1103 onoff(state), onoff(cur_state));
b24e7179 1104}
b24e7179 1105
23538ef1 1106/* XXX: the dsi pll is shared between MIPI DSI ports */
8563b1e8 1107void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
23538ef1
JN
1108{
1109 u32 val;
1110 bool cur_state;
1111
a580516d 1112 mutex_lock(&dev_priv->sb_lock);
23538ef1 1113 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
a580516d 1114 mutex_unlock(&dev_priv->sb_lock);
23538ef1
JN
1115
1116 cur_state = val & DSI_PLL_VCO_EN;
e2c719b7 1117 I915_STATE_WARN(cur_state != state,
23538ef1 1118 "DSI PLL state assertion failure (expected %s, current %s)\n",
87ad3212 1119 onoff(state), onoff(cur_state));
23538ef1 1120}
23538ef1 1121
040484af
JB
1122static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1123 enum pipe pipe, bool state)
1124{
040484af 1125 bool cur_state;
ad80a810
PZ
1126 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1127 pipe);
040484af 1128
2d1fe073 1129 if (HAS_DDI(dev_priv)) {
affa9354 1130 /* DDI does not have a specific FDI_TX register */
649636ef 1131 u32 val = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
ad80a810 1132 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
bf507ef7 1133 } else {
649636ef 1134 u32 val = I915_READ(FDI_TX_CTL(pipe));
bf507ef7
ED
1135 cur_state = !!(val & FDI_TX_ENABLE);
1136 }
e2c719b7 1137 I915_STATE_WARN(cur_state != state,
040484af 1138 "FDI TX state assertion failure (expected %s, current %s)\n",
87ad3212 1139 onoff(state), onoff(cur_state));
040484af
JB
1140}
1141#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1142#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1143
1144static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1145 enum pipe pipe, bool state)
1146{
040484af
JB
1147 u32 val;
1148 bool cur_state;
1149
649636ef 1150 val = I915_READ(FDI_RX_CTL(pipe));
d63fa0dc 1151 cur_state = !!(val & FDI_RX_ENABLE);
e2c719b7 1152 I915_STATE_WARN(cur_state != state,
040484af 1153 "FDI RX state assertion failure (expected %s, current %s)\n",
87ad3212 1154 onoff(state), onoff(cur_state));
040484af
JB
1155}
1156#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1157#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1158
1159static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1160 enum pipe pipe)
1161{
040484af
JB
1162 u32 val;
1163
1164 /* ILK FDI PLL is always enabled */
7e22dbbb 1165 if (IS_GEN5(dev_priv))
040484af
JB
1166 return;
1167
bf507ef7 1168 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
2d1fe073 1169 if (HAS_DDI(dev_priv))
bf507ef7
ED
1170 return;
1171
649636ef 1172 val = I915_READ(FDI_TX_CTL(pipe));
e2c719b7 1173 I915_STATE_WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
040484af
JB
1174}
1175
55607e8a
DV
1176void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1177 enum pipe pipe, bool state)
040484af 1178{
040484af 1179 u32 val;
55607e8a 1180 bool cur_state;
040484af 1181
649636ef 1182 val = I915_READ(FDI_RX_CTL(pipe));
55607e8a 1183 cur_state = !!(val & FDI_RX_PLL_ENABLE);
e2c719b7 1184 I915_STATE_WARN(cur_state != state,
55607e8a 1185 "FDI RX PLL assertion failure (expected %s, current %s)\n",
87ad3212 1186 onoff(state), onoff(cur_state));
040484af
JB
1187}
1188
b680c37a
DV
1189void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1190 enum pipe pipe)
ea0760cf 1191{
91c8a326 1192 struct drm_device *dev = &dev_priv->drm;
f0f59a00 1193 i915_reg_t pp_reg;
ea0760cf
JB
1194 u32 val;
1195 enum pipe panel_pipe = PIPE_A;
0de3b485 1196 bool locked = true;
ea0760cf 1197
bedd4dba
JN
1198 if (WARN_ON(HAS_DDI(dev)))
1199 return;
1200
1201 if (HAS_PCH_SPLIT(dev)) {
1202 u32 port_sel;
1203
ea0760cf 1204 pp_reg = PCH_PP_CONTROL;
bedd4dba
JN
1205 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1206
1207 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1208 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1209 panel_pipe = PIPE_B;
1210 /* XXX: else fix for eDP */
666a4537 1211 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
bedd4dba
JN
1212 /* presumably write lock depends on pipe, not port select */
1213 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1214 panel_pipe = pipe;
ea0760cf
JB
1215 } else {
1216 pp_reg = PP_CONTROL;
bedd4dba
JN
1217 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1218 panel_pipe = PIPE_B;
ea0760cf
JB
1219 }
1220
1221 val = I915_READ(pp_reg);
1222 if (!(val & PANEL_POWER_ON) ||
ec49ba2d 1223 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
ea0760cf
JB
1224 locked = false;
1225
e2c719b7 1226 I915_STATE_WARN(panel_pipe == pipe && locked,
ea0760cf 1227 "panel assertion failure, pipe %c regs locked\n",
9db4a9c7 1228 pipe_name(pipe));
ea0760cf
JB
1229}
1230
93ce0ba6
JN
1231static void assert_cursor(struct drm_i915_private *dev_priv,
1232 enum pipe pipe, bool state)
1233{
91c8a326 1234 struct drm_device *dev = &dev_priv->drm;
93ce0ba6
JN
1235 bool cur_state;
1236
d9d82081 1237 if (IS_845G(dev) || IS_I865G(dev))
0b87c24e 1238 cur_state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE;
d9d82081 1239 else
5efb3e28 1240 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
93ce0ba6 1241
e2c719b7 1242 I915_STATE_WARN(cur_state != state,
93ce0ba6 1243 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
87ad3212 1244 pipe_name(pipe), onoff(state), onoff(cur_state));
93ce0ba6
JN
1245}
1246#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1247#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1248
b840d907
JB
1249void assert_pipe(struct drm_i915_private *dev_priv,
1250 enum pipe pipe, bool state)
b24e7179 1251{
63d7bbe9 1252 bool cur_state;
702e7a56
PZ
1253 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1254 pipe);
4feed0eb 1255 enum intel_display_power_domain power_domain;
b24e7179 1256
b6b5d049
VS
1257 /* if we need the pipe quirk it must be always on */
1258 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1259 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
8e636784
DV
1260 state = true;
1261
4feed0eb
ID
1262 power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
1263 if (intel_display_power_get_if_enabled(dev_priv, power_domain)) {
649636ef 1264 u32 val = I915_READ(PIPECONF(cpu_transcoder));
69310161 1265 cur_state = !!(val & PIPECONF_ENABLE);
4feed0eb
ID
1266
1267 intel_display_power_put(dev_priv, power_domain);
1268 } else {
1269 cur_state = false;
69310161
PZ
1270 }
1271
e2c719b7 1272 I915_STATE_WARN(cur_state != state,
63d7bbe9 1273 "pipe %c assertion failure (expected %s, current %s)\n",
87ad3212 1274 pipe_name(pipe), onoff(state), onoff(cur_state));
b24e7179
JB
1275}
1276
931872fc
CW
1277static void assert_plane(struct drm_i915_private *dev_priv,
1278 enum plane plane, bool state)
b24e7179 1279{
b24e7179 1280 u32 val;
931872fc 1281 bool cur_state;
b24e7179 1282
649636ef 1283 val = I915_READ(DSPCNTR(plane));
931872fc 1284 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
e2c719b7 1285 I915_STATE_WARN(cur_state != state,
931872fc 1286 "plane %c assertion failure (expected %s, current %s)\n",
87ad3212 1287 plane_name(plane), onoff(state), onoff(cur_state));
b24e7179
JB
1288}
1289
931872fc
CW
1290#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1291#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1292
b24e7179
JB
1293static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1294 enum pipe pipe)
1295{
91c8a326 1296 struct drm_device *dev = &dev_priv->drm;
649636ef 1297 int i;
b24e7179 1298
653e1026
VS
1299 /* Primary planes are fixed to pipes on gen4+ */
1300 if (INTEL_INFO(dev)->gen >= 4) {
649636ef 1301 u32 val = I915_READ(DSPCNTR(pipe));
e2c719b7 1302 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
28c05794
AJ
1303 "plane %c assertion failure, should be disabled but not\n",
1304 plane_name(pipe));
19ec1358 1305 return;
28c05794 1306 }
19ec1358 1307
b24e7179 1308 /* Need to check both planes against the pipe */
055e393f 1309 for_each_pipe(dev_priv, i) {
649636ef
VS
1310 u32 val = I915_READ(DSPCNTR(i));
1311 enum pipe cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
b24e7179 1312 DISPPLANE_SEL_PIPE_SHIFT;
e2c719b7 1313 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
9db4a9c7
JB
1314 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1315 plane_name(i), pipe_name(pipe));
b24e7179
JB
1316 }
1317}
1318
19332d7a
JB
1319static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1320 enum pipe pipe)
1321{
91c8a326 1322 struct drm_device *dev = &dev_priv->drm;
649636ef 1323 int sprite;
19332d7a 1324
7feb8b88 1325 if (INTEL_INFO(dev)->gen >= 9) {
3bdcfc0c 1326 for_each_sprite(dev_priv, pipe, sprite) {
649636ef 1327 u32 val = I915_READ(PLANE_CTL(pipe, sprite));
e2c719b7 1328 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
7feb8b88
DL
1329 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1330 sprite, pipe_name(pipe));
1331 }
666a4537 1332 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
3bdcfc0c 1333 for_each_sprite(dev_priv, pipe, sprite) {
649636ef 1334 u32 val = I915_READ(SPCNTR(pipe, sprite));
e2c719b7 1335 I915_STATE_WARN(val & SP_ENABLE,
20674eef 1336 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1fe47785 1337 sprite_name(pipe, sprite), pipe_name(pipe));
20674eef
VS
1338 }
1339 } else if (INTEL_INFO(dev)->gen >= 7) {
649636ef 1340 u32 val = I915_READ(SPRCTL(pipe));
e2c719b7 1341 I915_STATE_WARN(val & SPRITE_ENABLE,
06da8da2 1342 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef
VS
1343 plane_name(pipe), pipe_name(pipe));
1344 } else if (INTEL_INFO(dev)->gen >= 5) {
649636ef 1345 u32 val = I915_READ(DVSCNTR(pipe));
e2c719b7 1346 I915_STATE_WARN(val & DVS_ENABLE,
06da8da2 1347 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef 1348 plane_name(pipe), pipe_name(pipe));
19332d7a
JB
1349 }
1350}
1351
08c71e5e
VS
1352static void assert_vblank_disabled(struct drm_crtc *crtc)
1353{
e2c719b7 1354 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
08c71e5e
VS
1355 drm_crtc_vblank_put(crtc);
1356}
1357
7abd4b35
ACO
1358void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1359 enum pipe pipe)
92f2584a 1360{
92f2584a
JB
1361 u32 val;
1362 bool enabled;
1363
649636ef 1364 val = I915_READ(PCH_TRANSCONF(pipe));
92f2584a 1365 enabled = !!(val & TRANS_ENABLE);
e2c719b7 1366 I915_STATE_WARN(enabled,
9db4a9c7
JB
1367 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1368 pipe_name(pipe));
92f2584a
JB
1369}
1370
4e634389
KP
1371static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1372 enum pipe pipe, u32 port_sel, u32 val)
f0575e92
KP
1373{
1374 if ((val & DP_PORT_EN) == 0)
1375 return false;
1376
2d1fe073 1377 if (HAS_PCH_CPT(dev_priv)) {
f0f59a00 1378 u32 trans_dp_ctl = I915_READ(TRANS_DP_CTL(pipe));
f0575e92
KP
1379 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1380 return false;
2d1fe073 1381 } else if (IS_CHERRYVIEW(dev_priv)) {
44f37d1f
CML
1382 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1383 return false;
f0575e92
KP
1384 } else {
1385 if ((val & DP_PIPE_MASK) != (pipe << 30))
1386 return false;
1387 }
1388 return true;
1389}
1390
1519b995
KP
1391static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1392 enum pipe pipe, u32 val)
1393{
dc0fa718 1394 if ((val & SDVO_ENABLE) == 0)
1519b995
KP
1395 return false;
1396
2d1fe073 1397 if (HAS_PCH_CPT(dev_priv)) {
dc0fa718 1398 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
1519b995 1399 return false;
2d1fe073 1400 } else if (IS_CHERRYVIEW(dev_priv)) {
44f37d1f
CML
1401 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1402 return false;
1519b995 1403 } else {
dc0fa718 1404 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
1519b995
KP
1405 return false;
1406 }
1407 return true;
1408}
1409
1410static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1411 enum pipe pipe, u32 val)
1412{
1413 if ((val & LVDS_PORT_EN) == 0)
1414 return false;
1415
2d1fe073 1416 if (HAS_PCH_CPT(dev_priv)) {
1519b995
KP
1417 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1418 return false;
1419 } else {
1420 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1421 return false;
1422 }
1423 return true;
1424}
1425
1426static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1427 enum pipe pipe, u32 val)
1428{
1429 if ((val & ADPA_DAC_ENABLE) == 0)
1430 return false;
2d1fe073 1431 if (HAS_PCH_CPT(dev_priv)) {
1519b995
KP
1432 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1433 return false;
1434 } else {
1435 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1436 return false;
1437 }
1438 return true;
1439}
1440
291906f1 1441static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
f0f59a00
VS
1442 enum pipe pipe, i915_reg_t reg,
1443 u32 port_sel)
291906f1 1444{
47a05eca 1445 u32 val = I915_READ(reg);
e2c719b7 1446 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
291906f1 1447 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
f0f59a00 1448 i915_mmio_reg_offset(reg), pipe_name(pipe));
de9a35ab 1449
2d1fe073 1450 I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & DP_PORT_EN) == 0
75c5da27 1451 && (val & DP_PIPEB_SELECT),
de9a35ab 1452 "IBX PCH dp port still using transcoder B\n");
291906f1
JB
1453}
1454
1455static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
f0f59a00 1456 enum pipe pipe, i915_reg_t reg)
291906f1 1457{
47a05eca 1458 u32 val = I915_READ(reg);
e2c719b7 1459 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
23c99e77 1460 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
f0f59a00 1461 i915_mmio_reg_offset(reg), pipe_name(pipe));
de9a35ab 1462
2d1fe073 1463 I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & SDVO_ENABLE) == 0
75c5da27 1464 && (val & SDVO_PIPE_B_SELECT),
de9a35ab 1465 "IBX PCH hdmi port still using transcoder B\n");
291906f1
JB
1466}
1467
1468static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1469 enum pipe pipe)
1470{
291906f1 1471 u32 val;
291906f1 1472
f0575e92
KP
1473 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1474 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1475 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
291906f1 1476
649636ef 1477 val = I915_READ(PCH_ADPA);
e2c719b7 1478 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
291906f1 1479 "PCH VGA enabled on transcoder %c, should be disabled\n",
9db4a9c7 1480 pipe_name(pipe));
291906f1 1481
649636ef 1482 val = I915_READ(PCH_LVDS);
e2c719b7 1483 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
291906f1 1484 "PCH LVDS enabled on transcoder %c, should be disabled\n",
9db4a9c7 1485 pipe_name(pipe));
291906f1 1486
e2debe91
PZ
1487 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1488 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1489 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
291906f1
JB
1490}
1491
cd2d34d9
VS
1492static void _vlv_enable_pll(struct intel_crtc *crtc,
1493 const struct intel_crtc_state *pipe_config)
1494{
1495 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1496 enum pipe pipe = crtc->pipe;
1497
1498 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
1499 POSTING_READ(DPLL(pipe));
1500 udelay(150);
1501
2c30b43b
CW
1502 if (intel_wait_for_register(dev_priv,
1503 DPLL(pipe),
1504 DPLL_LOCK_VLV,
1505 DPLL_LOCK_VLV,
1506 1))
cd2d34d9
VS
1507 DRM_ERROR("DPLL %d failed to lock\n", pipe);
1508}
1509
d288f65f 1510static void vlv_enable_pll(struct intel_crtc *crtc,
5cec258b 1511 const struct intel_crtc_state *pipe_config)
87442f73 1512{
cd2d34d9 1513 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
8bd3f301 1514 enum pipe pipe = crtc->pipe;
87442f73 1515
8bd3f301 1516 assert_pipe_disabled(dev_priv, pipe);
87442f73 1517
87442f73 1518 /* PLL is protected by panel, make sure we can write it */
7d1a83cb 1519 assert_panel_unlocked(dev_priv, pipe);
87442f73 1520
cd2d34d9
VS
1521 if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE)
1522 _vlv_enable_pll(crtc, pipe_config);
426115cf 1523
8bd3f301
VS
1524 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
1525 POSTING_READ(DPLL_MD(pipe));
87442f73
DV
1526}
1527
cd2d34d9
VS
1528
1529static void _chv_enable_pll(struct intel_crtc *crtc,
1530 const struct intel_crtc_state *pipe_config)
9d556c99 1531{
cd2d34d9 1532 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
8bd3f301 1533 enum pipe pipe = crtc->pipe;
9d556c99 1534 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9d556c99
CML
1535 u32 tmp;
1536
a580516d 1537 mutex_lock(&dev_priv->sb_lock);
9d556c99
CML
1538
1539 /* Enable back the 10bit clock to display controller */
1540 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1541 tmp |= DPIO_DCLKP_EN;
1542 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1543
54433e91
VS
1544 mutex_unlock(&dev_priv->sb_lock);
1545
9d556c99
CML
1546 /*
1547 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1548 */
1549 udelay(1);
1550
1551 /* Enable PLL */
d288f65f 1552 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
9d556c99
CML
1553
1554 /* Check PLL is locked */
6b18826a
CW
1555 if (intel_wait_for_register(dev_priv,
1556 DPLL(pipe), DPLL_LOCK_VLV, DPLL_LOCK_VLV,
1557 1))
9d556c99 1558 DRM_ERROR("PLL %d failed to lock\n", pipe);
cd2d34d9
VS
1559}
1560
1561static void chv_enable_pll(struct intel_crtc *crtc,
1562 const struct intel_crtc_state *pipe_config)
1563{
1564 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1565 enum pipe pipe = crtc->pipe;
1566
1567 assert_pipe_disabled(dev_priv, pipe);
1568
1569 /* PLL is protected by panel, make sure we can write it */
1570 assert_panel_unlocked(dev_priv, pipe);
1571
1572 if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE)
1573 _chv_enable_pll(crtc, pipe_config);
9d556c99 1574
c231775c
VS
1575 if (pipe != PIPE_A) {
1576 /*
1577 * WaPixelRepeatModeFixForC0:chv
1578 *
1579 * DPLLCMD is AWOL. Use chicken bits to propagate
1580 * the value from DPLLBMD to either pipe B or C.
1581 */
1582 I915_WRITE(CBR4_VLV, pipe == PIPE_B ? CBR_DPLLBMD_PIPE_B : CBR_DPLLBMD_PIPE_C);
1583 I915_WRITE(DPLL_MD(PIPE_B), pipe_config->dpll_hw_state.dpll_md);
1584 I915_WRITE(CBR4_VLV, 0);
1585 dev_priv->chv_dpll_md[pipe] = pipe_config->dpll_hw_state.dpll_md;
1586
1587 /*
1588 * DPLLB VGA mode also seems to cause problems.
1589 * We should always have it disabled.
1590 */
1591 WARN_ON((I915_READ(DPLL(PIPE_B)) & DPLL_VGA_MODE_DIS) == 0);
1592 } else {
1593 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
1594 POSTING_READ(DPLL_MD(pipe));
1595 }
9d556c99
CML
1596}
1597
1c4e0274
VS
1598static int intel_num_dvo_pipes(struct drm_device *dev)
1599{
1600 struct intel_crtc *crtc;
1601 int count = 0;
1602
2d84d2b3 1603 for_each_intel_crtc(dev, crtc) {
3538b9df 1604 count += crtc->base.state->active &&
2d84d2b3
VS
1605 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_DVO);
1606 }
1c4e0274
VS
1607
1608 return count;
1609}
1610
66e3d5c0 1611static void i9xx_enable_pll(struct intel_crtc *crtc)
63d7bbe9 1612{
66e3d5c0 1613 struct drm_device *dev = crtc->base.dev;
fac5e23e 1614 struct drm_i915_private *dev_priv = to_i915(dev);
f0f59a00 1615 i915_reg_t reg = DPLL(crtc->pipe);
6e3c9717 1616 u32 dpll = crtc->config->dpll_hw_state.dpll;
63d7bbe9 1617
66e3d5c0 1618 assert_pipe_disabled(dev_priv, crtc->pipe);
58c6eaa2 1619
63d7bbe9 1620 /* PLL is protected by panel, make sure we can write it */
66e3d5c0
DV
1621 if (IS_MOBILE(dev) && !IS_I830(dev))
1622 assert_panel_unlocked(dev_priv, crtc->pipe);
63d7bbe9 1623
1c4e0274
VS
1624 /* Enable DVO 2x clock on both PLLs if necessary */
1625 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1626 /*
1627 * It appears to be important that we don't enable this
1628 * for the current pipe before otherwise configuring the
1629 * PLL. No idea how this should be handled if multiple
1630 * DVO outputs are enabled simultaneosly.
1631 */
1632 dpll |= DPLL_DVO_2X_MODE;
1633 I915_WRITE(DPLL(!crtc->pipe),
1634 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1635 }
66e3d5c0 1636
c2b63374
VS
1637 /*
1638 * Apparently we need to have VGA mode enabled prior to changing
1639 * the P1/P2 dividers. Otherwise the DPLL will keep using the old
1640 * dividers, even though the register value does change.
1641 */
1642 I915_WRITE(reg, 0);
1643
8e7a65aa
VS
1644 I915_WRITE(reg, dpll);
1645
66e3d5c0
DV
1646 /* Wait for the clocks to stabilize. */
1647 POSTING_READ(reg);
1648 udelay(150);
1649
1650 if (INTEL_INFO(dev)->gen >= 4) {
1651 I915_WRITE(DPLL_MD(crtc->pipe),
6e3c9717 1652 crtc->config->dpll_hw_state.dpll_md);
66e3d5c0
DV
1653 } else {
1654 /* The pixel multiplier can only be updated once the
1655 * DPLL is enabled and the clocks are stable.
1656 *
1657 * So write it again.
1658 */
1659 I915_WRITE(reg, dpll);
1660 }
63d7bbe9
JB
1661
1662 /* We do this three times for luck */
66e3d5c0 1663 I915_WRITE(reg, dpll);
63d7bbe9
JB
1664 POSTING_READ(reg);
1665 udelay(150); /* wait for warmup */
66e3d5c0 1666 I915_WRITE(reg, dpll);
63d7bbe9
JB
1667 POSTING_READ(reg);
1668 udelay(150); /* wait for warmup */
66e3d5c0 1669 I915_WRITE(reg, dpll);
63d7bbe9
JB
1670 POSTING_READ(reg);
1671 udelay(150); /* wait for warmup */
1672}
1673
1674/**
50b44a44 1675 * i9xx_disable_pll - disable a PLL
63d7bbe9
JB
1676 * @dev_priv: i915 private structure
1677 * @pipe: pipe PLL to disable
1678 *
1679 * Disable the PLL for @pipe, making sure the pipe is off first.
1680 *
1681 * Note! This is for pre-ILK only.
1682 */
1c4e0274 1683static void i9xx_disable_pll(struct intel_crtc *crtc)
63d7bbe9 1684{
1c4e0274 1685 struct drm_device *dev = crtc->base.dev;
fac5e23e 1686 struct drm_i915_private *dev_priv = to_i915(dev);
1c4e0274
VS
1687 enum pipe pipe = crtc->pipe;
1688
1689 /* Disable DVO 2x clock on both PLLs if necessary */
1690 if (IS_I830(dev) &&
2d84d2b3 1691 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_DVO) &&
3538b9df 1692 !intel_num_dvo_pipes(dev)) {
1c4e0274
VS
1693 I915_WRITE(DPLL(PIPE_B),
1694 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1695 I915_WRITE(DPLL(PIPE_A),
1696 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1697 }
1698
b6b5d049
VS
1699 /* Don't disable pipe or pipe PLLs if needed */
1700 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1701 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
63d7bbe9
JB
1702 return;
1703
1704 /* Make sure the pipe isn't still relying on us */
1705 assert_pipe_disabled(dev_priv, pipe);
1706
b8afb911 1707 I915_WRITE(DPLL(pipe), DPLL_VGA_MODE_DIS);
50b44a44 1708 POSTING_READ(DPLL(pipe));
63d7bbe9
JB
1709}
1710
f6071166
JB
1711static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1712{
b8afb911 1713 u32 val;
f6071166
JB
1714
1715 /* Make sure the pipe isn't still relying on us */
1716 assert_pipe_disabled(dev_priv, pipe);
1717
03ed5cbf
VS
1718 val = DPLL_INTEGRATED_REF_CLK_VLV |
1719 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
1720 if (pipe != PIPE_A)
1721 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1722
f6071166
JB
1723 I915_WRITE(DPLL(pipe), val);
1724 POSTING_READ(DPLL(pipe));
076ed3b2
CML
1725}
1726
1727static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1728{
d752048d 1729 enum dpio_channel port = vlv_pipe_to_channel(pipe);
076ed3b2
CML
1730 u32 val;
1731
a11b0703
VS
1732 /* Make sure the pipe isn't still relying on us */
1733 assert_pipe_disabled(dev_priv, pipe);
076ed3b2 1734
60bfe44f
VS
1735 val = DPLL_SSC_REF_CLK_CHV |
1736 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
a11b0703
VS
1737 if (pipe != PIPE_A)
1738 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
03ed5cbf 1739
a11b0703
VS
1740 I915_WRITE(DPLL(pipe), val);
1741 POSTING_READ(DPLL(pipe));
d752048d 1742
a580516d 1743 mutex_lock(&dev_priv->sb_lock);
d752048d
VS
1744
1745 /* Disable 10bit clock to display controller */
1746 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1747 val &= ~DPIO_DCLKP_EN;
1748 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1749
a580516d 1750 mutex_unlock(&dev_priv->sb_lock);
f6071166
JB
1751}
1752
e4607fcf 1753void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
9b6de0a1
VS
1754 struct intel_digital_port *dport,
1755 unsigned int expected_mask)
89b667f8
JB
1756{
1757 u32 port_mask;
f0f59a00 1758 i915_reg_t dpll_reg;
89b667f8 1759
e4607fcf
CML
1760 switch (dport->port) {
1761 case PORT_B:
89b667f8 1762 port_mask = DPLL_PORTB_READY_MASK;
00fc31b7 1763 dpll_reg = DPLL(0);
e4607fcf
CML
1764 break;
1765 case PORT_C:
89b667f8 1766 port_mask = DPLL_PORTC_READY_MASK;
00fc31b7 1767 dpll_reg = DPLL(0);
9b6de0a1 1768 expected_mask <<= 4;
00fc31b7
CML
1769 break;
1770 case PORT_D:
1771 port_mask = DPLL_PORTD_READY_MASK;
1772 dpll_reg = DPIO_PHY_STATUS;
e4607fcf
CML
1773 break;
1774 default:
1775 BUG();
1776 }
89b667f8 1777
370004d3
CW
1778 if (intel_wait_for_register(dev_priv,
1779 dpll_reg, port_mask, expected_mask,
1780 1000))
9b6de0a1
VS
1781 WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n",
1782 port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask);
89b667f8
JB
1783}
1784
b8a4f404
PZ
1785static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1786 enum pipe pipe)
040484af 1787{
91c8a326 1788 struct drm_device *dev = &dev_priv->drm;
7c26e5c6 1789 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
e2b78267 1790 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
f0f59a00
VS
1791 i915_reg_t reg;
1792 uint32_t val, pipeconf_val;
040484af 1793
040484af 1794 /* Make sure PCH DPLL is enabled */
8106ddbd 1795 assert_shared_dpll_enabled(dev_priv, intel_crtc->config->shared_dpll);
040484af
JB
1796
1797 /* FDI must be feeding us bits for PCH ports */
1798 assert_fdi_tx_enabled(dev_priv, pipe);
1799 assert_fdi_rx_enabled(dev_priv, pipe);
1800
23670b32
DV
1801 if (HAS_PCH_CPT(dev)) {
1802 /* Workaround: Set the timing override bit before enabling the
1803 * pch transcoder. */
1804 reg = TRANS_CHICKEN2(pipe);
1805 val = I915_READ(reg);
1806 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1807 I915_WRITE(reg, val);
59c859d6 1808 }
23670b32 1809
ab9412ba 1810 reg = PCH_TRANSCONF(pipe);
040484af 1811 val = I915_READ(reg);
5f7f726d 1812 pipeconf_val = I915_READ(PIPECONF(pipe));
e9bcff5c 1813
2d1fe073 1814 if (HAS_PCH_IBX(dev_priv)) {
e9bcff5c 1815 /*
c5de7c6f
VS
1816 * Make the BPC in transcoder be consistent with
1817 * that in pipeconf reg. For HDMI we must use 8bpc
1818 * here for both 8bpc and 12bpc.
e9bcff5c 1819 */
dfd07d72 1820 val &= ~PIPECONF_BPC_MASK;
2d84d2b3 1821 if (intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_HDMI))
c5de7c6f
VS
1822 val |= PIPECONF_8BPC;
1823 else
1824 val |= pipeconf_val & PIPECONF_BPC_MASK;
e9bcff5c 1825 }
5f7f726d
PZ
1826
1827 val &= ~TRANS_INTERLACE_MASK;
1828 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
2d1fe073 1829 if (HAS_PCH_IBX(dev_priv) &&
2d84d2b3 1830 intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_SDVO))
7c26e5c6
PZ
1831 val |= TRANS_LEGACY_INTERLACED_ILK;
1832 else
1833 val |= TRANS_INTERLACED;
5f7f726d
PZ
1834 else
1835 val |= TRANS_PROGRESSIVE;
1836
040484af 1837 I915_WRITE(reg, val | TRANS_ENABLE);
650fbd84
CW
1838 if (intel_wait_for_register(dev_priv,
1839 reg, TRANS_STATE_ENABLE, TRANS_STATE_ENABLE,
1840 100))
4bb6f1f3 1841 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
040484af
JB
1842}
1843
8fb033d7 1844static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
937bb610 1845 enum transcoder cpu_transcoder)
040484af 1846{
8fb033d7 1847 u32 val, pipeconf_val;
8fb033d7 1848
8fb033d7 1849 /* FDI must be feeding us bits for PCH ports */
1a240d4d 1850 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
937bb610 1851 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
8fb033d7 1852
223a6fdf 1853 /* Workaround: set timing override bit. */
36c0d0cf 1854 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
23670b32 1855 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
36c0d0cf 1856 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
223a6fdf 1857
25f3ef11 1858 val = TRANS_ENABLE;
937bb610 1859 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
8fb033d7 1860
9a76b1c6
PZ
1861 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1862 PIPECONF_INTERLACED_ILK)
a35f2679 1863 val |= TRANS_INTERLACED;
8fb033d7
PZ
1864 else
1865 val |= TRANS_PROGRESSIVE;
1866
ab9412ba 1867 I915_WRITE(LPT_TRANSCONF, val);
d9f96244
CW
1868 if (intel_wait_for_register(dev_priv,
1869 LPT_TRANSCONF,
1870 TRANS_STATE_ENABLE,
1871 TRANS_STATE_ENABLE,
1872 100))
937bb610 1873 DRM_ERROR("Failed to enable PCH transcoder\n");
8fb033d7
PZ
1874}
1875
b8a4f404
PZ
1876static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1877 enum pipe pipe)
040484af 1878{
91c8a326 1879 struct drm_device *dev = &dev_priv->drm;
f0f59a00
VS
1880 i915_reg_t reg;
1881 uint32_t val;
040484af
JB
1882
1883 /* FDI relies on the transcoder */
1884 assert_fdi_tx_disabled(dev_priv, pipe);
1885 assert_fdi_rx_disabled(dev_priv, pipe);
1886
291906f1
JB
1887 /* Ports must be off as well */
1888 assert_pch_ports_disabled(dev_priv, pipe);
1889
ab9412ba 1890 reg = PCH_TRANSCONF(pipe);
040484af
JB
1891 val = I915_READ(reg);
1892 val &= ~TRANS_ENABLE;
1893 I915_WRITE(reg, val);
1894 /* wait for PCH transcoder off, transcoder state */
a7d04662
CW
1895 if (intel_wait_for_register(dev_priv,
1896 reg, TRANS_STATE_ENABLE, 0,
1897 50))
4bb6f1f3 1898 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
23670b32 1899
c465613b 1900 if (HAS_PCH_CPT(dev)) {
23670b32
DV
1901 /* Workaround: Clear the timing override chicken bit again. */
1902 reg = TRANS_CHICKEN2(pipe);
1903 val = I915_READ(reg);
1904 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1905 I915_WRITE(reg, val);
1906 }
040484af
JB
1907}
1908
ab4d966c 1909static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
8fb033d7 1910{
8fb033d7
PZ
1911 u32 val;
1912
ab9412ba 1913 val = I915_READ(LPT_TRANSCONF);
8fb033d7 1914 val &= ~TRANS_ENABLE;
ab9412ba 1915 I915_WRITE(LPT_TRANSCONF, val);
8fb033d7 1916 /* wait for PCH transcoder off, transcoder state */
dfdb4749
CW
1917 if (intel_wait_for_register(dev_priv,
1918 LPT_TRANSCONF, TRANS_STATE_ENABLE, 0,
1919 50))
8a52fd9f 1920 DRM_ERROR("Failed to disable PCH transcoder\n");
223a6fdf
PZ
1921
1922 /* Workaround: clear timing override bit. */
36c0d0cf 1923 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
23670b32 1924 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
36c0d0cf 1925 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
040484af
JB
1926}
1927
b24e7179 1928/**
309cfea8 1929 * intel_enable_pipe - enable a pipe, asserting requirements
0372264a 1930 * @crtc: crtc responsible for the pipe
b24e7179 1931 *
0372264a 1932 * Enable @crtc's pipe, making sure that various hardware specific requirements
b24e7179 1933 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
b24e7179 1934 */
e1fdc473 1935static void intel_enable_pipe(struct intel_crtc *crtc)
b24e7179 1936{
0372264a 1937 struct drm_device *dev = crtc->base.dev;
fac5e23e 1938 struct drm_i915_private *dev_priv = to_i915(dev);
0372264a 1939 enum pipe pipe = crtc->pipe;
1a70a728 1940 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
1a240d4d 1941 enum pipe pch_transcoder;
f0f59a00 1942 i915_reg_t reg;
b24e7179
JB
1943 u32 val;
1944
9e2ee2dd
VS
1945 DRM_DEBUG_KMS("enabling pipe %c\n", pipe_name(pipe));
1946
58c6eaa2 1947 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 1948 assert_cursor_disabled(dev_priv, pipe);
58c6eaa2
DV
1949 assert_sprites_disabled(dev_priv, pipe);
1950
2d1fe073 1951 if (HAS_PCH_LPT(dev_priv))
cc391bbb
PZ
1952 pch_transcoder = TRANSCODER_A;
1953 else
1954 pch_transcoder = pipe;
1955
b24e7179
JB
1956 /*
1957 * A pipe without a PLL won't actually be able to drive bits from
1958 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1959 * need the check.
1960 */
2d1fe073 1961 if (HAS_GMCH_DISPLAY(dev_priv))
a65347ba 1962 if (crtc->config->has_dsi_encoder)
23538ef1
JN
1963 assert_dsi_pll_enabled(dev_priv);
1964 else
1965 assert_pll_enabled(dev_priv, pipe);
040484af 1966 else {
6e3c9717 1967 if (crtc->config->has_pch_encoder) {
040484af 1968 /* if driving the PCH, we need FDI enabled */
cc391bbb 1969 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
1a240d4d
DV
1970 assert_fdi_tx_pll_enabled(dev_priv,
1971 (enum pipe) cpu_transcoder);
040484af
JB
1972 }
1973 /* FIXME: assert CPU port conditions for SNB+ */
1974 }
b24e7179 1975
702e7a56 1976 reg = PIPECONF(cpu_transcoder);
b24e7179 1977 val = I915_READ(reg);
7ad25d48 1978 if (val & PIPECONF_ENABLE) {
b6b5d049
VS
1979 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1980 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
00d70b15 1981 return;
7ad25d48 1982 }
00d70b15
CW
1983
1984 I915_WRITE(reg, val | PIPECONF_ENABLE);
851855d8 1985 POSTING_READ(reg);
b7792d8b
VS
1986
1987 /*
1988 * Until the pipe starts DSL will read as 0, which would cause
1989 * an apparent vblank timestamp jump, which messes up also the
1990 * frame count when it's derived from the timestamps. So let's
1991 * wait for the pipe to start properly before we call
1992 * drm_crtc_vblank_on()
1993 */
1994 if (dev->max_vblank_count == 0 &&
1995 wait_for(intel_get_crtc_scanline(crtc) != crtc->scanline_offset, 50))
1996 DRM_ERROR("pipe %c didn't start\n", pipe_name(pipe));
b24e7179
JB
1997}
1998
1999/**
309cfea8 2000 * intel_disable_pipe - disable a pipe, asserting requirements
575f7ab7 2001 * @crtc: crtc whose pipes is to be disabled
b24e7179 2002 *
575f7ab7
VS
2003 * Disable the pipe of @crtc, making sure that various hardware
2004 * specific requirements are met, if applicable, e.g. plane
2005 * disabled, panel fitter off, etc.
b24e7179
JB
2006 *
2007 * Will wait until the pipe has shut down before returning.
2008 */
575f7ab7 2009static void intel_disable_pipe(struct intel_crtc *crtc)
b24e7179 2010{
fac5e23e 2011 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6e3c9717 2012 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 2013 enum pipe pipe = crtc->pipe;
f0f59a00 2014 i915_reg_t reg;
b24e7179
JB
2015 u32 val;
2016
9e2ee2dd
VS
2017 DRM_DEBUG_KMS("disabling pipe %c\n", pipe_name(pipe));
2018
b24e7179
JB
2019 /*
2020 * Make sure planes won't keep trying to pump pixels to us,
2021 * or we might hang the display.
2022 */
2023 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 2024 assert_cursor_disabled(dev_priv, pipe);
19332d7a 2025 assert_sprites_disabled(dev_priv, pipe);
b24e7179 2026
702e7a56 2027 reg = PIPECONF(cpu_transcoder);
b24e7179 2028 val = I915_READ(reg);
00d70b15
CW
2029 if ((val & PIPECONF_ENABLE) == 0)
2030 return;
2031
67adc644
VS
2032 /*
2033 * Double wide has implications for planes
2034 * so best keep it disabled when not needed.
2035 */
6e3c9717 2036 if (crtc->config->double_wide)
67adc644
VS
2037 val &= ~PIPECONF_DOUBLE_WIDE;
2038
2039 /* Don't disable pipe or pipe PLLs if needed */
b6b5d049
VS
2040 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2041 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
67adc644
VS
2042 val &= ~PIPECONF_ENABLE;
2043
2044 I915_WRITE(reg, val);
2045 if ((val & PIPECONF_ENABLE) == 0)
2046 intel_wait_for_pipe_off(crtc);
b24e7179
JB
2047}
2048
693db184
CW
2049static bool need_vtd_wa(struct drm_device *dev)
2050{
2051#ifdef CONFIG_INTEL_IOMMU
2052 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2053 return true;
2054#endif
2055 return false;
2056}
2057
832be82f
VS
2058static unsigned int intel_tile_size(const struct drm_i915_private *dev_priv)
2059{
2060 return IS_GEN2(dev_priv) ? 2048 : 4096;
2061}
2062
27ba3910
VS
2063static unsigned int intel_tile_width_bytes(const struct drm_i915_private *dev_priv,
2064 uint64_t fb_modifier, unsigned int cpp)
7b49f948
VS
2065{
2066 switch (fb_modifier) {
2067 case DRM_FORMAT_MOD_NONE:
2068 return cpp;
2069 case I915_FORMAT_MOD_X_TILED:
2070 if (IS_GEN2(dev_priv))
2071 return 128;
2072 else
2073 return 512;
2074 case I915_FORMAT_MOD_Y_TILED:
2075 if (IS_GEN2(dev_priv) || HAS_128_BYTE_Y_TILING(dev_priv))
2076 return 128;
2077 else
2078 return 512;
2079 case I915_FORMAT_MOD_Yf_TILED:
2080 switch (cpp) {
2081 case 1:
2082 return 64;
2083 case 2:
2084 case 4:
2085 return 128;
2086 case 8:
2087 case 16:
2088 return 256;
2089 default:
2090 MISSING_CASE(cpp);
2091 return cpp;
2092 }
2093 break;
2094 default:
2095 MISSING_CASE(fb_modifier);
2096 return cpp;
2097 }
2098}
2099
832be82f
VS
2100unsigned int intel_tile_height(const struct drm_i915_private *dev_priv,
2101 uint64_t fb_modifier, unsigned int cpp)
a57ce0b2 2102{
832be82f
VS
2103 if (fb_modifier == DRM_FORMAT_MOD_NONE)
2104 return 1;
2105 else
2106 return intel_tile_size(dev_priv) /
27ba3910 2107 intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
6761dd31
TU
2108}
2109
8d0deca8
VS
2110/* Return the tile dimensions in pixel units */
2111static void intel_tile_dims(const struct drm_i915_private *dev_priv,
2112 unsigned int *tile_width,
2113 unsigned int *tile_height,
2114 uint64_t fb_modifier,
2115 unsigned int cpp)
2116{
2117 unsigned int tile_width_bytes =
2118 intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
2119
2120 *tile_width = tile_width_bytes / cpp;
2121 *tile_height = intel_tile_size(dev_priv) / tile_width_bytes;
2122}
2123
6761dd31
TU
2124unsigned int
2125intel_fb_align_height(struct drm_device *dev, unsigned int height,
832be82f 2126 uint32_t pixel_format, uint64_t fb_modifier)
6761dd31 2127{
832be82f
VS
2128 unsigned int cpp = drm_format_plane_cpp(pixel_format, 0);
2129 unsigned int tile_height = intel_tile_height(to_i915(dev), fb_modifier, cpp);
2130
2131 return ALIGN(height, tile_height);
a57ce0b2
JB
2132}
2133
1663b9d6
VS
2134unsigned int intel_rotation_info_size(const struct intel_rotation_info *rot_info)
2135{
2136 unsigned int size = 0;
2137 int i;
2138
2139 for (i = 0 ; i < ARRAY_SIZE(rot_info->plane); i++)
2140 size += rot_info->plane[i].width * rot_info->plane[i].height;
2141
2142 return size;
2143}
2144
75c82a53 2145static void
3465c580
VS
2146intel_fill_fb_ggtt_view(struct i915_ggtt_view *view,
2147 const struct drm_framebuffer *fb,
2148 unsigned int rotation)
f64b98cd 2149{
2d7a215f
VS
2150 if (intel_rotation_90_or_270(rotation)) {
2151 *view = i915_ggtt_view_rotated;
2152 view->params.rotated = to_intel_framebuffer(fb)->rot_info;
2153 } else {
2154 *view = i915_ggtt_view_normal;
2155 }
2156}
50470bb0 2157
2d7a215f
VS
2158static void
2159intel_fill_fb_info(struct drm_i915_private *dev_priv,
2160 struct drm_framebuffer *fb)
2161{
2162 struct intel_rotation_info *info = &to_intel_framebuffer(fb)->rot_info;
2163 unsigned int tile_size, tile_width, tile_height, cpp;
50470bb0 2164
d9b3288e
VS
2165 tile_size = intel_tile_size(dev_priv);
2166
2167 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
8d0deca8
VS
2168 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2169 fb->modifier[0], cpp);
d9b3288e 2170
1663b9d6
VS
2171 info->plane[0].width = DIV_ROUND_UP(fb->pitches[0], tile_width * cpp);
2172 info->plane[0].height = DIV_ROUND_UP(fb->height, tile_height);
84fe03f7 2173
89e3e142 2174 if (info->pixel_format == DRM_FORMAT_NV12) {
832be82f 2175 cpp = drm_format_plane_cpp(fb->pixel_format, 1);
8d0deca8
VS
2176 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2177 fb->modifier[1], cpp);
d9b3288e 2178
2d7a215f 2179 info->uv_offset = fb->offsets[1];
1663b9d6
VS
2180 info->plane[1].width = DIV_ROUND_UP(fb->pitches[1], tile_width * cpp);
2181 info->plane[1].height = DIV_ROUND_UP(fb->height / 2, tile_height);
89e3e142 2182 }
f64b98cd
TU
2183}
2184
603525d7 2185static unsigned int intel_linear_alignment(const struct drm_i915_private *dev_priv)
4e9a86b6
VS
2186{
2187 if (INTEL_INFO(dev_priv)->gen >= 9)
2188 return 256 * 1024;
985b8bb4 2189 else if (IS_BROADWATER(dev_priv) || IS_CRESTLINE(dev_priv) ||
666a4537 2190 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
4e9a86b6
VS
2191 return 128 * 1024;
2192 else if (INTEL_INFO(dev_priv)->gen >= 4)
2193 return 4 * 1024;
2194 else
44c5905e 2195 return 0;
4e9a86b6
VS
2196}
2197
603525d7
VS
2198static unsigned int intel_surf_alignment(const struct drm_i915_private *dev_priv,
2199 uint64_t fb_modifier)
2200{
2201 switch (fb_modifier) {
2202 case DRM_FORMAT_MOD_NONE:
2203 return intel_linear_alignment(dev_priv);
2204 case I915_FORMAT_MOD_X_TILED:
2205 if (INTEL_INFO(dev_priv)->gen >= 9)
2206 return 256 * 1024;
2207 return 0;
2208 case I915_FORMAT_MOD_Y_TILED:
2209 case I915_FORMAT_MOD_Yf_TILED:
2210 return 1 * 1024 * 1024;
2211 default:
2212 MISSING_CASE(fb_modifier);
2213 return 0;
2214 }
2215}
2216
127bd2ac 2217int
3465c580
VS
2218intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb,
2219 unsigned int rotation)
6b95a207 2220{
850c4cdc 2221 struct drm_device *dev = fb->dev;
fac5e23e 2222 struct drm_i915_private *dev_priv = to_i915(dev);
850c4cdc 2223 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
f64b98cd 2224 struct i915_ggtt_view view;
6b95a207
KH
2225 u32 alignment;
2226 int ret;
2227
ebcdd39e
MR
2228 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2229
603525d7 2230 alignment = intel_surf_alignment(dev_priv, fb->modifier[0]);
6b95a207 2231
3465c580 2232 intel_fill_fb_ggtt_view(&view, fb, rotation);
f64b98cd 2233
693db184
CW
2234 /* Note that the w/a also requires 64 PTE of padding following the
2235 * bo. We currently fill all unused PTE with the shadow page and so
2236 * we should always have valid PTE following the scanout preventing
2237 * the VT-d warning.
2238 */
2239 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2240 alignment = 256 * 1024;
2241
d6dd6843
PZ
2242 /*
2243 * Global gtt pte registers are special registers which actually forward
2244 * writes to a chunk of system memory. Which means that there is no risk
2245 * that the register values disappear as soon as we call
2246 * intel_runtime_pm_put(), so it is correct to wrap only the
2247 * pin/unpin/fence and not more.
2248 */
2249 intel_runtime_pm_get(dev_priv);
2250
7580d774
ML
2251 ret = i915_gem_object_pin_to_display_plane(obj, alignment,
2252 &view);
48b956c5 2253 if (ret)
b26a6b35 2254 goto err_pm;
6b95a207
KH
2255
2256 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2257 * fence, whereas 965+ only requires a fence if using
2258 * framebuffer compression. For simplicity, we always install
2259 * a fence as the cost is not that onerous.
2260 */
9807216f
VK
2261 if (view.type == I915_GGTT_VIEW_NORMAL) {
2262 ret = i915_gem_object_get_fence(obj);
2263 if (ret == -EDEADLK) {
2264 /*
2265 * -EDEADLK means there are no free fences
2266 * no pending flips.
2267 *
2268 * This is propagated to atomic, but it uses
2269 * -EDEADLK to force a locking recovery, so
2270 * change the returned error to -EBUSY.
2271 */
2272 ret = -EBUSY;
2273 goto err_unpin;
2274 } else if (ret)
2275 goto err_unpin;
1690e1eb 2276
9807216f
VK
2277 i915_gem_object_pin_fence(obj);
2278 }
6b95a207 2279
d6dd6843 2280 intel_runtime_pm_put(dev_priv);
6b95a207 2281 return 0;
48b956c5
CW
2282
2283err_unpin:
f64b98cd 2284 i915_gem_object_unpin_from_display_plane(obj, &view);
b26a6b35 2285err_pm:
d6dd6843 2286 intel_runtime_pm_put(dev_priv);
48b956c5 2287 return ret;
6b95a207
KH
2288}
2289
fb4b8ce1 2290void intel_unpin_fb_obj(struct drm_framebuffer *fb, unsigned int rotation)
1690e1eb 2291{
82bc3b2d 2292 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
f64b98cd 2293 struct i915_ggtt_view view;
82bc3b2d 2294
ebcdd39e
MR
2295 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2296
3465c580 2297 intel_fill_fb_ggtt_view(&view, fb, rotation);
f64b98cd 2298
9807216f
VK
2299 if (view.type == I915_GGTT_VIEW_NORMAL)
2300 i915_gem_object_unpin_fence(obj);
2301
f64b98cd 2302 i915_gem_object_unpin_from_display_plane(obj, &view);
1690e1eb
CW
2303}
2304
29cf9491
VS
2305/*
2306 * Adjust the tile offset by moving the difference into
2307 * the x/y offsets.
2308 *
2309 * Input tile dimensions and pitch must already be
2310 * rotated to match x and y, and in pixel units.
2311 */
2312static u32 intel_adjust_tile_offset(int *x, int *y,
2313 unsigned int tile_width,
2314 unsigned int tile_height,
2315 unsigned int tile_size,
2316 unsigned int pitch_tiles,
2317 u32 old_offset,
2318 u32 new_offset)
2319{
2320 unsigned int tiles;
2321
2322 WARN_ON(old_offset & (tile_size - 1));
2323 WARN_ON(new_offset & (tile_size - 1));
2324 WARN_ON(new_offset > old_offset);
2325
2326 tiles = (old_offset - new_offset) / tile_size;
2327
2328 *y += tiles / pitch_tiles * tile_height;
2329 *x += tiles % pitch_tiles * tile_width;
2330
2331 return new_offset;
2332}
2333
8d0deca8
VS
2334/*
2335 * Computes the linear offset to the base tile and adjusts
2336 * x, y. bytes per pixel is assumed to be a power-of-two.
2337 *
2338 * In the 90/270 rotated case, x and y are assumed
2339 * to be already rotated to match the rotated GTT view, and
2340 * pitch is the tile_height aligned framebuffer height.
2341 */
4f2d9934
VS
2342u32 intel_compute_tile_offset(int *x, int *y,
2343 const struct drm_framebuffer *fb, int plane,
8d0deca8
VS
2344 unsigned int pitch,
2345 unsigned int rotation)
c2c75131 2346{
4f2d9934
VS
2347 const struct drm_i915_private *dev_priv = to_i915(fb->dev);
2348 uint64_t fb_modifier = fb->modifier[plane];
2349 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
29cf9491
VS
2350 u32 offset, offset_aligned, alignment;
2351
2352 alignment = intel_surf_alignment(dev_priv, fb_modifier);
2353 if (alignment)
2354 alignment--;
2355
b5c65338 2356 if (fb_modifier != DRM_FORMAT_MOD_NONE) {
8d0deca8
VS
2357 unsigned int tile_size, tile_width, tile_height;
2358 unsigned int tile_rows, tiles, pitch_tiles;
c2c75131 2359
d843310d 2360 tile_size = intel_tile_size(dev_priv);
8d0deca8
VS
2361 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2362 fb_modifier, cpp);
2363
2364 if (intel_rotation_90_or_270(rotation)) {
2365 pitch_tiles = pitch / tile_height;
2366 swap(tile_width, tile_height);
2367 } else {
2368 pitch_tiles = pitch / (tile_width * cpp);
2369 }
d843310d
VS
2370
2371 tile_rows = *y / tile_height;
2372 *y %= tile_height;
c2c75131 2373
8d0deca8
VS
2374 tiles = *x / tile_width;
2375 *x %= tile_width;
bc752862 2376
29cf9491
VS
2377 offset = (tile_rows * pitch_tiles + tiles) * tile_size;
2378 offset_aligned = offset & ~alignment;
bc752862 2379
29cf9491
VS
2380 intel_adjust_tile_offset(x, y, tile_width, tile_height,
2381 tile_size, pitch_tiles,
2382 offset, offset_aligned);
2383 } else {
bc752862 2384 offset = *y * pitch + *x * cpp;
29cf9491
VS
2385 offset_aligned = offset & ~alignment;
2386
4e9a86b6
VS
2387 *y = (offset & alignment) / pitch;
2388 *x = ((offset & alignment) - *y * pitch) / cpp;
bc752862 2389 }
29cf9491
VS
2390
2391 return offset_aligned;
c2c75131
DV
2392}
2393
b35d63fa 2394static int i9xx_format_to_fourcc(int format)
46f297fb
JB
2395{
2396 switch (format) {
2397 case DISPPLANE_8BPP:
2398 return DRM_FORMAT_C8;
2399 case DISPPLANE_BGRX555:
2400 return DRM_FORMAT_XRGB1555;
2401 case DISPPLANE_BGRX565:
2402 return DRM_FORMAT_RGB565;
2403 default:
2404 case DISPPLANE_BGRX888:
2405 return DRM_FORMAT_XRGB8888;
2406 case DISPPLANE_RGBX888:
2407 return DRM_FORMAT_XBGR8888;
2408 case DISPPLANE_BGRX101010:
2409 return DRM_FORMAT_XRGB2101010;
2410 case DISPPLANE_RGBX101010:
2411 return DRM_FORMAT_XBGR2101010;
2412 }
2413}
2414
bc8d7dff
DL
2415static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2416{
2417 switch (format) {
2418 case PLANE_CTL_FORMAT_RGB_565:
2419 return DRM_FORMAT_RGB565;
2420 default:
2421 case PLANE_CTL_FORMAT_XRGB_8888:
2422 if (rgb_order) {
2423 if (alpha)
2424 return DRM_FORMAT_ABGR8888;
2425 else
2426 return DRM_FORMAT_XBGR8888;
2427 } else {
2428 if (alpha)
2429 return DRM_FORMAT_ARGB8888;
2430 else
2431 return DRM_FORMAT_XRGB8888;
2432 }
2433 case PLANE_CTL_FORMAT_XRGB_2101010:
2434 if (rgb_order)
2435 return DRM_FORMAT_XBGR2101010;
2436 else
2437 return DRM_FORMAT_XRGB2101010;
2438 }
2439}
2440
5724dbd1 2441static bool
f6936e29
DV
2442intel_alloc_initial_plane_obj(struct intel_crtc *crtc,
2443 struct intel_initial_plane_config *plane_config)
46f297fb
JB
2444{
2445 struct drm_device *dev = crtc->base.dev;
3badb49f 2446 struct drm_i915_private *dev_priv = to_i915(dev);
72e96d64 2447 struct i915_ggtt *ggtt = &dev_priv->ggtt;
46f297fb
JB
2448 struct drm_i915_gem_object *obj = NULL;
2449 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2d14030b 2450 struct drm_framebuffer *fb = &plane_config->fb->base;
f37b5c2b
DV
2451 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2452 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2453 PAGE_SIZE);
2454
2455 size_aligned -= base_aligned;
46f297fb 2456
ff2652ea
CW
2457 if (plane_config->size == 0)
2458 return false;
2459
3badb49f
PZ
2460 /* If the FB is too big, just don't use it since fbdev is not very
2461 * important and we should probably use that space with FBC or other
2462 * features. */
72e96d64 2463 if (size_aligned * 2 > ggtt->stolen_usable_size)
3badb49f
PZ
2464 return false;
2465
12c83d99
TU
2466 mutex_lock(&dev->struct_mutex);
2467
f37b5c2b
DV
2468 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2469 base_aligned,
2470 base_aligned,
2471 size_aligned);
12c83d99
TU
2472 if (!obj) {
2473 mutex_unlock(&dev->struct_mutex);
484b41dd 2474 return false;
12c83d99 2475 }
46f297fb 2476
49af449b
DL
2477 obj->tiling_mode = plane_config->tiling;
2478 if (obj->tiling_mode == I915_TILING_X)
6bf129df 2479 obj->stride = fb->pitches[0];
46f297fb 2480
6bf129df
DL
2481 mode_cmd.pixel_format = fb->pixel_format;
2482 mode_cmd.width = fb->width;
2483 mode_cmd.height = fb->height;
2484 mode_cmd.pitches[0] = fb->pitches[0];
18c5247e
DV
2485 mode_cmd.modifier[0] = fb->modifier[0];
2486 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
46f297fb 2487
6bf129df 2488 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
484b41dd 2489 &mode_cmd, obj)) {
46f297fb
JB
2490 DRM_DEBUG_KMS("intel fb init failed\n");
2491 goto out_unref_obj;
2492 }
12c83d99 2493
46f297fb 2494 mutex_unlock(&dev->struct_mutex);
484b41dd 2495
f6936e29 2496 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
484b41dd 2497 return true;
46f297fb
JB
2498
2499out_unref_obj:
2500 drm_gem_object_unreference(&obj->base);
2501 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2502 return false;
2503}
2504
5a21b665
DV
2505/* Update plane->state->fb to match plane->fb after driver-internal updates */
2506static void
2507update_state_fb(struct drm_plane *plane)
2508{
2509 if (plane->fb == plane->state->fb)
2510 return;
2511
2512 if (plane->state->fb)
2513 drm_framebuffer_unreference(plane->state->fb);
2514 plane->state->fb = plane->fb;
2515 if (plane->state->fb)
2516 drm_framebuffer_reference(plane->state->fb);
2517}
2518
5724dbd1 2519static void
f6936e29
DV
2520intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2521 struct intel_initial_plane_config *plane_config)
484b41dd
JB
2522{
2523 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 2524 struct drm_i915_private *dev_priv = to_i915(dev);
484b41dd
JB
2525 struct drm_crtc *c;
2526 struct intel_crtc *i;
2ff8fde1 2527 struct drm_i915_gem_object *obj;
88595ac9 2528 struct drm_plane *primary = intel_crtc->base.primary;
be5651f2 2529 struct drm_plane_state *plane_state = primary->state;
200757f5
MR
2530 struct drm_crtc_state *crtc_state = intel_crtc->base.state;
2531 struct intel_plane *intel_plane = to_intel_plane(primary);
0a8d8a86
MR
2532 struct intel_plane_state *intel_state =
2533 to_intel_plane_state(plane_state);
88595ac9 2534 struct drm_framebuffer *fb;
484b41dd 2535
2d14030b 2536 if (!plane_config->fb)
484b41dd
JB
2537 return;
2538
f6936e29 2539 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
88595ac9
DV
2540 fb = &plane_config->fb->base;
2541 goto valid_fb;
f55548b5 2542 }
484b41dd 2543
2d14030b 2544 kfree(plane_config->fb);
484b41dd
JB
2545
2546 /*
2547 * Failed to alloc the obj, check to see if we should share
2548 * an fb with another CRTC instead
2549 */
70e1e0ec 2550 for_each_crtc(dev, c) {
484b41dd
JB
2551 i = to_intel_crtc(c);
2552
2553 if (c == &intel_crtc->base)
2554 continue;
2555
2ff8fde1
MR
2556 if (!i->active)
2557 continue;
2558
88595ac9
DV
2559 fb = c->primary->fb;
2560 if (!fb)
484b41dd
JB
2561 continue;
2562
88595ac9 2563 obj = intel_fb_obj(fb);
2ff8fde1 2564 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
88595ac9
DV
2565 drm_framebuffer_reference(fb);
2566 goto valid_fb;
484b41dd
JB
2567 }
2568 }
88595ac9 2569
200757f5
MR
2570 /*
2571 * We've failed to reconstruct the BIOS FB. Current display state
2572 * indicates that the primary plane is visible, but has a NULL FB,
2573 * which will lead to problems later if we don't fix it up. The
2574 * simplest solution is to just disable the primary plane now and
2575 * pretend the BIOS never had it enabled.
2576 */
2577 to_intel_plane_state(plane_state)->visible = false;
2578 crtc_state->plane_mask &= ~(1 << drm_plane_index(primary));
2622a081 2579 intel_pre_disable_primary_noatomic(&intel_crtc->base);
200757f5
MR
2580 intel_plane->disable_plane(primary, &intel_crtc->base);
2581
88595ac9
DV
2582 return;
2583
2584valid_fb:
f44e2659
VS
2585 plane_state->src_x = 0;
2586 plane_state->src_y = 0;
be5651f2
ML
2587 plane_state->src_w = fb->width << 16;
2588 plane_state->src_h = fb->height << 16;
2589
f44e2659
VS
2590 plane_state->crtc_x = 0;
2591 plane_state->crtc_y = 0;
be5651f2
ML
2592 plane_state->crtc_w = fb->width;
2593 plane_state->crtc_h = fb->height;
2594
0a8d8a86
MR
2595 intel_state->src.x1 = plane_state->src_x;
2596 intel_state->src.y1 = plane_state->src_y;
2597 intel_state->src.x2 = plane_state->src_x + plane_state->src_w;
2598 intel_state->src.y2 = plane_state->src_y + plane_state->src_h;
2599 intel_state->dst.x1 = plane_state->crtc_x;
2600 intel_state->dst.y1 = plane_state->crtc_y;
2601 intel_state->dst.x2 = plane_state->crtc_x + plane_state->crtc_w;
2602 intel_state->dst.y2 = plane_state->crtc_y + plane_state->crtc_h;
2603
88595ac9
DV
2604 obj = intel_fb_obj(fb);
2605 if (obj->tiling_mode != I915_TILING_NONE)
2606 dev_priv->preserve_bios_swizzle = true;
2607
be5651f2
ML
2608 drm_framebuffer_reference(fb);
2609 primary->fb = primary->state->fb = fb;
36750f28 2610 primary->crtc = primary->state->crtc = &intel_crtc->base;
36750f28 2611 intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary));
a9ff8714 2612 obj->frontbuffer_bits |= to_intel_plane(primary)->frontbuffer_bit;
46f297fb
JB
2613}
2614
a8d201af
ML
2615static void i9xx_update_primary_plane(struct drm_plane *primary,
2616 const struct intel_crtc_state *crtc_state,
2617 const struct intel_plane_state *plane_state)
81255565 2618{
a8d201af 2619 struct drm_device *dev = primary->dev;
fac5e23e 2620 struct drm_i915_private *dev_priv = to_i915(dev);
a8d201af
ML
2621 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2622 struct drm_framebuffer *fb = plane_state->base.fb;
2623 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
81255565 2624 int plane = intel_crtc->plane;
54ea9da8 2625 u32 linear_offset;
81255565 2626 u32 dspcntr;
f0f59a00 2627 i915_reg_t reg = DSPCNTR(plane);
8d0deca8 2628 unsigned int rotation = plane_state->base.rotation;
ac484963 2629 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
54ea9da8
VS
2630 int x = plane_state->src.x1 >> 16;
2631 int y = plane_state->src.y1 >> 16;
c9ba6fad 2632
f45651ba
VS
2633 dspcntr = DISPPLANE_GAMMA_ENABLE;
2634
fdd508a6 2635 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2636
2637 if (INTEL_INFO(dev)->gen < 4) {
2638 if (intel_crtc->pipe == PIPE_B)
2639 dspcntr |= DISPPLANE_SEL_PIPE_B;
2640
2641 /* pipesrc and dspsize control the size that is scaled from,
2642 * which should always be the user's requested size.
2643 */
2644 I915_WRITE(DSPSIZE(plane),
a8d201af
ML
2645 ((crtc_state->pipe_src_h - 1) << 16) |
2646 (crtc_state->pipe_src_w - 1));
f45651ba 2647 I915_WRITE(DSPPOS(plane), 0);
c14b0485
VS
2648 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2649 I915_WRITE(PRIMSIZE(plane),
a8d201af
ML
2650 ((crtc_state->pipe_src_h - 1) << 16) |
2651 (crtc_state->pipe_src_w - 1));
c14b0485
VS
2652 I915_WRITE(PRIMPOS(plane), 0);
2653 I915_WRITE(PRIMCNSTALPHA(plane), 0);
f45651ba 2654 }
81255565 2655
57779d06
VS
2656 switch (fb->pixel_format) {
2657 case DRM_FORMAT_C8:
81255565
JB
2658 dspcntr |= DISPPLANE_8BPP;
2659 break;
57779d06 2660 case DRM_FORMAT_XRGB1555:
57779d06 2661 dspcntr |= DISPPLANE_BGRX555;
81255565 2662 break;
57779d06
VS
2663 case DRM_FORMAT_RGB565:
2664 dspcntr |= DISPPLANE_BGRX565;
2665 break;
2666 case DRM_FORMAT_XRGB8888:
57779d06
VS
2667 dspcntr |= DISPPLANE_BGRX888;
2668 break;
2669 case DRM_FORMAT_XBGR8888:
57779d06
VS
2670 dspcntr |= DISPPLANE_RGBX888;
2671 break;
2672 case DRM_FORMAT_XRGB2101010:
57779d06
VS
2673 dspcntr |= DISPPLANE_BGRX101010;
2674 break;
2675 case DRM_FORMAT_XBGR2101010:
57779d06 2676 dspcntr |= DISPPLANE_RGBX101010;
81255565
JB
2677 break;
2678 default:
baba133a 2679 BUG();
81255565 2680 }
57779d06 2681
f45651ba
VS
2682 if (INTEL_INFO(dev)->gen >= 4 &&
2683 obj->tiling_mode != I915_TILING_NONE)
2684 dspcntr |= DISPPLANE_TILED;
81255565 2685
de1aa629
VS
2686 if (IS_G4X(dev))
2687 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2688
ac484963 2689 linear_offset = y * fb->pitches[0] + x * cpp;
81255565 2690
c2c75131
DV
2691 if (INTEL_INFO(dev)->gen >= 4) {
2692 intel_crtc->dspaddr_offset =
4f2d9934 2693 intel_compute_tile_offset(&x, &y, fb, 0,
8d0deca8 2694 fb->pitches[0], rotation);
c2c75131
DV
2695 linear_offset -= intel_crtc->dspaddr_offset;
2696 } else {
e506a0c6 2697 intel_crtc->dspaddr_offset = linear_offset;
c2c75131 2698 }
e506a0c6 2699
8d0deca8 2700 if (rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2701 dspcntr |= DISPPLANE_ROTATE_180;
2702
a8d201af
ML
2703 x += (crtc_state->pipe_src_w - 1);
2704 y += (crtc_state->pipe_src_h - 1);
48404c1e
SJ
2705
2706 /* Finding the last pixel of the last line of the display
2707 data and adding to linear_offset*/
2708 linear_offset +=
a8d201af 2709 (crtc_state->pipe_src_h - 1) * fb->pitches[0] +
ac484963 2710 (crtc_state->pipe_src_w - 1) * cpp;
48404c1e
SJ
2711 }
2712
2db3366b
PZ
2713 intel_crtc->adjusted_x = x;
2714 intel_crtc->adjusted_y = y;
2715
48404c1e
SJ
2716 I915_WRITE(reg, dspcntr);
2717
01f2c773 2718 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
a6c45cf0 2719 if (INTEL_INFO(dev)->gen >= 4) {
85ba7b7d
DV
2720 I915_WRITE(DSPSURF(plane),
2721 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
5eddb70b 2722 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
e506a0c6 2723 I915_WRITE(DSPLINOFF(plane), linear_offset);
5eddb70b 2724 } else
f343c5f6 2725 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
5eddb70b 2726 POSTING_READ(reg);
17638cd6
JB
2727}
2728
a8d201af
ML
2729static void i9xx_disable_primary_plane(struct drm_plane *primary,
2730 struct drm_crtc *crtc)
17638cd6
JB
2731{
2732 struct drm_device *dev = crtc->dev;
fac5e23e 2733 struct drm_i915_private *dev_priv = to_i915(dev);
17638cd6 2734 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
17638cd6 2735 int plane = intel_crtc->plane;
f45651ba 2736
a8d201af
ML
2737 I915_WRITE(DSPCNTR(plane), 0);
2738 if (INTEL_INFO(dev_priv)->gen >= 4)
fdd508a6 2739 I915_WRITE(DSPSURF(plane), 0);
a8d201af
ML
2740 else
2741 I915_WRITE(DSPADDR(plane), 0);
2742 POSTING_READ(DSPCNTR(plane));
2743}
c9ba6fad 2744
a8d201af
ML
2745static void ironlake_update_primary_plane(struct drm_plane *primary,
2746 const struct intel_crtc_state *crtc_state,
2747 const struct intel_plane_state *plane_state)
2748{
2749 struct drm_device *dev = primary->dev;
fac5e23e 2750 struct drm_i915_private *dev_priv = to_i915(dev);
a8d201af
ML
2751 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2752 struct drm_framebuffer *fb = plane_state->base.fb;
2753 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
2754 int plane = intel_crtc->plane;
54ea9da8 2755 u32 linear_offset;
a8d201af
ML
2756 u32 dspcntr;
2757 i915_reg_t reg = DSPCNTR(plane);
8d0deca8 2758 unsigned int rotation = plane_state->base.rotation;
ac484963 2759 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
a8d201af
ML
2760 int x = plane_state->src.x1 >> 16;
2761 int y = plane_state->src.y1 >> 16;
c9ba6fad 2762
f45651ba 2763 dspcntr = DISPPLANE_GAMMA_ENABLE;
fdd508a6 2764 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2765
2766 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2767 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
17638cd6 2768
57779d06
VS
2769 switch (fb->pixel_format) {
2770 case DRM_FORMAT_C8:
17638cd6
JB
2771 dspcntr |= DISPPLANE_8BPP;
2772 break;
57779d06
VS
2773 case DRM_FORMAT_RGB565:
2774 dspcntr |= DISPPLANE_BGRX565;
17638cd6 2775 break;
57779d06 2776 case DRM_FORMAT_XRGB8888:
57779d06
VS
2777 dspcntr |= DISPPLANE_BGRX888;
2778 break;
2779 case DRM_FORMAT_XBGR8888:
57779d06
VS
2780 dspcntr |= DISPPLANE_RGBX888;
2781 break;
2782 case DRM_FORMAT_XRGB2101010:
57779d06
VS
2783 dspcntr |= DISPPLANE_BGRX101010;
2784 break;
2785 case DRM_FORMAT_XBGR2101010:
57779d06 2786 dspcntr |= DISPPLANE_RGBX101010;
17638cd6
JB
2787 break;
2788 default:
baba133a 2789 BUG();
17638cd6
JB
2790 }
2791
2792 if (obj->tiling_mode != I915_TILING_NONE)
2793 dspcntr |= DISPPLANE_TILED;
17638cd6 2794
f45651ba 2795 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
1f5d76db 2796 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
17638cd6 2797
ac484963 2798 linear_offset = y * fb->pitches[0] + x * cpp;
c2c75131 2799 intel_crtc->dspaddr_offset =
4f2d9934 2800 intel_compute_tile_offset(&x, &y, fb, 0,
8d0deca8 2801 fb->pitches[0], rotation);
c2c75131 2802 linear_offset -= intel_crtc->dspaddr_offset;
8d0deca8 2803 if (rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2804 dspcntr |= DISPPLANE_ROTATE_180;
2805
2806 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
a8d201af
ML
2807 x += (crtc_state->pipe_src_w - 1);
2808 y += (crtc_state->pipe_src_h - 1);
48404c1e
SJ
2809
2810 /* Finding the last pixel of the last line of the display
2811 data and adding to linear_offset*/
2812 linear_offset +=
a8d201af 2813 (crtc_state->pipe_src_h - 1) * fb->pitches[0] +
ac484963 2814 (crtc_state->pipe_src_w - 1) * cpp;
48404c1e
SJ
2815 }
2816 }
2817
2db3366b
PZ
2818 intel_crtc->adjusted_x = x;
2819 intel_crtc->adjusted_y = y;
2820
48404c1e 2821 I915_WRITE(reg, dspcntr);
17638cd6 2822
01f2c773 2823 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
85ba7b7d
DV
2824 I915_WRITE(DSPSURF(plane),
2825 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
b3dc685e 2826 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
bc1c91eb
DL
2827 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2828 } else {
2829 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2830 I915_WRITE(DSPLINOFF(plane), linear_offset);
2831 }
17638cd6 2832 POSTING_READ(reg);
17638cd6
JB
2833}
2834
7b49f948
VS
2835u32 intel_fb_stride_alignment(const struct drm_i915_private *dev_priv,
2836 uint64_t fb_modifier, uint32_t pixel_format)
b321803d 2837{
7b49f948 2838 if (fb_modifier == DRM_FORMAT_MOD_NONE) {
b321803d 2839 return 64;
7b49f948
VS
2840 } else {
2841 int cpp = drm_format_plane_cpp(pixel_format, 0);
2842
27ba3910 2843 return intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
b321803d
DL
2844 }
2845}
2846
44eb0cb9
MK
2847u32 intel_plane_obj_offset(struct intel_plane *intel_plane,
2848 struct drm_i915_gem_object *obj,
2849 unsigned int plane)
121920fa 2850{
ce7f1728 2851 struct i915_ggtt_view view;
dedf278c 2852 struct i915_vma *vma;
44eb0cb9 2853 u64 offset;
121920fa 2854
e7941294 2855 intel_fill_fb_ggtt_view(&view, intel_plane->base.state->fb,
3465c580 2856 intel_plane->base.state->rotation);
121920fa 2857
ce7f1728 2858 vma = i915_gem_obj_to_ggtt_view(obj, &view);
dedf278c 2859 if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n",
ce7f1728 2860 view.type))
dedf278c
TU
2861 return -1;
2862
44eb0cb9 2863 offset = vma->node.start;
dedf278c
TU
2864
2865 if (plane == 1) {
7723f47d 2866 offset += vma->ggtt_view.params.rotated.uv_start_page *
dedf278c
TU
2867 PAGE_SIZE;
2868 }
2869
44eb0cb9
MK
2870 WARN_ON(upper_32_bits(offset));
2871
2872 return lower_32_bits(offset);
121920fa
TU
2873}
2874
e435d6e5
ML
2875static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id)
2876{
2877 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 2878 struct drm_i915_private *dev_priv = to_i915(dev);
e435d6e5
ML
2879
2880 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0);
2881 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0);
2882 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0);
e435d6e5
ML
2883}
2884
a1b2278e
CK
2885/*
2886 * This function detaches (aka. unbinds) unused scalers in hardware
2887 */
0583236e 2888static void skl_detach_scalers(struct intel_crtc *intel_crtc)
a1b2278e 2889{
a1b2278e
CK
2890 struct intel_crtc_scaler_state *scaler_state;
2891 int i;
2892
a1b2278e
CK
2893 scaler_state = &intel_crtc->config->scaler_state;
2894
2895 /* loop through and disable scalers that aren't in use */
2896 for (i = 0; i < intel_crtc->num_scalers; i++) {
e435d6e5
ML
2897 if (!scaler_state->scalers[i].in_use)
2898 skl_detach_scaler(intel_crtc, i);
a1b2278e
CK
2899 }
2900}
2901
6156a456 2902u32 skl_plane_ctl_format(uint32_t pixel_format)
70d21f0e 2903{
6156a456 2904 switch (pixel_format) {
d161cf7a 2905 case DRM_FORMAT_C8:
c34ce3d1 2906 return PLANE_CTL_FORMAT_INDEXED;
70d21f0e 2907 case DRM_FORMAT_RGB565:
c34ce3d1 2908 return PLANE_CTL_FORMAT_RGB_565;
70d21f0e 2909 case DRM_FORMAT_XBGR8888:
c34ce3d1 2910 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
6156a456 2911 case DRM_FORMAT_XRGB8888:
c34ce3d1 2912 return PLANE_CTL_FORMAT_XRGB_8888;
6156a456
CK
2913 /*
2914 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
2915 * to be already pre-multiplied. We need to add a knob (or a different
2916 * DRM_FORMAT) for user-space to configure that.
2917 */
f75fb42a 2918 case DRM_FORMAT_ABGR8888:
c34ce3d1 2919 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
6156a456 2920 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
6156a456 2921 case DRM_FORMAT_ARGB8888:
c34ce3d1 2922 return PLANE_CTL_FORMAT_XRGB_8888 |
6156a456 2923 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
70d21f0e 2924 case DRM_FORMAT_XRGB2101010:
c34ce3d1 2925 return PLANE_CTL_FORMAT_XRGB_2101010;
70d21f0e 2926 case DRM_FORMAT_XBGR2101010:
c34ce3d1 2927 return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
6156a456 2928 case DRM_FORMAT_YUYV:
c34ce3d1 2929 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
6156a456 2930 case DRM_FORMAT_YVYU:
c34ce3d1 2931 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
6156a456 2932 case DRM_FORMAT_UYVY:
c34ce3d1 2933 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
6156a456 2934 case DRM_FORMAT_VYUY:
c34ce3d1 2935 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
70d21f0e 2936 default:
4249eeef 2937 MISSING_CASE(pixel_format);
70d21f0e 2938 }
8cfcba41 2939
c34ce3d1 2940 return 0;
6156a456 2941}
70d21f0e 2942
6156a456
CK
2943u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
2944{
6156a456 2945 switch (fb_modifier) {
30af77c4 2946 case DRM_FORMAT_MOD_NONE:
70d21f0e 2947 break;
30af77c4 2948 case I915_FORMAT_MOD_X_TILED:
c34ce3d1 2949 return PLANE_CTL_TILED_X;
b321803d 2950 case I915_FORMAT_MOD_Y_TILED:
c34ce3d1 2951 return PLANE_CTL_TILED_Y;
b321803d 2952 case I915_FORMAT_MOD_Yf_TILED:
c34ce3d1 2953 return PLANE_CTL_TILED_YF;
70d21f0e 2954 default:
6156a456 2955 MISSING_CASE(fb_modifier);
70d21f0e 2956 }
8cfcba41 2957
c34ce3d1 2958 return 0;
6156a456 2959}
70d21f0e 2960
6156a456
CK
2961u32 skl_plane_ctl_rotation(unsigned int rotation)
2962{
3b7a5119 2963 switch (rotation) {
6156a456
CK
2964 case BIT(DRM_ROTATE_0):
2965 break;
1e8df167
SJ
2966 /*
2967 * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr
2968 * while i915 HW rotation is clockwise, thats why this swapping.
2969 */
3b7a5119 2970 case BIT(DRM_ROTATE_90):
1e8df167 2971 return PLANE_CTL_ROTATE_270;
3b7a5119 2972 case BIT(DRM_ROTATE_180):
c34ce3d1 2973 return PLANE_CTL_ROTATE_180;
3b7a5119 2974 case BIT(DRM_ROTATE_270):
1e8df167 2975 return PLANE_CTL_ROTATE_90;
6156a456
CK
2976 default:
2977 MISSING_CASE(rotation);
2978 }
2979
c34ce3d1 2980 return 0;
6156a456
CK
2981}
2982
a8d201af
ML
2983static void skylake_update_primary_plane(struct drm_plane *plane,
2984 const struct intel_crtc_state *crtc_state,
2985 const struct intel_plane_state *plane_state)
6156a456 2986{
a8d201af 2987 struct drm_device *dev = plane->dev;
fac5e23e 2988 struct drm_i915_private *dev_priv = to_i915(dev);
a8d201af
ML
2989 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2990 struct drm_framebuffer *fb = plane_state->base.fb;
2991 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
6156a456
CK
2992 int pipe = intel_crtc->pipe;
2993 u32 plane_ctl, stride_div, stride;
2994 u32 tile_height, plane_offset, plane_size;
a8d201af 2995 unsigned int rotation = plane_state->base.rotation;
6156a456 2996 int x_offset, y_offset;
44eb0cb9 2997 u32 surf_addr;
a8d201af
ML
2998 int scaler_id = plane_state->scaler_id;
2999 int src_x = plane_state->src.x1 >> 16;
3000 int src_y = plane_state->src.y1 >> 16;
3001 int src_w = drm_rect_width(&plane_state->src) >> 16;
3002 int src_h = drm_rect_height(&plane_state->src) >> 16;
3003 int dst_x = plane_state->dst.x1;
3004 int dst_y = plane_state->dst.y1;
3005 int dst_w = drm_rect_width(&plane_state->dst);
3006 int dst_h = drm_rect_height(&plane_state->dst);
70d21f0e 3007
6156a456
CK
3008 plane_ctl = PLANE_CTL_ENABLE |
3009 PLANE_CTL_PIPE_GAMMA_ENABLE |
3010 PLANE_CTL_PIPE_CSC_ENABLE;
3011
3012 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3013 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
3014 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
6156a456
CK
3015 plane_ctl |= skl_plane_ctl_rotation(rotation);
3016
7b49f948 3017 stride_div = intel_fb_stride_alignment(dev_priv, fb->modifier[0],
b321803d 3018 fb->pixel_format);
dedf278c 3019 surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj, 0);
3b7a5119 3020
a42e5a23
PZ
3021 WARN_ON(drm_rect_width(&plane_state->src) == 0);
3022
3b7a5119 3023 if (intel_rotation_90_or_270(rotation)) {
832be82f
VS
3024 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
3025
3b7a5119 3026 /* stride = Surface height in tiles */
832be82f 3027 tile_height = intel_tile_height(dev_priv, fb->modifier[0], cpp);
3b7a5119 3028 stride = DIV_ROUND_UP(fb->height, tile_height);
a8d201af
ML
3029 x_offset = stride * tile_height - src_y - src_h;
3030 y_offset = src_x;
6156a456 3031 plane_size = (src_w - 1) << 16 | (src_h - 1);
3b7a5119
SJ
3032 } else {
3033 stride = fb->pitches[0] / stride_div;
a8d201af
ML
3034 x_offset = src_x;
3035 y_offset = src_y;
6156a456 3036 plane_size = (src_h - 1) << 16 | (src_w - 1);
3b7a5119
SJ
3037 }
3038 plane_offset = y_offset << 16 | x_offset;
b321803d 3039
2db3366b
PZ
3040 intel_crtc->adjusted_x = x_offset;
3041 intel_crtc->adjusted_y = y_offset;
3042
70d21f0e 3043 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
3b7a5119
SJ
3044 I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset);
3045 I915_WRITE(PLANE_SIZE(pipe, 0), plane_size);
3046 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
6156a456
CK
3047
3048 if (scaler_id >= 0) {
3049 uint32_t ps_ctrl = 0;
3050
3051 WARN_ON(!dst_w || !dst_h);
3052 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3053 crtc_state->scaler_state.scalers[scaler_id].mode;
3054 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3055 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3056 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3057 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3058 I915_WRITE(PLANE_POS(pipe, 0), 0);
3059 } else {
3060 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3061 }
3062
121920fa 3063 I915_WRITE(PLANE_SURF(pipe, 0), surf_addr);
70d21f0e
DL
3064
3065 POSTING_READ(PLANE_SURF(pipe, 0));
3066}
3067
a8d201af
ML
3068static void skylake_disable_primary_plane(struct drm_plane *primary,
3069 struct drm_crtc *crtc)
17638cd6
JB
3070{
3071 struct drm_device *dev = crtc->dev;
fac5e23e 3072 struct drm_i915_private *dev_priv = to_i915(dev);
a8d201af 3073 int pipe = to_intel_crtc(crtc)->pipe;
17638cd6 3074
a8d201af
ML
3075 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3076 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3077 POSTING_READ(PLANE_SURF(pipe, 0));
3078}
29b9bde6 3079
a8d201af
ML
3080/* Assume fb object is pinned & idle & fenced and just update base pointers */
3081static int
3082intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3083 int x, int y, enum mode_set_atomic state)
3084{
3085 /* Support for kgdboc is disabled, this needs a major rework. */
3086 DRM_ERROR("legacy panic handler not supported any more.\n");
3087
3088 return -ENODEV;
81255565
JB
3089}
3090
5a21b665
DV
3091static void intel_complete_page_flips(struct drm_i915_private *dev_priv)
3092{
3093 struct intel_crtc *crtc;
3094
91c8a326 3095 for_each_intel_crtc(&dev_priv->drm, crtc)
5a21b665
DV
3096 intel_finish_page_flip_cs(dev_priv, crtc->pipe);
3097}
3098
7514747d
VS
3099static void intel_update_primary_planes(struct drm_device *dev)
3100{
7514747d 3101 struct drm_crtc *crtc;
96a02917 3102
70e1e0ec 3103 for_each_crtc(dev, crtc) {
11c22da6
ML
3104 struct intel_plane *plane = to_intel_plane(crtc->primary);
3105 struct intel_plane_state *plane_state;
96a02917 3106
11c22da6 3107 drm_modeset_lock_crtc(crtc, &plane->base);
11c22da6
ML
3108 plane_state = to_intel_plane_state(plane->base.state);
3109
a8d201af
ML
3110 if (plane_state->visible)
3111 plane->update_plane(&plane->base,
3112 to_intel_crtc_state(crtc->state),
3113 plane_state);
11c22da6
ML
3114
3115 drm_modeset_unlock_crtc(crtc);
96a02917
VS
3116 }
3117}
3118
c033666a 3119void intel_prepare_reset(struct drm_i915_private *dev_priv)
7514747d
VS
3120{
3121 /* no reset support for gen2 */
c033666a 3122 if (IS_GEN2(dev_priv))
7514747d
VS
3123 return;
3124
3125 /* reset doesn't touch the display */
c033666a 3126 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
7514747d
VS
3127 return;
3128
91c8a326 3129 drm_modeset_lock_all(&dev_priv->drm);
f98ce92f
VS
3130 /*
3131 * Disabling the crtcs gracefully seems nicer. Also the
3132 * g33 docs say we should at least disable all the planes.
3133 */
91c8a326 3134 intel_display_suspend(&dev_priv->drm);
7514747d
VS
3135}
3136
c033666a 3137void intel_finish_reset(struct drm_i915_private *dev_priv)
7514747d 3138{
5a21b665
DV
3139 /*
3140 * Flips in the rings will be nuked by the reset,
3141 * so complete all pending flips so that user space
3142 * will get its events and not get stuck.
3143 */
3144 intel_complete_page_flips(dev_priv);
3145
7514747d 3146 /* no reset support for gen2 */
c033666a 3147 if (IS_GEN2(dev_priv))
7514747d
VS
3148 return;
3149
3150 /* reset doesn't touch the display */
c033666a 3151 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv)) {
7514747d
VS
3152 /*
3153 * Flips in the rings have been nuked by the reset,
3154 * so update the base address of all primary
3155 * planes to the the last fb to make sure we're
3156 * showing the correct fb after a reset.
11c22da6
ML
3157 *
3158 * FIXME: Atomic will make this obsolete since we won't schedule
3159 * CS-based flips (which might get lost in gpu resets) any more.
7514747d 3160 */
91c8a326 3161 intel_update_primary_planes(&dev_priv->drm);
7514747d
VS
3162 return;
3163 }
3164
3165 /*
3166 * The display has been reset as well,
3167 * so need a full re-initialization.
3168 */
3169 intel_runtime_pm_disable_interrupts(dev_priv);
3170 intel_runtime_pm_enable_interrupts(dev_priv);
3171
91c8a326 3172 intel_modeset_init_hw(&dev_priv->drm);
7514747d
VS
3173
3174 spin_lock_irq(&dev_priv->irq_lock);
3175 if (dev_priv->display.hpd_irq_setup)
91d14251 3176 dev_priv->display.hpd_irq_setup(dev_priv);
7514747d
VS
3177 spin_unlock_irq(&dev_priv->irq_lock);
3178
91c8a326 3179 intel_display_resume(&dev_priv->drm);
7514747d
VS
3180
3181 intel_hpd_init(dev_priv);
3182
91c8a326 3183 drm_modeset_unlock_all(&dev_priv->drm);
7514747d
VS
3184}
3185
7d5e3799
CW
3186static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3187{
5a21b665
DV
3188 struct drm_device *dev = crtc->dev;
3189 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3190 unsigned reset_counter;
3191 bool pending;
3192
3193 reset_counter = i915_reset_counter(&to_i915(dev)->gpu_error);
3194 if (intel_crtc->reset_counter != reset_counter)
3195 return false;
3196
3197 spin_lock_irq(&dev->event_lock);
3198 pending = to_intel_crtc(crtc)->flip_work != NULL;
3199 spin_unlock_irq(&dev->event_lock);
3200
3201 return pending;
7d5e3799
CW
3202}
3203
bfd16b2a
ML
3204static void intel_update_pipe_config(struct intel_crtc *crtc,
3205 struct intel_crtc_state *old_crtc_state)
e30e8f75
GP
3206{
3207 struct drm_device *dev = crtc->base.dev;
fac5e23e 3208 struct drm_i915_private *dev_priv = to_i915(dev);
bfd16b2a
ML
3209 struct intel_crtc_state *pipe_config =
3210 to_intel_crtc_state(crtc->base.state);
e30e8f75 3211
bfd16b2a
ML
3212 /* drm_atomic_helper_update_legacy_modeset_state might not be called. */
3213 crtc->base.mode = crtc->base.state->mode;
3214
3215 DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n",
3216 old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h,
3217 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
e30e8f75
GP
3218
3219 /*
3220 * Update pipe size and adjust fitter if needed: the reason for this is
3221 * that in compute_mode_changes we check the native mode (not the pfit
3222 * mode) to see if we can flip rather than do a full mode set. In the
3223 * fastboot case, we'll flip, but if we don't update the pipesrc and
3224 * pfit state, we'll end up with a big fb scanned out into the wrong
3225 * sized surface.
e30e8f75
GP
3226 */
3227
e30e8f75 3228 I915_WRITE(PIPESRC(crtc->pipe),
bfd16b2a
ML
3229 ((pipe_config->pipe_src_w - 1) << 16) |
3230 (pipe_config->pipe_src_h - 1));
3231
3232 /* on skylake this is done by detaching scalers */
3233 if (INTEL_INFO(dev)->gen >= 9) {
3234 skl_detach_scalers(crtc);
3235
3236 if (pipe_config->pch_pfit.enabled)
3237 skylake_pfit_enable(crtc);
3238 } else if (HAS_PCH_SPLIT(dev)) {
3239 if (pipe_config->pch_pfit.enabled)
3240 ironlake_pfit_enable(crtc);
3241 else if (old_crtc_state->pch_pfit.enabled)
3242 ironlake_pfit_disable(crtc, true);
e30e8f75 3243 }
e30e8f75
GP
3244}
3245
5e84e1a4
ZW
3246static void intel_fdi_normal_train(struct drm_crtc *crtc)
3247{
3248 struct drm_device *dev = crtc->dev;
fac5e23e 3249 struct drm_i915_private *dev_priv = to_i915(dev);
5e84e1a4
ZW
3250 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3251 int pipe = intel_crtc->pipe;
f0f59a00
VS
3252 i915_reg_t reg;
3253 u32 temp;
5e84e1a4
ZW
3254
3255 /* enable normal train */
3256 reg = FDI_TX_CTL(pipe);
3257 temp = I915_READ(reg);
61e499bf 3258 if (IS_IVYBRIDGE(dev)) {
357555c0
JB
3259 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3260 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
61e499bf
KP
3261 } else {
3262 temp &= ~FDI_LINK_TRAIN_NONE;
3263 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
357555c0 3264 }
5e84e1a4
ZW
3265 I915_WRITE(reg, temp);
3266
3267 reg = FDI_RX_CTL(pipe);
3268 temp = I915_READ(reg);
3269 if (HAS_PCH_CPT(dev)) {
3270 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3271 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3272 } else {
3273 temp &= ~FDI_LINK_TRAIN_NONE;
3274 temp |= FDI_LINK_TRAIN_NONE;
3275 }
3276 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3277
3278 /* wait one idle pattern time */
3279 POSTING_READ(reg);
3280 udelay(1000);
357555c0
JB
3281
3282 /* IVB wants error correction enabled */
3283 if (IS_IVYBRIDGE(dev))
3284 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3285 FDI_FE_ERRC_ENABLE);
5e84e1a4
ZW
3286}
3287
8db9d77b
ZW
3288/* The FDI link training functions for ILK/Ibexpeak. */
3289static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3290{
3291 struct drm_device *dev = crtc->dev;
fac5e23e 3292 struct drm_i915_private *dev_priv = to_i915(dev);
8db9d77b
ZW
3293 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3294 int pipe = intel_crtc->pipe;
f0f59a00
VS
3295 i915_reg_t reg;
3296 u32 temp, tries;
8db9d77b 3297
1c8562f6 3298 /* FDI needs bits from pipe first */
0fc932b8 3299 assert_pipe_enabled(dev_priv, pipe);
0fc932b8 3300
e1a44743
AJ
3301 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3302 for train result */
5eddb70b
CW
3303 reg = FDI_RX_IMR(pipe);
3304 temp = I915_READ(reg);
e1a44743
AJ
3305 temp &= ~FDI_RX_SYMBOL_LOCK;
3306 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3307 I915_WRITE(reg, temp);
3308 I915_READ(reg);
e1a44743
AJ
3309 udelay(150);
3310
8db9d77b 3311 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3312 reg = FDI_TX_CTL(pipe);
3313 temp = I915_READ(reg);
627eb5a3 3314 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3315 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3316 temp &= ~FDI_LINK_TRAIN_NONE;
3317 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 3318 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3319
5eddb70b
CW
3320 reg = FDI_RX_CTL(pipe);
3321 temp = I915_READ(reg);
8db9d77b
ZW
3322 temp &= ~FDI_LINK_TRAIN_NONE;
3323 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b
CW
3324 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3325
3326 POSTING_READ(reg);
8db9d77b
ZW
3327 udelay(150);
3328
5b2adf89 3329 /* Ironlake workaround, enable clock pointer after FDI enable*/
8f5718a6
DV
3330 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3331 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3332 FDI_RX_PHASE_SYNC_POINTER_EN);
5b2adf89 3333
5eddb70b 3334 reg = FDI_RX_IIR(pipe);
e1a44743 3335 for (tries = 0; tries < 5; tries++) {
5eddb70b 3336 temp = I915_READ(reg);
8db9d77b
ZW
3337 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3338
3339 if ((temp & FDI_RX_BIT_LOCK)) {
3340 DRM_DEBUG_KMS("FDI train 1 done.\n");
5eddb70b 3341 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
3342 break;
3343 }
8db9d77b 3344 }
e1a44743 3345 if (tries == 5)
5eddb70b 3346 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3347
3348 /* Train 2 */
5eddb70b
CW
3349 reg = FDI_TX_CTL(pipe);
3350 temp = I915_READ(reg);
8db9d77b
ZW
3351 temp &= ~FDI_LINK_TRAIN_NONE;
3352 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3353 I915_WRITE(reg, temp);
8db9d77b 3354
5eddb70b
CW
3355 reg = FDI_RX_CTL(pipe);
3356 temp = I915_READ(reg);
8db9d77b
ZW
3357 temp &= ~FDI_LINK_TRAIN_NONE;
3358 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3359 I915_WRITE(reg, temp);
8db9d77b 3360
5eddb70b
CW
3361 POSTING_READ(reg);
3362 udelay(150);
8db9d77b 3363
5eddb70b 3364 reg = FDI_RX_IIR(pipe);
e1a44743 3365 for (tries = 0; tries < 5; tries++) {
5eddb70b 3366 temp = I915_READ(reg);
8db9d77b
ZW
3367 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3368
3369 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 3370 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
3371 DRM_DEBUG_KMS("FDI train 2 done.\n");
3372 break;
3373 }
8db9d77b 3374 }
e1a44743 3375 if (tries == 5)
5eddb70b 3376 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3377
3378 DRM_DEBUG_KMS("FDI train done\n");
5c5313c8 3379
8db9d77b
ZW
3380}
3381
0206e353 3382static const int snb_b_fdi_train_param[] = {
8db9d77b
ZW
3383 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3384 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3385 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3386 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3387};
3388
3389/* The FDI link training functions for SNB/Cougarpoint. */
3390static void gen6_fdi_link_train(struct drm_crtc *crtc)
3391{
3392 struct drm_device *dev = crtc->dev;
fac5e23e 3393 struct drm_i915_private *dev_priv = to_i915(dev);
8db9d77b
ZW
3394 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3395 int pipe = intel_crtc->pipe;
f0f59a00
VS
3396 i915_reg_t reg;
3397 u32 temp, i, retry;
8db9d77b 3398
e1a44743
AJ
3399 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3400 for train result */
5eddb70b
CW
3401 reg = FDI_RX_IMR(pipe);
3402 temp = I915_READ(reg);
e1a44743
AJ
3403 temp &= ~FDI_RX_SYMBOL_LOCK;
3404 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3405 I915_WRITE(reg, temp);
3406
3407 POSTING_READ(reg);
e1a44743
AJ
3408 udelay(150);
3409
8db9d77b 3410 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3411 reg = FDI_TX_CTL(pipe);
3412 temp = I915_READ(reg);
627eb5a3 3413 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3414 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3415 temp &= ~FDI_LINK_TRAIN_NONE;
3416 temp |= FDI_LINK_TRAIN_PATTERN_1;
3417 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3418 /* SNB-B */
3419 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
5eddb70b 3420 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3421
d74cf324
DV
3422 I915_WRITE(FDI_RX_MISC(pipe),
3423 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3424
5eddb70b
CW
3425 reg = FDI_RX_CTL(pipe);
3426 temp = I915_READ(reg);
8db9d77b
ZW
3427 if (HAS_PCH_CPT(dev)) {
3428 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3429 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3430 } else {
3431 temp &= ~FDI_LINK_TRAIN_NONE;
3432 temp |= FDI_LINK_TRAIN_PATTERN_1;
3433 }
5eddb70b
CW
3434 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3435
3436 POSTING_READ(reg);
8db9d77b
ZW
3437 udelay(150);
3438
0206e353 3439 for (i = 0; i < 4; i++) {
5eddb70b
CW
3440 reg = FDI_TX_CTL(pipe);
3441 temp = I915_READ(reg);
8db9d77b
ZW
3442 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3443 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3444 I915_WRITE(reg, temp);
3445
3446 POSTING_READ(reg);
8db9d77b
ZW
3447 udelay(500);
3448
fa37d39e
SP
3449 for (retry = 0; retry < 5; retry++) {
3450 reg = FDI_RX_IIR(pipe);
3451 temp = I915_READ(reg);
3452 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3453 if (temp & FDI_RX_BIT_LOCK) {
3454 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3455 DRM_DEBUG_KMS("FDI train 1 done.\n");
3456 break;
3457 }
3458 udelay(50);
8db9d77b 3459 }
fa37d39e
SP
3460 if (retry < 5)
3461 break;
8db9d77b
ZW
3462 }
3463 if (i == 4)
5eddb70b 3464 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3465
3466 /* Train 2 */
5eddb70b
CW
3467 reg = FDI_TX_CTL(pipe);
3468 temp = I915_READ(reg);
8db9d77b
ZW
3469 temp &= ~FDI_LINK_TRAIN_NONE;
3470 temp |= FDI_LINK_TRAIN_PATTERN_2;
3471 if (IS_GEN6(dev)) {
3472 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3473 /* SNB-B */
3474 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3475 }
5eddb70b 3476 I915_WRITE(reg, temp);
8db9d77b 3477
5eddb70b
CW
3478 reg = FDI_RX_CTL(pipe);
3479 temp = I915_READ(reg);
8db9d77b
ZW
3480 if (HAS_PCH_CPT(dev)) {
3481 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3482 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3483 } else {
3484 temp &= ~FDI_LINK_TRAIN_NONE;
3485 temp |= FDI_LINK_TRAIN_PATTERN_2;
3486 }
5eddb70b
CW
3487 I915_WRITE(reg, temp);
3488
3489 POSTING_READ(reg);
8db9d77b
ZW
3490 udelay(150);
3491
0206e353 3492 for (i = 0; i < 4; i++) {
5eddb70b
CW
3493 reg = FDI_TX_CTL(pipe);
3494 temp = I915_READ(reg);
8db9d77b
ZW
3495 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3496 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3497 I915_WRITE(reg, temp);
3498
3499 POSTING_READ(reg);
8db9d77b
ZW
3500 udelay(500);
3501
fa37d39e
SP
3502 for (retry = 0; retry < 5; retry++) {
3503 reg = FDI_RX_IIR(pipe);
3504 temp = I915_READ(reg);
3505 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3506 if (temp & FDI_RX_SYMBOL_LOCK) {
3507 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3508 DRM_DEBUG_KMS("FDI train 2 done.\n");
3509 break;
3510 }
3511 udelay(50);
8db9d77b 3512 }
fa37d39e
SP
3513 if (retry < 5)
3514 break;
8db9d77b
ZW
3515 }
3516 if (i == 4)
5eddb70b 3517 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3518
3519 DRM_DEBUG_KMS("FDI train done.\n");
3520}
3521
357555c0
JB
3522/* Manual link training for Ivy Bridge A0 parts */
3523static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3524{
3525 struct drm_device *dev = crtc->dev;
fac5e23e 3526 struct drm_i915_private *dev_priv = to_i915(dev);
357555c0
JB
3527 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3528 int pipe = intel_crtc->pipe;
f0f59a00
VS
3529 i915_reg_t reg;
3530 u32 temp, i, j;
357555c0
JB
3531
3532 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3533 for train result */
3534 reg = FDI_RX_IMR(pipe);
3535 temp = I915_READ(reg);
3536 temp &= ~FDI_RX_SYMBOL_LOCK;
3537 temp &= ~FDI_RX_BIT_LOCK;
3538 I915_WRITE(reg, temp);
3539
3540 POSTING_READ(reg);
3541 udelay(150);
3542
01a415fd
DV
3543 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3544 I915_READ(FDI_RX_IIR(pipe)));
3545
139ccd3f
JB
3546 /* Try each vswing and preemphasis setting twice before moving on */
3547 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3548 /* disable first in case we need to retry */
3549 reg = FDI_TX_CTL(pipe);
3550 temp = I915_READ(reg);
3551 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3552 temp &= ~FDI_TX_ENABLE;
3553 I915_WRITE(reg, temp);
357555c0 3554
139ccd3f
JB
3555 reg = FDI_RX_CTL(pipe);
3556 temp = I915_READ(reg);
3557 temp &= ~FDI_LINK_TRAIN_AUTO;
3558 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3559 temp &= ~FDI_RX_ENABLE;
3560 I915_WRITE(reg, temp);
357555c0 3561
139ccd3f 3562 /* enable CPU FDI TX and PCH FDI RX */
357555c0
JB
3563 reg = FDI_TX_CTL(pipe);
3564 temp = I915_READ(reg);
139ccd3f 3565 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3566 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
139ccd3f 3567 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
357555c0 3568 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
139ccd3f
JB
3569 temp |= snb_b_fdi_train_param[j/2];
3570 temp |= FDI_COMPOSITE_SYNC;
3571 I915_WRITE(reg, temp | FDI_TX_ENABLE);
357555c0 3572
139ccd3f
JB
3573 I915_WRITE(FDI_RX_MISC(pipe),
3574 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
357555c0 3575
139ccd3f 3576 reg = FDI_RX_CTL(pipe);
357555c0 3577 temp = I915_READ(reg);
139ccd3f
JB
3578 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3579 temp |= FDI_COMPOSITE_SYNC;
3580 I915_WRITE(reg, temp | FDI_RX_ENABLE);
357555c0 3581
139ccd3f
JB
3582 POSTING_READ(reg);
3583 udelay(1); /* should be 0.5us */
357555c0 3584
139ccd3f
JB
3585 for (i = 0; i < 4; i++) {
3586 reg = FDI_RX_IIR(pipe);
3587 temp = I915_READ(reg);
3588 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3589
139ccd3f
JB
3590 if (temp & FDI_RX_BIT_LOCK ||
3591 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3592 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3593 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3594 i);
3595 break;
3596 }
3597 udelay(1); /* should be 0.5us */
3598 }
3599 if (i == 4) {
3600 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3601 continue;
3602 }
357555c0 3603
139ccd3f 3604 /* Train 2 */
357555c0
JB
3605 reg = FDI_TX_CTL(pipe);
3606 temp = I915_READ(reg);
139ccd3f
JB
3607 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3608 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3609 I915_WRITE(reg, temp);
3610
3611 reg = FDI_RX_CTL(pipe);
3612 temp = I915_READ(reg);
3613 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3614 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
357555c0
JB
3615 I915_WRITE(reg, temp);
3616
3617 POSTING_READ(reg);
139ccd3f 3618 udelay(2); /* should be 1.5us */
357555c0 3619
139ccd3f
JB
3620 for (i = 0; i < 4; i++) {
3621 reg = FDI_RX_IIR(pipe);
3622 temp = I915_READ(reg);
3623 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3624
139ccd3f
JB
3625 if (temp & FDI_RX_SYMBOL_LOCK ||
3626 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3627 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3628 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3629 i);
3630 goto train_done;
3631 }
3632 udelay(2); /* should be 1.5us */
357555c0 3633 }
139ccd3f
JB
3634 if (i == 4)
3635 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
357555c0 3636 }
357555c0 3637
139ccd3f 3638train_done:
357555c0
JB
3639 DRM_DEBUG_KMS("FDI train done.\n");
3640}
3641
88cefb6c 3642static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
2c07245f 3643{
88cefb6c 3644 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 3645 struct drm_i915_private *dev_priv = to_i915(dev);
2c07245f 3646 int pipe = intel_crtc->pipe;
f0f59a00
VS
3647 i915_reg_t reg;
3648 u32 temp;
c64e311e 3649
c98e9dcf 3650 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
5eddb70b
CW
3651 reg = FDI_RX_CTL(pipe);
3652 temp = I915_READ(reg);
627eb5a3 3653 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
6e3c9717 3654 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
dfd07d72 3655 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
5eddb70b
CW
3656 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3657
3658 POSTING_READ(reg);
c98e9dcf
JB
3659 udelay(200);
3660
3661 /* Switch from Rawclk to PCDclk */
5eddb70b
CW
3662 temp = I915_READ(reg);
3663 I915_WRITE(reg, temp | FDI_PCDCLK);
3664
3665 POSTING_READ(reg);
c98e9dcf
JB
3666 udelay(200);
3667
20749730
PZ
3668 /* Enable CPU FDI TX PLL, always on for Ironlake */
3669 reg = FDI_TX_CTL(pipe);
3670 temp = I915_READ(reg);
3671 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3672 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
5eddb70b 3673
20749730
PZ
3674 POSTING_READ(reg);
3675 udelay(100);
6be4a607 3676 }
0e23b99d
JB
3677}
3678
88cefb6c
DV
3679static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3680{
3681 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 3682 struct drm_i915_private *dev_priv = to_i915(dev);
88cefb6c 3683 int pipe = intel_crtc->pipe;
f0f59a00
VS
3684 i915_reg_t reg;
3685 u32 temp;
88cefb6c
DV
3686
3687 /* Switch from PCDclk to Rawclk */
3688 reg = FDI_RX_CTL(pipe);
3689 temp = I915_READ(reg);
3690 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3691
3692 /* Disable CPU FDI TX PLL */
3693 reg = FDI_TX_CTL(pipe);
3694 temp = I915_READ(reg);
3695 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3696
3697 POSTING_READ(reg);
3698 udelay(100);
3699
3700 reg = FDI_RX_CTL(pipe);
3701 temp = I915_READ(reg);
3702 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3703
3704 /* Wait for the clocks to turn off. */
3705 POSTING_READ(reg);
3706 udelay(100);
3707}
3708
0fc932b8
JB
3709static void ironlake_fdi_disable(struct drm_crtc *crtc)
3710{
3711 struct drm_device *dev = crtc->dev;
fac5e23e 3712 struct drm_i915_private *dev_priv = to_i915(dev);
0fc932b8
JB
3713 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3714 int pipe = intel_crtc->pipe;
f0f59a00
VS
3715 i915_reg_t reg;
3716 u32 temp;
0fc932b8
JB
3717
3718 /* disable CPU FDI tx and PCH FDI rx */
3719 reg = FDI_TX_CTL(pipe);
3720 temp = I915_READ(reg);
3721 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3722 POSTING_READ(reg);
3723
3724 reg = FDI_RX_CTL(pipe);
3725 temp = I915_READ(reg);
3726 temp &= ~(0x7 << 16);
dfd07d72 3727 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3728 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3729
3730 POSTING_READ(reg);
3731 udelay(100);
3732
3733 /* Ironlake workaround, disable clock pointer after downing FDI */
eba905b2 3734 if (HAS_PCH_IBX(dev))
6f06ce18 3735 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
0fc932b8
JB
3736
3737 /* still set train pattern 1 */
3738 reg = FDI_TX_CTL(pipe);
3739 temp = I915_READ(reg);
3740 temp &= ~FDI_LINK_TRAIN_NONE;
3741 temp |= FDI_LINK_TRAIN_PATTERN_1;
3742 I915_WRITE(reg, temp);
3743
3744 reg = FDI_RX_CTL(pipe);
3745 temp = I915_READ(reg);
3746 if (HAS_PCH_CPT(dev)) {
3747 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3748 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3749 } else {
3750 temp &= ~FDI_LINK_TRAIN_NONE;
3751 temp |= FDI_LINK_TRAIN_PATTERN_1;
3752 }
3753 /* BPC in FDI rx is consistent with that in PIPECONF */
3754 temp &= ~(0x07 << 16);
dfd07d72 3755 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3756 I915_WRITE(reg, temp);
3757
3758 POSTING_READ(reg);
3759 udelay(100);
3760}
3761
5dce5b93
CW
3762bool intel_has_pending_fb_unpin(struct drm_device *dev)
3763{
3764 struct intel_crtc *crtc;
3765
3766 /* Note that we don't need to be called with mode_config.lock here
3767 * as our list of CRTC objects is static for the lifetime of the
3768 * device and so cannot disappear as we iterate. Similarly, we can
3769 * happily treat the predicates as racy, atomic checks as userspace
3770 * cannot claim and pin a new fb without at least acquring the
3771 * struct_mutex and so serialising with us.
3772 */
d3fcc808 3773 for_each_intel_crtc(dev, crtc) {
5dce5b93
CW
3774 if (atomic_read(&crtc->unpin_work_count) == 0)
3775 continue;
3776
5a21b665 3777 if (crtc->flip_work)
5dce5b93
CW
3778 intel_wait_for_vblank(dev, crtc->pipe);
3779
3780 return true;
3781 }
3782
3783 return false;
3784}
3785
5a21b665 3786static void page_flip_completed(struct intel_crtc *intel_crtc)
d6bbafa1
CW
3787{
3788 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
5a21b665
DV
3789 struct intel_flip_work *work = intel_crtc->flip_work;
3790
3791 intel_crtc->flip_work = NULL;
d6bbafa1
CW
3792
3793 if (work->event)
560ce1dc 3794 drm_crtc_send_vblank_event(&intel_crtc->base, work->event);
d6bbafa1
CW
3795
3796 drm_crtc_vblank_put(&intel_crtc->base);
3797
5a21b665 3798 wake_up_all(&dev_priv->pending_flip_queue);
143f73b3 3799 queue_work(dev_priv->wq, &work->unpin_work);
5a21b665
DV
3800
3801 trace_i915_flip_complete(intel_crtc->plane,
3802 work->pending_flip_obj);
d6bbafa1
CW
3803}
3804
5008e874 3805static int intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
e6c3a2a6 3806{
0f91128d 3807 struct drm_device *dev = crtc->dev;
fac5e23e 3808 struct drm_i915_private *dev_priv = to_i915(dev);
5008e874 3809 long ret;
e6c3a2a6 3810
2c10d571 3811 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
5008e874
ML
3812
3813 ret = wait_event_interruptible_timeout(
3814 dev_priv->pending_flip_queue,
3815 !intel_crtc_has_pending_flip(crtc),
3816 60*HZ);
3817
3818 if (ret < 0)
3819 return ret;
3820
5a21b665
DV
3821 if (ret == 0) {
3822 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3823 struct intel_flip_work *work;
3824
3825 spin_lock_irq(&dev->event_lock);
3826 work = intel_crtc->flip_work;
3827 if (work && !is_mmio_work(work)) {
3828 WARN_ONCE(1, "Removing stuck page flip\n");
3829 page_flip_completed(intel_crtc);
3830 }
3831 spin_unlock_irq(&dev->event_lock);
3832 }
5bb61643 3833
5008e874 3834 return 0;
e6c3a2a6
CW
3835}
3836
060f02d8
VS
3837static void lpt_disable_iclkip(struct drm_i915_private *dev_priv)
3838{
3839 u32 temp;
3840
3841 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3842
3843 mutex_lock(&dev_priv->sb_lock);
3844
3845 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
3846 temp |= SBI_SSCCTL_DISABLE;
3847 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
3848
3849 mutex_unlock(&dev_priv->sb_lock);
3850}
3851
e615efe4
ED
3852/* Program iCLKIP clock to the desired frequency */
3853static void lpt_program_iclkip(struct drm_crtc *crtc)
3854{
64b46a06 3855 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
6e3c9717 3856 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
e615efe4
ED
3857 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3858 u32 temp;
3859
060f02d8 3860 lpt_disable_iclkip(dev_priv);
e615efe4 3861
64b46a06
VS
3862 /* The iCLK virtual clock root frequency is in MHz,
3863 * but the adjusted_mode->crtc_clock in in KHz. To get the
3864 * divisors, it is necessary to divide one by another, so we
3865 * convert the virtual clock precision to KHz here for higher
3866 * precision.
3867 */
3868 for (auxdiv = 0; auxdiv < 2; auxdiv++) {
e615efe4
ED
3869 u32 iclk_virtual_root_freq = 172800 * 1000;
3870 u32 iclk_pi_range = 64;
64b46a06 3871 u32 desired_divisor;
e615efe4 3872
64b46a06
VS
3873 desired_divisor = DIV_ROUND_CLOSEST(iclk_virtual_root_freq,
3874 clock << auxdiv);
3875 divsel = (desired_divisor / iclk_pi_range) - 2;
3876 phaseinc = desired_divisor % iclk_pi_range;
e615efe4 3877
64b46a06
VS
3878 /*
3879 * Near 20MHz is a corner case which is
3880 * out of range for the 7-bit divisor
3881 */
3882 if (divsel <= 0x7f)
3883 break;
e615efe4
ED
3884 }
3885
3886 /* This should not happen with any sane values */
3887 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3888 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3889 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3890 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3891
3892 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
12d7ceed 3893 clock,
e615efe4
ED
3894 auxdiv,
3895 divsel,
3896 phasedir,
3897 phaseinc);
3898
060f02d8
VS
3899 mutex_lock(&dev_priv->sb_lock);
3900
e615efe4 3901 /* Program SSCDIVINTPHASE6 */
988d6ee8 3902 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
e615efe4
ED
3903 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3904 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3905 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3906 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3907 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3908 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
988d6ee8 3909 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
e615efe4
ED
3910
3911 /* Program SSCAUXDIV */
988d6ee8 3912 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
e615efe4
ED
3913 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3914 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
988d6ee8 3915 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
e615efe4
ED
3916
3917 /* Enable modulator and associated divider */
988d6ee8 3918 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
e615efe4 3919 temp &= ~SBI_SSCCTL_DISABLE;
988d6ee8 3920 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
e615efe4 3921
060f02d8
VS
3922 mutex_unlock(&dev_priv->sb_lock);
3923
e615efe4
ED
3924 /* Wait for initialization time */
3925 udelay(24);
3926
3927 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
3928}
3929
8802e5b6
VS
3930int lpt_get_iclkip(struct drm_i915_private *dev_priv)
3931{
3932 u32 divsel, phaseinc, auxdiv;
3933 u32 iclk_virtual_root_freq = 172800 * 1000;
3934 u32 iclk_pi_range = 64;
3935 u32 desired_divisor;
3936 u32 temp;
3937
3938 if ((I915_READ(PIXCLK_GATE) & PIXCLK_GATE_UNGATE) == 0)
3939 return 0;
3940
3941 mutex_lock(&dev_priv->sb_lock);
3942
3943 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
3944 if (temp & SBI_SSCCTL_DISABLE) {
3945 mutex_unlock(&dev_priv->sb_lock);
3946 return 0;
3947 }
3948
3949 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
3950 divsel = (temp & SBI_SSCDIVINTPHASE_DIVSEL_MASK) >>
3951 SBI_SSCDIVINTPHASE_DIVSEL_SHIFT;
3952 phaseinc = (temp & SBI_SSCDIVINTPHASE_INCVAL_MASK) >>
3953 SBI_SSCDIVINTPHASE_INCVAL_SHIFT;
3954
3955 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
3956 auxdiv = (temp & SBI_SSCAUXDIV_FINALDIV2SEL_MASK) >>
3957 SBI_SSCAUXDIV_FINALDIV2SEL_SHIFT;
3958
3959 mutex_unlock(&dev_priv->sb_lock);
3960
3961 desired_divisor = (divsel + 2) * iclk_pi_range + phaseinc;
3962
3963 return DIV_ROUND_CLOSEST(iclk_virtual_root_freq,
3964 desired_divisor << auxdiv);
3965}
3966
275f01b2
DV
3967static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3968 enum pipe pch_transcoder)
3969{
3970 struct drm_device *dev = crtc->base.dev;
fac5e23e 3971 struct drm_i915_private *dev_priv = to_i915(dev);
6e3c9717 3972 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
275f01b2
DV
3973
3974 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3975 I915_READ(HTOTAL(cpu_transcoder)));
3976 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3977 I915_READ(HBLANK(cpu_transcoder)));
3978 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3979 I915_READ(HSYNC(cpu_transcoder)));
3980
3981 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3982 I915_READ(VTOTAL(cpu_transcoder)));
3983 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3984 I915_READ(VBLANK(cpu_transcoder)));
3985 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3986 I915_READ(VSYNC(cpu_transcoder)));
3987 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3988 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3989}
3990
003632d9 3991static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
1fbc0d78 3992{
fac5e23e 3993 struct drm_i915_private *dev_priv = to_i915(dev);
1fbc0d78
DV
3994 uint32_t temp;
3995
3996 temp = I915_READ(SOUTH_CHICKEN1);
003632d9 3997 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
1fbc0d78
DV
3998 return;
3999
4000 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4001 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4002
003632d9
ACO
4003 temp &= ~FDI_BC_BIFURCATION_SELECT;
4004 if (enable)
4005 temp |= FDI_BC_BIFURCATION_SELECT;
4006
4007 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
1fbc0d78
DV
4008 I915_WRITE(SOUTH_CHICKEN1, temp);
4009 POSTING_READ(SOUTH_CHICKEN1);
4010}
4011
4012static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4013{
4014 struct drm_device *dev = intel_crtc->base.dev;
1fbc0d78
DV
4015
4016 switch (intel_crtc->pipe) {
4017 case PIPE_A:
4018 break;
4019 case PIPE_B:
6e3c9717 4020 if (intel_crtc->config->fdi_lanes > 2)
003632d9 4021 cpt_set_fdi_bc_bifurcation(dev, false);
1fbc0d78 4022 else
003632d9 4023 cpt_set_fdi_bc_bifurcation(dev, true);
1fbc0d78
DV
4024
4025 break;
4026 case PIPE_C:
003632d9 4027 cpt_set_fdi_bc_bifurcation(dev, true);
1fbc0d78
DV
4028
4029 break;
4030 default:
4031 BUG();
4032 }
4033}
4034
c48b5305
VS
4035/* Return which DP Port should be selected for Transcoder DP control */
4036static enum port
4037intel_trans_dp_port_sel(struct drm_crtc *crtc)
4038{
4039 struct drm_device *dev = crtc->dev;
4040 struct intel_encoder *encoder;
4041
4042 for_each_encoder_on_crtc(dev, crtc, encoder) {
4043 if (encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
4044 encoder->type == INTEL_OUTPUT_EDP)
4045 return enc_to_dig_port(&encoder->base)->port;
4046 }
4047
4048 return -1;
4049}
4050
f67a559d
JB
4051/*
4052 * Enable PCH resources required for PCH ports:
4053 * - PCH PLLs
4054 * - FDI training & RX/TX
4055 * - update transcoder timings
4056 * - DP transcoding bits
4057 * - transcoder
4058 */
4059static void ironlake_pch_enable(struct drm_crtc *crtc)
0e23b99d
JB
4060{
4061 struct drm_device *dev = crtc->dev;
fac5e23e 4062 struct drm_i915_private *dev_priv = to_i915(dev);
0e23b99d
JB
4063 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4064 int pipe = intel_crtc->pipe;
f0f59a00 4065 u32 temp;
2c07245f 4066
ab9412ba 4067 assert_pch_transcoder_disabled(dev_priv, pipe);
e7e164db 4068
1fbc0d78
DV
4069 if (IS_IVYBRIDGE(dev))
4070 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4071
cd986abb
DV
4072 /* Write the TU size bits before fdi link training, so that error
4073 * detection works. */
4074 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4075 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4076
c98e9dcf 4077 /* For PCH output, training FDI link */
674cf967 4078 dev_priv->display.fdi_link_train(crtc);
2c07245f 4079
3ad8a208
DV
4080 /* We need to program the right clock selection before writing the pixel
4081 * mutliplier into the DPLL. */
303b81e0 4082 if (HAS_PCH_CPT(dev)) {
ee7b9f93 4083 u32 sel;
4b645f14 4084
c98e9dcf 4085 temp = I915_READ(PCH_DPLL_SEL);
11887397
DV
4086 temp |= TRANS_DPLL_ENABLE(pipe);
4087 sel = TRANS_DPLLB_SEL(pipe);
8106ddbd
ACO
4088 if (intel_crtc->config->shared_dpll ==
4089 intel_get_shared_dpll_by_id(dev_priv, DPLL_ID_PCH_PLL_B))
ee7b9f93
JB
4090 temp |= sel;
4091 else
4092 temp &= ~sel;
c98e9dcf 4093 I915_WRITE(PCH_DPLL_SEL, temp);
c98e9dcf 4094 }
5eddb70b 4095
3ad8a208
DV
4096 /* XXX: pch pll's can be enabled any time before we enable the PCH
4097 * transcoder, and we actually should do this to not upset any PCH
4098 * transcoder that already use the clock when we share it.
4099 *
4100 * Note that enable_shared_dpll tries to do the right thing, but
4101 * get_shared_dpll unconditionally resets the pll - we need that to have
4102 * the right LVDS enable sequence. */
85b3894f 4103 intel_enable_shared_dpll(intel_crtc);
3ad8a208 4104
d9b6cb56
JB
4105 /* set transcoder timing, panel must allow it */
4106 assert_panel_unlocked(dev_priv, pipe);
275f01b2 4107 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
8db9d77b 4108
303b81e0 4109 intel_fdi_normal_train(crtc);
5e84e1a4 4110
c98e9dcf 4111 /* For PCH DP, enable TRANS_DP_CTL */
37a5650b 4112 if (HAS_PCH_CPT(dev) && intel_crtc_has_dp_encoder(intel_crtc->config)) {
9c4edaee
VS
4113 const struct drm_display_mode *adjusted_mode =
4114 &intel_crtc->config->base.adjusted_mode;
dfd07d72 4115 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
f0f59a00 4116 i915_reg_t reg = TRANS_DP_CTL(pipe);
5eddb70b
CW
4117 temp = I915_READ(reg);
4118 temp &= ~(TRANS_DP_PORT_SEL_MASK |
220cad3c
EA
4119 TRANS_DP_SYNC_MASK |
4120 TRANS_DP_BPC_MASK);
e3ef4479 4121 temp |= TRANS_DP_OUTPUT_ENABLE;
9325c9f0 4122 temp |= bpc << 9; /* same format but at 11:9 */
c98e9dcf 4123
9c4edaee 4124 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
5eddb70b 4125 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
9c4edaee 4126 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
5eddb70b 4127 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
c98e9dcf
JB
4128
4129 switch (intel_trans_dp_port_sel(crtc)) {
c48b5305 4130 case PORT_B:
5eddb70b 4131 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf 4132 break;
c48b5305 4133 case PORT_C:
5eddb70b 4134 temp |= TRANS_DP_PORT_SEL_C;
c98e9dcf 4135 break;
c48b5305 4136 case PORT_D:
5eddb70b 4137 temp |= TRANS_DP_PORT_SEL_D;
c98e9dcf
JB
4138 break;
4139 default:
e95d41e1 4140 BUG();
32f9d658 4141 }
2c07245f 4142
5eddb70b 4143 I915_WRITE(reg, temp);
6be4a607 4144 }
b52eb4dc 4145
b8a4f404 4146 ironlake_enable_pch_transcoder(dev_priv, pipe);
f67a559d
JB
4147}
4148
1507e5bd
PZ
4149static void lpt_pch_enable(struct drm_crtc *crtc)
4150{
4151 struct drm_device *dev = crtc->dev;
fac5e23e 4152 struct drm_i915_private *dev_priv = to_i915(dev);
1507e5bd 4153 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 4154 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
1507e5bd 4155
ab9412ba 4156 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
1507e5bd 4157
8c52b5e8 4158 lpt_program_iclkip(crtc);
1507e5bd 4159
0540e488 4160 /* Set transcoder timing. */
275f01b2 4161 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
1507e5bd 4162
937bb610 4163 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
f67a559d
JB
4164}
4165
a1520318 4166static void cpt_verify_modeset(struct drm_device *dev, int pipe)
d4270e57 4167{
fac5e23e 4168 struct drm_i915_private *dev_priv = to_i915(dev);
f0f59a00 4169 i915_reg_t dslreg = PIPEDSL(pipe);
d4270e57
JB
4170 u32 temp;
4171
4172 temp = I915_READ(dslreg);
4173 udelay(500);
4174 if (wait_for(I915_READ(dslreg) != temp, 5)) {
d4270e57 4175 if (wait_for(I915_READ(dslreg) != temp, 5))
84f44ce7 4176 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
d4270e57
JB
4177 }
4178}
4179
86adf9d7
ML
4180static int
4181skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
4182 unsigned scaler_user, int *scaler_id, unsigned int rotation,
4183 int src_w, int src_h, int dst_w, int dst_h)
a1b2278e 4184{
86adf9d7
ML
4185 struct intel_crtc_scaler_state *scaler_state =
4186 &crtc_state->scaler_state;
4187 struct intel_crtc *intel_crtc =
4188 to_intel_crtc(crtc_state->base.crtc);
a1b2278e 4189 int need_scaling;
6156a456
CK
4190
4191 need_scaling = intel_rotation_90_or_270(rotation) ?
4192 (src_h != dst_w || src_w != dst_h):
4193 (src_w != dst_w || src_h != dst_h);
a1b2278e
CK
4194
4195 /*
4196 * if plane is being disabled or scaler is no more required or force detach
4197 * - free scaler binded to this plane/crtc
4198 * - in order to do this, update crtc->scaler_usage
4199 *
4200 * Here scaler state in crtc_state is set free so that
4201 * scaler can be assigned to other user. Actual register
4202 * update to free the scaler is done in plane/panel-fit programming.
4203 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4204 */
86adf9d7 4205 if (force_detach || !need_scaling) {
a1b2278e 4206 if (*scaler_id >= 0) {
86adf9d7 4207 scaler_state->scaler_users &= ~(1 << scaler_user);
a1b2278e
CK
4208 scaler_state->scalers[*scaler_id].in_use = 0;
4209
86adf9d7
ML
4210 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4211 "Staged freeing scaler id %d scaler_users = 0x%x\n",
4212 intel_crtc->pipe, scaler_user, *scaler_id,
a1b2278e
CK
4213 scaler_state->scaler_users);
4214 *scaler_id = -1;
4215 }
4216 return 0;
4217 }
4218
4219 /* range checks */
4220 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4221 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4222
4223 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4224 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
86adf9d7 4225 DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u "
a1b2278e 4226 "size is out of scaler range\n",
86adf9d7 4227 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h);
a1b2278e
CK
4228 return -EINVAL;
4229 }
4230
86adf9d7
ML
4231 /* mark this plane as a scaler user in crtc_state */
4232 scaler_state->scaler_users |= (1 << scaler_user);
4233 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4234 "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n",
4235 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h,
4236 scaler_state->scaler_users);
4237
4238 return 0;
4239}
4240
4241/**
4242 * skl_update_scaler_crtc - Stages update to scaler state for a given crtc.
4243 *
4244 * @state: crtc's scaler state
86adf9d7
ML
4245 *
4246 * Return
4247 * 0 - scaler_usage updated successfully
4248 * error - requested scaling cannot be supported or other error condition
4249 */
e435d6e5 4250int skl_update_scaler_crtc(struct intel_crtc_state *state)
86adf9d7
ML
4251{
4252 struct intel_crtc *intel_crtc = to_intel_crtc(state->base.crtc);
7c5f93b0 4253 const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode;
86adf9d7 4254
78108b7c
VS
4255 DRM_DEBUG_KMS("Updating scaler for [CRTC:%d:%s] scaler_user index %u.%u\n",
4256 intel_crtc->base.base.id, intel_crtc->base.name,
4257 intel_crtc->pipe, SKL_CRTC_INDEX);
86adf9d7 4258
e435d6e5 4259 return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX,
fa5a7970 4260 &state->scaler_state.scaler_id, BIT(DRM_ROTATE_0),
86adf9d7 4261 state->pipe_src_w, state->pipe_src_h,
aad941d5 4262 adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay);
86adf9d7
ML
4263}
4264
4265/**
4266 * skl_update_scaler_plane - Stages update to scaler state for a given plane.
4267 *
4268 * @state: crtc's scaler state
86adf9d7
ML
4269 * @plane_state: atomic plane state to update
4270 *
4271 * Return
4272 * 0 - scaler_usage updated successfully
4273 * error - requested scaling cannot be supported or other error condition
4274 */
da20eabd
ML
4275static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
4276 struct intel_plane_state *plane_state)
86adf9d7
ML
4277{
4278
4279 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
da20eabd
ML
4280 struct intel_plane *intel_plane =
4281 to_intel_plane(plane_state->base.plane);
86adf9d7
ML
4282 struct drm_framebuffer *fb = plane_state->base.fb;
4283 int ret;
4284
4285 bool force_detach = !fb || !plane_state->visible;
4286
72660ce0
VS
4287 DRM_DEBUG_KMS("Updating scaler for [PLANE:%d:%s] scaler_user index %u.%u\n",
4288 intel_plane->base.base.id, intel_plane->base.name,
4289 intel_crtc->pipe, drm_plane_index(&intel_plane->base));
86adf9d7
ML
4290
4291 ret = skl_update_scaler(crtc_state, force_detach,
4292 drm_plane_index(&intel_plane->base),
4293 &plane_state->scaler_id,
4294 plane_state->base.rotation,
4295 drm_rect_width(&plane_state->src) >> 16,
4296 drm_rect_height(&plane_state->src) >> 16,
4297 drm_rect_width(&plane_state->dst),
4298 drm_rect_height(&plane_state->dst));
4299
4300 if (ret || plane_state->scaler_id < 0)
4301 return ret;
4302
a1b2278e 4303 /* check colorkey */
818ed961 4304 if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) {
72660ce0
VS
4305 DRM_DEBUG_KMS("[PLANE:%d:%s] scaling with color key not allowed",
4306 intel_plane->base.base.id,
4307 intel_plane->base.name);
a1b2278e
CK
4308 return -EINVAL;
4309 }
4310
4311 /* Check src format */
86adf9d7
ML
4312 switch (fb->pixel_format) {
4313 case DRM_FORMAT_RGB565:
4314 case DRM_FORMAT_XBGR8888:
4315 case DRM_FORMAT_XRGB8888:
4316 case DRM_FORMAT_ABGR8888:
4317 case DRM_FORMAT_ARGB8888:
4318 case DRM_FORMAT_XRGB2101010:
4319 case DRM_FORMAT_XBGR2101010:
4320 case DRM_FORMAT_YUYV:
4321 case DRM_FORMAT_YVYU:
4322 case DRM_FORMAT_UYVY:
4323 case DRM_FORMAT_VYUY:
4324 break;
4325 default:
72660ce0
VS
4326 DRM_DEBUG_KMS("[PLANE:%d:%s] FB:%d unsupported scaling format 0x%x\n",
4327 intel_plane->base.base.id, intel_plane->base.name,
4328 fb->base.id, fb->pixel_format);
86adf9d7 4329 return -EINVAL;
a1b2278e
CK
4330 }
4331
a1b2278e
CK
4332 return 0;
4333}
4334
e435d6e5
ML
4335static void skylake_scaler_disable(struct intel_crtc *crtc)
4336{
4337 int i;
4338
4339 for (i = 0; i < crtc->num_scalers; i++)
4340 skl_detach_scaler(crtc, i);
4341}
4342
4343static void skylake_pfit_enable(struct intel_crtc *crtc)
bd2e244f
JB
4344{
4345 struct drm_device *dev = crtc->base.dev;
fac5e23e 4346 struct drm_i915_private *dev_priv = to_i915(dev);
bd2e244f 4347 int pipe = crtc->pipe;
a1b2278e
CK
4348 struct intel_crtc_scaler_state *scaler_state =
4349 &crtc->config->scaler_state;
4350
4351 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4352
6e3c9717 4353 if (crtc->config->pch_pfit.enabled) {
a1b2278e
CK
4354 int id;
4355
4356 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4357 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4358 return;
4359 }
4360
4361 id = scaler_state->scaler_id;
4362 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4363 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4364 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4365 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4366
4367 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
bd2e244f
JB
4368 }
4369}
4370
b074cec8
JB
4371static void ironlake_pfit_enable(struct intel_crtc *crtc)
4372{
4373 struct drm_device *dev = crtc->base.dev;
fac5e23e 4374 struct drm_i915_private *dev_priv = to_i915(dev);
b074cec8
JB
4375 int pipe = crtc->pipe;
4376
6e3c9717 4377 if (crtc->config->pch_pfit.enabled) {
b074cec8
JB
4378 /* Force use of hard-coded filter coefficients
4379 * as some pre-programmed values are broken,
4380 * e.g. x201.
4381 */
4382 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4383 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4384 PF_PIPE_SEL_IVB(pipe));
4385 else
4386 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
6e3c9717
ACO
4387 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4388 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
d4270e57
JB
4389 }
4390}
4391
20bc8673 4392void hsw_enable_ips(struct intel_crtc *crtc)
d77e4531 4393{
cea165c3 4394 struct drm_device *dev = crtc->base.dev;
fac5e23e 4395 struct drm_i915_private *dev_priv = to_i915(dev);
d77e4531 4396
6e3c9717 4397 if (!crtc->config->ips_enabled)
d77e4531
PZ
4398 return;
4399
307e4498
ML
4400 /*
4401 * We can only enable IPS after we enable a plane and wait for a vblank
4402 * This function is called from post_plane_update, which is run after
4403 * a vblank wait.
4404 */
cea165c3 4405
d77e4531 4406 assert_plane_enabled(dev_priv, crtc->plane);
cea165c3 4407 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4408 mutex_lock(&dev_priv->rps.hw_lock);
4409 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4410 mutex_unlock(&dev_priv->rps.hw_lock);
4411 /* Quoting Art Runyan: "its not safe to expect any particular
4412 * value in IPS_CTL bit 31 after enabling IPS through the
e59150dc
JB
4413 * mailbox." Moreover, the mailbox may return a bogus state,
4414 * so we need to just enable it and continue on.
2a114cc1
BW
4415 */
4416 } else {
4417 I915_WRITE(IPS_CTL, IPS_ENABLE);
4418 /* The bit only becomes 1 in the next vblank, so this wait here
4419 * is essentially intel_wait_for_vblank. If we don't have this
4420 * and don't wait for vblanks until the end of crtc_enable, then
4421 * the HW state readout code will complain that the expected
4422 * IPS_CTL value is not the one we read. */
2ec9ba3c
CW
4423 if (intel_wait_for_register(dev_priv,
4424 IPS_CTL, IPS_ENABLE, IPS_ENABLE,
4425 50))
2a114cc1
BW
4426 DRM_ERROR("Timed out waiting for IPS enable\n");
4427 }
d77e4531
PZ
4428}
4429
20bc8673 4430void hsw_disable_ips(struct intel_crtc *crtc)
d77e4531
PZ
4431{
4432 struct drm_device *dev = crtc->base.dev;
fac5e23e 4433 struct drm_i915_private *dev_priv = to_i915(dev);
d77e4531 4434
6e3c9717 4435 if (!crtc->config->ips_enabled)
d77e4531
PZ
4436 return;
4437
4438 assert_plane_enabled(dev_priv, crtc->plane);
23d0b130 4439 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4440 mutex_lock(&dev_priv->rps.hw_lock);
4441 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4442 mutex_unlock(&dev_priv->rps.hw_lock);
23d0b130 4443 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
b85c1ecf
CW
4444 if (intel_wait_for_register(dev_priv,
4445 IPS_CTL, IPS_ENABLE, 0,
4446 42))
23d0b130 4447 DRM_ERROR("Timed out waiting for IPS disable\n");
e59150dc 4448 } else {
2a114cc1 4449 I915_WRITE(IPS_CTL, 0);
e59150dc
JB
4450 POSTING_READ(IPS_CTL);
4451 }
d77e4531
PZ
4452
4453 /* We need to wait for a vblank before we can disable the plane. */
4454 intel_wait_for_vblank(dev, crtc->pipe);
4455}
4456
7cac945f 4457static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
d3eedb1a 4458{
7cac945f 4459 if (intel_crtc->overlay) {
d3eedb1a 4460 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 4461 struct drm_i915_private *dev_priv = to_i915(dev);
d3eedb1a
VS
4462
4463 mutex_lock(&dev->struct_mutex);
4464 dev_priv->mm.interruptible = false;
4465 (void) intel_overlay_switch_off(intel_crtc->overlay);
4466 dev_priv->mm.interruptible = true;
4467 mutex_unlock(&dev->struct_mutex);
4468 }
4469
4470 /* Let userspace switch the overlay on again. In most cases userspace
4471 * has to recompute where to put it anyway.
4472 */
4473}
4474
87d4300a
ML
4475/**
4476 * intel_post_enable_primary - Perform operations after enabling primary plane
4477 * @crtc: the CRTC whose primary plane was just enabled
4478 *
4479 * Performs potentially sleeping operations that must be done after the primary
4480 * plane is enabled, such as updating FBC and IPS. Note that this may be
4481 * called due to an explicit primary plane update, or due to an implicit
4482 * re-enable that is caused when a sprite plane is updated to no longer
4483 * completely hide the primary plane.
4484 */
4485static void
4486intel_post_enable_primary(struct drm_crtc *crtc)
a5c4d7bc
VS
4487{
4488 struct drm_device *dev = crtc->dev;
fac5e23e 4489 struct drm_i915_private *dev_priv = to_i915(dev);
a5c4d7bc
VS
4490 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4491 int pipe = intel_crtc->pipe;
a5c4d7bc 4492
87d4300a
ML
4493 /*
4494 * FIXME IPS should be fine as long as one plane is
4495 * enabled, but in practice it seems to have problems
4496 * when going from primary only to sprite only and vice
4497 * versa.
4498 */
a5c4d7bc
VS
4499 hsw_enable_ips(intel_crtc);
4500
f99d7069 4501 /*
87d4300a
ML
4502 * Gen2 reports pipe underruns whenever all planes are disabled.
4503 * So don't enable underrun reporting before at least some planes
4504 * are enabled.
4505 * FIXME: Need to fix the logic to work when we turn off all planes
4506 * but leave the pipe running.
f99d7069 4507 */
87d4300a
ML
4508 if (IS_GEN2(dev))
4509 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4510
aca7b684
VS
4511 /* Underruns don't always raise interrupts, so check manually. */
4512 intel_check_cpu_fifo_underruns(dev_priv);
4513 intel_check_pch_fifo_underruns(dev_priv);
a5c4d7bc
VS
4514}
4515
2622a081 4516/* FIXME move all this to pre_plane_update() with proper state tracking */
87d4300a
ML
4517static void
4518intel_pre_disable_primary(struct drm_crtc *crtc)
a5c4d7bc
VS
4519{
4520 struct drm_device *dev = crtc->dev;
fac5e23e 4521 struct drm_i915_private *dev_priv = to_i915(dev);
a5c4d7bc
VS
4522 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4523 int pipe = intel_crtc->pipe;
a5c4d7bc 4524
87d4300a
ML
4525 /*
4526 * Gen2 reports pipe underruns whenever all planes are disabled.
4527 * So diasble underrun reporting before all the planes get disabled.
4528 * FIXME: Need to fix the logic to work when we turn off all planes
4529 * but leave the pipe running.
4530 */
4531 if (IS_GEN2(dev))
4532 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
a5c4d7bc 4533
2622a081
VS
4534 /*
4535 * FIXME IPS should be fine as long as one plane is
4536 * enabled, but in practice it seems to have problems
4537 * when going from primary only to sprite only and vice
4538 * versa.
4539 */
4540 hsw_disable_ips(intel_crtc);
4541}
4542
4543/* FIXME get rid of this and use pre_plane_update */
4544static void
4545intel_pre_disable_primary_noatomic(struct drm_crtc *crtc)
4546{
4547 struct drm_device *dev = crtc->dev;
fac5e23e 4548 struct drm_i915_private *dev_priv = to_i915(dev);
2622a081
VS
4549 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4550 int pipe = intel_crtc->pipe;
4551
4552 intel_pre_disable_primary(crtc);
4553
87d4300a
ML
4554 /*
4555 * Vblank time updates from the shadow to live plane control register
4556 * are blocked if the memory self-refresh mode is active at that
4557 * moment. So to make sure the plane gets truly disabled, disable
4558 * first the self-refresh mode. The self-refresh enable bit in turn
4559 * will be checked/applied by the HW only at the next frame start
4560 * event which is after the vblank start event, so we need to have a
4561 * wait-for-vblank between disabling the plane and the pipe.
4562 */
262cd2e1 4563 if (HAS_GMCH_DISPLAY(dev)) {
87d4300a 4564 intel_set_memory_cxsr(dev_priv, false);
262cd2e1
VS
4565 dev_priv->wm.vlv.cxsr = false;
4566 intel_wait_for_vblank(dev, pipe);
4567 }
87d4300a
ML
4568}
4569
5a21b665
DV
4570static void intel_post_plane_update(struct intel_crtc_state *old_crtc_state)
4571{
4572 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
4573 struct drm_atomic_state *old_state = old_crtc_state->base.state;
4574 struct intel_crtc_state *pipe_config =
4575 to_intel_crtc_state(crtc->base.state);
4576 struct drm_device *dev = crtc->base.dev;
4577 struct drm_plane *primary = crtc->base.primary;
4578 struct drm_plane_state *old_pri_state =
4579 drm_atomic_get_existing_plane_state(old_state, primary);
4580
4581 intel_frontbuffer_flip(dev, pipe_config->fb_bits);
4582
4583 crtc->wm.cxsr_allowed = true;
4584
4585 if (pipe_config->update_wm_post && pipe_config->base.active)
4586 intel_update_watermarks(&crtc->base);
4587
4588 if (old_pri_state) {
4589 struct intel_plane_state *primary_state =
4590 to_intel_plane_state(primary->state);
4591 struct intel_plane_state *old_primary_state =
4592 to_intel_plane_state(old_pri_state);
4593
4594 intel_fbc_post_update(crtc);
4595
4596 if (primary_state->visible &&
4597 (needs_modeset(&pipe_config->base) ||
4598 !old_primary_state->visible))
4599 intel_post_enable_primary(&crtc->base);
4600 }
4601}
4602
5c74cd73 4603static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state)
ac21b225 4604{
5c74cd73 4605 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
ac21b225 4606 struct drm_device *dev = crtc->base.dev;
fac5e23e 4607 struct drm_i915_private *dev_priv = to_i915(dev);
ab1d3a0e
ML
4608 struct intel_crtc_state *pipe_config =
4609 to_intel_crtc_state(crtc->base.state);
5c74cd73
ML
4610 struct drm_atomic_state *old_state = old_crtc_state->base.state;
4611 struct drm_plane *primary = crtc->base.primary;
4612 struct drm_plane_state *old_pri_state =
4613 drm_atomic_get_existing_plane_state(old_state, primary);
4614 bool modeset = needs_modeset(&pipe_config->base);
ac21b225 4615
5c74cd73
ML
4616 if (old_pri_state) {
4617 struct intel_plane_state *primary_state =
4618 to_intel_plane_state(primary->state);
4619 struct intel_plane_state *old_primary_state =
4620 to_intel_plane_state(old_pri_state);
4621
faf68d92 4622 intel_fbc_pre_update(crtc, pipe_config, primary_state);
31ae71fc 4623
5c74cd73
ML
4624 if (old_primary_state->visible &&
4625 (modeset || !primary_state->visible))
4626 intel_pre_disable_primary(&crtc->base);
4627 }
852eb00d 4628
a4015f9a 4629 if (pipe_config->disable_cxsr && HAS_GMCH_DISPLAY(dev)) {
852eb00d 4630 crtc->wm.cxsr_allowed = false;
2dfd178d 4631
2622a081
VS
4632 /*
4633 * Vblank time updates from the shadow to live plane control register
4634 * are blocked if the memory self-refresh mode is active at that
4635 * moment. So to make sure the plane gets truly disabled, disable
4636 * first the self-refresh mode. The self-refresh enable bit in turn
4637 * will be checked/applied by the HW only at the next frame start
4638 * event which is after the vblank start event, so we need to have a
4639 * wait-for-vblank between disabling the plane and the pipe.
4640 */
4641 if (old_crtc_state->base.active) {
2dfd178d 4642 intel_set_memory_cxsr(dev_priv, false);
2622a081
VS
4643 dev_priv->wm.vlv.cxsr = false;
4644 intel_wait_for_vblank(dev, crtc->pipe);
4645 }
852eb00d 4646 }
92826fcd 4647
ed4a6a7c
MR
4648 /*
4649 * IVB workaround: must disable low power watermarks for at least
4650 * one frame before enabling scaling. LP watermarks can be re-enabled
4651 * when scaling is disabled.
4652 *
4653 * WaCxSRDisabledForSpriteScaling:ivb
4654 */
4655 if (pipe_config->disable_lp_wm) {
4656 ilk_disable_lp_wm(dev);
4657 intel_wait_for_vblank(dev, crtc->pipe);
4658 }
4659
4660 /*
4661 * If we're doing a modeset, we're done. No need to do any pre-vblank
4662 * watermark programming here.
4663 */
4664 if (needs_modeset(&pipe_config->base))
4665 return;
4666
4667 /*
4668 * For platforms that support atomic watermarks, program the
4669 * 'intermediate' watermarks immediately. On pre-gen9 platforms, these
4670 * will be the intermediate values that are safe for both pre- and
4671 * post- vblank; when vblank happens, the 'active' values will be set
4672 * to the final 'target' values and we'll do this again to get the
4673 * optimal watermarks. For gen9+ platforms, the values we program here
4674 * will be the final target values which will get automatically latched
4675 * at vblank time; no further programming will be necessary.
4676 *
4677 * If a platform hasn't been transitioned to atomic watermarks yet,
4678 * we'll continue to update watermarks the old way, if flags tell
4679 * us to.
4680 */
4681 if (dev_priv->display.initial_watermarks != NULL)
4682 dev_priv->display.initial_watermarks(pipe_config);
caed361d 4683 else if (pipe_config->update_wm_pre)
92826fcd 4684 intel_update_watermarks(&crtc->base);
ac21b225
ML
4685}
4686
d032ffa0 4687static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask)
87d4300a
ML
4688{
4689 struct drm_device *dev = crtc->dev;
4690 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
d032ffa0 4691 struct drm_plane *p;
87d4300a
ML
4692 int pipe = intel_crtc->pipe;
4693
7cac945f 4694 intel_crtc_dpms_overlay_disable(intel_crtc);
27321ae8 4695
d032ffa0
ML
4696 drm_for_each_plane_mask(p, dev, plane_mask)
4697 to_intel_plane(p)->disable_plane(p, crtc);
f98551ae 4698
f99d7069
DV
4699 /*
4700 * FIXME: Once we grow proper nuclear flip support out of this we need
4701 * to compute the mask of flip planes precisely. For the time being
4702 * consider this a flip to a NULL plane.
4703 */
4704 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
a5c4d7bc
VS
4705}
4706
f67a559d
JB
4707static void ironlake_crtc_enable(struct drm_crtc *crtc)
4708{
4709 struct drm_device *dev = crtc->dev;
fac5e23e 4710 struct drm_i915_private *dev_priv = to_i915(dev);
f67a559d 4711 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4712 struct intel_encoder *encoder;
f67a559d 4713 int pipe = intel_crtc->pipe;
b95c5321
ML
4714 struct intel_crtc_state *pipe_config =
4715 to_intel_crtc_state(crtc->state);
f67a559d 4716
53d9f4e9 4717 if (WARN_ON(intel_crtc->active))
f67a559d
JB
4718 return;
4719
b2c0593a
VS
4720 /*
4721 * Sometimes spurious CPU pipe underruns happen during FDI
4722 * training, at least with VGA+HDMI cloning. Suppress them.
4723 *
4724 * On ILK we get an occasional spurious CPU pipe underruns
4725 * between eDP port A enable and vdd enable. Also PCH port
4726 * enable seems to result in the occasional CPU pipe underrun.
4727 *
4728 * Spurious PCH underruns also occur during PCH enabling.
4729 */
4730 if (intel_crtc->config->has_pch_encoder || IS_GEN5(dev_priv))
4731 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
81b088ca
VS
4732 if (intel_crtc->config->has_pch_encoder)
4733 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
4734
6e3c9717 4735 if (intel_crtc->config->has_pch_encoder)
b14b1055
DV
4736 intel_prepare_shared_dpll(intel_crtc);
4737
37a5650b 4738 if (intel_crtc_has_dp_encoder(intel_crtc->config))
fe3cd48d 4739 intel_dp_set_m_n(intel_crtc, M1_N1);
29407aab
DV
4740
4741 intel_set_pipe_timings(intel_crtc);
bc58be60 4742 intel_set_pipe_src_size(intel_crtc);
29407aab 4743
6e3c9717 4744 if (intel_crtc->config->has_pch_encoder) {
29407aab 4745 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 4746 &intel_crtc->config->fdi_m_n, NULL);
29407aab
DV
4747 }
4748
4749 ironlake_set_pipeconf(crtc);
4750
f67a559d 4751 intel_crtc->active = true;
8664281b 4752
f6736a1a 4753 for_each_encoder_on_crtc(dev, crtc, encoder)
952735ee
DV
4754 if (encoder->pre_enable)
4755 encoder->pre_enable(encoder);
f67a559d 4756
6e3c9717 4757 if (intel_crtc->config->has_pch_encoder) {
fff367c7
DV
4758 /* Note: FDI PLL enabling _must_ be done before we enable the
4759 * cpu pipes, hence this is separate from all the other fdi/pch
4760 * enabling. */
88cefb6c 4761 ironlake_fdi_pll_enable(intel_crtc);
46b6f814
DV
4762 } else {
4763 assert_fdi_tx_disabled(dev_priv, pipe);
4764 assert_fdi_rx_disabled(dev_priv, pipe);
4765 }
f67a559d 4766
b074cec8 4767 ironlake_pfit_enable(intel_crtc);
f67a559d 4768
9c54c0dd
JB
4769 /*
4770 * On ILK+ LUT must be loaded before the pipe is running but with
4771 * clocks enabled
4772 */
b95c5321 4773 intel_color_load_luts(&pipe_config->base);
9c54c0dd 4774
1d5bf5d9
ID
4775 if (dev_priv->display.initial_watermarks != NULL)
4776 dev_priv->display.initial_watermarks(intel_crtc->config);
e1fdc473 4777 intel_enable_pipe(intel_crtc);
f67a559d 4778
6e3c9717 4779 if (intel_crtc->config->has_pch_encoder)
f67a559d 4780 ironlake_pch_enable(crtc);
c98e9dcf 4781
f9b61ff6
DV
4782 assert_vblank_disabled(crtc);
4783 drm_crtc_vblank_on(crtc);
4784
fa5c73b1
DV
4785 for_each_encoder_on_crtc(dev, crtc, encoder)
4786 encoder->enable(encoder);
61b77ddd
DV
4787
4788 if (HAS_PCH_CPT(dev))
a1520318 4789 cpt_verify_modeset(dev, intel_crtc->pipe);
37ca8d4c
VS
4790
4791 /* Must wait for vblank to avoid spurious PCH FIFO underruns */
4792 if (intel_crtc->config->has_pch_encoder)
4793 intel_wait_for_vblank(dev, pipe);
b2c0593a 4794 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
37ca8d4c 4795 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
6be4a607
JB
4796}
4797
42db64ef
PZ
4798/* IPS only exists on ULT machines and is tied to pipe A. */
4799static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4800{
f5adf94e 4801 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
42db64ef
PZ
4802}
4803
4f771f10
PZ
4804static void haswell_crtc_enable(struct drm_crtc *crtc)
4805{
4806 struct drm_device *dev = crtc->dev;
fac5e23e 4807 struct drm_i915_private *dev_priv = to_i915(dev);
4f771f10
PZ
4808 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4809 struct intel_encoder *encoder;
99d736a2 4810 int pipe = intel_crtc->pipe, hsw_workaround_pipe;
4d1de975 4811 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
99d736a2
ML
4812 struct intel_crtc_state *pipe_config =
4813 to_intel_crtc_state(crtc->state);
4f771f10 4814
53d9f4e9 4815 if (WARN_ON(intel_crtc->active))
4f771f10
PZ
4816 return;
4817
81b088ca
VS
4818 if (intel_crtc->config->has_pch_encoder)
4819 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4820 false);
4821
95a7a2ae
ID
4822 for_each_encoder_on_crtc(dev, crtc, encoder)
4823 if (encoder->pre_pll_enable)
4824 encoder->pre_pll_enable(encoder);
4825
8106ddbd 4826 if (intel_crtc->config->shared_dpll)
df8ad70c
DV
4827 intel_enable_shared_dpll(intel_crtc);
4828
37a5650b 4829 if (intel_crtc_has_dp_encoder(intel_crtc->config))
fe3cd48d 4830 intel_dp_set_m_n(intel_crtc, M1_N1);
229fca97 4831
4d1de975
JN
4832 if (!intel_crtc->config->has_dsi_encoder)
4833 intel_set_pipe_timings(intel_crtc);
4834
bc58be60 4835 intel_set_pipe_src_size(intel_crtc);
229fca97 4836
4d1de975
JN
4837 if (cpu_transcoder != TRANSCODER_EDP &&
4838 !transcoder_is_dsi(cpu_transcoder)) {
4839 I915_WRITE(PIPE_MULT(cpu_transcoder),
6e3c9717 4840 intel_crtc->config->pixel_multiplier - 1);
ebb69c95
CT
4841 }
4842
6e3c9717 4843 if (intel_crtc->config->has_pch_encoder) {
229fca97 4844 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 4845 &intel_crtc->config->fdi_m_n, NULL);
229fca97
DV
4846 }
4847
4d1de975
JN
4848 if (!intel_crtc->config->has_dsi_encoder)
4849 haswell_set_pipeconf(crtc);
4850
391bf048 4851 haswell_set_pipemisc(crtc);
229fca97 4852
b95c5321 4853 intel_color_set_csc(&pipe_config->base);
229fca97 4854
4f771f10 4855 intel_crtc->active = true;
8664281b 4856
6b698516
DV
4857 if (intel_crtc->config->has_pch_encoder)
4858 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4859 else
4860 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4861
7d4aefd0 4862 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10
PZ
4863 if (encoder->pre_enable)
4864 encoder->pre_enable(encoder);
7d4aefd0 4865 }
4f771f10 4866
d2d65408 4867 if (intel_crtc->config->has_pch_encoder)
4fe9467d 4868 dev_priv->display.fdi_link_train(crtc);
4fe9467d 4869
a65347ba 4870 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 4871 intel_ddi_enable_pipe_clock(intel_crtc);
4f771f10 4872
1c132b44 4873 if (INTEL_INFO(dev)->gen >= 9)
e435d6e5 4874 skylake_pfit_enable(intel_crtc);
ff6d9f55 4875 else
1c132b44 4876 ironlake_pfit_enable(intel_crtc);
4f771f10
PZ
4877
4878 /*
4879 * On ILK+ LUT must be loaded before the pipe is running but with
4880 * clocks enabled
4881 */
b95c5321 4882 intel_color_load_luts(&pipe_config->base);
4f771f10 4883
1f544388 4884 intel_ddi_set_pipe_settings(crtc);
a65347ba 4885 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 4886 intel_ddi_enable_transcoder_func(crtc);
4f771f10 4887
1d5bf5d9
ID
4888 if (dev_priv->display.initial_watermarks != NULL)
4889 dev_priv->display.initial_watermarks(pipe_config);
4890 else
4891 intel_update_watermarks(crtc);
4d1de975
JN
4892
4893 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
4894 if (!intel_crtc->config->has_dsi_encoder)
4895 intel_enable_pipe(intel_crtc);
42db64ef 4896
6e3c9717 4897 if (intel_crtc->config->has_pch_encoder)
1507e5bd 4898 lpt_pch_enable(crtc);
4f771f10 4899
a65347ba 4900 if (intel_crtc->config->dp_encoder_is_mst)
0e32b39c
DA
4901 intel_ddi_set_vc_payload_alloc(crtc, true);
4902
f9b61ff6
DV
4903 assert_vblank_disabled(crtc);
4904 drm_crtc_vblank_on(crtc);
4905
8807e55b 4906 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10 4907 encoder->enable(encoder);
8807e55b
JN
4908 intel_opregion_notify_encoder(encoder, true);
4909 }
4f771f10 4910
6b698516
DV
4911 if (intel_crtc->config->has_pch_encoder) {
4912 intel_wait_for_vblank(dev, pipe);
4913 intel_wait_for_vblank(dev, pipe);
4914 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
d2d65408
VS
4915 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4916 true);
6b698516 4917 }
d2d65408 4918
e4916946
PZ
4919 /* If we change the relative order between pipe/planes enabling, we need
4920 * to change the workaround. */
99d736a2
ML
4921 hsw_workaround_pipe = pipe_config->hsw_workaround_pipe;
4922 if (IS_HASWELL(dev) && hsw_workaround_pipe != INVALID_PIPE) {
4923 intel_wait_for_vblank(dev, hsw_workaround_pipe);
4924 intel_wait_for_vblank(dev, hsw_workaround_pipe);
4925 }
4f771f10
PZ
4926}
4927
bfd16b2a 4928static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force)
3f8dce3a
DV
4929{
4930 struct drm_device *dev = crtc->base.dev;
fac5e23e 4931 struct drm_i915_private *dev_priv = to_i915(dev);
3f8dce3a
DV
4932 int pipe = crtc->pipe;
4933
4934 /* To avoid upsetting the power well on haswell only disable the pfit if
4935 * it's in use. The hw state code will make sure we get this right. */
bfd16b2a 4936 if (force || crtc->config->pch_pfit.enabled) {
3f8dce3a
DV
4937 I915_WRITE(PF_CTL(pipe), 0);
4938 I915_WRITE(PF_WIN_POS(pipe), 0);
4939 I915_WRITE(PF_WIN_SZ(pipe), 0);
4940 }
4941}
4942
6be4a607
JB
4943static void ironlake_crtc_disable(struct drm_crtc *crtc)
4944{
4945 struct drm_device *dev = crtc->dev;
fac5e23e 4946 struct drm_i915_private *dev_priv = to_i915(dev);
6be4a607 4947 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4948 struct intel_encoder *encoder;
6be4a607 4949 int pipe = intel_crtc->pipe;
b52eb4dc 4950
b2c0593a
VS
4951 /*
4952 * Sometimes spurious CPU pipe underruns happen when the
4953 * pipe is already disabled, but FDI RX/TX is still enabled.
4954 * Happens at least with VGA+HDMI cloning. Suppress them.
4955 */
4956 if (intel_crtc->config->has_pch_encoder) {
4957 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
37ca8d4c 4958 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
b2c0593a 4959 }
37ca8d4c 4960
ea9d758d
DV
4961 for_each_encoder_on_crtc(dev, crtc, encoder)
4962 encoder->disable(encoder);
4963
f9b61ff6
DV
4964 drm_crtc_vblank_off(crtc);
4965 assert_vblank_disabled(crtc);
4966
575f7ab7 4967 intel_disable_pipe(intel_crtc);
32f9d658 4968
bfd16b2a 4969 ironlake_pfit_disable(intel_crtc, false);
2c07245f 4970
b2c0593a 4971 if (intel_crtc->config->has_pch_encoder)
5a74f70a
VS
4972 ironlake_fdi_disable(crtc);
4973
bf49ec8c
DV
4974 for_each_encoder_on_crtc(dev, crtc, encoder)
4975 if (encoder->post_disable)
4976 encoder->post_disable(encoder);
2c07245f 4977
6e3c9717 4978 if (intel_crtc->config->has_pch_encoder) {
d925c59a 4979 ironlake_disable_pch_transcoder(dev_priv, pipe);
6be4a607 4980
d925c59a 4981 if (HAS_PCH_CPT(dev)) {
f0f59a00
VS
4982 i915_reg_t reg;
4983 u32 temp;
4984
d925c59a
DV
4985 /* disable TRANS_DP_CTL */
4986 reg = TRANS_DP_CTL(pipe);
4987 temp = I915_READ(reg);
4988 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4989 TRANS_DP_PORT_SEL_MASK);
4990 temp |= TRANS_DP_PORT_SEL_NONE;
4991 I915_WRITE(reg, temp);
4992
4993 /* disable DPLL_SEL */
4994 temp = I915_READ(PCH_DPLL_SEL);
11887397 4995 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
d925c59a 4996 I915_WRITE(PCH_DPLL_SEL, temp);
9db4a9c7 4997 }
e3421a18 4998
d925c59a
DV
4999 ironlake_fdi_pll_disable(intel_crtc);
5000 }
81b088ca 5001
b2c0593a 5002 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
81b088ca 5003 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
6be4a607 5004}
1b3c7a47 5005
4f771f10 5006static void haswell_crtc_disable(struct drm_crtc *crtc)
ee7b9f93 5007{
4f771f10 5008 struct drm_device *dev = crtc->dev;
fac5e23e 5009 struct drm_i915_private *dev_priv = to_i915(dev);
ee7b9f93 5010 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4f771f10 5011 struct intel_encoder *encoder;
6e3c9717 5012 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
ee7b9f93 5013
d2d65408
VS
5014 if (intel_crtc->config->has_pch_encoder)
5015 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5016 false);
5017
8807e55b
JN
5018 for_each_encoder_on_crtc(dev, crtc, encoder) {
5019 intel_opregion_notify_encoder(encoder, false);
4f771f10 5020 encoder->disable(encoder);
8807e55b 5021 }
4f771f10 5022
f9b61ff6
DV
5023 drm_crtc_vblank_off(crtc);
5024 assert_vblank_disabled(crtc);
5025
4d1de975
JN
5026 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
5027 if (!intel_crtc->config->has_dsi_encoder)
5028 intel_disable_pipe(intel_crtc);
4f771f10 5029
6e3c9717 5030 if (intel_crtc->config->dp_encoder_is_mst)
a4bf214f
VS
5031 intel_ddi_set_vc_payload_alloc(crtc, false);
5032
a65347ba 5033 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 5034 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
4f771f10 5035
1c132b44 5036 if (INTEL_INFO(dev)->gen >= 9)
e435d6e5 5037 skylake_scaler_disable(intel_crtc);
ff6d9f55 5038 else
bfd16b2a 5039 ironlake_pfit_disable(intel_crtc, false);
4f771f10 5040
a65347ba 5041 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 5042 intel_ddi_disable_pipe_clock(intel_crtc);
4f771f10 5043
97b040aa
ID
5044 for_each_encoder_on_crtc(dev, crtc, encoder)
5045 if (encoder->post_disable)
5046 encoder->post_disable(encoder);
81b088ca 5047
92966a37
VS
5048 if (intel_crtc->config->has_pch_encoder) {
5049 lpt_disable_pch_transcoder(dev_priv);
503a74e9 5050 lpt_disable_iclkip(dev_priv);
92966a37
VS
5051 intel_ddi_fdi_disable(crtc);
5052
81b088ca
VS
5053 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5054 true);
92966a37 5055 }
4f771f10
PZ
5056}
5057
2dd24552
JB
5058static void i9xx_pfit_enable(struct intel_crtc *crtc)
5059{
5060 struct drm_device *dev = crtc->base.dev;
fac5e23e 5061 struct drm_i915_private *dev_priv = to_i915(dev);
6e3c9717 5062 struct intel_crtc_state *pipe_config = crtc->config;
2dd24552 5063
681a8504 5064 if (!pipe_config->gmch_pfit.control)
2dd24552
JB
5065 return;
5066
2dd24552 5067 /*
c0b03411
DV
5068 * The panel fitter should only be adjusted whilst the pipe is disabled,
5069 * according to register description and PRM.
2dd24552 5070 */
c0b03411
DV
5071 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5072 assert_pipe_disabled(dev_priv, crtc->pipe);
2dd24552 5073
b074cec8
JB
5074 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5075 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
5a80c45c
DV
5076
5077 /* Border color in case we don't scale up to the full screen. Black by
5078 * default, change to something else for debugging. */
5079 I915_WRITE(BCLRPAT(crtc->pipe), 0);
2dd24552
JB
5080}
5081
d05410f9
DA
5082static enum intel_display_power_domain port_to_power_domain(enum port port)
5083{
5084 switch (port) {
5085 case PORT_A:
6331a704 5086 return POWER_DOMAIN_PORT_DDI_A_LANES;
d05410f9 5087 case PORT_B:
6331a704 5088 return POWER_DOMAIN_PORT_DDI_B_LANES;
d05410f9 5089 case PORT_C:
6331a704 5090 return POWER_DOMAIN_PORT_DDI_C_LANES;
d05410f9 5091 case PORT_D:
6331a704 5092 return POWER_DOMAIN_PORT_DDI_D_LANES;
d8e19f99 5093 case PORT_E:
6331a704 5094 return POWER_DOMAIN_PORT_DDI_E_LANES;
d05410f9 5095 default:
b9fec167 5096 MISSING_CASE(port);
d05410f9
DA
5097 return POWER_DOMAIN_PORT_OTHER;
5098 }
5099}
5100
25f78f58
VS
5101static enum intel_display_power_domain port_to_aux_power_domain(enum port port)
5102{
5103 switch (port) {
5104 case PORT_A:
5105 return POWER_DOMAIN_AUX_A;
5106 case PORT_B:
5107 return POWER_DOMAIN_AUX_B;
5108 case PORT_C:
5109 return POWER_DOMAIN_AUX_C;
5110 case PORT_D:
5111 return POWER_DOMAIN_AUX_D;
5112 case PORT_E:
5113 /* FIXME: Check VBT for actual wiring of PORT E */
5114 return POWER_DOMAIN_AUX_D;
5115 default:
b9fec167 5116 MISSING_CASE(port);
25f78f58
VS
5117 return POWER_DOMAIN_AUX_A;
5118 }
5119}
5120
319be8ae
ID
5121enum intel_display_power_domain
5122intel_display_port_power_domain(struct intel_encoder *intel_encoder)
5123{
5124 struct drm_device *dev = intel_encoder->base.dev;
5125 struct intel_digital_port *intel_dig_port;
5126
5127 switch (intel_encoder->type) {
5128 case INTEL_OUTPUT_UNKNOWN:
5129 /* Only DDI platforms should ever use this output type */
5130 WARN_ON_ONCE(!HAS_DDI(dev));
5131 case INTEL_OUTPUT_DISPLAYPORT:
5132 case INTEL_OUTPUT_HDMI:
5133 case INTEL_OUTPUT_EDP:
5134 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
d05410f9 5135 return port_to_power_domain(intel_dig_port->port);
0e32b39c
DA
5136 case INTEL_OUTPUT_DP_MST:
5137 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5138 return port_to_power_domain(intel_dig_port->port);
319be8ae
ID
5139 case INTEL_OUTPUT_ANALOG:
5140 return POWER_DOMAIN_PORT_CRT;
5141 case INTEL_OUTPUT_DSI:
5142 return POWER_DOMAIN_PORT_DSI;
5143 default:
5144 return POWER_DOMAIN_PORT_OTHER;
5145 }
5146}
5147
25f78f58
VS
5148enum intel_display_power_domain
5149intel_display_port_aux_power_domain(struct intel_encoder *intel_encoder)
5150{
5151 struct drm_device *dev = intel_encoder->base.dev;
5152 struct intel_digital_port *intel_dig_port;
5153
5154 switch (intel_encoder->type) {
5155 case INTEL_OUTPUT_UNKNOWN:
651174a4
ID
5156 case INTEL_OUTPUT_HDMI:
5157 /*
5158 * Only DDI platforms should ever use these output types.
5159 * We can get here after the HDMI detect code has already set
5160 * the type of the shared encoder. Since we can't be sure
5161 * what's the status of the given connectors, play safe and
5162 * run the DP detection too.
5163 */
25f78f58
VS
5164 WARN_ON_ONCE(!HAS_DDI(dev));
5165 case INTEL_OUTPUT_DISPLAYPORT:
5166 case INTEL_OUTPUT_EDP:
5167 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
5168 return port_to_aux_power_domain(intel_dig_port->port);
5169 case INTEL_OUTPUT_DP_MST:
5170 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5171 return port_to_aux_power_domain(intel_dig_port->port);
5172 default:
b9fec167 5173 MISSING_CASE(intel_encoder->type);
25f78f58
VS
5174 return POWER_DOMAIN_AUX_A;
5175 }
5176}
5177
74bff5f9
ML
5178static unsigned long get_crtc_power_domains(struct drm_crtc *crtc,
5179 struct intel_crtc_state *crtc_state)
77d22dca 5180{
319be8ae 5181 struct drm_device *dev = crtc->dev;
74bff5f9 5182 struct drm_encoder *encoder;
319be8ae
ID
5183 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5184 enum pipe pipe = intel_crtc->pipe;
77d22dca 5185 unsigned long mask;
74bff5f9 5186 enum transcoder transcoder = crtc_state->cpu_transcoder;
77d22dca 5187
74bff5f9 5188 if (!crtc_state->base.active)
292b990e
ML
5189 return 0;
5190
77d22dca
ID
5191 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5192 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
74bff5f9
ML
5193 if (crtc_state->pch_pfit.enabled ||
5194 crtc_state->pch_pfit.force_thru)
77d22dca
ID
5195 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5196
74bff5f9
ML
5197 drm_for_each_encoder_mask(encoder, dev, crtc_state->base.encoder_mask) {
5198 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
5199
319be8ae 5200 mask |= BIT(intel_display_port_power_domain(intel_encoder));
74bff5f9 5201 }
319be8ae 5202
15e7ec29
ML
5203 if (crtc_state->shared_dpll)
5204 mask |= BIT(POWER_DOMAIN_PLLS);
5205
77d22dca
ID
5206 return mask;
5207}
5208
74bff5f9
ML
5209static unsigned long
5210modeset_get_crtc_power_domains(struct drm_crtc *crtc,
5211 struct intel_crtc_state *crtc_state)
77d22dca 5212{
fac5e23e 5213 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
292b990e
ML
5214 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5215 enum intel_display_power_domain domain;
5a21b665 5216 unsigned long domains, new_domains, old_domains;
77d22dca 5217
292b990e 5218 old_domains = intel_crtc->enabled_power_domains;
74bff5f9
ML
5219 intel_crtc->enabled_power_domains = new_domains =
5220 get_crtc_power_domains(crtc, crtc_state);
77d22dca 5221
5a21b665 5222 domains = new_domains & ~old_domains;
292b990e
ML
5223
5224 for_each_power_domain(domain, domains)
5225 intel_display_power_get(dev_priv, domain);
5226
5a21b665 5227 return old_domains & ~new_domains;
292b990e
ML
5228}
5229
5230static void modeset_put_power_domains(struct drm_i915_private *dev_priv,
5231 unsigned long domains)
5232{
5233 enum intel_display_power_domain domain;
5234
5235 for_each_power_domain(domain, domains)
5236 intel_display_power_put(dev_priv, domain);
5237}
77d22dca 5238
adafdc6f
MK
5239static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv)
5240{
5241 int max_cdclk_freq = dev_priv->max_cdclk_freq;
5242
5243 if (INTEL_INFO(dev_priv)->gen >= 9 ||
5244 IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
5245 return max_cdclk_freq;
5246 else if (IS_CHERRYVIEW(dev_priv))
5247 return max_cdclk_freq*95/100;
5248 else if (INTEL_INFO(dev_priv)->gen < 4)
5249 return 2*max_cdclk_freq*90/100;
5250 else
5251 return max_cdclk_freq*90/100;
5252}
5253
b2045352
VS
5254static int skl_calc_cdclk(int max_pixclk, int vco);
5255
560a7ae4
DL
5256static void intel_update_max_cdclk(struct drm_device *dev)
5257{
fac5e23e 5258 struct drm_i915_private *dev_priv = to_i915(dev);
560a7ae4 5259
ef11bdb3 5260 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
560a7ae4 5261 u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK;
b2045352
VS
5262 int max_cdclk, vco;
5263
5264 vco = dev_priv->skl_preferred_vco_freq;
63911d72 5265 WARN_ON(vco != 8100000 && vco != 8640000);
560a7ae4 5266
b2045352
VS
5267 /*
5268 * Use the lower (vco 8640) cdclk values as a
5269 * first guess. skl_calc_cdclk() will correct it
5270 * if the preferred vco is 8100 instead.
5271 */
560a7ae4 5272 if (limit == SKL_DFSM_CDCLK_LIMIT_675)
487ed2e4 5273 max_cdclk = 617143;
560a7ae4 5274 else if (limit == SKL_DFSM_CDCLK_LIMIT_540)
b2045352 5275 max_cdclk = 540000;
560a7ae4 5276 else if (limit == SKL_DFSM_CDCLK_LIMIT_450)
b2045352 5277 max_cdclk = 432000;
560a7ae4 5278 else
487ed2e4 5279 max_cdclk = 308571;
b2045352
VS
5280
5281 dev_priv->max_cdclk_freq = skl_calc_cdclk(max_cdclk, vco);
281c114f
MR
5282 } else if (IS_BROXTON(dev)) {
5283 dev_priv->max_cdclk_freq = 624000;
560a7ae4
DL
5284 } else if (IS_BROADWELL(dev)) {
5285 /*
5286 * FIXME with extra cooling we can allow
5287 * 540 MHz for ULX and 675 Mhz for ULT.
5288 * How can we know if extra cooling is
5289 * available? PCI ID, VTB, something else?
5290 */
5291 if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
5292 dev_priv->max_cdclk_freq = 450000;
5293 else if (IS_BDW_ULX(dev))
5294 dev_priv->max_cdclk_freq = 450000;
5295 else if (IS_BDW_ULT(dev))
5296 dev_priv->max_cdclk_freq = 540000;
5297 else
5298 dev_priv->max_cdclk_freq = 675000;
0904deaf
MK
5299 } else if (IS_CHERRYVIEW(dev)) {
5300 dev_priv->max_cdclk_freq = 320000;
560a7ae4
DL
5301 } else if (IS_VALLEYVIEW(dev)) {
5302 dev_priv->max_cdclk_freq = 400000;
5303 } else {
5304 /* otherwise assume cdclk is fixed */
5305 dev_priv->max_cdclk_freq = dev_priv->cdclk_freq;
5306 }
5307
adafdc6f
MK
5308 dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv);
5309
560a7ae4
DL
5310 DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n",
5311 dev_priv->max_cdclk_freq);
adafdc6f
MK
5312
5313 DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n",
5314 dev_priv->max_dotclk_freq);
560a7ae4
DL
5315}
5316
5317static void intel_update_cdclk(struct drm_device *dev)
5318{
fac5e23e 5319 struct drm_i915_private *dev_priv = to_i915(dev);
560a7ae4
DL
5320
5321 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
2f2a121a 5322
83d7c81f 5323 if (INTEL_GEN(dev_priv) >= 9)
709e05c3
VS
5324 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz, VCO: %d kHz, ref: %d kHz\n",
5325 dev_priv->cdclk_freq, dev_priv->cdclk_pll.vco,
5326 dev_priv->cdclk_pll.ref);
2f2a121a
VS
5327 else
5328 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
5329 dev_priv->cdclk_freq);
560a7ae4
DL
5330
5331 /*
b5d99ff9
VS
5332 * 9:0 CMBUS [sic] CDCLK frequency (cdfreq):
5333 * Programmng [sic] note: bit[9:2] should be programmed to the number
5334 * of cdclk that generates 4MHz reference clock freq which is used to
5335 * generate GMBus clock. This will vary with the cdclk freq.
560a7ae4 5336 */
b5d99ff9 5337 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
560a7ae4 5338 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
560a7ae4
DL
5339}
5340
92891e45
VS
5341/* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5342static int skl_cdclk_decimal(int cdclk)
5343{
5344 return DIV_ROUND_CLOSEST(cdclk - 1000, 500);
5345}
5346
5f199dfa
VS
5347static int bxt_de_pll_vco(struct drm_i915_private *dev_priv, int cdclk)
5348{
5349 int ratio;
5350
5351 if (cdclk == dev_priv->cdclk_pll.ref)
5352 return 0;
5353
5354 switch (cdclk) {
5355 default:
5356 MISSING_CASE(cdclk);
5357 case 144000:
5358 case 288000:
5359 case 384000:
5360 case 576000:
5361 ratio = 60;
5362 break;
5363 case 624000:
5364 ratio = 65;
5365 break;
5366 }
5367
5368 return dev_priv->cdclk_pll.ref * ratio;
5369}
5370
2b73001e
VS
5371static void bxt_de_pll_disable(struct drm_i915_private *dev_priv)
5372{
5373 I915_WRITE(BXT_DE_PLL_ENABLE, 0);
5374
5375 /* Timeout 200us */
95cac283
CW
5376 if (intel_wait_for_register(dev_priv,
5377 BXT_DE_PLL_ENABLE, BXT_DE_PLL_LOCK, 0,
5378 1))
2b73001e 5379 DRM_ERROR("timeout waiting for DE PLL unlock\n");
83d7c81f
VS
5380
5381 dev_priv->cdclk_pll.vco = 0;
2b73001e
VS
5382}
5383
5f199dfa 5384static void bxt_de_pll_enable(struct drm_i915_private *dev_priv, int vco)
2b73001e 5385{
5f199dfa 5386 int ratio = DIV_ROUND_CLOSEST(vco, dev_priv->cdclk_pll.ref);
2b73001e
VS
5387 u32 val;
5388
5389 val = I915_READ(BXT_DE_PLL_CTL);
5390 val &= ~BXT_DE_PLL_RATIO_MASK;
5f199dfa 5391 val |= BXT_DE_PLL_RATIO(ratio);
2b73001e
VS
5392 I915_WRITE(BXT_DE_PLL_CTL, val);
5393
5394 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5395
5396 /* Timeout 200us */
e084e1b9
CW
5397 if (intel_wait_for_register(dev_priv,
5398 BXT_DE_PLL_ENABLE,
5399 BXT_DE_PLL_LOCK,
5400 BXT_DE_PLL_LOCK,
5401 1))
2b73001e 5402 DRM_ERROR("timeout waiting for DE PLL lock\n");
83d7c81f 5403
5f199dfa 5404 dev_priv->cdclk_pll.vco = vco;
2b73001e
VS
5405}
5406
324513c0 5407static void bxt_set_cdclk(struct drm_i915_private *dev_priv, int cdclk)
f8437dd1 5408{
5f199dfa
VS
5409 u32 val, divider;
5410 int vco, ret;
f8437dd1 5411
5f199dfa
VS
5412 vco = bxt_de_pll_vco(dev_priv, cdclk);
5413
5414 DRM_DEBUG_DRIVER("Changing CDCLK to %d kHz (VCO %d kHz)\n", cdclk, vco);
5415
5416 /* cdclk = vco / 2 / div{1,1.5,2,4} */
5417 switch (DIV_ROUND_CLOSEST(vco, cdclk)) {
5418 case 8:
f8437dd1 5419 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
f8437dd1 5420 break;
5f199dfa 5421 case 4:
f8437dd1 5422 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
f8437dd1 5423 break;
5f199dfa 5424 case 3:
f8437dd1 5425 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
f8437dd1 5426 break;
5f199dfa 5427 case 2:
f8437dd1 5428 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
f8437dd1
VK
5429 break;
5430 default:
5f199dfa
VS
5431 WARN_ON(cdclk != dev_priv->cdclk_pll.ref);
5432 WARN_ON(vco != 0);
f8437dd1 5433
5f199dfa
VS
5434 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5435 break;
f8437dd1
VK
5436 }
5437
f8437dd1 5438 /* Inform power controller of upcoming frequency change */
5f199dfa 5439 mutex_lock(&dev_priv->rps.hw_lock);
f8437dd1
VK
5440 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5441 0x80000000);
5442 mutex_unlock(&dev_priv->rps.hw_lock);
5443
5444 if (ret) {
5445 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
9ef56154 5446 ret, cdclk);
f8437dd1
VK
5447 return;
5448 }
5449
5f199dfa
VS
5450 if (dev_priv->cdclk_pll.vco != 0 &&
5451 dev_priv->cdclk_pll.vco != vco)
2b73001e 5452 bxt_de_pll_disable(dev_priv);
f8437dd1 5453
5f199dfa
VS
5454 if (dev_priv->cdclk_pll.vco != vco)
5455 bxt_de_pll_enable(dev_priv, vco);
f8437dd1 5456
5f199dfa
VS
5457 val = divider | skl_cdclk_decimal(cdclk);
5458 /*
5459 * FIXME if only the cd2x divider needs changing, it could be done
5460 * without shutting off the pipe (if only one pipe is active).
5461 */
5462 val |= BXT_CDCLK_CD2X_PIPE_NONE;
5463 /*
5464 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5465 * enable otherwise.
5466 */
5467 if (cdclk >= 500000)
5468 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5469 I915_WRITE(CDCLK_CTL, val);
f8437dd1
VK
5470
5471 mutex_lock(&dev_priv->rps.hw_lock);
5472 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
9ef56154 5473 DIV_ROUND_UP(cdclk, 25000));
f8437dd1
VK
5474 mutex_unlock(&dev_priv->rps.hw_lock);
5475
5476 if (ret) {
5477 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
9ef56154 5478 ret, cdclk);
f8437dd1
VK
5479 return;
5480 }
5481
91c8a326 5482 intel_update_cdclk(&dev_priv->drm);
f8437dd1
VK
5483}
5484
d66a2194 5485static void bxt_sanitize_cdclk(struct drm_i915_private *dev_priv)
f8437dd1 5486{
d66a2194
ID
5487 u32 cdctl, expected;
5488
91c8a326 5489 intel_update_cdclk(&dev_priv->drm);
f8437dd1 5490
d66a2194
ID
5491 if (dev_priv->cdclk_pll.vco == 0 ||
5492 dev_priv->cdclk_freq == dev_priv->cdclk_pll.ref)
5493 goto sanitize;
5494
5495 /* DPLL okay; verify the cdclock
5496 *
5497 * Some BIOS versions leave an incorrect decimal frequency value and
5498 * set reserved MBZ bits in CDCLK_CTL at least during exiting from S4,
5499 * so sanitize this register.
5500 */
5501 cdctl = I915_READ(CDCLK_CTL);
5502 /*
5503 * Let's ignore the pipe field, since BIOS could have configured the
5504 * dividers both synching to an active pipe, or asynchronously
5505 * (PIPE_NONE).
5506 */
5507 cdctl &= ~BXT_CDCLK_CD2X_PIPE_NONE;
5508
5509 expected = (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) |
5510 skl_cdclk_decimal(dev_priv->cdclk_freq);
5511 /*
5512 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5513 * enable otherwise.
5514 */
5515 if (dev_priv->cdclk_freq >= 500000)
5516 expected |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5517
5518 if (cdctl == expected)
5519 /* All well; nothing to sanitize */
5520 return;
5521
5522sanitize:
5523 DRM_DEBUG_KMS("Sanitizing cdclk programmed by pre-os\n");
5524
5525 /* force cdclk programming */
5526 dev_priv->cdclk_freq = 0;
5527
5528 /* force full PLL disable + enable */
5529 dev_priv->cdclk_pll.vco = -1;
5530}
5531
324513c0 5532void bxt_init_cdclk(struct drm_i915_private *dev_priv)
d66a2194
ID
5533{
5534 bxt_sanitize_cdclk(dev_priv);
5535
5536 if (dev_priv->cdclk_freq != 0 && dev_priv->cdclk_pll.vco != 0)
089c6fd5 5537 return;
c2e001ef 5538
f8437dd1
VK
5539 /*
5540 * FIXME:
5541 * - The initial CDCLK needs to be read from VBT.
5542 * Need to make this change after VBT has changes for BXT.
f8437dd1 5543 */
324513c0 5544 bxt_set_cdclk(dev_priv, bxt_calc_cdclk(0));
f8437dd1
VK
5545}
5546
324513c0 5547void bxt_uninit_cdclk(struct drm_i915_private *dev_priv)
f8437dd1 5548{
324513c0 5549 bxt_set_cdclk(dev_priv, dev_priv->cdclk_pll.ref);
f8437dd1
VK
5550}
5551
a8ca4934
VS
5552static int skl_calc_cdclk(int max_pixclk, int vco)
5553{
63911d72 5554 if (vco == 8640000) {
a8ca4934 5555 if (max_pixclk > 540000)
487ed2e4 5556 return 617143;
a8ca4934
VS
5557 else if (max_pixclk > 432000)
5558 return 540000;
487ed2e4 5559 else if (max_pixclk > 308571)
a8ca4934
VS
5560 return 432000;
5561 else
487ed2e4 5562 return 308571;
a8ca4934 5563 } else {
a8ca4934
VS
5564 if (max_pixclk > 540000)
5565 return 675000;
5566 else if (max_pixclk > 450000)
5567 return 540000;
5568 else if (max_pixclk > 337500)
5569 return 450000;
5570 else
5571 return 337500;
5572 }
5573}
5574
ea61791e
VS
5575static void
5576skl_dpll0_update(struct drm_i915_private *dev_priv)
5d96d8af 5577{
ea61791e 5578 u32 val;
5d96d8af 5579
709e05c3 5580 dev_priv->cdclk_pll.ref = 24000;
1c3f7700 5581 dev_priv->cdclk_pll.vco = 0;
709e05c3 5582
ea61791e 5583 val = I915_READ(LCPLL1_CTL);
1c3f7700 5584 if ((val & LCPLL_PLL_ENABLE) == 0)
ea61791e 5585 return;
5d96d8af 5586
1c3f7700
ID
5587 if (WARN_ON((val & LCPLL_PLL_LOCK) == 0))
5588 return;
9f7eb31a 5589
ea61791e
VS
5590 val = I915_READ(DPLL_CTRL1);
5591
1c3f7700
ID
5592 if (WARN_ON((val & (DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) |
5593 DPLL_CTRL1_SSC(SKL_DPLL0) |
5594 DPLL_CTRL1_OVERRIDE(SKL_DPLL0))) !=
5595 DPLL_CTRL1_OVERRIDE(SKL_DPLL0)))
5596 return;
9f7eb31a 5597
ea61791e
VS
5598 switch (val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) {
5599 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810, SKL_DPLL0):
5600 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1350, SKL_DPLL0):
5601 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1620, SKL_DPLL0):
5602 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2700, SKL_DPLL0):
63911d72 5603 dev_priv->cdclk_pll.vco = 8100000;
ea61791e
VS
5604 break;
5605 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080, SKL_DPLL0):
5606 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2160, SKL_DPLL0):
63911d72 5607 dev_priv->cdclk_pll.vco = 8640000;
ea61791e
VS
5608 break;
5609 default:
5610 MISSING_CASE(val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
ea61791e
VS
5611 break;
5612 }
5d96d8af
DL
5613}
5614
b2045352
VS
5615void skl_set_preferred_cdclk_vco(struct drm_i915_private *dev_priv, int vco)
5616{
5617 bool changed = dev_priv->skl_preferred_vco_freq != vco;
5618
5619 dev_priv->skl_preferred_vco_freq = vco;
5620
5621 if (changed)
91c8a326 5622 intel_update_max_cdclk(&dev_priv->drm);
b2045352
VS
5623}
5624
5d96d8af 5625static void
3861fc60 5626skl_dpll0_enable(struct drm_i915_private *dev_priv, int vco)
5d96d8af 5627{
a8ca4934 5628 int min_cdclk = skl_calc_cdclk(0, vco);
5d96d8af
DL
5629 u32 val;
5630
63911d72 5631 WARN_ON(vco != 8100000 && vco != 8640000);
b2045352 5632
5d96d8af 5633 /* select the minimum CDCLK before enabling DPLL 0 */
9ef56154 5634 val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_cdclk);
5d96d8af
DL
5635 I915_WRITE(CDCLK_CTL, val);
5636 POSTING_READ(CDCLK_CTL);
5637
5638 /*
5639 * We always enable DPLL0 with the lowest link rate possible, but still
5640 * taking into account the VCO required to operate the eDP panel at the
5641 * desired frequency. The usual DP link rates operate with a VCO of
5642 * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640.
5643 * The modeset code is responsible for the selection of the exact link
5644 * rate later on, with the constraint of choosing a frequency that
a8ca4934 5645 * works with vco.
5d96d8af
DL
5646 */
5647 val = I915_READ(DPLL_CTRL1);
5648
5649 val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) |
5650 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
5651 val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
63911d72 5652 if (vco == 8640000)
5d96d8af
DL
5653 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
5654 SKL_DPLL0);
5655 else
5656 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
5657 SKL_DPLL0);
5658
5659 I915_WRITE(DPLL_CTRL1, val);
5660 POSTING_READ(DPLL_CTRL1);
5661
5662 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE);
5663
e24ca054
CW
5664 if (intel_wait_for_register(dev_priv,
5665 LCPLL1_CTL, LCPLL_PLL_LOCK, LCPLL_PLL_LOCK,
5666 5))
5d96d8af 5667 DRM_ERROR("DPLL0 not locked\n");
1cd593e0 5668
63911d72 5669 dev_priv->cdclk_pll.vco = vco;
b2045352
VS
5670
5671 /* We'll want to keep using the current vco from now on. */
5672 skl_set_preferred_cdclk_vco(dev_priv, vco);
5d96d8af
DL
5673}
5674
430e05de
VS
5675static void
5676skl_dpll0_disable(struct drm_i915_private *dev_priv)
5677{
5678 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE);
8ad32a05
CW
5679 if (intel_wait_for_register(dev_priv,
5680 LCPLL1_CTL, LCPLL_PLL_LOCK, 0,
5681 1))
430e05de 5682 DRM_ERROR("Couldn't disable DPLL0\n");
1cd593e0 5683
63911d72 5684 dev_priv->cdclk_pll.vco = 0;
430e05de
VS
5685}
5686
5d96d8af
DL
5687static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv)
5688{
5689 int ret;
5690 u32 val;
5691
5692 /* inform PCU we want to change CDCLK */
5693 val = SKL_CDCLK_PREPARE_FOR_CHANGE;
5694 mutex_lock(&dev_priv->rps.hw_lock);
5695 ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val);
5696 mutex_unlock(&dev_priv->rps.hw_lock);
5697
5698 return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE);
5699}
5700
5701static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv)
5702{
5703 unsigned int i;
5704
5705 for (i = 0; i < 15; i++) {
5706 if (skl_cdclk_pcu_ready(dev_priv))
5707 return true;
5708 udelay(10);
5709 }
5710
5711 return false;
5712}
5713
1cd593e0 5714static void skl_set_cdclk(struct drm_i915_private *dev_priv, int cdclk, int vco)
5d96d8af 5715{
91c8a326 5716 struct drm_device *dev = &dev_priv->drm;
5d96d8af
DL
5717 u32 freq_select, pcu_ack;
5718
1cd593e0
VS
5719 WARN_ON((cdclk == 24000) != (vco == 0));
5720
63911d72 5721 DRM_DEBUG_DRIVER("Changing CDCLK to %d kHz (VCO %d kHz)\n", cdclk, vco);
5d96d8af
DL
5722
5723 if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) {
5724 DRM_ERROR("failed to inform PCU about cdclk change\n");
5725 return;
5726 }
5727
5728 /* set CDCLK_CTL */
9ef56154 5729 switch (cdclk) {
5d96d8af
DL
5730 case 450000:
5731 case 432000:
5732 freq_select = CDCLK_FREQ_450_432;
5733 pcu_ack = 1;
5734 break;
5735 case 540000:
5736 freq_select = CDCLK_FREQ_540;
5737 pcu_ack = 2;
5738 break;
487ed2e4 5739 case 308571:
5d96d8af
DL
5740 case 337500:
5741 default:
5742 freq_select = CDCLK_FREQ_337_308;
5743 pcu_ack = 0;
5744 break;
487ed2e4 5745 case 617143:
5d96d8af
DL
5746 case 675000:
5747 freq_select = CDCLK_FREQ_675_617;
5748 pcu_ack = 3;
5749 break;
5750 }
5751
63911d72
VS
5752 if (dev_priv->cdclk_pll.vco != 0 &&
5753 dev_priv->cdclk_pll.vco != vco)
1cd593e0
VS
5754 skl_dpll0_disable(dev_priv);
5755
63911d72 5756 if (dev_priv->cdclk_pll.vco != vco)
1cd593e0
VS
5757 skl_dpll0_enable(dev_priv, vco);
5758
9ef56154 5759 I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(cdclk));
5d96d8af
DL
5760 POSTING_READ(CDCLK_CTL);
5761
5762 /* inform PCU of the change */
5763 mutex_lock(&dev_priv->rps.hw_lock);
5764 sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack);
5765 mutex_unlock(&dev_priv->rps.hw_lock);
560a7ae4
DL
5766
5767 intel_update_cdclk(dev);
5d96d8af
DL
5768}
5769
9f7eb31a
VS
5770static void skl_sanitize_cdclk(struct drm_i915_private *dev_priv);
5771
5d96d8af
DL
5772void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
5773{
709e05c3 5774 skl_set_cdclk(dev_priv, dev_priv->cdclk_pll.ref, 0);
5d96d8af
DL
5775}
5776
5777void skl_init_cdclk(struct drm_i915_private *dev_priv)
5778{
9f7eb31a
VS
5779 int cdclk, vco;
5780
5781 skl_sanitize_cdclk(dev_priv);
5d96d8af 5782
63911d72 5783 if (dev_priv->cdclk_freq != 0 && dev_priv->cdclk_pll.vco != 0) {
9f7eb31a
VS
5784 /*
5785 * Use the current vco as our initial
5786 * guess as to what the preferred vco is.
5787 */
5788 if (dev_priv->skl_preferred_vco_freq == 0)
5789 skl_set_preferred_cdclk_vco(dev_priv,
63911d72 5790 dev_priv->cdclk_pll.vco);
70c2c184 5791 return;
1cd593e0 5792 }
5d96d8af 5793
70c2c184
VS
5794 vco = dev_priv->skl_preferred_vco_freq;
5795 if (vco == 0)
63911d72 5796 vco = 8100000;
70c2c184 5797 cdclk = skl_calc_cdclk(0, vco);
5d96d8af 5798
70c2c184 5799 skl_set_cdclk(dev_priv, cdclk, vco);
5d96d8af
DL
5800}
5801
9f7eb31a 5802static void skl_sanitize_cdclk(struct drm_i915_private *dev_priv)
c73666f3 5803{
09492498 5804 uint32_t cdctl, expected;
c73666f3 5805
f1b391a5
SK
5806 /*
5807 * check if the pre-os intialized the display
5808 * There is SWF18 scratchpad register defined which is set by the
5809 * pre-os which can be used by the OS drivers to check the status
5810 */
5811 if ((I915_READ(SWF_ILK(0x18)) & 0x00FFFFFF) == 0)
5812 goto sanitize;
5813
91c8a326 5814 intel_update_cdclk(&dev_priv->drm);
c73666f3 5815 /* Is PLL enabled and locked ? */
1c3f7700
ID
5816 if (dev_priv->cdclk_pll.vco == 0 ||
5817 dev_priv->cdclk_freq == dev_priv->cdclk_pll.ref)
c73666f3
SK
5818 goto sanitize;
5819
5820 /* DPLL okay; verify the cdclock
5821 *
5822 * Noticed in some instances that the freq selection is correct but
5823 * decimal part is programmed wrong from BIOS where pre-os does not
5824 * enable display. Verify the same as well.
5825 */
09492498
VS
5826 cdctl = I915_READ(CDCLK_CTL);
5827 expected = (cdctl & CDCLK_FREQ_SEL_MASK) |
5828 skl_cdclk_decimal(dev_priv->cdclk_freq);
5829 if (cdctl == expected)
c73666f3 5830 /* All well; nothing to sanitize */
9f7eb31a 5831 return;
c89e39f3 5832
9f7eb31a
VS
5833sanitize:
5834 DRM_DEBUG_KMS("Sanitizing cdclk programmed by pre-os\n");
c73666f3 5835
9f7eb31a
VS
5836 /* force cdclk programming */
5837 dev_priv->cdclk_freq = 0;
5838 /* force full PLL disable + enable */
63911d72 5839 dev_priv->cdclk_pll.vco = -1;
c73666f3
SK
5840}
5841
30a970c6
JB
5842/* Adjust CDclk dividers to allow high res or save power if possible */
5843static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
5844{
fac5e23e 5845 struct drm_i915_private *dev_priv = to_i915(dev);
30a970c6
JB
5846 u32 val, cmd;
5847
164dfd28
VK
5848 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5849 != dev_priv->cdclk_freq);
d60c4473 5850
dfcab17e 5851 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
30a970c6 5852 cmd = 2;
dfcab17e 5853 else if (cdclk == 266667)
30a970c6
JB
5854 cmd = 1;
5855 else
5856 cmd = 0;
5857
5858 mutex_lock(&dev_priv->rps.hw_lock);
5859 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5860 val &= ~DSPFREQGUAR_MASK;
5861 val |= (cmd << DSPFREQGUAR_SHIFT);
5862 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5863 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5864 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
5865 50)) {
5866 DRM_ERROR("timed out waiting for CDclk change\n");
5867 }
5868 mutex_unlock(&dev_priv->rps.hw_lock);
5869
54433e91
VS
5870 mutex_lock(&dev_priv->sb_lock);
5871
dfcab17e 5872 if (cdclk == 400000) {
6bcda4f0 5873 u32 divider;
30a970c6 5874
6bcda4f0 5875 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
30a970c6 5876
30a970c6
JB
5877 /* adjust cdclk divider */
5878 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
87d5d259 5879 val &= ~CCK_FREQUENCY_VALUES;
30a970c6
JB
5880 val |= divider;
5881 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
a877e801
VS
5882
5883 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
87d5d259 5884 CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
a877e801
VS
5885 50))
5886 DRM_ERROR("timed out waiting for CDclk change\n");
30a970c6
JB
5887 }
5888
30a970c6
JB
5889 /* adjust self-refresh exit latency value */
5890 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
5891 val &= ~0x7f;
5892
5893 /*
5894 * For high bandwidth configs, we set a higher latency in the bunit
5895 * so that the core display fetch happens in time to avoid underruns.
5896 */
dfcab17e 5897 if (cdclk == 400000)
30a970c6
JB
5898 val |= 4500 / 250; /* 4.5 usec */
5899 else
5900 val |= 3000 / 250; /* 3.0 usec */
5901 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
54433e91 5902
a580516d 5903 mutex_unlock(&dev_priv->sb_lock);
30a970c6 5904
b6283055 5905 intel_update_cdclk(dev);
30a970c6
JB
5906}
5907
383c5a6a
VS
5908static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
5909{
fac5e23e 5910 struct drm_i915_private *dev_priv = to_i915(dev);
383c5a6a
VS
5911 u32 val, cmd;
5912
164dfd28
VK
5913 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5914 != dev_priv->cdclk_freq);
383c5a6a
VS
5915
5916 switch (cdclk) {
383c5a6a
VS
5917 case 333333:
5918 case 320000:
383c5a6a 5919 case 266667:
383c5a6a 5920 case 200000:
383c5a6a
VS
5921 break;
5922 default:
5f77eeb0 5923 MISSING_CASE(cdclk);
383c5a6a
VS
5924 return;
5925 }
5926
9d0d3fda
VS
5927 /*
5928 * Specs are full of misinformation, but testing on actual
5929 * hardware has shown that we just need to write the desired
5930 * CCK divider into the Punit register.
5931 */
5932 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
5933
383c5a6a
VS
5934 mutex_lock(&dev_priv->rps.hw_lock);
5935 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5936 val &= ~DSPFREQGUAR_MASK_CHV;
5937 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
5938 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5939 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5940 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
5941 50)) {
5942 DRM_ERROR("timed out waiting for CDclk change\n");
5943 }
5944 mutex_unlock(&dev_priv->rps.hw_lock);
5945
b6283055 5946 intel_update_cdclk(dev);
383c5a6a
VS
5947}
5948
30a970c6
JB
5949static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
5950 int max_pixclk)
5951{
6bcda4f0 5952 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
6cca3195 5953 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
29dc7ef3 5954
30a970c6
JB
5955 /*
5956 * Really only a few cases to deal with, as only 4 CDclks are supported:
5957 * 200MHz
5958 * 267MHz
29dc7ef3 5959 * 320/333MHz (depends on HPLL freq)
6cca3195
VS
5960 * 400MHz (VLV only)
5961 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
5962 * of the lower bin and adjust if needed.
e37c67a1
VS
5963 *
5964 * We seem to get an unstable or solid color picture at 200MHz.
5965 * Not sure what's wrong. For now use 200MHz only when all pipes
5966 * are off.
30a970c6 5967 */
6cca3195
VS
5968 if (!IS_CHERRYVIEW(dev_priv) &&
5969 max_pixclk > freq_320*limit/100)
dfcab17e 5970 return 400000;
6cca3195 5971 else if (max_pixclk > 266667*limit/100)
29dc7ef3 5972 return freq_320;
e37c67a1 5973 else if (max_pixclk > 0)
dfcab17e 5974 return 266667;
e37c67a1
VS
5975 else
5976 return 200000;
30a970c6
JB
5977}
5978
324513c0 5979static int bxt_calc_cdclk(int max_pixclk)
f8437dd1 5980{
760e1477 5981 if (max_pixclk > 576000)
f8437dd1 5982 return 624000;
760e1477 5983 else if (max_pixclk > 384000)
f8437dd1 5984 return 576000;
760e1477 5985 else if (max_pixclk > 288000)
f8437dd1 5986 return 384000;
760e1477 5987 else if (max_pixclk > 144000)
f8437dd1
VK
5988 return 288000;
5989 else
5990 return 144000;
5991}
5992
e8788cbc 5993/* Compute the max pixel clock for new configuration. */
a821fc46
ACO
5994static int intel_mode_max_pixclk(struct drm_device *dev,
5995 struct drm_atomic_state *state)
30a970c6 5996{
565602d7 5997 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fac5e23e 5998 struct drm_i915_private *dev_priv = to_i915(dev);
565602d7
ML
5999 struct drm_crtc *crtc;
6000 struct drm_crtc_state *crtc_state;
6001 unsigned max_pixclk = 0, i;
6002 enum pipe pipe;
30a970c6 6003
565602d7
ML
6004 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
6005 sizeof(intel_state->min_pixclk));
304603f4 6006
565602d7
ML
6007 for_each_crtc_in_state(state, crtc, crtc_state, i) {
6008 int pixclk = 0;
6009
6010 if (crtc_state->enable)
6011 pixclk = crtc_state->adjusted_mode.crtc_clock;
304603f4 6012
565602d7 6013 intel_state->min_pixclk[i] = pixclk;
30a970c6
JB
6014 }
6015
565602d7
ML
6016 for_each_pipe(dev_priv, pipe)
6017 max_pixclk = max(intel_state->min_pixclk[pipe], max_pixclk);
6018
30a970c6
JB
6019 return max_pixclk;
6020}
6021
27c329ed 6022static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state)
30a970c6 6023{
27c329ed 6024 struct drm_device *dev = state->dev;
fac5e23e 6025 struct drm_i915_private *dev_priv = to_i915(dev);
27c329ed 6026 int max_pixclk = intel_mode_max_pixclk(dev, state);
1a617b77
ML
6027 struct intel_atomic_state *intel_state =
6028 to_intel_atomic_state(state);
30a970c6 6029
1a617b77 6030 intel_state->cdclk = intel_state->dev_cdclk =
27c329ed 6031 valleyview_calc_cdclk(dev_priv, max_pixclk);
0a9ab303 6032
1a617b77
ML
6033 if (!intel_state->active_crtcs)
6034 intel_state->dev_cdclk = valleyview_calc_cdclk(dev_priv, 0);
6035
27c329ed
ML
6036 return 0;
6037}
304603f4 6038
324513c0 6039static int bxt_modeset_calc_cdclk(struct drm_atomic_state *state)
27c329ed 6040{
4e5ca60f 6041 int max_pixclk = ilk_max_pixel_rate(state);
1a617b77
ML
6042 struct intel_atomic_state *intel_state =
6043 to_intel_atomic_state(state);
85a96e7a 6044
1a617b77 6045 intel_state->cdclk = intel_state->dev_cdclk =
324513c0 6046 bxt_calc_cdclk(max_pixclk);
85a96e7a 6047
1a617b77 6048 if (!intel_state->active_crtcs)
324513c0 6049 intel_state->dev_cdclk = bxt_calc_cdclk(0);
1a617b77 6050
27c329ed 6051 return 0;
30a970c6
JB
6052}
6053
1e69cd74
VS
6054static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
6055{
6056 unsigned int credits, default_credits;
6057
6058 if (IS_CHERRYVIEW(dev_priv))
6059 default_credits = PFI_CREDIT(12);
6060 else
6061 default_credits = PFI_CREDIT(8);
6062
bfa7df01 6063 if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) {
1e69cd74
VS
6064 /* CHV suggested value is 31 or 63 */
6065 if (IS_CHERRYVIEW(dev_priv))
fcc0008f 6066 credits = PFI_CREDIT_63;
1e69cd74
VS
6067 else
6068 credits = PFI_CREDIT(15);
6069 } else {
6070 credits = default_credits;
6071 }
6072
6073 /*
6074 * WA - write default credits before re-programming
6075 * FIXME: should we also set the resend bit here?
6076 */
6077 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6078 default_credits);
6079
6080 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6081 credits | PFI_CREDIT_RESEND);
6082
6083 /*
6084 * FIXME is this guaranteed to clear
6085 * immediately or should we poll for it?
6086 */
6087 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
6088}
6089
27c329ed 6090static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state)
30a970c6 6091{
a821fc46 6092 struct drm_device *dev = old_state->dev;
fac5e23e 6093 struct drm_i915_private *dev_priv = to_i915(dev);
1a617b77
ML
6094 struct intel_atomic_state *old_intel_state =
6095 to_intel_atomic_state(old_state);
6096 unsigned req_cdclk = old_intel_state->dev_cdclk;
30a970c6 6097
27c329ed
ML
6098 /*
6099 * FIXME: We can end up here with all power domains off, yet
6100 * with a CDCLK frequency other than the minimum. To account
6101 * for this take the PIPE-A power domain, which covers the HW
6102 * blocks needed for the following programming. This can be
6103 * removed once it's guaranteed that we get here either with
6104 * the minimum CDCLK set, or the required power domains
6105 * enabled.
6106 */
6107 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
738c05c0 6108
27c329ed
ML
6109 if (IS_CHERRYVIEW(dev))
6110 cherryview_set_cdclk(dev, req_cdclk);
6111 else
6112 valleyview_set_cdclk(dev, req_cdclk);
738c05c0 6113
27c329ed 6114 vlv_program_pfi_credits(dev_priv);
1e69cd74 6115
27c329ed 6116 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
30a970c6
JB
6117}
6118
89b667f8
JB
6119static void valleyview_crtc_enable(struct drm_crtc *crtc)
6120{
6121 struct drm_device *dev = crtc->dev;
a72e4c9f 6122 struct drm_i915_private *dev_priv = to_i915(dev);
89b667f8
JB
6123 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6124 struct intel_encoder *encoder;
b95c5321
ML
6125 struct intel_crtc_state *pipe_config =
6126 to_intel_crtc_state(crtc->state);
89b667f8 6127 int pipe = intel_crtc->pipe;
89b667f8 6128
53d9f4e9 6129 if (WARN_ON(intel_crtc->active))
89b667f8
JB
6130 return;
6131
37a5650b 6132 if (intel_crtc_has_dp_encoder(intel_crtc->config))
fe3cd48d 6133 intel_dp_set_m_n(intel_crtc, M1_N1);
5b18e57c
DV
6134
6135 intel_set_pipe_timings(intel_crtc);
bc58be60 6136 intel_set_pipe_src_size(intel_crtc);
5b18e57c 6137
c14b0485 6138 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
fac5e23e 6139 struct drm_i915_private *dev_priv = to_i915(dev);
c14b0485
VS
6140
6141 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
6142 I915_WRITE(CHV_CANVAS(pipe), 0);
6143 }
6144
5b18e57c
DV
6145 i9xx_set_pipeconf(intel_crtc);
6146
89b667f8 6147 intel_crtc->active = true;
89b667f8 6148
a72e4c9f 6149 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 6150
89b667f8
JB
6151 for_each_encoder_on_crtc(dev, crtc, encoder)
6152 if (encoder->pre_pll_enable)
6153 encoder->pre_pll_enable(encoder);
6154
cd2d34d9
VS
6155 if (IS_CHERRYVIEW(dev)) {
6156 chv_prepare_pll(intel_crtc, intel_crtc->config);
6157 chv_enable_pll(intel_crtc, intel_crtc->config);
6158 } else {
6159 vlv_prepare_pll(intel_crtc, intel_crtc->config);
6160 vlv_enable_pll(intel_crtc, intel_crtc->config);
9d556c99 6161 }
89b667f8
JB
6162
6163 for_each_encoder_on_crtc(dev, crtc, encoder)
6164 if (encoder->pre_enable)
6165 encoder->pre_enable(encoder);
6166
2dd24552
JB
6167 i9xx_pfit_enable(intel_crtc);
6168
b95c5321 6169 intel_color_load_luts(&pipe_config->base);
63cbb074 6170
caed361d 6171 intel_update_watermarks(crtc);
e1fdc473 6172 intel_enable_pipe(intel_crtc);
be6a6f8e 6173
4b3a9526
VS
6174 assert_vblank_disabled(crtc);
6175 drm_crtc_vblank_on(crtc);
6176
f9b61ff6
DV
6177 for_each_encoder_on_crtc(dev, crtc, encoder)
6178 encoder->enable(encoder);
89b667f8
JB
6179}
6180
f13c2ef3
DV
6181static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
6182{
6183 struct drm_device *dev = crtc->base.dev;
fac5e23e 6184 struct drm_i915_private *dev_priv = to_i915(dev);
f13c2ef3 6185
6e3c9717
ACO
6186 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
6187 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
f13c2ef3
DV
6188}
6189
0b8765c6 6190static void i9xx_crtc_enable(struct drm_crtc *crtc)
79e53945
JB
6191{
6192 struct drm_device *dev = crtc->dev;
a72e4c9f 6193 struct drm_i915_private *dev_priv = to_i915(dev);
79e53945 6194 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 6195 struct intel_encoder *encoder;
b95c5321
ML
6196 struct intel_crtc_state *pipe_config =
6197 to_intel_crtc_state(crtc->state);
cd2d34d9 6198 enum pipe pipe = intel_crtc->pipe;
79e53945 6199
53d9f4e9 6200 if (WARN_ON(intel_crtc->active))
f7abfe8b
CW
6201 return;
6202
f13c2ef3
DV
6203 i9xx_set_pll_dividers(intel_crtc);
6204
37a5650b 6205 if (intel_crtc_has_dp_encoder(intel_crtc->config))
fe3cd48d 6206 intel_dp_set_m_n(intel_crtc, M1_N1);
5b18e57c
DV
6207
6208 intel_set_pipe_timings(intel_crtc);
bc58be60 6209 intel_set_pipe_src_size(intel_crtc);
5b18e57c 6210
5b18e57c
DV
6211 i9xx_set_pipeconf(intel_crtc);
6212
f7abfe8b 6213 intel_crtc->active = true;
6b383a7f 6214
4a3436e8 6215 if (!IS_GEN2(dev))
a72e4c9f 6216 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 6217
9d6d9f19
MK
6218 for_each_encoder_on_crtc(dev, crtc, encoder)
6219 if (encoder->pre_enable)
6220 encoder->pre_enable(encoder);
6221
f6736a1a
DV
6222 i9xx_enable_pll(intel_crtc);
6223
2dd24552
JB
6224 i9xx_pfit_enable(intel_crtc);
6225
b95c5321 6226 intel_color_load_luts(&pipe_config->base);
63cbb074 6227
f37fcc2a 6228 intel_update_watermarks(crtc);
e1fdc473 6229 intel_enable_pipe(intel_crtc);
be6a6f8e 6230
4b3a9526
VS
6231 assert_vblank_disabled(crtc);
6232 drm_crtc_vblank_on(crtc);
6233
f9b61ff6
DV
6234 for_each_encoder_on_crtc(dev, crtc, encoder)
6235 encoder->enable(encoder);
0b8765c6 6236}
79e53945 6237
87476d63
DV
6238static void i9xx_pfit_disable(struct intel_crtc *crtc)
6239{
6240 struct drm_device *dev = crtc->base.dev;
fac5e23e 6241 struct drm_i915_private *dev_priv = to_i915(dev);
87476d63 6242
6e3c9717 6243 if (!crtc->config->gmch_pfit.control)
328d8e82 6244 return;
87476d63 6245
328d8e82 6246 assert_pipe_disabled(dev_priv, crtc->pipe);
87476d63 6247
328d8e82
DV
6248 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6249 I915_READ(PFIT_CONTROL));
6250 I915_WRITE(PFIT_CONTROL, 0);
87476d63
DV
6251}
6252
0b8765c6
JB
6253static void i9xx_crtc_disable(struct drm_crtc *crtc)
6254{
6255 struct drm_device *dev = crtc->dev;
fac5e23e 6256 struct drm_i915_private *dev_priv = to_i915(dev);
0b8765c6 6257 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 6258 struct intel_encoder *encoder;
0b8765c6 6259 int pipe = intel_crtc->pipe;
ef9c3aee 6260
6304cd91
VS
6261 /*
6262 * On gen2 planes are double buffered but the pipe isn't, so we must
6263 * wait for planes to fully turn off before disabling the pipe.
6264 */
90e83e53
ACO
6265 if (IS_GEN2(dev))
6266 intel_wait_for_vblank(dev, pipe);
6304cd91 6267
4b3a9526
VS
6268 for_each_encoder_on_crtc(dev, crtc, encoder)
6269 encoder->disable(encoder);
6270
f9b61ff6
DV
6271 drm_crtc_vblank_off(crtc);
6272 assert_vblank_disabled(crtc);
6273
575f7ab7 6274 intel_disable_pipe(intel_crtc);
24a1f16d 6275
87476d63 6276 i9xx_pfit_disable(intel_crtc);
24a1f16d 6277
89b667f8
JB
6278 for_each_encoder_on_crtc(dev, crtc, encoder)
6279 if (encoder->post_disable)
6280 encoder->post_disable(encoder);
6281
a65347ba 6282 if (!intel_crtc->config->has_dsi_encoder) {
076ed3b2
CML
6283 if (IS_CHERRYVIEW(dev))
6284 chv_disable_pll(dev_priv, pipe);
6285 else if (IS_VALLEYVIEW(dev))
6286 vlv_disable_pll(dev_priv, pipe);
6287 else
1c4e0274 6288 i9xx_disable_pll(intel_crtc);
076ed3b2 6289 }
0b8765c6 6290
d6db995f
VS
6291 for_each_encoder_on_crtc(dev, crtc, encoder)
6292 if (encoder->post_pll_disable)
6293 encoder->post_pll_disable(encoder);
6294
4a3436e8 6295 if (!IS_GEN2(dev))
a72e4c9f 6296 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
0b8765c6
JB
6297}
6298
b17d48e2
ML
6299static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
6300{
842e0307 6301 struct intel_encoder *encoder;
b17d48e2
ML
6302 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6303 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
6304 enum intel_display_power_domain domain;
6305 unsigned long domains;
6306
6307 if (!intel_crtc->active)
6308 return;
6309
a539205a 6310 if (to_intel_plane_state(crtc->primary->state)->visible) {
5a21b665 6311 WARN_ON(intel_crtc->flip_work);
fc32b1fd 6312
2622a081 6313 intel_pre_disable_primary_noatomic(crtc);
54a41961
ML
6314
6315 intel_crtc_disable_planes(crtc, 1 << drm_plane_index(crtc->primary));
6316 to_intel_plane_state(crtc->primary->state)->visible = false;
a539205a
ML
6317 }
6318
b17d48e2 6319 dev_priv->display.crtc_disable(crtc);
842e0307 6320
78108b7c
VS
6321 DRM_DEBUG_KMS("[CRTC:%d:%s] hw state adjusted, was enabled, now disabled\n",
6322 crtc->base.id, crtc->name);
842e0307
ML
6323
6324 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->state, NULL) < 0);
6325 crtc->state->active = false;
37d9078b 6326 intel_crtc->active = false;
842e0307
ML
6327 crtc->enabled = false;
6328 crtc->state->connector_mask = 0;
6329 crtc->state->encoder_mask = 0;
6330
6331 for_each_encoder_on_crtc(crtc->dev, crtc, encoder)
6332 encoder->base.crtc = NULL;
6333
58f9c0bc 6334 intel_fbc_disable(intel_crtc);
37d9078b 6335 intel_update_watermarks(crtc);
1f7457b1 6336 intel_disable_shared_dpll(intel_crtc);
b17d48e2
ML
6337
6338 domains = intel_crtc->enabled_power_domains;
6339 for_each_power_domain(domain, domains)
6340 intel_display_power_put(dev_priv, domain);
6341 intel_crtc->enabled_power_domains = 0;
565602d7
ML
6342
6343 dev_priv->active_crtcs &= ~(1 << intel_crtc->pipe);
6344 dev_priv->min_pixclk[intel_crtc->pipe] = 0;
b17d48e2
ML
6345}
6346
6b72d486
ML
6347/*
6348 * turn all crtc's off, but do not adjust state
6349 * This has to be paired with a call to intel_modeset_setup_hw_state.
6350 */
70e0bd74 6351int intel_display_suspend(struct drm_device *dev)
ee7b9f93 6352{
e2c8b870 6353 struct drm_i915_private *dev_priv = to_i915(dev);
70e0bd74 6354 struct drm_atomic_state *state;
e2c8b870 6355 int ret;
70e0bd74 6356
e2c8b870
ML
6357 state = drm_atomic_helper_suspend(dev);
6358 ret = PTR_ERR_OR_ZERO(state);
70e0bd74
ML
6359 if (ret)
6360 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
e2c8b870
ML
6361 else
6362 dev_priv->modeset_restore_state = state;
70e0bd74 6363 return ret;
ee7b9f93
JB
6364}
6365
ea5b213a 6366void intel_encoder_destroy(struct drm_encoder *encoder)
7e7d76c3 6367{
4ef69c7a 6368 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
ea5b213a 6369
ea5b213a
CW
6370 drm_encoder_cleanup(encoder);
6371 kfree(intel_encoder);
7e7d76c3
JB
6372}
6373
0a91ca29
DV
6374/* Cross check the actual hw state with our own modeset state tracking (and it's
6375 * internal consistency). */
5a21b665 6376static void intel_connector_verify_state(struct intel_connector *connector)
79e53945 6377{
5a21b665 6378 struct drm_crtc *crtc = connector->base.state->crtc;
35dd3c64
ML
6379
6380 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6381 connector->base.base.id,
6382 connector->base.name);
6383
0a91ca29 6384 if (connector->get_hw_state(connector)) {
e85376cb 6385 struct intel_encoder *encoder = connector->encoder;
5a21b665 6386 struct drm_connector_state *conn_state = connector->base.state;
0a91ca29 6387
35dd3c64
ML
6388 I915_STATE_WARN(!crtc,
6389 "connector enabled without attached crtc\n");
0a91ca29 6390
35dd3c64
ML
6391 if (!crtc)
6392 return;
6393
6394 I915_STATE_WARN(!crtc->state->active,
6395 "connector is active, but attached crtc isn't\n");
6396
e85376cb 6397 if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST)
35dd3c64
ML
6398 return;
6399
e85376cb 6400 I915_STATE_WARN(conn_state->best_encoder != &encoder->base,
35dd3c64
ML
6401 "atomic encoder doesn't match attached encoder\n");
6402
e85376cb 6403 I915_STATE_WARN(conn_state->crtc != encoder->base.crtc,
35dd3c64
ML
6404 "attached encoder crtc differs from connector crtc\n");
6405 } else {
4d688a2a
ML
6406 I915_STATE_WARN(crtc && crtc->state->active,
6407 "attached crtc is active, but connector isn't\n");
5a21b665 6408 I915_STATE_WARN(!crtc && connector->base.state->best_encoder,
35dd3c64 6409 "best encoder set without crtc!\n");
0a91ca29 6410 }
79e53945
JB
6411}
6412
08d9bc92
ACO
6413int intel_connector_init(struct intel_connector *connector)
6414{
5350a031 6415 drm_atomic_helper_connector_reset(&connector->base);
08d9bc92 6416
5350a031 6417 if (!connector->base.state)
08d9bc92
ACO
6418 return -ENOMEM;
6419
08d9bc92
ACO
6420 return 0;
6421}
6422
6423struct intel_connector *intel_connector_alloc(void)
6424{
6425 struct intel_connector *connector;
6426
6427 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6428 if (!connector)
6429 return NULL;
6430
6431 if (intel_connector_init(connector) < 0) {
6432 kfree(connector);
6433 return NULL;
6434 }
6435
6436 return connector;
6437}
6438
f0947c37
DV
6439/* Simple connector->get_hw_state implementation for encoders that support only
6440 * one connector and no cloning and hence the encoder state determines the state
6441 * of the connector. */
6442bool intel_connector_get_hw_state(struct intel_connector *connector)
ea5b213a 6443{
24929352 6444 enum pipe pipe = 0;
f0947c37 6445 struct intel_encoder *encoder = connector->encoder;
ea5b213a 6446
f0947c37 6447 return encoder->get_hw_state(encoder, &pipe);
ea5b213a
CW
6448}
6449
6d293983 6450static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
d272ddfa 6451{
6d293983
ACO
6452 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
6453 return crtc_state->fdi_lanes;
d272ddfa
VS
6454
6455 return 0;
6456}
6457
6d293983 6458static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
5cec258b 6459 struct intel_crtc_state *pipe_config)
1857e1da 6460{
6d293983
ACO
6461 struct drm_atomic_state *state = pipe_config->base.state;
6462 struct intel_crtc *other_crtc;
6463 struct intel_crtc_state *other_crtc_state;
6464
1857e1da
DV
6465 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
6466 pipe_name(pipe), pipe_config->fdi_lanes);
6467 if (pipe_config->fdi_lanes > 4) {
6468 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
6469 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6470 return -EINVAL;
1857e1da
DV
6471 }
6472
bafb6553 6473 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
1857e1da
DV
6474 if (pipe_config->fdi_lanes > 2) {
6475 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
6476 pipe_config->fdi_lanes);
6d293983 6477 return -EINVAL;
1857e1da 6478 } else {
6d293983 6479 return 0;
1857e1da
DV
6480 }
6481 }
6482
6483 if (INTEL_INFO(dev)->num_pipes == 2)
6d293983 6484 return 0;
1857e1da
DV
6485
6486 /* Ivybridge 3 pipe is really complicated */
6487 switch (pipe) {
6488 case PIPE_A:
6d293983 6489 return 0;
1857e1da 6490 case PIPE_B:
6d293983
ACO
6491 if (pipe_config->fdi_lanes <= 2)
6492 return 0;
6493
6494 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
6495 other_crtc_state =
6496 intel_atomic_get_crtc_state(state, other_crtc);
6497 if (IS_ERR(other_crtc_state))
6498 return PTR_ERR(other_crtc_state);
6499
6500 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
1857e1da
DV
6501 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
6502 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6503 return -EINVAL;
1857e1da 6504 }
6d293983 6505 return 0;
1857e1da 6506 case PIPE_C:
251cc67c
VS
6507 if (pipe_config->fdi_lanes > 2) {
6508 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
6509 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6510 return -EINVAL;
251cc67c 6511 }
6d293983
ACO
6512
6513 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
6514 other_crtc_state =
6515 intel_atomic_get_crtc_state(state, other_crtc);
6516 if (IS_ERR(other_crtc_state))
6517 return PTR_ERR(other_crtc_state);
6518
6519 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
1857e1da 6520 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
6d293983 6521 return -EINVAL;
1857e1da 6522 }
6d293983 6523 return 0;
1857e1da
DV
6524 default:
6525 BUG();
6526 }
6527}
6528
e29c22c0
DV
6529#define RETRY 1
6530static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5cec258b 6531 struct intel_crtc_state *pipe_config)
877d48d5 6532{
1857e1da 6533 struct drm_device *dev = intel_crtc->base.dev;
7c5f93b0 6534 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
6d293983
ACO
6535 int lane, link_bw, fdi_dotclock, ret;
6536 bool needs_recompute = false;
877d48d5 6537
e29c22c0 6538retry:
877d48d5
DV
6539 /* FDI is a binary signal running at ~2.7GHz, encoding
6540 * each output octet as 10 bits. The actual frequency
6541 * is stored as a divider into a 100MHz clock, and the
6542 * mode pixel clock is stored in units of 1KHz.
6543 * Hence the bw of each lane in terms of the mode signal
6544 * is:
6545 */
21a727b3 6546 link_bw = intel_fdi_link_freq(to_i915(dev), pipe_config);
877d48d5 6547
241bfc38 6548 fdi_dotclock = adjusted_mode->crtc_clock;
877d48d5 6549
2bd89a07 6550 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
877d48d5
DV
6551 pipe_config->pipe_bpp);
6552
6553 pipe_config->fdi_lanes = lane;
6554
2bd89a07 6555 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
877d48d5 6556 link_bw, &pipe_config->fdi_m_n);
1857e1da 6557
e3b247da 6558 ret = ironlake_check_fdi_lanes(dev, intel_crtc->pipe, pipe_config);
6d293983 6559 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
e29c22c0
DV
6560 pipe_config->pipe_bpp -= 2*3;
6561 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
6562 pipe_config->pipe_bpp);
6563 needs_recompute = true;
6564 pipe_config->bw_constrained = true;
6565
6566 goto retry;
6567 }
6568
6569 if (needs_recompute)
6570 return RETRY;
6571
6d293983 6572 return ret;
877d48d5
DV
6573}
6574
8cfb3407
VS
6575static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv,
6576 struct intel_crtc_state *pipe_config)
6577{
6578 if (pipe_config->pipe_bpp > 24)
6579 return false;
6580
6581 /* HSW can handle pixel rate up to cdclk? */
2d1fe073 6582 if (IS_HASWELL(dev_priv))
8cfb3407
VS
6583 return true;
6584
6585 /*
b432e5cf
VS
6586 * We compare against max which means we must take
6587 * the increased cdclk requirement into account when
6588 * calculating the new cdclk.
6589 *
6590 * Should measure whether using a lower cdclk w/o IPS
8cfb3407
VS
6591 */
6592 return ilk_pipe_pixel_rate(pipe_config) <=
6593 dev_priv->max_cdclk_freq * 95 / 100;
6594}
6595
42db64ef 6596static void hsw_compute_ips_config(struct intel_crtc *crtc,
5cec258b 6597 struct intel_crtc_state *pipe_config)
42db64ef 6598{
8cfb3407 6599 struct drm_device *dev = crtc->base.dev;
fac5e23e 6600 struct drm_i915_private *dev_priv = to_i915(dev);
8cfb3407 6601
d330a953 6602 pipe_config->ips_enabled = i915.enable_ips &&
8cfb3407
VS
6603 hsw_crtc_supports_ips(crtc) &&
6604 pipe_config_supports_ips(dev_priv, pipe_config);
42db64ef
PZ
6605}
6606
39acb4aa
VS
6607static bool intel_crtc_supports_double_wide(const struct intel_crtc *crtc)
6608{
6609 const struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6610
6611 /* GDG double wide on either pipe, otherwise pipe A only */
6612 return INTEL_INFO(dev_priv)->gen < 4 &&
6613 (crtc->pipe == PIPE_A || IS_I915G(dev_priv));
6614}
6615
a43f6e0f 6616static int intel_crtc_compute_config(struct intel_crtc *crtc,
5cec258b 6617 struct intel_crtc_state *pipe_config)
79e53945 6618{
a43f6e0f 6619 struct drm_device *dev = crtc->base.dev;
fac5e23e 6620 struct drm_i915_private *dev_priv = to_i915(dev);
7c5f93b0 6621 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
f3261156 6622 int clock_limit = dev_priv->max_dotclk_freq;
89749350 6623
cf532bb2 6624 if (INTEL_INFO(dev)->gen < 4) {
f3261156 6625 clock_limit = dev_priv->max_cdclk_freq * 9 / 10;
cf532bb2
VS
6626
6627 /*
39acb4aa 6628 * Enable double wide mode when the dot clock
cf532bb2 6629 * is > 90% of the (display) core speed.
cf532bb2 6630 */
39acb4aa
VS
6631 if (intel_crtc_supports_double_wide(crtc) &&
6632 adjusted_mode->crtc_clock > clock_limit) {
f3261156 6633 clock_limit = dev_priv->max_dotclk_freq;
cf532bb2 6634 pipe_config->double_wide = true;
ad3a4479 6635 }
f3261156 6636 }
ad3a4479 6637
f3261156
VS
6638 if (adjusted_mode->crtc_clock > clock_limit) {
6639 DRM_DEBUG_KMS("requested pixel clock (%d kHz) too high (max: %d kHz, double wide: %s)\n",
6640 adjusted_mode->crtc_clock, clock_limit,
6641 yesno(pipe_config->double_wide));
6642 return -EINVAL;
2c07245f 6643 }
89749350 6644
1d1d0e27
VS
6645 /*
6646 * Pipe horizontal size must be even in:
6647 * - DVO ganged mode
6648 * - LVDS dual channel mode
6649 * - Double wide pipe
6650 */
2d84d2b3 6651 if ((intel_crtc_has_type(pipe_config, INTEL_OUTPUT_LVDS) &&
1d1d0e27
VS
6652 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
6653 pipe_config->pipe_src_w &= ~1;
6654
8693a824
DL
6655 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
6656 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
44f46b42
CW
6657 */
6658 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
aad941d5 6659 adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay)
e29c22c0 6660 return -EINVAL;
44f46b42 6661
f5adf94e 6662 if (HAS_IPS(dev))
a43f6e0f
DV
6663 hsw_compute_ips_config(crtc, pipe_config);
6664
877d48d5 6665 if (pipe_config->has_pch_encoder)
a43f6e0f 6666 return ironlake_fdi_compute_config(crtc, pipe_config);
877d48d5 6667
cf5a15be 6668 return 0;
79e53945
JB
6669}
6670
1652d19e
VS
6671static int skylake_get_display_clock_speed(struct drm_device *dev)
6672{
6673 struct drm_i915_private *dev_priv = to_i915(dev);
ea61791e 6674 uint32_t cdctl;
1652d19e 6675
ea61791e 6676 skl_dpll0_update(dev_priv);
1652d19e 6677
63911d72 6678 if (dev_priv->cdclk_pll.vco == 0)
709e05c3 6679 return dev_priv->cdclk_pll.ref;
1652d19e 6680
ea61791e 6681 cdctl = I915_READ(CDCLK_CTL);
1652d19e 6682
63911d72 6683 if (dev_priv->cdclk_pll.vco == 8640000) {
1652d19e
VS
6684 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6685 case CDCLK_FREQ_450_432:
6686 return 432000;
6687 case CDCLK_FREQ_337_308:
487ed2e4 6688 return 308571;
ea61791e
VS
6689 case CDCLK_FREQ_540:
6690 return 540000;
1652d19e 6691 case CDCLK_FREQ_675_617:
487ed2e4 6692 return 617143;
1652d19e 6693 default:
ea61791e 6694 MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK);
1652d19e
VS
6695 }
6696 } else {
1652d19e
VS
6697 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6698 case CDCLK_FREQ_450_432:
6699 return 450000;
6700 case CDCLK_FREQ_337_308:
6701 return 337500;
ea61791e
VS
6702 case CDCLK_FREQ_540:
6703 return 540000;
1652d19e
VS
6704 case CDCLK_FREQ_675_617:
6705 return 675000;
6706 default:
ea61791e 6707 MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK);
1652d19e
VS
6708 }
6709 }
6710
709e05c3 6711 return dev_priv->cdclk_pll.ref;
1652d19e
VS
6712}
6713
83d7c81f
VS
6714static void bxt_de_pll_update(struct drm_i915_private *dev_priv)
6715{
6716 u32 val;
6717
6718 dev_priv->cdclk_pll.ref = 19200;
1c3f7700 6719 dev_priv->cdclk_pll.vco = 0;
83d7c81f
VS
6720
6721 val = I915_READ(BXT_DE_PLL_ENABLE);
1c3f7700 6722 if ((val & BXT_DE_PLL_PLL_ENABLE) == 0)
83d7c81f 6723 return;
83d7c81f 6724
1c3f7700
ID
6725 if (WARN_ON((val & BXT_DE_PLL_LOCK) == 0))
6726 return;
83d7c81f
VS
6727
6728 val = I915_READ(BXT_DE_PLL_CTL);
6729 dev_priv->cdclk_pll.vco = (val & BXT_DE_PLL_RATIO_MASK) *
6730 dev_priv->cdclk_pll.ref;
6731}
6732
acd3f3d3
BP
6733static int broxton_get_display_clock_speed(struct drm_device *dev)
6734{
6735 struct drm_i915_private *dev_priv = to_i915(dev);
f5986242
VS
6736 u32 divider;
6737 int div, vco;
acd3f3d3 6738
83d7c81f
VS
6739 bxt_de_pll_update(dev_priv);
6740
f5986242
VS
6741 vco = dev_priv->cdclk_pll.vco;
6742 if (vco == 0)
6743 return dev_priv->cdclk_pll.ref;
acd3f3d3 6744
f5986242 6745 divider = I915_READ(CDCLK_CTL) & BXT_CDCLK_CD2X_DIV_SEL_MASK;
acd3f3d3 6746
f5986242 6747 switch (divider) {
acd3f3d3 6748 case BXT_CDCLK_CD2X_DIV_SEL_1:
f5986242
VS
6749 div = 2;
6750 break;
acd3f3d3 6751 case BXT_CDCLK_CD2X_DIV_SEL_1_5:
f5986242
VS
6752 div = 3;
6753 break;
acd3f3d3 6754 case BXT_CDCLK_CD2X_DIV_SEL_2:
f5986242
VS
6755 div = 4;
6756 break;
acd3f3d3 6757 case BXT_CDCLK_CD2X_DIV_SEL_4:
f5986242
VS
6758 div = 8;
6759 break;
6760 default:
6761 MISSING_CASE(divider);
6762 return dev_priv->cdclk_pll.ref;
acd3f3d3
BP
6763 }
6764
f5986242 6765 return DIV_ROUND_CLOSEST(vco, div);
acd3f3d3
BP
6766}
6767
1652d19e
VS
6768static int broadwell_get_display_clock_speed(struct drm_device *dev)
6769{
fac5e23e 6770 struct drm_i915_private *dev_priv = to_i915(dev);
1652d19e
VS
6771 uint32_t lcpll = I915_READ(LCPLL_CTL);
6772 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6773
6774 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6775 return 800000;
6776 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6777 return 450000;
6778 else if (freq == LCPLL_CLK_FREQ_450)
6779 return 450000;
6780 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
6781 return 540000;
6782 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
6783 return 337500;
6784 else
6785 return 675000;
6786}
6787
6788static int haswell_get_display_clock_speed(struct drm_device *dev)
6789{
fac5e23e 6790 struct drm_i915_private *dev_priv = to_i915(dev);
1652d19e
VS
6791 uint32_t lcpll = I915_READ(LCPLL_CTL);
6792 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6793
6794 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6795 return 800000;
6796 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6797 return 450000;
6798 else if (freq == LCPLL_CLK_FREQ_450)
6799 return 450000;
6800 else if (IS_HSW_ULT(dev))
6801 return 337500;
6802 else
6803 return 540000;
79e53945
JB
6804}
6805
25eb05fc
JB
6806static int valleyview_get_display_clock_speed(struct drm_device *dev)
6807{
bfa7df01
VS
6808 return vlv_get_cck_clock_hpll(to_i915(dev), "cdclk",
6809 CCK_DISPLAY_CLOCK_CONTROL);
25eb05fc
JB
6810}
6811
b37a6434
VS
6812static int ilk_get_display_clock_speed(struct drm_device *dev)
6813{
6814 return 450000;
6815}
6816
e70236a8
JB
6817static int i945_get_display_clock_speed(struct drm_device *dev)
6818{
6819 return 400000;
6820}
79e53945 6821
e70236a8 6822static int i915_get_display_clock_speed(struct drm_device *dev)
79e53945 6823{
e907f170 6824 return 333333;
e70236a8 6825}
79e53945 6826
e70236a8
JB
6827static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
6828{
6829 return 200000;
6830}
79e53945 6831
257a7ffc
DV
6832static int pnv_get_display_clock_speed(struct drm_device *dev)
6833{
6834 u16 gcfgc = 0;
6835
6836 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6837
6838 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6839 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
e907f170 6840 return 266667;
257a7ffc 6841 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
e907f170 6842 return 333333;
257a7ffc 6843 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
e907f170 6844 return 444444;
257a7ffc
DV
6845 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
6846 return 200000;
6847 default:
6848 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
6849 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
e907f170 6850 return 133333;
257a7ffc 6851 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
e907f170 6852 return 166667;
257a7ffc
DV
6853 }
6854}
6855
e70236a8
JB
6856static int i915gm_get_display_clock_speed(struct drm_device *dev)
6857{
6858 u16 gcfgc = 0;
79e53945 6859
e70236a8
JB
6860 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6861
6862 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
e907f170 6863 return 133333;
e70236a8
JB
6864 else {
6865 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6866 case GC_DISPLAY_CLOCK_333_MHZ:
e907f170 6867 return 333333;
e70236a8
JB
6868 default:
6869 case GC_DISPLAY_CLOCK_190_200_MHZ:
6870 return 190000;
79e53945 6871 }
e70236a8
JB
6872 }
6873}
6874
6875static int i865_get_display_clock_speed(struct drm_device *dev)
6876{
e907f170 6877 return 266667;
e70236a8
JB
6878}
6879
1b1d2716 6880static int i85x_get_display_clock_speed(struct drm_device *dev)
e70236a8
JB
6881{
6882 u16 hpllcc = 0;
1b1d2716 6883
65cd2b3f
VS
6884 /*
6885 * 852GM/852GMV only supports 133 MHz and the HPLLCC
6886 * encoding is different :(
6887 * FIXME is this the right way to detect 852GM/852GMV?
6888 */
6889 if (dev->pdev->revision == 0x1)
6890 return 133333;
6891
1b1d2716
VS
6892 pci_bus_read_config_word(dev->pdev->bus,
6893 PCI_DEVFN(0, 3), HPLLCC, &hpllcc);
6894
e70236a8
JB
6895 /* Assume that the hardware is in the high speed state. This
6896 * should be the default.
6897 */
6898 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
6899 case GC_CLOCK_133_200:
1b1d2716 6900 case GC_CLOCK_133_200_2:
e70236a8
JB
6901 case GC_CLOCK_100_200:
6902 return 200000;
6903 case GC_CLOCK_166_250:
6904 return 250000;
6905 case GC_CLOCK_100_133:
e907f170 6906 return 133333;
1b1d2716
VS
6907 case GC_CLOCK_133_266:
6908 case GC_CLOCK_133_266_2:
6909 case GC_CLOCK_166_266:
6910 return 266667;
e70236a8 6911 }
79e53945 6912
e70236a8
JB
6913 /* Shouldn't happen */
6914 return 0;
6915}
79e53945 6916
e70236a8
JB
6917static int i830_get_display_clock_speed(struct drm_device *dev)
6918{
e907f170 6919 return 133333;
79e53945
JB
6920}
6921
34edce2f
VS
6922static unsigned int intel_hpll_vco(struct drm_device *dev)
6923{
fac5e23e 6924 struct drm_i915_private *dev_priv = to_i915(dev);
34edce2f
VS
6925 static const unsigned int blb_vco[8] = {
6926 [0] = 3200000,
6927 [1] = 4000000,
6928 [2] = 5333333,
6929 [3] = 4800000,
6930 [4] = 6400000,
6931 };
6932 static const unsigned int pnv_vco[8] = {
6933 [0] = 3200000,
6934 [1] = 4000000,
6935 [2] = 5333333,
6936 [3] = 4800000,
6937 [4] = 2666667,
6938 };
6939 static const unsigned int cl_vco[8] = {
6940 [0] = 3200000,
6941 [1] = 4000000,
6942 [2] = 5333333,
6943 [3] = 6400000,
6944 [4] = 3333333,
6945 [5] = 3566667,
6946 [6] = 4266667,
6947 };
6948 static const unsigned int elk_vco[8] = {
6949 [0] = 3200000,
6950 [1] = 4000000,
6951 [2] = 5333333,
6952 [3] = 4800000,
6953 };
6954 static const unsigned int ctg_vco[8] = {
6955 [0] = 3200000,
6956 [1] = 4000000,
6957 [2] = 5333333,
6958 [3] = 6400000,
6959 [4] = 2666667,
6960 [5] = 4266667,
6961 };
6962 const unsigned int *vco_table;
6963 unsigned int vco;
6964 uint8_t tmp = 0;
6965
6966 /* FIXME other chipsets? */
6967 if (IS_GM45(dev))
6968 vco_table = ctg_vco;
6969 else if (IS_G4X(dev))
6970 vco_table = elk_vco;
6971 else if (IS_CRESTLINE(dev))
6972 vco_table = cl_vco;
6973 else if (IS_PINEVIEW(dev))
6974 vco_table = pnv_vco;
6975 else if (IS_G33(dev))
6976 vco_table = blb_vco;
6977 else
6978 return 0;
6979
6980 tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO);
6981
6982 vco = vco_table[tmp & 0x7];
6983 if (vco == 0)
6984 DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp);
6985 else
6986 DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco);
6987
6988 return vco;
6989}
6990
6991static int gm45_get_display_clock_speed(struct drm_device *dev)
6992{
6993 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
6994 uint16_t tmp = 0;
6995
6996 pci_read_config_word(dev->pdev, GCFGC, &tmp);
6997
6998 cdclk_sel = (tmp >> 12) & 0x1;
6999
7000 switch (vco) {
7001 case 2666667:
7002 case 4000000:
7003 case 5333333:
7004 return cdclk_sel ? 333333 : 222222;
7005 case 3200000:
7006 return cdclk_sel ? 320000 : 228571;
7007 default:
7008 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp);
7009 return 222222;
7010 }
7011}
7012
7013static int i965gm_get_display_clock_speed(struct drm_device *dev)
7014{
7015 static const uint8_t div_3200[] = { 16, 10, 8 };
7016 static const uint8_t div_4000[] = { 20, 12, 10 };
7017 static const uint8_t div_5333[] = { 24, 16, 14 };
7018 const uint8_t *div_table;
7019 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7020 uint16_t tmp = 0;
7021
7022 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7023
7024 cdclk_sel = ((tmp >> 8) & 0x1f) - 1;
7025
7026 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7027 goto fail;
7028
7029 switch (vco) {
7030 case 3200000:
7031 div_table = div_3200;
7032 break;
7033 case 4000000:
7034 div_table = div_4000;
7035 break;
7036 case 5333333:
7037 div_table = div_5333;
7038 break;
7039 default:
7040 goto fail;
7041 }
7042
7043 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7044
caf4e252 7045fail:
34edce2f
VS
7046 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp);
7047 return 200000;
7048}
7049
7050static int g33_get_display_clock_speed(struct drm_device *dev)
7051{
7052 static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 };
7053 static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 };
7054 static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 };
7055 static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 };
7056 const uint8_t *div_table;
7057 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7058 uint16_t tmp = 0;
7059
7060 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7061
7062 cdclk_sel = (tmp >> 4) & 0x7;
7063
7064 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7065 goto fail;
7066
7067 switch (vco) {
7068 case 3200000:
7069 div_table = div_3200;
7070 break;
7071 case 4000000:
7072 div_table = div_4000;
7073 break;
7074 case 4800000:
7075 div_table = div_4800;
7076 break;
7077 case 5333333:
7078 div_table = div_5333;
7079 break;
7080 default:
7081 goto fail;
7082 }
7083
7084 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7085
caf4e252 7086fail:
34edce2f
VS
7087 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp);
7088 return 190476;
7089}
7090
2c07245f 7091static void
a65851af 7092intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
2c07245f 7093{
a65851af
VS
7094 while (*num > DATA_LINK_M_N_MASK ||
7095 *den > DATA_LINK_M_N_MASK) {
2c07245f
ZW
7096 *num >>= 1;
7097 *den >>= 1;
7098 }
7099}
7100
a65851af
VS
7101static void compute_m_n(unsigned int m, unsigned int n,
7102 uint32_t *ret_m, uint32_t *ret_n)
7103{
7104 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
7105 *ret_m = div_u64((uint64_t) m * *ret_n, n);
7106 intel_reduce_m_n_ratio(ret_m, ret_n);
7107}
7108
e69d0bc1
DV
7109void
7110intel_link_compute_m_n(int bits_per_pixel, int nlanes,
7111 int pixel_clock, int link_clock,
7112 struct intel_link_m_n *m_n)
2c07245f 7113{
e69d0bc1 7114 m_n->tu = 64;
a65851af
VS
7115
7116 compute_m_n(bits_per_pixel * pixel_clock,
7117 link_clock * nlanes * 8,
7118 &m_n->gmch_m, &m_n->gmch_n);
7119
7120 compute_m_n(pixel_clock, link_clock,
7121 &m_n->link_m, &m_n->link_n);
2c07245f
ZW
7122}
7123
a7615030
CW
7124static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
7125{
d330a953
JN
7126 if (i915.panel_use_ssc >= 0)
7127 return i915.panel_use_ssc != 0;
41aa3448 7128 return dev_priv->vbt.lvds_use_ssc
435793df 7129 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
a7615030
CW
7130}
7131
7429e9d4 7132static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
c65d77d8 7133{
7df00d7a 7134 return (1 << dpll->n) << 16 | dpll->m2;
7429e9d4 7135}
f47709a9 7136
7429e9d4
DV
7137static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
7138{
7139 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
c65d77d8
JB
7140}
7141
f47709a9 7142static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
190f68c5 7143 struct intel_crtc_state *crtc_state,
9e2c8475 7144 struct dpll *reduced_clock)
a7516a05 7145{
f47709a9 7146 struct drm_device *dev = crtc->base.dev;
a7516a05
JB
7147 u32 fp, fp2 = 0;
7148
7149 if (IS_PINEVIEW(dev)) {
190f68c5 7150 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
a7516a05 7151 if (reduced_clock)
7429e9d4 7152 fp2 = pnv_dpll_compute_fp(reduced_clock);
a7516a05 7153 } else {
190f68c5 7154 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
a7516a05 7155 if (reduced_clock)
7429e9d4 7156 fp2 = i9xx_dpll_compute_fp(reduced_clock);
a7516a05
JB
7157 }
7158
190f68c5 7159 crtc_state->dpll_hw_state.fp0 = fp;
a7516a05 7160
f47709a9 7161 crtc->lowfreq_avail = false;
2d84d2b3 7162 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ab585dea 7163 reduced_clock) {
190f68c5 7164 crtc_state->dpll_hw_state.fp1 = fp2;
f47709a9 7165 crtc->lowfreq_avail = true;
a7516a05 7166 } else {
190f68c5 7167 crtc_state->dpll_hw_state.fp1 = fp;
a7516a05
JB
7168 }
7169}
7170
5e69f97f
CML
7171static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
7172 pipe)
89b667f8
JB
7173{
7174 u32 reg_val;
7175
7176 /*
7177 * PLLB opamp always calibrates to max value of 0x3f, force enable it
7178 * and set it to a reasonable value instead.
7179 */
ab3c759a 7180 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8
JB
7181 reg_val &= 0xffffff00;
7182 reg_val |= 0x00000030;
ab3c759a 7183 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 7184
ab3c759a 7185 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
7186 reg_val &= 0x8cffffff;
7187 reg_val = 0x8c000000;
ab3c759a 7188 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8 7189
ab3c759a 7190 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8 7191 reg_val &= 0xffffff00;
ab3c759a 7192 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 7193
ab3c759a 7194 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
7195 reg_val &= 0x00ffffff;
7196 reg_val |= 0xb0000000;
ab3c759a 7197 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8
JB
7198}
7199
b551842d
DV
7200static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
7201 struct intel_link_m_n *m_n)
7202{
7203 struct drm_device *dev = crtc->base.dev;
fac5e23e 7204 struct drm_i915_private *dev_priv = to_i915(dev);
b551842d
DV
7205 int pipe = crtc->pipe;
7206
e3b95f1e
DV
7207 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7208 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
7209 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
7210 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
b551842d
DV
7211}
7212
7213static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
f769cd24
VK
7214 struct intel_link_m_n *m_n,
7215 struct intel_link_m_n *m2_n2)
b551842d
DV
7216{
7217 struct drm_device *dev = crtc->base.dev;
fac5e23e 7218 struct drm_i915_private *dev_priv = to_i915(dev);
b551842d 7219 int pipe = crtc->pipe;
6e3c9717 7220 enum transcoder transcoder = crtc->config->cpu_transcoder;
b551842d
DV
7221
7222 if (INTEL_INFO(dev)->gen >= 5) {
7223 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
7224 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
7225 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
7226 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
f769cd24
VK
7227 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
7228 * for gen < 8) and if DRRS is supported (to make sure the
7229 * registers are not unnecessarily accessed).
7230 */
44395bfe 7231 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
6e3c9717 7232 crtc->config->has_drrs) {
f769cd24
VK
7233 I915_WRITE(PIPE_DATA_M2(transcoder),
7234 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
7235 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
7236 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
7237 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
7238 }
b551842d 7239 } else {
e3b95f1e
DV
7240 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7241 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
7242 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
7243 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
b551842d
DV
7244 }
7245}
7246
fe3cd48d 7247void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
03afc4a2 7248{
fe3cd48d
R
7249 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
7250
7251 if (m_n == M1_N1) {
7252 dp_m_n = &crtc->config->dp_m_n;
7253 dp_m2_n2 = &crtc->config->dp_m2_n2;
7254 } else if (m_n == M2_N2) {
7255
7256 /*
7257 * M2_N2 registers are not supported. Hence m2_n2 divider value
7258 * needs to be programmed into M1_N1.
7259 */
7260 dp_m_n = &crtc->config->dp_m2_n2;
7261 } else {
7262 DRM_ERROR("Unsupported divider value\n");
7263 return;
7264 }
7265
6e3c9717
ACO
7266 if (crtc->config->has_pch_encoder)
7267 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
03afc4a2 7268 else
fe3cd48d 7269 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
03afc4a2
DV
7270}
7271
251ac862
DV
7272static void vlv_compute_dpll(struct intel_crtc *crtc,
7273 struct intel_crtc_state *pipe_config)
bdd4b6a6 7274{
03ed5cbf 7275 pipe_config->dpll_hw_state.dpll = DPLL_INTEGRATED_REF_CLK_VLV |
cd2d34d9 7276 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
03ed5cbf
VS
7277 if (crtc->pipe != PIPE_A)
7278 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
bdd4b6a6 7279
cd2d34d9 7280 /* DPLL not used with DSI, but still need the rest set up */
187a1c07 7281 if (!pipe_config->has_dsi_encoder)
cd2d34d9
VS
7282 pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE |
7283 DPLL_EXT_BUFFER_ENABLE_VLV;
7284
03ed5cbf
VS
7285 pipe_config->dpll_hw_state.dpll_md =
7286 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
7287}
bdd4b6a6 7288
03ed5cbf
VS
7289static void chv_compute_dpll(struct intel_crtc *crtc,
7290 struct intel_crtc_state *pipe_config)
7291{
7292 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV |
cd2d34d9 7293 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
03ed5cbf
VS
7294 if (crtc->pipe != PIPE_A)
7295 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7296
cd2d34d9 7297 /* DPLL not used with DSI, but still need the rest set up */
187a1c07 7298 if (!pipe_config->has_dsi_encoder)
cd2d34d9
VS
7299 pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE;
7300
03ed5cbf
VS
7301 pipe_config->dpll_hw_state.dpll_md =
7302 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
bdd4b6a6
DV
7303}
7304
d288f65f 7305static void vlv_prepare_pll(struct intel_crtc *crtc,
5cec258b 7306 const struct intel_crtc_state *pipe_config)
a0c4da24 7307{
f47709a9 7308 struct drm_device *dev = crtc->base.dev;
fac5e23e 7309 struct drm_i915_private *dev_priv = to_i915(dev);
cd2d34d9 7310 enum pipe pipe = crtc->pipe;
bdd4b6a6 7311 u32 mdiv;
a0c4da24 7312 u32 bestn, bestm1, bestm2, bestp1, bestp2;
bdd4b6a6 7313 u32 coreclk, reg_val;
a0c4da24 7314
cd2d34d9
VS
7315 /* Enable Refclk */
7316 I915_WRITE(DPLL(pipe),
7317 pipe_config->dpll_hw_state.dpll &
7318 ~(DPLL_VCO_ENABLE | DPLL_EXT_BUFFER_ENABLE_VLV));
7319
7320 /* No need to actually set up the DPLL with DSI */
7321 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
7322 return;
7323
a580516d 7324 mutex_lock(&dev_priv->sb_lock);
09153000 7325
d288f65f
VS
7326 bestn = pipe_config->dpll.n;
7327 bestm1 = pipe_config->dpll.m1;
7328 bestm2 = pipe_config->dpll.m2;
7329 bestp1 = pipe_config->dpll.p1;
7330 bestp2 = pipe_config->dpll.p2;
a0c4da24 7331
89b667f8
JB
7332 /* See eDP HDMI DPIO driver vbios notes doc */
7333
7334 /* PLL B needs special handling */
bdd4b6a6 7335 if (pipe == PIPE_B)
5e69f97f 7336 vlv_pllb_recal_opamp(dev_priv, pipe);
89b667f8
JB
7337
7338 /* Set up Tx target for periodic Rcomp update */
ab3c759a 7339 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
89b667f8
JB
7340
7341 /* Disable target IRef on PLL */
ab3c759a 7342 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
89b667f8 7343 reg_val &= 0x00ffffff;
ab3c759a 7344 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
89b667f8
JB
7345
7346 /* Disable fast lock */
ab3c759a 7347 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
89b667f8
JB
7348
7349 /* Set idtafcrecal before PLL is enabled */
a0c4da24
JB
7350 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
7351 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
7352 mdiv |= ((bestn << DPIO_N_SHIFT));
a0c4da24 7353 mdiv |= (1 << DPIO_K_SHIFT);
7df5080b
JB
7354
7355 /*
7356 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
7357 * but we don't support that).
7358 * Note: don't use the DAC post divider as it seems unstable.
7359 */
7360 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
ab3c759a 7361 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 7362
a0c4da24 7363 mdiv |= DPIO_ENABLE_CALIBRATION;
ab3c759a 7364 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 7365
89b667f8 7366 /* Set HBR and RBR LPF coefficients */
d288f65f 7367 if (pipe_config->port_clock == 162000 ||
2d84d2b3
VS
7368 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_ANALOG) ||
7369 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_HDMI))
ab3c759a 7370 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
885b0120 7371 0x009f0003);
89b667f8 7372 else
ab3c759a 7373 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
89b667f8
JB
7374 0x00d0000f);
7375
37a5650b 7376 if (intel_crtc_has_dp_encoder(pipe_config)) {
89b667f8 7377 /* Use SSC source */
bdd4b6a6 7378 if (pipe == PIPE_A)
ab3c759a 7379 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7380 0x0df40000);
7381 else
ab3c759a 7382 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7383 0x0df70000);
7384 } else { /* HDMI or VGA */
7385 /* Use bend source */
bdd4b6a6 7386 if (pipe == PIPE_A)
ab3c759a 7387 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7388 0x0df70000);
7389 else
ab3c759a 7390 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7391 0x0df40000);
7392 }
a0c4da24 7393
ab3c759a 7394 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
89b667f8 7395 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
2d84d2b3
VS
7396 if (intel_crtc_has_type(crtc->config, INTEL_OUTPUT_DISPLAYPORT) ||
7397 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_EDP))
89b667f8 7398 coreclk |= 0x01000000;
ab3c759a 7399 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
a0c4da24 7400
ab3c759a 7401 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
a580516d 7402 mutex_unlock(&dev_priv->sb_lock);
a0c4da24
JB
7403}
7404
d288f65f 7405static void chv_prepare_pll(struct intel_crtc *crtc,
5cec258b 7406 const struct intel_crtc_state *pipe_config)
9d556c99
CML
7407{
7408 struct drm_device *dev = crtc->base.dev;
fac5e23e 7409 struct drm_i915_private *dev_priv = to_i915(dev);
cd2d34d9 7410 enum pipe pipe = crtc->pipe;
9d556c99 7411 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9cbe40c1 7412 u32 loopfilter, tribuf_calcntr;
9d556c99 7413 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
a945ce7e 7414 u32 dpio_val;
9cbe40c1 7415 int vco;
9d556c99 7416
cd2d34d9
VS
7417 /* Enable Refclk and SSC */
7418 I915_WRITE(DPLL(pipe),
7419 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
7420
7421 /* No need to actually set up the DPLL with DSI */
7422 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
7423 return;
7424
d288f65f
VS
7425 bestn = pipe_config->dpll.n;
7426 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7427 bestm1 = pipe_config->dpll.m1;
7428 bestm2 = pipe_config->dpll.m2 >> 22;
7429 bestp1 = pipe_config->dpll.p1;
7430 bestp2 = pipe_config->dpll.p2;
9cbe40c1 7431 vco = pipe_config->dpll.vco;
a945ce7e 7432 dpio_val = 0;
9cbe40c1 7433 loopfilter = 0;
9d556c99 7434
a580516d 7435 mutex_lock(&dev_priv->sb_lock);
9d556c99 7436
9d556c99
CML
7437 /* p1 and p2 divider */
7438 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
7439 5 << DPIO_CHV_S1_DIV_SHIFT |
7440 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
7441 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
7442 1 << DPIO_CHV_K_DIV_SHIFT);
7443
7444 /* Feedback post-divider - m2 */
7445 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
7446
7447 /* Feedback refclk divider - n and m1 */
7448 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
7449 DPIO_CHV_M1_DIV_BY_2 |
7450 1 << DPIO_CHV_N_DIV_SHIFT);
7451
7452 /* M2 fraction division */
25a25dfc 7453 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
9d556c99
CML
7454
7455 /* M2 fraction division enable */
a945ce7e
VP
7456 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
7457 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
7458 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
7459 if (bestm2_frac)
7460 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
7461 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
9d556c99 7462
de3a0fde
VP
7463 /* Program digital lock detect threshold */
7464 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
7465 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
7466 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
7467 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
7468 if (!bestm2_frac)
7469 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
7470 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
7471
9d556c99 7472 /* Loop filter */
9cbe40c1
VP
7473 if (vco == 5400000) {
7474 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
7475 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
7476 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
7477 tribuf_calcntr = 0x9;
7478 } else if (vco <= 6200000) {
7479 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
7480 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
7481 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7482 tribuf_calcntr = 0x9;
7483 } else if (vco <= 6480000) {
7484 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7485 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7486 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7487 tribuf_calcntr = 0x8;
7488 } else {
7489 /* Not supported. Apply the same limits as in the max case */
7490 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7491 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7492 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7493 tribuf_calcntr = 0;
7494 }
9d556c99
CML
7495 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
7496
968040b2 7497 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
9cbe40c1
VP
7498 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
7499 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
7500 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
7501
9d556c99
CML
7502 /* AFC Recal */
7503 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
7504 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
7505 DPIO_AFC_RECAL);
7506
a580516d 7507 mutex_unlock(&dev_priv->sb_lock);
9d556c99
CML
7508}
7509
d288f65f
VS
7510/**
7511 * vlv_force_pll_on - forcibly enable just the PLL
7512 * @dev_priv: i915 private structure
7513 * @pipe: pipe PLL to enable
7514 * @dpll: PLL configuration
7515 *
7516 * Enable the PLL for @pipe using the supplied @dpll config. To be used
7517 * in cases where we need the PLL enabled even when @pipe is not going to
7518 * be enabled.
7519 */
3f36b937
TU
7520int vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
7521 const struct dpll *dpll)
d288f65f
VS
7522{
7523 struct intel_crtc *crtc =
7524 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
3f36b937
TU
7525 struct intel_crtc_state *pipe_config;
7526
7527 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
7528 if (!pipe_config)
7529 return -ENOMEM;
7530
7531 pipe_config->base.crtc = &crtc->base;
7532 pipe_config->pixel_multiplier = 1;
7533 pipe_config->dpll = *dpll;
d288f65f
VS
7534
7535 if (IS_CHERRYVIEW(dev)) {
3f36b937
TU
7536 chv_compute_dpll(crtc, pipe_config);
7537 chv_prepare_pll(crtc, pipe_config);
7538 chv_enable_pll(crtc, pipe_config);
d288f65f 7539 } else {
3f36b937
TU
7540 vlv_compute_dpll(crtc, pipe_config);
7541 vlv_prepare_pll(crtc, pipe_config);
7542 vlv_enable_pll(crtc, pipe_config);
d288f65f 7543 }
3f36b937
TU
7544
7545 kfree(pipe_config);
7546
7547 return 0;
d288f65f
VS
7548}
7549
7550/**
7551 * vlv_force_pll_off - forcibly disable just the PLL
7552 * @dev_priv: i915 private structure
7553 * @pipe: pipe PLL to disable
7554 *
7555 * Disable the PLL for @pipe. To be used in cases where we need
7556 * the PLL enabled even when @pipe is not going to be enabled.
7557 */
7558void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
7559{
7560 if (IS_CHERRYVIEW(dev))
7561 chv_disable_pll(to_i915(dev), pipe);
7562 else
7563 vlv_disable_pll(to_i915(dev), pipe);
7564}
7565
251ac862
DV
7566static void i9xx_compute_dpll(struct intel_crtc *crtc,
7567 struct intel_crtc_state *crtc_state,
9e2c8475 7568 struct dpll *reduced_clock)
eb1cbe48 7569{
f47709a9 7570 struct drm_device *dev = crtc->base.dev;
fac5e23e 7571 struct drm_i915_private *dev_priv = to_i915(dev);
eb1cbe48 7572 u32 dpll;
190f68c5 7573 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 7574
190f68c5 7575 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 7576
eb1cbe48
DV
7577 dpll = DPLL_VGA_MODE_DIS;
7578
2d84d2b3 7579 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS))
eb1cbe48
DV
7580 dpll |= DPLLB_MODE_LVDS;
7581 else
7582 dpll |= DPLLB_MODE_DAC_SERIAL;
6cc5f341 7583
ef1b460d 7584 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
190f68c5 7585 dpll |= (crtc_state->pixel_multiplier - 1)
198a037f 7586 << SDVO_MULTIPLIER_SHIFT_HIRES;
eb1cbe48 7587 }
198a037f 7588
3d6e9ee0
VS
7589 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_SDVO) ||
7590 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI))
4a33e48d 7591 dpll |= DPLL_SDVO_HIGH_SPEED;
198a037f 7592
37a5650b 7593 if (intel_crtc_has_dp_encoder(crtc_state))
4a33e48d 7594 dpll |= DPLL_SDVO_HIGH_SPEED;
eb1cbe48
DV
7595
7596 /* compute bitmask from p1 value */
7597 if (IS_PINEVIEW(dev))
7598 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
7599 else {
7600 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7601 if (IS_G4X(dev) && reduced_clock)
7602 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
7603 }
7604 switch (clock->p2) {
7605 case 5:
7606 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7607 break;
7608 case 7:
7609 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7610 break;
7611 case 10:
7612 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7613 break;
7614 case 14:
7615 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7616 break;
7617 }
7618 if (INTEL_INFO(dev)->gen >= 4)
7619 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
7620
190f68c5 7621 if (crtc_state->sdvo_tv_clock)
eb1cbe48 7622 dpll |= PLL_REF_INPUT_TVCLKINBC;
2d84d2b3 7623 else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ceb41007 7624 intel_panel_use_ssc(dev_priv))
eb1cbe48
DV
7625 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7626 else
7627 dpll |= PLL_REF_INPUT_DREFCLK;
7628
7629 dpll |= DPLL_VCO_ENABLE;
190f68c5 7630 crtc_state->dpll_hw_state.dpll = dpll;
8bcc2795 7631
eb1cbe48 7632 if (INTEL_INFO(dev)->gen >= 4) {
190f68c5 7633 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
ef1b460d 7634 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
190f68c5 7635 crtc_state->dpll_hw_state.dpll_md = dpll_md;
eb1cbe48
DV
7636 }
7637}
7638
251ac862
DV
7639static void i8xx_compute_dpll(struct intel_crtc *crtc,
7640 struct intel_crtc_state *crtc_state,
9e2c8475 7641 struct dpll *reduced_clock)
eb1cbe48 7642{
f47709a9 7643 struct drm_device *dev = crtc->base.dev;
fac5e23e 7644 struct drm_i915_private *dev_priv = to_i915(dev);
eb1cbe48 7645 u32 dpll;
190f68c5 7646 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 7647
190f68c5 7648 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 7649
eb1cbe48
DV
7650 dpll = DPLL_VGA_MODE_DIS;
7651
2d84d2b3 7652 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
eb1cbe48
DV
7653 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7654 } else {
7655 if (clock->p1 == 2)
7656 dpll |= PLL_P1_DIVIDE_BY_TWO;
7657 else
7658 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7659 if (clock->p2 == 4)
7660 dpll |= PLL_P2_DIVIDE_BY_4;
7661 }
7662
2d84d2b3 7663 if (!IS_I830(dev) && intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DVO))
4a33e48d
DV
7664 dpll |= DPLL_DVO_2X_MODE;
7665
2d84d2b3 7666 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ceb41007 7667 intel_panel_use_ssc(dev_priv))
eb1cbe48
DV
7668 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7669 else
7670 dpll |= PLL_REF_INPUT_DREFCLK;
7671
7672 dpll |= DPLL_VCO_ENABLE;
190f68c5 7673 crtc_state->dpll_hw_state.dpll = dpll;
eb1cbe48
DV
7674}
7675
8a654f3b 7676static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
b0e77b9c
PZ
7677{
7678 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 7679 struct drm_i915_private *dev_priv = to_i915(dev);
b0e77b9c 7680 enum pipe pipe = intel_crtc->pipe;
6e3c9717 7681 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
7c5f93b0 7682 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
1caea6e9
VS
7683 uint32_t crtc_vtotal, crtc_vblank_end;
7684 int vsyncshift = 0;
4d8a62ea
DV
7685
7686 /* We need to be careful not to changed the adjusted mode, for otherwise
7687 * the hw state checker will get angry at the mismatch. */
7688 crtc_vtotal = adjusted_mode->crtc_vtotal;
7689 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
b0e77b9c 7690
609aeaca 7691 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
b0e77b9c 7692 /* the chip adds 2 halflines automatically */
4d8a62ea
DV
7693 crtc_vtotal -= 1;
7694 crtc_vblank_end -= 1;
609aeaca 7695
2d84d2b3 7696 if (intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_SDVO))
609aeaca
VS
7697 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
7698 else
7699 vsyncshift = adjusted_mode->crtc_hsync_start -
7700 adjusted_mode->crtc_htotal / 2;
1caea6e9
VS
7701 if (vsyncshift < 0)
7702 vsyncshift += adjusted_mode->crtc_htotal;
b0e77b9c
PZ
7703 }
7704
7705 if (INTEL_INFO(dev)->gen > 3)
fe2b8f9d 7706 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
b0e77b9c 7707
fe2b8f9d 7708 I915_WRITE(HTOTAL(cpu_transcoder),
b0e77b9c
PZ
7709 (adjusted_mode->crtc_hdisplay - 1) |
7710 ((adjusted_mode->crtc_htotal - 1) << 16));
fe2b8f9d 7711 I915_WRITE(HBLANK(cpu_transcoder),
b0e77b9c
PZ
7712 (adjusted_mode->crtc_hblank_start - 1) |
7713 ((adjusted_mode->crtc_hblank_end - 1) << 16));
fe2b8f9d 7714 I915_WRITE(HSYNC(cpu_transcoder),
b0e77b9c
PZ
7715 (adjusted_mode->crtc_hsync_start - 1) |
7716 ((adjusted_mode->crtc_hsync_end - 1) << 16));
7717
fe2b8f9d 7718 I915_WRITE(VTOTAL(cpu_transcoder),
b0e77b9c 7719 (adjusted_mode->crtc_vdisplay - 1) |
4d8a62ea 7720 ((crtc_vtotal - 1) << 16));
fe2b8f9d 7721 I915_WRITE(VBLANK(cpu_transcoder),
b0e77b9c 7722 (adjusted_mode->crtc_vblank_start - 1) |
4d8a62ea 7723 ((crtc_vblank_end - 1) << 16));
fe2b8f9d 7724 I915_WRITE(VSYNC(cpu_transcoder),
b0e77b9c
PZ
7725 (adjusted_mode->crtc_vsync_start - 1) |
7726 ((adjusted_mode->crtc_vsync_end - 1) << 16));
7727
b5e508d4
PZ
7728 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
7729 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
7730 * documented on the DDI_FUNC_CTL register description, EDP Input Select
7731 * bits. */
7732 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
7733 (pipe == PIPE_B || pipe == PIPE_C))
7734 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
7735
bc58be60
JN
7736}
7737
7738static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc)
7739{
7740 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 7741 struct drm_i915_private *dev_priv = to_i915(dev);
bc58be60
JN
7742 enum pipe pipe = intel_crtc->pipe;
7743
b0e77b9c
PZ
7744 /* pipesrc controls the size that is scaled from, which should
7745 * always be the user's requested size.
7746 */
7747 I915_WRITE(PIPESRC(pipe),
6e3c9717
ACO
7748 ((intel_crtc->config->pipe_src_w - 1) << 16) |
7749 (intel_crtc->config->pipe_src_h - 1));
b0e77b9c
PZ
7750}
7751
1bd1bd80 7752static void intel_get_pipe_timings(struct intel_crtc *crtc,
5cec258b 7753 struct intel_crtc_state *pipe_config)
1bd1bd80
DV
7754{
7755 struct drm_device *dev = crtc->base.dev;
fac5e23e 7756 struct drm_i915_private *dev_priv = to_i915(dev);
1bd1bd80
DV
7757 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
7758 uint32_t tmp;
7759
7760 tmp = I915_READ(HTOTAL(cpu_transcoder));
2d112de7
ACO
7761 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
7762 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7763 tmp = I915_READ(HBLANK(cpu_transcoder));
2d112de7
ACO
7764 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
7765 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7766 tmp = I915_READ(HSYNC(cpu_transcoder));
2d112de7
ACO
7767 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
7768 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
7769
7770 tmp = I915_READ(VTOTAL(cpu_transcoder));
2d112de7
ACO
7771 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
7772 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7773 tmp = I915_READ(VBLANK(cpu_transcoder));
2d112de7
ACO
7774 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
7775 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7776 tmp = I915_READ(VSYNC(cpu_transcoder));
2d112de7
ACO
7777 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
7778 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
7779
7780 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
2d112de7
ACO
7781 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
7782 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
7783 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
1bd1bd80 7784 }
bc58be60
JN
7785}
7786
7787static void intel_get_pipe_src_size(struct intel_crtc *crtc,
7788 struct intel_crtc_state *pipe_config)
7789{
7790 struct drm_device *dev = crtc->base.dev;
fac5e23e 7791 struct drm_i915_private *dev_priv = to_i915(dev);
bc58be60 7792 u32 tmp;
1bd1bd80
DV
7793
7794 tmp = I915_READ(PIPESRC(crtc->pipe));
37327abd
VS
7795 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
7796 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
7797
2d112de7
ACO
7798 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
7799 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
1bd1bd80
DV
7800}
7801
f6a83288 7802void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5cec258b 7803 struct intel_crtc_state *pipe_config)
babea61d 7804{
2d112de7
ACO
7805 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
7806 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
7807 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
7808 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
babea61d 7809
2d112de7
ACO
7810 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
7811 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
7812 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
7813 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
babea61d 7814
2d112de7 7815 mode->flags = pipe_config->base.adjusted_mode.flags;
cd13f5ab 7816 mode->type = DRM_MODE_TYPE_DRIVER;
babea61d 7817
2d112de7
ACO
7818 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
7819 mode->flags |= pipe_config->base.adjusted_mode.flags;
cd13f5ab
ML
7820
7821 mode->hsync = drm_mode_hsync(mode);
7822 mode->vrefresh = drm_mode_vrefresh(mode);
7823 drm_mode_set_name(mode);
babea61d
JB
7824}
7825
84b046f3
DV
7826static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
7827{
7828 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 7829 struct drm_i915_private *dev_priv = to_i915(dev);
84b046f3
DV
7830 uint32_t pipeconf;
7831
9f11a9e4 7832 pipeconf = 0;
84b046f3 7833
b6b5d049
VS
7834 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
7835 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
7836 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
67c72a12 7837
6e3c9717 7838 if (intel_crtc->config->double_wide)
cf532bb2 7839 pipeconf |= PIPECONF_DOUBLE_WIDE;
84b046f3 7840
ff9ce46e 7841 /* only g4x and later have fancy bpc/dither controls */
666a4537 7842 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
ff9ce46e 7843 /* Bspec claims that we can't use dithering for 30bpp pipes. */
6e3c9717 7844 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
ff9ce46e 7845 pipeconf |= PIPECONF_DITHER_EN |
84b046f3 7846 PIPECONF_DITHER_TYPE_SP;
84b046f3 7847
6e3c9717 7848 switch (intel_crtc->config->pipe_bpp) {
ff9ce46e
DV
7849 case 18:
7850 pipeconf |= PIPECONF_6BPC;
7851 break;
7852 case 24:
7853 pipeconf |= PIPECONF_8BPC;
7854 break;
7855 case 30:
7856 pipeconf |= PIPECONF_10BPC;
7857 break;
7858 default:
7859 /* Case prevented by intel_choose_pipe_bpp_dither. */
7860 BUG();
84b046f3
DV
7861 }
7862 }
7863
7864 if (HAS_PIPE_CXSR(dev)) {
7865 if (intel_crtc->lowfreq_avail) {
7866 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
7867 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
7868 } else {
7869 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
84b046f3
DV
7870 }
7871 }
7872
6e3c9717 7873 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
efc2cfff 7874 if (INTEL_INFO(dev)->gen < 4 ||
2d84d2b3 7875 intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_SDVO))
efc2cfff
VS
7876 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
7877 else
7878 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
7879 } else
84b046f3
DV
7880 pipeconf |= PIPECONF_PROGRESSIVE;
7881
666a4537
WB
7882 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
7883 intel_crtc->config->limited_color_range)
9f11a9e4 7884 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
9c8e09b7 7885
84b046f3
DV
7886 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
7887 POSTING_READ(PIPECONF(intel_crtc->pipe));
7888}
7889
81c97f52
ACO
7890static int i8xx_crtc_compute_clock(struct intel_crtc *crtc,
7891 struct intel_crtc_state *crtc_state)
7892{
7893 struct drm_device *dev = crtc->base.dev;
fac5e23e 7894 struct drm_i915_private *dev_priv = to_i915(dev);
1b6f4958 7895 const struct intel_limit *limit;
81c97f52
ACO
7896 int refclk = 48000;
7897
7898 memset(&crtc_state->dpll_hw_state, 0,
7899 sizeof(crtc_state->dpll_hw_state));
7900
2d84d2b3 7901 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
81c97f52
ACO
7902 if (intel_panel_use_ssc(dev_priv)) {
7903 refclk = dev_priv->vbt.lvds_ssc_freq;
7904 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
7905 }
7906
7907 limit = &intel_limits_i8xx_lvds;
2d84d2b3 7908 } else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DVO)) {
81c97f52
ACO
7909 limit = &intel_limits_i8xx_dvo;
7910 } else {
7911 limit = &intel_limits_i8xx_dac;
7912 }
7913
7914 if (!crtc_state->clock_set &&
7915 !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
7916 refclk, NULL, &crtc_state->dpll)) {
7917 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7918 return -EINVAL;
7919 }
7920
7921 i8xx_compute_dpll(crtc, crtc_state, NULL);
7922
7923 return 0;
7924}
7925
19ec6693
ACO
7926static int g4x_crtc_compute_clock(struct intel_crtc *crtc,
7927 struct intel_crtc_state *crtc_state)
7928{
7929 struct drm_device *dev = crtc->base.dev;
fac5e23e 7930 struct drm_i915_private *dev_priv = to_i915(dev);
1b6f4958 7931 const struct intel_limit *limit;
19ec6693
ACO
7932 int refclk = 96000;
7933
7934 memset(&crtc_state->dpll_hw_state, 0,
7935 sizeof(crtc_state->dpll_hw_state));
7936
2d84d2b3 7937 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
19ec6693
ACO
7938 if (intel_panel_use_ssc(dev_priv)) {
7939 refclk = dev_priv->vbt.lvds_ssc_freq;
7940 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
7941 }
7942
7943 if (intel_is_dual_link_lvds(dev))
7944 limit = &intel_limits_g4x_dual_channel_lvds;
7945 else
7946 limit = &intel_limits_g4x_single_channel_lvds;
2d84d2b3
VS
7947 } else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI) ||
7948 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_ANALOG)) {
19ec6693 7949 limit = &intel_limits_g4x_hdmi;
2d84d2b3 7950 } else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_SDVO)) {
19ec6693
ACO
7951 limit = &intel_limits_g4x_sdvo;
7952 } else {
7953 /* The option is for other outputs */
7954 limit = &intel_limits_i9xx_sdvo;
7955 }
7956
7957 if (!crtc_state->clock_set &&
7958 !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
7959 refclk, NULL, &crtc_state->dpll)) {
7960 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7961 return -EINVAL;
7962 }
7963
7964 i9xx_compute_dpll(crtc, crtc_state, NULL);
7965
7966 return 0;
7967}
7968
70e8aa21
ACO
7969static int pnv_crtc_compute_clock(struct intel_crtc *crtc,
7970 struct intel_crtc_state *crtc_state)
7971{
7972 struct drm_device *dev = crtc->base.dev;
fac5e23e 7973 struct drm_i915_private *dev_priv = to_i915(dev);
1b6f4958 7974 const struct intel_limit *limit;
70e8aa21
ACO
7975 int refclk = 96000;
7976
7977 memset(&crtc_state->dpll_hw_state, 0,
7978 sizeof(crtc_state->dpll_hw_state));
7979
2d84d2b3 7980 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
70e8aa21
ACO
7981 if (intel_panel_use_ssc(dev_priv)) {
7982 refclk = dev_priv->vbt.lvds_ssc_freq;
7983 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
7984 }
7985
7986 limit = &intel_limits_pineview_lvds;
7987 } else {
7988 limit = &intel_limits_pineview_sdvo;
7989 }
7990
7991 if (!crtc_state->clock_set &&
7992 !pnv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
7993 refclk, NULL, &crtc_state->dpll)) {
7994 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7995 return -EINVAL;
7996 }
7997
7998 i9xx_compute_dpll(crtc, crtc_state, NULL);
7999
8000 return 0;
8001}
8002
190f68c5
ACO
8003static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
8004 struct intel_crtc_state *crtc_state)
79e53945 8005{
c7653199 8006 struct drm_device *dev = crtc->base.dev;
fac5e23e 8007 struct drm_i915_private *dev_priv = to_i915(dev);
1b6f4958 8008 const struct intel_limit *limit;
81c97f52 8009 int refclk = 96000;
79e53945 8010
dd3cd74a
ACO
8011 memset(&crtc_state->dpll_hw_state, 0,
8012 sizeof(crtc_state->dpll_hw_state));
8013
2d84d2b3 8014 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
70e8aa21
ACO
8015 if (intel_panel_use_ssc(dev_priv)) {
8016 refclk = dev_priv->vbt.lvds_ssc_freq;
8017 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
8018 }
43565a06 8019
70e8aa21
ACO
8020 limit = &intel_limits_i9xx_lvds;
8021 } else {
8022 limit = &intel_limits_i9xx_sdvo;
81c97f52 8023 }
79e53945 8024
70e8aa21
ACO
8025 if (!crtc_state->clock_set &&
8026 !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8027 refclk, NULL, &crtc_state->dpll)) {
8028 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8029 return -EINVAL;
f47709a9 8030 }
7026d4ac 8031
81c97f52 8032 i9xx_compute_dpll(crtc, crtc_state, NULL);
79e53945 8033
c8f7a0db 8034 return 0;
f564048e
EA
8035}
8036
65b3d6a9
ACO
8037static int chv_crtc_compute_clock(struct intel_crtc *crtc,
8038 struct intel_crtc_state *crtc_state)
8039{
8040 int refclk = 100000;
1b6f4958 8041 const struct intel_limit *limit = &intel_limits_chv;
65b3d6a9
ACO
8042
8043 memset(&crtc_state->dpll_hw_state, 0,
8044 sizeof(crtc_state->dpll_hw_state));
8045
65b3d6a9
ACO
8046 if (!crtc_state->clock_set &&
8047 !chv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8048 refclk, NULL, &crtc_state->dpll)) {
8049 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8050 return -EINVAL;
8051 }
8052
8053 chv_compute_dpll(crtc, crtc_state);
8054
8055 return 0;
8056}
8057
8058static int vlv_crtc_compute_clock(struct intel_crtc *crtc,
8059 struct intel_crtc_state *crtc_state)
8060{
8061 int refclk = 100000;
1b6f4958 8062 const struct intel_limit *limit = &intel_limits_vlv;
65b3d6a9
ACO
8063
8064 memset(&crtc_state->dpll_hw_state, 0,
8065 sizeof(crtc_state->dpll_hw_state));
8066
65b3d6a9
ACO
8067 if (!crtc_state->clock_set &&
8068 !vlv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8069 refclk, NULL, &crtc_state->dpll)) {
8070 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8071 return -EINVAL;
8072 }
8073
8074 vlv_compute_dpll(crtc, crtc_state);
8075
8076 return 0;
8077}
8078
2fa2fe9a 8079static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5cec258b 8080 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
8081{
8082 struct drm_device *dev = crtc->base.dev;
fac5e23e 8083 struct drm_i915_private *dev_priv = to_i915(dev);
2fa2fe9a
DV
8084 uint32_t tmp;
8085
dc9e7dec
VS
8086 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
8087 return;
8088
2fa2fe9a 8089 tmp = I915_READ(PFIT_CONTROL);
06922821
DV
8090 if (!(tmp & PFIT_ENABLE))
8091 return;
2fa2fe9a 8092
06922821 8093 /* Check whether the pfit is attached to our pipe. */
2fa2fe9a
DV
8094 if (INTEL_INFO(dev)->gen < 4) {
8095 if (crtc->pipe != PIPE_B)
8096 return;
2fa2fe9a
DV
8097 } else {
8098 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
8099 return;
8100 }
8101
06922821 8102 pipe_config->gmch_pfit.control = tmp;
2fa2fe9a 8103 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
2fa2fe9a
DV
8104}
8105
acbec814 8106static void vlv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8107 struct intel_crtc_state *pipe_config)
acbec814
JB
8108{
8109 struct drm_device *dev = crtc->base.dev;
fac5e23e 8110 struct drm_i915_private *dev_priv = to_i915(dev);
acbec814 8111 int pipe = pipe_config->cpu_transcoder;
9e2c8475 8112 struct dpll clock;
acbec814 8113 u32 mdiv;
662c6ecb 8114 int refclk = 100000;
acbec814 8115
b521973b
VS
8116 /* In case of DSI, DPLL will not be used */
8117 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
f573de5a
SK
8118 return;
8119
a580516d 8120 mutex_lock(&dev_priv->sb_lock);
ab3c759a 8121 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
a580516d 8122 mutex_unlock(&dev_priv->sb_lock);
acbec814
JB
8123
8124 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
8125 clock.m2 = mdiv & DPIO_M2DIV_MASK;
8126 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
8127 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
8128 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
8129
dccbea3b 8130 pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock);
acbec814
JB
8131}
8132
5724dbd1
DL
8133static void
8134i9xx_get_initial_plane_config(struct intel_crtc *crtc,
8135 struct intel_initial_plane_config *plane_config)
1ad292b5
JB
8136{
8137 struct drm_device *dev = crtc->base.dev;
fac5e23e 8138 struct drm_i915_private *dev_priv = to_i915(dev);
1ad292b5
JB
8139 u32 val, base, offset;
8140 int pipe = crtc->pipe, plane = crtc->plane;
8141 int fourcc, pixel_format;
6761dd31 8142 unsigned int aligned_height;
b113d5ee 8143 struct drm_framebuffer *fb;
1b842c89 8144 struct intel_framebuffer *intel_fb;
1ad292b5 8145
42a7b088
DL
8146 val = I915_READ(DSPCNTR(plane));
8147 if (!(val & DISPLAY_PLANE_ENABLE))
8148 return;
8149
d9806c9f 8150 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 8151 if (!intel_fb) {
1ad292b5
JB
8152 DRM_DEBUG_KMS("failed to alloc fb\n");
8153 return;
8154 }
8155
1b842c89
DL
8156 fb = &intel_fb->base;
8157
18c5247e
DV
8158 if (INTEL_INFO(dev)->gen >= 4) {
8159 if (val & DISPPLANE_TILED) {
49af449b 8160 plane_config->tiling = I915_TILING_X;
18c5247e
DV
8161 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8162 }
8163 }
1ad292b5
JB
8164
8165 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 8166 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
8167 fb->pixel_format = fourcc;
8168 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
1ad292b5
JB
8169
8170 if (INTEL_INFO(dev)->gen >= 4) {
49af449b 8171 if (plane_config->tiling)
1ad292b5
JB
8172 offset = I915_READ(DSPTILEOFF(plane));
8173 else
8174 offset = I915_READ(DSPLINOFF(plane));
8175 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
8176 } else {
8177 base = I915_READ(DSPADDR(plane));
8178 }
8179 plane_config->base = base;
8180
8181 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
8182 fb->width = ((val >> 16) & 0xfff) + 1;
8183 fb->height = ((val >> 0) & 0xfff) + 1;
1ad292b5
JB
8184
8185 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 8186 fb->pitches[0] = val & 0xffffffc0;
1ad292b5 8187
b113d5ee 8188 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
8189 fb->pixel_format,
8190 fb->modifier[0]);
1ad292b5 8191
f37b5c2b 8192 plane_config->size = fb->pitches[0] * aligned_height;
1ad292b5 8193
2844a921
DL
8194 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8195 pipe_name(pipe), plane, fb->width, fb->height,
8196 fb->bits_per_pixel, base, fb->pitches[0],
8197 plane_config->size);
1ad292b5 8198
2d14030b 8199 plane_config->fb = intel_fb;
1ad292b5
JB
8200}
8201
70b23a98 8202static void chv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8203 struct intel_crtc_state *pipe_config)
70b23a98
VS
8204{
8205 struct drm_device *dev = crtc->base.dev;
fac5e23e 8206 struct drm_i915_private *dev_priv = to_i915(dev);
70b23a98
VS
8207 int pipe = pipe_config->cpu_transcoder;
8208 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9e2c8475 8209 struct dpll clock;
0d7b6b11 8210 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3;
70b23a98
VS
8211 int refclk = 100000;
8212
b521973b
VS
8213 /* In case of DSI, DPLL will not be used */
8214 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
8215 return;
8216
a580516d 8217 mutex_lock(&dev_priv->sb_lock);
70b23a98
VS
8218 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
8219 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
8220 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
8221 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
0d7b6b11 8222 pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
a580516d 8223 mutex_unlock(&dev_priv->sb_lock);
70b23a98
VS
8224
8225 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
0d7b6b11
ID
8226 clock.m2 = (pll_dw0 & 0xff) << 22;
8227 if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN)
8228 clock.m2 |= pll_dw2 & 0x3fffff;
70b23a98
VS
8229 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
8230 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
8231 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
8232
dccbea3b 8233 pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock);
70b23a98
VS
8234}
8235
0e8ffe1b 8236static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
5cec258b 8237 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
8238{
8239 struct drm_device *dev = crtc->base.dev;
fac5e23e 8240 struct drm_i915_private *dev_priv = to_i915(dev);
1729050e 8241 enum intel_display_power_domain power_domain;
0e8ffe1b 8242 uint32_t tmp;
1729050e 8243 bool ret;
0e8ffe1b 8244
1729050e
ID
8245 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
8246 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
b5482bd0
ID
8247 return false;
8248
e143a21c 8249 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
8106ddbd 8250 pipe_config->shared_dpll = NULL;
eccb140b 8251
1729050e
ID
8252 ret = false;
8253
0e8ffe1b
DV
8254 tmp = I915_READ(PIPECONF(crtc->pipe));
8255 if (!(tmp & PIPECONF_ENABLE))
1729050e 8256 goto out;
0e8ffe1b 8257
666a4537 8258 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
42571aef
VS
8259 switch (tmp & PIPECONF_BPC_MASK) {
8260 case PIPECONF_6BPC:
8261 pipe_config->pipe_bpp = 18;
8262 break;
8263 case PIPECONF_8BPC:
8264 pipe_config->pipe_bpp = 24;
8265 break;
8266 case PIPECONF_10BPC:
8267 pipe_config->pipe_bpp = 30;
8268 break;
8269 default:
8270 break;
8271 }
8272 }
8273
666a4537
WB
8274 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
8275 (tmp & PIPECONF_COLOR_RANGE_SELECT))
b5a9fa09
DV
8276 pipe_config->limited_color_range = true;
8277
282740f7
VS
8278 if (INTEL_INFO(dev)->gen < 4)
8279 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
8280
1bd1bd80 8281 intel_get_pipe_timings(crtc, pipe_config);
bc58be60 8282 intel_get_pipe_src_size(crtc, pipe_config);
1bd1bd80 8283
2fa2fe9a
DV
8284 i9xx_get_pfit_config(crtc, pipe_config);
8285
6c49f241 8286 if (INTEL_INFO(dev)->gen >= 4) {
c231775c
VS
8287 /* No way to read it out on pipes B and C */
8288 if (IS_CHERRYVIEW(dev) && crtc->pipe != PIPE_A)
8289 tmp = dev_priv->chv_dpll_md[crtc->pipe];
8290 else
8291 tmp = I915_READ(DPLL_MD(crtc->pipe));
6c49f241
DV
8292 pipe_config->pixel_multiplier =
8293 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
8294 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
8bcc2795 8295 pipe_config->dpll_hw_state.dpll_md = tmp;
6c49f241
DV
8296 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
8297 tmp = I915_READ(DPLL(crtc->pipe));
8298 pipe_config->pixel_multiplier =
8299 ((tmp & SDVO_MULTIPLIER_MASK)
8300 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
8301 } else {
8302 /* Note that on i915G/GM the pixel multiplier is in the sdvo
8303 * port and will be fixed up in the encoder->get_config
8304 * function. */
8305 pipe_config->pixel_multiplier = 1;
8306 }
8bcc2795 8307 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
666a4537 8308 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
1c4e0274
VS
8309 /*
8310 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
8311 * on 830. Filter it out here so that we don't
8312 * report errors due to that.
8313 */
8314 if (IS_I830(dev))
8315 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
8316
8bcc2795
DV
8317 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
8318 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
165e901c
VS
8319 } else {
8320 /* Mask out read-only status bits. */
8321 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
8322 DPLL_PORTC_READY_MASK |
8323 DPLL_PORTB_READY_MASK);
8bcc2795 8324 }
6c49f241 8325
70b23a98
VS
8326 if (IS_CHERRYVIEW(dev))
8327 chv_crtc_clock_get(crtc, pipe_config);
8328 else if (IS_VALLEYVIEW(dev))
acbec814
JB
8329 vlv_crtc_clock_get(crtc, pipe_config);
8330 else
8331 i9xx_crtc_clock_get(crtc, pipe_config);
18442d08 8332
0f64614d
VS
8333 /*
8334 * Normally the dotclock is filled in by the encoder .get_config()
8335 * but in case the pipe is enabled w/o any ports we need a sane
8336 * default.
8337 */
8338 pipe_config->base.adjusted_mode.crtc_clock =
8339 pipe_config->port_clock / pipe_config->pixel_multiplier;
8340
1729050e
ID
8341 ret = true;
8342
8343out:
8344 intel_display_power_put(dev_priv, power_domain);
8345
8346 return ret;
0e8ffe1b
DV
8347}
8348
dde86e2d 8349static void ironlake_init_pch_refclk(struct drm_device *dev)
13d83a67 8350{
fac5e23e 8351 struct drm_i915_private *dev_priv = to_i915(dev);
13d83a67 8352 struct intel_encoder *encoder;
1c1a24d2 8353 int i;
74cfd7ac 8354 u32 val, final;
13d83a67 8355 bool has_lvds = false;
199e5d79 8356 bool has_cpu_edp = false;
199e5d79 8357 bool has_panel = false;
99eb6a01
KP
8358 bool has_ck505 = false;
8359 bool can_ssc = false;
1c1a24d2 8360 bool using_ssc_source = false;
13d83a67
JB
8361
8362 /* We need to take the global config into account */
b2784e15 8363 for_each_intel_encoder(dev, encoder) {
199e5d79
KP
8364 switch (encoder->type) {
8365 case INTEL_OUTPUT_LVDS:
8366 has_panel = true;
8367 has_lvds = true;
8368 break;
8369 case INTEL_OUTPUT_EDP:
8370 has_panel = true;
2de6905f 8371 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
199e5d79
KP
8372 has_cpu_edp = true;
8373 break;
6847d71b
PZ
8374 default:
8375 break;
13d83a67
JB
8376 }
8377 }
8378
99eb6a01 8379 if (HAS_PCH_IBX(dev)) {
41aa3448 8380 has_ck505 = dev_priv->vbt.display_clock_mode;
99eb6a01
KP
8381 can_ssc = has_ck505;
8382 } else {
8383 has_ck505 = false;
8384 can_ssc = true;
8385 }
8386
1c1a24d2
L
8387 /* Check if any DPLLs are using the SSC source */
8388 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
8389 u32 temp = I915_READ(PCH_DPLL(i));
8390
8391 if (!(temp & DPLL_VCO_ENABLE))
8392 continue;
8393
8394 if ((temp & PLL_REF_INPUT_MASK) ==
8395 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
8396 using_ssc_source = true;
8397 break;
8398 }
8399 }
8400
8401 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d using_ssc_source %d\n",
8402 has_panel, has_lvds, has_ck505, using_ssc_source);
13d83a67
JB
8403
8404 /* Ironlake: try to setup display ref clock before DPLL
8405 * enabling. This is only under driver's control after
8406 * PCH B stepping, previous chipset stepping should be
8407 * ignoring this setting.
8408 */
74cfd7ac
CW
8409 val = I915_READ(PCH_DREF_CONTROL);
8410
8411 /* As we must carefully and slowly disable/enable each source in turn,
8412 * compute the final state we want first and check if we need to
8413 * make any changes at all.
8414 */
8415 final = val;
8416 final &= ~DREF_NONSPREAD_SOURCE_MASK;
8417 if (has_ck505)
8418 final |= DREF_NONSPREAD_CK505_ENABLE;
8419 else
8420 final |= DREF_NONSPREAD_SOURCE_ENABLE;
8421
8c07eb68 8422 final &= ~DREF_SSC_SOURCE_MASK;
74cfd7ac 8423 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
8c07eb68 8424 final &= ~DREF_SSC1_ENABLE;
74cfd7ac
CW
8425
8426 if (has_panel) {
8427 final |= DREF_SSC_SOURCE_ENABLE;
8428
8429 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8430 final |= DREF_SSC1_ENABLE;
8431
8432 if (has_cpu_edp) {
8433 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8434 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
8435 else
8436 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
8437 } else
8438 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
1c1a24d2
L
8439 } else if (using_ssc_source) {
8440 final |= DREF_SSC_SOURCE_ENABLE;
8441 final |= DREF_SSC1_ENABLE;
74cfd7ac
CW
8442 }
8443
8444 if (final == val)
8445 return;
8446
13d83a67 8447 /* Always enable nonspread source */
74cfd7ac 8448 val &= ~DREF_NONSPREAD_SOURCE_MASK;
13d83a67 8449
99eb6a01 8450 if (has_ck505)
74cfd7ac 8451 val |= DREF_NONSPREAD_CK505_ENABLE;
99eb6a01 8452 else
74cfd7ac 8453 val |= DREF_NONSPREAD_SOURCE_ENABLE;
13d83a67 8454
199e5d79 8455 if (has_panel) {
74cfd7ac
CW
8456 val &= ~DREF_SSC_SOURCE_MASK;
8457 val |= DREF_SSC_SOURCE_ENABLE;
13d83a67 8458
199e5d79 8459 /* SSC must be turned on before enabling the CPU output */
99eb6a01 8460 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 8461 DRM_DEBUG_KMS("Using SSC on panel\n");
74cfd7ac 8462 val |= DREF_SSC1_ENABLE;
e77166b5 8463 } else
74cfd7ac 8464 val &= ~DREF_SSC1_ENABLE;
199e5d79
KP
8465
8466 /* Get SSC going before enabling the outputs */
74cfd7ac 8467 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8468 POSTING_READ(PCH_DREF_CONTROL);
8469 udelay(200);
8470
74cfd7ac 8471 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
13d83a67
JB
8472
8473 /* Enable CPU source on CPU attached eDP */
199e5d79 8474 if (has_cpu_edp) {
99eb6a01 8475 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 8476 DRM_DEBUG_KMS("Using SSC on eDP\n");
74cfd7ac 8477 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
eba905b2 8478 } else
74cfd7ac 8479 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
199e5d79 8480 } else
74cfd7ac 8481 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 8482
74cfd7ac 8483 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8484 POSTING_READ(PCH_DREF_CONTROL);
8485 udelay(200);
8486 } else {
1c1a24d2 8487 DRM_DEBUG_KMS("Disabling CPU source output\n");
199e5d79 8488
74cfd7ac 8489 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
199e5d79
KP
8490
8491 /* Turn off CPU output */
74cfd7ac 8492 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 8493
74cfd7ac 8494 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8495 POSTING_READ(PCH_DREF_CONTROL);
8496 udelay(200);
8497
1c1a24d2
L
8498 if (!using_ssc_source) {
8499 DRM_DEBUG_KMS("Disabling SSC source\n");
199e5d79 8500
1c1a24d2
L
8501 /* Turn off the SSC source */
8502 val &= ~DREF_SSC_SOURCE_MASK;
8503 val |= DREF_SSC_SOURCE_DISABLE;
f165d283 8504
1c1a24d2
L
8505 /* Turn off SSC1 */
8506 val &= ~DREF_SSC1_ENABLE;
8507
8508 I915_WRITE(PCH_DREF_CONTROL, val);
8509 POSTING_READ(PCH_DREF_CONTROL);
8510 udelay(200);
8511 }
13d83a67 8512 }
74cfd7ac
CW
8513
8514 BUG_ON(val != final);
13d83a67
JB
8515}
8516
f31f2d55 8517static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
dde86e2d 8518{
f31f2d55 8519 uint32_t tmp;
dde86e2d 8520
0ff066a9
PZ
8521 tmp = I915_READ(SOUTH_CHICKEN2);
8522 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
8523 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 8524
cf3598c2
ID
8525 if (wait_for_us(I915_READ(SOUTH_CHICKEN2) &
8526 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
0ff066a9 8527 DRM_ERROR("FDI mPHY reset assert timeout\n");
dde86e2d 8528
0ff066a9
PZ
8529 tmp = I915_READ(SOUTH_CHICKEN2);
8530 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
8531 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 8532
cf3598c2
ID
8533 if (wait_for_us((I915_READ(SOUTH_CHICKEN2) &
8534 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
0ff066a9 8535 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
f31f2d55
PZ
8536}
8537
8538/* WaMPhyProgramming:hsw */
8539static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
8540{
8541 uint32_t tmp;
dde86e2d
PZ
8542
8543 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
8544 tmp &= ~(0xFF << 24);
8545 tmp |= (0x12 << 24);
8546 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
8547
dde86e2d
PZ
8548 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
8549 tmp |= (1 << 11);
8550 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
8551
8552 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
8553 tmp |= (1 << 11);
8554 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
8555
dde86e2d
PZ
8556 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
8557 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8558 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
8559
8560 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
8561 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8562 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
8563
0ff066a9
PZ
8564 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
8565 tmp &= ~(7 << 13);
8566 tmp |= (5 << 13);
8567 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
dde86e2d 8568
0ff066a9
PZ
8569 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
8570 tmp &= ~(7 << 13);
8571 tmp |= (5 << 13);
8572 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
dde86e2d
PZ
8573
8574 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
8575 tmp &= ~0xFF;
8576 tmp |= 0x1C;
8577 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
8578
8579 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
8580 tmp &= ~0xFF;
8581 tmp |= 0x1C;
8582 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
8583
8584 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
8585 tmp &= ~(0xFF << 16);
8586 tmp |= (0x1C << 16);
8587 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
8588
8589 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
8590 tmp &= ~(0xFF << 16);
8591 tmp |= (0x1C << 16);
8592 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
8593
0ff066a9
PZ
8594 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
8595 tmp |= (1 << 27);
8596 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
dde86e2d 8597
0ff066a9
PZ
8598 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
8599 tmp |= (1 << 27);
8600 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
dde86e2d 8601
0ff066a9
PZ
8602 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
8603 tmp &= ~(0xF << 28);
8604 tmp |= (4 << 28);
8605 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
dde86e2d 8606
0ff066a9
PZ
8607 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
8608 tmp &= ~(0xF << 28);
8609 tmp |= (4 << 28);
8610 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
f31f2d55
PZ
8611}
8612
2fa86a1f
PZ
8613/* Implements 3 different sequences from BSpec chapter "Display iCLK
8614 * Programming" based on the parameters passed:
8615 * - Sequence to enable CLKOUT_DP
8616 * - Sequence to enable CLKOUT_DP without spread
8617 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
8618 */
8619static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
8620 bool with_fdi)
f31f2d55 8621{
fac5e23e 8622 struct drm_i915_private *dev_priv = to_i915(dev);
2fa86a1f
PZ
8623 uint32_t reg, tmp;
8624
8625 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
8626 with_spread = true;
c2699524 8627 if (WARN(HAS_PCH_LPT_LP(dev) && with_fdi, "LP PCH doesn't have FDI\n"))
2fa86a1f 8628 with_fdi = false;
f31f2d55 8629
a580516d 8630 mutex_lock(&dev_priv->sb_lock);
f31f2d55
PZ
8631
8632 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8633 tmp &= ~SBI_SSCCTL_DISABLE;
8634 tmp |= SBI_SSCCTL_PATHALT;
8635 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8636
8637 udelay(24);
8638
2fa86a1f
PZ
8639 if (with_spread) {
8640 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8641 tmp &= ~SBI_SSCCTL_PATHALT;
8642 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
f31f2d55 8643
2fa86a1f
PZ
8644 if (with_fdi) {
8645 lpt_reset_fdi_mphy(dev_priv);
8646 lpt_program_fdi_mphy(dev_priv);
8647 }
8648 }
dde86e2d 8649
c2699524 8650 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
2fa86a1f
PZ
8651 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8652 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8653 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
c00db246 8654
a580516d 8655 mutex_unlock(&dev_priv->sb_lock);
dde86e2d
PZ
8656}
8657
47701c3b
PZ
8658/* Sequence to disable CLKOUT_DP */
8659static void lpt_disable_clkout_dp(struct drm_device *dev)
8660{
fac5e23e 8661 struct drm_i915_private *dev_priv = to_i915(dev);
47701c3b
PZ
8662 uint32_t reg, tmp;
8663
a580516d 8664 mutex_lock(&dev_priv->sb_lock);
47701c3b 8665
c2699524 8666 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
47701c3b
PZ
8667 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8668 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8669 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
8670
8671 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8672 if (!(tmp & SBI_SSCCTL_DISABLE)) {
8673 if (!(tmp & SBI_SSCCTL_PATHALT)) {
8674 tmp |= SBI_SSCCTL_PATHALT;
8675 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8676 udelay(32);
8677 }
8678 tmp |= SBI_SSCCTL_DISABLE;
8679 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8680 }
8681
a580516d 8682 mutex_unlock(&dev_priv->sb_lock);
47701c3b
PZ
8683}
8684
f7be2c21
VS
8685#define BEND_IDX(steps) ((50 + (steps)) / 5)
8686
8687static const uint16_t sscdivintphase[] = {
8688 [BEND_IDX( 50)] = 0x3B23,
8689 [BEND_IDX( 45)] = 0x3B23,
8690 [BEND_IDX( 40)] = 0x3C23,
8691 [BEND_IDX( 35)] = 0x3C23,
8692 [BEND_IDX( 30)] = 0x3D23,
8693 [BEND_IDX( 25)] = 0x3D23,
8694 [BEND_IDX( 20)] = 0x3E23,
8695 [BEND_IDX( 15)] = 0x3E23,
8696 [BEND_IDX( 10)] = 0x3F23,
8697 [BEND_IDX( 5)] = 0x3F23,
8698 [BEND_IDX( 0)] = 0x0025,
8699 [BEND_IDX( -5)] = 0x0025,
8700 [BEND_IDX(-10)] = 0x0125,
8701 [BEND_IDX(-15)] = 0x0125,
8702 [BEND_IDX(-20)] = 0x0225,
8703 [BEND_IDX(-25)] = 0x0225,
8704 [BEND_IDX(-30)] = 0x0325,
8705 [BEND_IDX(-35)] = 0x0325,
8706 [BEND_IDX(-40)] = 0x0425,
8707 [BEND_IDX(-45)] = 0x0425,
8708 [BEND_IDX(-50)] = 0x0525,
8709};
8710
8711/*
8712 * Bend CLKOUT_DP
8713 * steps -50 to 50 inclusive, in steps of 5
8714 * < 0 slow down the clock, > 0 speed up the clock, 0 == no bend (135MHz)
8715 * change in clock period = -(steps / 10) * 5.787 ps
8716 */
8717static void lpt_bend_clkout_dp(struct drm_i915_private *dev_priv, int steps)
8718{
8719 uint32_t tmp;
8720 int idx = BEND_IDX(steps);
8721
8722 if (WARN_ON(steps % 5 != 0))
8723 return;
8724
8725 if (WARN_ON(idx >= ARRAY_SIZE(sscdivintphase)))
8726 return;
8727
8728 mutex_lock(&dev_priv->sb_lock);
8729
8730 if (steps % 10 != 0)
8731 tmp = 0xAAAAAAAB;
8732 else
8733 tmp = 0x00000000;
8734 intel_sbi_write(dev_priv, SBI_SSCDITHPHASE, tmp, SBI_ICLK);
8735
8736 tmp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE, SBI_ICLK);
8737 tmp &= 0xffff0000;
8738 tmp |= sscdivintphase[idx];
8739 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE, tmp, SBI_ICLK);
8740
8741 mutex_unlock(&dev_priv->sb_lock);
8742}
8743
8744#undef BEND_IDX
8745
bf8fa3d3
PZ
8746static void lpt_init_pch_refclk(struct drm_device *dev)
8747{
bf8fa3d3
PZ
8748 struct intel_encoder *encoder;
8749 bool has_vga = false;
8750
b2784e15 8751 for_each_intel_encoder(dev, encoder) {
bf8fa3d3
PZ
8752 switch (encoder->type) {
8753 case INTEL_OUTPUT_ANALOG:
8754 has_vga = true;
8755 break;
6847d71b
PZ
8756 default:
8757 break;
bf8fa3d3
PZ
8758 }
8759 }
8760
f7be2c21
VS
8761 if (has_vga) {
8762 lpt_bend_clkout_dp(to_i915(dev), 0);
47701c3b 8763 lpt_enable_clkout_dp(dev, true, true);
f7be2c21 8764 } else {
47701c3b 8765 lpt_disable_clkout_dp(dev);
f7be2c21 8766 }
bf8fa3d3
PZ
8767}
8768
dde86e2d
PZ
8769/*
8770 * Initialize reference clocks when the driver loads
8771 */
8772void intel_init_pch_refclk(struct drm_device *dev)
8773{
8774 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
8775 ironlake_init_pch_refclk(dev);
8776 else if (HAS_PCH_LPT(dev))
8777 lpt_init_pch_refclk(dev);
8778}
8779
6ff93609 8780static void ironlake_set_pipeconf(struct drm_crtc *crtc)
79e53945 8781{
fac5e23e 8782 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
79e53945
JB
8783 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8784 int pipe = intel_crtc->pipe;
c8203565
PZ
8785 uint32_t val;
8786
78114071 8787 val = 0;
c8203565 8788
6e3c9717 8789 switch (intel_crtc->config->pipe_bpp) {
c8203565 8790 case 18:
dfd07d72 8791 val |= PIPECONF_6BPC;
c8203565
PZ
8792 break;
8793 case 24:
dfd07d72 8794 val |= PIPECONF_8BPC;
c8203565
PZ
8795 break;
8796 case 30:
dfd07d72 8797 val |= PIPECONF_10BPC;
c8203565
PZ
8798 break;
8799 case 36:
dfd07d72 8800 val |= PIPECONF_12BPC;
c8203565
PZ
8801 break;
8802 default:
cc769b62
PZ
8803 /* Case prevented by intel_choose_pipe_bpp_dither. */
8804 BUG();
c8203565
PZ
8805 }
8806
6e3c9717 8807 if (intel_crtc->config->dither)
c8203565
PZ
8808 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8809
6e3c9717 8810 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
c8203565
PZ
8811 val |= PIPECONF_INTERLACED_ILK;
8812 else
8813 val |= PIPECONF_PROGRESSIVE;
8814
6e3c9717 8815 if (intel_crtc->config->limited_color_range)
3685a8f3 8816 val |= PIPECONF_COLOR_RANGE_SELECT;
3685a8f3 8817
c8203565
PZ
8818 I915_WRITE(PIPECONF(pipe), val);
8819 POSTING_READ(PIPECONF(pipe));
8820}
8821
6ff93609 8822static void haswell_set_pipeconf(struct drm_crtc *crtc)
ee2b0b38 8823{
fac5e23e 8824 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
ee2b0b38 8825 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 8826 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
391bf048 8827 u32 val = 0;
ee2b0b38 8828
391bf048 8829 if (IS_HASWELL(dev_priv) && intel_crtc->config->dither)
ee2b0b38
PZ
8830 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8831
6e3c9717 8832 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
ee2b0b38
PZ
8833 val |= PIPECONF_INTERLACED_ILK;
8834 else
8835 val |= PIPECONF_PROGRESSIVE;
8836
702e7a56
PZ
8837 I915_WRITE(PIPECONF(cpu_transcoder), val);
8838 POSTING_READ(PIPECONF(cpu_transcoder));
391bf048
JN
8839}
8840
391bf048
JN
8841static void haswell_set_pipemisc(struct drm_crtc *crtc)
8842{
fac5e23e 8843 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
391bf048 8844 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
756f85cf 8845
391bf048
JN
8846 if (IS_BROADWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 9) {
8847 u32 val = 0;
756f85cf 8848
6e3c9717 8849 switch (intel_crtc->config->pipe_bpp) {
756f85cf
PZ
8850 case 18:
8851 val |= PIPEMISC_DITHER_6_BPC;
8852 break;
8853 case 24:
8854 val |= PIPEMISC_DITHER_8_BPC;
8855 break;
8856 case 30:
8857 val |= PIPEMISC_DITHER_10_BPC;
8858 break;
8859 case 36:
8860 val |= PIPEMISC_DITHER_12_BPC;
8861 break;
8862 default:
8863 /* Case prevented by pipe_config_set_bpp. */
8864 BUG();
8865 }
8866
6e3c9717 8867 if (intel_crtc->config->dither)
756f85cf
PZ
8868 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
8869
391bf048 8870 I915_WRITE(PIPEMISC(intel_crtc->pipe), val);
756f85cf 8871 }
ee2b0b38
PZ
8872}
8873
d4b1931c
PZ
8874int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
8875{
8876 /*
8877 * Account for spread spectrum to avoid
8878 * oversubscribing the link. Max center spread
8879 * is 2.5%; use 5% for safety's sake.
8880 */
8881 u32 bps = target_clock * bpp * 21 / 20;
619d4d04 8882 return DIV_ROUND_UP(bps, link_bw * 8);
d4b1931c
PZ
8883}
8884
7429e9d4 8885static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
6cf86a5e 8886{
7429e9d4 8887 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
f48d8f23
PZ
8888}
8889
b75ca6f6
ACO
8890static void ironlake_compute_dpll(struct intel_crtc *intel_crtc,
8891 struct intel_crtc_state *crtc_state,
9e2c8475 8892 struct dpll *reduced_clock)
79e53945 8893{
de13a2e3 8894 struct drm_crtc *crtc = &intel_crtc->base;
79e53945 8895 struct drm_device *dev = crtc->dev;
fac5e23e 8896 struct drm_i915_private *dev_priv = to_i915(dev);
b75ca6f6 8897 u32 dpll, fp, fp2;
3d6e9ee0 8898 int factor;
79e53945 8899
c1858123 8900 /* Enable autotuning of the PLL clock (if permissible) */
8febb297 8901 factor = 21;
3d6e9ee0 8902 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
8febb297 8903 if ((intel_panel_use_ssc(dev_priv) &&
e91e941b 8904 dev_priv->vbt.lvds_ssc_freq == 100000) ||
f0b44056 8905 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
8febb297 8906 factor = 25;
190f68c5 8907 } else if (crtc_state->sdvo_tv_clock)
8febb297 8908 factor = 20;
c1858123 8909
b75ca6f6
ACO
8910 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
8911
190f68c5 8912 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
b75ca6f6
ACO
8913 fp |= FP_CB_TUNE;
8914
8915 if (reduced_clock) {
8916 fp2 = i9xx_dpll_compute_fp(reduced_clock);
2c07245f 8917
b75ca6f6
ACO
8918 if (reduced_clock->m < factor * reduced_clock->n)
8919 fp2 |= FP_CB_TUNE;
8920 } else {
8921 fp2 = fp;
8922 }
9a7c7890 8923
5eddb70b 8924 dpll = 0;
2c07245f 8925
3d6e9ee0 8926 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS))
a07d6787
EA
8927 dpll |= DPLLB_MODE_LVDS;
8928 else
8929 dpll |= DPLLB_MODE_DAC_SERIAL;
198a037f 8930
190f68c5 8931 dpll |= (crtc_state->pixel_multiplier - 1)
ef1b460d 8932 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
198a037f 8933
3d6e9ee0
VS
8934 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_SDVO) ||
8935 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI))
4a33e48d 8936 dpll |= DPLL_SDVO_HIGH_SPEED;
3d6e9ee0 8937
37a5650b 8938 if (intel_crtc_has_dp_encoder(crtc_state))
4a33e48d 8939 dpll |= DPLL_SDVO_HIGH_SPEED;
79e53945 8940
a07d6787 8941 /* compute bitmask from p1 value */
190f68c5 8942 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
a07d6787 8943 /* also FPA1 */
190f68c5 8944 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
a07d6787 8945
190f68c5 8946 switch (crtc_state->dpll.p2) {
a07d6787
EA
8947 case 5:
8948 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
8949 break;
8950 case 7:
8951 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
8952 break;
8953 case 10:
8954 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
8955 break;
8956 case 14:
8957 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
8958 break;
79e53945
JB
8959 }
8960
3d6e9ee0
VS
8961 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
8962 intel_panel_use_ssc(dev_priv))
43565a06 8963 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
79e53945
JB
8964 else
8965 dpll |= PLL_REF_INPUT_DREFCLK;
8966
b75ca6f6
ACO
8967 dpll |= DPLL_VCO_ENABLE;
8968
8969 crtc_state->dpll_hw_state.dpll = dpll;
8970 crtc_state->dpll_hw_state.fp0 = fp;
8971 crtc_state->dpll_hw_state.fp1 = fp2;
de13a2e3
PZ
8972}
8973
190f68c5
ACO
8974static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
8975 struct intel_crtc_state *crtc_state)
de13a2e3 8976{
997c030c 8977 struct drm_device *dev = crtc->base.dev;
fac5e23e 8978 struct drm_i915_private *dev_priv = to_i915(dev);
9e2c8475 8979 struct dpll reduced_clock;
7ed9f894 8980 bool has_reduced_clock = false;
e2b78267 8981 struct intel_shared_dpll *pll;
1b6f4958 8982 const struct intel_limit *limit;
997c030c 8983 int refclk = 120000;
de13a2e3 8984
dd3cd74a
ACO
8985 memset(&crtc_state->dpll_hw_state, 0,
8986 sizeof(crtc_state->dpll_hw_state));
8987
ded220e2
ACO
8988 crtc->lowfreq_avail = false;
8989
8990 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
8991 if (!crtc_state->has_pch_encoder)
8992 return 0;
79e53945 8993
2d84d2b3 8994 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
997c030c
ACO
8995 if (intel_panel_use_ssc(dev_priv)) {
8996 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
8997 dev_priv->vbt.lvds_ssc_freq);
8998 refclk = dev_priv->vbt.lvds_ssc_freq;
8999 }
9000
9001 if (intel_is_dual_link_lvds(dev)) {
9002 if (refclk == 100000)
9003 limit = &intel_limits_ironlake_dual_lvds_100m;
9004 else
9005 limit = &intel_limits_ironlake_dual_lvds;
9006 } else {
9007 if (refclk == 100000)
9008 limit = &intel_limits_ironlake_single_lvds_100m;
9009 else
9010 limit = &intel_limits_ironlake_single_lvds;
9011 }
9012 } else {
9013 limit = &intel_limits_ironlake_dac;
9014 }
9015
364ee29d 9016 if (!crtc_state->clock_set &&
997c030c
ACO
9017 !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
9018 refclk, NULL, &crtc_state->dpll)) {
364ee29d
ACO
9019 DRM_ERROR("Couldn't find PLL settings for mode!\n");
9020 return -EINVAL;
f47709a9 9021 }
79e53945 9022
b75ca6f6
ACO
9023 ironlake_compute_dpll(crtc, crtc_state,
9024 has_reduced_clock ? &reduced_clock : NULL);
66e985c0 9025
ded220e2
ACO
9026 pll = intel_get_shared_dpll(crtc, crtc_state, NULL);
9027 if (pll == NULL) {
9028 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
9029 pipe_name(crtc->pipe));
9030 return -EINVAL;
3fb37703 9031 }
79e53945 9032
2d84d2b3 9033 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ded220e2 9034 has_reduced_clock)
c7653199 9035 crtc->lowfreq_avail = true;
e2b78267 9036
c8f7a0db 9037 return 0;
79e53945
JB
9038}
9039
eb14cb74
VS
9040static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
9041 struct intel_link_m_n *m_n)
9042{
9043 struct drm_device *dev = crtc->base.dev;
fac5e23e 9044 struct drm_i915_private *dev_priv = to_i915(dev);
eb14cb74
VS
9045 enum pipe pipe = crtc->pipe;
9046
9047 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
9048 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
9049 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
9050 & ~TU_SIZE_MASK;
9051 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
9052 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
9053 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9054}
9055
9056static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
9057 enum transcoder transcoder,
b95af8be
VK
9058 struct intel_link_m_n *m_n,
9059 struct intel_link_m_n *m2_n2)
72419203
DV
9060{
9061 struct drm_device *dev = crtc->base.dev;
fac5e23e 9062 struct drm_i915_private *dev_priv = to_i915(dev);
eb14cb74 9063 enum pipe pipe = crtc->pipe;
72419203 9064
eb14cb74
VS
9065 if (INTEL_INFO(dev)->gen >= 5) {
9066 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
9067 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
9068 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
9069 & ~TU_SIZE_MASK;
9070 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
9071 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
9072 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
b95af8be
VK
9073 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
9074 * gen < 8) and if DRRS is supported (to make sure the
9075 * registers are not unnecessarily read).
9076 */
9077 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
6e3c9717 9078 crtc->config->has_drrs) {
b95af8be
VK
9079 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
9080 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
9081 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
9082 & ~TU_SIZE_MASK;
9083 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
9084 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
9085 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9086 }
eb14cb74
VS
9087 } else {
9088 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
9089 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
9090 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
9091 & ~TU_SIZE_MASK;
9092 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
9093 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
9094 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9095 }
9096}
9097
9098void intel_dp_get_m_n(struct intel_crtc *crtc,
5cec258b 9099 struct intel_crtc_state *pipe_config)
eb14cb74 9100{
681a8504 9101 if (pipe_config->has_pch_encoder)
eb14cb74
VS
9102 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
9103 else
9104 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be
VK
9105 &pipe_config->dp_m_n,
9106 &pipe_config->dp_m2_n2);
eb14cb74 9107}
72419203 9108
eb14cb74 9109static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
5cec258b 9110 struct intel_crtc_state *pipe_config)
eb14cb74
VS
9111{
9112 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be 9113 &pipe_config->fdi_m_n, NULL);
72419203
DV
9114}
9115
bd2e244f 9116static void skylake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 9117 struct intel_crtc_state *pipe_config)
bd2e244f
JB
9118{
9119 struct drm_device *dev = crtc->base.dev;
fac5e23e 9120 struct drm_i915_private *dev_priv = to_i915(dev);
a1b2278e
CK
9121 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
9122 uint32_t ps_ctrl = 0;
9123 int id = -1;
9124 int i;
bd2e244f 9125
a1b2278e
CK
9126 /* find scaler attached to this pipe */
9127 for (i = 0; i < crtc->num_scalers; i++) {
9128 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
9129 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
9130 id = i;
9131 pipe_config->pch_pfit.enabled = true;
9132 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
9133 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
9134 break;
9135 }
9136 }
bd2e244f 9137
a1b2278e
CK
9138 scaler_state->scaler_id = id;
9139 if (id >= 0) {
9140 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
9141 } else {
9142 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
bd2e244f
JB
9143 }
9144}
9145
5724dbd1
DL
9146static void
9147skylake_get_initial_plane_config(struct intel_crtc *crtc,
9148 struct intel_initial_plane_config *plane_config)
bc8d7dff
DL
9149{
9150 struct drm_device *dev = crtc->base.dev;
fac5e23e 9151 struct drm_i915_private *dev_priv = to_i915(dev);
40f46283 9152 u32 val, base, offset, stride_mult, tiling;
bc8d7dff
DL
9153 int pipe = crtc->pipe;
9154 int fourcc, pixel_format;
6761dd31 9155 unsigned int aligned_height;
bc8d7dff 9156 struct drm_framebuffer *fb;
1b842c89 9157 struct intel_framebuffer *intel_fb;
bc8d7dff 9158
d9806c9f 9159 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 9160 if (!intel_fb) {
bc8d7dff
DL
9161 DRM_DEBUG_KMS("failed to alloc fb\n");
9162 return;
9163 }
9164
1b842c89
DL
9165 fb = &intel_fb->base;
9166
bc8d7dff 9167 val = I915_READ(PLANE_CTL(pipe, 0));
42a7b088
DL
9168 if (!(val & PLANE_CTL_ENABLE))
9169 goto error;
9170
bc8d7dff
DL
9171 pixel_format = val & PLANE_CTL_FORMAT_MASK;
9172 fourcc = skl_format_to_fourcc(pixel_format,
9173 val & PLANE_CTL_ORDER_RGBX,
9174 val & PLANE_CTL_ALPHA_MASK);
9175 fb->pixel_format = fourcc;
9176 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9177
40f46283
DL
9178 tiling = val & PLANE_CTL_TILED_MASK;
9179 switch (tiling) {
9180 case PLANE_CTL_TILED_LINEAR:
9181 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
9182 break;
9183 case PLANE_CTL_TILED_X:
9184 plane_config->tiling = I915_TILING_X;
9185 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9186 break;
9187 case PLANE_CTL_TILED_Y:
9188 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
9189 break;
9190 case PLANE_CTL_TILED_YF:
9191 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
9192 break;
9193 default:
9194 MISSING_CASE(tiling);
9195 goto error;
9196 }
9197
bc8d7dff
DL
9198 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
9199 plane_config->base = base;
9200
9201 offset = I915_READ(PLANE_OFFSET(pipe, 0));
9202
9203 val = I915_READ(PLANE_SIZE(pipe, 0));
9204 fb->height = ((val >> 16) & 0xfff) + 1;
9205 fb->width = ((val >> 0) & 0x1fff) + 1;
9206
9207 val = I915_READ(PLANE_STRIDE(pipe, 0));
7b49f948 9208 stride_mult = intel_fb_stride_alignment(dev_priv, fb->modifier[0],
40f46283 9209 fb->pixel_format);
bc8d7dff
DL
9210 fb->pitches[0] = (val & 0x3ff) * stride_mult;
9211
9212 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
9213 fb->pixel_format,
9214 fb->modifier[0]);
bc8d7dff 9215
f37b5c2b 9216 plane_config->size = fb->pitches[0] * aligned_height;
bc8d7dff
DL
9217
9218 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9219 pipe_name(pipe), fb->width, fb->height,
9220 fb->bits_per_pixel, base, fb->pitches[0],
9221 plane_config->size);
9222
2d14030b 9223 plane_config->fb = intel_fb;
bc8d7dff
DL
9224 return;
9225
9226error:
9227 kfree(fb);
9228}
9229
2fa2fe9a 9230static void ironlake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 9231 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
9232{
9233 struct drm_device *dev = crtc->base.dev;
fac5e23e 9234 struct drm_i915_private *dev_priv = to_i915(dev);
2fa2fe9a
DV
9235 uint32_t tmp;
9236
9237 tmp = I915_READ(PF_CTL(crtc->pipe));
9238
9239 if (tmp & PF_ENABLE) {
fd4daa9c 9240 pipe_config->pch_pfit.enabled = true;
2fa2fe9a
DV
9241 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
9242 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
cb8b2a30
DV
9243
9244 /* We currently do not free assignements of panel fitters on
9245 * ivb/hsw (since we don't use the higher upscaling modes which
9246 * differentiates them) so just WARN about this case for now. */
9247 if (IS_GEN7(dev)) {
9248 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
9249 PF_PIPE_SEL_IVB(crtc->pipe));
9250 }
2fa2fe9a 9251 }
79e53945
JB
9252}
9253
5724dbd1
DL
9254static void
9255ironlake_get_initial_plane_config(struct intel_crtc *crtc,
9256 struct intel_initial_plane_config *plane_config)
4c6baa59
JB
9257{
9258 struct drm_device *dev = crtc->base.dev;
fac5e23e 9259 struct drm_i915_private *dev_priv = to_i915(dev);
4c6baa59 9260 u32 val, base, offset;
aeee5a49 9261 int pipe = crtc->pipe;
4c6baa59 9262 int fourcc, pixel_format;
6761dd31 9263 unsigned int aligned_height;
b113d5ee 9264 struct drm_framebuffer *fb;
1b842c89 9265 struct intel_framebuffer *intel_fb;
4c6baa59 9266
42a7b088
DL
9267 val = I915_READ(DSPCNTR(pipe));
9268 if (!(val & DISPLAY_PLANE_ENABLE))
9269 return;
9270
d9806c9f 9271 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 9272 if (!intel_fb) {
4c6baa59
JB
9273 DRM_DEBUG_KMS("failed to alloc fb\n");
9274 return;
9275 }
9276
1b842c89
DL
9277 fb = &intel_fb->base;
9278
18c5247e
DV
9279 if (INTEL_INFO(dev)->gen >= 4) {
9280 if (val & DISPPLANE_TILED) {
49af449b 9281 plane_config->tiling = I915_TILING_X;
18c5247e
DV
9282 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9283 }
9284 }
4c6baa59
JB
9285
9286 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 9287 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
9288 fb->pixel_format = fourcc;
9289 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
4c6baa59 9290
aeee5a49 9291 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
4c6baa59 9292 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
aeee5a49 9293 offset = I915_READ(DSPOFFSET(pipe));
4c6baa59 9294 } else {
49af449b 9295 if (plane_config->tiling)
aeee5a49 9296 offset = I915_READ(DSPTILEOFF(pipe));
4c6baa59 9297 else
aeee5a49 9298 offset = I915_READ(DSPLINOFF(pipe));
4c6baa59
JB
9299 }
9300 plane_config->base = base;
9301
9302 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
9303 fb->width = ((val >> 16) & 0xfff) + 1;
9304 fb->height = ((val >> 0) & 0xfff) + 1;
4c6baa59
JB
9305
9306 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 9307 fb->pitches[0] = val & 0xffffffc0;
4c6baa59 9308
b113d5ee 9309 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
9310 fb->pixel_format,
9311 fb->modifier[0]);
4c6baa59 9312
f37b5c2b 9313 plane_config->size = fb->pitches[0] * aligned_height;
4c6baa59 9314
2844a921
DL
9315 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9316 pipe_name(pipe), fb->width, fb->height,
9317 fb->bits_per_pixel, base, fb->pitches[0],
9318 plane_config->size);
b113d5ee 9319
2d14030b 9320 plane_config->fb = intel_fb;
4c6baa59
JB
9321}
9322
0e8ffe1b 9323static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
5cec258b 9324 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
9325{
9326 struct drm_device *dev = crtc->base.dev;
fac5e23e 9327 struct drm_i915_private *dev_priv = to_i915(dev);
1729050e 9328 enum intel_display_power_domain power_domain;
0e8ffe1b 9329 uint32_t tmp;
1729050e 9330 bool ret;
0e8ffe1b 9331
1729050e
ID
9332 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
9333 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
930e8c9e
PZ
9334 return false;
9335
e143a21c 9336 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
8106ddbd 9337 pipe_config->shared_dpll = NULL;
eccb140b 9338
1729050e 9339 ret = false;
0e8ffe1b
DV
9340 tmp = I915_READ(PIPECONF(crtc->pipe));
9341 if (!(tmp & PIPECONF_ENABLE))
1729050e 9342 goto out;
0e8ffe1b 9343
42571aef
VS
9344 switch (tmp & PIPECONF_BPC_MASK) {
9345 case PIPECONF_6BPC:
9346 pipe_config->pipe_bpp = 18;
9347 break;
9348 case PIPECONF_8BPC:
9349 pipe_config->pipe_bpp = 24;
9350 break;
9351 case PIPECONF_10BPC:
9352 pipe_config->pipe_bpp = 30;
9353 break;
9354 case PIPECONF_12BPC:
9355 pipe_config->pipe_bpp = 36;
9356 break;
9357 default:
9358 break;
9359 }
9360
b5a9fa09
DV
9361 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
9362 pipe_config->limited_color_range = true;
9363
ab9412ba 9364 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
66e985c0 9365 struct intel_shared_dpll *pll;
8106ddbd 9366 enum intel_dpll_id pll_id;
66e985c0 9367
88adfff1
DV
9368 pipe_config->has_pch_encoder = true;
9369
627eb5a3
DV
9370 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
9371 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9372 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
9373
9374 ironlake_get_fdi_m_n_config(crtc, pipe_config);
6c49f241 9375
2d1fe073 9376 if (HAS_PCH_IBX(dev_priv)) {
d9a7bc67
ID
9377 /*
9378 * The pipe->pch transcoder and pch transcoder->pll
9379 * mapping is fixed.
9380 */
8106ddbd 9381 pll_id = (enum intel_dpll_id) crtc->pipe;
c0d43d62
DV
9382 } else {
9383 tmp = I915_READ(PCH_DPLL_SEL);
9384 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
8106ddbd 9385 pll_id = DPLL_ID_PCH_PLL_B;
c0d43d62 9386 else
8106ddbd 9387 pll_id= DPLL_ID_PCH_PLL_A;
c0d43d62 9388 }
66e985c0 9389
8106ddbd
ACO
9390 pipe_config->shared_dpll =
9391 intel_get_shared_dpll_by_id(dev_priv, pll_id);
9392 pll = pipe_config->shared_dpll;
66e985c0 9393
2edd6443
ACO
9394 WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll,
9395 &pipe_config->dpll_hw_state));
c93f54cf
DV
9396
9397 tmp = pipe_config->dpll_hw_state.dpll;
9398 pipe_config->pixel_multiplier =
9399 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
9400 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
18442d08
VS
9401
9402 ironlake_pch_clock_get(crtc, pipe_config);
6c49f241
DV
9403 } else {
9404 pipe_config->pixel_multiplier = 1;
627eb5a3
DV
9405 }
9406
1bd1bd80 9407 intel_get_pipe_timings(crtc, pipe_config);
bc58be60 9408 intel_get_pipe_src_size(crtc, pipe_config);
1bd1bd80 9409
2fa2fe9a
DV
9410 ironlake_get_pfit_config(crtc, pipe_config);
9411
1729050e
ID
9412 ret = true;
9413
9414out:
9415 intel_display_power_put(dev_priv, power_domain);
9416
9417 return ret;
0e8ffe1b
DV
9418}
9419
be256dc7
PZ
9420static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
9421{
91c8a326 9422 struct drm_device *dev = &dev_priv->drm;
be256dc7 9423 struct intel_crtc *crtc;
be256dc7 9424
d3fcc808 9425 for_each_intel_crtc(dev, crtc)
e2c719b7 9426 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
be256dc7
PZ
9427 pipe_name(crtc->pipe));
9428
e2c719b7
RC
9429 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
9430 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
01403de3
VS
9431 I915_STATE_WARN(I915_READ(WRPLL_CTL(0)) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
9432 I915_STATE_WARN(I915_READ(WRPLL_CTL(1)) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
e2c719b7
RC
9433 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
9434 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
be256dc7 9435 "CPU PWM1 enabled\n");
c5107b87 9436 if (IS_HASWELL(dev))
e2c719b7 9437 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
c5107b87 9438 "CPU PWM2 enabled\n");
e2c719b7 9439 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
be256dc7 9440 "PCH PWM1 enabled\n");
e2c719b7 9441 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
be256dc7 9442 "Utility pin enabled\n");
e2c719b7 9443 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
be256dc7 9444
9926ada1
PZ
9445 /*
9446 * In theory we can still leave IRQs enabled, as long as only the HPD
9447 * interrupts remain enabled. We used to check for that, but since it's
9448 * gen-specific and since we only disable LCPLL after we fully disable
9449 * the interrupts, the check below should be enough.
9450 */
e2c719b7 9451 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
be256dc7
PZ
9452}
9453
9ccd5aeb
PZ
9454static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
9455{
91c8a326 9456 struct drm_device *dev = &dev_priv->drm;
9ccd5aeb
PZ
9457
9458 if (IS_HASWELL(dev))
9459 return I915_READ(D_COMP_HSW);
9460 else
9461 return I915_READ(D_COMP_BDW);
9462}
9463
3c4c9b81
PZ
9464static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
9465{
91c8a326 9466 struct drm_device *dev = &dev_priv->drm;
3c4c9b81
PZ
9467
9468 if (IS_HASWELL(dev)) {
9469 mutex_lock(&dev_priv->rps.hw_lock);
9470 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
9471 val))
f475dadf 9472 DRM_ERROR("Failed to write to D_COMP\n");
3c4c9b81
PZ
9473 mutex_unlock(&dev_priv->rps.hw_lock);
9474 } else {
9ccd5aeb
PZ
9475 I915_WRITE(D_COMP_BDW, val);
9476 POSTING_READ(D_COMP_BDW);
3c4c9b81 9477 }
be256dc7
PZ
9478}
9479
9480/*
9481 * This function implements pieces of two sequences from BSpec:
9482 * - Sequence for display software to disable LCPLL
9483 * - Sequence for display software to allow package C8+
9484 * The steps implemented here are just the steps that actually touch the LCPLL
9485 * register. Callers should take care of disabling all the display engine
9486 * functions, doing the mode unset, fixing interrupts, etc.
9487 */
6ff58d53
PZ
9488static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
9489 bool switch_to_fclk, bool allow_power_down)
be256dc7
PZ
9490{
9491 uint32_t val;
9492
9493 assert_can_disable_lcpll(dev_priv);
9494
9495 val = I915_READ(LCPLL_CTL);
9496
9497 if (switch_to_fclk) {
9498 val |= LCPLL_CD_SOURCE_FCLK;
9499 I915_WRITE(LCPLL_CTL, val);
9500
f53dd63f
ID
9501 if (wait_for_us(I915_READ(LCPLL_CTL) &
9502 LCPLL_CD_SOURCE_FCLK_DONE, 1))
be256dc7
PZ
9503 DRM_ERROR("Switching to FCLK failed\n");
9504
9505 val = I915_READ(LCPLL_CTL);
9506 }
9507
9508 val |= LCPLL_PLL_DISABLE;
9509 I915_WRITE(LCPLL_CTL, val);
9510 POSTING_READ(LCPLL_CTL);
9511
24d8441d 9512 if (intel_wait_for_register(dev_priv, LCPLL_CTL, LCPLL_PLL_LOCK, 0, 1))
be256dc7
PZ
9513 DRM_ERROR("LCPLL still locked\n");
9514
9ccd5aeb 9515 val = hsw_read_dcomp(dev_priv);
be256dc7 9516 val |= D_COMP_COMP_DISABLE;
3c4c9b81 9517 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
9518 ndelay(100);
9519
9ccd5aeb
PZ
9520 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
9521 1))
be256dc7
PZ
9522 DRM_ERROR("D_COMP RCOMP still in progress\n");
9523
9524 if (allow_power_down) {
9525 val = I915_READ(LCPLL_CTL);
9526 val |= LCPLL_POWER_DOWN_ALLOW;
9527 I915_WRITE(LCPLL_CTL, val);
9528 POSTING_READ(LCPLL_CTL);
9529 }
9530}
9531
9532/*
9533 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
9534 * source.
9535 */
6ff58d53 9536static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
be256dc7
PZ
9537{
9538 uint32_t val;
9539
9540 val = I915_READ(LCPLL_CTL);
9541
9542 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
9543 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
9544 return;
9545
a8a8bd54
PZ
9546 /*
9547 * Make sure we're not on PC8 state before disabling PC8, otherwise
9548 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
a8a8bd54 9549 */
59bad947 9550 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
215733fa 9551
be256dc7
PZ
9552 if (val & LCPLL_POWER_DOWN_ALLOW) {
9553 val &= ~LCPLL_POWER_DOWN_ALLOW;
9554 I915_WRITE(LCPLL_CTL, val);
35d8f2eb 9555 POSTING_READ(LCPLL_CTL);
be256dc7
PZ
9556 }
9557
9ccd5aeb 9558 val = hsw_read_dcomp(dev_priv);
be256dc7
PZ
9559 val |= D_COMP_COMP_FORCE;
9560 val &= ~D_COMP_COMP_DISABLE;
3c4c9b81 9561 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
9562
9563 val = I915_READ(LCPLL_CTL);
9564 val &= ~LCPLL_PLL_DISABLE;
9565 I915_WRITE(LCPLL_CTL, val);
9566
93220c08
CW
9567 if (intel_wait_for_register(dev_priv,
9568 LCPLL_CTL, LCPLL_PLL_LOCK, LCPLL_PLL_LOCK,
9569 5))
be256dc7
PZ
9570 DRM_ERROR("LCPLL not locked yet\n");
9571
9572 if (val & LCPLL_CD_SOURCE_FCLK) {
9573 val = I915_READ(LCPLL_CTL);
9574 val &= ~LCPLL_CD_SOURCE_FCLK;
9575 I915_WRITE(LCPLL_CTL, val);
9576
f53dd63f
ID
9577 if (wait_for_us((I915_READ(LCPLL_CTL) &
9578 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
be256dc7
PZ
9579 DRM_ERROR("Switching back to LCPLL failed\n");
9580 }
215733fa 9581
59bad947 9582 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
91c8a326 9583 intel_update_cdclk(&dev_priv->drm);
be256dc7
PZ
9584}
9585
765dab67
PZ
9586/*
9587 * Package states C8 and deeper are really deep PC states that can only be
9588 * reached when all the devices on the system allow it, so even if the graphics
9589 * device allows PC8+, it doesn't mean the system will actually get to these
9590 * states. Our driver only allows PC8+ when going into runtime PM.
9591 *
9592 * The requirements for PC8+ are that all the outputs are disabled, the power
9593 * well is disabled and most interrupts are disabled, and these are also
9594 * requirements for runtime PM. When these conditions are met, we manually do
9595 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
9596 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
9597 * hang the machine.
9598 *
9599 * When we really reach PC8 or deeper states (not just when we allow it) we lose
9600 * the state of some registers, so when we come back from PC8+ we need to
9601 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
9602 * need to take care of the registers kept by RC6. Notice that this happens even
9603 * if we don't put the device in PCI D3 state (which is what currently happens
9604 * because of the runtime PM support).
9605 *
9606 * For more, read "Display Sequences for Package C8" on the hardware
9607 * documentation.
9608 */
a14cb6fc 9609void hsw_enable_pc8(struct drm_i915_private *dev_priv)
c67a470b 9610{
91c8a326 9611 struct drm_device *dev = &dev_priv->drm;
c67a470b
PZ
9612 uint32_t val;
9613
c67a470b
PZ
9614 DRM_DEBUG_KMS("Enabling package C8+\n");
9615
c2699524 9616 if (HAS_PCH_LPT_LP(dev)) {
c67a470b
PZ
9617 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9618 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
9619 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9620 }
9621
9622 lpt_disable_clkout_dp(dev);
c67a470b
PZ
9623 hsw_disable_lcpll(dev_priv, true, true);
9624}
9625
a14cb6fc 9626void hsw_disable_pc8(struct drm_i915_private *dev_priv)
c67a470b 9627{
91c8a326 9628 struct drm_device *dev = &dev_priv->drm;
c67a470b
PZ
9629 uint32_t val;
9630
c67a470b
PZ
9631 DRM_DEBUG_KMS("Disabling package C8+\n");
9632
9633 hsw_restore_lcpll(dev_priv);
c67a470b
PZ
9634 lpt_init_pch_refclk(dev);
9635
c2699524 9636 if (HAS_PCH_LPT_LP(dev)) {
c67a470b
PZ
9637 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9638 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
9639 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9640 }
c67a470b
PZ
9641}
9642
324513c0 9643static void bxt_modeset_commit_cdclk(struct drm_atomic_state *old_state)
f8437dd1 9644{
a821fc46 9645 struct drm_device *dev = old_state->dev;
1a617b77
ML
9646 struct intel_atomic_state *old_intel_state =
9647 to_intel_atomic_state(old_state);
9648 unsigned int req_cdclk = old_intel_state->dev_cdclk;
f8437dd1 9649
324513c0 9650 bxt_set_cdclk(to_i915(dev), req_cdclk);
f8437dd1
VK
9651}
9652
b432e5cf 9653/* compute the max rate for new configuration */
27c329ed 9654static int ilk_max_pixel_rate(struct drm_atomic_state *state)
b432e5cf 9655{
565602d7 9656 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fac5e23e 9657 struct drm_i915_private *dev_priv = to_i915(state->dev);
565602d7
ML
9658 struct drm_crtc *crtc;
9659 struct drm_crtc_state *cstate;
27c329ed 9660 struct intel_crtc_state *crtc_state;
565602d7
ML
9661 unsigned max_pixel_rate = 0, i;
9662 enum pipe pipe;
b432e5cf 9663
565602d7
ML
9664 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
9665 sizeof(intel_state->min_pixclk));
27c329ed 9666
565602d7
ML
9667 for_each_crtc_in_state(state, crtc, cstate, i) {
9668 int pixel_rate;
27c329ed 9669
565602d7
ML
9670 crtc_state = to_intel_crtc_state(cstate);
9671 if (!crtc_state->base.enable) {
9672 intel_state->min_pixclk[i] = 0;
b432e5cf 9673 continue;
565602d7 9674 }
b432e5cf 9675
27c329ed 9676 pixel_rate = ilk_pipe_pixel_rate(crtc_state);
b432e5cf
VS
9677
9678 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
565602d7 9679 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
b432e5cf
VS
9680 pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95);
9681
565602d7 9682 intel_state->min_pixclk[i] = pixel_rate;
b432e5cf
VS
9683 }
9684
565602d7
ML
9685 for_each_pipe(dev_priv, pipe)
9686 max_pixel_rate = max(intel_state->min_pixclk[pipe], max_pixel_rate);
9687
b432e5cf
VS
9688 return max_pixel_rate;
9689}
9690
9691static void broadwell_set_cdclk(struct drm_device *dev, int cdclk)
9692{
fac5e23e 9693 struct drm_i915_private *dev_priv = to_i915(dev);
b432e5cf
VS
9694 uint32_t val, data;
9695 int ret;
9696
9697 if (WARN((I915_READ(LCPLL_CTL) &
9698 (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK |
9699 LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE |
9700 LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW |
9701 LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK,
9702 "trying to change cdclk frequency with cdclk not enabled\n"))
9703 return;
9704
9705 mutex_lock(&dev_priv->rps.hw_lock);
9706 ret = sandybridge_pcode_write(dev_priv,
9707 BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
9708 mutex_unlock(&dev_priv->rps.hw_lock);
9709 if (ret) {
9710 DRM_ERROR("failed to inform pcode about cdclk change\n");
9711 return;
9712 }
9713
9714 val = I915_READ(LCPLL_CTL);
9715 val |= LCPLL_CD_SOURCE_FCLK;
9716 I915_WRITE(LCPLL_CTL, val);
9717
5ba00178
TU
9718 if (wait_for_us(I915_READ(LCPLL_CTL) &
9719 LCPLL_CD_SOURCE_FCLK_DONE, 1))
b432e5cf
VS
9720 DRM_ERROR("Switching to FCLK failed\n");
9721
9722 val = I915_READ(LCPLL_CTL);
9723 val &= ~LCPLL_CLK_FREQ_MASK;
9724
9725 switch (cdclk) {
9726 case 450000:
9727 val |= LCPLL_CLK_FREQ_450;
9728 data = 0;
9729 break;
9730 case 540000:
9731 val |= LCPLL_CLK_FREQ_54O_BDW;
9732 data = 1;
9733 break;
9734 case 337500:
9735 val |= LCPLL_CLK_FREQ_337_5_BDW;
9736 data = 2;
9737 break;
9738 case 675000:
9739 val |= LCPLL_CLK_FREQ_675_BDW;
9740 data = 3;
9741 break;
9742 default:
9743 WARN(1, "invalid cdclk frequency\n");
9744 return;
9745 }
9746
9747 I915_WRITE(LCPLL_CTL, val);
9748
9749 val = I915_READ(LCPLL_CTL);
9750 val &= ~LCPLL_CD_SOURCE_FCLK;
9751 I915_WRITE(LCPLL_CTL, val);
9752
5ba00178
TU
9753 if (wait_for_us((I915_READ(LCPLL_CTL) &
9754 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
b432e5cf
VS
9755 DRM_ERROR("Switching back to LCPLL failed\n");
9756
9757 mutex_lock(&dev_priv->rps.hw_lock);
9758 sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data);
9759 mutex_unlock(&dev_priv->rps.hw_lock);
9760
7f1052a8
VS
9761 I915_WRITE(CDCLK_FREQ, DIV_ROUND_CLOSEST(cdclk, 1000) - 1);
9762
b432e5cf
VS
9763 intel_update_cdclk(dev);
9764
9765 WARN(cdclk != dev_priv->cdclk_freq,
9766 "cdclk requested %d kHz but got %d kHz\n",
9767 cdclk, dev_priv->cdclk_freq);
9768}
9769
587c7914
VS
9770static int broadwell_calc_cdclk(int max_pixclk)
9771{
9772 if (max_pixclk > 540000)
9773 return 675000;
9774 else if (max_pixclk > 450000)
9775 return 540000;
9776 else if (max_pixclk > 337500)
9777 return 450000;
9778 else
9779 return 337500;
9780}
9781
27c329ed 9782static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state)
b432e5cf 9783{
27c329ed 9784 struct drm_i915_private *dev_priv = to_i915(state->dev);
1a617b77 9785 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
27c329ed 9786 int max_pixclk = ilk_max_pixel_rate(state);
b432e5cf
VS
9787 int cdclk;
9788
9789 /*
9790 * FIXME should also account for plane ratio
9791 * once 64bpp pixel formats are supported.
9792 */
587c7914 9793 cdclk = broadwell_calc_cdclk(max_pixclk);
b432e5cf 9794
b432e5cf 9795 if (cdclk > dev_priv->max_cdclk_freq) {
63ba534e
ML
9796 DRM_DEBUG_KMS("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
9797 cdclk, dev_priv->max_cdclk_freq);
9798 return -EINVAL;
b432e5cf
VS
9799 }
9800
1a617b77
ML
9801 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
9802 if (!intel_state->active_crtcs)
587c7914 9803 intel_state->dev_cdclk = broadwell_calc_cdclk(0);
b432e5cf
VS
9804
9805 return 0;
9806}
9807
27c329ed 9808static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state)
b432e5cf 9809{
27c329ed 9810 struct drm_device *dev = old_state->dev;
1a617b77
ML
9811 struct intel_atomic_state *old_intel_state =
9812 to_intel_atomic_state(old_state);
9813 unsigned req_cdclk = old_intel_state->dev_cdclk;
b432e5cf 9814
27c329ed 9815 broadwell_set_cdclk(dev, req_cdclk);
b432e5cf
VS
9816}
9817
c89e39f3
CT
9818static int skl_modeset_calc_cdclk(struct drm_atomic_state *state)
9819{
9820 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
9821 struct drm_i915_private *dev_priv = to_i915(state->dev);
9822 const int max_pixclk = ilk_max_pixel_rate(state);
a8ca4934 9823 int vco = intel_state->cdclk_pll_vco;
c89e39f3
CT
9824 int cdclk;
9825
9826 /*
9827 * FIXME should also account for plane ratio
9828 * once 64bpp pixel formats are supported.
9829 */
a8ca4934 9830 cdclk = skl_calc_cdclk(max_pixclk, vco);
c89e39f3
CT
9831
9832 /*
9833 * FIXME move the cdclk caclulation to
9834 * compute_config() so we can fail gracegully.
9835 */
9836 if (cdclk > dev_priv->max_cdclk_freq) {
9837 DRM_ERROR("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
9838 cdclk, dev_priv->max_cdclk_freq);
9839 cdclk = dev_priv->max_cdclk_freq;
9840 }
9841
9842 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
9843 if (!intel_state->active_crtcs)
a8ca4934 9844 intel_state->dev_cdclk = skl_calc_cdclk(0, vco);
c89e39f3
CT
9845
9846 return 0;
9847}
9848
9849static void skl_modeset_commit_cdclk(struct drm_atomic_state *old_state)
9850{
1cd593e0
VS
9851 struct drm_i915_private *dev_priv = to_i915(old_state->dev);
9852 struct intel_atomic_state *intel_state = to_intel_atomic_state(old_state);
9853 unsigned int req_cdclk = intel_state->dev_cdclk;
9854 unsigned int req_vco = intel_state->cdclk_pll_vco;
c89e39f3 9855
1cd593e0 9856 skl_set_cdclk(dev_priv, req_cdclk, req_vco);
c89e39f3
CT
9857}
9858
190f68c5
ACO
9859static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
9860 struct intel_crtc_state *crtc_state)
09b4ddf9 9861{
af3997b5
MK
9862 struct intel_encoder *intel_encoder =
9863 intel_ddi_get_crtc_new_encoder(crtc_state);
9864
9865 if (intel_encoder->type != INTEL_OUTPUT_DSI) {
9866 if (!intel_ddi_pll_select(crtc, crtc_state))
9867 return -EINVAL;
9868 }
716c2e55 9869
c7653199 9870 crtc->lowfreq_avail = false;
644cef34 9871
c8f7a0db 9872 return 0;
79e53945
JB
9873}
9874
3760b59c
S
9875static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
9876 enum port port,
9877 struct intel_crtc_state *pipe_config)
9878{
8106ddbd
ACO
9879 enum intel_dpll_id id;
9880
3760b59c
S
9881 switch (port) {
9882 case PORT_A:
9883 pipe_config->ddi_pll_sel = SKL_DPLL0;
08250c4b 9884 id = DPLL_ID_SKL_DPLL0;
3760b59c
S
9885 break;
9886 case PORT_B:
9887 pipe_config->ddi_pll_sel = SKL_DPLL1;
08250c4b 9888 id = DPLL_ID_SKL_DPLL1;
3760b59c
S
9889 break;
9890 case PORT_C:
9891 pipe_config->ddi_pll_sel = SKL_DPLL2;
08250c4b 9892 id = DPLL_ID_SKL_DPLL2;
3760b59c
S
9893 break;
9894 default:
9895 DRM_ERROR("Incorrect port type\n");
8106ddbd 9896 return;
3760b59c 9897 }
8106ddbd
ACO
9898
9899 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
3760b59c
S
9900}
9901
96b7dfb7
S
9902static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
9903 enum port port,
5cec258b 9904 struct intel_crtc_state *pipe_config)
96b7dfb7 9905{
8106ddbd 9906 enum intel_dpll_id id;
a3c988ea 9907 u32 temp;
96b7dfb7
S
9908
9909 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
9910 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
9911
9912 switch (pipe_config->ddi_pll_sel) {
3148ade7 9913 case SKL_DPLL0:
a3c988ea
ACO
9914 id = DPLL_ID_SKL_DPLL0;
9915 break;
96b7dfb7 9916 case SKL_DPLL1:
8106ddbd 9917 id = DPLL_ID_SKL_DPLL1;
96b7dfb7
S
9918 break;
9919 case SKL_DPLL2:
8106ddbd 9920 id = DPLL_ID_SKL_DPLL2;
96b7dfb7
S
9921 break;
9922 case SKL_DPLL3:
8106ddbd 9923 id = DPLL_ID_SKL_DPLL3;
96b7dfb7 9924 break;
8106ddbd
ACO
9925 default:
9926 MISSING_CASE(pipe_config->ddi_pll_sel);
9927 return;
96b7dfb7 9928 }
8106ddbd
ACO
9929
9930 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
96b7dfb7
S
9931}
9932
7d2c8175
DL
9933static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
9934 enum port port,
5cec258b 9935 struct intel_crtc_state *pipe_config)
7d2c8175 9936{
8106ddbd
ACO
9937 enum intel_dpll_id id;
9938
7d2c8175
DL
9939 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
9940
9941 switch (pipe_config->ddi_pll_sel) {
9942 case PORT_CLK_SEL_WRPLL1:
8106ddbd 9943 id = DPLL_ID_WRPLL1;
7d2c8175
DL
9944 break;
9945 case PORT_CLK_SEL_WRPLL2:
8106ddbd 9946 id = DPLL_ID_WRPLL2;
7d2c8175 9947 break;
00490c22 9948 case PORT_CLK_SEL_SPLL:
8106ddbd 9949 id = DPLL_ID_SPLL;
79bd23da 9950 break;
9d16da65
ACO
9951 case PORT_CLK_SEL_LCPLL_810:
9952 id = DPLL_ID_LCPLL_810;
9953 break;
9954 case PORT_CLK_SEL_LCPLL_1350:
9955 id = DPLL_ID_LCPLL_1350;
9956 break;
9957 case PORT_CLK_SEL_LCPLL_2700:
9958 id = DPLL_ID_LCPLL_2700;
9959 break;
8106ddbd
ACO
9960 default:
9961 MISSING_CASE(pipe_config->ddi_pll_sel);
9962 /* fall through */
9963 case PORT_CLK_SEL_NONE:
8106ddbd 9964 return;
7d2c8175 9965 }
8106ddbd
ACO
9966
9967 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
7d2c8175
DL
9968}
9969
cf30429e
JN
9970static bool hsw_get_transcoder_state(struct intel_crtc *crtc,
9971 struct intel_crtc_state *pipe_config,
9972 unsigned long *power_domain_mask)
9973{
9974 struct drm_device *dev = crtc->base.dev;
fac5e23e 9975 struct drm_i915_private *dev_priv = to_i915(dev);
cf30429e
JN
9976 enum intel_display_power_domain power_domain;
9977 u32 tmp;
9978
d9a7bc67
ID
9979 /*
9980 * The pipe->transcoder mapping is fixed with the exception of the eDP
9981 * transcoder handled below.
9982 */
cf30429e
JN
9983 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
9984
9985 /*
9986 * XXX: Do intel_display_power_get_if_enabled before reading this (for
9987 * consistency and less surprising code; it's in always on power).
9988 */
9989 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
9990 if (tmp & TRANS_DDI_FUNC_ENABLE) {
9991 enum pipe trans_edp_pipe;
9992 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
9993 default:
9994 WARN(1, "unknown pipe linked to edp transcoder\n");
9995 case TRANS_DDI_EDP_INPUT_A_ONOFF:
9996 case TRANS_DDI_EDP_INPUT_A_ON:
9997 trans_edp_pipe = PIPE_A;
9998 break;
9999 case TRANS_DDI_EDP_INPUT_B_ONOFF:
10000 trans_edp_pipe = PIPE_B;
10001 break;
10002 case TRANS_DDI_EDP_INPUT_C_ONOFF:
10003 trans_edp_pipe = PIPE_C;
10004 break;
10005 }
10006
10007 if (trans_edp_pipe == crtc->pipe)
10008 pipe_config->cpu_transcoder = TRANSCODER_EDP;
10009 }
10010
10011 power_domain = POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder);
10012 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
10013 return false;
10014 *power_domain_mask |= BIT(power_domain);
10015
10016 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
10017
10018 return tmp & PIPECONF_ENABLE;
10019}
10020
4d1de975
JN
10021static bool bxt_get_dsi_transcoder_state(struct intel_crtc *crtc,
10022 struct intel_crtc_state *pipe_config,
10023 unsigned long *power_domain_mask)
10024{
10025 struct drm_device *dev = crtc->base.dev;
fac5e23e 10026 struct drm_i915_private *dev_priv = to_i915(dev);
4d1de975
JN
10027 enum intel_display_power_domain power_domain;
10028 enum port port;
10029 enum transcoder cpu_transcoder;
10030 u32 tmp;
10031
10032 pipe_config->has_dsi_encoder = false;
10033
10034 for_each_port_masked(port, BIT(PORT_A) | BIT(PORT_C)) {
10035 if (port == PORT_A)
10036 cpu_transcoder = TRANSCODER_DSI_A;
10037 else
10038 cpu_transcoder = TRANSCODER_DSI_C;
10039
10040 power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
10041 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
10042 continue;
10043 *power_domain_mask |= BIT(power_domain);
10044
db18b6a6
ID
10045 /*
10046 * The PLL needs to be enabled with a valid divider
10047 * configuration, otherwise accessing DSI registers will hang
10048 * the machine. See BSpec North Display Engine
10049 * registers/MIPI[BXT]. We can break out here early, since we
10050 * need the same DSI PLL to be enabled for both DSI ports.
10051 */
10052 if (!intel_dsi_pll_is_enabled(dev_priv))
10053 break;
10054
4d1de975
JN
10055 /* XXX: this works for video mode only */
10056 tmp = I915_READ(BXT_MIPI_PORT_CTRL(port));
10057 if (!(tmp & DPI_ENABLE))
10058 continue;
10059
10060 tmp = I915_READ(MIPI_CTRL(port));
10061 if ((tmp & BXT_PIPE_SELECT_MASK) != BXT_PIPE_SELECT(crtc->pipe))
10062 continue;
10063
10064 pipe_config->cpu_transcoder = cpu_transcoder;
10065 pipe_config->has_dsi_encoder = true;
10066 break;
10067 }
10068
10069 return pipe_config->has_dsi_encoder;
10070}
10071
26804afd 10072static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
5cec258b 10073 struct intel_crtc_state *pipe_config)
26804afd
DV
10074{
10075 struct drm_device *dev = crtc->base.dev;
fac5e23e 10076 struct drm_i915_private *dev_priv = to_i915(dev);
d452c5b6 10077 struct intel_shared_dpll *pll;
26804afd
DV
10078 enum port port;
10079 uint32_t tmp;
10080
10081 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
10082
10083 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
10084
ef11bdb3 10085 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
96b7dfb7 10086 skylake_get_ddi_pll(dev_priv, port, pipe_config);
3760b59c
S
10087 else if (IS_BROXTON(dev))
10088 bxt_get_ddi_pll(dev_priv, port, pipe_config);
96b7dfb7
S
10089 else
10090 haswell_get_ddi_pll(dev_priv, port, pipe_config);
9cd86933 10091
8106ddbd
ACO
10092 pll = pipe_config->shared_dpll;
10093 if (pll) {
2edd6443
ACO
10094 WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll,
10095 &pipe_config->dpll_hw_state));
d452c5b6
DV
10096 }
10097
26804afd
DV
10098 /*
10099 * Haswell has only FDI/PCH transcoder A. It is which is connected to
10100 * DDI E. So just check whether this pipe is wired to DDI E and whether
10101 * the PCH transcoder is on.
10102 */
ca370455
DL
10103 if (INTEL_INFO(dev)->gen < 9 &&
10104 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
26804afd
DV
10105 pipe_config->has_pch_encoder = true;
10106
10107 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
10108 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
10109 FDI_DP_PORT_WIDTH_SHIFT) + 1;
10110
10111 ironlake_get_fdi_m_n_config(crtc, pipe_config);
10112 }
10113}
10114
0e8ffe1b 10115static bool haswell_get_pipe_config(struct intel_crtc *crtc,
5cec258b 10116 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
10117{
10118 struct drm_device *dev = crtc->base.dev;
fac5e23e 10119 struct drm_i915_private *dev_priv = to_i915(dev);
1729050e
ID
10120 enum intel_display_power_domain power_domain;
10121 unsigned long power_domain_mask;
cf30429e 10122 bool active;
0e8ffe1b 10123
1729050e
ID
10124 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
10125 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
b5482bd0 10126 return false;
1729050e
ID
10127 power_domain_mask = BIT(power_domain);
10128
8106ddbd 10129 pipe_config->shared_dpll = NULL;
c0d43d62 10130
cf30429e 10131 active = hsw_get_transcoder_state(crtc, pipe_config, &power_domain_mask);
eccb140b 10132
4d1de975
JN
10133 if (IS_BROXTON(dev_priv)) {
10134 bxt_get_dsi_transcoder_state(crtc, pipe_config,
10135 &power_domain_mask);
10136 WARN_ON(active && pipe_config->has_dsi_encoder);
10137 if (pipe_config->has_dsi_encoder)
10138 active = true;
10139 }
10140
cf30429e 10141 if (!active)
1729050e 10142 goto out;
0e8ffe1b 10143
4d1de975
JN
10144 if (!pipe_config->has_dsi_encoder) {
10145 haswell_get_ddi_port_state(crtc, pipe_config);
10146 intel_get_pipe_timings(crtc, pipe_config);
10147 }
627eb5a3 10148
bc58be60 10149 intel_get_pipe_src_size(crtc, pipe_config);
1bd1bd80 10150
05dc698c
LL
10151 pipe_config->gamma_mode =
10152 I915_READ(GAMMA_MODE(crtc->pipe)) & GAMMA_MODE_MODE_MASK;
10153
a1b2278e
CK
10154 if (INTEL_INFO(dev)->gen >= 9) {
10155 skl_init_scalers(dev, crtc, pipe_config);
10156 }
10157
af99ceda
CK
10158 if (INTEL_INFO(dev)->gen >= 9) {
10159 pipe_config->scaler_state.scaler_id = -1;
10160 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
10161 }
10162
1729050e
ID
10163 power_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
10164 if (intel_display_power_get_if_enabled(dev_priv, power_domain)) {
10165 power_domain_mask |= BIT(power_domain);
1c132b44 10166 if (INTEL_INFO(dev)->gen >= 9)
bd2e244f 10167 skylake_get_pfit_config(crtc, pipe_config);
ff6d9f55 10168 else
1c132b44 10169 ironlake_get_pfit_config(crtc, pipe_config);
bd2e244f 10170 }
88adfff1 10171
e59150dc
JB
10172 if (IS_HASWELL(dev))
10173 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
10174 (I915_READ(IPS_CTL) & IPS_ENABLE);
42db64ef 10175
4d1de975
JN
10176 if (pipe_config->cpu_transcoder != TRANSCODER_EDP &&
10177 !transcoder_is_dsi(pipe_config->cpu_transcoder)) {
ebb69c95
CT
10178 pipe_config->pixel_multiplier =
10179 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
10180 } else {
10181 pipe_config->pixel_multiplier = 1;
10182 }
6c49f241 10183
1729050e
ID
10184out:
10185 for_each_power_domain(power_domain, power_domain_mask)
10186 intel_display_power_put(dev_priv, power_domain);
10187
cf30429e 10188 return active;
0e8ffe1b
DV
10189}
10190
55a08b3f
ML
10191static void i845_update_cursor(struct drm_crtc *crtc, u32 base,
10192 const struct intel_plane_state *plane_state)
560b85bb
CW
10193{
10194 struct drm_device *dev = crtc->dev;
fac5e23e 10195 struct drm_i915_private *dev_priv = to_i915(dev);
560b85bb 10196 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
dc41c154 10197 uint32_t cntl = 0, size = 0;
560b85bb 10198
55a08b3f
ML
10199 if (plane_state && plane_state->visible) {
10200 unsigned int width = plane_state->base.crtc_w;
10201 unsigned int height = plane_state->base.crtc_h;
dc41c154
VS
10202 unsigned int stride = roundup_pow_of_two(width) * 4;
10203
10204 switch (stride) {
10205 default:
10206 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
10207 width, stride);
10208 stride = 256;
10209 /* fallthrough */
10210 case 256:
10211 case 512:
10212 case 1024:
10213 case 2048:
10214 break;
4b0e333e
CW
10215 }
10216
dc41c154
VS
10217 cntl |= CURSOR_ENABLE |
10218 CURSOR_GAMMA_ENABLE |
10219 CURSOR_FORMAT_ARGB |
10220 CURSOR_STRIDE(stride);
10221
10222 size = (height << 12) | width;
4b0e333e 10223 }
560b85bb 10224
dc41c154
VS
10225 if (intel_crtc->cursor_cntl != 0 &&
10226 (intel_crtc->cursor_base != base ||
10227 intel_crtc->cursor_size != size ||
10228 intel_crtc->cursor_cntl != cntl)) {
10229 /* On these chipsets we can only modify the base/size/stride
10230 * whilst the cursor is disabled.
10231 */
0b87c24e
VS
10232 I915_WRITE(CURCNTR(PIPE_A), 0);
10233 POSTING_READ(CURCNTR(PIPE_A));
dc41c154 10234 intel_crtc->cursor_cntl = 0;
4b0e333e 10235 }
560b85bb 10236
99d1f387 10237 if (intel_crtc->cursor_base != base) {
0b87c24e 10238 I915_WRITE(CURBASE(PIPE_A), base);
99d1f387
VS
10239 intel_crtc->cursor_base = base;
10240 }
4726e0b0 10241
dc41c154
VS
10242 if (intel_crtc->cursor_size != size) {
10243 I915_WRITE(CURSIZE, size);
10244 intel_crtc->cursor_size = size;
4b0e333e 10245 }
560b85bb 10246
4b0e333e 10247 if (intel_crtc->cursor_cntl != cntl) {
0b87c24e
VS
10248 I915_WRITE(CURCNTR(PIPE_A), cntl);
10249 POSTING_READ(CURCNTR(PIPE_A));
4b0e333e 10250 intel_crtc->cursor_cntl = cntl;
560b85bb 10251 }
560b85bb
CW
10252}
10253
55a08b3f
ML
10254static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base,
10255 const struct intel_plane_state *plane_state)
65a21cd6
JB
10256{
10257 struct drm_device *dev = crtc->dev;
fac5e23e 10258 struct drm_i915_private *dev_priv = to_i915(dev);
65a21cd6
JB
10259 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10260 int pipe = intel_crtc->pipe;
663f3122 10261 uint32_t cntl = 0;
4b0e333e 10262
55a08b3f 10263 if (plane_state && plane_state->visible) {
4b0e333e 10264 cntl = MCURSOR_GAMMA_ENABLE;
55a08b3f 10265 switch (plane_state->base.crtc_w) {
4726e0b0
SK
10266 case 64:
10267 cntl |= CURSOR_MODE_64_ARGB_AX;
10268 break;
10269 case 128:
10270 cntl |= CURSOR_MODE_128_ARGB_AX;
10271 break;
10272 case 256:
10273 cntl |= CURSOR_MODE_256_ARGB_AX;
10274 break;
10275 default:
55a08b3f 10276 MISSING_CASE(plane_state->base.crtc_w);
4726e0b0 10277 return;
65a21cd6 10278 }
4b0e333e 10279 cntl |= pipe << 28; /* Connect to correct pipe */
47bf17a7 10280
fc6f93bc 10281 if (HAS_DDI(dev))
47bf17a7 10282 cntl |= CURSOR_PIPE_CSC_ENABLE;
65a21cd6 10283
55a08b3f
ML
10284 if (plane_state->base.rotation == BIT(DRM_ROTATE_180))
10285 cntl |= CURSOR_ROTATE_180;
10286 }
4398ad45 10287
4b0e333e
CW
10288 if (intel_crtc->cursor_cntl != cntl) {
10289 I915_WRITE(CURCNTR(pipe), cntl);
10290 POSTING_READ(CURCNTR(pipe));
10291 intel_crtc->cursor_cntl = cntl;
65a21cd6 10292 }
4b0e333e 10293
65a21cd6 10294 /* and commit changes on next vblank */
5efb3e28
VS
10295 I915_WRITE(CURBASE(pipe), base);
10296 POSTING_READ(CURBASE(pipe));
99d1f387
VS
10297
10298 intel_crtc->cursor_base = base;
65a21cd6
JB
10299}
10300
cda4b7d3 10301/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6b383a7f 10302static void intel_crtc_update_cursor(struct drm_crtc *crtc,
55a08b3f 10303 const struct intel_plane_state *plane_state)
cda4b7d3
CW
10304{
10305 struct drm_device *dev = crtc->dev;
fac5e23e 10306 struct drm_i915_private *dev_priv = to_i915(dev);
cda4b7d3
CW
10307 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10308 int pipe = intel_crtc->pipe;
55a08b3f
ML
10309 u32 base = intel_crtc->cursor_addr;
10310 u32 pos = 0;
cda4b7d3 10311
55a08b3f
ML
10312 if (plane_state) {
10313 int x = plane_state->base.crtc_x;
10314 int y = plane_state->base.crtc_y;
cda4b7d3 10315
55a08b3f
ML
10316 if (x < 0) {
10317 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
10318 x = -x;
10319 }
10320 pos |= x << CURSOR_X_SHIFT;
cda4b7d3 10321
55a08b3f
ML
10322 if (y < 0) {
10323 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
10324 y = -y;
10325 }
10326 pos |= y << CURSOR_Y_SHIFT;
10327
10328 /* ILK+ do this automagically */
10329 if (HAS_GMCH_DISPLAY(dev) &&
10330 plane_state->base.rotation == BIT(DRM_ROTATE_180)) {
10331 base += (plane_state->base.crtc_h *
10332 plane_state->base.crtc_w - 1) * 4;
10333 }
cda4b7d3 10334 }
cda4b7d3 10335
5efb3e28
VS
10336 I915_WRITE(CURPOS(pipe), pos);
10337
8ac54669 10338 if (IS_845G(dev) || IS_I865G(dev))
55a08b3f 10339 i845_update_cursor(crtc, base, plane_state);
5efb3e28 10340 else
55a08b3f 10341 i9xx_update_cursor(crtc, base, plane_state);
cda4b7d3
CW
10342}
10343
dc41c154
VS
10344static bool cursor_size_ok(struct drm_device *dev,
10345 uint32_t width, uint32_t height)
10346{
10347 if (width == 0 || height == 0)
10348 return false;
10349
10350 /*
10351 * 845g/865g are special in that they are only limited by
10352 * the width of their cursors, the height is arbitrary up to
10353 * the precision of the register. Everything else requires
10354 * square cursors, limited to a few power-of-two sizes.
10355 */
10356 if (IS_845G(dev) || IS_I865G(dev)) {
10357 if ((width & 63) != 0)
10358 return false;
10359
10360 if (width > (IS_845G(dev) ? 64 : 512))
10361 return false;
10362
10363 if (height > 1023)
10364 return false;
10365 } else {
10366 switch (width | height) {
10367 case 256:
10368 case 128:
10369 if (IS_GEN2(dev))
10370 return false;
10371 case 64:
10372 break;
10373 default:
10374 return false;
10375 }
10376 }
10377
10378 return true;
10379}
10380
79e53945
JB
10381/* VESA 640x480x72Hz mode to set on the pipe */
10382static struct drm_display_mode load_detect_mode = {
10383 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
10384 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
10385};
10386
a8bb6818
DV
10387struct drm_framebuffer *
10388__intel_framebuffer_create(struct drm_device *dev,
10389 struct drm_mode_fb_cmd2 *mode_cmd,
10390 struct drm_i915_gem_object *obj)
d2dff872
CW
10391{
10392 struct intel_framebuffer *intel_fb;
10393 int ret;
10394
10395 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
dcb1394e 10396 if (!intel_fb)
d2dff872 10397 return ERR_PTR(-ENOMEM);
d2dff872
CW
10398
10399 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
dd4916c5
DV
10400 if (ret)
10401 goto err;
d2dff872
CW
10402
10403 return &intel_fb->base;
dcb1394e 10404
dd4916c5 10405err:
dd4916c5 10406 kfree(intel_fb);
dd4916c5 10407 return ERR_PTR(ret);
d2dff872
CW
10408}
10409
b5ea642a 10410static struct drm_framebuffer *
a8bb6818
DV
10411intel_framebuffer_create(struct drm_device *dev,
10412 struct drm_mode_fb_cmd2 *mode_cmd,
10413 struct drm_i915_gem_object *obj)
10414{
10415 struct drm_framebuffer *fb;
10416 int ret;
10417
10418 ret = i915_mutex_lock_interruptible(dev);
10419 if (ret)
10420 return ERR_PTR(ret);
10421 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
10422 mutex_unlock(&dev->struct_mutex);
10423
10424 return fb;
10425}
10426
d2dff872
CW
10427static u32
10428intel_framebuffer_pitch_for_width(int width, int bpp)
10429{
10430 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
10431 return ALIGN(pitch, 64);
10432}
10433
10434static u32
10435intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
10436{
10437 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
1267a26b 10438 return PAGE_ALIGN(pitch * mode->vdisplay);
d2dff872
CW
10439}
10440
10441static struct drm_framebuffer *
10442intel_framebuffer_create_for_mode(struct drm_device *dev,
10443 struct drm_display_mode *mode,
10444 int depth, int bpp)
10445{
dcb1394e 10446 struct drm_framebuffer *fb;
d2dff872 10447 struct drm_i915_gem_object *obj;
0fed39bd 10448 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
d2dff872 10449
d37cd8a8 10450 obj = i915_gem_object_create(dev,
d2dff872 10451 intel_framebuffer_size_for_mode(mode, bpp));
fe3db79b
CW
10452 if (IS_ERR(obj))
10453 return ERR_CAST(obj);
d2dff872
CW
10454
10455 mode_cmd.width = mode->hdisplay;
10456 mode_cmd.height = mode->vdisplay;
308e5bcb
JB
10457 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
10458 bpp);
5ca0c34a 10459 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
d2dff872 10460
dcb1394e
LW
10461 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
10462 if (IS_ERR(fb))
10463 drm_gem_object_unreference_unlocked(&obj->base);
10464
10465 return fb;
d2dff872
CW
10466}
10467
10468static struct drm_framebuffer *
10469mode_fits_in_fbdev(struct drm_device *dev,
10470 struct drm_display_mode *mode)
10471{
0695726e 10472#ifdef CONFIG_DRM_FBDEV_EMULATION
fac5e23e 10473 struct drm_i915_private *dev_priv = to_i915(dev);
d2dff872
CW
10474 struct drm_i915_gem_object *obj;
10475 struct drm_framebuffer *fb;
10476
4c0e5528 10477 if (!dev_priv->fbdev)
d2dff872
CW
10478 return NULL;
10479
4c0e5528 10480 if (!dev_priv->fbdev->fb)
d2dff872
CW
10481 return NULL;
10482
4c0e5528
DV
10483 obj = dev_priv->fbdev->fb->obj;
10484 BUG_ON(!obj);
10485
8bcd4553 10486 fb = &dev_priv->fbdev->fb->base;
01f2c773
VS
10487 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
10488 fb->bits_per_pixel))
d2dff872
CW
10489 return NULL;
10490
01f2c773 10491 if (obj->base.size < mode->vdisplay * fb->pitches[0])
d2dff872
CW
10492 return NULL;
10493
edde3617 10494 drm_framebuffer_reference(fb);
d2dff872 10495 return fb;
4520f53a
DV
10496#else
10497 return NULL;
10498#endif
d2dff872
CW
10499}
10500
d3a40d1b
ACO
10501static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
10502 struct drm_crtc *crtc,
10503 struct drm_display_mode *mode,
10504 struct drm_framebuffer *fb,
10505 int x, int y)
10506{
10507 struct drm_plane_state *plane_state;
10508 int hdisplay, vdisplay;
10509 int ret;
10510
10511 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
10512 if (IS_ERR(plane_state))
10513 return PTR_ERR(plane_state);
10514
10515 if (mode)
10516 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
10517 else
10518 hdisplay = vdisplay = 0;
10519
10520 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
10521 if (ret)
10522 return ret;
10523 drm_atomic_set_fb_for_plane(plane_state, fb);
10524 plane_state->crtc_x = 0;
10525 plane_state->crtc_y = 0;
10526 plane_state->crtc_w = hdisplay;
10527 plane_state->crtc_h = vdisplay;
10528 plane_state->src_x = x << 16;
10529 plane_state->src_y = y << 16;
10530 plane_state->src_w = hdisplay << 16;
10531 plane_state->src_h = vdisplay << 16;
10532
10533 return 0;
10534}
10535
d2434ab7 10536bool intel_get_load_detect_pipe(struct drm_connector *connector,
7173188d 10537 struct drm_display_mode *mode,
51fd371b
RC
10538 struct intel_load_detect_pipe *old,
10539 struct drm_modeset_acquire_ctx *ctx)
79e53945
JB
10540{
10541 struct intel_crtc *intel_crtc;
d2434ab7
DV
10542 struct intel_encoder *intel_encoder =
10543 intel_attached_encoder(connector);
79e53945 10544 struct drm_crtc *possible_crtc;
4ef69c7a 10545 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
10546 struct drm_crtc *crtc = NULL;
10547 struct drm_device *dev = encoder->dev;
94352cf9 10548 struct drm_framebuffer *fb;
51fd371b 10549 struct drm_mode_config *config = &dev->mode_config;
edde3617 10550 struct drm_atomic_state *state = NULL, *restore_state = NULL;
944b0c76 10551 struct drm_connector_state *connector_state;
4be07317 10552 struct intel_crtc_state *crtc_state;
51fd371b 10553 int ret, i = -1;
79e53945 10554
d2dff872 10555 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 10556 connector->base.id, connector->name,
8e329a03 10557 encoder->base.id, encoder->name);
d2dff872 10558
edde3617
ML
10559 old->restore_state = NULL;
10560
51fd371b
RC
10561retry:
10562 ret = drm_modeset_lock(&config->connection_mutex, ctx);
10563 if (ret)
ad3c558f 10564 goto fail;
6e9f798d 10565
79e53945
JB
10566 /*
10567 * Algorithm gets a little messy:
7a5e4805 10568 *
79e53945
JB
10569 * - if the connector already has an assigned crtc, use it (but make
10570 * sure it's on first)
7a5e4805 10571 *
79e53945
JB
10572 * - try to find the first unused crtc that can drive this connector,
10573 * and use that if we find one
79e53945
JB
10574 */
10575
10576 /* See if we already have a CRTC for this connector */
edde3617
ML
10577 if (connector->state->crtc) {
10578 crtc = connector->state->crtc;
8261b191 10579
51fd371b 10580 ret = drm_modeset_lock(&crtc->mutex, ctx);
4d02e2de 10581 if (ret)
ad3c558f 10582 goto fail;
8261b191
CW
10583
10584 /* Make sure the crtc and connector are running */
edde3617 10585 goto found;
79e53945
JB
10586 }
10587
10588 /* Find an unused one (if possible) */
70e1e0ec 10589 for_each_crtc(dev, possible_crtc) {
79e53945
JB
10590 i++;
10591 if (!(encoder->possible_crtcs & (1 << i)))
10592 continue;
edde3617
ML
10593
10594 ret = drm_modeset_lock(&possible_crtc->mutex, ctx);
10595 if (ret)
10596 goto fail;
10597
10598 if (possible_crtc->state->enable) {
10599 drm_modeset_unlock(&possible_crtc->mutex);
a459249c 10600 continue;
edde3617 10601 }
a459249c
VS
10602
10603 crtc = possible_crtc;
10604 break;
79e53945
JB
10605 }
10606
10607 /*
10608 * If we didn't find an unused CRTC, don't use any.
10609 */
10610 if (!crtc) {
7173188d 10611 DRM_DEBUG_KMS("no pipe available for load-detect\n");
ad3c558f 10612 goto fail;
79e53945
JB
10613 }
10614
edde3617
ML
10615found:
10616 intel_crtc = to_intel_crtc(crtc);
10617
4d02e2de
DV
10618 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10619 if (ret)
ad3c558f 10620 goto fail;
79e53945 10621
83a57153 10622 state = drm_atomic_state_alloc(dev);
edde3617
ML
10623 restore_state = drm_atomic_state_alloc(dev);
10624 if (!state || !restore_state) {
10625 ret = -ENOMEM;
10626 goto fail;
10627 }
83a57153
ACO
10628
10629 state->acquire_ctx = ctx;
edde3617 10630 restore_state->acquire_ctx = ctx;
83a57153 10631
944b0c76
ACO
10632 connector_state = drm_atomic_get_connector_state(state, connector);
10633 if (IS_ERR(connector_state)) {
10634 ret = PTR_ERR(connector_state);
10635 goto fail;
10636 }
10637
edde3617
ML
10638 ret = drm_atomic_set_crtc_for_connector(connector_state, crtc);
10639 if (ret)
10640 goto fail;
944b0c76 10641
4be07317
ACO
10642 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10643 if (IS_ERR(crtc_state)) {
10644 ret = PTR_ERR(crtc_state);
10645 goto fail;
10646 }
10647
49d6fa21 10648 crtc_state->base.active = crtc_state->base.enable = true;
4be07317 10649
6492711d
CW
10650 if (!mode)
10651 mode = &load_detect_mode;
79e53945 10652
d2dff872
CW
10653 /* We need a framebuffer large enough to accommodate all accesses
10654 * that the plane may generate whilst we perform load detection.
10655 * We can not rely on the fbcon either being present (we get called
10656 * during its initialisation to detect all boot displays, or it may
10657 * not even exist) or that it is large enough to satisfy the
10658 * requested mode.
10659 */
94352cf9
DV
10660 fb = mode_fits_in_fbdev(dev, mode);
10661 if (fb == NULL) {
d2dff872 10662 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
94352cf9 10663 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
d2dff872
CW
10664 } else
10665 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
94352cf9 10666 if (IS_ERR(fb)) {
d2dff872 10667 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
412b61d8 10668 goto fail;
79e53945 10669 }
79e53945 10670
d3a40d1b
ACO
10671 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
10672 if (ret)
10673 goto fail;
10674
edde3617
ML
10675 drm_framebuffer_unreference(fb);
10676
10677 ret = drm_atomic_set_mode_for_crtc(&crtc_state->base, mode);
10678 if (ret)
10679 goto fail;
10680
10681 ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(restore_state, connector));
10682 if (!ret)
10683 ret = PTR_ERR_OR_ZERO(drm_atomic_get_crtc_state(restore_state, crtc));
10684 if (!ret)
10685 ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(restore_state, crtc->primary));
10686 if (ret) {
10687 DRM_DEBUG_KMS("Failed to create a copy of old state to restore: %i\n", ret);
10688 goto fail;
10689 }
8c7b5ccb 10690
3ba86073
ML
10691 ret = drm_atomic_commit(state);
10692 if (ret) {
6492711d 10693 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
412b61d8 10694 goto fail;
79e53945 10695 }
edde3617
ML
10696
10697 old->restore_state = restore_state;
7173188d 10698
79e53945 10699 /* let the connector get through one full cycle before testing */
9d0498a2 10700 intel_wait_for_vblank(dev, intel_crtc->pipe);
7173188d 10701 return true;
412b61d8 10702
ad3c558f 10703fail:
e5d958ef 10704 drm_atomic_state_free(state);
edde3617
ML
10705 drm_atomic_state_free(restore_state);
10706 restore_state = state = NULL;
83a57153 10707
51fd371b
RC
10708 if (ret == -EDEADLK) {
10709 drm_modeset_backoff(ctx);
10710 goto retry;
10711 }
10712
412b61d8 10713 return false;
79e53945
JB
10714}
10715
d2434ab7 10716void intel_release_load_detect_pipe(struct drm_connector *connector,
49172fee
ACO
10717 struct intel_load_detect_pipe *old,
10718 struct drm_modeset_acquire_ctx *ctx)
79e53945 10719{
d2434ab7
DV
10720 struct intel_encoder *intel_encoder =
10721 intel_attached_encoder(connector);
4ef69c7a 10722 struct drm_encoder *encoder = &intel_encoder->base;
edde3617 10723 struct drm_atomic_state *state = old->restore_state;
d3a40d1b 10724 int ret;
79e53945 10725
d2dff872 10726 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 10727 connector->base.id, connector->name,
8e329a03 10728 encoder->base.id, encoder->name);
d2dff872 10729
edde3617 10730 if (!state)
0622a53c 10731 return;
79e53945 10732
edde3617
ML
10733 ret = drm_atomic_commit(state);
10734 if (ret) {
10735 DRM_DEBUG_KMS("Couldn't release load detect pipe: %i\n", ret);
10736 drm_atomic_state_free(state);
10737 }
79e53945
JB
10738}
10739
da4a1efa 10740static int i9xx_pll_refclk(struct drm_device *dev,
5cec258b 10741 const struct intel_crtc_state *pipe_config)
da4a1efa 10742{
fac5e23e 10743 struct drm_i915_private *dev_priv = to_i915(dev);
da4a1efa
VS
10744 u32 dpll = pipe_config->dpll_hw_state.dpll;
10745
10746 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
e91e941b 10747 return dev_priv->vbt.lvds_ssc_freq;
da4a1efa
VS
10748 else if (HAS_PCH_SPLIT(dev))
10749 return 120000;
10750 else if (!IS_GEN2(dev))
10751 return 96000;
10752 else
10753 return 48000;
10754}
10755
79e53945 10756/* Returns the clock of the currently programmed mode of the given pipe. */
f1f644dc 10757static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 10758 struct intel_crtc_state *pipe_config)
79e53945 10759{
f1f644dc 10760 struct drm_device *dev = crtc->base.dev;
fac5e23e 10761 struct drm_i915_private *dev_priv = to_i915(dev);
f1f644dc 10762 int pipe = pipe_config->cpu_transcoder;
293623f7 10763 u32 dpll = pipe_config->dpll_hw_state.dpll;
79e53945 10764 u32 fp;
9e2c8475 10765 struct dpll clock;
dccbea3b 10766 int port_clock;
da4a1efa 10767 int refclk = i9xx_pll_refclk(dev, pipe_config);
79e53945
JB
10768
10769 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
293623f7 10770 fp = pipe_config->dpll_hw_state.fp0;
79e53945 10771 else
293623f7 10772 fp = pipe_config->dpll_hw_state.fp1;
79e53945
JB
10773
10774 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
f2b115e6
AJ
10775 if (IS_PINEVIEW(dev)) {
10776 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
10777 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
2177832f
SL
10778 } else {
10779 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
10780 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
10781 }
10782
a6c45cf0 10783 if (!IS_GEN2(dev)) {
f2b115e6
AJ
10784 if (IS_PINEVIEW(dev))
10785 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
10786 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
2177832f
SL
10787 else
10788 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
79e53945
JB
10789 DPLL_FPA01_P1_POST_DIV_SHIFT);
10790
10791 switch (dpll & DPLL_MODE_MASK) {
10792 case DPLLB_MODE_DAC_SERIAL:
10793 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
10794 5 : 10;
10795 break;
10796 case DPLLB_MODE_LVDS:
10797 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
10798 7 : 14;
10799 break;
10800 default:
28c97730 10801 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
79e53945 10802 "mode\n", (int)(dpll & DPLL_MODE_MASK));
f1f644dc 10803 return;
79e53945
JB
10804 }
10805
ac58c3f0 10806 if (IS_PINEVIEW(dev))
dccbea3b 10807 port_clock = pnv_calc_dpll_params(refclk, &clock);
ac58c3f0 10808 else
dccbea3b 10809 port_clock = i9xx_calc_dpll_params(refclk, &clock);
79e53945 10810 } else {
0fb58223 10811 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
b1c560d1 10812 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
79e53945
JB
10813
10814 if (is_lvds) {
10815 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
10816 DPLL_FPA01_P1_POST_DIV_SHIFT);
b1c560d1
VS
10817
10818 if (lvds & LVDS_CLKB_POWER_UP)
10819 clock.p2 = 7;
10820 else
10821 clock.p2 = 14;
79e53945
JB
10822 } else {
10823 if (dpll & PLL_P1_DIVIDE_BY_TWO)
10824 clock.p1 = 2;
10825 else {
10826 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
10827 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
10828 }
10829 if (dpll & PLL_P2_DIVIDE_BY_4)
10830 clock.p2 = 4;
10831 else
10832 clock.p2 = 2;
79e53945 10833 }
da4a1efa 10834
dccbea3b 10835 port_clock = i9xx_calc_dpll_params(refclk, &clock);
79e53945
JB
10836 }
10837
18442d08
VS
10838 /*
10839 * This value includes pixel_multiplier. We will use
241bfc38 10840 * port_clock to compute adjusted_mode.crtc_clock in the
18442d08
VS
10841 * encoder's get_config() function.
10842 */
dccbea3b 10843 pipe_config->port_clock = port_clock;
f1f644dc
JB
10844}
10845
6878da05
VS
10846int intel_dotclock_calculate(int link_freq,
10847 const struct intel_link_m_n *m_n)
f1f644dc 10848{
f1f644dc
JB
10849 /*
10850 * The calculation for the data clock is:
1041a02f 10851 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
f1f644dc 10852 * But we want to avoid losing precison if possible, so:
1041a02f 10853 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
f1f644dc
JB
10854 *
10855 * and the link clock is simpler:
1041a02f 10856 * link_clock = (m * link_clock) / n
f1f644dc
JB
10857 */
10858
6878da05
VS
10859 if (!m_n->link_n)
10860 return 0;
f1f644dc 10861
6878da05
VS
10862 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
10863}
f1f644dc 10864
18442d08 10865static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 10866 struct intel_crtc_state *pipe_config)
6878da05 10867{
e3b247da 10868 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
79e53945 10869
18442d08
VS
10870 /* read out port_clock from the DPLL */
10871 i9xx_crtc_clock_get(crtc, pipe_config);
f1f644dc 10872
f1f644dc 10873 /*
e3b247da
VS
10874 * In case there is an active pipe without active ports,
10875 * we may need some idea for the dotclock anyway.
10876 * Calculate one based on the FDI configuration.
79e53945 10877 */
2d112de7 10878 pipe_config->base.adjusted_mode.crtc_clock =
21a727b3 10879 intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config),
18442d08 10880 &pipe_config->fdi_m_n);
79e53945
JB
10881}
10882
10883/** Returns the currently programmed mode of the given pipe. */
10884struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
10885 struct drm_crtc *crtc)
10886{
fac5e23e 10887 struct drm_i915_private *dev_priv = to_i915(dev);
79e53945 10888 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 10889 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
79e53945 10890 struct drm_display_mode *mode;
3f36b937 10891 struct intel_crtc_state *pipe_config;
fe2b8f9d
PZ
10892 int htot = I915_READ(HTOTAL(cpu_transcoder));
10893 int hsync = I915_READ(HSYNC(cpu_transcoder));
10894 int vtot = I915_READ(VTOTAL(cpu_transcoder));
10895 int vsync = I915_READ(VSYNC(cpu_transcoder));
293623f7 10896 enum pipe pipe = intel_crtc->pipe;
79e53945
JB
10897
10898 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
10899 if (!mode)
10900 return NULL;
10901
3f36b937
TU
10902 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
10903 if (!pipe_config) {
10904 kfree(mode);
10905 return NULL;
10906 }
10907
f1f644dc
JB
10908 /*
10909 * Construct a pipe_config sufficient for getting the clock info
10910 * back out of crtc_clock_get.
10911 *
10912 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
10913 * to use a real value here instead.
10914 */
3f36b937
TU
10915 pipe_config->cpu_transcoder = (enum transcoder) pipe;
10916 pipe_config->pixel_multiplier = 1;
10917 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(pipe));
10918 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(pipe));
10919 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(pipe));
10920 i9xx_crtc_clock_get(intel_crtc, pipe_config);
10921
10922 mode->clock = pipe_config->port_clock / pipe_config->pixel_multiplier;
79e53945
JB
10923 mode->hdisplay = (htot & 0xffff) + 1;
10924 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
10925 mode->hsync_start = (hsync & 0xffff) + 1;
10926 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
10927 mode->vdisplay = (vtot & 0xffff) + 1;
10928 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
10929 mode->vsync_start = (vsync & 0xffff) + 1;
10930 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
10931
10932 drm_mode_set_name(mode);
79e53945 10933
3f36b937
TU
10934 kfree(pipe_config);
10935
79e53945
JB
10936 return mode;
10937}
10938
10939static void intel_crtc_destroy(struct drm_crtc *crtc)
10940{
10941 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
67e77c5a 10942 struct drm_device *dev = crtc->dev;
51cbaf01 10943 struct intel_flip_work *work;
67e77c5a 10944
5e2d7afc 10945 spin_lock_irq(&dev->event_lock);
5a21b665
DV
10946 work = intel_crtc->flip_work;
10947 intel_crtc->flip_work = NULL;
10948 spin_unlock_irq(&dev->event_lock);
67e77c5a 10949
5a21b665 10950 if (work) {
51cbaf01
ML
10951 cancel_work_sync(&work->mmio_work);
10952 cancel_work_sync(&work->unpin_work);
5a21b665 10953 kfree(work);
67e77c5a 10954 }
79e53945
JB
10955
10956 drm_crtc_cleanup(crtc);
67e77c5a 10957
79e53945
JB
10958 kfree(intel_crtc);
10959}
10960
6b95a207
KH
10961static void intel_unpin_work_fn(struct work_struct *__work)
10962{
51cbaf01
ML
10963 struct intel_flip_work *work =
10964 container_of(__work, struct intel_flip_work, unpin_work);
5a21b665
DV
10965 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
10966 struct drm_device *dev = crtc->base.dev;
10967 struct drm_plane *primary = crtc->base.primary;
03f476e1 10968
5a21b665
DV
10969 if (is_mmio_work(work))
10970 flush_work(&work->mmio_work);
03f476e1 10971
5a21b665
DV
10972 mutex_lock(&dev->struct_mutex);
10973 intel_unpin_fb_obj(work->old_fb, primary->state->rotation);
10974 drm_gem_object_unreference(&work->pending_flip_obj->base);
143f73b3 10975
5a21b665
DV
10976 if (work->flip_queued_req)
10977 i915_gem_request_assign(&work->flip_queued_req, NULL);
10978 mutex_unlock(&dev->struct_mutex);
143f73b3 10979
5a21b665
DV
10980 intel_frontbuffer_flip_complete(dev, to_intel_plane(primary)->frontbuffer_bit);
10981 intel_fbc_post_update(crtc);
10982 drm_framebuffer_unreference(work->old_fb);
143f73b3 10983
5a21b665
DV
10984 BUG_ON(atomic_read(&crtc->unpin_work_count) == 0);
10985 atomic_dec(&crtc->unpin_work_count);
a6747b73 10986
5a21b665
DV
10987 kfree(work);
10988}
d9e86c0e 10989
5a21b665
DV
10990/* Is 'a' after or equal to 'b'? */
10991static bool g4x_flip_count_after_eq(u32 a, u32 b)
10992{
10993 return !((a - b) & 0x80000000);
10994}
143f73b3 10995
5a21b665
DV
10996static bool __pageflip_finished_cs(struct intel_crtc *crtc,
10997 struct intel_flip_work *work)
10998{
10999 struct drm_device *dev = crtc->base.dev;
fac5e23e 11000 struct drm_i915_private *dev_priv = to_i915(dev);
5a21b665 11001 unsigned reset_counter;
143f73b3 11002
5a21b665
DV
11003 reset_counter = i915_reset_counter(&dev_priv->gpu_error);
11004 if (crtc->reset_counter != reset_counter)
11005 return true;
143f73b3 11006
5a21b665
DV
11007 /*
11008 * The relevant registers doen't exist on pre-ctg.
11009 * As the flip done interrupt doesn't trigger for mmio
11010 * flips on gmch platforms, a flip count check isn't
11011 * really needed there. But since ctg has the registers,
11012 * include it in the check anyway.
11013 */
11014 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
11015 return true;
b4a98e57 11016
5a21b665
DV
11017 /*
11018 * BDW signals flip done immediately if the plane
11019 * is disabled, even if the plane enable is already
11020 * armed to occur at the next vblank :(
11021 */
f99d7069 11022
5a21b665
DV
11023 /*
11024 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
11025 * used the same base address. In that case the mmio flip might
11026 * have completed, but the CS hasn't even executed the flip yet.
11027 *
11028 * A flip count check isn't enough as the CS might have updated
11029 * the base address just after start of vblank, but before we
11030 * managed to process the interrupt. This means we'd complete the
11031 * CS flip too soon.
11032 *
11033 * Combining both checks should get us a good enough result. It may
11034 * still happen that the CS flip has been executed, but has not
11035 * yet actually completed. But in case the base address is the same
11036 * anyway, we don't really care.
11037 */
11038 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
11039 crtc->flip_work->gtt_offset &&
11040 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_G4X(crtc->pipe)),
11041 crtc->flip_work->flip_count);
11042}
b4a98e57 11043
5a21b665
DV
11044static bool
11045__pageflip_finished_mmio(struct intel_crtc *crtc,
11046 struct intel_flip_work *work)
11047{
11048 /*
11049 * MMIO work completes when vblank is different from
11050 * flip_queued_vblank.
11051 *
11052 * Reset counter value doesn't matter, this is handled by
11053 * i915_wait_request finishing early, so no need to handle
11054 * reset here.
11055 */
11056 return intel_crtc_get_vblank_counter(crtc) != work->flip_queued_vblank;
6b95a207
KH
11057}
11058
51cbaf01
ML
11059
11060static bool pageflip_finished(struct intel_crtc *crtc,
11061 struct intel_flip_work *work)
11062{
11063 if (!atomic_read(&work->pending))
11064 return false;
11065
11066 smp_rmb();
11067
5a21b665
DV
11068 if (is_mmio_work(work))
11069 return __pageflip_finished_mmio(crtc, work);
11070 else
11071 return __pageflip_finished_cs(crtc, work);
11072}
11073
11074void intel_finish_page_flip_cs(struct drm_i915_private *dev_priv, int pipe)
11075{
91c8a326 11076 struct drm_device *dev = &dev_priv->drm;
5a21b665
DV
11077 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11078 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11079 struct intel_flip_work *work;
11080 unsigned long flags;
11081
11082 /* Ignore early vblank irqs */
11083 if (!crtc)
11084 return;
11085
51cbaf01 11086 /*
5a21b665
DV
11087 * This is called both by irq handlers and the reset code (to complete
11088 * lost pageflips) so needs the full irqsave spinlocks.
51cbaf01 11089 */
5a21b665
DV
11090 spin_lock_irqsave(&dev->event_lock, flags);
11091 work = intel_crtc->flip_work;
11092
11093 if (work != NULL &&
11094 !is_mmio_work(work) &&
11095 pageflip_finished(intel_crtc, work))
11096 page_flip_completed(intel_crtc);
11097
11098 spin_unlock_irqrestore(&dev->event_lock, flags);
75f7f3ec
VS
11099}
11100
51cbaf01 11101void intel_finish_page_flip_mmio(struct drm_i915_private *dev_priv, int pipe)
6b95a207 11102{
91c8a326 11103 struct drm_device *dev = &dev_priv->drm;
5251f04e
ML
11104 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11105 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
51cbaf01 11106 struct intel_flip_work *work;
6b95a207
KH
11107 unsigned long flags;
11108
5251f04e
ML
11109 /* Ignore early vblank irqs */
11110 if (!crtc)
11111 return;
f326038a
DV
11112
11113 /*
11114 * This is called both by irq handlers and the reset code (to complete
11115 * lost pageflips) so needs the full irqsave spinlocks.
e7d841ca 11116 */
6b95a207 11117 spin_lock_irqsave(&dev->event_lock, flags);
5a21b665 11118 work = intel_crtc->flip_work;
5251f04e 11119
5a21b665
DV
11120 if (work != NULL &&
11121 is_mmio_work(work) &&
11122 pageflip_finished(intel_crtc, work))
11123 page_flip_completed(intel_crtc);
5251f04e 11124
6b95a207
KH
11125 spin_unlock_irqrestore(&dev->event_lock, flags);
11126}
11127
5a21b665
DV
11128static inline void intel_mark_page_flip_active(struct intel_crtc *crtc,
11129 struct intel_flip_work *work)
84c33a64 11130{
5a21b665 11131 work->flip_queued_vblank = intel_crtc_get_vblank_counter(crtc);
84c33a64 11132
5a21b665
DV
11133 /* Ensure that the work item is consistent when activating it ... */
11134 smp_mb__before_atomic();
11135 atomic_set(&work->pending, 1);
11136}
a6747b73 11137
5a21b665
DV
11138static int intel_gen2_queue_flip(struct drm_device *dev,
11139 struct drm_crtc *crtc,
11140 struct drm_framebuffer *fb,
11141 struct drm_i915_gem_object *obj,
11142 struct drm_i915_gem_request *req,
11143 uint32_t flags)
11144{
11145 struct intel_engine_cs *engine = req->engine;
11146 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11147 u32 flip_mask;
11148 int ret;
143f73b3 11149
5a21b665
DV
11150 ret = intel_ring_begin(req, 6);
11151 if (ret)
11152 return ret;
143f73b3 11153
5a21b665
DV
11154 /* Can't queue multiple flips, so wait for the previous
11155 * one to finish before executing the next.
11156 */
11157 if (intel_crtc->plane)
11158 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11159 else
11160 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
11161 intel_ring_emit(engine, MI_WAIT_FOR_EVENT | flip_mask);
11162 intel_ring_emit(engine, MI_NOOP);
11163 intel_ring_emit(engine, MI_DISPLAY_FLIP |
11164 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11165 intel_ring_emit(engine, fb->pitches[0]);
11166 intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset);
11167 intel_ring_emit(engine, 0); /* aux display base address, unused */
143f73b3 11168
5a21b665
DV
11169 return 0;
11170}
84c33a64 11171
5a21b665
DV
11172static int intel_gen3_queue_flip(struct drm_device *dev,
11173 struct drm_crtc *crtc,
11174 struct drm_framebuffer *fb,
11175 struct drm_i915_gem_object *obj,
11176 struct drm_i915_gem_request *req,
11177 uint32_t flags)
11178{
11179 struct intel_engine_cs *engine = req->engine;
11180 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11181 u32 flip_mask;
11182 int ret;
d55dbd06 11183
5a21b665
DV
11184 ret = intel_ring_begin(req, 6);
11185 if (ret)
11186 return ret;
d55dbd06 11187
5a21b665
DV
11188 if (intel_crtc->plane)
11189 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11190 else
11191 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
11192 intel_ring_emit(engine, MI_WAIT_FOR_EVENT | flip_mask);
11193 intel_ring_emit(engine, MI_NOOP);
11194 intel_ring_emit(engine, MI_DISPLAY_FLIP_I915 |
11195 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11196 intel_ring_emit(engine, fb->pitches[0]);
11197 intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset);
11198 intel_ring_emit(engine, MI_NOOP);
fd8e058a 11199
5a21b665
DV
11200 return 0;
11201}
84c33a64 11202
5a21b665
DV
11203static int intel_gen4_queue_flip(struct drm_device *dev,
11204 struct drm_crtc *crtc,
11205 struct drm_framebuffer *fb,
11206 struct drm_i915_gem_object *obj,
11207 struct drm_i915_gem_request *req,
11208 uint32_t flags)
11209{
11210 struct intel_engine_cs *engine = req->engine;
fac5e23e 11211 struct drm_i915_private *dev_priv = to_i915(dev);
5a21b665
DV
11212 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11213 uint32_t pf, pipesrc;
11214 int ret;
143f73b3 11215
5a21b665
DV
11216 ret = intel_ring_begin(req, 4);
11217 if (ret)
11218 return ret;
143f73b3 11219
5a21b665
DV
11220 /* i965+ uses the linear or tiled offsets from the
11221 * Display Registers (which do not change across a page-flip)
11222 * so we need only reprogram the base address.
11223 */
11224 intel_ring_emit(engine, MI_DISPLAY_FLIP |
11225 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11226 intel_ring_emit(engine, fb->pitches[0]);
11227 intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset |
11228 obj->tiling_mode);
11229
11230 /* XXX Enabling the panel-fitter across page-flip is so far
11231 * untested on non-native modes, so ignore it for now.
11232 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
11233 */
11234 pf = 0;
11235 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
11236 intel_ring_emit(engine, pf | pipesrc);
143f73b3 11237
5a21b665 11238 return 0;
8c9f3aaf
JB
11239}
11240
5a21b665
DV
11241static int intel_gen6_queue_flip(struct drm_device *dev,
11242 struct drm_crtc *crtc,
11243 struct drm_framebuffer *fb,
11244 struct drm_i915_gem_object *obj,
11245 struct drm_i915_gem_request *req,
11246 uint32_t flags)
da20eabd 11247{
5a21b665 11248 struct intel_engine_cs *engine = req->engine;
fac5e23e 11249 struct drm_i915_private *dev_priv = to_i915(dev);
5a21b665
DV
11250 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11251 uint32_t pf, pipesrc;
11252 int ret;
d21fbe87 11253
5a21b665
DV
11254 ret = intel_ring_begin(req, 4);
11255 if (ret)
11256 return ret;
92826fcd 11257
5a21b665
DV
11258 intel_ring_emit(engine, MI_DISPLAY_FLIP |
11259 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11260 intel_ring_emit(engine, fb->pitches[0] | obj->tiling_mode);
11261 intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset);
92826fcd 11262
5a21b665
DV
11263 /* Contrary to the suggestions in the documentation,
11264 * "Enable Panel Fitter" does not seem to be required when page
11265 * flipping with a non-native mode, and worse causes a normal
11266 * modeset to fail.
11267 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
11268 */
11269 pf = 0;
11270 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
11271 intel_ring_emit(engine, pf | pipesrc);
7809e5ae 11272
5a21b665 11273 return 0;
7809e5ae
MR
11274}
11275
5a21b665
DV
11276static int intel_gen7_queue_flip(struct drm_device *dev,
11277 struct drm_crtc *crtc,
11278 struct drm_framebuffer *fb,
11279 struct drm_i915_gem_object *obj,
11280 struct drm_i915_gem_request *req,
11281 uint32_t flags)
d21fbe87 11282{
5a21b665
DV
11283 struct intel_engine_cs *engine = req->engine;
11284 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11285 uint32_t plane_bit = 0;
11286 int len, ret;
d21fbe87 11287
5a21b665
DV
11288 switch (intel_crtc->plane) {
11289 case PLANE_A:
11290 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
11291 break;
11292 case PLANE_B:
11293 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
11294 break;
11295 case PLANE_C:
11296 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
11297 break;
11298 default:
11299 WARN_ONCE(1, "unknown plane in flip command\n");
11300 return -ENODEV;
11301 }
11302
11303 len = 4;
11304 if (engine->id == RCS) {
11305 len += 6;
11306 /*
11307 * On Gen 8, SRM is now taking an extra dword to accommodate
11308 * 48bits addresses, and we need a NOOP for the batch size to
11309 * stay even.
11310 */
11311 if (IS_GEN8(dev))
11312 len += 2;
11313 }
11314
11315 /*
11316 * BSpec MI_DISPLAY_FLIP for IVB:
11317 * "The full packet must be contained within the same cache line."
11318 *
11319 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
11320 * cacheline, if we ever start emitting more commands before
11321 * the MI_DISPLAY_FLIP we may need to first emit everything else,
11322 * then do the cacheline alignment, and finally emit the
11323 * MI_DISPLAY_FLIP.
11324 */
11325 ret = intel_ring_cacheline_align(req);
11326 if (ret)
11327 return ret;
11328
11329 ret = intel_ring_begin(req, len);
11330 if (ret)
11331 return ret;
11332
11333 /* Unmask the flip-done completion message. Note that the bspec says that
11334 * we should do this for both the BCS and RCS, and that we must not unmask
11335 * more than one flip event at any time (or ensure that one flip message
11336 * can be sent by waiting for flip-done prior to queueing new flips).
11337 * Experimentation says that BCS works despite DERRMR masking all
11338 * flip-done completion events and that unmasking all planes at once
11339 * for the RCS also doesn't appear to drop events. Setting the DERRMR
11340 * to zero does lead to lockups within MI_DISPLAY_FLIP.
11341 */
11342 if (engine->id == RCS) {
11343 intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(1));
11344 intel_ring_emit_reg(engine, DERRMR);
11345 intel_ring_emit(engine, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
11346 DERRMR_PIPEB_PRI_FLIP_DONE |
11347 DERRMR_PIPEC_PRI_FLIP_DONE));
11348 if (IS_GEN8(dev))
11349 intel_ring_emit(engine, MI_STORE_REGISTER_MEM_GEN8 |
11350 MI_SRM_LRM_GLOBAL_GTT);
11351 else
11352 intel_ring_emit(engine, MI_STORE_REGISTER_MEM |
11353 MI_SRM_LRM_GLOBAL_GTT);
11354 intel_ring_emit_reg(engine, DERRMR);
11355 intel_ring_emit(engine, engine->scratch.gtt_offset + 256);
11356 if (IS_GEN8(dev)) {
11357 intel_ring_emit(engine, 0);
11358 intel_ring_emit(engine, MI_NOOP);
11359 }
11360 }
11361
11362 intel_ring_emit(engine, MI_DISPLAY_FLIP_I915 | plane_bit);
11363 intel_ring_emit(engine, (fb->pitches[0] | obj->tiling_mode));
11364 intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset);
11365 intel_ring_emit(engine, (MI_NOOP));
11366
11367 return 0;
11368}
11369
11370static bool use_mmio_flip(struct intel_engine_cs *engine,
11371 struct drm_i915_gem_object *obj)
11372{
c37efb99
CW
11373 struct reservation_object *resv;
11374
5a21b665
DV
11375 /*
11376 * This is not being used for older platforms, because
11377 * non-availability of flip done interrupt forces us to use
11378 * CS flips. Older platforms derive flip done using some clever
11379 * tricks involving the flip_pending status bits and vblank irqs.
11380 * So using MMIO flips there would disrupt this mechanism.
11381 */
11382
11383 if (engine == NULL)
11384 return true;
11385
11386 if (INTEL_GEN(engine->i915) < 5)
11387 return false;
11388
11389 if (i915.use_mmio_flip < 0)
11390 return false;
11391 else if (i915.use_mmio_flip > 0)
11392 return true;
11393 else if (i915.enable_execlists)
11394 return true;
c37efb99
CW
11395
11396 resv = i915_gem_object_get_dmabuf_resv(obj);
11397 if (resv && !reservation_object_test_signaled_rcu(resv, false))
5a21b665 11398 return true;
c37efb99
CW
11399
11400 return engine != i915_gem_request_get_engine(obj->last_write_req);
5a21b665
DV
11401}
11402
11403static void skl_do_mmio_flip(struct intel_crtc *intel_crtc,
11404 unsigned int rotation,
11405 struct intel_flip_work *work)
11406{
11407 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 11408 struct drm_i915_private *dev_priv = to_i915(dev);
5a21b665
DV
11409 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
11410 const enum pipe pipe = intel_crtc->pipe;
11411 u32 ctl, stride, tile_height;
11412
11413 ctl = I915_READ(PLANE_CTL(pipe, 0));
11414 ctl &= ~PLANE_CTL_TILED_MASK;
11415 switch (fb->modifier[0]) {
11416 case DRM_FORMAT_MOD_NONE:
11417 break;
11418 case I915_FORMAT_MOD_X_TILED:
11419 ctl |= PLANE_CTL_TILED_X;
11420 break;
11421 case I915_FORMAT_MOD_Y_TILED:
11422 ctl |= PLANE_CTL_TILED_Y;
11423 break;
11424 case I915_FORMAT_MOD_Yf_TILED:
11425 ctl |= PLANE_CTL_TILED_YF;
11426 break;
11427 default:
11428 MISSING_CASE(fb->modifier[0]);
11429 }
11430
11431 /*
11432 * The stride is either expressed as a multiple of 64 bytes chunks for
11433 * linear buffers or in number of tiles for tiled buffers.
11434 */
11435 if (intel_rotation_90_or_270(rotation)) {
11436 /* stride = Surface height in tiles */
11437 tile_height = intel_tile_height(dev_priv, fb->modifier[0], 0);
11438 stride = DIV_ROUND_UP(fb->height, tile_height);
11439 } else {
11440 stride = fb->pitches[0] /
11441 intel_fb_stride_alignment(dev_priv, fb->modifier[0],
11442 fb->pixel_format);
11443 }
11444
11445 /*
11446 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
11447 * PLANE_SURF updates, the update is then guaranteed to be atomic.
11448 */
11449 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
11450 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
11451
11452 I915_WRITE(PLANE_SURF(pipe, 0), work->gtt_offset);
11453 POSTING_READ(PLANE_SURF(pipe, 0));
11454}
11455
11456static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc,
11457 struct intel_flip_work *work)
11458{
11459 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 11460 struct drm_i915_private *dev_priv = to_i915(dev);
5a21b665
DV
11461 struct intel_framebuffer *intel_fb =
11462 to_intel_framebuffer(intel_crtc->base.primary->fb);
11463 struct drm_i915_gem_object *obj = intel_fb->obj;
11464 i915_reg_t reg = DSPCNTR(intel_crtc->plane);
11465 u32 dspcntr;
11466
11467 dspcntr = I915_READ(reg);
11468
11469 if (obj->tiling_mode != I915_TILING_NONE)
11470 dspcntr |= DISPPLANE_TILED;
11471 else
11472 dspcntr &= ~DISPPLANE_TILED;
11473
11474 I915_WRITE(reg, dspcntr);
11475
11476 I915_WRITE(DSPSURF(intel_crtc->plane), work->gtt_offset);
11477 POSTING_READ(DSPSURF(intel_crtc->plane));
11478}
11479
11480static void intel_mmio_flip_work_func(struct work_struct *w)
11481{
11482 struct intel_flip_work *work =
11483 container_of(w, struct intel_flip_work, mmio_work);
11484 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
11485 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
11486 struct intel_framebuffer *intel_fb =
11487 to_intel_framebuffer(crtc->base.primary->fb);
11488 struct drm_i915_gem_object *obj = intel_fb->obj;
c37efb99 11489 struct reservation_object *resv;
5a21b665
DV
11490
11491 if (work->flip_queued_req)
11492 WARN_ON(__i915_wait_request(work->flip_queued_req,
11493 false, NULL,
11494 &dev_priv->rps.mmioflips));
11495
11496 /* For framebuffer backed by dmabuf, wait for fence */
c37efb99
CW
11497 resv = i915_gem_object_get_dmabuf_resv(obj);
11498 if (resv)
11499 WARN_ON(reservation_object_wait_timeout_rcu(resv, false, false,
5a21b665
DV
11500 MAX_SCHEDULE_TIMEOUT) < 0);
11501
11502 intel_pipe_update_start(crtc);
11503
11504 if (INTEL_GEN(dev_priv) >= 9)
11505 skl_do_mmio_flip(crtc, work->rotation, work);
11506 else
11507 /* use_mmio_flip() retricts MMIO flips to ilk+ */
11508 ilk_do_mmio_flip(crtc, work);
11509
11510 intel_pipe_update_end(crtc, work);
11511}
11512
11513static int intel_default_queue_flip(struct drm_device *dev,
11514 struct drm_crtc *crtc,
11515 struct drm_framebuffer *fb,
11516 struct drm_i915_gem_object *obj,
11517 struct drm_i915_gem_request *req,
11518 uint32_t flags)
11519{
11520 return -ENODEV;
11521}
11522
11523static bool __pageflip_stall_check_cs(struct drm_i915_private *dev_priv,
11524 struct intel_crtc *intel_crtc,
11525 struct intel_flip_work *work)
11526{
11527 u32 addr, vblank;
11528
11529 if (!atomic_read(&work->pending))
11530 return false;
11531
11532 smp_rmb();
11533
11534 vblank = intel_crtc_get_vblank_counter(intel_crtc);
11535 if (work->flip_ready_vblank == 0) {
11536 if (work->flip_queued_req &&
f69a02c9 11537 !i915_gem_request_completed(work->flip_queued_req))
5a21b665
DV
11538 return false;
11539
11540 work->flip_ready_vblank = vblank;
11541 }
11542
11543 if (vblank - work->flip_ready_vblank < 3)
11544 return false;
11545
11546 /* Potential stall - if we see that the flip has happened,
11547 * assume a missed interrupt. */
11548 if (INTEL_GEN(dev_priv) >= 4)
11549 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
11550 else
11551 addr = I915_READ(DSPADDR(intel_crtc->plane));
11552
11553 /* There is a potential issue here with a false positive after a flip
11554 * to the same address. We could address this by checking for a
11555 * non-incrementing frame counter.
11556 */
11557 return addr == work->gtt_offset;
11558}
11559
11560void intel_check_page_flip(struct drm_i915_private *dev_priv, int pipe)
11561{
91c8a326 11562 struct drm_device *dev = &dev_priv->drm;
5a21b665
DV
11563 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11564 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11565 struct intel_flip_work *work;
11566
11567 WARN_ON(!in_interrupt());
11568
11569 if (crtc == NULL)
11570 return;
11571
11572 spin_lock(&dev->event_lock);
11573 work = intel_crtc->flip_work;
11574
11575 if (work != NULL && !is_mmio_work(work) &&
11576 __pageflip_stall_check_cs(dev_priv, intel_crtc, work)) {
11577 WARN_ONCE(1,
11578 "Kicking stuck page flip: queued at %d, now %d\n",
11579 work->flip_queued_vblank, intel_crtc_get_vblank_counter(intel_crtc));
11580 page_flip_completed(intel_crtc);
11581 work = NULL;
11582 }
11583
11584 if (work != NULL && !is_mmio_work(work) &&
11585 intel_crtc_get_vblank_counter(intel_crtc) - work->flip_queued_vblank > 1)
11586 intel_queue_rps_boost_for_request(work->flip_queued_req);
11587 spin_unlock(&dev->event_lock);
11588}
11589
11590static int intel_crtc_page_flip(struct drm_crtc *crtc,
11591 struct drm_framebuffer *fb,
11592 struct drm_pending_vblank_event *event,
11593 uint32_t page_flip_flags)
11594{
11595 struct drm_device *dev = crtc->dev;
fac5e23e 11596 struct drm_i915_private *dev_priv = to_i915(dev);
5a21b665
DV
11597 struct drm_framebuffer *old_fb = crtc->primary->fb;
11598 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11599 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11600 struct drm_plane *primary = crtc->primary;
11601 enum pipe pipe = intel_crtc->pipe;
11602 struct intel_flip_work *work;
11603 struct intel_engine_cs *engine;
11604 bool mmio_flip;
11605 struct drm_i915_gem_request *request = NULL;
11606 int ret;
11607
11608 /*
11609 * drm_mode_page_flip_ioctl() should already catch this, but double
11610 * check to be safe. In the future we may enable pageflipping from
11611 * a disabled primary plane.
11612 */
11613 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
11614 return -EBUSY;
11615
11616 /* Can't change pixel format via MI display flips. */
11617 if (fb->pixel_format != crtc->primary->fb->pixel_format)
11618 return -EINVAL;
11619
11620 /*
11621 * TILEOFF/LINOFF registers can't be changed via MI display flips.
11622 * Note that pitch changes could also affect these register.
11623 */
11624 if (INTEL_INFO(dev)->gen > 3 &&
11625 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
11626 fb->pitches[0] != crtc->primary->fb->pitches[0]))
11627 return -EINVAL;
11628
11629 if (i915_terminally_wedged(&dev_priv->gpu_error))
11630 goto out_hang;
11631
11632 work = kzalloc(sizeof(*work), GFP_KERNEL);
11633 if (work == NULL)
11634 return -ENOMEM;
11635
11636 work->event = event;
11637 work->crtc = crtc;
11638 work->old_fb = old_fb;
11639 INIT_WORK(&work->unpin_work, intel_unpin_work_fn);
11640
11641 ret = drm_crtc_vblank_get(crtc);
11642 if (ret)
11643 goto free_work;
11644
11645 /* We borrow the event spin lock for protecting flip_work */
11646 spin_lock_irq(&dev->event_lock);
11647 if (intel_crtc->flip_work) {
11648 /* Before declaring the flip queue wedged, check if
11649 * the hardware completed the operation behind our backs.
11650 */
11651 if (pageflip_finished(intel_crtc, intel_crtc->flip_work)) {
11652 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
11653 page_flip_completed(intel_crtc);
11654 } else {
11655 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
11656 spin_unlock_irq(&dev->event_lock);
11657
11658 drm_crtc_vblank_put(crtc);
11659 kfree(work);
11660 return -EBUSY;
11661 }
11662 }
11663 intel_crtc->flip_work = work;
11664 spin_unlock_irq(&dev->event_lock);
11665
11666 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
11667 flush_workqueue(dev_priv->wq);
11668
11669 /* Reference the objects for the scheduled work. */
11670 drm_framebuffer_reference(work->old_fb);
11671 drm_gem_object_reference(&obj->base);
11672
11673 crtc->primary->fb = fb;
11674 update_state_fb(crtc->primary);
faf68d92
ML
11675
11676 intel_fbc_pre_update(intel_crtc, intel_crtc->config,
11677 to_intel_plane_state(primary->state));
5a21b665
DV
11678
11679 work->pending_flip_obj = obj;
11680
11681 ret = i915_mutex_lock_interruptible(dev);
11682 if (ret)
11683 goto cleanup;
11684
11685 intel_crtc->reset_counter = i915_reset_counter(&dev_priv->gpu_error);
11686 if (__i915_reset_in_progress_or_wedged(intel_crtc->reset_counter)) {
11687 ret = -EIO;
11688 goto cleanup;
11689 }
11690
11691 atomic_inc(&intel_crtc->unpin_work_count);
11692
11693 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
11694 work->flip_count = I915_READ(PIPE_FLIPCOUNT_G4X(pipe)) + 1;
11695
11696 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
11697 engine = &dev_priv->engine[BCS];
11698 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
11699 /* vlv: DISPLAY_FLIP fails to change tiling */
11700 engine = NULL;
11701 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
11702 engine = &dev_priv->engine[BCS];
11703 } else if (INTEL_INFO(dev)->gen >= 7) {
11704 engine = i915_gem_request_get_engine(obj->last_write_req);
11705 if (engine == NULL || engine->id != RCS)
11706 engine = &dev_priv->engine[BCS];
11707 } else {
11708 engine = &dev_priv->engine[RCS];
11709 }
11710
11711 mmio_flip = use_mmio_flip(engine, obj);
11712
11713 /* When using CS flips, we want to emit semaphores between rings.
11714 * However, when using mmio flips we will create a task to do the
11715 * synchronisation, so all we want here is to pin the framebuffer
11716 * into the display plane and skip any waits.
11717 */
11718 if (!mmio_flip) {
11719 ret = i915_gem_object_sync(obj, engine, &request);
11720 if (!ret && !request) {
11721 request = i915_gem_request_alloc(engine, NULL);
11722 ret = PTR_ERR_OR_ZERO(request);
11723 }
11724
11725 if (ret)
11726 goto cleanup_pending;
11727 }
11728
11729 ret = intel_pin_and_fence_fb_obj(fb, primary->state->rotation);
11730 if (ret)
11731 goto cleanup_pending;
11732
11733 work->gtt_offset = intel_plane_obj_offset(to_intel_plane(primary),
11734 obj, 0);
11735 work->gtt_offset += intel_crtc->dspaddr_offset;
11736 work->rotation = crtc->primary->state->rotation;
11737
11738 if (mmio_flip) {
11739 INIT_WORK(&work->mmio_work, intel_mmio_flip_work_func);
11740
11741 i915_gem_request_assign(&work->flip_queued_req,
11742 obj->last_write_req);
11743
11744 schedule_work(&work->mmio_work);
11745 } else {
11746 i915_gem_request_assign(&work->flip_queued_req, request);
11747 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, request,
11748 page_flip_flags);
11749 if (ret)
11750 goto cleanup_unpin;
11751
11752 intel_mark_page_flip_active(intel_crtc, work);
11753
11754 i915_add_request_no_flush(request);
11755 }
11756
11757 i915_gem_track_fb(intel_fb_obj(old_fb), obj,
11758 to_intel_plane(primary)->frontbuffer_bit);
11759 mutex_unlock(&dev->struct_mutex);
11760
11761 intel_frontbuffer_flip_prepare(dev,
11762 to_intel_plane(primary)->frontbuffer_bit);
11763
11764 trace_i915_flip_request(intel_crtc->plane, obj);
11765
11766 return 0;
11767
11768cleanup_unpin:
11769 intel_unpin_fb_obj(fb, crtc->primary->state->rotation);
11770cleanup_pending:
11771 if (!IS_ERR_OR_NULL(request))
11772 i915_add_request_no_flush(request);
11773 atomic_dec(&intel_crtc->unpin_work_count);
11774 mutex_unlock(&dev->struct_mutex);
11775cleanup:
11776 crtc->primary->fb = old_fb;
11777 update_state_fb(crtc->primary);
11778
11779 drm_gem_object_unreference_unlocked(&obj->base);
11780 drm_framebuffer_unreference(work->old_fb);
11781
11782 spin_lock_irq(&dev->event_lock);
11783 intel_crtc->flip_work = NULL;
11784 spin_unlock_irq(&dev->event_lock);
11785
11786 drm_crtc_vblank_put(crtc);
11787free_work:
11788 kfree(work);
11789
11790 if (ret == -EIO) {
11791 struct drm_atomic_state *state;
11792 struct drm_plane_state *plane_state;
11793
11794out_hang:
11795 state = drm_atomic_state_alloc(dev);
11796 if (!state)
11797 return -ENOMEM;
11798 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
11799
11800retry:
11801 plane_state = drm_atomic_get_plane_state(state, primary);
11802 ret = PTR_ERR_OR_ZERO(plane_state);
11803 if (!ret) {
11804 drm_atomic_set_fb_for_plane(plane_state, fb);
11805
11806 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
11807 if (!ret)
11808 ret = drm_atomic_commit(state);
11809 }
11810
11811 if (ret == -EDEADLK) {
11812 drm_modeset_backoff(state->acquire_ctx);
11813 drm_atomic_state_clear(state);
11814 goto retry;
11815 }
11816
11817 if (ret)
11818 drm_atomic_state_free(state);
11819
11820 if (ret == 0 && event) {
11821 spin_lock_irq(&dev->event_lock);
11822 drm_crtc_send_vblank_event(crtc, event);
11823 spin_unlock_irq(&dev->event_lock);
11824 }
11825 }
11826 return ret;
11827}
11828
11829
11830/**
11831 * intel_wm_need_update - Check whether watermarks need updating
11832 * @plane: drm plane
11833 * @state: new plane state
11834 *
11835 * Check current plane state versus the new one to determine whether
11836 * watermarks need to be recalculated.
11837 *
11838 * Returns true or false.
11839 */
11840static bool intel_wm_need_update(struct drm_plane *plane,
11841 struct drm_plane_state *state)
11842{
11843 struct intel_plane_state *new = to_intel_plane_state(state);
11844 struct intel_plane_state *cur = to_intel_plane_state(plane->state);
11845
11846 /* Update watermarks on tiling or size changes. */
11847 if (new->visible != cur->visible)
11848 return true;
11849
11850 if (!cur->base.fb || !new->base.fb)
11851 return false;
11852
11853 if (cur->base.fb->modifier[0] != new->base.fb->modifier[0] ||
11854 cur->base.rotation != new->base.rotation ||
11855 drm_rect_width(&new->src) != drm_rect_width(&cur->src) ||
11856 drm_rect_height(&new->src) != drm_rect_height(&cur->src) ||
11857 drm_rect_width(&new->dst) != drm_rect_width(&cur->dst) ||
11858 drm_rect_height(&new->dst) != drm_rect_height(&cur->dst))
11859 return true;
11860
11861 return false;
11862}
11863
11864static bool needs_scaling(struct intel_plane_state *state)
11865{
11866 int src_w = drm_rect_width(&state->src) >> 16;
11867 int src_h = drm_rect_height(&state->src) >> 16;
11868 int dst_w = drm_rect_width(&state->dst);
11869 int dst_h = drm_rect_height(&state->dst);
11870
11871 return (src_w != dst_w || src_h != dst_h);
11872}
d21fbe87 11873
da20eabd
ML
11874int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
11875 struct drm_plane_state *plane_state)
11876{
ab1d3a0e 11877 struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc_state);
da20eabd
ML
11878 struct drm_crtc *crtc = crtc_state->crtc;
11879 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11880 struct drm_plane *plane = plane_state->plane;
11881 struct drm_device *dev = crtc->dev;
ed4a6a7c 11882 struct drm_i915_private *dev_priv = to_i915(dev);
da20eabd
ML
11883 struct intel_plane_state *old_plane_state =
11884 to_intel_plane_state(plane->state);
da20eabd
ML
11885 bool mode_changed = needs_modeset(crtc_state);
11886 bool was_crtc_enabled = crtc->state->active;
11887 bool is_crtc_enabled = crtc_state->active;
da20eabd
ML
11888 bool turn_off, turn_on, visible, was_visible;
11889 struct drm_framebuffer *fb = plane_state->fb;
78108b7c 11890 int ret;
da20eabd 11891
84114990 11892 if (INTEL_GEN(dev) >= 9 && plane->type != DRM_PLANE_TYPE_CURSOR) {
da20eabd
ML
11893 ret = skl_update_scaler_plane(
11894 to_intel_crtc_state(crtc_state),
11895 to_intel_plane_state(plane_state));
11896 if (ret)
11897 return ret;
11898 }
11899
da20eabd
ML
11900 was_visible = old_plane_state->visible;
11901 visible = to_intel_plane_state(plane_state)->visible;
11902
11903 if (!was_crtc_enabled && WARN_ON(was_visible))
11904 was_visible = false;
11905
35c08f43
ML
11906 /*
11907 * Visibility is calculated as if the crtc was on, but
11908 * after scaler setup everything depends on it being off
11909 * when the crtc isn't active.
f818ffea
VS
11910 *
11911 * FIXME this is wrong for watermarks. Watermarks should also
11912 * be computed as if the pipe would be active. Perhaps move
11913 * per-plane wm computation to the .check_plane() hook, and
11914 * only combine the results from all planes in the current place?
35c08f43
ML
11915 */
11916 if (!is_crtc_enabled)
11917 to_intel_plane_state(plane_state)->visible = visible = false;
da20eabd
ML
11918
11919 if (!was_visible && !visible)
11920 return 0;
11921
e8861675
ML
11922 if (fb != old_plane_state->base.fb)
11923 pipe_config->fb_changed = true;
11924
da20eabd
ML
11925 turn_off = was_visible && (!visible || mode_changed);
11926 turn_on = visible && (!was_visible || mode_changed);
11927
72660ce0 11928 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] has [PLANE:%d:%s] with fb %i\n",
78108b7c
VS
11929 intel_crtc->base.base.id,
11930 intel_crtc->base.name,
72660ce0
VS
11931 plane->base.id, plane->name,
11932 fb ? fb->base.id : -1);
da20eabd 11933
72660ce0
VS
11934 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] visible %i -> %i, off %i, on %i, ms %i\n",
11935 plane->base.id, plane->name,
11936 was_visible, visible,
da20eabd
ML
11937 turn_off, turn_on, mode_changed);
11938
caed361d
VS
11939 if (turn_on) {
11940 pipe_config->update_wm_pre = true;
11941
11942 /* must disable cxsr around plane enable/disable */
11943 if (plane->type != DRM_PLANE_TYPE_CURSOR)
11944 pipe_config->disable_cxsr = true;
11945 } else if (turn_off) {
11946 pipe_config->update_wm_post = true;
92826fcd 11947
852eb00d 11948 /* must disable cxsr around plane enable/disable */
e8861675 11949 if (plane->type != DRM_PLANE_TYPE_CURSOR)
ab1d3a0e 11950 pipe_config->disable_cxsr = true;
852eb00d 11951 } else if (intel_wm_need_update(plane, plane_state)) {
caed361d
VS
11952 /* FIXME bollocks */
11953 pipe_config->update_wm_pre = true;
11954 pipe_config->update_wm_post = true;
852eb00d 11955 }
da20eabd 11956
ed4a6a7c 11957 /* Pre-gen9 platforms need two-step watermark updates */
caed361d
VS
11958 if ((pipe_config->update_wm_pre || pipe_config->update_wm_post) &&
11959 INTEL_INFO(dev)->gen < 9 && dev_priv->display.optimize_watermarks)
ed4a6a7c
MR
11960 to_intel_crtc_state(crtc_state)->wm.need_postvbl_update = true;
11961
8be6ca85 11962 if (visible || was_visible)
cd202f69 11963 pipe_config->fb_bits |= to_intel_plane(plane)->frontbuffer_bit;
a9ff8714 11964
31ae71fc
ML
11965 /*
11966 * WaCxSRDisabledForSpriteScaling:ivb
11967 *
11968 * cstate->update_wm was already set above, so this flag will
11969 * take effect when we commit and program watermarks.
11970 */
11971 if (plane->type == DRM_PLANE_TYPE_OVERLAY && IS_IVYBRIDGE(dev) &&
11972 needs_scaling(to_intel_plane_state(plane_state)) &&
11973 !needs_scaling(old_plane_state))
11974 pipe_config->disable_lp_wm = true;
d21fbe87 11975
da20eabd
ML
11976 return 0;
11977}
11978
6d3a1ce7
ML
11979static bool encoders_cloneable(const struct intel_encoder *a,
11980 const struct intel_encoder *b)
11981{
11982 /* masks could be asymmetric, so check both ways */
11983 return a == b || (a->cloneable & (1 << b->type) &&
11984 b->cloneable & (1 << a->type));
11985}
11986
11987static bool check_single_encoder_cloning(struct drm_atomic_state *state,
11988 struct intel_crtc *crtc,
11989 struct intel_encoder *encoder)
11990{
11991 struct intel_encoder *source_encoder;
11992 struct drm_connector *connector;
11993 struct drm_connector_state *connector_state;
11994 int i;
11995
11996 for_each_connector_in_state(state, connector, connector_state, i) {
11997 if (connector_state->crtc != &crtc->base)
11998 continue;
11999
12000 source_encoder =
12001 to_intel_encoder(connector_state->best_encoder);
12002 if (!encoders_cloneable(encoder, source_encoder))
12003 return false;
12004 }
12005
12006 return true;
12007}
12008
12009static bool check_encoder_cloning(struct drm_atomic_state *state,
12010 struct intel_crtc *crtc)
12011{
12012 struct intel_encoder *encoder;
12013 struct drm_connector *connector;
12014 struct drm_connector_state *connector_state;
12015 int i;
12016
12017 for_each_connector_in_state(state, connector, connector_state, i) {
12018 if (connector_state->crtc != &crtc->base)
12019 continue;
12020
12021 encoder = to_intel_encoder(connector_state->best_encoder);
12022 if (!check_single_encoder_cloning(state, crtc, encoder))
12023 return false;
12024 }
12025
12026 return true;
12027}
12028
12029static int intel_crtc_atomic_check(struct drm_crtc *crtc,
12030 struct drm_crtc_state *crtc_state)
12031{
cf5a15be 12032 struct drm_device *dev = crtc->dev;
fac5e23e 12033 struct drm_i915_private *dev_priv = to_i915(dev);
6d3a1ce7 12034 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cf5a15be
ML
12035 struct intel_crtc_state *pipe_config =
12036 to_intel_crtc_state(crtc_state);
6d3a1ce7 12037 struct drm_atomic_state *state = crtc_state->state;
4d20cd86 12038 int ret;
6d3a1ce7
ML
12039 bool mode_changed = needs_modeset(crtc_state);
12040
12041 if (mode_changed && !check_encoder_cloning(state, intel_crtc)) {
12042 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
12043 return -EINVAL;
12044 }
12045
852eb00d 12046 if (mode_changed && !crtc_state->active)
caed361d 12047 pipe_config->update_wm_post = true;
eddfcbcd 12048
ad421372
ML
12049 if (mode_changed && crtc_state->enable &&
12050 dev_priv->display.crtc_compute_clock &&
8106ddbd 12051 !WARN_ON(pipe_config->shared_dpll)) {
ad421372
ML
12052 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
12053 pipe_config);
12054 if (ret)
12055 return ret;
12056 }
12057
82cf435b
LL
12058 if (crtc_state->color_mgmt_changed) {
12059 ret = intel_color_check(crtc, crtc_state);
12060 if (ret)
12061 return ret;
12062 }
12063
e435d6e5 12064 ret = 0;
86c8bbbe 12065 if (dev_priv->display.compute_pipe_wm) {
e3bddded 12066 ret = dev_priv->display.compute_pipe_wm(pipe_config);
ed4a6a7c
MR
12067 if (ret) {
12068 DRM_DEBUG_KMS("Target pipe watermarks are invalid\n");
12069 return ret;
12070 }
12071 }
12072
12073 if (dev_priv->display.compute_intermediate_wm &&
12074 !to_intel_atomic_state(state)->skip_intermediate_wm) {
12075 if (WARN_ON(!dev_priv->display.compute_pipe_wm))
12076 return 0;
12077
12078 /*
12079 * Calculate 'intermediate' watermarks that satisfy both the
12080 * old state and the new state. We can program these
12081 * immediately.
12082 */
12083 ret = dev_priv->display.compute_intermediate_wm(crtc->dev,
12084 intel_crtc,
12085 pipe_config);
12086 if (ret) {
12087 DRM_DEBUG_KMS("No valid intermediate pipe watermarks are possible\n");
86c8bbbe 12088 return ret;
ed4a6a7c 12089 }
e3d5457c
VS
12090 } else if (dev_priv->display.compute_intermediate_wm) {
12091 if (HAS_PCH_SPLIT(dev_priv) && INTEL_GEN(dev_priv) < 9)
12092 pipe_config->wm.ilk.intermediate = pipe_config->wm.ilk.optimal;
86c8bbbe
MR
12093 }
12094
e435d6e5
ML
12095 if (INTEL_INFO(dev)->gen >= 9) {
12096 if (mode_changed)
12097 ret = skl_update_scaler_crtc(pipe_config);
12098
12099 if (!ret)
12100 ret = intel_atomic_setup_scalers(dev, intel_crtc,
12101 pipe_config);
12102 }
12103
12104 return ret;
6d3a1ce7
ML
12105}
12106
65b38e0d 12107static const struct drm_crtc_helper_funcs intel_helper_funcs = {
f6e5b160 12108 .mode_set_base_atomic = intel_pipe_set_base_atomic,
5a21b665
DV
12109 .atomic_begin = intel_begin_crtc_commit,
12110 .atomic_flush = intel_finish_crtc_commit,
6d3a1ce7 12111 .atomic_check = intel_crtc_atomic_check,
f6e5b160
CW
12112};
12113
d29b2f9d
ACO
12114static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
12115{
12116 struct intel_connector *connector;
12117
12118 for_each_intel_connector(dev, connector) {
8863dc7f
DV
12119 if (connector->base.state->crtc)
12120 drm_connector_unreference(&connector->base);
12121
d29b2f9d
ACO
12122 if (connector->base.encoder) {
12123 connector->base.state->best_encoder =
12124 connector->base.encoder;
12125 connector->base.state->crtc =
12126 connector->base.encoder->crtc;
8863dc7f
DV
12127
12128 drm_connector_reference(&connector->base);
d29b2f9d
ACO
12129 } else {
12130 connector->base.state->best_encoder = NULL;
12131 connector->base.state->crtc = NULL;
12132 }
12133 }
12134}
12135
050f7aeb 12136static void
eba905b2 12137connected_sink_compute_bpp(struct intel_connector *connector,
5cec258b 12138 struct intel_crtc_state *pipe_config)
050f7aeb
DV
12139{
12140 int bpp = pipe_config->pipe_bpp;
12141
12142 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
12143 connector->base.base.id,
c23cc417 12144 connector->base.name);
050f7aeb
DV
12145
12146 /* Don't use an invalid EDID bpc value */
12147 if (connector->base.display_info.bpc &&
12148 connector->base.display_info.bpc * 3 < bpp) {
12149 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
12150 bpp, connector->base.display_info.bpc*3);
12151 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
12152 }
12153
013dd9e0
JN
12154 /* Clamp bpp to default limit on screens without EDID 1.4 */
12155 if (connector->base.display_info.bpc == 0) {
12156 int type = connector->base.connector_type;
12157 int clamp_bpp = 24;
12158
12159 /* Fall back to 18 bpp when DP sink capability is unknown. */
12160 if (type == DRM_MODE_CONNECTOR_DisplayPort ||
12161 type == DRM_MODE_CONNECTOR_eDP)
12162 clamp_bpp = 18;
12163
12164 if (bpp > clamp_bpp) {
12165 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of %d\n",
12166 bpp, clamp_bpp);
12167 pipe_config->pipe_bpp = clamp_bpp;
12168 }
050f7aeb
DV
12169 }
12170}
12171
4e53c2e0 12172static int
050f7aeb 12173compute_baseline_pipe_bpp(struct intel_crtc *crtc,
5cec258b 12174 struct intel_crtc_state *pipe_config)
4e53c2e0 12175{
050f7aeb 12176 struct drm_device *dev = crtc->base.dev;
1486017f 12177 struct drm_atomic_state *state;
da3ced29
ACO
12178 struct drm_connector *connector;
12179 struct drm_connector_state *connector_state;
1486017f 12180 int bpp, i;
4e53c2e0 12181
666a4537 12182 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)))
4e53c2e0 12183 bpp = 10*3;
d328c9d7
DV
12184 else if (INTEL_INFO(dev)->gen >= 5)
12185 bpp = 12*3;
12186 else
12187 bpp = 8*3;
12188
4e53c2e0 12189
4e53c2e0
DV
12190 pipe_config->pipe_bpp = bpp;
12191
1486017f
ACO
12192 state = pipe_config->base.state;
12193
4e53c2e0 12194 /* Clamp display bpp to EDID value */
da3ced29
ACO
12195 for_each_connector_in_state(state, connector, connector_state, i) {
12196 if (connector_state->crtc != &crtc->base)
4e53c2e0
DV
12197 continue;
12198
da3ced29
ACO
12199 connected_sink_compute_bpp(to_intel_connector(connector),
12200 pipe_config);
4e53c2e0
DV
12201 }
12202
12203 return bpp;
12204}
12205
644db711
DV
12206static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
12207{
12208 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
12209 "type: 0x%x flags: 0x%x\n",
1342830c 12210 mode->crtc_clock,
644db711
DV
12211 mode->crtc_hdisplay, mode->crtc_hsync_start,
12212 mode->crtc_hsync_end, mode->crtc_htotal,
12213 mode->crtc_vdisplay, mode->crtc_vsync_start,
12214 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
12215}
12216
c0b03411 12217static void intel_dump_pipe_config(struct intel_crtc *crtc,
5cec258b 12218 struct intel_crtc_state *pipe_config,
c0b03411
DV
12219 const char *context)
12220{
6a60cd87
CK
12221 struct drm_device *dev = crtc->base.dev;
12222 struct drm_plane *plane;
12223 struct intel_plane *intel_plane;
12224 struct intel_plane_state *state;
12225 struct drm_framebuffer *fb;
12226
78108b7c
VS
12227 DRM_DEBUG_KMS("[CRTC:%d:%s]%s config %p for pipe %c\n",
12228 crtc->base.base.id, crtc->base.name,
6a60cd87 12229 context, pipe_config, pipe_name(crtc->pipe));
c0b03411 12230
da205630 12231 DRM_DEBUG_KMS("cpu_transcoder: %s\n", transcoder_name(pipe_config->cpu_transcoder));
c0b03411
DV
12232 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
12233 pipe_config->pipe_bpp, pipe_config->dither);
12234 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
12235 pipe_config->has_pch_encoder,
12236 pipe_config->fdi_lanes,
12237 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
12238 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
12239 pipe_config->fdi_m_n.tu);
90a6b7b0 12240 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
37a5650b 12241 intel_crtc_has_dp_encoder(pipe_config),
90a6b7b0 12242 pipe_config->lane_count,
eb14cb74
VS
12243 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
12244 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
12245 pipe_config->dp_m_n.tu);
b95af8be 12246
90a6b7b0 12247 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
37a5650b 12248 intel_crtc_has_dp_encoder(pipe_config),
90a6b7b0 12249 pipe_config->lane_count,
b95af8be
VK
12250 pipe_config->dp_m2_n2.gmch_m,
12251 pipe_config->dp_m2_n2.gmch_n,
12252 pipe_config->dp_m2_n2.link_m,
12253 pipe_config->dp_m2_n2.link_n,
12254 pipe_config->dp_m2_n2.tu);
12255
55072d19
DV
12256 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
12257 pipe_config->has_audio,
12258 pipe_config->has_infoframe);
12259
c0b03411 12260 DRM_DEBUG_KMS("requested mode:\n");
2d112de7 12261 drm_mode_debug_printmodeline(&pipe_config->base.mode);
c0b03411 12262 DRM_DEBUG_KMS("adjusted mode:\n");
2d112de7
ACO
12263 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
12264 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
d71b8d4a 12265 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
37327abd
VS
12266 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
12267 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
0ec463d3
TU
12268 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
12269 crtc->num_scalers,
12270 pipe_config->scaler_state.scaler_users,
12271 pipe_config->scaler_state.scaler_id);
c0b03411
DV
12272 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
12273 pipe_config->gmch_pfit.control,
12274 pipe_config->gmch_pfit.pgm_ratios,
12275 pipe_config->gmch_pfit.lvds_border_bits);
fd4daa9c 12276 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
c0b03411 12277 pipe_config->pch_pfit.pos,
fd4daa9c
CW
12278 pipe_config->pch_pfit.size,
12279 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
42db64ef 12280 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
cf532bb2 12281 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
6a60cd87 12282
415ff0f6 12283 if (IS_BROXTON(dev)) {
05712c15 12284 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x,"
415ff0f6 12285 "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
c8453338 12286 "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n",
415ff0f6
TU
12287 pipe_config->ddi_pll_sel,
12288 pipe_config->dpll_hw_state.ebb0,
05712c15 12289 pipe_config->dpll_hw_state.ebb4,
415ff0f6
TU
12290 pipe_config->dpll_hw_state.pll0,
12291 pipe_config->dpll_hw_state.pll1,
12292 pipe_config->dpll_hw_state.pll2,
12293 pipe_config->dpll_hw_state.pll3,
12294 pipe_config->dpll_hw_state.pll6,
12295 pipe_config->dpll_hw_state.pll8,
05712c15 12296 pipe_config->dpll_hw_state.pll9,
c8453338 12297 pipe_config->dpll_hw_state.pll10,
415ff0f6 12298 pipe_config->dpll_hw_state.pcsdw12);
ef11bdb3 12299 } else if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
415ff0f6
TU
12300 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: "
12301 "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
12302 pipe_config->ddi_pll_sel,
12303 pipe_config->dpll_hw_state.ctrl1,
12304 pipe_config->dpll_hw_state.cfgcr1,
12305 pipe_config->dpll_hw_state.cfgcr2);
12306 } else if (HAS_DDI(dev)) {
1260f07e 12307 DRM_DEBUG_KMS("ddi_pll_sel: 0x%x; dpll_hw_state: wrpll: 0x%x spll: 0x%x\n",
415ff0f6 12308 pipe_config->ddi_pll_sel,
00490c22
ML
12309 pipe_config->dpll_hw_state.wrpll,
12310 pipe_config->dpll_hw_state.spll);
415ff0f6
TU
12311 } else {
12312 DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
12313 "fp0: 0x%x, fp1: 0x%x\n",
12314 pipe_config->dpll_hw_state.dpll,
12315 pipe_config->dpll_hw_state.dpll_md,
12316 pipe_config->dpll_hw_state.fp0,
12317 pipe_config->dpll_hw_state.fp1);
12318 }
12319
6a60cd87
CK
12320 DRM_DEBUG_KMS("planes on this crtc\n");
12321 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
12322 intel_plane = to_intel_plane(plane);
12323 if (intel_plane->pipe != crtc->pipe)
12324 continue;
12325
12326 state = to_intel_plane_state(plane->state);
12327 fb = state->base.fb;
12328 if (!fb) {
1d577e02
VS
12329 DRM_DEBUG_KMS("[PLANE:%d:%s] disabled, scaler_id = %d\n",
12330 plane->base.id, plane->name, state->scaler_id);
6a60cd87
CK
12331 continue;
12332 }
12333
1d577e02
VS
12334 DRM_DEBUG_KMS("[PLANE:%d:%s] enabled",
12335 plane->base.id, plane->name);
12336 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = %s",
12337 fb->base.id, fb->width, fb->height,
12338 drm_get_format_name(fb->pixel_format));
12339 DRM_DEBUG_KMS("\tscaler:%d src %dx%d+%d+%d dst %dx%d+%d+%d\n",
12340 state->scaler_id,
12341 state->src.x1 >> 16, state->src.y1 >> 16,
12342 drm_rect_width(&state->src) >> 16,
12343 drm_rect_height(&state->src) >> 16,
12344 state->dst.x1, state->dst.y1,
12345 drm_rect_width(&state->dst),
12346 drm_rect_height(&state->dst));
6a60cd87 12347 }
c0b03411
DV
12348}
12349
5448a00d 12350static bool check_digital_port_conflicts(struct drm_atomic_state *state)
00f0b378 12351{
5448a00d 12352 struct drm_device *dev = state->dev;
da3ced29 12353 struct drm_connector *connector;
00f0b378
VS
12354 unsigned int used_ports = 0;
12355
12356 /*
12357 * Walk the connector list instead of the encoder
12358 * list to detect the problem on ddi platforms
12359 * where there's just one encoder per digital port.
12360 */
0bff4858
VS
12361 drm_for_each_connector(connector, dev) {
12362 struct drm_connector_state *connector_state;
12363 struct intel_encoder *encoder;
12364
12365 connector_state = drm_atomic_get_existing_connector_state(state, connector);
12366 if (!connector_state)
12367 connector_state = connector->state;
12368
5448a00d 12369 if (!connector_state->best_encoder)
00f0b378
VS
12370 continue;
12371
5448a00d
ACO
12372 encoder = to_intel_encoder(connector_state->best_encoder);
12373
12374 WARN_ON(!connector_state->crtc);
00f0b378
VS
12375
12376 switch (encoder->type) {
12377 unsigned int port_mask;
12378 case INTEL_OUTPUT_UNKNOWN:
12379 if (WARN_ON(!HAS_DDI(dev)))
12380 break;
12381 case INTEL_OUTPUT_DISPLAYPORT:
12382 case INTEL_OUTPUT_HDMI:
12383 case INTEL_OUTPUT_EDP:
12384 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
12385
12386 /* the same port mustn't appear more than once */
12387 if (used_ports & port_mask)
12388 return false;
12389
12390 used_ports |= port_mask;
12391 default:
12392 break;
12393 }
12394 }
12395
12396 return true;
12397}
12398
83a57153
ACO
12399static void
12400clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
12401{
12402 struct drm_crtc_state tmp_state;
663a3640 12403 struct intel_crtc_scaler_state scaler_state;
4978cc93 12404 struct intel_dpll_hw_state dpll_hw_state;
8106ddbd 12405 struct intel_shared_dpll *shared_dpll;
8504c74c 12406 uint32_t ddi_pll_sel;
c4e2d043 12407 bool force_thru;
83a57153 12408
7546a384
ACO
12409 /* FIXME: before the switch to atomic started, a new pipe_config was
12410 * kzalloc'd. Code that depends on any field being zero should be
12411 * fixed, so that the crtc_state can be safely duplicated. For now,
12412 * only fields that are know to not cause problems are preserved. */
12413
83a57153 12414 tmp_state = crtc_state->base;
663a3640 12415 scaler_state = crtc_state->scaler_state;
4978cc93
ACO
12416 shared_dpll = crtc_state->shared_dpll;
12417 dpll_hw_state = crtc_state->dpll_hw_state;
8504c74c 12418 ddi_pll_sel = crtc_state->ddi_pll_sel;
c4e2d043 12419 force_thru = crtc_state->pch_pfit.force_thru;
4978cc93 12420
83a57153 12421 memset(crtc_state, 0, sizeof *crtc_state);
4978cc93 12422
83a57153 12423 crtc_state->base = tmp_state;
663a3640 12424 crtc_state->scaler_state = scaler_state;
4978cc93
ACO
12425 crtc_state->shared_dpll = shared_dpll;
12426 crtc_state->dpll_hw_state = dpll_hw_state;
8504c74c 12427 crtc_state->ddi_pll_sel = ddi_pll_sel;
c4e2d043 12428 crtc_state->pch_pfit.force_thru = force_thru;
83a57153
ACO
12429}
12430
548ee15b 12431static int
b8cecdf5 12432intel_modeset_pipe_config(struct drm_crtc *crtc,
b359283a 12433 struct intel_crtc_state *pipe_config)
ee7b9f93 12434{
b359283a 12435 struct drm_atomic_state *state = pipe_config->base.state;
7758a113 12436 struct intel_encoder *encoder;
da3ced29 12437 struct drm_connector *connector;
0b901879 12438 struct drm_connector_state *connector_state;
d328c9d7 12439 int base_bpp, ret = -EINVAL;
0b901879 12440 int i;
e29c22c0 12441 bool retry = true;
ee7b9f93 12442
83a57153 12443 clear_intel_crtc_state(pipe_config);
7758a113 12444
e143a21c
DV
12445 pipe_config->cpu_transcoder =
12446 (enum transcoder) to_intel_crtc(crtc)->pipe;
b8cecdf5 12447
2960bc9c
ID
12448 /*
12449 * Sanitize sync polarity flags based on requested ones. If neither
12450 * positive or negative polarity is requested, treat this as meaning
12451 * negative polarity.
12452 */
2d112de7 12453 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 12454 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
2d112de7 12455 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
2960bc9c 12456
2d112de7 12457 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 12458 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
2d112de7 12459 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
2960bc9c 12460
d328c9d7
DV
12461 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
12462 pipe_config);
12463 if (base_bpp < 0)
4e53c2e0
DV
12464 goto fail;
12465
e41a56be
VS
12466 /*
12467 * Determine the real pipe dimensions. Note that stereo modes can
12468 * increase the actual pipe size due to the frame doubling and
12469 * insertion of additional space for blanks between the frame. This
12470 * is stored in the crtc timings. We use the requested mode to do this
12471 * computation to clearly distinguish it from the adjusted mode, which
12472 * can be changed by the connectors in the below retry loop.
12473 */
2d112de7 12474 drm_crtc_get_hv_timing(&pipe_config->base.mode,
ecb7e16b
GP
12475 &pipe_config->pipe_src_w,
12476 &pipe_config->pipe_src_h);
e41a56be 12477
253c84c8
VS
12478 for_each_connector_in_state(state, connector, connector_state, i) {
12479 if (connector_state->crtc != crtc)
12480 continue;
12481
12482 encoder = to_intel_encoder(connector_state->best_encoder);
12483
12484 /*
12485 * Determine output_types before calling the .compute_config()
12486 * hooks so that the hooks can use this information safely.
12487 */
12488 pipe_config->output_types |= 1 << encoder->type;
12489 }
12490
e29c22c0 12491encoder_retry:
ef1b460d 12492 /* Ensure the port clock defaults are reset when retrying. */
ff9a6750 12493 pipe_config->port_clock = 0;
ef1b460d 12494 pipe_config->pixel_multiplier = 1;
ff9a6750 12495
135c81b8 12496 /* Fill in default crtc timings, allow encoders to overwrite them. */
2d112de7
ACO
12497 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
12498 CRTC_STEREO_DOUBLE);
135c81b8 12499
7758a113
DV
12500 /* Pass our mode to the connectors and the CRTC to give them a chance to
12501 * adjust it according to limitations or connector properties, and also
12502 * a chance to reject the mode entirely.
47f1c6c9 12503 */
da3ced29 12504 for_each_connector_in_state(state, connector, connector_state, i) {
0b901879 12505 if (connector_state->crtc != crtc)
7758a113 12506 continue;
7ae89233 12507
0b901879
ACO
12508 encoder = to_intel_encoder(connector_state->best_encoder);
12509
efea6e8e
DV
12510 if (!(encoder->compute_config(encoder, pipe_config))) {
12511 DRM_DEBUG_KMS("Encoder config failure\n");
7758a113
DV
12512 goto fail;
12513 }
ee7b9f93 12514 }
47f1c6c9 12515
ff9a6750
DV
12516 /* Set default port clock if not overwritten by the encoder. Needs to be
12517 * done afterwards in case the encoder adjusts the mode. */
12518 if (!pipe_config->port_clock)
2d112de7 12519 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
241bfc38 12520 * pipe_config->pixel_multiplier;
ff9a6750 12521
a43f6e0f 12522 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
e29c22c0 12523 if (ret < 0) {
7758a113
DV
12524 DRM_DEBUG_KMS("CRTC fixup failed\n");
12525 goto fail;
ee7b9f93 12526 }
e29c22c0
DV
12527
12528 if (ret == RETRY) {
12529 if (WARN(!retry, "loop in pipe configuration computation\n")) {
12530 ret = -EINVAL;
12531 goto fail;
12532 }
12533
12534 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
12535 retry = false;
12536 goto encoder_retry;
12537 }
12538
e8fa4270
DV
12539 /* Dithering seems to not pass-through bits correctly when it should, so
12540 * only enable it on 6bpc panels. */
12541 pipe_config->dither = pipe_config->pipe_bpp == 6*3;
62f0ace5 12542 DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n",
d328c9d7 12543 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
4e53c2e0 12544
7758a113 12545fail:
548ee15b 12546 return ret;
ee7b9f93 12547}
47f1c6c9 12548
ea9d758d 12549static void
4740b0f2 12550intel_modeset_update_crtc_state(struct drm_atomic_state *state)
ea9d758d 12551{
0a9ab303
ACO
12552 struct drm_crtc *crtc;
12553 struct drm_crtc_state *crtc_state;
8a75d157 12554 int i;
ea9d758d 12555
7668851f 12556 /* Double check state. */
8a75d157 12557 for_each_crtc_in_state(state, crtc, crtc_state, i) {
3cb480bc 12558 to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state);
fc467a22
ML
12559
12560 /* Update hwmode for vblank functions */
12561 if (crtc->state->active)
12562 crtc->hwmode = crtc->state->adjusted_mode;
12563 else
12564 crtc->hwmode.crtc_clock = 0;
61067a5e
ML
12565
12566 /*
12567 * Update legacy state to satisfy fbc code. This can
12568 * be removed when fbc uses the atomic state.
12569 */
12570 if (drm_atomic_get_existing_plane_state(state, crtc->primary)) {
12571 struct drm_plane_state *plane_state = crtc->primary->state;
12572
12573 crtc->primary->fb = plane_state->fb;
12574 crtc->x = plane_state->src_x >> 16;
12575 crtc->y = plane_state->src_y >> 16;
12576 }
ea9d758d 12577 }
ea9d758d
DV
12578}
12579
3bd26263 12580static bool intel_fuzzy_clock_check(int clock1, int clock2)
f1f644dc 12581{
3bd26263 12582 int diff;
f1f644dc
JB
12583
12584 if (clock1 == clock2)
12585 return true;
12586
12587 if (!clock1 || !clock2)
12588 return false;
12589
12590 diff = abs(clock1 - clock2);
12591
12592 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
12593 return true;
12594
12595 return false;
12596}
12597
25c5b266
DV
12598#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
12599 list_for_each_entry((intel_crtc), \
12600 &(dev)->mode_config.crtc_list, \
12601 base.head) \
95150bdf 12602 for_each_if (mask & (1 <<(intel_crtc)->pipe))
25c5b266 12603
cfb23ed6
ML
12604static bool
12605intel_compare_m_n(unsigned int m, unsigned int n,
12606 unsigned int m2, unsigned int n2,
12607 bool exact)
12608{
12609 if (m == m2 && n == n2)
12610 return true;
12611
12612 if (exact || !m || !n || !m2 || !n2)
12613 return false;
12614
12615 BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX);
12616
31d10b57
ML
12617 if (n > n2) {
12618 while (n > n2) {
cfb23ed6
ML
12619 m2 <<= 1;
12620 n2 <<= 1;
12621 }
31d10b57
ML
12622 } else if (n < n2) {
12623 while (n < n2) {
cfb23ed6
ML
12624 m <<= 1;
12625 n <<= 1;
12626 }
12627 }
12628
31d10b57
ML
12629 if (n != n2)
12630 return false;
12631
12632 return intel_fuzzy_clock_check(m, m2);
cfb23ed6
ML
12633}
12634
12635static bool
12636intel_compare_link_m_n(const struct intel_link_m_n *m_n,
12637 struct intel_link_m_n *m2_n2,
12638 bool adjust)
12639{
12640 if (m_n->tu == m2_n2->tu &&
12641 intel_compare_m_n(m_n->gmch_m, m_n->gmch_n,
12642 m2_n2->gmch_m, m2_n2->gmch_n, !adjust) &&
12643 intel_compare_m_n(m_n->link_m, m_n->link_n,
12644 m2_n2->link_m, m2_n2->link_n, !adjust)) {
12645 if (adjust)
12646 *m2_n2 = *m_n;
12647
12648 return true;
12649 }
12650
12651 return false;
12652}
12653
0e8ffe1b 12654static bool
2fa2fe9a 12655intel_pipe_config_compare(struct drm_device *dev,
5cec258b 12656 struct intel_crtc_state *current_config,
cfb23ed6
ML
12657 struct intel_crtc_state *pipe_config,
12658 bool adjust)
0e8ffe1b 12659{
cfb23ed6
ML
12660 bool ret = true;
12661
12662#define INTEL_ERR_OR_DBG_KMS(fmt, ...) \
12663 do { \
12664 if (!adjust) \
12665 DRM_ERROR(fmt, ##__VA_ARGS__); \
12666 else \
12667 DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \
12668 } while (0)
12669
66e985c0
DV
12670#define PIPE_CONF_CHECK_X(name) \
12671 if (current_config->name != pipe_config->name) { \
cfb23ed6 12672 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
66e985c0
DV
12673 "(expected 0x%08x, found 0x%08x)\n", \
12674 current_config->name, \
12675 pipe_config->name); \
cfb23ed6 12676 ret = false; \
66e985c0
DV
12677 }
12678
08a24034
DV
12679#define PIPE_CONF_CHECK_I(name) \
12680 if (current_config->name != pipe_config->name) { \
cfb23ed6 12681 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
08a24034
DV
12682 "(expected %i, found %i)\n", \
12683 current_config->name, \
12684 pipe_config->name); \
cfb23ed6
ML
12685 ret = false; \
12686 }
12687
8106ddbd
ACO
12688#define PIPE_CONF_CHECK_P(name) \
12689 if (current_config->name != pipe_config->name) { \
12690 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12691 "(expected %p, found %p)\n", \
12692 current_config->name, \
12693 pipe_config->name); \
12694 ret = false; \
12695 }
12696
cfb23ed6
ML
12697#define PIPE_CONF_CHECK_M_N(name) \
12698 if (!intel_compare_link_m_n(&current_config->name, \
12699 &pipe_config->name,\
12700 adjust)) { \
12701 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12702 "(expected tu %i gmch %i/%i link %i/%i, " \
12703 "found tu %i, gmch %i/%i link %i/%i)\n", \
12704 current_config->name.tu, \
12705 current_config->name.gmch_m, \
12706 current_config->name.gmch_n, \
12707 current_config->name.link_m, \
12708 current_config->name.link_n, \
12709 pipe_config->name.tu, \
12710 pipe_config->name.gmch_m, \
12711 pipe_config->name.gmch_n, \
12712 pipe_config->name.link_m, \
12713 pipe_config->name.link_n); \
12714 ret = false; \
12715 }
12716
55c561a7
DV
12717/* This is required for BDW+ where there is only one set of registers for
12718 * switching between high and low RR.
12719 * This macro can be used whenever a comparison has to be made between one
12720 * hw state and multiple sw state variables.
12721 */
cfb23ed6
ML
12722#define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \
12723 if (!intel_compare_link_m_n(&current_config->name, \
12724 &pipe_config->name, adjust) && \
12725 !intel_compare_link_m_n(&current_config->alt_name, \
12726 &pipe_config->name, adjust)) { \
12727 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12728 "(expected tu %i gmch %i/%i link %i/%i, " \
12729 "or tu %i gmch %i/%i link %i/%i, " \
12730 "found tu %i, gmch %i/%i link %i/%i)\n", \
12731 current_config->name.tu, \
12732 current_config->name.gmch_m, \
12733 current_config->name.gmch_n, \
12734 current_config->name.link_m, \
12735 current_config->name.link_n, \
12736 current_config->alt_name.tu, \
12737 current_config->alt_name.gmch_m, \
12738 current_config->alt_name.gmch_n, \
12739 current_config->alt_name.link_m, \
12740 current_config->alt_name.link_n, \
12741 pipe_config->name.tu, \
12742 pipe_config->name.gmch_m, \
12743 pipe_config->name.gmch_n, \
12744 pipe_config->name.link_m, \
12745 pipe_config->name.link_n); \
12746 ret = false; \
88adfff1
DV
12747 }
12748
1bd1bd80
DV
12749#define PIPE_CONF_CHECK_FLAGS(name, mask) \
12750 if ((current_config->name ^ pipe_config->name) & (mask)) { \
cfb23ed6 12751 INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \
1bd1bd80
DV
12752 "(expected %i, found %i)\n", \
12753 current_config->name & (mask), \
12754 pipe_config->name & (mask)); \
cfb23ed6 12755 ret = false; \
1bd1bd80
DV
12756 }
12757
5e550656
VS
12758#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
12759 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
cfb23ed6 12760 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
5e550656
VS
12761 "(expected %i, found %i)\n", \
12762 current_config->name, \
12763 pipe_config->name); \
cfb23ed6 12764 ret = false; \
5e550656
VS
12765 }
12766
bb760063
DV
12767#define PIPE_CONF_QUIRK(quirk) \
12768 ((current_config->quirks | pipe_config->quirks) & (quirk))
12769
eccb140b
DV
12770 PIPE_CONF_CHECK_I(cpu_transcoder);
12771
08a24034
DV
12772 PIPE_CONF_CHECK_I(has_pch_encoder);
12773 PIPE_CONF_CHECK_I(fdi_lanes);
cfb23ed6 12774 PIPE_CONF_CHECK_M_N(fdi_m_n);
08a24034 12775
90a6b7b0 12776 PIPE_CONF_CHECK_I(lane_count);
95a7a2ae 12777 PIPE_CONF_CHECK_X(lane_lat_optim_mask);
b95af8be
VK
12778
12779 if (INTEL_INFO(dev)->gen < 8) {
cfb23ed6
ML
12780 PIPE_CONF_CHECK_M_N(dp_m_n);
12781
cfb23ed6
ML
12782 if (current_config->has_drrs)
12783 PIPE_CONF_CHECK_M_N(dp_m2_n2);
12784 } else
12785 PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2);
eb14cb74 12786
a65347ba 12787 PIPE_CONF_CHECK_I(has_dsi_encoder);
253c84c8 12788 PIPE_CONF_CHECK_X(output_types);
a65347ba 12789
2d112de7
ACO
12790 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
12791 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
12792 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
12793 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
12794 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
12795 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
1bd1bd80 12796
2d112de7
ACO
12797 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
12798 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
12799 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
12800 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
12801 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
12802 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
1bd1bd80 12803
c93f54cf 12804 PIPE_CONF_CHECK_I(pixel_multiplier);
6897b4b5 12805 PIPE_CONF_CHECK_I(has_hdmi_sink);
b5a9fa09 12806 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
666a4537 12807 IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
b5a9fa09 12808 PIPE_CONF_CHECK_I(limited_color_range);
e43823ec 12809 PIPE_CONF_CHECK_I(has_infoframe);
6c49f241 12810
9ed109a7
DV
12811 PIPE_CONF_CHECK_I(has_audio);
12812
2d112de7 12813 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
1bd1bd80
DV
12814 DRM_MODE_FLAG_INTERLACE);
12815
bb760063 12816 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
2d112de7 12817 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12818 DRM_MODE_FLAG_PHSYNC);
2d112de7 12819 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12820 DRM_MODE_FLAG_NHSYNC);
2d112de7 12821 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12822 DRM_MODE_FLAG_PVSYNC);
2d112de7 12823 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063
DV
12824 DRM_MODE_FLAG_NVSYNC);
12825 }
045ac3b5 12826
333b8ca8 12827 PIPE_CONF_CHECK_X(gmch_pfit.control);
e2ff2d4a
DV
12828 /* pfit ratios are autocomputed by the hw on gen4+ */
12829 if (INTEL_INFO(dev)->gen < 4)
7f7d8dd6 12830 PIPE_CONF_CHECK_X(gmch_pfit.pgm_ratios);
333b8ca8 12831 PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits);
9953599b 12832
bfd16b2a
ML
12833 if (!adjust) {
12834 PIPE_CONF_CHECK_I(pipe_src_w);
12835 PIPE_CONF_CHECK_I(pipe_src_h);
12836
12837 PIPE_CONF_CHECK_I(pch_pfit.enabled);
12838 if (current_config->pch_pfit.enabled) {
12839 PIPE_CONF_CHECK_X(pch_pfit.pos);
12840 PIPE_CONF_CHECK_X(pch_pfit.size);
12841 }
2fa2fe9a 12842
7aefe2b5
ML
12843 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
12844 }
a1b2278e 12845
e59150dc
JB
12846 /* BDW+ don't expose a synchronous way to read the state */
12847 if (IS_HASWELL(dev))
12848 PIPE_CONF_CHECK_I(ips_enabled);
42db64ef 12849
282740f7
VS
12850 PIPE_CONF_CHECK_I(double_wide);
12851
26804afd
DV
12852 PIPE_CONF_CHECK_X(ddi_pll_sel);
12853
8106ddbd 12854 PIPE_CONF_CHECK_P(shared_dpll);
66e985c0 12855 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
8bcc2795 12856 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
66e985c0
DV
12857 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
12858 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
d452c5b6 12859 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
00490c22 12860 PIPE_CONF_CHECK_X(dpll_hw_state.spll);
3f4cd19f
DL
12861 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
12862 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
12863 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
c0d43d62 12864
47eacbab
VS
12865 PIPE_CONF_CHECK_X(dsi_pll.ctrl);
12866 PIPE_CONF_CHECK_X(dsi_pll.div);
12867
42571aef
VS
12868 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
12869 PIPE_CONF_CHECK_I(pipe_bpp);
12870
2d112de7 12871 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
a9a7e98a 12872 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
5e550656 12873
66e985c0 12874#undef PIPE_CONF_CHECK_X
08a24034 12875#undef PIPE_CONF_CHECK_I
8106ddbd 12876#undef PIPE_CONF_CHECK_P
1bd1bd80 12877#undef PIPE_CONF_CHECK_FLAGS
5e550656 12878#undef PIPE_CONF_CHECK_CLOCK_FUZZY
bb760063 12879#undef PIPE_CONF_QUIRK
cfb23ed6 12880#undef INTEL_ERR_OR_DBG_KMS
88adfff1 12881
cfb23ed6 12882 return ret;
0e8ffe1b
DV
12883}
12884
e3b247da
VS
12885static void intel_pipe_config_sanity_check(struct drm_i915_private *dev_priv,
12886 const struct intel_crtc_state *pipe_config)
12887{
12888 if (pipe_config->has_pch_encoder) {
21a727b3 12889 int fdi_dotclock = intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config),
e3b247da
VS
12890 &pipe_config->fdi_m_n);
12891 int dotclock = pipe_config->base.adjusted_mode.crtc_clock;
12892
12893 /*
12894 * FDI already provided one idea for the dotclock.
12895 * Yell if the encoder disagrees.
12896 */
12897 WARN(!intel_fuzzy_clock_check(fdi_dotclock, dotclock),
12898 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
12899 fdi_dotclock, dotclock);
12900 }
12901}
12902
c0ead703
ML
12903static void verify_wm_state(struct drm_crtc *crtc,
12904 struct drm_crtc_state *new_state)
08db6652 12905{
e7c84544 12906 struct drm_device *dev = crtc->dev;
fac5e23e 12907 struct drm_i915_private *dev_priv = to_i915(dev);
08db6652 12908 struct skl_ddb_allocation hw_ddb, *sw_ddb;
e7c84544
ML
12909 struct skl_ddb_entry *hw_entry, *sw_entry;
12910 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12911 const enum pipe pipe = intel_crtc->pipe;
08db6652
DL
12912 int plane;
12913
e7c84544 12914 if (INTEL_INFO(dev)->gen < 9 || !new_state->active)
08db6652
DL
12915 return;
12916
12917 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
12918 sw_ddb = &dev_priv->wm.skl_hw.ddb;
12919
e7c84544
ML
12920 /* planes */
12921 for_each_plane(dev_priv, pipe, plane) {
12922 hw_entry = &hw_ddb.plane[pipe][plane];
12923 sw_entry = &sw_ddb->plane[pipe][plane];
08db6652 12924
e7c84544 12925 if (skl_ddb_entry_equal(hw_entry, sw_entry))
08db6652
DL
12926 continue;
12927
e7c84544
ML
12928 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
12929 "(expected (%u,%u), found (%u,%u))\n",
12930 pipe_name(pipe), plane + 1,
12931 sw_entry->start, sw_entry->end,
12932 hw_entry->start, hw_entry->end);
12933 }
08db6652 12934
e7c84544
ML
12935 /* cursor */
12936 hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR];
12937 sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR];
08db6652 12938
e7c84544 12939 if (!skl_ddb_entry_equal(hw_entry, sw_entry)) {
08db6652
DL
12940 DRM_ERROR("mismatch in DDB state pipe %c cursor "
12941 "(expected (%u,%u), found (%u,%u))\n",
12942 pipe_name(pipe),
12943 sw_entry->start, sw_entry->end,
12944 hw_entry->start, hw_entry->end);
12945 }
12946}
12947
91d1b4bd 12948static void
c0ead703 12949verify_connector_state(struct drm_device *dev, struct drm_crtc *crtc)
8af6cf88 12950{
35dd3c64 12951 struct drm_connector *connector;
8af6cf88 12952
e7c84544 12953 drm_for_each_connector(connector, dev) {
35dd3c64
ML
12954 struct drm_encoder *encoder = connector->encoder;
12955 struct drm_connector_state *state = connector->state;
ad3c558f 12956
e7c84544
ML
12957 if (state->crtc != crtc)
12958 continue;
12959
5a21b665 12960 intel_connector_verify_state(to_intel_connector(connector));
8af6cf88 12961
ad3c558f 12962 I915_STATE_WARN(state->best_encoder != encoder,
35dd3c64 12963 "connector's atomic encoder doesn't match legacy encoder\n");
8af6cf88 12964 }
91d1b4bd
DV
12965}
12966
12967static void
c0ead703 12968verify_encoder_state(struct drm_device *dev)
91d1b4bd
DV
12969{
12970 struct intel_encoder *encoder;
12971 struct intel_connector *connector;
8af6cf88 12972
b2784e15 12973 for_each_intel_encoder(dev, encoder) {
8af6cf88 12974 bool enabled = false;
4d20cd86 12975 enum pipe pipe;
8af6cf88
DV
12976
12977 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
12978 encoder->base.base.id,
8e329a03 12979 encoder->base.name);
8af6cf88 12980
3a3371ff 12981 for_each_intel_connector(dev, connector) {
4d20cd86 12982 if (connector->base.state->best_encoder != &encoder->base)
8af6cf88
DV
12983 continue;
12984 enabled = true;
ad3c558f
ML
12985
12986 I915_STATE_WARN(connector->base.state->crtc !=
12987 encoder->base.crtc,
12988 "connector's crtc doesn't match encoder crtc\n");
8af6cf88 12989 }
0e32b39c 12990
e2c719b7 12991 I915_STATE_WARN(!!encoder->base.crtc != enabled,
8af6cf88
DV
12992 "encoder's enabled state mismatch "
12993 "(expected %i, found %i)\n",
12994 !!encoder->base.crtc, enabled);
7c60d198
ML
12995
12996 if (!encoder->base.crtc) {
4d20cd86 12997 bool active;
7c60d198 12998
4d20cd86
ML
12999 active = encoder->get_hw_state(encoder, &pipe);
13000 I915_STATE_WARN(active,
13001 "encoder detached but still enabled on pipe %c.\n",
13002 pipe_name(pipe));
7c60d198 13003 }
8af6cf88 13004 }
91d1b4bd
DV
13005}
13006
13007static void
c0ead703
ML
13008verify_crtc_state(struct drm_crtc *crtc,
13009 struct drm_crtc_state *old_crtc_state,
13010 struct drm_crtc_state *new_crtc_state)
91d1b4bd 13011{
e7c84544 13012 struct drm_device *dev = crtc->dev;
fac5e23e 13013 struct drm_i915_private *dev_priv = to_i915(dev);
91d1b4bd 13014 struct intel_encoder *encoder;
e7c84544
ML
13015 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13016 struct intel_crtc_state *pipe_config, *sw_config;
13017 struct drm_atomic_state *old_state;
13018 bool active;
045ac3b5 13019
e7c84544 13020 old_state = old_crtc_state->state;
ec2dc6a0 13021 __drm_atomic_helper_crtc_destroy_state(old_crtc_state);
e7c84544
ML
13022 pipe_config = to_intel_crtc_state(old_crtc_state);
13023 memset(pipe_config, 0, sizeof(*pipe_config));
13024 pipe_config->base.crtc = crtc;
13025 pipe_config->base.state = old_state;
8af6cf88 13026
78108b7c 13027 DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
8af6cf88 13028
e7c84544 13029 active = dev_priv->display.get_pipe_config(intel_crtc, pipe_config);
d62cf62a 13030
e7c84544
ML
13031 /* hw state is inconsistent with the pipe quirk */
13032 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
13033 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
13034 active = new_crtc_state->active;
6c49f241 13035
e7c84544
ML
13036 I915_STATE_WARN(new_crtc_state->active != active,
13037 "crtc active state doesn't match with hw state "
13038 "(expected %i, found %i)\n", new_crtc_state->active, active);
0e8ffe1b 13039
e7c84544
ML
13040 I915_STATE_WARN(intel_crtc->active != new_crtc_state->active,
13041 "transitional active state does not match atomic hw state "
13042 "(expected %i, found %i)\n", new_crtc_state->active, intel_crtc->active);
4d20cd86 13043
e7c84544
ML
13044 for_each_encoder_on_crtc(dev, crtc, encoder) {
13045 enum pipe pipe;
4d20cd86 13046
e7c84544
ML
13047 active = encoder->get_hw_state(encoder, &pipe);
13048 I915_STATE_WARN(active != new_crtc_state->active,
13049 "[ENCODER:%i] active %i with crtc active %i\n",
13050 encoder->base.base.id, active, new_crtc_state->active);
4d20cd86 13051
e7c84544
ML
13052 I915_STATE_WARN(active && intel_crtc->pipe != pipe,
13053 "Encoder connected to wrong pipe %c\n",
13054 pipe_name(pipe));
4d20cd86 13055
253c84c8
VS
13056 if (active) {
13057 pipe_config->output_types |= 1 << encoder->type;
e7c84544 13058 encoder->get_config(encoder, pipe_config);
253c84c8 13059 }
e7c84544 13060 }
53d9f4e9 13061
e7c84544
ML
13062 if (!new_crtc_state->active)
13063 return;
cfb23ed6 13064
e7c84544 13065 intel_pipe_config_sanity_check(dev_priv, pipe_config);
e3b247da 13066
e7c84544
ML
13067 sw_config = to_intel_crtc_state(crtc->state);
13068 if (!intel_pipe_config_compare(dev, sw_config,
13069 pipe_config, false)) {
13070 I915_STATE_WARN(1, "pipe state doesn't match!\n");
13071 intel_dump_pipe_config(intel_crtc, pipe_config,
13072 "[hw state]");
13073 intel_dump_pipe_config(intel_crtc, sw_config,
13074 "[sw state]");
8af6cf88
DV
13075 }
13076}
13077
91d1b4bd 13078static void
c0ead703
ML
13079verify_single_dpll_state(struct drm_i915_private *dev_priv,
13080 struct intel_shared_dpll *pll,
13081 struct drm_crtc *crtc,
13082 struct drm_crtc_state *new_state)
91d1b4bd 13083{
91d1b4bd 13084 struct intel_dpll_hw_state dpll_hw_state;
e7c84544
ML
13085 unsigned crtc_mask;
13086 bool active;
5358901f 13087
e7c84544 13088 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
5358901f 13089
e7c84544 13090 DRM_DEBUG_KMS("%s\n", pll->name);
5358901f 13091
e7c84544 13092 active = pll->funcs.get_hw_state(dev_priv, pll, &dpll_hw_state);
5358901f 13093
e7c84544
ML
13094 if (!(pll->flags & INTEL_DPLL_ALWAYS_ON)) {
13095 I915_STATE_WARN(!pll->on && pll->active_mask,
13096 "pll in active use but not on in sw tracking\n");
13097 I915_STATE_WARN(pll->on && !pll->active_mask,
13098 "pll is on but not used by any active crtc\n");
13099 I915_STATE_WARN(pll->on != active,
13100 "pll on state mismatch (expected %i, found %i)\n",
13101 pll->on, active);
13102 }
5358901f 13103
e7c84544 13104 if (!crtc) {
2dd66ebd 13105 I915_STATE_WARN(pll->active_mask & ~pll->config.crtc_mask,
e7c84544
ML
13106 "more active pll users than references: %x vs %x\n",
13107 pll->active_mask, pll->config.crtc_mask);
5358901f 13108
e7c84544
ML
13109 return;
13110 }
13111
13112 crtc_mask = 1 << drm_crtc_index(crtc);
13113
13114 if (new_state->active)
13115 I915_STATE_WARN(!(pll->active_mask & crtc_mask),
13116 "pll active mismatch (expected pipe %c in active mask 0x%02x)\n",
13117 pipe_name(drm_crtc_index(crtc)), pll->active_mask);
13118 else
13119 I915_STATE_WARN(pll->active_mask & crtc_mask,
13120 "pll active mismatch (didn't expect pipe %c in active mask 0x%02x)\n",
13121 pipe_name(drm_crtc_index(crtc)), pll->active_mask);
2dd66ebd 13122
e7c84544
ML
13123 I915_STATE_WARN(!(pll->config.crtc_mask & crtc_mask),
13124 "pll enabled crtcs mismatch (expected 0x%x in 0x%02x)\n",
13125 crtc_mask, pll->config.crtc_mask);
66e985c0 13126
e7c84544
ML
13127 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state,
13128 &dpll_hw_state,
13129 sizeof(dpll_hw_state)),
13130 "pll hw state mismatch\n");
13131}
13132
13133static void
c0ead703
ML
13134verify_shared_dpll_state(struct drm_device *dev, struct drm_crtc *crtc,
13135 struct drm_crtc_state *old_crtc_state,
13136 struct drm_crtc_state *new_crtc_state)
e7c84544 13137{
fac5e23e 13138 struct drm_i915_private *dev_priv = to_i915(dev);
e7c84544
ML
13139 struct intel_crtc_state *old_state = to_intel_crtc_state(old_crtc_state);
13140 struct intel_crtc_state *new_state = to_intel_crtc_state(new_crtc_state);
13141
13142 if (new_state->shared_dpll)
c0ead703 13143 verify_single_dpll_state(dev_priv, new_state->shared_dpll, crtc, new_crtc_state);
e7c84544
ML
13144
13145 if (old_state->shared_dpll &&
13146 old_state->shared_dpll != new_state->shared_dpll) {
13147 unsigned crtc_mask = 1 << drm_crtc_index(crtc);
13148 struct intel_shared_dpll *pll = old_state->shared_dpll;
13149
13150 I915_STATE_WARN(pll->active_mask & crtc_mask,
13151 "pll active mismatch (didn't expect pipe %c in active mask)\n",
13152 pipe_name(drm_crtc_index(crtc)));
13153 I915_STATE_WARN(pll->config.crtc_mask & crtc_mask,
13154 "pll enabled crtcs mismatch (found %x in enabled mask)\n",
13155 pipe_name(drm_crtc_index(crtc)));
5358901f 13156 }
8af6cf88
DV
13157}
13158
e7c84544 13159static void
c0ead703 13160intel_modeset_verify_crtc(struct drm_crtc *crtc,
e7c84544
ML
13161 struct drm_crtc_state *old_state,
13162 struct drm_crtc_state *new_state)
13163{
5a21b665
DV
13164 if (!needs_modeset(new_state) &&
13165 !to_intel_crtc_state(new_state)->update_pipe)
13166 return;
13167
c0ead703 13168 verify_wm_state(crtc, new_state);
5a21b665 13169 verify_connector_state(crtc->dev, crtc);
c0ead703
ML
13170 verify_crtc_state(crtc, old_state, new_state);
13171 verify_shared_dpll_state(crtc->dev, crtc, old_state, new_state);
e7c84544
ML
13172}
13173
13174static void
c0ead703 13175verify_disabled_dpll_state(struct drm_device *dev)
e7c84544 13176{
fac5e23e 13177 struct drm_i915_private *dev_priv = to_i915(dev);
e7c84544
ML
13178 int i;
13179
13180 for (i = 0; i < dev_priv->num_shared_dpll; i++)
c0ead703 13181 verify_single_dpll_state(dev_priv, &dev_priv->shared_dplls[i], NULL, NULL);
e7c84544
ML
13182}
13183
13184static void
c0ead703 13185intel_modeset_verify_disabled(struct drm_device *dev)
e7c84544 13186{
c0ead703
ML
13187 verify_encoder_state(dev);
13188 verify_connector_state(dev, NULL);
13189 verify_disabled_dpll_state(dev);
e7c84544
ML
13190}
13191
80715b2f
VS
13192static void update_scanline_offset(struct intel_crtc *crtc)
13193{
13194 struct drm_device *dev = crtc->base.dev;
13195
13196 /*
13197 * The scanline counter increments at the leading edge of hsync.
13198 *
13199 * On most platforms it starts counting from vtotal-1 on the
13200 * first active line. That means the scanline counter value is
13201 * always one less than what we would expect. Ie. just after
13202 * start of vblank, which also occurs at start of hsync (on the
13203 * last active line), the scanline counter will read vblank_start-1.
13204 *
13205 * On gen2 the scanline counter starts counting from 1 instead
13206 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
13207 * to keep the value positive), instead of adding one.
13208 *
13209 * On HSW+ the behaviour of the scanline counter depends on the output
13210 * type. For DP ports it behaves like most other platforms, but on HDMI
13211 * there's an extra 1 line difference. So we need to add two instead of
13212 * one to the value.
13213 */
13214 if (IS_GEN2(dev)) {
124abe07 13215 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
80715b2f
VS
13216 int vtotal;
13217
124abe07
VS
13218 vtotal = adjusted_mode->crtc_vtotal;
13219 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
80715b2f
VS
13220 vtotal /= 2;
13221
13222 crtc->scanline_offset = vtotal - 1;
13223 } else if (HAS_DDI(dev) &&
2d84d2b3 13224 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_HDMI)) {
80715b2f
VS
13225 crtc->scanline_offset = 2;
13226 } else
13227 crtc->scanline_offset = 1;
13228}
13229
ad421372 13230static void intel_modeset_clear_plls(struct drm_atomic_state *state)
ed6739ef 13231{
225da59b 13232 struct drm_device *dev = state->dev;
ed6739ef 13233 struct drm_i915_private *dev_priv = to_i915(dev);
ad421372 13234 struct intel_shared_dpll_config *shared_dpll = NULL;
0a9ab303
ACO
13235 struct drm_crtc *crtc;
13236 struct drm_crtc_state *crtc_state;
0a9ab303 13237 int i;
ed6739ef
ACO
13238
13239 if (!dev_priv->display.crtc_compute_clock)
ad421372 13240 return;
ed6739ef 13241
0a9ab303 13242 for_each_crtc_in_state(state, crtc, crtc_state, i) {
fb1a38a9 13243 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8106ddbd
ACO
13244 struct intel_shared_dpll *old_dpll =
13245 to_intel_crtc_state(crtc->state)->shared_dpll;
0a9ab303 13246
fb1a38a9 13247 if (!needs_modeset(crtc_state))
225da59b
ACO
13248 continue;
13249
8106ddbd 13250 to_intel_crtc_state(crtc_state)->shared_dpll = NULL;
fb1a38a9 13251
8106ddbd 13252 if (!old_dpll)
fb1a38a9 13253 continue;
0a9ab303 13254
ad421372
ML
13255 if (!shared_dpll)
13256 shared_dpll = intel_atomic_get_shared_dpll_state(state);
ed6739ef 13257
8106ddbd 13258 intel_shared_dpll_config_put(shared_dpll, old_dpll, intel_crtc);
ad421372 13259 }
ed6739ef
ACO
13260}
13261
99d736a2
ML
13262/*
13263 * This implements the workaround described in the "notes" section of the mode
13264 * set sequence documentation. When going from no pipes or single pipe to
13265 * multiple pipes, and planes are enabled after the pipe, we need to wait at
13266 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
13267 */
13268static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state)
13269{
13270 struct drm_crtc_state *crtc_state;
13271 struct intel_crtc *intel_crtc;
13272 struct drm_crtc *crtc;
13273 struct intel_crtc_state *first_crtc_state = NULL;
13274 struct intel_crtc_state *other_crtc_state = NULL;
13275 enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE;
13276 int i;
13277
13278 /* look at all crtc's that are going to be enabled in during modeset */
13279 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13280 intel_crtc = to_intel_crtc(crtc);
13281
13282 if (!crtc_state->active || !needs_modeset(crtc_state))
13283 continue;
13284
13285 if (first_crtc_state) {
13286 other_crtc_state = to_intel_crtc_state(crtc_state);
13287 break;
13288 } else {
13289 first_crtc_state = to_intel_crtc_state(crtc_state);
13290 first_pipe = intel_crtc->pipe;
13291 }
13292 }
13293
13294 /* No workaround needed? */
13295 if (!first_crtc_state)
13296 return 0;
13297
13298 /* w/a possibly needed, check how many crtc's are already enabled. */
13299 for_each_intel_crtc(state->dev, intel_crtc) {
13300 struct intel_crtc_state *pipe_config;
13301
13302 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
13303 if (IS_ERR(pipe_config))
13304 return PTR_ERR(pipe_config);
13305
13306 pipe_config->hsw_workaround_pipe = INVALID_PIPE;
13307
13308 if (!pipe_config->base.active ||
13309 needs_modeset(&pipe_config->base))
13310 continue;
13311
13312 /* 2 or more enabled crtcs means no need for w/a */
13313 if (enabled_pipe != INVALID_PIPE)
13314 return 0;
13315
13316 enabled_pipe = intel_crtc->pipe;
13317 }
13318
13319 if (enabled_pipe != INVALID_PIPE)
13320 first_crtc_state->hsw_workaround_pipe = enabled_pipe;
13321 else if (other_crtc_state)
13322 other_crtc_state->hsw_workaround_pipe = first_pipe;
13323
13324 return 0;
13325}
13326
27c329ed
ML
13327static int intel_modeset_all_pipes(struct drm_atomic_state *state)
13328{
13329 struct drm_crtc *crtc;
13330 struct drm_crtc_state *crtc_state;
13331 int ret = 0;
13332
13333 /* add all active pipes to the state */
13334 for_each_crtc(state->dev, crtc) {
13335 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13336 if (IS_ERR(crtc_state))
13337 return PTR_ERR(crtc_state);
13338
13339 if (!crtc_state->active || needs_modeset(crtc_state))
13340 continue;
13341
13342 crtc_state->mode_changed = true;
13343
13344 ret = drm_atomic_add_affected_connectors(state, crtc);
13345 if (ret)
13346 break;
13347
13348 ret = drm_atomic_add_affected_planes(state, crtc);
13349 if (ret)
13350 break;
13351 }
13352
13353 return ret;
13354}
13355
c347a676 13356static int intel_modeset_checks(struct drm_atomic_state *state)
054518dd 13357{
565602d7 13358 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fac5e23e 13359 struct drm_i915_private *dev_priv = to_i915(state->dev);
565602d7
ML
13360 struct drm_crtc *crtc;
13361 struct drm_crtc_state *crtc_state;
13362 int ret = 0, i;
054518dd 13363
b359283a
ML
13364 if (!check_digital_port_conflicts(state)) {
13365 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
13366 return -EINVAL;
13367 }
13368
565602d7
ML
13369 intel_state->modeset = true;
13370 intel_state->active_crtcs = dev_priv->active_crtcs;
13371
13372 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13373 if (crtc_state->active)
13374 intel_state->active_crtcs |= 1 << i;
13375 else
13376 intel_state->active_crtcs &= ~(1 << i);
8b4a7d05
MR
13377
13378 if (crtc_state->active != crtc->state->active)
13379 intel_state->active_pipe_changes |= drm_crtc_mask(crtc);
565602d7
ML
13380 }
13381
054518dd
ACO
13382 /*
13383 * See if the config requires any additional preparation, e.g.
13384 * to adjust global state with pipes off. We need to do this
13385 * here so we can get the modeset_pipe updated config for the new
13386 * mode set on this crtc. For other crtcs we need to use the
13387 * adjusted_mode bits in the crtc directly.
13388 */
27c329ed 13389 if (dev_priv->display.modeset_calc_cdclk) {
c89e39f3 13390 if (!intel_state->cdclk_pll_vco)
63911d72 13391 intel_state->cdclk_pll_vco = dev_priv->cdclk_pll.vco;
b2045352
VS
13392 if (!intel_state->cdclk_pll_vco)
13393 intel_state->cdclk_pll_vco = dev_priv->skl_preferred_vco_freq;
c89e39f3 13394
27c329ed 13395 ret = dev_priv->display.modeset_calc_cdclk(state);
c89e39f3
CT
13396 if (ret < 0)
13397 return ret;
27c329ed 13398
c89e39f3 13399 if (intel_state->dev_cdclk != dev_priv->cdclk_freq ||
63911d72 13400 intel_state->cdclk_pll_vco != dev_priv->cdclk_pll.vco)
27c329ed
ML
13401 ret = intel_modeset_all_pipes(state);
13402
13403 if (ret < 0)
054518dd 13404 return ret;
e8788cbc
ML
13405
13406 DRM_DEBUG_KMS("New cdclk calculated to be atomic %u, actual %u\n",
13407 intel_state->cdclk, intel_state->dev_cdclk);
27c329ed 13408 } else
1a617b77 13409 to_intel_atomic_state(state)->cdclk = dev_priv->atomic_cdclk_freq;
054518dd 13410
ad421372 13411 intel_modeset_clear_plls(state);
054518dd 13412
565602d7 13413 if (IS_HASWELL(dev_priv))
ad421372 13414 return haswell_mode_set_planes_workaround(state);
99d736a2 13415
ad421372 13416 return 0;
c347a676
ACO
13417}
13418
aa363136
MR
13419/*
13420 * Handle calculation of various watermark data at the end of the atomic check
13421 * phase. The code here should be run after the per-crtc and per-plane 'check'
13422 * handlers to ensure that all derived state has been updated.
13423 */
55994c2c 13424static int calc_watermark_data(struct drm_atomic_state *state)
aa363136
MR
13425{
13426 struct drm_device *dev = state->dev;
98d39494 13427 struct drm_i915_private *dev_priv = to_i915(dev);
98d39494
MR
13428
13429 /* Is there platform-specific watermark information to calculate? */
13430 if (dev_priv->display.compute_global_watermarks)
55994c2c
MR
13431 return dev_priv->display.compute_global_watermarks(state);
13432
13433 return 0;
aa363136
MR
13434}
13435
74c090b1
ML
13436/**
13437 * intel_atomic_check - validate state object
13438 * @dev: drm device
13439 * @state: state to validate
13440 */
13441static int intel_atomic_check(struct drm_device *dev,
13442 struct drm_atomic_state *state)
c347a676 13443{
dd8b3bdb 13444 struct drm_i915_private *dev_priv = to_i915(dev);
aa363136 13445 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
c347a676
ACO
13446 struct drm_crtc *crtc;
13447 struct drm_crtc_state *crtc_state;
13448 int ret, i;
61333b60 13449 bool any_ms = false;
c347a676 13450
74c090b1 13451 ret = drm_atomic_helper_check_modeset(dev, state);
054518dd
ACO
13452 if (ret)
13453 return ret;
13454
c347a676 13455 for_each_crtc_in_state(state, crtc, crtc_state, i) {
cfb23ed6
ML
13456 struct intel_crtc_state *pipe_config =
13457 to_intel_crtc_state(crtc_state);
1ed51de9
DV
13458
13459 /* Catch I915_MODE_FLAG_INHERITED */
13460 if (crtc_state->mode.private_flags != crtc->state->mode.private_flags)
13461 crtc_state->mode_changed = true;
cfb23ed6 13462
af4a879e 13463 if (!needs_modeset(crtc_state))
c347a676
ACO
13464 continue;
13465
af4a879e
DV
13466 if (!crtc_state->enable) {
13467 any_ms = true;
cfb23ed6 13468 continue;
af4a879e 13469 }
cfb23ed6 13470
26495481
DV
13471 /* FIXME: For only active_changed we shouldn't need to do any
13472 * state recomputation at all. */
13473
1ed51de9
DV
13474 ret = drm_atomic_add_affected_connectors(state, crtc);
13475 if (ret)
13476 return ret;
b359283a 13477
cfb23ed6 13478 ret = intel_modeset_pipe_config(crtc, pipe_config);
25aa1c39
ML
13479 if (ret) {
13480 intel_dump_pipe_config(to_intel_crtc(crtc),
13481 pipe_config, "[failed]");
c347a676 13482 return ret;
25aa1c39 13483 }
c347a676 13484
73831236 13485 if (i915.fastboot &&
dd8b3bdb 13486 intel_pipe_config_compare(dev,
cfb23ed6 13487 to_intel_crtc_state(crtc->state),
1ed51de9 13488 pipe_config, true)) {
26495481 13489 crtc_state->mode_changed = false;
bfd16b2a 13490 to_intel_crtc_state(crtc_state)->update_pipe = true;
26495481
DV
13491 }
13492
af4a879e 13493 if (needs_modeset(crtc_state))
26495481 13494 any_ms = true;
cfb23ed6 13495
af4a879e
DV
13496 ret = drm_atomic_add_affected_planes(state, crtc);
13497 if (ret)
13498 return ret;
61333b60 13499
26495481
DV
13500 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
13501 needs_modeset(crtc_state) ?
13502 "[modeset]" : "[fastset]");
c347a676
ACO
13503 }
13504
61333b60
ML
13505 if (any_ms) {
13506 ret = intel_modeset_checks(state);
13507
13508 if (ret)
13509 return ret;
27c329ed 13510 } else
dd8b3bdb 13511 intel_state->cdclk = dev_priv->cdclk_freq;
76305b1a 13512
dd8b3bdb 13513 ret = drm_atomic_helper_check_planes(dev, state);
aa363136
MR
13514 if (ret)
13515 return ret;
13516
f51be2e0 13517 intel_fbc_choose_crtc(dev_priv, state);
55994c2c 13518 return calc_watermark_data(state);
054518dd
ACO
13519}
13520
5008e874
ML
13521static int intel_atomic_prepare_commit(struct drm_device *dev,
13522 struct drm_atomic_state *state,
81072bfd 13523 bool nonblock)
5008e874 13524{
fac5e23e 13525 struct drm_i915_private *dev_priv = to_i915(dev);
7580d774 13526 struct drm_plane_state *plane_state;
5008e874 13527 struct drm_crtc_state *crtc_state;
7580d774 13528 struct drm_plane *plane;
5008e874
ML
13529 struct drm_crtc *crtc;
13530 int i, ret;
13531
5a21b665
DV
13532 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13533 if (state->legacy_cursor_update)
a6747b73
ML
13534 continue;
13535
5a21b665
DV
13536 ret = intel_crtc_wait_for_pending_flips(crtc);
13537 if (ret)
13538 return ret;
5008e874 13539
5a21b665
DV
13540 if (atomic_read(&to_intel_crtc(crtc)->unpin_work_count) >= 2)
13541 flush_workqueue(dev_priv->wq);
d55dbd06
ML
13542 }
13543
f935675f
ML
13544 ret = mutex_lock_interruptible(&dev->struct_mutex);
13545 if (ret)
13546 return ret;
13547
5008e874 13548 ret = drm_atomic_helper_prepare_planes(dev, state);
f7e5838b 13549 mutex_unlock(&dev->struct_mutex);
7580d774 13550
21daaeee 13551 if (!ret && !nonblock) {
7580d774
ML
13552 for_each_plane_in_state(state, plane, plane_state, i) {
13553 struct intel_plane_state *intel_plane_state =
13554 to_intel_plane_state(plane_state);
13555
13556 if (!intel_plane_state->wait_req)
13557 continue;
13558
13559 ret = __i915_wait_request(intel_plane_state->wait_req,
299259a3 13560 true, NULL, NULL);
f7e5838b 13561 if (ret) {
f4457ae7
CW
13562 /* Any hang should be swallowed by the wait */
13563 WARN_ON(ret == -EIO);
f7e5838b
CW
13564 mutex_lock(&dev->struct_mutex);
13565 drm_atomic_helper_cleanup_planes(dev, state);
13566 mutex_unlock(&dev->struct_mutex);
7580d774 13567 break;
f7e5838b 13568 }
7580d774 13569 }
7580d774 13570 }
5008e874
ML
13571
13572 return ret;
13573}
13574
a2991414
ML
13575u32 intel_crtc_get_vblank_counter(struct intel_crtc *crtc)
13576{
13577 struct drm_device *dev = crtc->base.dev;
13578
13579 if (!dev->max_vblank_count)
13580 return drm_accurate_vblank_count(&crtc->base);
13581
13582 return dev->driver->get_vblank_counter(dev, crtc->pipe);
13583}
13584
5a21b665
DV
13585static void intel_atomic_wait_for_vblanks(struct drm_device *dev,
13586 struct drm_i915_private *dev_priv,
13587 unsigned crtc_mask)
e8861675 13588{
5a21b665
DV
13589 unsigned last_vblank_count[I915_MAX_PIPES];
13590 enum pipe pipe;
13591 int ret;
e8861675 13592
5a21b665
DV
13593 if (!crtc_mask)
13594 return;
e8861675 13595
5a21b665
DV
13596 for_each_pipe(dev_priv, pipe) {
13597 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
e8861675 13598
5a21b665 13599 if (!((1 << pipe) & crtc_mask))
e8861675
ML
13600 continue;
13601
5a21b665
DV
13602 ret = drm_crtc_vblank_get(crtc);
13603 if (WARN_ON(ret != 0)) {
13604 crtc_mask &= ~(1 << pipe);
13605 continue;
e8861675
ML
13606 }
13607
5a21b665 13608 last_vblank_count[pipe] = drm_crtc_vblank_count(crtc);
e8861675
ML
13609 }
13610
5a21b665
DV
13611 for_each_pipe(dev_priv, pipe) {
13612 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
13613 long lret;
e8861675 13614
5a21b665
DV
13615 if (!((1 << pipe) & crtc_mask))
13616 continue;
d55dbd06 13617
5a21b665
DV
13618 lret = wait_event_timeout(dev->vblank[pipe].queue,
13619 last_vblank_count[pipe] !=
13620 drm_crtc_vblank_count(crtc),
13621 msecs_to_jiffies(50));
d55dbd06 13622
5a21b665 13623 WARN(!lret, "pipe %c vblank wait timed out\n", pipe_name(pipe));
d55dbd06 13624
5a21b665 13625 drm_crtc_vblank_put(crtc);
d55dbd06
ML
13626 }
13627}
13628
5a21b665 13629static bool needs_vblank_wait(struct intel_crtc_state *crtc_state)
a6747b73 13630{
5a21b665
DV
13631 /* fb updated, need to unpin old fb */
13632 if (crtc_state->fb_changed)
13633 return true;
a6747b73 13634
5a21b665
DV
13635 /* wm changes, need vblank before final wm's */
13636 if (crtc_state->update_wm_post)
13637 return true;
a6747b73 13638
5a21b665
DV
13639 /*
13640 * cxsr is re-enabled after vblank.
13641 * This is already handled by crtc_state->update_wm_post,
13642 * but added for clarity.
13643 */
13644 if (crtc_state->disable_cxsr)
13645 return true;
a6747b73 13646
5a21b665 13647 return false;
e8861675
ML
13648}
13649
94f05024 13650static void intel_atomic_commit_tail(struct drm_atomic_state *state)
a6778b3c 13651{
94f05024 13652 struct drm_device *dev = state->dev;
565602d7 13653 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fac5e23e 13654 struct drm_i915_private *dev_priv = to_i915(dev);
29ceb0e6 13655 struct drm_crtc_state *old_crtc_state;
7580d774 13656 struct drm_crtc *crtc;
5a21b665 13657 struct intel_crtc_state *intel_cstate;
94f05024
DV
13658 struct drm_plane *plane;
13659 struct drm_plane_state *plane_state;
5a21b665
DV
13660 bool hw_check = intel_state->modeset;
13661 unsigned long put_domains[I915_MAX_PIPES] = {};
13662 unsigned crtc_vblank_mask = 0;
94f05024 13663 int i, ret;
a6778b3c 13664
94f05024
DV
13665 for_each_plane_in_state(state, plane, plane_state, i) {
13666 struct intel_plane_state *intel_plane_state =
13667 to_intel_plane_state(plane_state);
ea0000f0 13668
94f05024
DV
13669 if (!intel_plane_state->wait_req)
13670 continue;
d4afb8cc 13671
94f05024
DV
13672 ret = __i915_wait_request(intel_plane_state->wait_req,
13673 true, NULL, NULL);
13674 /* EIO should be eaten, and we can't get interrupted in the
13675 * worker, and blocking commits have waited already. */
13676 WARN_ON(ret);
13677 }
1c5e19f8 13678
ea0000f0
DV
13679 drm_atomic_helper_wait_for_dependencies(state);
13680
565602d7
ML
13681 if (intel_state->modeset) {
13682 memcpy(dev_priv->min_pixclk, intel_state->min_pixclk,
13683 sizeof(intel_state->min_pixclk));
13684 dev_priv->active_crtcs = intel_state->active_crtcs;
1a617b77 13685 dev_priv->atomic_cdclk_freq = intel_state->cdclk;
5a21b665
DV
13686
13687 intel_display_power_get(dev_priv, POWER_DOMAIN_MODESET);
565602d7
ML
13688 }
13689
29ceb0e6 13690 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
a539205a
ML
13691 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13692
5a21b665
DV
13693 if (needs_modeset(crtc->state) ||
13694 to_intel_crtc_state(crtc->state)->update_pipe) {
13695 hw_check = true;
13696
13697 put_domains[to_intel_crtc(crtc)->pipe] =
13698 modeset_get_crtc_power_domains(crtc,
13699 to_intel_crtc_state(crtc->state));
13700 }
13701
61333b60
ML
13702 if (!needs_modeset(crtc->state))
13703 continue;
13704
29ceb0e6 13705 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state));
460da916 13706
29ceb0e6
VS
13707 if (old_crtc_state->active) {
13708 intel_crtc_disable_planes(crtc, old_crtc_state->plane_mask);
a539205a 13709 dev_priv->display.crtc_disable(crtc);
eddfcbcd 13710 intel_crtc->active = false;
58f9c0bc 13711 intel_fbc_disable(intel_crtc);
eddfcbcd 13712 intel_disable_shared_dpll(intel_crtc);
9bbc8258
VS
13713
13714 /*
13715 * Underruns don't always raise
13716 * interrupts, so check manually.
13717 */
13718 intel_check_cpu_fifo_underruns(dev_priv);
13719 intel_check_pch_fifo_underruns(dev_priv);
b9001114
ML
13720
13721 if (!crtc->state->active)
13722 intel_update_watermarks(crtc);
a539205a 13723 }
b8cecdf5 13724 }
7758a113 13725
ea9d758d
DV
13726 /* Only after disabling all output pipelines that will be changed can we
13727 * update the the output configuration. */
4740b0f2 13728 intel_modeset_update_crtc_state(state);
f6e5b160 13729
565602d7 13730 if (intel_state->modeset) {
4740b0f2 13731 drm_atomic_helper_update_legacy_modeset_state(state->dev, state);
33c8df89
ML
13732
13733 if (dev_priv->display.modeset_commit_cdclk &&
c89e39f3 13734 (intel_state->dev_cdclk != dev_priv->cdclk_freq ||
63911d72 13735 intel_state->cdclk_pll_vco != dev_priv->cdclk_pll.vco))
33c8df89 13736 dev_priv->display.modeset_commit_cdclk(state);
f6d1973d 13737
c0ead703 13738 intel_modeset_verify_disabled(dev);
4740b0f2 13739 }
47fab737 13740
a6778b3c 13741 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
29ceb0e6 13742 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
f6ac4b2a
ML
13743 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13744 bool modeset = needs_modeset(crtc->state);
5a21b665
DV
13745 struct intel_crtc_state *pipe_config =
13746 to_intel_crtc_state(crtc->state);
9f836f90 13747
f6ac4b2a 13748 if (modeset && crtc->state->active) {
a539205a
ML
13749 update_scanline_offset(to_intel_crtc(crtc));
13750 dev_priv->display.crtc_enable(crtc);
13751 }
80715b2f 13752
1f7528c4
DV
13753 /* Complete events for now disable pipes here. */
13754 if (modeset && !crtc->state->active && crtc->state->event) {
13755 spin_lock_irq(&dev->event_lock);
13756 drm_crtc_send_vblank_event(crtc, crtc->state->event);
13757 spin_unlock_irq(&dev->event_lock);
13758
13759 crtc->state->event = NULL;
13760 }
13761
f6ac4b2a 13762 if (!modeset)
29ceb0e6 13763 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state));
f6ac4b2a 13764
5a21b665
DV
13765 if (crtc->state->active &&
13766 drm_atomic_get_existing_plane_state(state, crtc->primary))
faf68d92 13767 intel_fbc_enable(intel_crtc, pipe_config, to_intel_plane_state(crtc->primary->state));
5a21b665 13768
1f7528c4 13769 if (crtc->state->active)
5a21b665 13770 drm_atomic_helper_commit_planes_on_crtc(old_crtc_state);
f6d1973d 13771
5a21b665
DV
13772 if (pipe_config->base.active && needs_vblank_wait(pipe_config))
13773 crtc_vblank_mask |= 1 << i;
177246a8
MR
13774 }
13775
94f05024
DV
13776 /* FIXME: We should call drm_atomic_helper_commit_hw_done() here
13777 * already, but still need the state for the delayed optimization. To
13778 * fix this:
13779 * - wrap the optimization/post_plane_update stuff into a per-crtc work.
13780 * - schedule that vblank worker _before_ calling hw_done
13781 * - at the start of commit_tail, cancel it _synchrously
13782 * - switch over to the vblank wait helper in the core after that since
13783 * we don't need out special handling any more.
13784 */
5a21b665
DV
13785 if (!state->legacy_cursor_update)
13786 intel_atomic_wait_for_vblanks(dev, dev_priv, crtc_vblank_mask);
13787
13788 /*
13789 * Now that the vblank has passed, we can go ahead and program the
13790 * optimal watermarks on platforms that need two-step watermark
13791 * programming.
13792 *
13793 * TODO: Move this (and other cleanup) to an async worker eventually.
13794 */
13795 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
13796 intel_cstate = to_intel_crtc_state(crtc->state);
13797
13798 if (dev_priv->display.optimize_watermarks)
13799 dev_priv->display.optimize_watermarks(intel_cstate);
13800 }
13801
13802 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
13803 intel_post_plane_update(to_intel_crtc_state(old_crtc_state));
13804
13805 if (put_domains[i])
13806 modeset_put_power_domains(dev_priv, put_domains[i]);
13807
13808 intel_modeset_verify_crtc(crtc, old_crtc_state, crtc->state);
13809 }
13810
94f05024
DV
13811 drm_atomic_helper_commit_hw_done(state);
13812
5a21b665
DV
13813 if (intel_state->modeset)
13814 intel_display_power_put(dev_priv, POWER_DOMAIN_MODESET);
13815
13816 mutex_lock(&dev->struct_mutex);
13817 drm_atomic_helper_cleanup_planes(dev, state);
13818 mutex_unlock(&dev->struct_mutex);
13819
ea0000f0
DV
13820 drm_atomic_helper_commit_cleanup_done(state);
13821
ee165b1a 13822 drm_atomic_state_free(state);
f30da187 13823
75714940
MK
13824 /* As one of the primary mmio accessors, KMS has a high likelihood
13825 * of triggering bugs in unclaimed access. After we finish
13826 * modesetting, see if an error has been flagged, and if so
13827 * enable debugging for the next modeset - and hope we catch
13828 * the culprit.
13829 *
13830 * XXX note that we assume display power is on at this point.
13831 * This might hold true now but we need to add pm helper to check
13832 * unclaimed only when the hardware is on, as atomic commits
13833 * can happen also when the device is completely off.
13834 */
13835 intel_uncore_arm_unclaimed_mmio_detection(dev_priv);
94f05024
DV
13836}
13837
13838static void intel_atomic_commit_work(struct work_struct *work)
13839{
13840 struct drm_atomic_state *state = container_of(work,
13841 struct drm_atomic_state,
13842 commit_work);
13843 intel_atomic_commit_tail(state);
13844}
13845
6c9c1b38
DV
13846static void intel_atomic_track_fbs(struct drm_atomic_state *state)
13847{
13848 struct drm_plane_state *old_plane_state;
13849 struct drm_plane *plane;
13850 struct drm_i915_gem_object *obj, *old_obj;
13851 struct intel_plane *intel_plane;
13852 int i;
13853
13854 mutex_lock(&state->dev->struct_mutex);
13855 for_each_plane_in_state(state, plane, old_plane_state, i) {
13856 obj = intel_fb_obj(plane->state->fb);
13857 old_obj = intel_fb_obj(old_plane_state->fb);
13858 intel_plane = to_intel_plane(plane);
13859
13860 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
13861 }
13862 mutex_unlock(&state->dev->struct_mutex);
13863}
13864
94f05024
DV
13865/**
13866 * intel_atomic_commit - commit validated state object
13867 * @dev: DRM device
13868 * @state: the top-level driver state object
13869 * @nonblock: nonblocking commit
13870 *
13871 * This function commits a top-level state object that has been validated
13872 * with drm_atomic_helper_check().
13873 *
13874 * FIXME: Atomic modeset support for i915 is not yet complete. At the moment
13875 * nonblocking commits are only safe for pure plane updates. Everything else
13876 * should work though.
13877 *
13878 * RETURNS
13879 * Zero for success or -errno.
13880 */
13881static int intel_atomic_commit(struct drm_device *dev,
13882 struct drm_atomic_state *state,
13883 bool nonblock)
13884{
13885 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fac5e23e 13886 struct drm_i915_private *dev_priv = to_i915(dev);
94f05024
DV
13887 int ret = 0;
13888
13889 if (intel_state->modeset && nonblock) {
13890 DRM_DEBUG_KMS("nonblocking commit for modeset not yet implemented.\n");
13891 return -EINVAL;
13892 }
13893
13894 ret = drm_atomic_helper_setup_commit(state, nonblock);
13895 if (ret)
13896 return ret;
13897
13898 INIT_WORK(&state->commit_work, intel_atomic_commit_work);
13899
13900 ret = intel_atomic_prepare_commit(dev, state, nonblock);
13901 if (ret) {
13902 DRM_DEBUG_ATOMIC("Preparing state failed with %i\n", ret);
13903 return ret;
13904 }
13905
13906 drm_atomic_helper_swap_state(state, true);
13907 dev_priv->wm.distrust_bios_wm = false;
13908 dev_priv->wm.skl_results = intel_state->wm_results;
13909 intel_shared_dpll_commit(state);
6c9c1b38 13910 intel_atomic_track_fbs(state);
94f05024
DV
13911
13912 if (nonblock)
13913 queue_work(system_unbound_wq, &state->commit_work);
13914 else
13915 intel_atomic_commit_tail(state);
75714940 13916
74c090b1 13917 return 0;
7f27126e
JB
13918}
13919
c0c36b94
CW
13920void intel_crtc_restore_mode(struct drm_crtc *crtc)
13921{
83a57153
ACO
13922 struct drm_device *dev = crtc->dev;
13923 struct drm_atomic_state *state;
e694eb02 13924 struct drm_crtc_state *crtc_state;
2bfb4627 13925 int ret;
83a57153
ACO
13926
13927 state = drm_atomic_state_alloc(dev);
13928 if (!state) {
78108b7c
VS
13929 DRM_DEBUG_KMS("[CRTC:%d:%s] crtc restore failed, out of memory",
13930 crtc->base.id, crtc->name);
83a57153
ACO
13931 return;
13932 }
13933
e694eb02 13934 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
83a57153 13935
e694eb02
ML
13936retry:
13937 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13938 ret = PTR_ERR_OR_ZERO(crtc_state);
13939 if (!ret) {
13940 if (!crtc_state->active)
13941 goto out;
83a57153 13942
e694eb02 13943 crtc_state->mode_changed = true;
74c090b1 13944 ret = drm_atomic_commit(state);
83a57153
ACO
13945 }
13946
e694eb02
ML
13947 if (ret == -EDEADLK) {
13948 drm_atomic_state_clear(state);
13949 drm_modeset_backoff(state->acquire_ctx);
13950 goto retry;
4ed9fb37 13951 }
4be07317 13952
2bfb4627 13953 if (ret)
e694eb02 13954out:
2bfb4627 13955 drm_atomic_state_free(state);
c0c36b94
CW
13956}
13957
25c5b266
DV
13958#undef for_each_intel_crtc_masked
13959
f6e5b160 13960static const struct drm_crtc_funcs intel_crtc_funcs = {
82cf435b 13961 .gamma_set = drm_atomic_helper_legacy_gamma_set,
74c090b1 13962 .set_config = drm_atomic_helper_set_config,
82cf435b 13963 .set_property = drm_atomic_helper_crtc_set_property,
f6e5b160 13964 .destroy = intel_crtc_destroy,
527b6abe 13965 .page_flip = intel_crtc_page_flip,
1356837e
MR
13966 .atomic_duplicate_state = intel_crtc_duplicate_state,
13967 .atomic_destroy_state = intel_crtc_destroy_state,
f6e5b160
CW
13968};
13969
6beb8c23
MR
13970/**
13971 * intel_prepare_plane_fb - Prepare fb for usage on plane
13972 * @plane: drm plane to prepare for
13973 * @fb: framebuffer to prepare for presentation
13974 *
13975 * Prepares a framebuffer for usage on a display plane. Generally this
13976 * involves pinning the underlying object and updating the frontbuffer tracking
13977 * bits. Some older platforms need special physical address handling for
13978 * cursor planes.
13979 *
f935675f
ML
13980 * Must be called with struct_mutex held.
13981 *
6beb8c23
MR
13982 * Returns 0 on success, negative error code on failure.
13983 */
13984int
13985intel_prepare_plane_fb(struct drm_plane *plane,
d136dfee 13986 const struct drm_plane_state *new_state)
465c120c
MR
13987{
13988 struct drm_device *dev = plane->dev;
844f9111 13989 struct drm_framebuffer *fb = new_state->fb;
6beb8c23 13990 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
1ee49399 13991 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->state->fb);
c37efb99 13992 struct reservation_object *resv;
6beb8c23 13993 int ret = 0;
465c120c 13994
1ee49399 13995 if (!obj && !old_obj)
465c120c
MR
13996 return 0;
13997
5008e874
ML
13998 if (old_obj) {
13999 struct drm_crtc_state *crtc_state =
14000 drm_atomic_get_existing_crtc_state(new_state->state, plane->state->crtc);
14001
14002 /* Big Hammer, we also need to ensure that any pending
14003 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
14004 * current scanout is retired before unpinning the old
14005 * framebuffer. Note that we rely on userspace rendering
14006 * into the buffer attached to the pipe they are waiting
14007 * on. If not, userspace generates a GPU hang with IPEHR
14008 * point to the MI_WAIT_FOR_EVENT.
14009 *
14010 * This should only fail upon a hung GPU, in which case we
14011 * can safely continue.
14012 */
14013 if (needs_modeset(crtc_state))
14014 ret = i915_gem_object_wait_rendering(old_obj, true);
f4457ae7
CW
14015 if (ret) {
14016 /* GPU hangs should have been swallowed by the wait */
14017 WARN_ON(ret == -EIO);
f935675f 14018 return ret;
f4457ae7 14019 }
5008e874
ML
14020 }
14021
c37efb99
CW
14022 if (!obj)
14023 return 0;
14024
5a21b665 14025 /* For framebuffer backed by dmabuf, wait for fence */
c37efb99
CW
14026 resv = i915_gem_object_get_dmabuf_resv(obj);
14027 if (resv) {
5a21b665
DV
14028 long lret;
14029
c37efb99 14030 lret = reservation_object_wait_timeout_rcu(resv, false, true,
5a21b665
DV
14031 MAX_SCHEDULE_TIMEOUT);
14032 if (lret == -ERESTARTSYS)
14033 return lret;
14034
14035 WARN(lret < 0, "waiting returns %li\n", lret);
14036 }
14037
c37efb99 14038 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
6beb8c23
MR
14039 INTEL_INFO(dev)->cursor_needs_physical) {
14040 int align = IS_I830(dev) ? 16 * 1024 : 256;
14041 ret = i915_gem_object_attach_phys(obj, align);
14042 if (ret)
14043 DRM_DEBUG_KMS("failed to attach phys object\n");
14044 } else {
3465c580 14045 ret = intel_pin_and_fence_fb_obj(fb, new_state->rotation);
6beb8c23 14046 }
465c120c 14047
c37efb99 14048 if (ret == 0) {
6c9c1b38
DV
14049 struct intel_plane_state *plane_state =
14050 to_intel_plane_state(new_state);
7580d774 14051
6c9c1b38
DV
14052 i915_gem_request_assign(&plane_state->wait_req,
14053 obj->last_write_req);
7580d774 14054 }
fdd508a6 14055
6beb8c23
MR
14056 return ret;
14057}
14058
38f3ce3a
MR
14059/**
14060 * intel_cleanup_plane_fb - Cleans up an fb after plane use
14061 * @plane: drm plane to clean up for
14062 * @fb: old framebuffer that was on plane
14063 *
14064 * Cleans up a framebuffer that has just been removed from a plane.
f935675f
ML
14065 *
14066 * Must be called with struct_mutex held.
38f3ce3a
MR
14067 */
14068void
14069intel_cleanup_plane_fb(struct drm_plane *plane,
d136dfee 14070 const struct drm_plane_state *old_state)
38f3ce3a
MR
14071{
14072 struct drm_device *dev = plane->dev;
7580d774 14073 struct intel_plane_state *old_intel_state;
1ee49399
ML
14074 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_state->fb);
14075 struct drm_i915_gem_object *obj = intel_fb_obj(plane->state->fb);
38f3ce3a 14076
7580d774
ML
14077 old_intel_state = to_intel_plane_state(old_state);
14078
1ee49399 14079 if (!obj && !old_obj)
38f3ce3a
MR
14080 return;
14081
1ee49399
ML
14082 if (old_obj && (plane->type != DRM_PLANE_TYPE_CURSOR ||
14083 !INTEL_INFO(dev)->cursor_needs_physical))
3465c580 14084 intel_unpin_fb_obj(old_state->fb, old_state->rotation);
1ee49399 14085
7580d774 14086 i915_gem_request_assign(&old_intel_state->wait_req, NULL);
465c120c
MR
14087}
14088
6156a456
CK
14089int
14090skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
14091{
14092 int max_scale;
6156a456
CK
14093 int crtc_clock, cdclk;
14094
bf8a0af0 14095 if (!intel_crtc || !crtc_state->base.enable)
6156a456
CK
14096 return DRM_PLANE_HELPER_NO_SCALING;
14097
6156a456 14098 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
27c329ed 14099 cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk;
6156a456 14100
54bf1ce6 14101 if (WARN_ON_ONCE(!crtc_clock || cdclk < crtc_clock))
6156a456
CK
14102 return DRM_PLANE_HELPER_NO_SCALING;
14103
14104 /*
14105 * skl max scale is lower of:
14106 * close to 3 but not 3, -1 is for that purpose
14107 * or
14108 * cdclk/crtc_clock
14109 */
14110 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
14111
14112 return max_scale;
14113}
14114
465c120c 14115static int
3c692a41 14116intel_check_primary_plane(struct drm_plane *plane,
061e4b8d 14117 struct intel_crtc_state *crtc_state,
3c692a41
GP
14118 struct intel_plane_state *state)
14119{
2b875c22
MR
14120 struct drm_crtc *crtc = state->base.crtc;
14121 struct drm_framebuffer *fb = state->base.fb;
6156a456 14122 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
061e4b8d
ML
14123 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
14124 bool can_position = false;
465c120c 14125
693bdc28
VS
14126 if (INTEL_INFO(plane->dev)->gen >= 9) {
14127 /* use scaler when colorkey is not required */
14128 if (state->ckey.flags == I915_SET_COLORKEY_NONE) {
14129 min_scale = 1;
14130 max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state);
14131 }
d8106366 14132 can_position = true;
6156a456 14133 }
d8106366 14134
061e4b8d
ML
14135 return drm_plane_helper_check_update(plane, crtc, fb, &state->src,
14136 &state->dst, &state->clip,
9b8b013d 14137 state->base.rotation,
da20eabd
ML
14138 min_scale, max_scale,
14139 can_position, true,
14140 &state->visible);
14af293f
GP
14141}
14142
5a21b665
DV
14143static void intel_begin_crtc_commit(struct drm_crtc *crtc,
14144 struct drm_crtc_state *old_crtc_state)
14145{
14146 struct drm_device *dev = crtc->dev;
14147 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14148 struct intel_crtc_state *old_intel_state =
14149 to_intel_crtc_state(old_crtc_state);
14150 bool modeset = needs_modeset(crtc->state);
14151
14152 /* Perform vblank evasion around commit operation */
14153 intel_pipe_update_start(intel_crtc);
14154
14155 if (modeset)
14156 return;
14157
14158 if (crtc->state->color_mgmt_changed || to_intel_crtc_state(crtc->state)->update_pipe) {
14159 intel_color_set_csc(crtc->state);
14160 intel_color_load_luts(crtc->state);
14161 }
14162
14163 if (to_intel_crtc_state(crtc->state)->update_pipe)
14164 intel_update_pipe_config(intel_crtc, old_intel_state);
14165 else if (INTEL_INFO(dev)->gen >= 9)
14166 skl_detach_scalers(intel_crtc);
14167}
14168
14169static void intel_finish_crtc_commit(struct drm_crtc *crtc,
14170 struct drm_crtc_state *old_crtc_state)
14171{
14172 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14173
14174 intel_pipe_update_end(intel_crtc, NULL);
14175}
14176
cf4c7c12 14177/**
4a3b8769
MR
14178 * intel_plane_destroy - destroy a plane
14179 * @plane: plane to destroy
cf4c7c12 14180 *
4a3b8769
MR
14181 * Common destruction function for all types of planes (primary, cursor,
14182 * sprite).
cf4c7c12 14183 */
4a3b8769 14184void intel_plane_destroy(struct drm_plane *plane)
465c120c 14185{
69ae561f
VS
14186 if (!plane)
14187 return;
14188
465c120c 14189 drm_plane_cleanup(plane);
69ae561f 14190 kfree(to_intel_plane(plane));
465c120c
MR
14191}
14192
65a3fea0 14193const struct drm_plane_funcs intel_plane_funcs = {
70a101f8
MR
14194 .update_plane = drm_atomic_helper_update_plane,
14195 .disable_plane = drm_atomic_helper_disable_plane,
3d7d6510 14196 .destroy = intel_plane_destroy,
c196e1d6 14197 .set_property = drm_atomic_helper_plane_set_property,
a98b3431
MR
14198 .atomic_get_property = intel_plane_atomic_get_property,
14199 .atomic_set_property = intel_plane_atomic_set_property,
ea2c67bb
MR
14200 .atomic_duplicate_state = intel_plane_duplicate_state,
14201 .atomic_destroy_state = intel_plane_destroy_state,
14202
465c120c
MR
14203};
14204
14205static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
14206 int pipe)
14207{
fca0ce2a
VS
14208 struct intel_plane *primary = NULL;
14209 struct intel_plane_state *state = NULL;
465c120c 14210 const uint32_t *intel_primary_formats;
45e3743a 14211 unsigned int num_formats;
fca0ce2a 14212 int ret;
465c120c
MR
14213
14214 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
fca0ce2a
VS
14215 if (!primary)
14216 goto fail;
465c120c 14217
8e7d688b 14218 state = intel_create_plane_state(&primary->base);
fca0ce2a
VS
14219 if (!state)
14220 goto fail;
8e7d688b 14221 primary->base.state = &state->base;
ea2c67bb 14222
465c120c
MR
14223 primary->can_scale = false;
14224 primary->max_downscale = 1;
6156a456
CK
14225 if (INTEL_INFO(dev)->gen >= 9) {
14226 primary->can_scale = true;
af99ceda 14227 state->scaler_id = -1;
6156a456 14228 }
465c120c
MR
14229 primary->pipe = pipe;
14230 primary->plane = pipe;
a9ff8714 14231 primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe);
c59cb179 14232 primary->check_plane = intel_check_primary_plane;
465c120c
MR
14233 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
14234 primary->plane = !pipe;
14235
6c0fd451
DL
14236 if (INTEL_INFO(dev)->gen >= 9) {
14237 intel_primary_formats = skl_primary_formats;
14238 num_formats = ARRAY_SIZE(skl_primary_formats);
a8d201af
ML
14239
14240 primary->update_plane = skylake_update_primary_plane;
14241 primary->disable_plane = skylake_disable_primary_plane;
14242 } else if (HAS_PCH_SPLIT(dev)) {
14243 intel_primary_formats = i965_primary_formats;
14244 num_formats = ARRAY_SIZE(i965_primary_formats);
14245
14246 primary->update_plane = ironlake_update_primary_plane;
14247 primary->disable_plane = i9xx_disable_primary_plane;
6c0fd451 14248 } else if (INTEL_INFO(dev)->gen >= 4) {
568db4f2
DL
14249 intel_primary_formats = i965_primary_formats;
14250 num_formats = ARRAY_SIZE(i965_primary_formats);
a8d201af
ML
14251
14252 primary->update_plane = i9xx_update_primary_plane;
14253 primary->disable_plane = i9xx_disable_primary_plane;
6c0fd451
DL
14254 } else {
14255 intel_primary_formats = i8xx_primary_formats;
14256 num_formats = ARRAY_SIZE(i8xx_primary_formats);
a8d201af
ML
14257
14258 primary->update_plane = i9xx_update_primary_plane;
14259 primary->disable_plane = i9xx_disable_primary_plane;
465c120c
MR
14260 }
14261
38573dc1
VS
14262 if (INTEL_INFO(dev)->gen >= 9)
14263 ret = drm_universal_plane_init(dev, &primary->base, 0,
14264 &intel_plane_funcs,
14265 intel_primary_formats, num_formats,
14266 DRM_PLANE_TYPE_PRIMARY,
14267 "plane 1%c", pipe_name(pipe));
14268 else if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
14269 ret = drm_universal_plane_init(dev, &primary->base, 0,
14270 &intel_plane_funcs,
14271 intel_primary_formats, num_formats,
14272 DRM_PLANE_TYPE_PRIMARY,
14273 "primary %c", pipe_name(pipe));
14274 else
14275 ret = drm_universal_plane_init(dev, &primary->base, 0,
14276 &intel_plane_funcs,
14277 intel_primary_formats, num_formats,
14278 DRM_PLANE_TYPE_PRIMARY,
14279 "plane %c", plane_name(primary->plane));
fca0ce2a
VS
14280 if (ret)
14281 goto fail;
48404c1e 14282
3b7a5119
SJ
14283 if (INTEL_INFO(dev)->gen >= 4)
14284 intel_create_rotation_property(dev, primary);
48404c1e 14285
ea2c67bb
MR
14286 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
14287
465c120c 14288 return &primary->base;
fca0ce2a
VS
14289
14290fail:
14291 kfree(state);
14292 kfree(primary);
14293
14294 return NULL;
465c120c
MR
14295}
14296
3b7a5119
SJ
14297void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
14298{
14299 if (!dev->mode_config.rotation_property) {
14300 unsigned long flags = BIT(DRM_ROTATE_0) |
14301 BIT(DRM_ROTATE_180);
14302
14303 if (INTEL_INFO(dev)->gen >= 9)
14304 flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270);
14305
14306 dev->mode_config.rotation_property =
14307 drm_mode_create_rotation_property(dev, flags);
14308 }
14309 if (dev->mode_config.rotation_property)
14310 drm_object_attach_property(&plane->base.base,
14311 dev->mode_config.rotation_property,
14312 plane->base.state->rotation);
14313}
14314
3d7d6510 14315static int
852e787c 14316intel_check_cursor_plane(struct drm_plane *plane,
061e4b8d 14317 struct intel_crtc_state *crtc_state,
852e787c 14318 struct intel_plane_state *state)
3d7d6510 14319{
061e4b8d 14320 struct drm_crtc *crtc = crtc_state->base.crtc;
2b875c22 14321 struct drm_framebuffer *fb = state->base.fb;
757f9a3e 14322 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
b29ec92c 14323 enum pipe pipe = to_intel_plane(plane)->pipe;
757f9a3e
GP
14324 unsigned stride;
14325 int ret;
3d7d6510 14326
061e4b8d
ML
14327 ret = drm_plane_helper_check_update(plane, crtc, fb, &state->src,
14328 &state->dst, &state->clip,
9b8b013d 14329 state->base.rotation,
3d7d6510
MR
14330 DRM_PLANE_HELPER_NO_SCALING,
14331 DRM_PLANE_HELPER_NO_SCALING,
852e787c 14332 true, true, &state->visible);
757f9a3e
GP
14333 if (ret)
14334 return ret;
14335
757f9a3e
GP
14336 /* if we want to turn off the cursor ignore width and height */
14337 if (!obj)
da20eabd 14338 return 0;
757f9a3e 14339
757f9a3e 14340 /* Check for which cursor types we support */
061e4b8d 14341 if (!cursor_size_ok(plane->dev, state->base.crtc_w, state->base.crtc_h)) {
ea2c67bb
MR
14342 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
14343 state->base.crtc_w, state->base.crtc_h);
757f9a3e
GP
14344 return -EINVAL;
14345 }
14346
ea2c67bb
MR
14347 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
14348 if (obj->base.size < stride * state->base.crtc_h) {
757f9a3e
GP
14349 DRM_DEBUG_KMS("buffer is too small\n");
14350 return -ENOMEM;
14351 }
14352
3a656b54 14353 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
757f9a3e 14354 DRM_DEBUG_KMS("cursor cannot be tiled\n");
da20eabd 14355 return -EINVAL;
32b7eeec
MR
14356 }
14357
b29ec92c
VS
14358 /*
14359 * There's something wrong with the cursor on CHV pipe C.
14360 * If it straddles the left edge of the screen then
14361 * moving it away from the edge or disabling it often
14362 * results in a pipe underrun, and often that can lead to
14363 * dead pipe (constant underrun reported, and it scans
14364 * out just a solid color). To recover from that, the
14365 * display power well must be turned off and on again.
14366 * Refuse the put the cursor into that compromised position.
14367 */
14368 if (IS_CHERRYVIEW(plane->dev) && pipe == PIPE_C &&
14369 state->visible && state->base.crtc_x < 0) {
14370 DRM_DEBUG_KMS("CHV cursor C not allowed to straddle the left screen edge\n");
14371 return -EINVAL;
14372 }
14373
da20eabd 14374 return 0;
852e787c 14375}
3d7d6510 14376
a8ad0d8e
ML
14377static void
14378intel_disable_cursor_plane(struct drm_plane *plane,
7fabf5ef 14379 struct drm_crtc *crtc)
a8ad0d8e 14380{
f2858021
ML
14381 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14382
14383 intel_crtc->cursor_addr = 0;
55a08b3f 14384 intel_crtc_update_cursor(crtc, NULL);
a8ad0d8e
ML
14385}
14386
f4a2cf29 14387static void
55a08b3f
ML
14388intel_update_cursor_plane(struct drm_plane *plane,
14389 const struct intel_crtc_state *crtc_state,
14390 const struct intel_plane_state *state)
852e787c 14391{
55a08b3f
ML
14392 struct drm_crtc *crtc = crtc_state->base.crtc;
14393 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ea2c67bb 14394 struct drm_device *dev = plane->dev;
2b875c22 14395 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
a912f12f 14396 uint32_t addr;
852e787c 14397
f4a2cf29 14398 if (!obj)
a912f12f 14399 addr = 0;
f4a2cf29 14400 else if (!INTEL_INFO(dev)->cursor_needs_physical)
a912f12f 14401 addr = i915_gem_obj_ggtt_offset(obj);
f4a2cf29 14402 else
a912f12f 14403 addr = obj->phys_handle->busaddr;
852e787c 14404
a912f12f 14405 intel_crtc->cursor_addr = addr;
55a08b3f 14406 intel_crtc_update_cursor(crtc, state);
852e787c
GP
14407}
14408
3d7d6510
MR
14409static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
14410 int pipe)
14411{
fca0ce2a
VS
14412 struct intel_plane *cursor = NULL;
14413 struct intel_plane_state *state = NULL;
14414 int ret;
3d7d6510
MR
14415
14416 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
fca0ce2a
VS
14417 if (!cursor)
14418 goto fail;
3d7d6510 14419
8e7d688b 14420 state = intel_create_plane_state(&cursor->base);
fca0ce2a
VS
14421 if (!state)
14422 goto fail;
8e7d688b 14423 cursor->base.state = &state->base;
ea2c67bb 14424
3d7d6510
MR
14425 cursor->can_scale = false;
14426 cursor->max_downscale = 1;
14427 cursor->pipe = pipe;
14428 cursor->plane = pipe;
a9ff8714 14429 cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe);
c59cb179 14430 cursor->check_plane = intel_check_cursor_plane;
55a08b3f 14431 cursor->update_plane = intel_update_cursor_plane;
a8ad0d8e 14432 cursor->disable_plane = intel_disable_cursor_plane;
3d7d6510 14433
fca0ce2a
VS
14434 ret = drm_universal_plane_init(dev, &cursor->base, 0,
14435 &intel_plane_funcs,
14436 intel_cursor_formats,
14437 ARRAY_SIZE(intel_cursor_formats),
38573dc1
VS
14438 DRM_PLANE_TYPE_CURSOR,
14439 "cursor %c", pipe_name(pipe));
fca0ce2a
VS
14440 if (ret)
14441 goto fail;
4398ad45
VS
14442
14443 if (INTEL_INFO(dev)->gen >= 4) {
14444 if (!dev->mode_config.rotation_property)
14445 dev->mode_config.rotation_property =
14446 drm_mode_create_rotation_property(dev,
14447 BIT(DRM_ROTATE_0) |
14448 BIT(DRM_ROTATE_180));
14449 if (dev->mode_config.rotation_property)
14450 drm_object_attach_property(&cursor->base.base,
14451 dev->mode_config.rotation_property,
8e7d688b 14452 state->base.rotation);
4398ad45
VS
14453 }
14454
af99ceda
CK
14455 if (INTEL_INFO(dev)->gen >=9)
14456 state->scaler_id = -1;
14457
ea2c67bb
MR
14458 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
14459
3d7d6510 14460 return &cursor->base;
fca0ce2a
VS
14461
14462fail:
14463 kfree(state);
14464 kfree(cursor);
14465
14466 return NULL;
3d7d6510
MR
14467}
14468
549e2bfb
CK
14469static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
14470 struct intel_crtc_state *crtc_state)
14471{
14472 int i;
14473 struct intel_scaler *intel_scaler;
14474 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
14475
14476 for (i = 0; i < intel_crtc->num_scalers; i++) {
14477 intel_scaler = &scaler_state->scalers[i];
14478 intel_scaler->in_use = 0;
549e2bfb
CK
14479 intel_scaler->mode = PS_SCALER_MODE_DYN;
14480 }
14481
14482 scaler_state->scaler_id = -1;
14483}
14484
b358d0a6 14485static void intel_crtc_init(struct drm_device *dev, int pipe)
79e53945 14486{
fac5e23e 14487 struct drm_i915_private *dev_priv = to_i915(dev);
79e53945 14488 struct intel_crtc *intel_crtc;
f5de6e07 14489 struct intel_crtc_state *crtc_state = NULL;
3d7d6510
MR
14490 struct drm_plane *primary = NULL;
14491 struct drm_plane *cursor = NULL;
8563b1e8 14492 int ret;
79e53945 14493
955382f3 14494 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
79e53945
JB
14495 if (intel_crtc == NULL)
14496 return;
14497
f5de6e07
ACO
14498 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
14499 if (!crtc_state)
14500 goto fail;
550acefd
ACO
14501 intel_crtc->config = crtc_state;
14502 intel_crtc->base.state = &crtc_state->base;
07878248 14503 crtc_state->base.crtc = &intel_crtc->base;
f5de6e07 14504
549e2bfb
CK
14505 /* initialize shared scalers */
14506 if (INTEL_INFO(dev)->gen >= 9) {
14507 if (pipe == PIPE_C)
14508 intel_crtc->num_scalers = 1;
14509 else
14510 intel_crtc->num_scalers = SKL_NUM_SCALERS;
14511
14512 skl_init_scalers(dev, intel_crtc, crtc_state);
14513 }
14514
465c120c 14515 primary = intel_primary_plane_create(dev, pipe);
3d7d6510
MR
14516 if (!primary)
14517 goto fail;
14518
14519 cursor = intel_cursor_plane_create(dev, pipe);
14520 if (!cursor)
14521 goto fail;
14522
465c120c 14523 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
4d5d72b7
VS
14524 cursor, &intel_crtc_funcs,
14525 "pipe %c", pipe_name(pipe));
3d7d6510
MR
14526 if (ret)
14527 goto fail;
79e53945 14528
1f1c2e24
VS
14529 /*
14530 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
8c0f92e1 14531 * is hooked to pipe B. Hence we want plane A feeding pipe B.
1f1c2e24 14532 */
80824003
JB
14533 intel_crtc->pipe = pipe;
14534 intel_crtc->plane = pipe;
3a77c4c4 14535 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
28c97730 14536 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
e2e767ab 14537 intel_crtc->plane = !pipe;
80824003
JB
14538 }
14539
4b0e333e
CW
14540 intel_crtc->cursor_base = ~0;
14541 intel_crtc->cursor_cntl = ~0;
dc41c154 14542 intel_crtc->cursor_size = ~0;
8d7849db 14543
852eb00d
VS
14544 intel_crtc->wm.cxsr_allowed = true;
14545
22fd0fab
JB
14546 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
14547 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
14548 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
14549 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
14550
79e53945 14551 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
87b6b101 14552
8563b1e8
LL
14553 intel_color_init(&intel_crtc->base);
14554
87b6b101 14555 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
3d7d6510
MR
14556 return;
14557
14558fail:
69ae561f
VS
14559 intel_plane_destroy(primary);
14560 intel_plane_destroy(cursor);
f5de6e07 14561 kfree(crtc_state);
3d7d6510 14562 kfree(intel_crtc);
79e53945
JB
14563}
14564
752aa88a
JB
14565enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
14566{
14567 struct drm_encoder *encoder = connector->base.encoder;
6e9f798d 14568 struct drm_device *dev = connector->base.dev;
752aa88a 14569
51fd371b 14570 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
752aa88a 14571
d3babd3f 14572 if (!encoder || WARN_ON(!encoder->crtc))
752aa88a
JB
14573 return INVALID_PIPE;
14574
14575 return to_intel_crtc(encoder->crtc)->pipe;
14576}
14577
08d7b3d1 14578int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
05394f39 14579 struct drm_file *file)
08d7b3d1 14580{
08d7b3d1 14581 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
7707e653 14582 struct drm_crtc *drmmode_crtc;
c05422d5 14583 struct intel_crtc *crtc;
08d7b3d1 14584
7707e653 14585 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
71240ed2 14586 if (!drmmode_crtc)
3f2c2057 14587 return -ENOENT;
08d7b3d1 14588
7707e653 14589 crtc = to_intel_crtc(drmmode_crtc);
c05422d5 14590 pipe_from_crtc_id->pipe = crtc->pipe;
08d7b3d1 14591
c05422d5 14592 return 0;
08d7b3d1
CW
14593}
14594
66a9278e 14595static int intel_encoder_clones(struct intel_encoder *encoder)
79e53945 14596{
66a9278e
DV
14597 struct drm_device *dev = encoder->base.dev;
14598 struct intel_encoder *source_encoder;
79e53945 14599 int index_mask = 0;
79e53945
JB
14600 int entry = 0;
14601
b2784e15 14602 for_each_intel_encoder(dev, source_encoder) {
bc079e8b 14603 if (encoders_cloneable(encoder, source_encoder))
66a9278e
DV
14604 index_mask |= (1 << entry);
14605
79e53945
JB
14606 entry++;
14607 }
4ef69c7a 14608
79e53945
JB
14609 return index_mask;
14610}
14611
4d302442
CW
14612static bool has_edp_a(struct drm_device *dev)
14613{
fac5e23e 14614 struct drm_i915_private *dev_priv = to_i915(dev);
4d302442
CW
14615
14616 if (!IS_MOBILE(dev))
14617 return false;
14618
14619 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
14620 return false;
14621
e3589908 14622 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
4d302442
CW
14623 return false;
14624
14625 return true;
14626}
14627
84b4e042
JB
14628static bool intel_crt_present(struct drm_device *dev)
14629{
fac5e23e 14630 struct drm_i915_private *dev_priv = to_i915(dev);
84b4e042 14631
884497ed
DL
14632 if (INTEL_INFO(dev)->gen >= 9)
14633 return false;
14634
cf404ce4 14635 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
84b4e042
JB
14636 return false;
14637
14638 if (IS_CHERRYVIEW(dev))
14639 return false;
14640
65e472e4
VS
14641 if (HAS_PCH_LPT_H(dev) && I915_READ(SFUSE_STRAP) & SFUSE_STRAP_CRT_DISABLED)
14642 return false;
14643
70ac54d0
VS
14644 /* DDI E can't be used if DDI A requires 4 lanes */
14645 if (HAS_DDI(dev) && I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES)
14646 return false;
14647
e4abb733 14648 if (!dev_priv->vbt.int_crt_support)
84b4e042
JB
14649 return false;
14650
14651 return true;
14652}
14653
79e53945
JB
14654static void intel_setup_outputs(struct drm_device *dev)
14655{
fac5e23e 14656 struct drm_i915_private *dev_priv = to_i915(dev);
4ef69c7a 14657 struct intel_encoder *encoder;
cb0953d7 14658 bool dpd_is_edp = false;
79e53945 14659
97a824e1
ID
14660 /*
14661 * intel_edp_init_connector() depends on this completing first, to
14662 * prevent the registeration of both eDP and LVDS and the incorrect
14663 * sharing of the PPS.
14664 */
c9093354 14665 intel_lvds_init(dev);
79e53945 14666
84b4e042 14667 if (intel_crt_present(dev))
79935fca 14668 intel_crt_init(dev);
cb0953d7 14669
c776eb2e
VK
14670 if (IS_BROXTON(dev)) {
14671 /*
14672 * FIXME: Broxton doesn't support port detection via the
14673 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
14674 * detect the ports.
14675 */
14676 intel_ddi_init(dev, PORT_A);
14677 intel_ddi_init(dev, PORT_B);
14678 intel_ddi_init(dev, PORT_C);
c6c794a2
SS
14679
14680 intel_dsi_init(dev);
c776eb2e 14681 } else if (HAS_DDI(dev)) {
0e72a5b5
ED
14682 int found;
14683
de31facd
JB
14684 /*
14685 * Haswell uses DDI functions to detect digital outputs.
14686 * On SKL pre-D0 the strap isn't connected, so we assume
14687 * it's there.
14688 */
77179400 14689 found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED;
de31facd 14690 /* WaIgnoreDDIAStrap: skl */
ef11bdb3 14691 if (found || IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
0e72a5b5
ED
14692 intel_ddi_init(dev, PORT_A);
14693
14694 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
14695 * register */
14696 found = I915_READ(SFUSE_STRAP);
14697
14698 if (found & SFUSE_STRAP_DDIB_DETECTED)
14699 intel_ddi_init(dev, PORT_B);
14700 if (found & SFUSE_STRAP_DDIC_DETECTED)
14701 intel_ddi_init(dev, PORT_C);
14702 if (found & SFUSE_STRAP_DDID_DETECTED)
14703 intel_ddi_init(dev, PORT_D);
2800e4c2
RV
14704 /*
14705 * On SKL we don't have a way to detect DDI-E so we rely on VBT.
14706 */
ef11bdb3 14707 if ((IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) &&
2800e4c2
RV
14708 (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp ||
14709 dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi ||
14710 dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi))
14711 intel_ddi_init(dev, PORT_E);
14712
0e72a5b5 14713 } else if (HAS_PCH_SPLIT(dev)) {
cb0953d7 14714 int found;
5d8a7752 14715 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
270b3042
DV
14716
14717 if (has_edp_a(dev))
14718 intel_dp_init(dev, DP_A, PORT_A);
cb0953d7 14719
dc0fa718 14720 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
461ed3ca 14721 /* PCH SDVOB multiplex with HDMIB */
2a5c0832 14722 found = intel_sdvo_init(dev, PCH_SDVOB, PORT_B);
30ad48b7 14723 if (!found)
e2debe91 14724 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
5eb08b69 14725 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
ab9d7c30 14726 intel_dp_init(dev, PCH_DP_B, PORT_B);
30ad48b7
ZW
14727 }
14728
dc0fa718 14729 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
e2debe91 14730 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
30ad48b7 14731
dc0fa718 14732 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
e2debe91 14733 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
30ad48b7 14734
5eb08b69 14735 if (I915_READ(PCH_DP_C) & DP_DETECTED)
ab9d7c30 14736 intel_dp_init(dev, PCH_DP_C, PORT_C);
5eb08b69 14737
270b3042 14738 if (I915_READ(PCH_DP_D) & DP_DETECTED)
ab9d7c30 14739 intel_dp_init(dev, PCH_DP_D, PORT_D);
666a4537 14740 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
22f35042 14741 bool has_edp, has_port;
457c52d8 14742
e17ac6db
VS
14743 /*
14744 * The DP_DETECTED bit is the latched state of the DDC
14745 * SDA pin at boot. However since eDP doesn't require DDC
14746 * (no way to plug in a DP->HDMI dongle) the DDC pins for
14747 * eDP ports may have been muxed to an alternate function.
14748 * Thus we can't rely on the DP_DETECTED bit alone to detect
14749 * eDP ports. Consult the VBT as well as DP_DETECTED to
14750 * detect eDP ports.
22f35042
VS
14751 *
14752 * Sadly the straps seem to be missing sometimes even for HDMI
14753 * ports (eg. on Voyo V3 - CHT x7-Z8700), so check both strap
14754 * and VBT for the presence of the port. Additionally we can't
14755 * trust the port type the VBT declares as we've seen at least
14756 * HDMI ports that the VBT claim are DP or eDP.
e17ac6db 14757 */
457c52d8 14758 has_edp = intel_dp_is_edp(dev, PORT_B);
22f35042
VS
14759 has_port = intel_bios_is_port_present(dev_priv, PORT_B);
14760 if (I915_READ(VLV_DP_B) & DP_DETECTED || has_port)
457c52d8 14761 has_edp &= intel_dp_init(dev, VLV_DP_B, PORT_B);
22f35042 14762 if ((I915_READ(VLV_HDMIB) & SDVO_DETECTED || has_port) && !has_edp)
e66eb81d 14763 intel_hdmi_init(dev, VLV_HDMIB, PORT_B);
585a94b8 14764
457c52d8 14765 has_edp = intel_dp_is_edp(dev, PORT_C);
22f35042
VS
14766 has_port = intel_bios_is_port_present(dev_priv, PORT_C);
14767 if (I915_READ(VLV_DP_C) & DP_DETECTED || has_port)
457c52d8 14768 has_edp &= intel_dp_init(dev, VLV_DP_C, PORT_C);
22f35042 14769 if ((I915_READ(VLV_HDMIC) & SDVO_DETECTED || has_port) && !has_edp)
e66eb81d 14770 intel_hdmi_init(dev, VLV_HDMIC, PORT_C);
19c03924 14771
9418c1f1 14772 if (IS_CHERRYVIEW(dev)) {
22f35042
VS
14773 /*
14774 * eDP not supported on port D,
14775 * so no need to worry about it
14776 */
14777 has_port = intel_bios_is_port_present(dev_priv, PORT_D);
14778 if (I915_READ(CHV_DP_D) & DP_DETECTED || has_port)
e66eb81d 14779 intel_dp_init(dev, CHV_DP_D, PORT_D);
22f35042
VS
14780 if (I915_READ(CHV_HDMID) & SDVO_DETECTED || has_port)
14781 intel_hdmi_init(dev, CHV_HDMID, PORT_D);
9418c1f1
VS
14782 }
14783
3cfca973 14784 intel_dsi_init(dev);
09da55dc 14785 } else if (!IS_GEN2(dev) && !IS_PINEVIEW(dev)) {
27185ae1 14786 bool found = false;
7d57382e 14787
e2debe91 14788 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 14789 DRM_DEBUG_KMS("probing SDVOB\n");
2a5c0832 14790 found = intel_sdvo_init(dev, GEN3_SDVOB, PORT_B);
3fec3d2f 14791 if (!found && IS_G4X(dev)) {
b01f2c3a 14792 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
e2debe91 14793 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
b01f2c3a 14794 }
27185ae1 14795
3fec3d2f 14796 if (!found && IS_G4X(dev))
ab9d7c30 14797 intel_dp_init(dev, DP_B, PORT_B);
725e30ad 14798 }
13520b05
KH
14799
14800 /* Before G4X SDVOC doesn't have its own detect register */
13520b05 14801
e2debe91 14802 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 14803 DRM_DEBUG_KMS("probing SDVOC\n");
2a5c0832 14804 found = intel_sdvo_init(dev, GEN3_SDVOC, PORT_C);
b01f2c3a 14805 }
27185ae1 14806
e2debe91 14807 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
27185ae1 14808
3fec3d2f 14809 if (IS_G4X(dev)) {
b01f2c3a 14810 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
e2debe91 14811 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
b01f2c3a 14812 }
3fec3d2f 14813 if (IS_G4X(dev))
ab9d7c30 14814 intel_dp_init(dev, DP_C, PORT_C);
725e30ad 14815 }
27185ae1 14816
3fec3d2f 14817 if (IS_G4X(dev) &&
e7281eab 14818 (I915_READ(DP_D) & DP_DETECTED))
ab9d7c30 14819 intel_dp_init(dev, DP_D, PORT_D);
bad720ff 14820 } else if (IS_GEN2(dev))
79e53945
JB
14821 intel_dvo_init(dev);
14822
103a196f 14823 if (SUPPORTS_TV(dev))
79e53945
JB
14824 intel_tv_init(dev);
14825
0bc12bcb 14826 intel_psr_init(dev);
7c8f8a70 14827
b2784e15 14828 for_each_intel_encoder(dev, encoder) {
4ef69c7a
CW
14829 encoder->base.possible_crtcs = encoder->crtc_mask;
14830 encoder->base.possible_clones =
66a9278e 14831 intel_encoder_clones(encoder);
79e53945 14832 }
47356eb6 14833
dde86e2d 14834 intel_init_pch_refclk(dev);
270b3042
DV
14835
14836 drm_helper_move_panel_connectors_to_head(dev);
79e53945
JB
14837}
14838
14839static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
14840{
60a5ca01 14841 struct drm_device *dev = fb->dev;
79e53945 14842 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
79e53945 14843
ef2d633e 14844 drm_framebuffer_cleanup(fb);
60a5ca01 14845 mutex_lock(&dev->struct_mutex);
ef2d633e 14846 WARN_ON(!intel_fb->obj->framebuffer_references--);
60a5ca01
VS
14847 drm_gem_object_unreference(&intel_fb->obj->base);
14848 mutex_unlock(&dev->struct_mutex);
79e53945
JB
14849 kfree(intel_fb);
14850}
14851
14852static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
05394f39 14853 struct drm_file *file,
79e53945
JB
14854 unsigned int *handle)
14855{
14856 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 14857 struct drm_i915_gem_object *obj = intel_fb->obj;
79e53945 14858
cc917ab4
CW
14859 if (obj->userptr.mm) {
14860 DRM_DEBUG("attempting to use a userptr for a framebuffer, denied\n");
14861 return -EINVAL;
14862 }
14863
05394f39 14864 return drm_gem_handle_create(file, &obj->base, handle);
79e53945
JB
14865}
14866
86c98588
RV
14867static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb,
14868 struct drm_file *file,
14869 unsigned flags, unsigned color,
14870 struct drm_clip_rect *clips,
14871 unsigned num_clips)
14872{
14873 struct drm_device *dev = fb->dev;
14874 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
14875 struct drm_i915_gem_object *obj = intel_fb->obj;
14876
14877 mutex_lock(&dev->struct_mutex);
74b4ea1e 14878 intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB);
86c98588
RV
14879 mutex_unlock(&dev->struct_mutex);
14880
14881 return 0;
14882}
14883
79e53945
JB
14884static const struct drm_framebuffer_funcs intel_fb_funcs = {
14885 .destroy = intel_user_framebuffer_destroy,
14886 .create_handle = intel_user_framebuffer_create_handle,
86c98588 14887 .dirty = intel_user_framebuffer_dirty,
79e53945
JB
14888};
14889
b321803d
DL
14890static
14891u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
14892 uint32_t pixel_format)
14893{
14894 u32 gen = INTEL_INFO(dev)->gen;
14895
14896 if (gen >= 9) {
ac484963
VS
14897 int cpp = drm_format_plane_cpp(pixel_format, 0);
14898
b321803d
DL
14899 /* "The stride in bytes must not exceed the of the size of 8K
14900 * pixels and 32K bytes."
14901 */
ac484963 14902 return min(8192 * cpp, 32768);
666a4537 14903 } else if (gen >= 5 && !IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
b321803d
DL
14904 return 32*1024;
14905 } else if (gen >= 4) {
14906 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14907 return 16*1024;
14908 else
14909 return 32*1024;
14910 } else if (gen >= 3) {
14911 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14912 return 8*1024;
14913 else
14914 return 16*1024;
14915 } else {
14916 /* XXX DSPC is limited to 4k tiled */
14917 return 8*1024;
14918 }
14919}
14920
b5ea642a
DV
14921static int intel_framebuffer_init(struct drm_device *dev,
14922 struct intel_framebuffer *intel_fb,
14923 struct drm_mode_fb_cmd2 *mode_cmd,
14924 struct drm_i915_gem_object *obj)
79e53945 14925{
7b49f948 14926 struct drm_i915_private *dev_priv = to_i915(dev);
6761dd31 14927 unsigned int aligned_height;
79e53945 14928 int ret;
b321803d 14929 u32 pitch_limit, stride_alignment;
79e53945 14930
dd4916c5
DV
14931 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
14932
2a80eada
DV
14933 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
14934 /* Enforce that fb modifier and tiling mode match, but only for
14935 * X-tiled. This is needed for FBC. */
14936 if (!!(obj->tiling_mode == I915_TILING_X) !=
14937 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
14938 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
14939 return -EINVAL;
14940 }
14941 } else {
14942 if (obj->tiling_mode == I915_TILING_X)
14943 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
14944 else if (obj->tiling_mode == I915_TILING_Y) {
14945 DRM_DEBUG("No Y tiling for legacy addfb\n");
14946 return -EINVAL;
14947 }
14948 }
14949
9a8f0a12
TU
14950 /* Passed in modifier sanity checking. */
14951 switch (mode_cmd->modifier[0]) {
14952 case I915_FORMAT_MOD_Y_TILED:
14953 case I915_FORMAT_MOD_Yf_TILED:
14954 if (INTEL_INFO(dev)->gen < 9) {
14955 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
14956 mode_cmd->modifier[0]);
14957 return -EINVAL;
14958 }
14959 case DRM_FORMAT_MOD_NONE:
14960 case I915_FORMAT_MOD_X_TILED:
14961 break;
14962 default:
c0f40428
JB
14963 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
14964 mode_cmd->modifier[0]);
57cd6508 14965 return -EINVAL;
c16ed4be 14966 }
57cd6508 14967
7b49f948
VS
14968 stride_alignment = intel_fb_stride_alignment(dev_priv,
14969 mode_cmd->modifier[0],
b321803d
DL
14970 mode_cmd->pixel_format);
14971 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
14972 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
14973 mode_cmd->pitches[0], stride_alignment);
57cd6508 14974 return -EINVAL;
c16ed4be 14975 }
57cd6508 14976
b321803d
DL
14977 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
14978 mode_cmd->pixel_format);
a35cdaa0 14979 if (mode_cmd->pitches[0] > pitch_limit) {
b321803d
DL
14980 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
14981 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
2a80eada 14982 "tiled" : "linear",
a35cdaa0 14983 mode_cmd->pitches[0], pitch_limit);
5d7bd705 14984 return -EINVAL;
c16ed4be 14985 }
5d7bd705 14986
2a80eada 14987 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
c16ed4be
CW
14988 mode_cmd->pitches[0] != obj->stride) {
14989 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
14990 mode_cmd->pitches[0], obj->stride);
5d7bd705 14991 return -EINVAL;
c16ed4be 14992 }
5d7bd705 14993
57779d06 14994 /* Reject formats not supported by any plane early. */
308e5bcb 14995 switch (mode_cmd->pixel_format) {
57779d06 14996 case DRM_FORMAT_C8:
04b3924d
VS
14997 case DRM_FORMAT_RGB565:
14998 case DRM_FORMAT_XRGB8888:
14999 case DRM_FORMAT_ARGB8888:
57779d06
VS
15000 break;
15001 case DRM_FORMAT_XRGB1555:
c16ed4be 15002 if (INTEL_INFO(dev)->gen > 3) {
4ee62c76
VS
15003 DRM_DEBUG("unsupported pixel format: %s\n",
15004 drm_get_format_name(mode_cmd->pixel_format));
57779d06 15005 return -EINVAL;
c16ed4be 15006 }
57779d06 15007 break;
57779d06 15008 case DRM_FORMAT_ABGR8888:
666a4537
WB
15009 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
15010 INTEL_INFO(dev)->gen < 9) {
6c0fd451
DL
15011 DRM_DEBUG("unsupported pixel format: %s\n",
15012 drm_get_format_name(mode_cmd->pixel_format));
15013 return -EINVAL;
15014 }
15015 break;
15016 case DRM_FORMAT_XBGR8888:
04b3924d 15017 case DRM_FORMAT_XRGB2101010:
57779d06 15018 case DRM_FORMAT_XBGR2101010:
c16ed4be 15019 if (INTEL_INFO(dev)->gen < 4) {
4ee62c76
VS
15020 DRM_DEBUG("unsupported pixel format: %s\n",
15021 drm_get_format_name(mode_cmd->pixel_format));
57779d06 15022 return -EINVAL;
c16ed4be 15023 }
b5626747 15024 break;
7531208b 15025 case DRM_FORMAT_ABGR2101010:
666a4537 15026 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
7531208b
DL
15027 DRM_DEBUG("unsupported pixel format: %s\n",
15028 drm_get_format_name(mode_cmd->pixel_format));
15029 return -EINVAL;
15030 }
15031 break;
04b3924d
VS
15032 case DRM_FORMAT_YUYV:
15033 case DRM_FORMAT_UYVY:
15034 case DRM_FORMAT_YVYU:
15035 case DRM_FORMAT_VYUY:
c16ed4be 15036 if (INTEL_INFO(dev)->gen < 5) {
4ee62c76
VS
15037 DRM_DEBUG("unsupported pixel format: %s\n",
15038 drm_get_format_name(mode_cmd->pixel_format));
57779d06 15039 return -EINVAL;
c16ed4be 15040 }
57cd6508
CW
15041 break;
15042 default:
4ee62c76
VS
15043 DRM_DEBUG("unsupported pixel format: %s\n",
15044 drm_get_format_name(mode_cmd->pixel_format));
57cd6508
CW
15045 return -EINVAL;
15046 }
15047
90f9a336
VS
15048 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
15049 if (mode_cmd->offsets[0] != 0)
15050 return -EINVAL;
15051
ec2c981e 15052 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
091df6cb
DV
15053 mode_cmd->pixel_format,
15054 mode_cmd->modifier[0]);
53155c0a
DV
15055 /* FIXME drm helper for size checks (especially planar formats)? */
15056 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
15057 return -EINVAL;
15058
c7d73f6a
DV
15059 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
15060 intel_fb->obj = obj;
15061
2d7a215f
VS
15062 intel_fill_fb_info(dev_priv, &intel_fb->base);
15063
79e53945
JB
15064 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
15065 if (ret) {
15066 DRM_ERROR("framebuffer init failed %d\n", ret);
15067 return ret;
15068 }
15069
0b05e1e0
VS
15070 intel_fb->obj->framebuffer_references++;
15071
79e53945
JB
15072 return 0;
15073}
15074
79e53945
JB
15075static struct drm_framebuffer *
15076intel_user_framebuffer_create(struct drm_device *dev,
15077 struct drm_file *filp,
1eb83451 15078 const struct drm_mode_fb_cmd2 *user_mode_cmd)
79e53945 15079{
dcb1394e 15080 struct drm_framebuffer *fb;
05394f39 15081 struct drm_i915_gem_object *obj;
76dc3769 15082 struct drm_mode_fb_cmd2 mode_cmd = *user_mode_cmd;
79e53945 15083
a8ad0bd8 15084 obj = to_intel_bo(drm_gem_object_lookup(filp, mode_cmd.handles[0]));
c8725226 15085 if (&obj->base == NULL)
cce13ff7 15086 return ERR_PTR(-ENOENT);
79e53945 15087
92907cbb 15088 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
dcb1394e
LW
15089 if (IS_ERR(fb))
15090 drm_gem_object_unreference_unlocked(&obj->base);
15091
15092 return fb;
79e53945
JB
15093}
15094
0695726e 15095#ifndef CONFIG_DRM_FBDEV_EMULATION
0632fef6 15096static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
4520f53a
DV
15097{
15098}
15099#endif
15100
79e53945 15101static const struct drm_mode_config_funcs intel_mode_funcs = {
79e53945 15102 .fb_create = intel_user_framebuffer_create,
0632fef6 15103 .output_poll_changed = intel_fbdev_output_poll_changed,
5ee67f1c
MR
15104 .atomic_check = intel_atomic_check,
15105 .atomic_commit = intel_atomic_commit,
de419ab6
ML
15106 .atomic_state_alloc = intel_atomic_state_alloc,
15107 .atomic_state_clear = intel_atomic_state_clear,
79e53945
JB
15108};
15109
88212941
ID
15110/**
15111 * intel_init_display_hooks - initialize the display modesetting hooks
15112 * @dev_priv: device private
15113 */
15114void intel_init_display_hooks(struct drm_i915_private *dev_priv)
e70236a8 15115{
88212941 15116 if (INTEL_INFO(dev_priv)->gen >= 9) {
bc8d7dff 15117 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
15118 dev_priv->display.get_initial_plane_config =
15119 skylake_get_initial_plane_config;
bc8d7dff
DL
15120 dev_priv->display.crtc_compute_clock =
15121 haswell_crtc_compute_clock;
15122 dev_priv->display.crtc_enable = haswell_crtc_enable;
15123 dev_priv->display.crtc_disable = haswell_crtc_disable;
88212941 15124 } else if (HAS_DDI(dev_priv)) {
0e8ffe1b 15125 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
15126 dev_priv->display.get_initial_plane_config =
15127 ironlake_get_initial_plane_config;
797d0259
ACO
15128 dev_priv->display.crtc_compute_clock =
15129 haswell_crtc_compute_clock;
4f771f10
PZ
15130 dev_priv->display.crtc_enable = haswell_crtc_enable;
15131 dev_priv->display.crtc_disable = haswell_crtc_disable;
88212941 15132 } else if (HAS_PCH_SPLIT(dev_priv)) {
0e8ffe1b 15133 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
5724dbd1
DL
15134 dev_priv->display.get_initial_plane_config =
15135 ironlake_get_initial_plane_config;
3fb37703
ACO
15136 dev_priv->display.crtc_compute_clock =
15137 ironlake_crtc_compute_clock;
76e5a89c
DV
15138 dev_priv->display.crtc_enable = ironlake_crtc_enable;
15139 dev_priv->display.crtc_disable = ironlake_crtc_disable;
65b3d6a9 15140 } else if (IS_CHERRYVIEW(dev_priv)) {
89b667f8 15141 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
15142 dev_priv->display.get_initial_plane_config =
15143 i9xx_get_initial_plane_config;
65b3d6a9
ACO
15144 dev_priv->display.crtc_compute_clock = chv_crtc_compute_clock;
15145 dev_priv->display.crtc_enable = valleyview_crtc_enable;
15146 dev_priv->display.crtc_disable = i9xx_crtc_disable;
15147 } else if (IS_VALLEYVIEW(dev_priv)) {
15148 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15149 dev_priv->display.get_initial_plane_config =
15150 i9xx_get_initial_plane_config;
15151 dev_priv->display.crtc_compute_clock = vlv_crtc_compute_clock;
89b667f8
JB
15152 dev_priv->display.crtc_enable = valleyview_crtc_enable;
15153 dev_priv->display.crtc_disable = i9xx_crtc_disable;
19ec6693
ACO
15154 } else if (IS_G4X(dev_priv)) {
15155 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15156 dev_priv->display.get_initial_plane_config =
15157 i9xx_get_initial_plane_config;
15158 dev_priv->display.crtc_compute_clock = g4x_crtc_compute_clock;
15159 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15160 dev_priv->display.crtc_disable = i9xx_crtc_disable;
70e8aa21
ACO
15161 } else if (IS_PINEVIEW(dev_priv)) {
15162 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15163 dev_priv->display.get_initial_plane_config =
15164 i9xx_get_initial_plane_config;
15165 dev_priv->display.crtc_compute_clock = pnv_crtc_compute_clock;
15166 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15167 dev_priv->display.crtc_disable = i9xx_crtc_disable;
81c97f52 15168 } else if (!IS_GEN2(dev_priv)) {
0e8ffe1b 15169 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
15170 dev_priv->display.get_initial_plane_config =
15171 i9xx_get_initial_plane_config;
d6dfee7a 15172 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
76e5a89c
DV
15173 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15174 dev_priv->display.crtc_disable = i9xx_crtc_disable;
81c97f52
ACO
15175 } else {
15176 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15177 dev_priv->display.get_initial_plane_config =
15178 i9xx_get_initial_plane_config;
15179 dev_priv->display.crtc_compute_clock = i8xx_crtc_compute_clock;
15180 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15181 dev_priv->display.crtc_disable = i9xx_crtc_disable;
f564048e 15182 }
e70236a8 15183
e70236a8 15184 /* Returns the core display clock speed */
88212941 15185 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
1652d19e
VS
15186 dev_priv->display.get_display_clock_speed =
15187 skylake_get_display_clock_speed;
88212941 15188 else if (IS_BROXTON(dev_priv))
acd3f3d3
BP
15189 dev_priv->display.get_display_clock_speed =
15190 broxton_get_display_clock_speed;
88212941 15191 else if (IS_BROADWELL(dev_priv))
1652d19e
VS
15192 dev_priv->display.get_display_clock_speed =
15193 broadwell_get_display_clock_speed;
88212941 15194 else if (IS_HASWELL(dev_priv))
1652d19e
VS
15195 dev_priv->display.get_display_clock_speed =
15196 haswell_get_display_clock_speed;
88212941 15197 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
25eb05fc
JB
15198 dev_priv->display.get_display_clock_speed =
15199 valleyview_get_display_clock_speed;
88212941 15200 else if (IS_GEN5(dev_priv))
b37a6434
VS
15201 dev_priv->display.get_display_clock_speed =
15202 ilk_get_display_clock_speed;
88212941
ID
15203 else if (IS_I945G(dev_priv) || IS_BROADWATER(dev_priv) ||
15204 IS_GEN6(dev_priv) || IS_IVYBRIDGE(dev_priv))
e70236a8
JB
15205 dev_priv->display.get_display_clock_speed =
15206 i945_get_display_clock_speed;
88212941 15207 else if (IS_GM45(dev_priv))
34edce2f
VS
15208 dev_priv->display.get_display_clock_speed =
15209 gm45_get_display_clock_speed;
88212941 15210 else if (IS_CRESTLINE(dev_priv))
34edce2f
VS
15211 dev_priv->display.get_display_clock_speed =
15212 i965gm_get_display_clock_speed;
88212941 15213 else if (IS_PINEVIEW(dev_priv))
34edce2f
VS
15214 dev_priv->display.get_display_clock_speed =
15215 pnv_get_display_clock_speed;
88212941 15216 else if (IS_G33(dev_priv) || IS_G4X(dev_priv))
34edce2f
VS
15217 dev_priv->display.get_display_clock_speed =
15218 g33_get_display_clock_speed;
88212941 15219 else if (IS_I915G(dev_priv))
e70236a8
JB
15220 dev_priv->display.get_display_clock_speed =
15221 i915_get_display_clock_speed;
88212941 15222 else if (IS_I945GM(dev_priv) || IS_845G(dev_priv))
e70236a8
JB
15223 dev_priv->display.get_display_clock_speed =
15224 i9xx_misc_get_display_clock_speed;
88212941 15225 else if (IS_I915GM(dev_priv))
e70236a8
JB
15226 dev_priv->display.get_display_clock_speed =
15227 i915gm_get_display_clock_speed;
88212941 15228 else if (IS_I865G(dev_priv))
e70236a8
JB
15229 dev_priv->display.get_display_clock_speed =
15230 i865_get_display_clock_speed;
88212941 15231 else if (IS_I85X(dev_priv))
e70236a8 15232 dev_priv->display.get_display_clock_speed =
1b1d2716 15233 i85x_get_display_clock_speed;
623e01e5 15234 else { /* 830 */
88212941 15235 WARN(!IS_I830(dev_priv), "Unknown platform. Assuming 133 MHz CDCLK\n");
e70236a8
JB
15236 dev_priv->display.get_display_clock_speed =
15237 i830_get_display_clock_speed;
623e01e5 15238 }
e70236a8 15239
88212941 15240 if (IS_GEN5(dev_priv)) {
3bb11b53 15241 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
88212941 15242 } else if (IS_GEN6(dev_priv)) {
3bb11b53 15243 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
88212941 15244 } else if (IS_IVYBRIDGE(dev_priv)) {
3bb11b53
SJ
15245 /* FIXME: detect B0+ stepping and use auto training */
15246 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
88212941 15247 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
3bb11b53 15248 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
445e780b
VS
15249 }
15250
15251 if (IS_BROADWELL(dev_priv)) {
15252 dev_priv->display.modeset_commit_cdclk =
15253 broadwell_modeset_commit_cdclk;
15254 dev_priv->display.modeset_calc_cdclk =
15255 broadwell_modeset_calc_cdclk;
88212941 15256 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
27c329ed
ML
15257 dev_priv->display.modeset_commit_cdclk =
15258 valleyview_modeset_commit_cdclk;
15259 dev_priv->display.modeset_calc_cdclk =
15260 valleyview_modeset_calc_cdclk;
88212941 15261 } else if (IS_BROXTON(dev_priv)) {
27c329ed 15262 dev_priv->display.modeset_commit_cdclk =
324513c0 15263 bxt_modeset_commit_cdclk;
27c329ed 15264 dev_priv->display.modeset_calc_cdclk =
324513c0 15265 bxt_modeset_calc_cdclk;
c89e39f3
CT
15266 } else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
15267 dev_priv->display.modeset_commit_cdclk =
15268 skl_modeset_commit_cdclk;
15269 dev_priv->display.modeset_calc_cdclk =
15270 skl_modeset_calc_cdclk;
e70236a8 15271 }
5a21b665
DV
15272
15273 switch (INTEL_INFO(dev_priv)->gen) {
15274 case 2:
15275 dev_priv->display.queue_flip = intel_gen2_queue_flip;
15276 break;
15277
15278 case 3:
15279 dev_priv->display.queue_flip = intel_gen3_queue_flip;
15280 break;
15281
15282 case 4:
15283 case 5:
15284 dev_priv->display.queue_flip = intel_gen4_queue_flip;
15285 break;
15286
15287 case 6:
15288 dev_priv->display.queue_flip = intel_gen6_queue_flip;
15289 break;
15290 case 7:
15291 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
15292 dev_priv->display.queue_flip = intel_gen7_queue_flip;
15293 break;
15294 case 9:
15295 /* Drop through - unsupported since execlist only. */
15296 default:
15297 /* Default just returns -ENODEV to indicate unsupported */
15298 dev_priv->display.queue_flip = intel_default_queue_flip;
15299 }
e70236a8
JB
15300}
15301
b690e96c
JB
15302/*
15303 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
15304 * resume, or other times. This quirk makes sure that's the case for
15305 * affected systems.
15306 */
0206e353 15307static void quirk_pipea_force(struct drm_device *dev)
b690e96c 15308{
fac5e23e 15309 struct drm_i915_private *dev_priv = to_i915(dev);
b690e96c
JB
15310
15311 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
bc0daf48 15312 DRM_INFO("applying pipe a force quirk\n");
b690e96c
JB
15313}
15314
b6b5d049
VS
15315static void quirk_pipeb_force(struct drm_device *dev)
15316{
fac5e23e 15317 struct drm_i915_private *dev_priv = to_i915(dev);
b6b5d049
VS
15318
15319 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
15320 DRM_INFO("applying pipe b force quirk\n");
15321}
15322
435793df
KP
15323/*
15324 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
15325 */
15326static void quirk_ssc_force_disable(struct drm_device *dev)
15327{
fac5e23e 15328 struct drm_i915_private *dev_priv = to_i915(dev);
435793df 15329 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
bc0daf48 15330 DRM_INFO("applying lvds SSC disable quirk\n");
435793df
KP
15331}
15332
4dca20ef 15333/*
5a15ab5b
CE
15334 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
15335 * brightness value
4dca20ef
CE
15336 */
15337static void quirk_invert_brightness(struct drm_device *dev)
15338{
fac5e23e 15339 struct drm_i915_private *dev_priv = to_i915(dev);
4dca20ef 15340 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
bc0daf48 15341 DRM_INFO("applying inverted panel brightness quirk\n");
435793df
KP
15342}
15343
9c72cc6f
SD
15344/* Some VBT's incorrectly indicate no backlight is present */
15345static void quirk_backlight_present(struct drm_device *dev)
15346{
fac5e23e 15347 struct drm_i915_private *dev_priv = to_i915(dev);
9c72cc6f
SD
15348 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
15349 DRM_INFO("applying backlight present quirk\n");
15350}
15351
b690e96c
JB
15352struct intel_quirk {
15353 int device;
15354 int subsystem_vendor;
15355 int subsystem_device;
15356 void (*hook)(struct drm_device *dev);
15357};
15358
5f85f176
EE
15359/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
15360struct intel_dmi_quirk {
15361 void (*hook)(struct drm_device *dev);
15362 const struct dmi_system_id (*dmi_id_list)[];
15363};
15364
15365static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
15366{
15367 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
15368 return 1;
15369}
15370
15371static const struct intel_dmi_quirk intel_dmi_quirks[] = {
15372 {
15373 .dmi_id_list = &(const struct dmi_system_id[]) {
15374 {
15375 .callback = intel_dmi_reverse_brightness,
15376 .ident = "NCR Corporation",
15377 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
15378 DMI_MATCH(DMI_PRODUCT_NAME, ""),
15379 },
15380 },
15381 { } /* terminating entry */
15382 },
15383 .hook = quirk_invert_brightness,
15384 },
15385};
15386
c43b5634 15387static struct intel_quirk intel_quirks[] = {
b690e96c
JB
15388 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
15389 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
15390
b690e96c
JB
15391 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
15392 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
15393
5f080c0f
VS
15394 /* 830 needs to leave pipe A & dpll A up */
15395 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
15396
b6b5d049
VS
15397 /* 830 needs to leave pipe B & dpll B up */
15398 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
15399
435793df
KP
15400 /* Lenovo U160 cannot use SSC on LVDS */
15401 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
070d329a
MAS
15402
15403 /* Sony Vaio Y cannot use SSC on LVDS */
15404 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
5a15ab5b 15405
be505f64
AH
15406 /* Acer Aspire 5734Z must invert backlight brightness */
15407 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
15408
15409 /* Acer/eMachines G725 */
15410 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
15411
15412 /* Acer/eMachines e725 */
15413 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
15414
15415 /* Acer/Packard Bell NCL20 */
15416 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
15417
15418 /* Acer Aspire 4736Z */
15419 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
0f540c3a
JN
15420
15421 /* Acer Aspire 5336 */
15422 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
2e93a1aa
SD
15423
15424 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
15425 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
d4967d8c 15426
dfb3d47b
SD
15427 /* Acer C720 Chromebook (Core i3 4005U) */
15428 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
15429
b2a9601c 15430 /* Apple Macbook 2,1 (Core 2 T7400) */
15431 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
15432
1b9448b0
JN
15433 /* Apple Macbook 4,1 */
15434 { 0x2a02, 0x106b, 0x00a1, quirk_backlight_present },
15435
d4967d8c
SD
15436 /* Toshiba CB35 Chromebook (Celeron 2955U) */
15437 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
724cb06f
SD
15438
15439 /* HP Chromebook 14 (Celeron 2955U) */
15440 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
cf6f0af9
JN
15441
15442 /* Dell Chromebook 11 */
15443 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
9be64eee
JN
15444
15445 /* Dell Chromebook 11 (2015 version) */
15446 { 0x0a16, 0x1028, 0x0a35, quirk_backlight_present },
b690e96c
JB
15447};
15448
15449static void intel_init_quirks(struct drm_device *dev)
15450{
15451 struct pci_dev *d = dev->pdev;
15452 int i;
15453
15454 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
15455 struct intel_quirk *q = &intel_quirks[i];
15456
15457 if (d->device == q->device &&
15458 (d->subsystem_vendor == q->subsystem_vendor ||
15459 q->subsystem_vendor == PCI_ANY_ID) &&
15460 (d->subsystem_device == q->subsystem_device ||
15461 q->subsystem_device == PCI_ANY_ID))
15462 q->hook(dev);
15463 }
5f85f176
EE
15464 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
15465 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
15466 intel_dmi_quirks[i].hook(dev);
15467 }
b690e96c
JB
15468}
15469
9cce37f4
JB
15470/* Disable the VGA plane that we never use */
15471static void i915_disable_vga(struct drm_device *dev)
15472{
fac5e23e 15473 struct drm_i915_private *dev_priv = to_i915(dev);
9cce37f4 15474 u8 sr1;
f0f59a00 15475 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
9cce37f4 15476
2b37c616 15477 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
9cce37f4 15478 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
3fdcf431 15479 outb(SR01, VGA_SR_INDEX);
9cce37f4
JB
15480 sr1 = inb(VGA_SR_DATA);
15481 outb(sr1 | 1<<5, VGA_SR_DATA);
15482 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
15483 udelay(300);
15484
01f5a626 15485 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
9cce37f4
JB
15486 POSTING_READ(vga_reg);
15487}
15488
f817586c
DV
15489void intel_modeset_init_hw(struct drm_device *dev)
15490{
fac5e23e 15491 struct drm_i915_private *dev_priv = to_i915(dev);
1a617b77 15492
b6283055 15493 intel_update_cdclk(dev);
1a617b77
ML
15494
15495 dev_priv->atomic_cdclk_freq = dev_priv->cdclk_freq;
15496
f817586c 15497 intel_init_clock_gating(dev);
dc97997a 15498 intel_enable_gt_powersave(dev_priv);
f817586c
DV
15499}
15500
d93c0372
MR
15501/*
15502 * Calculate what we think the watermarks should be for the state we've read
15503 * out of the hardware and then immediately program those watermarks so that
15504 * we ensure the hardware settings match our internal state.
15505 *
15506 * We can calculate what we think WM's should be by creating a duplicate of the
15507 * current state (which was constructed during hardware readout) and running it
15508 * through the atomic check code to calculate new watermark values in the
15509 * state object.
15510 */
15511static void sanitize_watermarks(struct drm_device *dev)
15512{
15513 struct drm_i915_private *dev_priv = to_i915(dev);
15514 struct drm_atomic_state *state;
15515 struct drm_crtc *crtc;
15516 struct drm_crtc_state *cstate;
15517 struct drm_modeset_acquire_ctx ctx;
15518 int ret;
15519 int i;
15520
15521 /* Only supported on platforms that use atomic watermark design */
ed4a6a7c 15522 if (!dev_priv->display.optimize_watermarks)
d93c0372
MR
15523 return;
15524
15525 /*
15526 * We need to hold connection_mutex before calling duplicate_state so
15527 * that the connector loop is protected.
15528 */
15529 drm_modeset_acquire_init(&ctx, 0);
15530retry:
0cd1262d 15531 ret = drm_modeset_lock_all_ctx(dev, &ctx);
d93c0372
MR
15532 if (ret == -EDEADLK) {
15533 drm_modeset_backoff(&ctx);
15534 goto retry;
15535 } else if (WARN_ON(ret)) {
0cd1262d 15536 goto fail;
d93c0372
MR
15537 }
15538
15539 state = drm_atomic_helper_duplicate_state(dev, &ctx);
15540 if (WARN_ON(IS_ERR(state)))
0cd1262d 15541 goto fail;
d93c0372 15542
ed4a6a7c
MR
15543 /*
15544 * Hardware readout is the only time we don't want to calculate
15545 * intermediate watermarks (since we don't trust the current
15546 * watermarks).
15547 */
15548 to_intel_atomic_state(state)->skip_intermediate_wm = true;
15549
d93c0372
MR
15550 ret = intel_atomic_check(dev, state);
15551 if (ret) {
15552 /*
15553 * If we fail here, it means that the hardware appears to be
15554 * programmed in a way that shouldn't be possible, given our
15555 * understanding of watermark requirements. This might mean a
15556 * mistake in the hardware readout code or a mistake in the
15557 * watermark calculations for a given platform. Raise a WARN
15558 * so that this is noticeable.
15559 *
15560 * If this actually happens, we'll have to just leave the
15561 * BIOS-programmed watermarks untouched and hope for the best.
15562 */
15563 WARN(true, "Could not determine valid watermarks for inherited state\n");
0cd1262d 15564 goto fail;
d93c0372
MR
15565 }
15566
15567 /* Write calculated watermark values back */
d93c0372
MR
15568 for_each_crtc_in_state(state, crtc, cstate, i) {
15569 struct intel_crtc_state *cs = to_intel_crtc_state(cstate);
15570
ed4a6a7c
MR
15571 cs->wm.need_postvbl_update = true;
15572 dev_priv->display.optimize_watermarks(cs);
d93c0372
MR
15573 }
15574
15575 drm_atomic_state_free(state);
0cd1262d 15576fail:
d93c0372
MR
15577 drm_modeset_drop_locks(&ctx);
15578 drm_modeset_acquire_fini(&ctx);
15579}
15580
79e53945
JB
15581void intel_modeset_init(struct drm_device *dev)
15582{
72e96d64
JL
15583 struct drm_i915_private *dev_priv = to_i915(dev);
15584 struct i915_ggtt *ggtt = &dev_priv->ggtt;
1fe47785 15585 int sprite, ret;
8cc87b75 15586 enum pipe pipe;
46f297fb 15587 struct intel_crtc *crtc;
79e53945
JB
15588
15589 drm_mode_config_init(dev);
15590
15591 dev->mode_config.min_width = 0;
15592 dev->mode_config.min_height = 0;
15593
019d96cb
DA
15594 dev->mode_config.preferred_depth = 24;
15595 dev->mode_config.prefer_shadow = 1;
15596
25bab385
TU
15597 dev->mode_config.allow_fb_modifiers = true;
15598
e6ecefaa 15599 dev->mode_config.funcs = &intel_mode_funcs;
79e53945 15600
b690e96c
JB
15601 intel_init_quirks(dev);
15602
1fa61106
ED
15603 intel_init_pm(dev);
15604
e3c74757
BW
15605 if (INTEL_INFO(dev)->num_pipes == 0)
15606 return;
15607
69f92f67
LW
15608 /*
15609 * There may be no VBT; and if the BIOS enabled SSC we can
15610 * just keep using it to avoid unnecessary flicker. Whereas if the
15611 * BIOS isn't using it, don't assume it will work even if the VBT
15612 * indicates as much.
15613 */
15614 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
15615 bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
15616 DREF_SSC1_ENABLE);
15617
15618 if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) {
15619 DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n",
15620 bios_lvds_use_ssc ? "en" : "dis",
15621 dev_priv->vbt.lvds_use_ssc ? "en" : "dis");
15622 dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc;
15623 }
15624 }
15625
a6c45cf0
CW
15626 if (IS_GEN2(dev)) {
15627 dev->mode_config.max_width = 2048;
15628 dev->mode_config.max_height = 2048;
15629 } else if (IS_GEN3(dev)) {
5e4d6fa7
KP
15630 dev->mode_config.max_width = 4096;
15631 dev->mode_config.max_height = 4096;
79e53945 15632 } else {
a6c45cf0
CW
15633 dev->mode_config.max_width = 8192;
15634 dev->mode_config.max_height = 8192;
79e53945 15635 }
068be561 15636
dc41c154
VS
15637 if (IS_845G(dev) || IS_I865G(dev)) {
15638 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
15639 dev->mode_config.cursor_height = 1023;
15640 } else if (IS_GEN2(dev)) {
068be561
DL
15641 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
15642 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
15643 } else {
15644 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
15645 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
15646 }
15647
72e96d64 15648 dev->mode_config.fb_base = ggtt->mappable_base;
79e53945 15649
28c97730 15650 DRM_DEBUG_KMS("%d display pipe%s available.\n",
7eb552ae
BW
15651 INTEL_INFO(dev)->num_pipes,
15652 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
79e53945 15653
055e393f 15654 for_each_pipe(dev_priv, pipe) {
8cc87b75 15655 intel_crtc_init(dev, pipe);
3bdcfc0c 15656 for_each_sprite(dev_priv, pipe, sprite) {
1fe47785 15657 ret = intel_plane_init(dev, pipe, sprite);
7f1f3851 15658 if (ret)
06da8da2 15659 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
1fe47785 15660 pipe_name(pipe), sprite_name(pipe, sprite), ret);
7f1f3851 15661 }
79e53945
JB
15662 }
15663
bfa7df01
VS
15664 intel_update_czclk(dev_priv);
15665 intel_update_cdclk(dev);
15666
e72f9fbf 15667 intel_shared_dpll_init(dev);
ee7b9f93 15668
b2045352
VS
15669 if (dev_priv->max_cdclk_freq == 0)
15670 intel_update_max_cdclk(dev);
15671
9cce37f4
JB
15672 /* Just disable it once at startup */
15673 i915_disable_vga(dev);
79e53945 15674 intel_setup_outputs(dev);
11be49eb 15675
6e9f798d 15676 drm_modeset_lock_all(dev);
043e9bda 15677 intel_modeset_setup_hw_state(dev);
6e9f798d 15678 drm_modeset_unlock_all(dev);
46f297fb 15679
d3fcc808 15680 for_each_intel_crtc(dev, crtc) {
eeebeac5
ML
15681 struct intel_initial_plane_config plane_config = {};
15682
46f297fb
JB
15683 if (!crtc->active)
15684 continue;
15685
46f297fb 15686 /*
46f297fb
JB
15687 * Note that reserving the BIOS fb up front prevents us
15688 * from stuffing other stolen allocations like the ring
15689 * on top. This prevents some ugliness at boot time, and
15690 * can even allow for smooth boot transitions if the BIOS
15691 * fb is large enough for the active pipe configuration.
15692 */
eeebeac5
ML
15693 dev_priv->display.get_initial_plane_config(crtc,
15694 &plane_config);
15695
15696 /*
15697 * If the fb is shared between multiple heads, we'll
15698 * just get the first one.
15699 */
15700 intel_find_initial_plane_obj(crtc, &plane_config);
46f297fb 15701 }
d93c0372
MR
15702
15703 /*
15704 * Make sure hardware watermarks really match the state we read out.
15705 * Note that we need to do this after reconstructing the BIOS fb's
15706 * since the watermark calculation done here will use pstate->fb.
15707 */
15708 sanitize_watermarks(dev);
2c7111db
CW
15709}
15710
7fad798e
DV
15711static void intel_enable_pipe_a(struct drm_device *dev)
15712{
15713 struct intel_connector *connector;
15714 struct drm_connector *crt = NULL;
15715 struct intel_load_detect_pipe load_detect_temp;
208bf9fd 15716 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
7fad798e
DV
15717
15718 /* We can't just switch on the pipe A, we need to set things up with a
15719 * proper mode and output configuration. As a gross hack, enable pipe A
15720 * by enabling the load detect pipe once. */
3a3371ff 15721 for_each_intel_connector(dev, connector) {
7fad798e
DV
15722 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
15723 crt = &connector->base;
15724 break;
15725 }
15726 }
15727
15728 if (!crt)
15729 return;
15730
208bf9fd 15731 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
49172fee 15732 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
7fad798e
DV
15733}
15734
fa555837
DV
15735static bool
15736intel_check_plane_mapping(struct intel_crtc *crtc)
15737{
7eb552ae 15738 struct drm_device *dev = crtc->base.dev;
fac5e23e 15739 struct drm_i915_private *dev_priv = to_i915(dev);
649636ef 15740 u32 val;
fa555837 15741
7eb552ae 15742 if (INTEL_INFO(dev)->num_pipes == 1)
fa555837
DV
15743 return true;
15744
649636ef 15745 val = I915_READ(DSPCNTR(!crtc->plane));
fa555837
DV
15746
15747 if ((val & DISPLAY_PLANE_ENABLE) &&
15748 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
15749 return false;
15750
15751 return true;
15752}
15753
02e93c35
VS
15754static bool intel_crtc_has_encoders(struct intel_crtc *crtc)
15755{
15756 struct drm_device *dev = crtc->base.dev;
15757 struct intel_encoder *encoder;
15758
15759 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
15760 return true;
15761
15762 return false;
15763}
15764
dd756198
VS
15765static bool intel_encoder_has_connectors(struct intel_encoder *encoder)
15766{
15767 struct drm_device *dev = encoder->base.dev;
15768 struct intel_connector *connector;
15769
15770 for_each_connector_on_encoder(dev, &encoder->base, connector)
15771 return true;
15772
15773 return false;
15774}
15775
24929352
DV
15776static void intel_sanitize_crtc(struct intel_crtc *crtc)
15777{
15778 struct drm_device *dev = crtc->base.dev;
fac5e23e 15779 struct drm_i915_private *dev_priv = to_i915(dev);
4d1de975 15780 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
24929352 15781
24929352 15782 /* Clear any frame start delays used for debugging left by the BIOS */
4d1de975
JN
15783 if (!transcoder_is_dsi(cpu_transcoder)) {
15784 i915_reg_t reg = PIPECONF(cpu_transcoder);
15785
15786 I915_WRITE(reg,
15787 I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
15788 }
24929352 15789
d3eaf884 15790 /* restore vblank interrupts to correct state */
9625604c 15791 drm_crtc_vblank_reset(&crtc->base);
d297e103 15792 if (crtc->active) {
f9cd7b88
VS
15793 struct intel_plane *plane;
15794
9625604c 15795 drm_crtc_vblank_on(&crtc->base);
f9cd7b88
VS
15796
15797 /* Disable everything but the primary plane */
15798 for_each_intel_plane_on_crtc(dev, crtc, plane) {
15799 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
15800 continue;
15801
15802 plane->disable_plane(&plane->base, &crtc->base);
15803 }
9625604c 15804 }
d3eaf884 15805
24929352 15806 /* We need to sanitize the plane -> pipe mapping first because this will
fa555837
DV
15807 * disable the crtc (and hence change the state) if it is wrong. Note
15808 * that gen4+ has a fixed plane -> pipe mapping. */
15809 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
24929352
DV
15810 bool plane;
15811
78108b7c
VS
15812 DRM_DEBUG_KMS("[CRTC:%d:%s] wrong plane connection detected!\n",
15813 crtc->base.base.id, crtc->base.name);
24929352
DV
15814
15815 /* Pipe has the wrong plane attached and the plane is active.
15816 * Temporarily change the plane mapping and disable everything
15817 * ... */
15818 plane = crtc->plane;
b70709a6 15819 to_intel_plane_state(crtc->base.primary->state)->visible = true;
24929352 15820 crtc->plane = !plane;
b17d48e2 15821 intel_crtc_disable_noatomic(&crtc->base);
24929352 15822 crtc->plane = plane;
24929352 15823 }
24929352 15824
7fad798e
DV
15825 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
15826 crtc->pipe == PIPE_A && !crtc->active) {
15827 /* BIOS forgot to enable pipe A, this mostly happens after
15828 * resume. Force-enable the pipe to fix this, the update_dpms
15829 * call below we restore the pipe to the right state, but leave
15830 * the required bits on. */
15831 intel_enable_pipe_a(dev);
15832 }
15833
24929352
DV
15834 /* Adjust the state of the output pipe according to whether we
15835 * have active connectors/encoders. */
842e0307 15836 if (crtc->active && !intel_crtc_has_encoders(crtc))
b17d48e2 15837 intel_crtc_disable_noatomic(&crtc->base);
24929352 15838
a3ed6aad 15839 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
4cc31489
DV
15840 /*
15841 * We start out with underrun reporting disabled to avoid races.
15842 * For correct bookkeeping mark this on active crtcs.
15843 *
c5ab3bc0
DV
15844 * Also on gmch platforms we dont have any hardware bits to
15845 * disable the underrun reporting. Which means we need to start
15846 * out with underrun reporting disabled also on inactive pipes,
15847 * since otherwise we'll complain about the garbage we read when
15848 * e.g. coming up after runtime pm.
15849 *
4cc31489
DV
15850 * No protection against concurrent access is required - at
15851 * worst a fifo underrun happens which also sets this to false.
15852 */
15853 crtc->cpu_fifo_underrun_disabled = true;
15854 crtc->pch_fifo_underrun_disabled = true;
15855 }
24929352
DV
15856}
15857
15858static void intel_sanitize_encoder(struct intel_encoder *encoder)
15859{
15860 struct intel_connector *connector;
15861 struct drm_device *dev = encoder->base.dev;
15862
15863 /* We need to check both for a crtc link (meaning that the
15864 * encoder is active and trying to read from a pipe) and the
15865 * pipe itself being active. */
15866 bool has_active_crtc = encoder->base.crtc &&
15867 to_intel_crtc(encoder->base.crtc)->active;
15868
dd756198 15869 if (intel_encoder_has_connectors(encoder) && !has_active_crtc) {
24929352
DV
15870 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
15871 encoder->base.base.id,
8e329a03 15872 encoder->base.name);
24929352
DV
15873
15874 /* Connector is active, but has no active pipe. This is
15875 * fallout from our resume register restoring. Disable
15876 * the encoder manually again. */
15877 if (encoder->base.crtc) {
15878 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
15879 encoder->base.base.id,
8e329a03 15880 encoder->base.name);
24929352 15881 encoder->disable(encoder);
a62d1497
VS
15882 if (encoder->post_disable)
15883 encoder->post_disable(encoder);
24929352 15884 }
7f1950fb 15885 encoder->base.crtc = NULL;
24929352
DV
15886
15887 /* Inconsistent output/port/pipe state happens presumably due to
15888 * a bug in one of the get_hw_state functions. Or someplace else
15889 * in our code, like the register restore mess on resume. Clamp
15890 * things to off as a safer default. */
3a3371ff 15891 for_each_intel_connector(dev, connector) {
24929352
DV
15892 if (connector->encoder != encoder)
15893 continue;
7f1950fb
EE
15894 connector->base.dpms = DRM_MODE_DPMS_OFF;
15895 connector->base.encoder = NULL;
24929352
DV
15896 }
15897 }
15898 /* Enabled encoders without active connectors will be fixed in
15899 * the crtc fixup. */
15900}
15901
04098753 15902void i915_redisable_vga_power_on(struct drm_device *dev)
0fde901f 15903{
fac5e23e 15904 struct drm_i915_private *dev_priv = to_i915(dev);
f0f59a00 15905 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
0fde901f 15906
04098753
ID
15907 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
15908 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
15909 i915_disable_vga(dev);
15910 }
15911}
15912
15913void i915_redisable_vga(struct drm_device *dev)
15914{
fac5e23e 15915 struct drm_i915_private *dev_priv = to_i915(dev);
04098753 15916
8dc8a27c
PZ
15917 /* This function can be called both from intel_modeset_setup_hw_state or
15918 * at a very early point in our resume sequence, where the power well
15919 * structures are not yet restored. Since this function is at a very
15920 * paranoid "someone might have enabled VGA while we were not looking"
15921 * level, just check if the power well is enabled instead of trying to
15922 * follow the "don't touch the power well if we don't need it" policy
15923 * the rest of the driver uses. */
6392f847 15924 if (!intel_display_power_get_if_enabled(dev_priv, POWER_DOMAIN_VGA))
8dc8a27c
PZ
15925 return;
15926
04098753 15927 i915_redisable_vga_power_on(dev);
6392f847
ID
15928
15929 intel_display_power_put(dev_priv, POWER_DOMAIN_VGA);
0fde901f
KM
15930}
15931
f9cd7b88 15932static bool primary_get_hw_state(struct intel_plane *plane)
98ec7739 15933{
f9cd7b88 15934 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
98ec7739 15935
f9cd7b88 15936 return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE;
d032ffa0
ML
15937}
15938
f9cd7b88
VS
15939/* FIXME read out full plane state for all planes */
15940static void readout_plane_state(struct intel_crtc *crtc)
d032ffa0 15941{
b26d3ea3 15942 struct drm_plane *primary = crtc->base.primary;
f9cd7b88 15943 struct intel_plane_state *plane_state =
b26d3ea3 15944 to_intel_plane_state(primary->state);
d032ffa0 15945
19b8d387 15946 plane_state->visible = crtc->active &&
b26d3ea3
ML
15947 primary_get_hw_state(to_intel_plane(primary));
15948
15949 if (plane_state->visible)
15950 crtc->base.state->plane_mask |= 1 << drm_plane_index(primary);
98ec7739
VS
15951}
15952
30e984df 15953static void intel_modeset_readout_hw_state(struct drm_device *dev)
24929352 15954{
fac5e23e 15955 struct drm_i915_private *dev_priv = to_i915(dev);
24929352 15956 enum pipe pipe;
24929352
DV
15957 struct intel_crtc *crtc;
15958 struct intel_encoder *encoder;
15959 struct intel_connector *connector;
5358901f 15960 int i;
24929352 15961
565602d7
ML
15962 dev_priv->active_crtcs = 0;
15963
d3fcc808 15964 for_each_intel_crtc(dev, crtc) {
565602d7
ML
15965 struct intel_crtc_state *crtc_state = crtc->config;
15966 int pixclk = 0;
3b117c8f 15967
ec2dc6a0 15968 __drm_atomic_helper_crtc_destroy_state(&crtc_state->base);
565602d7
ML
15969 memset(crtc_state, 0, sizeof(*crtc_state));
15970 crtc_state->base.crtc = &crtc->base;
24929352 15971
565602d7
ML
15972 crtc_state->base.active = crtc_state->base.enable =
15973 dev_priv->display.get_pipe_config(crtc, crtc_state);
15974
15975 crtc->base.enabled = crtc_state->base.enable;
15976 crtc->active = crtc_state->base.active;
15977
15978 if (crtc_state->base.active) {
15979 dev_priv->active_crtcs |= 1 << crtc->pipe;
15980
c89e39f3 15981 if (INTEL_GEN(dev_priv) >= 9 || IS_BROADWELL(dev_priv))
565602d7 15982 pixclk = ilk_pipe_pixel_rate(crtc_state);
9558d15d 15983 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
565602d7
ML
15984 pixclk = crtc_state->base.adjusted_mode.crtc_clock;
15985 else
15986 WARN_ON(dev_priv->display.modeset_calc_cdclk);
9558d15d
VS
15987
15988 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
15989 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
15990 pixclk = DIV_ROUND_UP(pixclk * 100, 95);
565602d7
ML
15991 }
15992
15993 dev_priv->min_pixclk[crtc->pipe] = pixclk;
b70709a6 15994
f9cd7b88 15995 readout_plane_state(crtc);
24929352 15996
78108b7c
VS
15997 DRM_DEBUG_KMS("[CRTC:%d:%s] hw state readout: %s\n",
15998 crtc->base.base.id, crtc->base.name,
24929352
DV
15999 crtc->active ? "enabled" : "disabled");
16000 }
16001
5358901f
DV
16002 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
16003 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
16004
2edd6443
ACO
16005 pll->on = pll->funcs.get_hw_state(dev_priv, pll,
16006 &pll->config.hw_state);
3e369b76 16007 pll->config.crtc_mask = 0;
d3fcc808 16008 for_each_intel_crtc(dev, crtc) {
2dd66ebd 16009 if (crtc->active && crtc->config->shared_dpll == pll)
3e369b76 16010 pll->config.crtc_mask |= 1 << crtc->pipe;
5358901f 16011 }
2dd66ebd 16012 pll->active_mask = pll->config.crtc_mask;
5358901f 16013
1e6f2ddc 16014 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
3e369b76 16015 pll->name, pll->config.crtc_mask, pll->on);
5358901f
DV
16016 }
16017
b2784e15 16018 for_each_intel_encoder(dev, encoder) {
24929352
DV
16019 pipe = 0;
16020
16021 if (encoder->get_hw_state(encoder, &pipe)) {
045ac3b5
JB
16022 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
16023 encoder->base.crtc = &crtc->base;
253c84c8 16024 crtc->config->output_types |= 1 << encoder->type;
6e3c9717 16025 encoder->get_config(encoder, crtc->config);
24929352
DV
16026 } else {
16027 encoder->base.crtc = NULL;
16028 }
16029
6f2bcceb 16030 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
24929352 16031 encoder->base.base.id,
8e329a03 16032 encoder->base.name,
24929352 16033 encoder->base.crtc ? "enabled" : "disabled",
6f2bcceb 16034 pipe_name(pipe));
24929352
DV
16035 }
16036
3a3371ff 16037 for_each_intel_connector(dev, connector) {
24929352
DV
16038 if (connector->get_hw_state(connector)) {
16039 connector->base.dpms = DRM_MODE_DPMS_ON;
2aa974c9
ML
16040
16041 encoder = connector->encoder;
16042 connector->base.encoder = &encoder->base;
16043
16044 if (encoder->base.crtc &&
16045 encoder->base.crtc->state->active) {
16046 /*
16047 * This has to be done during hardware readout
16048 * because anything calling .crtc_disable may
16049 * rely on the connector_mask being accurate.
16050 */
16051 encoder->base.crtc->state->connector_mask |=
16052 1 << drm_connector_index(&connector->base);
e87a52b3
ML
16053 encoder->base.crtc->state->encoder_mask |=
16054 1 << drm_encoder_index(&encoder->base);
2aa974c9
ML
16055 }
16056
24929352
DV
16057 } else {
16058 connector->base.dpms = DRM_MODE_DPMS_OFF;
16059 connector->base.encoder = NULL;
16060 }
16061 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
16062 connector->base.base.id,
c23cc417 16063 connector->base.name,
24929352
DV
16064 connector->base.encoder ? "enabled" : "disabled");
16065 }
7f4c6284
VS
16066
16067 for_each_intel_crtc(dev, crtc) {
16068 crtc->base.hwmode = crtc->config->base.adjusted_mode;
16069
16070 memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
16071 if (crtc->base.state->active) {
16072 intel_mode_from_pipe_config(&crtc->base.mode, crtc->config);
16073 intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config);
16074 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode));
16075
16076 /*
16077 * The initial mode needs to be set in order to keep
16078 * the atomic core happy. It wants a valid mode if the
16079 * crtc's enabled, so we do the above call.
16080 *
16081 * At this point some state updated by the connectors
16082 * in their ->detect() callback has not run yet, so
16083 * no recalculation can be done yet.
16084 *
16085 * Even if we could do a recalculation and modeset
16086 * right now it would cause a double modeset if
16087 * fbdev or userspace chooses a different initial mode.
16088 *
16089 * If that happens, someone indicated they wanted a
16090 * mode change, which means it's safe to do a full
16091 * recalculation.
16092 */
16093 crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;
9eca6832
VS
16094
16095 drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
16096 update_scanline_offset(crtc);
7f4c6284 16097 }
e3b247da
VS
16098
16099 intel_pipe_config_sanity_check(dev_priv, crtc->config);
7f4c6284 16100 }
30e984df
DV
16101}
16102
043e9bda
ML
16103/* Scan out the current hw modeset state,
16104 * and sanitizes it to the current state
16105 */
16106static void
16107intel_modeset_setup_hw_state(struct drm_device *dev)
30e984df 16108{
fac5e23e 16109 struct drm_i915_private *dev_priv = to_i915(dev);
30e984df 16110 enum pipe pipe;
30e984df
DV
16111 struct intel_crtc *crtc;
16112 struct intel_encoder *encoder;
35c95375 16113 int i;
30e984df
DV
16114
16115 intel_modeset_readout_hw_state(dev);
24929352
DV
16116
16117 /* HW state is read out, now we need to sanitize this mess. */
b2784e15 16118 for_each_intel_encoder(dev, encoder) {
24929352
DV
16119 intel_sanitize_encoder(encoder);
16120 }
16121
055e393f 16122 for_each_pipe(dev_priv, pipe) {
24929352
DV
16123 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
16124 intel_sanitize_crtc(crtc);
6e3c9717
ACO
16125 intel_dump_pipe_config(crtc, crtc->config,
16126 "[setup_hw_state]");
24929352 16127 }
9a935856 16128
d29b2f9d
ACO
16129 intel_modeset_update_connector_atomic_state(dev);
16130
35c95375
DV
16131 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
16132 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
16133
2dd66ebd 16134 if (!pll->on || pll->active_mask)
35c95375
DV
16135 continue;
16136
16137 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
16138
2edd6443 16139 pll->funcs.disable(dev_priv, pll);
35c95375
DV
16140 pll->on = false;
16141 }
16142
666a4537 16143 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
6eb1a681
VS
16144 vlv_wm_get_hw_state(dev);
16145 else if (IS_GEN9(dev))
3078999f
PB
16146 skl_wm_get_hw_state(dev);
16147 else if (HAS_PCH_SPLIT(dev))
243e6a44 16148 ilk_wm_get_hw_state(dev);
292b990e
ML
16149
16150 for_each_intel_crtc(dev, crtc) {
16151 unsigned long put_domains;
16152
74bff5f9 16153 put_domains = modeset_get_crtc_power_domains(&crtc->base, crtc->config);
292b990e
ML
16154 if (WARN_ON(put_domains))
16155 modeset_put_power_domains(dev_priv, put_domains);
16156 }
16157 intel_display_set_init_power(dev_priv, false);
010cf73d
PZ
16158
16159 intel_fbc_init_pipe_state(dev_priv);
043e9bda 16160}
7d0bc1ea 16161
043e9bda
ML
16162void intel_display_resume(struct drm_device *dev)
16163{
e2c8b870
ML
16164 struct drm_i915_private *dev_priv = to_i915(dev);
16165 struct drm_atomic_state *state = dev_priv->modeset_restore_state;
16166 struct drm_modeset_acquire_ctx ctx;
043e9bda 16167 int ret;
e2c8b870 16168 bool setup = false;
f30da187 16169
e2c8b870 16170 dev_priv->modeset_restore_state = NULL;
043e9bda 16171
ea49c9ac
ML
16172 /*
16173 * This is a cludge because with real atomic modeset mode_config.mutex
16174 * won't be taken. Unfortunately some probed state like
16175 * audio_codec_enable is still protected by mode_config.mutex, so lock
16176 * it here for now.
16177 */
16178 mutex_lock(&dev->mode_config.mutex);
e2c8b870 16179 drm_modeset_acquire_init(&ctx, 0);
043e9bda 16180
e2c8b870
ML
16181retry:
16182 ret = drm_modeset_lock_all_ctx(dev, &ctx);
043e9bda 16183
e2c8b870
ML
16184 if (ret == 0 && !setup) {
16185 setup = true;
043e9bda 16186
e2c8b870
ML
16187 intel_modeset_setup_hw_state(dev);
16188 i915_redisable_vga(dev);
45e2b5f6 16189 }
8af6cf88 16190
e2c8b870
ML
16191 if (ret == 0 && state) {
16192 struct drm_crtc_state *crtc_state;
16193 struct drm_crtc *crtc;
16194 int i;
043e9bda 16195
e2c8b870
ML
16196 state->acquire_ctx = &ctx;
16197
e3d5457c
VS
16198 /* ignore any reset values/BIOS leftovers in the WM registers */
16199 to_intel_atomic_state(state)->skip_intermediate_wm = true;
16200
e2c8b870
ML
16201 for_each_crtc_in_state(state, crtc, crtc_state, i) {
16202 /*
16203 * Force recalculation even if we restore
16204 * current state. With fast modeset this may not result
16205 * in a modeset when the state is compatible.
16206 */
16207 crtc_state->mode_changed = true;
16208 }
16209
16210 ret = drm_atomic_commit(state);
043e9bda
ML
16211 }
16212
e2c8b870
ML
16213 if (ret == -EDEADLK) {
16214 drm_modeset_backoff(&ctx);
16215 goto retry;
16216 }
043e9bda 16217
e2c8b870
ML
16218 drm_modeset_drop_locks(&ctx);
16219 drm_modeset_acquire_fini(&ctx);
ea49c9ac 16220 mutex_unlock(&dev->mode_config.mutex);
043e9bda 16221
e2c8b870
ML
16222 if (ret) {
16223 DRM_ERROR("Restoring old state failed with %i\n", ret);
16224 drm_atomic_state_free(state);
16225 }
2c7111db
CW
16226}
16227
16228void intel_modeset_gem_init(struct drm_device *dev)
16229{
dc97997a 16230 struct drm_i915_private *dev_priv = to_i915(dev);
484b41dd 16231 struct drm_crtc *c;
2ff8fde1 16232 struct drm_i915_gem_object *obj;
e0d6149b 16233 int ret;
484b41dd 16234
dc97997a 16235 intel_init_gt_powersave(dev_priv);
ae48434c 16236
1833b134 16237 intel_modeset_init_hw(dev);
02e792fb 16238
1ee8da6d 16239 intel_setup_overlay(dev_priv);
484b41dd
JB
16240
16241 /*
16242 * Make sure any fbs we allocated at startup are properly
16243 * pinned & fenced. When we do the allocation it's too early
16244 * for this.
16245 */
70e1e0ec 16246 for_each_crtc(dev, c) {
2ff8fde1
MR
16247 obj = intel_fb_obj(c->primary->fb);
16248 if (obj == NULL)
484b41dd
JB
16249 continue;
16250
e0d6149b 16251 mutex_lock(&dev->struct_mutex);
3465c580
VS
16252 ret = intel_pin_and_fence_fb_obj(c->primary->fb,
16253 c->primary->state->rotation);
e0d6149b
TU
16254 mutex_unlock(&dev->struct_mutex);
16255 if (ret) {
484b41dd
JB
16256 DRM_ERROR("failed to pin boot fb on pipe %d\n",
16257 to_intel_crtc(c)->pipe);
66e514c1 16258 drm_framebuffer_unreference(c->primary->fb);
5a21b665 16259 c->primary->fb = NULL;
36750f28 16260 c->primary->crtc = c->primary->state->crtc = NULL;
5a21b665 16261 update_state_fb(c->primary);
36750f28 16262 c->state->plane_mask &= ~(1 << drm_plane_index(c->primary));
484b41dd
JB
16263 }
16264 }
1ebaa0b9
CW
16265}
16266
16267int intel_connector_register(struct drm_connector *connector)
16268{
16269 struct intel_connector *intel_connector = to_intel_connector(connector);
16270 int ret;
16271
16272 ret = intel_backlight_device_register(intel_connector);
16273 if (ret)
16274 goto err;
16275
16276 return 0;
0962c3c9 16277
1ebaa0b9
CW
16278err:
16279 return ret;
79e53945
JB
16280}
16281
c191eca1 16282void intel_connector_unregister(struct drm_connector *connector)
4932e2c3 16283{
e63d87c0 16284 struct intel_connector *intel_connector = to_intel_connector(connector);
4932e2c3 16285
e63d87c0 16286 intel_backlight_device_unregister(intel_connector);
4932e2c3 16287 intel_panel_destroy_backlight(connector);
4932e2c3
ID
16288}
16289
79e53945
JB
16290void intel_modeset_cleanup(struct drm_device *dev)
16291{
fac5e23e 16292 struct drm_i915_private *dev_priv = to_i915(dev);
652c393a 16293
dc97997a 16294 intel_disable_gt_powersave(dev_priv);
2eb5252e 16295
fd0c0642
DV
16296 /*
16297 * Interrupts and polling as the first thing to avoid creating havoc.
2eb5252e 16298 * Too much stuff here (turning of connectors, ...) would
fd0c0642
DV
16299 * experience fancy races otherwise.
16300 */
2aeb7d3a 16301 intel_irq_uninstall(dev_priv);
eb21b92b 16302
fd0c0642
DV
16303 /*
16304 * Due to the hpd irq storm handling the hotplug work can re-arm the
16305 * poll handlers. Hence disable polling after hpd handling is shut down.
16306 */
f87ea761 16307 drm_kms_helper_poll_fini(dev);
fd0c0642 16308
723bfd70
JB
16309 intel_unregister_dsm_handler();
16310
c937ab3e 16311 intel_fbc_global_disable(dev_priv);
69341a5e 16312
1630fe75
CW
16313 /* flush any delayed tasks or pending work */
16314 flush_scheduled_work();
16315
79e53945 16316 drm_mode_config_cleanup(dev);
4d7bb011 16317
1ee8da6d 16318 intel_cleanup_overlay(dev_priv);
ae48434c 16319
dc97997a 16320 intel_cleanup_gt_powersave(dev_priv);
f5949141
DV
16321
16322 intel_teardown_gmbus(dev);
79e53945
JB
16323}
16324
df0e9248
CW
16325void intel_connector_attach_encoder(struct intel_connector *connector,
16326 struct intel_encoder *encoder)
16327{
16328 connector->encoder = encoder;
16329 drm_mode_connector_attach_encoder(&connector->base,
16330 &encoder->base);
79e53945 16331}
28d52043
DA
16332
16333/*
16334 * set vga decode state - true == enable VGA decode
16335 */
16336int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
16337{
fac5e23e 16338 struct drm_i915_private *dev_priv = to_i915(dev);
a885b3cc 16339 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
28d52043
DA
16340 u16 gmch_ctrl;
16341
75fa041d
CW
16342 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
16343 DRM_ERROR("failed to read control word\n");
16344 return -EIO;
16345 }
16346
c0cc8a55
CW
16347 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
16348 return 0;
16349
28d52043
DA
16350 if (state)
16351 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
16352 else
16353 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
75fa041d
CW
16354
16355 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
16356 DRM_ERROR("failed to write control word\n");
16357 return -EIO;
16358 }
16359
28d52043
DA
16360 return 0;
16361}
c4a1d9e4 16362
c4a1d9e4 16363struct intel_display_error_state {
ff57f1b0
PZ
16364
16365 u32 power_well_driver;
16366
63b66e5b
CW
16367 int num_transcoders;
16368
c4a1d9e4
CW
16369 struct intel_cursor_error_state {
16370 u32 control;
16371 u32 position;
16372 u32 base;
16373 u32 size;
52331309 16374 } cursor[I915_MAX_PIPES];
c4a1d9e4
CW
16375
16376 struct intel_pipe_error_state {
ddf9c536 16377 bool power_domain_on;
c4a1d9e4 16378 u32 source;
f301b1e1 16379 u32 stat;
52331309 16380 } pipe[I915_MAX_PIPES];
c4a1d9e4
CW
16381
16382 struct intel_plane_error_state {
16383 u32 control;
16384 u32 stride;
16385 u32 size;
16386 u32 pos;
16387 u32 addr;
16388 u32 surface;
16389 u32 tile_offset;
52331309 16390 } plane[I915_MAX_PIPES];
63b66e5b
CW
16391
16392 struct intel_transcoder_error_state {
ddf9c536 16393 bool power_domain_on;
63b66e5b
CW
16394 enum transcoder cpu_transcoder;
16395
16396 u32 conf;
16397
16398 u32 htotal;
16399 u32 hblank;
16400 u32 hsync;
16401 u32 vtotal;
16402 u32 vblank;
16403 u32 vsync;
16404 } transcoder[4];
c4a1d9e4
CW
16405};
16406
16407struct intel_display_error_state *
c033666a 16408intel_display_capture_error_state(struct drm_i915_private *dev_priv)
c4a1d9e4 16409{
c4a1d9e4 16410 struct intel_display_error_state *error;
63b66e5b
CW
16411 int transcoders[] = {
16412 TRANSCODER_A,
16413 TRANSCODER_B,
16414 TRANSCODER_C,
16415 TRANSCODER_EDP,
16416 };
c4a1d9e4
CW
16417 int i;
16418
c033666a 16419 if (INTEL_INFO(dev_priv)->num_pipes == 0)
63b66e5b
CW
16420 return NULL;
16421
9d1cb914 16422 error = kzalloc(sizeof(*error), GFP_ATOMIC);
c4a1d9e4
CW
16423 if (error == NULL)
16424 return NULL;
16425
c033666a 16426 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
ff57f1b0
PZ
16427 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
16428
055e393f 16429 for_each_pipe(dev_priv, i) {
ddf9c536 16430 error->pipe[i].power_domain_on =
f458ebbc
DV
16431 __intel_display_power_is_enabled(dev_priv,
16432 POWER_DOMAIN_PIPE(i));
ddf9c536 16433 if (!error->pipe[i].power_domain_on)
9d1cb914
PZ
16434 continue;
16435
5efb3e28
VS
16436 error->cursor[i].control = I915_READ(CURCNTR(i));
16437 error->cursor[i].position = I915_READ(CURPOS(i));
16438 error->cursor[i].base = I915_READ(CURBASE(i));
c4a1d9e4
CW
16439
16440 error->plane[i].control = I915_READ(DSPCNTR(i));
16441 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
c033666a 16442 if (INTEL_GEN(dev_priv) <= 3) {
51889b35 16443 error->plane[i].size = I915_READ(DSPSIZE(i));
80ca378b
PZ
16444 error->plane[i].pos = I915_READ(DSPPOS(i));
16445 }
c033666a 16446 if (INTEL_GEN(dev_priv) <= 7 && !IS_HASWELL(dev_priv))
ca291363 16447 error->plane[i].addr = I915_READ(DSPADDR(i));
c033666a 16448 if (INTEL_GEN(dev_priv) >= 4) {
c4a1d9e4
CW
16449 error->plane[i].surface = I915_READ(DSPSURF(i));
16450 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
16451 }
16452
c4a1d9e4 16453 error->pipe[i].source = I915_READ(PIPESRC(i));
f301b1e1 16454
c033666a 16455 if (HAS_GMCH_DISPLAY(dev_priv))
f301b1e1 16456 error->pipe[i].stat = I915_READ(PIPESTAT(i));
63b66e5b
CW
16457 }
16458
4d1de975 16459 /* Note: this does not include DSI transcoders. */
c033666a 16460 error->num_transcoders = INTEL_INFO(dev_priv)->num_pipes;
2d1fe073 16461 if (HAS_DDI(dev_priv))
63b66e5b
CW
16462 error->num_transcoders++; /* Account for eDP. */
16463
16464 for (i = 0; i < error->num_transcoders; i++) {
16465 enum transcoder cpu_transcoder = transcoders[i];
16466
ddf9c536 16467 error->transcoder[i].power_domain_on =
f458ebbc 16468 __intel_display_power_is_enabled(dev_priv,
38cc1daf 16469 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
ddf9c536 16470 if (!error->transcoder[i].power_domain_on)
9d1cb914
PZ
16471 continue;
16472
63b66e5b
CW
16473 error->transcoder[i].cpu_transcoder = cpu_transcoder;
16474
16475 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
16476 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
16477 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
16478 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
16479 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
16480 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
16481 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
c4a1d9e4
CW
16482 }
16483
16484 return error;
16485}
16486
edc3d884
MK
16487#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
16488
c4a1d9e4 16489void
edc3d884 16490intel_display_print_error_state(struct drm_i915_error_state_buf *m,
c4a1d9e4
CW
16491 struct drm_device *dev,
16492 struct intel_display_error_state *error)
16493{
fac5e23e 16494 struct drm_i915_private *dev_priv = to_i915(dev);
c4a1d9e4
CW
16495 int i;
16496
63b66e5b
CW
16497 if (!error)
16498 return;
16499
edc3d884 16500 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
190be112 16501 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
edc3d884 16502 err_printf(m, "PWR_WELL_CTL2: %08x\n",
ff57f1b0 16503 error->power_well_driver);
055e393f 16504 for_each_pipe(dev_priv, i) {
edc3d884 16505 err_printf(m, "Pipe [%d]:\n", i);
ddf9c536 16506 err_printf(m, " Power: %s\n",
87ad3212 16507 onoff(error->pipe[i].power_domain_on));
edc3d884 16508 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
f301b1e1 16509 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
edc3d884
MK
16510
16511 err_printf(m, "Plane [%d]:\n", i);
16512 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
16513 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
80ca378b 16514 if (INTEL_INFO(dev)->gen <= 3) {
edc3d884
MK
16515 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
16516 err_printf(m, " POS: %08x\n", error->plane[i].pos);
80ca378b 16517 }
4b71a570 16518 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
edc3d884 16519 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
c4a1d9e4 16520 if (INTEL_INFO(dev)->gen >= 4) {
edc3d884
MK
16521 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
16522 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
c4a1d9e4
CW
16523 }
16524
edc3d884
MK
16525 err_printf(m, "Cursor [%d]:\n", i);
16526 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
16527 err_printf(m, " POS: %08x\n", error->cursor[i].position);
16528 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
c4a1d9e4 16529 }
63b66e5b
CW
16530
16531 for (i = 0; i < error->num_transcoders; i++) {
da205630 16532 err_printf(m, "CPU transcoder: %s\n",
63b66e5b 16533 transcoder_name(error->transcoder[i].cpu_transcoder));
ddf9c536 16534 err_printf(m, " Power: %s\n",
87ad3212 16535 onoff(error->transcoder[i].power_domain_on));
63b66e5b
CW
16536 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
16537 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
16538 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
16539 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
16540 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
16541 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
16542 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
16543 }
c4a1d9e4 16544}
This page took 3.734451 seconds and 5 git commands to generate.