]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/i915/intel_display.c
drm/i915: Fix NULL pointer deference when out of PLLs in IVB
[mirror_ubuntu-bionic-kernel.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"
db18b6a6 39#include "intel_dsi.h"
e5510fac 40#include "i915_trace.h"
319c1d42 41#include <drm/drm_atomic.h>
c196e1d6 42#include <drm/drm_atomic_helper.h>
760285e7
DH
43#include <drm/drm_dp_helper.h>
44#include <drm/drm_crtc_helper.h>
465c120c
MR
45#include <drm/drm_plane_helper.h>
46#include <drm/drm_rect.h>
c0f372b3 47#include <linux/dma_remapping.h>
fd8e058a
AG
48#include <linux/reservation.h>
49#include <linux/dma-buf.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);
d1b32c32 126static int broxton_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
e0638cdf
PZ
533/**
534 * Returns whether any output on the specified pipe is of the specified type
535 */
4093561b 536bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
e0638cdf 537{
409ee761 538 struct drm_device *dev = crtc->base.dev;
e0638cdf
PZ
539 struct intel_encoder *encoder;
540
409ee761 541 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
e0638cdf
PZ
542 if (encoder->type == type)
543 return true;
544
545 return false;
546}
547
d0737e1d
ACO
548/**
549 * Returns whether any output on the specified pipe will have the specified
550 * type after a staged modeset is complete, i.e., the same as
551 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
552 * encoder->crtc.
553 */
a93e255f
ACO
554static bool intel_pipe_will_have_type(const struct intel_crtc_state *crtc_state,
555 int type)
d0737e1d 556{
a93e255f 557 struct drm_atomic_state *state = crtc_state->base.state;
da3ced29 558 struct drm_connector *connector;
a93e255f 559 struct drm_connector_state *connector_state;
d0737e1d 560 struct intel_encoder *encoder;
a93e255f
ACO
561 int i, num_connectors = 0;
562
da3ced29 563 for_each_connector_in_state(state, connector, connector_state, i) {
a93e255f
ACO
564 if (connector_state->crtc != crtc_state->base.crtc)
565 continue;
566
567 num_connectors++;
d0737e1d 568
a93e255f
ACO
569 encoder = to_intel_encoder(connector_state->best_encoder);
570 if (encoder->type == type)
d0737e1d 571 return true;
a93e255f
ACO
572 }
573
574 WARN_ON(num_connectors == 0);
d0737e1d
ACO
575
576 return false;
577}
578
dccbea3b
ID
579/*
580 * Platform specific helpers to calculate the port PLL loopback- (clock.m),
581 * and post-divider (clock.p) values, pre- (clock.vco) and post-divided fast
582 * (clock.dot) clock rates. This fast dot clock is fed to the port's IO logic.
583 * The helpers' return value is the rate of the clock that is fed to the
584 * display engine's pipe which can be the above fast dot clock rate or a
585 * divided-down version of it.
586 */
f2b115e6 587/* m1 is reserved as 0 in Pineview, n is a ring counter */
9e2c8475 588static int pnv_calc_dpll_params(int refclk, struct dpll *clock)
79e53945 589{
2177832f
SL
590 clock->m = clock->m2 + 2;
591 clock->p = clock->p1 * clock->p2;
ed5ca77e 592 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 593 return 0;
fb03ac01
VS
594 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
595 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
596
597 return clock->dot;
2177832f
SL
598}
599
7429e9d4
DV
600static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
601{
602 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
603}
604
9e2c8475 605static int i9xx_calc_dpll_params(int refclk, struct dpll *clock)
2177832f 606{
7429e9d4 607 clock->m = i9xx_dpll_compute_m(clock);
79e53945 608 clock->p = clock->p1 * clock->p2;
ed5ca77e 609 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
dccbea3b 610 return 0;
fb03ac01
VS
611 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
612 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
613
614 return clock->dot;
79e53945
JB
615}
616
9e2c8475 617static int vlv_calc_dpll_params(int refclk, struct dpll *clock)
589eca67
ID
618{
619 clock->m = clock->m1 * clock->m2;
620 clock->p = clock->p1 * clock->p2;
621 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 622 return 0;
589eca67
ID
623 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
624 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
625
626 return clock->dot / 5;
589eca67
ID
627}
628
9e2c8475 629int chv_calc_dpll_params(int refclk, struct dpll *clock)
ef9348c8
CML
630{
631 clock->m = clock->m1 * clock->m2;
632 clock->p = clock->p1 * clock->p2;
633 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 634 return 0;
ef9348c8
CML
635 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
636 clock->n << 22);
637 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
638
639 return clock->dot / 5;
ef9348c8
CML
640}
641
7c04d1d9 642#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
79e53945
JB
643/**
644 * Returns whether the given set of divisors are valid for a given refclk with
645 * the given connectors.
646 */
647
1b894b59 648static bool intel_PLL_is_valid(struct drm_device *dev,
1b6f4958 649 const struct intel_limit *limit,
9e2c8475 650 const struct dpll *clock)
79e53945 651{
f01b7962
VS
652 if (clock->n < limit->n.min || limit->n.max < clock->n)
653 INTELPllInvalid("n out of range\n");
79e53945 654 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
0206e353 655 INTELPllInvalid("p1 out of range\n");
79e53945 656 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
0206e353 657 INTELPllInvalid("m2 out of range\n");
79e53945 658 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
0206e353 659 INTELPllInvalid("m1 out of range\n");
f01b7962 660
666a4537
WB
661 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev) &&
662 !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev))
f01b7962
VS
663 if (clock->m1 <= clock->m2)
664 INTELPllInvalid("m1 <= m2\n");
665
666a4537 666 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev)) {
f01b7962
VS
667 if (clock->p < limit->p.min || limit->p.max < clock->p)
668 INTELPllInvalid("p out of range\n");
669 if (clock->m < limit->m.min || limit->m.max < clock->m)
670 INTELPllInvalid("m out of range\n");
671 }
672
79e53945 673 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
0206e353 674 INTELPllInvalid("vco out of range\n");
79e53945
JB
675 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
676 * connector, etc., rather than just a single range.
677 */
678 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
0206e353 679 INTELPllInvalid("dot out of range\n");
79e53945
JB
680
681 return true;
682}
683
3b1429d9 684static int
1b6f4958 685i9xx_select_p2_div(const struct intel_limit *limit,
3b1429d9
VS
686 const struct intel_crtc_state *crtc_state,
687 int target)
79e53945 688{
3b1429d9 689 struct drm_device *dev = crtc_state->base.crtc->dev;
79e53945 690
a93e255f 691 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
79e53945 692 /*
a210b028
DV
693 * For LVDS just rely on its current settings for dual-channel.
694 * We haven't figured out how to reliably set up different
695 * single/dual channel state, if we even can.
79e53945 696 */
1974cad0 697 if (intel_is_dual_link_lvds(dev))
3b1429d9 698 return limit->p2.p2_fast;
79e53945 699 else
3b1429d9 700 return limit->p2.p2_slow;
79e53945
JB
701 } else {
702 if (target < limit->p2.dot_limit)
3b1429d9 703 return limit->p2.p2_slow;
79e53945 704 else
3b1429d9 705 return limit->p2.p2_fast;
79e53945 706 }
3b1429d9
VS
707}
708
70e8aa21
ACO
709/*
710 * Returns a set of divisors for the desired target clock with the given
711 * refclk, or FALSE. The returned values represent the clock equation:
712 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
713 *
714 * Target and reference clocks are specified in kHz.
715 *
716 * If match_clock is provided, then best_clock P divider must match the P
717 * divider from @match_clock used for LVDS downclocking.
718 */
3b1429d9 719static bool
1b6f4958 720i9xx_find_best_dpll(const struct intel_limit *limit,
3b1429d9 721 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
722 int target, int refclk, struct dpll *match_clock,
723 struct dpll *best_clock)
3b1429d9
VS
724{
725 struct drm_device *dev = crtc_state->base.crtc->dev;
9e2c8475 726 struct dpll clock;
3b1429d9 727 int err = target;
79e53945 728
0206e353 729 memset(best_clock, 0, sizeof(*best_clock));
79e53945 730
3b1429d9
VS
731 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
732
42158660
ZY
733 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
734 clock.m1++) {
735 for (clock.m2 = limit->m2.min;
736 clock.m2 <= limit->m2.max; clock.m2++) {
c0efc387 737 if (clock.m2 >= clock.m1)
42158660
ZY
738 break;
739 for (clock.n = limit->n.min;
740 clock.n <= limit->n.max; clock.n++) {
741 for (clock.p1 = limit->p1.min;
742 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
743 int this_err;
744
dccbea3b 745 i9xx_calc_dpll_params(refclk, &clock);
ac58c3f0
DV
746 if (!intel_PLL_is_valid(dev, limit,
747 &clock))
748 continue;
749 if (match_clock &&
750 clock.p != match_clock->p)
751 continue;
752
753 this_err = abs(clock.dot - target);
754 if (this_err < err) {
755 *best_clock = clock;
756 err = this_err;
757 }
758 }
759 }
760 }
761 }
762
763 return (err != target);
764}
765
70e8aa21
ACO
766/*
767 * Returns a set of divisors for the desired target clock with the given
768 * refclk, or FALSE. The returned values represent the clock equation:
769 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
770 *
771 * Target and reference clocks are specified in kHz.
772 *
773 * If match_clock is provided, then best_clock P divider must match the P
774 * divider from @match_clock used for LVDS downclocking.
775 */
ac58c3f0 776static bool
1b6f4958 777pnv_find_best_dpll(const struct intel_limit *limit,
a93e255f 778 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
779 int target, int refclk, struct dpll *match_clock,
780 struct dpll *best_clock)
79e53945 781{
3b1429d9 782 struct drm_device *dev = crtc_state->base.crtc->dev;
9e2c8475 783 struct dpll clock;
79e53945
JB
784 int err = target;
785
0206e353 786 memset(best_clock, 0, sizeof(*best_clock));
79e53945 787
3b1429d9
VS
788 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
789
42158660
ZY
790 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
791 clock.m1++) {
792 for (clock.m2 = limit->m2.min;
793 clock.m2 <= limit->m2.max; clock.m2++) {
42158660
ZY
794 for (clock.n = limit->n.min;
795 clock.n <= limit->n.max; clock.n++) {
796 for (clock.p1 = limit->p1.min;
797 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
798 int this_err;
799
dccbea3b 800 pnv_calc_dpll_params(refclk, &clock);
1b894b59
CW
801 if (!intel_PLL_is_valid(dev, limit,
802 &clock))
79e53945 803 continue;
cec2f356
SP
804 if (match_clock &&
805 clock.p != match_clock->p)
806 continue;
79e53945
JB
807
808 this_err = abs(clock.dot - target);
809 if (this_err < err) {
810 *best_clock = clock;
811 err = this_err;
812 }
813 }
814 }
815 }
816 }
817
818 return (err != target);
819}
820
997c030c
ACO
821/*
822 * Returns a set of divisors for the desired target clock with the given
823 * refclk, or FALSE. The returned values represent the clock equation:
824 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
70e8aa21
ACO
825 *
826 * Target and reference clocks are specified in kHz.
827 *
828 * If match_clock is provided, then best_clock P divider must match the P
829 * divider from @match_clock used for LVDS downclocking.
997c030c 830 */
d4906093 831static bool
1b6f4958 832g4x_find_best_dpll(const struct intel_limit *limit,
a93e255f 833 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
834 int target, int refclk, struct dpll *match_clock,
835 struct dpll *best_clock)
d4906093 836{
3b1429d9 837 struct drm_device *dev = crtc_state->base.crtc->dev;
9e2c8475 838 struct dpll clock;
d4906093 839 int max_n;
3b1429d9 840 bool found = false;
6ba770dc
AJ
841 /* approximately equals target * 0.00585 */
842 int err_most = (target >> 8) + (target >> 9);
d4906093
ML
843
844 memset(best_clock, 0, sizeof(*best_clock));
3b1429d9
VS
845
846 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
847
d4906093 848 max_n = limit->n.max;
f77f13e2 849 /* based on hardware requirement, prefer smaller n to precision */
d4906093 850 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
f77f13e2 851 /* based on hardware requirement, prefere larger m1,m2 */
d4906093
ML
852 for (clock.m1 = limit->m1.max;
853 clock.m1 >= limit->m1.min; clock.m1--) {
854 for (clock.m2 = limit->m2.max;
855 clock.m2 >= limit->m2.min; clock.m2--) {
856 for (clock.p1 = limit->p1.max;
857 clock.p1 >= limit->p1.min; clock.p1--) {
858 int this_err;
859
dccbea3b 860 i9xx_calc_dpll_params(refclk, &clock);
1b894b59
CW
861 if (!intel_PLL_is_valid(dev, limit,
862 &clock))
d4906093 863 continue;
1b894b59
CW
864
865 this_err = abs(clock.dot - target);
d4906093
ML
866 if (this_err < err_most) {
867 *best_clock = clock;
868 err_most = this_err;
869 max_n = clock.n;
870 found = true;
871 }
872 }
873 }
874 }
875 }
2c07245f
ZW
876 return found;
877}
878
d5dd62bd
ID
879/*
880 * Check if the calculated PLL configuration is more optimal compared to the
881 * best configuration and error found so far. Return the calculated error.
882 */
883static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq,
9e2c8475
ACO
884 const struct dpll *calculated_clock,
885 const struct dpll *best_clock,
d5dd62bd
ID
886 unsigned int best_error_ppm,
887 unsigned int *error_ppm)
888{
9ca3ba01
ID
889 /*
890 * For CHV ignore the error and consider only the P value.
891 * Prefer a bigger P value based on HW requirements.
892 */
893 if (IS_CHERRYVIEW(dev)) {
894 *error_ppm = 0;
895
896 return calculated_clock->p > best_clock->p;
897 }
898
24be4e46
ID
899 if (WARN_ON_ONCE(!target_freq))
900 return false;
901
d5dd62bd
ID
902 *error_ppm = div_u64(1000000ULL *
903 abs(target_freq - calculated_clock->dot),
904 target_freq);
905 /*
906 * Prefer a better P value over a better (smaller) error if the error
907 * is small. Ensure this preference for future configurations too by
908 * setting the error to 0.
909 */
910 if (*error_ppm < 100 && calculated_clock->p > best_clock->p) {
911 *error_ppm = 0;
912
913 return true;
914 }
915
916 return *error_ppm + 10 < best_error_ppm;
917}
918
65b3d6a9
ACO
919/*
920 * Returns a set of divisors for the desired target clock with the given
921 * refclk, or FALSE. The returned values represent the clock equation:
922 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
923 */
a0c4da24 924static bool
1b6f4958 925vlv_find_best_dpll(const struct intel_limit *limit,
a93e255f 926 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
927 int target, int refclk, struct dpll *match_clock,
928 struct dpll *best_clock)
a0c4da24 929{
a93e255f 930 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
a919ff14 931 struct drm_device *dev = crtc->base.dev;
9e2c8475 932 struct dpll clock;
69e4f900 933 unsigned int bestppm = 1000000;
27e639bf
VS
934 /* min update 19.2 MHz */
935 int max_n = min(limit->n.max, refclk / 19200);
49e497ef 936 bool found = false;
a0c4da24 937
6b4bf1c4
VS
938 target *= 5; /* fast clock */
939
940 memset(best_clock, 0, sizeof(*best_clock));
a0c4da24
JB
941
942 /* based on hardware requirement, prefer smaller n to precision */
27e639bf 943 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
811bbf05 944 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
889059d8 945 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
c1a9ae43 946 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
6b4bf1c4 947 clock.p = clock.p1 * clock.p2;
a0c4da24 948 /* based on hardware requirement, prefer bigger m1,m2 values */
6b4bf1c4 949 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
d5dd62bd 950 unsigned int ppm;
69e4f900 951
6b4bf1c4
VS
952 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
953 refclk * clock.m1);
954
dccbea3b 955 vlv_calc_dpll_params(refclk, &clock);
43b0ac53 956
f01b7962
VS
957 if (!intel_PLL_is_valid(dev, limit,
958 &clock))
43b0ac53
VS
959 continue;
960
d5dd62bd
ID
961 if (!vlv_PLL_is_optimal(dev, target,
962 &clock,
963 best_clock,
964 bestppm, &ppm))
965 continue;
6b4bf1c4 966
d5dd62bd
ID
967 *best_clock = clock;
968 bestppm = ppm;
969 found = true;
a0c4da24
JB
970 }
971 }
972 }
973 }
a0c4da24 974
49e497ef 975 return found;
a0c4da24 976}
a4fc5ed6 977
65b3d6a9
ACO
978/*
979 * Returns a set of divisors for the desired target clock with the given
980 * refclk, or FALSE. The returned values represent the clock equation:
981 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
982 */
ef9348c8 983static bool
1b6f4958 984chv_find_best_dpll(const struct intel_limit *limit,
a93e255f 985 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
986 int target, int refclk, struct dpll *match_clock,
987 struct dpll *best_clock)
ef9348c8 988{
a93e255f 989 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
a919ff14 990 struct drm_device *dev = crtc->base.dev;
9ca3ba01 991 unsigned int best_error_ppm;
9e2c8475 992 struct dpll clock;
ef9348c8
CML
993 uint64_t m2;
994 int found = false;
995
996 memset(best_clock, 0, sizeof(*best_clock));
9ca3ba01 997 best_error_ppm = 1000000;
ef9348c8
CML
998
999 /*
1000 * Based on hardware doc, the n always set to 1, and m1 always
1001 * set to 2. If requires to support 200Mhz refclk, we need to
1002 * revisit this because n may not 1 anymore.
1003 */
1004 clock.n = 1, clock.m1 = 2;
1005 target *= 5; /* fast clock */
1006
1007 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
1008 for (clock.p2 = limit->p2.p2_fast;
1009 clock.p2 >= limit->p2.p2_slow;
1010 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
9ca3ba01 1011 unsigned int error_ppm;
ef9348c8
CML
1012
1013 clock.p = clock.p1 * clock.p2;
1014
1015 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
1016 clock.n) << 22, refclk * clock.m1);
1017
1018 if (m2 > INT_MAX/clock.m1)
1019 continue;
1020
1021 clock.m2 = m2;
1022
dccbea3b 1023 chv_calc_dpll_params(refclk, &clock);
ef9348c8
CML
1024
1025 if (!intel_PLL_is_valid(dev, limit, &clock))
1026 continue;
1027
9ca3ba01
ID
1028 if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock,
1029 best_error_ppm, &error_ppm))
1030 continue;
1031
1032 *best_clock = clock;
1033 best_error_ppm = error_ppm;
1034 found = true;
ef9348c8
CML
1035 }
1036 }
1037
1038 return found;
1039}
1040
5ab7b0b7 1041bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
9e2c8475 1042 struct dpll *best_clock)
5ab7b0b7 1043{
65b3d6a9 1044 int refclk = 100000;
1b6f4958 1045 const struct intel_limit *limit = &intel_limits_bxt;
5ab7b0b7 1046
65b3d6a9 1047 return chv_find_best_dpll(limit, crtc_state,
5ab7b0b7
ID
1048 target_clock, refclk, NULL, best_clock);
1049}
1050
20ddf665
VS
1051bool intel_crtc_active(struct drm_crtc *crtc)
1052{
1053 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1054
1055 /* Be paranoid as we can arrive here with only partial
1056 * state retrieved from the hardware during setup.
1057 *
241bfc38 1058 * We can ditch the adjusted_mode.crtc_clock check as soon
20ddf665
VS
1059 * as Haswell has gained clock readout/fastboot support.
1060 *
66e514c1 1061 * We can ditch the crtc->primary->fb check as soon as we can
20ddf665 1062 * properly reconstruct framebuffers.
c3d1f436
MR
1063 *
1064 * FIXME: The intel_crtc->active here should be switched to
1065 * crtc->state->active once we have proper CRTC states wired up
1066 * for atomic.
20ddf665 1067 */
c3d1f436 1068 return intel_crtc->active && crtc->primary->state->fb &&
6e3c9717 1069 intel_crtc->config->base.adjusted_mode.crtc_clock;
20ddf665
VS
1070}
1071
a5c961d1
PZ
1072enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1073 enum pipe pipe)
1074{
1075 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1076 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1077
6e3c9717 1078 return intel_crtc->config->cpu_transcoder;
a5c961d1
PZ
1079}
1080
fbf49ea2
VS
1081static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
1082{
1083 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 1084 i915_reg_t reg = PIPEDSL(pipe);
fbf49ea2
VS
1085 u32 line1, line2;
1086 u32 line_mask;
1087
1088 if (IS_GEN2(dev))
1089 line_mask = DSL_LINEMASK_GEN2;
1090 else
1091 line_mask = DSL_LINEMASK_GEN3;
1092
1093 line1 = I915_READ(reg) & line_mask;
6adfb1ef 1094 msleep(5);
fbf49ea2
VS
1095 line2 = I915_READ(reg) & line_mask;
1096
1097 return line1 == line2;
1098}
1099
ab7ad7f6
KP
1100/*
1101 * intel_wait_for_pipe_off - wait for pipe to turn off
575f7ab7 1102 * @crtc: crtc whose pipe to wait for
9d0498a2
JB
1103 *
1104 * After disabling a pipe, we can't wait for vblank in the usual way,
1105 * spinning on the vblank interrupt status bit, since we won't actually
1106 * see an interrupt when the pipe is disabled.
1107 *
ab7ad7f6
KP
1108 * On Gen4 and above:
1109 * wait for the pipe register state bit to turn off
1110 *
1111 * Otherwise:
1112 * wait for the display line value to settle (it usually
1113 * ends up stopping at the start of the next frame).
58e10eb9 1114 *
9d0498a2 1115 */
575f7ab7 1116static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
9d0498a2 1117{
575f7ab7 1118 struct drm_device *dev = crtc->base.dev;
9d0498a2 1119 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 1120 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 1121 enum pipe pipe = crtc->pipe;
ab7ad7f6
KP
1122
1123 if (INTEL_INFO(dev)->gen >= 4) {
f0f59a00 1124 i915_reg_t reg = PIPECONF(cpu_transcoder);
ab7ad7f6
KP
1125
1126 /* Wait for the Pipe State to go off */
58e10eb9
CW
1127 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
1128 100))
284637d9 1129 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 1130 } else {
ab7ad7f6 1131 /* Wait for the display line to settle */
fbf49ea2 1132 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
284637d9 1133 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 1134 }
79e53945
JB
1135}
1136
b24e7179 1137/* Only for pre-ILK configs */
55607e8a
DV
1138void assert_pll(struct drm_i915_private *dev_priv,
1139 enum pipe pipe, bool state)
b24e7179 1140{
b24e7179
JB
1141 u32 val;
1142 bool cur_state;
1143
649636ef 1144 val = I915_READ(DPLL(pipe));
b24e7179 1145 cur_state = !!(val & DPLL_VCO_ENABLE);
e2c719b7 1146 I915_STATE_WARN(cur_state != state,
b24e7179 1147 "PLL state assertion failure (expected %s, current %s)\n",
87ad3212 1148 onoff(state), onoff(cur_state));
b24e7179 1149}
b24e7179 1150
23538ef1 1151/* XXX: the dsi pll is shared between MIPI DSI ports */
8563b1e8 1152void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
23538ef1
JN
1153{
1154 u32 val;
1155 bool cur_state;
1156
a580516d 1157 mutex_lock(&dev_priv->sb_lock);
23538ef1 1158 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
a580516d 1159 mutex_unlock(&dev_priv->sb_lock);
23538ef1
JN
1160
1161 cur_state = val & DSI_PLL_VCO_EN;
e2c719b7 1162 I915_STATE_WARN(cur_state != state,
23538ef1 1163 "DSI PLL state assertion failure (expected %s, current %s)\n",
87ad3212 1164 onoff(state), onoff(cur_state));
23538ef1 1165}
23538ef1 1166
040484af
JB
1167static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1168 enum pipe pipe, bool state)
1169{
040484af 1170 bool cur_state;
ad80a810
PZ
1171 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1172 pipe);
040484af 1173
2d1fe073 1174 if (HAS_DDI(dev_priv)) {
affa9354 1175 /* DDI does not have a specific FDI_TX register */
649636ef 1176 u32 val = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
ad80a810 1177 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
bf507ef7 1178 } else {
649636ef 1179 u32 val = I915_READ(FDI_TX_CTL(pipe));
bf507ef7
ED
1180 cur_state = !!(val & FDI_TX_ENABLE);
1181 }
e2c719b7 1182 I915_STATE_WARN(cur_state != state,
040484af 1183 "FDI TX state assertion failure (expected %s, current %s)\n",
87ad3212 1184 onoff(state), onoff(cur_state));
040484af
JB
1185}
1186#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1187#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1188
1189static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1190 enum pipe pipe, bool state)
1191{
040484af
JB
1192 u32 val;
1193 bool cur_state;
1194
649636ef 1195 val = I915_READ(FDI_RX_CTL(pipe));
d63fa0dc 1196 cur_state = !!(val & FDI_RX_ENABLE);
e2c719b7 1197 I915_STATE_WARN(cur_state != state,
040484af 1198 "FDI RX state assertion failure (expected %s, current %s)\n",
87ad3212 1199 onoff(state), onoff(cur_state));
040484af
JB
1200}
1201#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1202#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1203
1204static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1205 enum pipe pipe)
1206{
040484af
JB
1207 u32 val;
1208
1209 /* ILK FDI PLL is always enabled */
7e22dbbb 1210 if (IS_GEN5(dev_priv))
040484af
JB
1211 return;
1212
bf507ef7 1213 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
2d1fe073 1214 if (HAS_DDI(dev_priv))
bf507ef7
ED
1215 return;
1216
649636ef 1217 val = I915_READ(FDI_TX_CTL(pipe));
e2c719b7 1218 I915_STATE_WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
040484af
JB
1219}
1220
55607e8a
DV
1221void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1222 enum pipe pipe, bool state)
040484af 1223{
040484af 1224 u32 val;
55607e8a 1225 bool cur_state;
040484af 1226
649636ef 1227 val = I915_READ(FDI_RX_CTL(pipe));
55607e8a 1228 cur_state = !!(val & FDI_RX_PLL_ENABLE);
e2c719b7 1229 I915_STATE_WARN(cur_state != state,
55607e8a 1230 "FDI RX PLL assertion failure (expected %s, current %s)\n",
87ad3212 1231 onoff(state), onoff(cur_state));
040484af
JB
1232}
1233
b680c37a
DV
1234void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1235 enum pipe pipe)
ea0760cf 1236{
bedd4dba 1237 struct drm_device *dev = dev_priv->dev;
f0f59a00 1238 i915_reg_t pp_reg;
ea0760cf
JB
1239 u32 val;
1240 enum pipe panel_pipe = PIPE_A;
0de3b485 1241 bool locked = true;
ea0760cf 1242
bedd4dba
JN
1243 if (WARN_ON(HAS_DDI(dev)))
1244 return;
1245
1246 if (HAS_PCH_SPLIT(dev)) {
1247 u32 port_sel;
1248
ea0760cf 1249 pp_reg = PCH_PP_CONTROL;
bedd4dba
JN
1250 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1251
1252 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1253 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1254 panel_pipe = PIPE_B;
1255 /* XXX: else fix for eDP */
666a4537 1256 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
bedd4dba
JN
1257 /* presumably write lock depends on pipe, not port select */
1258 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1259 panel_pipe = pipe;
ea0760cf
JB
1260 } else {
1261 pp_reg = PP_CONTROL;
bedd4dba
JN
1262 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1263 panel_pipe = PIPE_B;
ea0760cf
JB
1264 }
1265
1266 val = I915_READ(pp_reg);
1267 if (!(val & PANEL_POWER_ON) ||
ec49ba2d 1268 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
ea0760cf
JB
1269 locked = false;
1270
e2c719b7 1271 I915_STATE_WARN(panel_pipe == pipe && locked,
ea0760cf 1272 "panel assertion failure, pipe %c regs locked\n",
9db4a9c7 1273 pipe_name(pipe));
ea0760cf
JB
1274}
1275
93ce0ba6
JN
1276static void assert_cursor(struct drm_i915_private *dev_priv,
1277 enum pipe pipe, bool state)
1278{
1279 struct drm_device *dev = dev_priv->dev;
1280 bool cur_state;
1281
d9d82081 1282 if (IS_845G(dev) || IS_I865G(dev))
0b87c24e 1283 cur_state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE;
d9d82081 1284 else
5efb3e28 1285 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
93ce0ba6 1286
e2c719b7 1287 I915_STATE_WARN(cur_state != state,
93ce0ba6 1288 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
87ad3212 1289 pipe_name(pipe), onoff(state), onoff(cur_state));
93ce0ba6
JN
1290}
1291#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1292#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1293
b840d907
JB
1294void assert_pipe(struct drm_i915_private *dev_priv,
1295 enum pipe pipe, bool state)
b24e7179 1296{
63d7bbe9 1297 bool cur_state;
702e7a56
PZ
1298 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1299 pipe);
4feed0eb 1300 enum intel_display_power_domain power_domain;
b24e7179 1301
b6b5d049
VS
1302 /* if we need the pipe quirk it must be always on */
1303 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1304 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
8e636784
DV
1305 state = true;
1306
4feed0eb
ID
1307 power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
1308 if (intel_display_power_get_if_enabled(dev_priv, power_domain)) {
649636ef 1309 u32 val = I915_READ(PIPECONF(cpu_transcoder));
69310161 1310 cur_state = !!(val & PIPECONF_ENABLE);
4feed0eb
ID
1311
1312 intel_display_power_put(dev_priv, power_domain);
1313 } else {
1314 cur_state = false;
69310161
PZ
1315 }
1316
e2c719b7 1317 I915_STATE_WARN(cur_state != state,
63d7bbe9 1318 "pipe %c assertion failure (expected %s, current %s)\n",
87ad3212 1319 pipe_name(pipe), onoff(state), onoff(cur_state));
b24e7179
JB
1320}
1321
931872fc
CW
1322static void assert_plane(struct drm_i915_private *dev_priv,
1323 enum plane plane, bool state)
b24e7179 1324{
b24e7179 1325 u32 val;
931872fc 1326 bool cur_state;
b24e7179 1327
649636ef 1328 val = I915_READ(DSPCNTR(plane));
931872fc 1329 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
e2c719b7 1330 I915_STATE_WARN(cur_state != state,
931872fc 1331 "plane %c assertion failure (expected %s, current %s)\n",
87ad3212 1332 plane_name(plane), onoff(state), onoff(cur_state));
b24e7179
JB
1333}
1334
931872fc
CW
1335#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1336#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1337
b24e7179
JB
1338static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1339 enum pipe pipe)
1340{
653e1026 1341 struct drm_device *dev = dev_priv->dev;
649636ef 1342 int i;
b24e7179 1343
653e1026
VS
1344 /* Primary planes are fixed to pipes on gen4+ */
1345 if (INTEL_INFO(dev)->gen >= 4) {
649636ef 1346 u32 val = I915_READ(DSPCNTR(pipe));
e2c719b7 1347 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
28c05794
AJ
1348 "plane %c assertion failure, should be disabled but not\n",
1349 plane_name(pipe));
19ec1358 1350 return;
28c05794 1351 }
19ec1358 1352
b24e7179 1353 /* Need to check both planes against the pipe */
055e393f 1354 for_each_pipe(dev_priv, i) {
649636ef
VS
1355 u32 val = I915_READ(DSPCNTR(i));
1356 enum pipe cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
b24e7179 1357 DISPPLANE_SEL_PIPE_SHIFT;
e2c719b7 1358 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
9db4a9c7
JB
1359 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1360 plane_name(i), pipe_name(pipe));
b24e7179
JB
1361 }
1362}
1363
19332d7a
JB
1364static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1365 enum pipe pipe)
1366{
20674eef 1367 struct drm_device *dev = dev_priv->dev;
649636ef 1368 int sprite;
19332d7a 1369
7feb8b88 1370 if (INTEL_INFO(dev)->gen >= 9) {
3bdcfc0c 1371 for_each_sprite(dev_priv, pipe, sprite) {
649636ef 1372 u32 val = I915_READ(PLANE_CTL(pipe, sprite));
e2c719b7 1373 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
7feb8b88
DL
1374 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1375 sprite, pipe_name(pipe));
1376 }
666a4537 1377 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
3bdcfc0c 1378 for_each_sprite(dev_priv, pipe, sprite) {
649636ef 1379 u32 val = I915_READ(SPCNTR(pipe, sprite));
e2c719b7 1380 I915_STATE_WARN(val & SP_ENABLE,
20674eef 1381 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1fe47785 1382 sprite_name(pipe, sprite), pipe_name(pipe));
20674eef
VS
1383 }
1384 } else if (INTEL_INFO(dev)->gen >= 7) {
649636ef 1385 u32 val = I915_READ(SPRCTL(pipe));
e2c719b7 1386 I915_STATE_WARN(val & SPRITE_ENABLE,
06da8da2 1387 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef
VS
1388 plane_name(pipe), pipe_name(pipe));
1389 } else if (INTEL_INFO(dev)->gen >= 5) {
649636ef 1390 u32 val = I915_READ(DVSCNTR(pipe));
e2c719b7 1391 I915_STATE_WARN(val & DVS_ENABLE,
06da8da2 1392 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef 1393 plane_name(pipe), pipe_name(pipe));
19332d7a
JB
1394 }
1395}
1396
08c71e5e
VS
1397static void assert_vblank_disabled(struct drm_crtc *crtc)
1398{
e2c719b7 1399 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
08c71e5e
VS
1400 drm_crtc_vblank_put(crtc);
1401}
1402
7abd4b35
ACO
1403void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1404 enum pipe pipe)
92f2584a 1405{
92f2584a
JB
1406 u32 val;
1407 bool enabled;
1408
649636ef 1409 val = I915_READ(PCH_TRANSCONF(pipe));
92f2584a 1410 enabled = !!(val & TRANS_ENABLE);
e2c719b7 1411 I915_STATE_WARN(enabled,
9db4a9c7
JB
1412 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1413 pipe_name(pipe));
92f2584a
JB
1414}
1415
4e634389
KP
1416static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1417 enum pipe pipe, u32 port_sel, u32 val)
f0575e92
KP
1418{
1419 if ((val & DP_PORT_EN) == 0)
1420 return false;
1421
2d1fe073 1422 if (HAS_PCH_CPT(dev_priv)) {
f0f59a00 1423 u32 trans_dp_ctl = I915_READ(TRANS_DP_CTL(pipe));
f0575e92
KP
1424 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1425 return false;
2d1fe073 1426 } else if (IS_CHERRYVIEW(dev_priv)) {
44f37d1f
CML
1427 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1428 return false;
f0575e92
KP
1429 } else {
1430 if ((val & DP_PIPE_MASK) != (pipe << 30))
1431 return false;
1432 }
1433 return true;
1434}
1435
1519b995
KP
1436static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1437 enum pipe pipe, u32 val)
1438{
dc0fa718 1439 if ((val & SDVO_ENABLE) == 0)
1519b995
KP
1440 return false;
1441
2d1fe073 1442 if (HAS_PCH_CPT(dev_priv)) {
dc0fa718 1443 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
1519b995 1444 return false;
2d1fe073 1445 } else if (IS_CHERRYVIEW(dev_priv)) {
44f37d1f
CML
1446 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1447 return false;
1519b995 1448 } else {
dc0fa718 1449 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
1519b995
KP
1450 return false;
1451 }
1452 return true;
1453}
1454
1455static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1456 enum pipe pipe, u32 val)
1457{
1458 if ((val & LVDS_PORT_EN) == 0)
1459 return false;
1460
2d1fe073 1461 if (HAS_PCH_CPT(dev_priv)) {
1519b995
KP
1462 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1463 return false;
1464 } else {
1465 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1466 return false;
1467 }
1468 return true;
1469}
1470
1471static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1472 enum pipe pipe, u32 val)
1473{
1474 if ((val & ADPA_DAC_ENABLE) == 0)
1475 return false;
2d1fe073 1476 if (HAS_PCH_CPT(dev_priv)) {
1519b995
KP
1477 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1478 return false;
1479 } else {
1480 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1481 return false;
1482 }
1483 return true;
1484}
1485
291906f1 1486static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
f0f59a00
VS
1487 enum pipe pipe, i915_reg_t reg,
1488 u32 port_sel)
291906f1 1489{
47a05eca 1490 u32 val = I915_READ(reg);
e2c719b7 1491 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
291906f1 1492 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
f0f59a00 1493 i915_mmio_reg_offset(reg), pipe_name(pipe));
de9a35ab 1494
2d1fe073 1495 I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & DP_PORT_EN) == 0
75c5da27 1496 && (val & DP_PIPEB_SELECT),
de9a35ab 1497 "IBX PCH dp port still using transcoder B\n");
291906f1
JB
1498}
1499
1500static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
f0f59a00 1501 enum pipe pipe, i915_reg_t reg)
291906f1 1502{
47a05eca 1503 u32 val = I915_READ(reg);
e2c719b7 1504 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
23c99e77 1505 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
f0f59a00 1506 i915_mmio_reg_offset(reg), pipe_name(pipe));
de9a35ab 1507
2d1fe073 1508 I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & SDVO_ENABLE) == 0
75c5da27 1509 && (val & SDVO_PIPE_B_SELECT),
de9a35ab 1510 "IBX PCH hdmi port still using transcoder B\n");
291906f1
JB
1511}
1512
1513static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1514 enum pipe pipe)
1515{
291906f1 1516 u32 val;
291906f1 1517
f0575e92
KP
1518 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1519 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1520 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
291906f1 1521
649636ef 1522 val = I915_READ(PCH_ADPA);
e2c719b7 1523 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
291906f1 1524 "PCH VGA enabled on transcoder %c, should be disabled\n",
9db4a9c7 1525 pipe_name(pipe));
291906f1 1526
649636ef 1527 val = I915_READ(PCH_LVDS);
e2c719b7 1528 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
291906f1 1529 "PCH LVDS enabled on transcoder %c, should be disabled\n",
9db4a9c7 1530 pipe_name(pipe));
291906f1 1531
e2debe91
PZ
1532 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1533 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1534 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
291906f1
JB
1535}
1536
cd2d34d9
VS
1537static void _vlv_enable_pll(struct intel_crtc *crtc,
1538 const struct intel_crtc_state *pipe_config)
1539{
1540 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1541 enum pipe pipe = crtc->pipe;
1542
1543 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
1544 POSTING_READ(DPLL(pipe));
1545 udelay(150);
1546
1547 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1548 DRM_ERROR("DPLL %d failed to lock\n", pipe);
1549}
1550
d288f65f 1551static void vlv_enable_pll(struct intel_crtc *crtc,
5cec258b 1552 const struct intel_crtc_state *pipe_config)
87442f73 1553{
cd2d34d9 1554 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
8bd3f301 1555 enum pipe pipe = crtc->pipe;
87442f73 1556
8bd3f301 1557 assert_pipe_disabled(dev_priv, pipe);
87442f73 1558
87442f73 1559 /* PLL is protected by panel, make sure we can write it */
7d1a83cb 1560 assert_panel_unlocked(dev_priv, pipe);
87442f73 1561
cd2d34d9
VS
1562 if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE)
1563 _vlv_enable_pll(crtc, pipe_config);
426115cf 1564
8bd3f301
VS
1565 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
1566 POSTING_READ(DPLL_MD(pipe));
87442f73
DV
1567}
1568
cd2d34d9
VS
1569
1570static void _chv_enable_pll(struct intel_crtc *crtc,
1571 const struct intel_crtc_state *pipe_config)
9d556c99 1572{
cd2d34d9 1573 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
8bd3f301 1574 enum pipe pipe = crtc->pipe;
9d556c99 1575 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9d556c99
CML
1576 u32 tmp;
1577
a580516d 1578 mutex_lock(&dev_priv->sb_lock);
9d556c99
CML
1579
1580 /* Enable back the 10bit clock to display controller */
1581 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1582 tmp |= DPIO_DCLKP_EN;
1583 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1584
54433e91
VS
1585 mutex_unlock(&dev_priv->sb_lock);
1586
9d556c99
CML
1587 /*
1588 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1589 */
1590 udelay(1);
1591
1592 /* Enable PLL */
d288f65f 1593 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
9d556c99
CML
1594
1595 /* Check PLL is locked */
a11b0703 1596 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
9d556c99 1597 DRM_ERROR("PLL %d failed to lock\n", pipe);
cd2d34d9
VS
1598}
1599
1600static void chv_enable_pll(struct intel_crtc *crtc,
1601 const struct intel_crtc_state *pipe_config)
1602{
1603 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1604 enum pipe pipe = crtc->pipe;
1605
1606 assert_pipe_disabled(dev_priv, pipe);
1607
1608 /* PLL is protected by panel, make sure we can write it */
1609 assert_panel_unlocked(dev_priv, pipe);
1610
1611 if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE)
1612 _chv_enable_pll(crtc, pipe_config);
9d556c99 1613
c231775c
VS
1614 if (pipe != PIPE_A) {
1615 /*
1616 * WaPixelRepeatModeFixForC0:chv
1617 *
1618 * DPLLCMD is AWOL. Use chicken bits to propagate
1619 * the value from DPLLBMD to either pipe B or C.
1620 */
1621 I915_WRITE(CBR4_VLV, pipe == PIPE_B ? CBR_DPLLBMD_PIPE_B : CBR_DPLLBMD_PIPE_C);
1622 I915_WRITE(DPLL_MD(PIPE_B), pipe_config->dpll_hw_state.dpll_md);
1623 I915_WRITE(CBR4_VLV, 0);
1624 dev_priv->chv_dpll_md[pipe] = pipe_config->dpll_hw_state.dpll_md;
1625
1626 /*
1627 * DPLLB VGA mode also seems to cause problems.
1628 * We should always have it disabled.
1629 */
1630 WARN_ON((I915_READ(DPLL(PIPE_B)) & DPLL_VGA_MODE_DIS) == 0);
1631 } else {
1632 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
1633 POSTING_READ(DPLL_MD(pipe));
1634 }
9d556c99
CML
1635}
1636
1c4e0274
VS
1637static int intel_num_dvo_pipes(struct drm_device *dev)
1638{
1639 struct intel_crtc *crtc;
1640 int count = 0;
1641
1642 for_each_intel_crtc(dev, crtc)
3538b9df 1643 count += crtc->base.state->active &&
409ee761 1644 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
1c4e0274
VS
1645
1646 return count;
1647}
1648
66e3d5c0 1649static void i9xx_enable_pll(struct intel_crtc *crtc)
63d7bbe9 1650{
66e3d5c0
DV
1651 struct drm_device *dev = crtc->base.dev;
1652 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 1653 i915_reg_t reg = DPLL(crtc->pipe);
6e3c9717 1654 u32 dpll = crtc->config->dpll_hw_state.dpll;
63d7bbe9 1655
66e3d5c0 1656 assert_pipe_disabled(dev_priv, crtc->pipe);
58c6eaa2 1657
63d7bbe9 1658 /* PLL is protected by panel, make sure we can write it */
66e3d5c0
DV
1659 if (IS_MOBILE(dev) && !IS_I830(dev))
1660 assert_panel_unlocked(dev_priv, crtc->pipe);
63d7bbe9 1661
1c4e0274
VS
1662 /* Enable DVO 2x clock on both PLLs if necessary */
1663 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1664 /*
1665 * It appears to be important that we don't enable this
1666 * for the current pipe before otherwise configuring the
1667 * PLL. No idea how this should be handled if multiple
1668 * DVO outputs are enabled simultaneosly.
1669 */
1670 dpll |= DPLL_DVO_2X_MODE;
1671 I915_WRITE(DPLL(!crtc->pipe),
1672 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1673 }
66e3d5c0 1674
c2b63374
VS
1675 /*
1676 * Apparently we need to have VGA mode enabled prior to changing
1677 * the P1/P2 dividers. Otherwise the DPLL will keep using the old
1678 * dividers, even though the register value does change.
1679 */
1680 I915_WRITE(reg, 0);
1681
8e7a65aa
VS
1682 I915_WRITE(reg, dpll);
1683
66e3d5c0
DV
1684 /* Wait for the clocks to stabilize. */
1685 POSTING_READ(reg);
1686 udelay(150);
1687
1688 if (INTEL_INFO(dev)->gen >= 4) {
1689 I915_WRITE(DPLL_MD(crtc->pipe),
6e3c9717 1690 crtc->config->dpll_hw_state.dpll_md);
66e3d5c0
DV
1691 } else {
1692 /* The pixel multiplier can only be updated once the
1693 * DPLL is enabled and the clocks are stable.
1694 *
1695 * So write it again.
1696 */
1697 I915_WRITE(reg, dpll);
1698 }
63d7bbe9
JB
1699
1700 /* We do this three times for luck */
66e3d5c0 1701 I915_WRITE(reg, dpll);
63d7bbe9
JB
1702 POSTING_READ(reg);
1703 udelay(150); /* wait for warmup */
66e3d5c0 1704 I915_WRITE(reg, dpll);
63d7bbe9
JB
1705 POSTING_READ(reg);
1706 udelay(150); /* wait for warmup */
66e3d5c0 1707 I915_WRITE(reg, dpll);
63d7bbe9
JB
1708 POSTING_READ(reg);
1709 udelay(150); /* wait for warmup */
1710}
1711
1712/**
50b44a44 1713 * i9xx_disable_pll - disable a PLL
63d7bbe9
JB
1714 * @dev_priv: i915 private structure
1715 * @pipe: pipe PLL to disable
1716 *
1717 * Disable the PLL for @pipe, making sure the pipe is off first.
1718 *
1719 * Note! This is for pre-ILK only.
1720 */
1c4e0274 1721static void i9xx_disable_pll(struct intel_crtc *crtc)
63d7bbe9 1722{
1c4e0274
VS
1723 struct drm_device *dev = crtc->base.dev;
1724 struct drm_i915_private *dev_priv = dev->dev_private;
1725 enum pipe pipe = crtc->pipe;
1726
1727 /* Disable DVO 2x clock on both PLLs if necessary */
1728 if (IS_I830(dev) &&
409ee761 1729 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
3538b9df 1730 !intel_num_dvo_pipes(dev)) {
1c4e0274
VS
1731 I915_WRITE(DPLL(PIPE_B),
1732 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1733 I915_WRITE(DPLL(PIPE_A),
1734 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1735 }
1736
b6b5d049
VS
1737 /* Don't disable pipe or pipe PLLs if needed */
1738 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1739 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
63d7bbe9
JB
1740 return;
1741
1742 /* Make sure the pipe isn't still relying on us */
1743 assert_pipe_disabled(dev_priv, pipe);
1744
b8afb911 1745 I915_WRITE(DPLL(pipe), DPLL_VGA_MODE_DIS);
50b44a44 1746 POSTING_READ(DPLL(pipe));
63d7bbe9
JB
1747}
1748
f6071166
JB
1749static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1750{
b8afb911 1751 u32 val;
f6071166
JB
1752
1753 /* Make sure the pipe isn't still relying on us */
1754 assert_pipe_disabled(dev_priv, pipe);
1755
03ed5cbf
VS
1756 val = DPLL_INTEGRATED_REF_CLK_VLV |
1757 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
1758 if (pipe != PIPE_A)
1759 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1760
f6071166
JB
1761 I915_WRITE(DPLL(pipe), val);
1762 POSTING_READ(DPLL(pipe));
076ed3b2
CML
1763}
1764
1765static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1766{
d752048d 1767 enum dpio_channel port = vlv_pipe_to_channel(pipe);
076ed3b2
CML
1768 u32 val;
1769
a11b0703
VS
1770 /* Make sure the pipe isn't still relying on us */
1771 assert_pipe_disabled(dev_priv, pipe);
076ed3b2 1772
60bfe44f
VS
1773 val = DPLL_SSC_REF_CLK_CHV |
1774 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
a11b0703
VS
1775 if (pipe != PIPE_A)
1776 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
03ed5cbf 1777
a11b0703
VS
1778 I915_WRITE(DPLL(pipe), val);
1779 POSTING_READ(DPLL(pipe));
d752048d 1780
a580516d 1781 mutex_lock(&dev_priv->sb_lock);
d752048d
VS
1782
1783 /* Disable 10bit clock to display controller */
1784 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1785 val &= ~DPIO_DCLKP_EN;
1786 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1787
a580516d 1788 mutex_unlock(&dev_priv->sb_lock);
f6071166
JB
1789}
1790
e4607fcf 1791void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
9b6de0a1
VS
1792 struct intel_digital_port *dport,
1793 unsigned int expected_mask)
89b667f8
JB
1794{
1795 u32 port_mask;
f0f59a00 1796 i915_reg_t dpll_reg;
89b667f8 1797
e4607fcf
CML
1798 switch (dport->port) {
1799 case PORT_B:
89b667f8 1800 port_mask = DPLL_PORTB_READY_MASK;
00fc31b7 1801 dpll_reg = DPLL(0);
e4607fcf
CML
1802 break;
1803 case PORT_C:
89b667f8 1804 port_mask = DPLL_PORTC_READY_MASK;
00fc31b7 1805 dpll_reg = DPLL(0);
9b6de0a1 1806 expected_mask <<= 4;
00fc31b7
CML
1807 break;
1808 case PORT_D:
1809 port_mask = DPLL_PORTD_READY_MASK;
1810 dpll_reg = DPIO_PHY_STATUS;
e4607fcf
CML
1811 break;
1812 default:
1813 BUG();
1814 }
89b667f8 1815
9b6de0a1
VS
1816 if (wait_for((I915_READ(dpll_reg) & port_mask) == expected_mask, 1000))
1817 WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n",
1818 port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask);
89b667f8
JB
1819}
1820
b8a4f404
PZ
1821static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1822 enum pipe pipe)
040484af 1823{
23670b32 1824 struct drm_device *dev = dev_priv->dev;
7c26e5c6 1825 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
e2b78267 1826 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
f0f59a00
VS
1827 i915_reg_t reg;
1828 uint32_t val, pipeconf_val;
040484af 1829
040484af 1830 /* Make sure PCH DPLL is enabled */
8106ddbd 1831 assert_shared_dpll_enabled(dev_priv, intel_crtc->config->shared_dpll);
040484af
JB
1832
1833 /* FDI must be feeding us bits for PCH ports */
1834 assert_fdi_tx_enabled(dev_priv, pipe);
1835 assert_fdi_rx_enabled(dev_priv, pipe);
1836
23670b32
DV
1837 if (HAS_PCH_CPT(dev)) {
1838 /* Workaround: Set the timing override bit before enabling the
1839 * pch transcoder. */
1840 reg = TRANS_CHICKEN2(pipe);
1841 val = I915_READ(reg);
1842 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1843 I915_WRITE(reg, val);
59c859d6 1844 }
23670b32 1845
ab9412ba 1846 reg = PCH_TRANSCONF(pipe);
040484af 1847 val = I915_READ(reg);
5f7f726d 1848 pipeconf_val = I915_READ(PIPECONF(pipe));
e9bcff5c 1849
2d1fe073 1850 if (HAS_PCH_IBX(dev_priv)) {
e9bcff5c 1851 /*
c5de7c6f
VS
1852 * Make the BPC in transcoder be consistent with
1853 * that in pipeconf reg. For HDMI we must use 8bpc
1854 * here for both 8bpc and 12bpc.
e9bcff5c 1855 */
dfd07d72 1856 val &= ~PIPECONF_BPC_MASK;
c5de7c6f
VS
1857 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_HDMI))
1858 val |= PIPECONF_8BPC;
1859 else
1860 val |= pipeconf_val & PIPECONF_BPC_MASK;
e9bcff5c 1861 }
5f7f726d
PZ
1862
1863 val &= ~TRANS_INTERLACE_MASK;
1864 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
2d1fe073 1865 if (HAS_PCH_IBX(dev_priv) &&
409ee761 1866 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
7c26e5c6
PZ
1867 val |= TRANS_LEGACY_INTERLACED_ILK;
1868 else
1869 val |= TRANS_INTERLACED;
5f7f726d
PZ
1870 else
1871 val |= TRANS_PROGRESSIVE;
1872
040484af
JB
1873 I915_WRITE(reg, val | TRANS_ENABLE);
1874 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
4bb6f1f3 1875 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
040484af
JB
1876}
1877
8fb033d7 1878static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
937bb610 1879 enum transcoder cpu_transcoder)
040484af 1880{
8fb033d7 1881 u32 val, pipeconf_val;
8fb033d7 1882
8fb033d7 1883 /* FDI must be feeding us bits for PCH ports */
1a240d4d 1884 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
937bb610 1885 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
8fb033d7 1886
223a6fdf 1887 /* Workaround: set timing override bit. */
36c0d0cf 1888 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
23670b32 1889 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
36c0d0cf 1890 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
223a6fdf 1891
25f3ef11 1892 val = TRANS_ENABLE;
937bb610 1893 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
8fb033d7 1894
9a76b1c6
PZ
1895 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1896 PIPECONF_INTERLACED_ILK)
a35f2679 1897 val |= TRANS_INTERLACED;
8fb033d7
PZ
1898 else
1899 val |= TRANS_PROGRESSIVE;
1900
ab9412ba
DV
1901 I915_WRITE(LPT_TRANSCONF, val);
1902 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
937bb610 1903 DRM_ERROR("Failed to enable PCH transcoder\n");
8fb033d7
PZ
1904}
1905
b8a4f404
PZ
1906static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1907 enum pipe pipe)
040484af 1908{
23670b32 1909 struct drm_device *dev = dev_priv->dev;
f0f59a00
VS
1910 i915_reg_t reg;
1911 uint32_t val;
040484af
JB
1912
1913 /* FDI relies on the transcoder */
1914 assert_fdi_tx_disabled(dev_priv, pipe);
1915 assert_fdi_rx_disabled(dev_priv, pipe);
1916
291906f1
JB
1917 /* Ports must be off as well */
1918 assert_pch_ports_disabled(dev_priv, pipe);
1919
ab9412ba 1920 reg = PCH_TRANSCONF(pipe);
040484af
JB
1921 val = I915_READ(reg);
1922 val &= ~TRANS_ENABLE;
1923 I915_WRITE(reg, val);
1924 /* wait for PCH transcoder off, transcoder state */
1925 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
4bb6f1f3 1926 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
23670b32 1927
c465613b 1928 if (HAS_PCH_CPT(dev)) {
23670b32
DV
1929 /* Workaround: Clear the timing override chicken bit again. */
1930 reg = TRANS_CHICKEN2(pipe);
1931 val = I915_READ(reg);
1932 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1933 I915_WRITE(reg, val);
1934 }
040484af
JB
1935}
1936
ab4d966c 1937static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
8fb033d7 1938{
8fb033d7
PZ
1939 u32 val;
1940
ab9412ba 1941 val = I915_READ(LPT_TRANSCONF);
8fb033d7 1942 val &= ~TRANS_ENABLE;
ab9412ba 1943 I915_WRITE(LPT_TRANSCONF, val);
8fb033d7 1944 /* wait for PCH transcoder off, transcoder state */
ab9412ba 1945 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
8a52fd9f 1946 DRM_ERROR("Failed to disable PCH transcoder\n");
223a6fdf
PZ
1947
1948 /* Workaround: clear timing override bit. */
36c0d0cf 1949 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
23670b32 1950 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
36c0d0cf 1951 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
040484af
JB
1952}
1953
b24e7179 1954/**
309cfea8 1955 * intel_enable_pipe - enable a pipe, asserting requirements
0372264a 1956 * @crtc: crtc responsible for the pipe
b24e7179 1957 *
0372264a 1958 * Enable @crtc's pipe, making sure that various hardware specific requirements
b24e7179 1959 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
b24e7179 1960 */
e1fdc473 1961static void intel_enable_pipe(struct intel_crtc *crtc)
b24e7179 1962{
0372264a
PZ
1963 struct drm_device *dev = crtc->base.dev;
1964 struct drm_i915_private *dev_priv = dev->dev_private;
1965 enum pipe pipe = crtc->pipe;
1a70a728 1966 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
1a240d4d 1967 enum pipe pch_transcoder;
f0f59a00 1968 i915_reg_t reg;
b24e7179
JB
1969 u32 val;
1970
9e2ee2dd
VS
1971 DRM_DEBUG_KMS("enabling pipe %c\n", pipe_name(pipe));
1972
58c6eaa2 1973 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 1974 assert_cursor_disabled(dev_priv, pipe);
58c6eaa2
DV
1975 assert_sprites_disabled(dev_priv, pipe);
1976
2d1fe073 1977 if (HAS_PCH_LPT(dev_priv))
cc391bbb
PZ
1978 pch_transcoder = TRANSCODER_A;
1979 else
1980 pch_transcoder = pipe;
1981
b24e7179
JB
1982 /*
1983 * A pipe without a PLL won't actually be able to drive bits from
1984 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1985 * need the check.
1986 */
2d1fe073 1987 if (HAS_GMCH_DISPLAY(dev_priv))
a65347ba 1988 if (crtc->config->has_dsi_encoder)
23538ef1
JN
1989 assert_dsi_pll_enabled(dev_priv);
1990 else
1991 assert_pll_enabled(dev_priv, pipe);
040484af 1992 else {
6e3c9717 1993 if (crtc->config->has_pch_encoder) {
040484af 1994 /* if driving the PCH, we need FDI enabled */
cc391bbb 1995 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
1a240d4d
DV
1996 assert_fdi_tx_pll_enabled(dev_priv,
1997 (enum pipe) cpu_transcoder);
040484af
JB
1998 }
1999 /* FIXME: assert CPU port conditions for SNB+ */
2000 }
b24e7179 2001
702e7a56 2002 reg = PIPECONF(cpu_transcoder);
b24e7179 2003 val = I915_READ(reg);
7ad25d48 2004 if (val & PIPECONF_ENABLE) {
b6b5d049
VS
2005 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2006 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
00d70b15 2007 return;
7ad25d48 2008 }
00d70b15
CW
2009
2010 I915_WRITE(reg, val | PIPECONF_ENABLE);
851855d8 2011 POSTING_READ(reg);
b7792d8b
VS
2012
2013 /*
2014 * Until the pipe starts DSL will read as 0, which would cause
2015 * an apparent vblank timestamp jump, which messes up also the
2016 * frame count when it's derived from the timestamps. So let's
2017 * wait for the pipe to start properly before we call
2018 * drm_crtc_vblank_on()
2019 */
2020 if (dev->max_vblank_count == 0 &&
2021 wait_for(intel_get_crtc_scanline(crtc) != crtc->scanline_offset, 50))
2022 DRM_ERROR("pipe %c didn't start\n", pipe_name(pipe));
b24e7179
JB
2023}
2024
2025/**
309cfea8 2026 * intel_disable_pipe - disable a pipe, asserting requirements
575f7ab7 2027 * @crtc: crtc whose pipes is to be disabled
b24e7179 2028 *
575f7ab7
VS
2029 * Disable the pipe of @crtc, making sure that various hardware
2030 * specific requirements are met, if applicable, e.g. plane
2031 * disabled, panel fitter off, etc.
b24e7179
JB
2032 *
2033 * Will wait until the pipe has shut down before returning.
2034 */
575f7ab7 2035static void intel_disable_pipe(struct intel_crtc *crtc)
b24e7179 2036{
575f7ab7 2037 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
6e3c9717 2038 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 2039 enum pipe pipe = crtc->pipe;
f0f59a00 2040 i915_reg_t reg;
b24e7179
JB
2041 u32 val;
2042
9e2ee2dd
VS
2043 DRM_DEBUG_KMS("disabling pipe %c\n", pipe_name(pipe));
2044
b24e7179
JB
2045 /*
2046 * Make sure planes won't keep trying to pump pixels to us,
2047 * or we might hang the display.
2048 */
2049 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 2050 assert_cursor_disabled(dev_priv, pipe);
19332d7a 2051 assert_sprites_disabled(dev_priv, pipe);
b24e7179 2052
702e7a56 2053 reg = PIPECONF(cpu_transcoder);
b24e7179 2054 val = I915_READ(reg);
00d70b15
CW
2055 if ((val & PIPECONF_ENABLE) == 0)
2056 return;
2057
67adc644
VS
2058 /*
2059 * Double wide has implications for planes
2060 * so best keep it disabled when not needed.
2061 */
6e3c9717 2062 if (crtc->config->double_wide)
67adc644
VS
2063 val &= ~PIPECONF_DOUBLE_WIDE;
2064
2065 /* Don't disable pipe or pipe PLLs if needed */
b6b5d049
VS
2066 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2067 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
67adc644
VS
2068 val &= ~PIPECONF_ENABLE;
2069
2070 I915_WRITE(reg, val);
2071 if ((val & PIPECONF_ENABLE) == 0)
2072 intel_wait_for_pipe_off(crtc);
b24e7179
JB
2073}
2074
693db184
CW
2075static bool need_vtd_wa(struct drm_device *dev)
2076{
2077#ifdef CONFIG_INTEL_IOMMU
2078 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2079 return true;
2080#endif
2081 return false;
2082}
2083
832be82f
VS
2084static unsigned int intel_tile_size(const struct drm_i915_private *dev_priv)
2085{
2086 return IS_GEN2(dev_priv) ? 2048 : 4096;
2087}
2088
27ba3910
VS
2089static unsigned int intel_tile_width_bytes(const struct drm_i915_private *dev_priv,
2090 uint64_t fb_modifier, unsigned int cpp)
7b49f948
VS
2091{
2092 switch (fb_modifier) {
2093 case DRM_FORMAT_MOD_NONE:
2094 return cpp;
2095 case I915_FORMAT_MOD_X_TILED:
2096 if (IS_GEN2(dev_priv))
2097 return 128;
2098 else
2099 return 512;
2100 case I915_FORMAT_MOD_Y_TILED:
2101 if (IS_GEN2(dev_priv) || HAS_128_BYTE_Y_TILING(dev_priv))
2102 return 128;
2103 else
2104 return 512;
2105 case I915_FORMAT_MOD_Yf_TILED:
2106 switch (cpp) {
2107 case 1:
2108 return 64;
2109 case 2:
2110 case 4:
2111 return 128;
2112 case 8:
2113 case 16:
2114 return 256;
2115 default:
2116 MISSING_CASE(cpp);
2117 return cpp;
2118 }
2119 break;
2120 default:
2121 MISSING_CASE(fb_modifier);
2122 return cpp;
2123 }
2124}
2125
832be82f
VS
2126unsigned int intel_tile_height(const struct drm_i915_private *dev_priv,
2127 uint64_t fb_modifier, unsigned int cpp)
a57ce0b2 2128{
832be82f
VS
2129 if (fb_modifier == DRM_FORMAT_MOD_NONE)
2130 return 1;
2131 else
2132 return intel_tile_size(dev_priv) /
27ba3910 2133 intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
6761dd31
TU
2134}
2135
8d0deca8
VS
2136/* Return the tile dimensions in pixel units */
2137static void intel_tile_dims(const struct drm_i915_private *dev_priv,
2138 unsigned int *tile_width,
2139 unsigned int *tile_height,
2140 uint64_t fb_modifier,
2141 unsigned int cpp)
2142{
2143 unsigned int tile_width_bytes =
2144 intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
2145
2146 *tile_width = tile_width_bytes / cpp;
2147 *tile_height = intel_tile_size(dev_priv) / tile_width_bytes;
2148}
2149
6761dd31
TU
2150unsigned int
2151intel_fb_align_height(struct drm_device *dev, unsigned int height,
832be82f 2152 uint32_t pixel_format, uint64_t fb_modifier)
6761dd31 2153{
832be82f
VS
2154 unsigned int cpp = drm_format_plane_cpp(pixel_format, 0);
2155 unsigned int tile_height = intel_tile_height(to_i915(dev), fb_modifier, cpp);
2156
2157 return ALIGN(height, tile_height);
a57ce0b2
JB
2158}
2159
1663b9d6
VS
2160unsigned int intel_rotation_info_size(const struct intel_rotation_info *rot_info)
2161{
2162 unsigned int size = 0;
2163 int i;
2164
2165 for (i = 0 ; i < ARRAY_SIZE(rot_info->plane); i++)
2166 size += rot_info->plane[i].width * rot_info->plane[i].height;
2167
2168 return size;
2169}
2170
75c82a53 2171static void
3465c580
VS
2172intel_fill_fb_ggtt_view(struct i915_ggtt_view *view,
2173 const struct drm_framebuffer *fb,
2174 unsigned int rotation)
f64b98cd 2175{
2d7a215f
VS
2176 if (intel_rotation_90_or_270(rotation)) {
2177 *view = i915_ggtt_view_rotated;
2178 view->params.rotated = to_intel_framebuffer(fb)->rot_info;
2179 } else {
2180 *view = i915_ggtt_view_normal;
2181 }
2182}
50470bb0 2183
2d7a215f
VS
2184static void
2185intel_fill_fb_info(struct drm_i915_private *dev_priv,
2186 struct drm_framebuffer *fb)
2187{
2188 struct intel_rotation_info *info = &to_intel_framebuffer(fb)->rot_info;
2189 unsigned int tile_size, tile_width, tile_height, cpp;
50470bb0 2190
d9b3288e
VS
2191 tile_size = intel_tile_size(dev_priv);
2192
2193 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
8d0deca8
VS
2194 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2195 fb->modifier[0], cpp);
d9b3288e 2196
1663b9d6
VS
2197 info->plane[0].width = DIV_ROUND_UP(fb->pitches[0], tile_width * cpp);
2198 info->plane[0].height = DIV_ROUND_UP(fb->height, tile_height);
84fe03f7 2199
89e3e142 2200 if (info->pixel_format == DRM_FORMAT_NV12) {
832be82f 2201 cpp = drm_format_plane_cpp(fb->pixel_format, 1);
8d0deca8
VS
2202 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2203 fb->modifier[1], cpp);
d9b3288e 2204
2d7a215f 2205 info->uv_offset = fb->offsets[1];
1663b9d6
VS
2206 info->plane[1].width = DIV_ROUND_UP(fb->pitches[1], tile_width * cpp);
2207 info->plane[1].height = DIV_ROUND_UP(fb->height / 2, tile_height);
89e3e142 2208 }
f64b98cd
TU
2209}
2210
603525d7 2211static unsigned int intel_linear_alignment(const struct drm_i915_private *dev_priv)
4e9a86b6
VS
2212{
2213 if (INTEL_INFO(dev_priv)->gen >= 9)
2214 return 256 * 1024;
985b8bb4 2215 else if (IS_BROADWATER(dev_priv) || IS_CRESTLINE(dev_priv) ||
666a4537 2216 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
4e9a86b6
VS
2217 return 128 * 1024;
2218 else if (INTEL_INFO(dev_priv)->gen >= 4)
2219 return 4 * 1024;
2220 else
44c5905e 2221 return 0;
4e9a86b6
VS
2222}
2223
603525d7
VS
2224static unsigned int intel_surf_alignment(const struct drm_i915_private *dev_priv,
2225 uint64_t fb_modifier)
2226{
2227 switch (fb_modifier) {
2228 case DRM_FORMAT_MOD_NONE:
2229 return intel_linear_alignment(dev_priv);
2230 case I915_FORMAT_MOD_X_TILED:
2231 if (INTEL_INFO(dev_priv)->gen >= 9)
2232 return 256 * 1024;
2233 return 0;
2234 case I915_FORMAT_MOD_Y_TILED:
2235 case I915_FORMAT_MOD_Yf_TILED:
2236 return 1 * 1024 * 1024;
2237 default:
2238 MISSING_CASE(fb_modifier);
2239 return 0;
2240 }
2241}
2242
127bd2ac 2243int
3465c580
VS
2244intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb,
2245 unsigned int rotation)
6b95a207 2246{
850c4cdc 2247 struct drm_device *dev = fb->dev;
ce453d81 2248 struct drm_i915_private *dev_priv = dev->dev_private;
850c4cdc 2249 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
f64b98cd 2250 struct i915_ggtt_view view;
6b95a207
KH
2251 u32 alignment;
2252 int ret;
2253
ebcdd39e
MR
2254 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2255
603525d7 2256 alignment = intel_surf_alignment(dev_priv, fb->modifier[0]);
6b95a207 2257
3465c580 2258 intel_fill_fb_ggtt_view(&view, fb, rotation);
f64b98cd 2259
693db184
CW
2260 /* Note that the w/a also requires 64 PTE of padding following the
2261 * bo. We currently fill all unused PTE with the shadow page and so
2262 * we should always have valid PTE following the scanout preventing
2263 * the VT-d warning.
2264 */
2265 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2266 alignment = 256 * 1024;
2267
d6dd6843
PZ
2268 /*
2269 * Global gtt pte registers are special registers which actually forward
2270 * writes to a chunk of system memory. Which means that there is no risk
2271 * that the register values disappear as soon as we call
2272 * intel_runtime_pm_put(), so it is correct to wrap only the
2273 * pin/unpin/fence and not more.
2274 */
2275 intel_runtime_pm_get(dev_priv);
2276
7580d774
ML
2277 ret = i915_gem_object_pin_to_display_plane(obj, alignment,
2278 &view);
48b956c5 2279 if (ret)
b26a6b35 2280 goto err_pm;
6b95a207
KH
2281
2282 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2283 * fence, whereas 965+ only requires a fence if using
2284 * framebuffer compression. For simplicity, we always install
2285 * a fence as the cost is not that onerous.
2286 */
9807216f
VK
2287 if (view.type == I915_GGTT_VIEW_NORMAL) {
2288 ret = i915_gem_object_get_fence(obj);
2289 if (ret == -EDEADLK) {
2290 /*
2291 * -EDEADLK means there are no free fences
2292 * no pending flips.
2293 *
2294 * This is propagated to atomic, but it uses
2295 * -EDEADLK to force a locking recovery, so
2296 * change the returned error to -EBUSY.
2297 */
2298 ret = -EBUSY;
2299 goto err_unpin;
2300 } else if (ret)
2301 goto err_unpin;
1690e1eb 2302
9807216f
VK
2303 i915_gem_object_pin_fence(obj);
2304 }
6b95a207 2305
d6dd6843 2306 intel_runtime_pm_put(dev_priv);
6b95a207 2307 return 0;
48b956c5
CW
2308
2309err_unpin:
f64b98cd 2310 i915_gem_object_unpin_from_display_plane(obj, &view);
b26a6b35 2311err_pm:
d6dd6843 2312 intel_runtime_pm_put(dev_priv);
48b956c5 2313 return ret;
6b95a207
KH
2314}
2315
fb4b8ce1 2316void intel_unpin_fb_obj(struct drm_framebuffer *fb, unsigned int rotation)
1690e1eb 2317{
82bc3b2d 2318 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
f64b98cd 2319 struct i915_ggtt_view view;
82bc3b2d 2320
ebcdd39e
MR
2321 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2322
3465c580 2323 intel_fill_fb_ggtt_view(&view, fb, rotation);
f64b98cd 2324
9807216f
VK
2325 if (view.type == I915_GGTT_VIEW_NORMAL)
2326 i915_gem_object_unpin_fence(obj);
2327
f64b98cd 2328 i915_gem_object_unpin_from_display_plane(obj, &view);
1690e1eb
CW
2329}
2330
29cf9491
VS
2331/*
2332 * Adjust the tile offset by moving the difference into
2333 * the x/y offsets.
2334 *
2335 * Input tile dimensions and pitch must already be
2336 * rotated to match x and y, and in pixel units.
2337 */
2338static u32 intel_adjust_tile_offset(int *x, int *y,
2339 unsigned int tile_width,
2340 unsigned int tile_height,
2341 unsigned int tile_size,
2342 unsigned int pitch_tiles,
2343 u32 old_offset,
2344 u32 new_offset)
2345{
2346 unsigned int tiles;
2347
2348 WARN_ON(old_offset & (tile_size - 1));
2349 WARN_ON(new_offset & (tile_size - 1));
2350 WARN_ON(new_offset > old_offset);
2351
2352 tiles = (old_offset - new_offset) / tile_size;
2353
2354 *y += tiles / pitch_tiles * tile_height;
2355 *x += tiles % pitch_tiles * tile_width;
2356
2357 return new_offset;
2358}
2359
8d0deca8
VS
2360/*
2361 * Computes the linear offset to the base tile and adjusts
2362 * x, y. bytes per pixel is assumed to be a power-of-two.
2363 *
2364 * In the 90/270 rotated case, x and y are assumed
2365 * to be already rotated to match the rotated GTT view, and
2366 * pitch is the tile_height aligned framebuffer height.
2367 */
4f2d9934
VS
2368u32 intel_compute_tile_offset(int *x, int *y,
2369 const struct drm_framebuffer *fb, int plane,
8d0deca8
VS
2370 unsigned int pitch,
2371 unsigned int rotation)
c2c75131 2372{
4f2d9934
VS
2373 const struct drm_i915_private *dev_priv = to_i915(fb->dev);
2374 uint64_t fb_modifier = fb->modifier[plane];
2375 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
29cf9491
VS
2376 u32 offset, offset_aligned, alignment;
2377
2378 alignment = intel_surf_alignment(dev_priv, fb_modifier);
2379 if (alignment)
2380 alignment--;
2381
b5c65338 2382 if (fb_modifier != DRM_FORMAT_MOD_NONE) {
8d0deca8
VS
2383 unsigned int tile_size, tile_width, tile_height;
2384 unsigned int tile_rows, tiles, pitch_tiles;
c2c75131 2385
d843310d 2386 tile_size = intel_tile_size(dev_priv);
8d0deca8
VS
2387 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2388 fb_modifier, cpp);
2389
2390 if (intel_rotation_90_or_270(rotation)) {
2391 pitch_tiles = pitch / tile_height;
2392 swap(tile_width, tile_height);
2393 } else {
2394 pitch_tiles = pitch / (tile_width * cpp);
2395 }
d843310d
VS
2396
2397 tile_rows = *y / tile_height;
2398 *y %= tile_height;
c2c75131 2399
8d0deca8
VS
2400 tiles = *x / tile_width;
2401 *x %= tile_width;
bc752862 2402
29cf9491
VS
2403 offset = (tile_rows * pitch_tiles + tiles) * tile_size;
2404 offset_aligned = offset & ~alignment;
bc752862 2405
29cf9491
VS
2406 intel_adjust_tile_offset(x, y, tile_width, tile_height,
2407 tile_size, pitch_tiles,
2408 offset, offset_aligned);
2409 } else {
bc752862 2410 offset = *y * pitch + *x * cpp;
29cf9491
VS
2411 offset_aligned = offset & ~alignment;
2412
4e9a86b6
VS
2413 *y = (offset & alignment) / pitch;
2414 *x = ((offset & alignment) - *y * pitch) / cpp;
bc752862 2415 }
29cf9491
VS
2416
2417 return offset_aligned;
c2c75131
DV
2418}
2419
b35d63fa 2420static int i9xx_format_to_fourcc(int format)
46f297fb
JB
2421{
2422 switch (format) {
2423 case DISPPLANE_8BPP:
2424 return DRM_FORMAT_C8;
2425 case DISPPLANE_BGRX555:
2426 return DRM_FORMAT_XRGB1555;
2427 case DISPPLANE_BGRX565:
2428 return DRM_FORMAT_RGB565;
2429 default:
2430 case DISPPLANE_BGRX888:
2431 return DRM_FORMAT_XRGB8888;
2432 case DISPPLANE_RGBX888:
2433 return DRM_FORMAT_XBGR8888;
2434 case DISPPLANE_BGRX101010:
2435 return DRM_FORMAT_XRGB2101010;
2436 case DISPPLANE_RGBX101010:
2437 return DRM_FORMAT_XBGR2101010;
2438 }
2439}
2440
bc8d7dff
DL
2441static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2442{
2443 switch (format) {
2444 case PLANE_CTL_FORMAT_RGB_565:
2445 return DRM_FORMAT_RGB565;
2446 default:
2447 case PLANE_CTL_FORMAT_XRGB_8888:
2448 if (rgb_order) {
2449 if (alpha)
2450 return DRM_FORMAT_ABGR8888;
2451 else
2452 return DRM_FORMAT_XBGR8888;
2453 } else {
2454 if (alpha)
2455 return DRM_FORMAT_ARGB8888;
2456 else
2457 return DRM_FORMAT_XRGB8888;
2458 }
2459 case PLANE_CTL_FORMAT_XRGB_2101010:
2460 if (rgb_order)
2461 return DRM_FORMAT_XBGR2101010;
2462 else
2463 return DRM_FORMAT_XRGB2101010;
2464 }
2465}
2466
5724dbd1 2467static bool
f6936e29
DV
2468intel_alloc_initial_plane_obj(struct intel_crtc *crtc,
2469 struct intel_initial_plane_config *plane_config)
46f297fb
JB
2470{
2471 struct drm_device *dev = crtc->base.dev;
3badb49f 2472 struct drm_i915_private *dev_priv = to_i915(dev);
72e96d64 2473 struct i915_ggtt *ggtt = &dev_priv->ggtt;
46f297fb
JB
2474 struct drm_i915_gem_object *obj = NULL;
2475 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2d14030b 2476 struct drm_framebuffer *fb = &plane_config->fb->base;
f37b5c2b
DV
2477 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2478 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2479 PAGE_SIZE);
2480
2481 size_aligned -= base_aligned;
46f297fb 2482
ff2652ea
CW
2483 if (plane_config->size == 0)
2484 return false;
2485
3badb49f
PZ
2486 /* If the FB is too big, just don't use it since fbdev is not very
2487 * important and we should probably use that space with FBC or other
2488 * features. */
72e96d64 2489 if (size_aligned * 2 > ggtt->stolen_usable_size)
3badb49f
PZ
2490 return false;
2491
12c83d99
TU
2492 mutex_lock(&dev->struct_mutex);
2493
f37b5c2b
DV
2494 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2495 base_aligned,
2496 base_aligned,
2497 size_aligned);
12c83d99
TU
2498 if (!obj) {
2499 mutex_unlock(&dev->struct_mutex);
484b41dd 2500 return false;
12c83d99 2501 }
46f297fb 2502
49af449b
DL
2503 obj->tiling_mode = plane_config->tiling;
2504 if (obj->tiling_mode == I915_TILING_X)
6bf129df 2505 obj->stride = fb->pitches[0];
46f297fb 2506
6bf129df
DL
2507 mode_cmd.pixel_format = fb->pixel_format;
2508 mode_cmd.width = fb->width;
2509 mode_cmd.height = fb->height;
2510 mode_cmd.pitches[0] = fb->pitches[0];
18c5247e
DV
2511 mode_cmd.modifier[0] = fb->modifier[0];
2512 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
46f297fb 2513
6bf129df 2514 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
484b41dd 2515 &mode_cmd, obj)) {
46f297fb
JB
2516 DRM_DEBUG_KMS("intel fb init failed\n");
2517 goto out_unref_obj;
2518 }
12c83d99 2519
46f297fb 2520 mutex_unlock(&dev->struct_mutex);
484b41dd 2521
f6936e29 2522 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
484b41dd 2523 return true;
46f297fb
JB
2524
2525out_unref_obj:
2526 drm_gem_object_unreference(&obj->base);
2527 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2528 return false;
2529}
2530
5a21b665
DV
2531/* Update plane->state->fb to match plane->fb after driver-internal updates */
2532static void
2533update_state_fb(struct drm_plane *plane)
2534{
2535 if (plane->fb == plane->state->fb)
2536 return;
2537
2538 if (plane->state->fb)
2539 drm_framebuffer_unreference(plane->state->fb);
2540 plane->state->fb = plane->fb;
2541 if (plane->state->fb)
2542 drm_framebuffer_reference(plane->state->fb);
2543}
2544
5724dbd1 2545static void
f6936e29
DV
2546intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2547 struct intel_initial_plane_config *plane_config)
484b41dd
JB
2548{
2549 struct drm_device *dev = intel_crtc->base.dev;
d9ceb816 2550 struct drm_i915_private *dev_priv = dev->dev_private;
484b41dd
JB
2551 struct drm_crtc *c;
2552 struct intel_crtc *i;
2ff8fde1 2553 struct drm_i915_gem_object *obj;
88595ac9 2554 struct drm_plane *primary = intel_crtc->base.primary;
be5651f2 2555 struct drm_plane_state *plane_state = primary->state;
200757f5
MR
2556 struct drm_crtc_state *crtc_state = intel_crtc->base.state;
2557 struct intel_plane *intel_plane = to_intel_plane(primary);
0a8d8a86
MR
2558 struct intel_plane_state *intel_state =
2559 to_intel_plane_state(plane_state);
88595ac9 2560 struct drm_framebuffer *fb;
484b41dd 2561
2d14030b 2562 if (!plane_config->fb)
484b41dd
JB
2563 return;
2564
f6936e29 2565 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
88595ac9
DV
2566 fb = &plane_config->fb->base;
2567 goto valid_fb;
f55548b5 2568 }
484b41dd 2569
2d14030b 2570 kfree(plane_config->fb);
484b41dd
JB
2571
2572 /*
2573 * Failed to alloc the obj, check to see if we should share
2574 * an fb with another CRTC instead
2575 */
70e1e0ec 2576 for_each_crtc(dev, c) {
484b41dd
JB
2577 i = to_intel_crtc(c);
2578
2579 if (c == &intel_crtc->base)
2580 continue;
2581
2ff8fde1
MR
2582 if (!i->active)
2583 continue;
2584
88595ac9
DV
2585 fb = c->primary->fb;
2586 if (!fb)
484b41dd
JB
2587 continue;
2588
88595ac9 2589 obj = intel_fb_obj(fb);
2ff8fde1 2590 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
88595ac9
DV
2591 drm_framebuffer_reference(fb);
2592 goto valid_fb;
484b41dd
JB
2593 }
2594 }
88595ac9 2595
200757f5
MR
2596 /*
2597 * We've failed to reconstruct the BIOS FB. Current display state
2598 * indicates that the primary plane is visible, but has a NULL FB,
2599 * which will lead to problems later if we don't fix it up. The
2600 * simplest solution is to just disable the primary plane now and
2601 * pretend the BIOS never had it enabled.
2602 */
2603 to_intel_plane_state(plane_state)->visible = false;
2604 crtc_state->plane_mask &= ~(1 << drm_plane_index(primary));
2622a081 2605 intel_pre_disable_primary_noatomic(&intel_crtc->base);
200757f5
MR
2606 intel_plane->disable_plane(primary, &intel_crtc->base);
2607
88595ac9
DV
2608 return;
2609
2610valid_fb:
f44e2659
VS
2611 plane_state->src_x = 0;
2612 plane_state->src_y = 0;
be5651f2
ML
2613 plane_state->src_w = fb->width << 16;
2614 plane_state->src_h = fb->height << 16;
2615
f44e2659
VS
2616 plane_state->crtc_x = 0;
2617 plane_state->crtc_y = 0;
be5651f2
ML
2618 plane_state->crtc_w = fb->width;
2619 plane_state->crtc_h = fb->height;
2620
0a8d8a86
MR
2621 intel_state->src.x1 = plane_state->src_x;
2622 intel_state->src.y1 = plane_state->src_y;
2623 intel_state->src.x2 = plane_state->src_x + plane_state->src_w;
2624 intel_state->src.y2 = plane_state->src_y + plane_state->src_h;
2625 intel_state->dst.x1 = plane_state->crtc_x;
2626 intel_state->dst.y1 = plane_state->crtc_y;
2627 intel_state->dst.x2 = plane_state->crtc_x + plane_state->crtc_w;
2628 intel_state->dst.y2 = plane_state->crtc_y + plane_state->crtc_h;
2629
88595ac9
DV
2630 obj = intel_fb_obj(fb);
2631 if (obj->tiling_mode != I915_TILING_NONE)
2632 dev_priv->preserve_bios_swizzle = true;
2633
be5651f2
ML
2634 drm_framebuffer_reference(fb);
2635 primary->fb = primary->state->fb = fb;
36750f28 2636 primary->crtc = primary->state->crtc = &intel_crtc->base;
36750f28 2637 intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary));
a9ff8714 2638 obj->frontbuffer_bits |= to_intel_plane(primary)->frontbuffer_bit;
46f297fb
JB
2639}
2640
a8d201af
ML
2641static void i9xx_update_primary_plane(struct drm_plane *primary,
2642 const struct intel_crtc_state *crtc_state,
2643 const struct intel_plane_state *plane_state)
81255565 2644{
a8d201af 2645 struct drm_device *dev = primary->dev;
81255565 2646 struct drm_i915_private *dev_priv = dev->dev_private;
a8d201af
ML
2647 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2648 struct drm_framebuffer *fb = plane_state->base.fb;
2649 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
81255565 2650 int plane = intel_crtc->plane;
54ea9da8 2651 u32 linear_offset;
81255565 2652 u32 dspcntr;
f0f59a00 2653 i915_reg_t reg = DSPCNTR(plane);
8d0deca8 2654 unsigned int rotation = plane_state->base.rotation;
ac484963 2655 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
54ea9da8
VS
2656 int x = plane_state->src.x1 >> 16;
2657 int y = plane_state->src.y1 >> 16;
c9ba6fad 2658
f45651ba
VS
2659 dspcntr = DISPPLANE_GAMMA_ENABLE;
2660
fdd508a6 2661 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2662
2663 if (INTEL_INFO(dev)->gen < 4) {
2664 if (intel_crtc->pipe == PIPE_B)
2665 dspcntr |= DISPPLANE_SEL_PIPE_B;
2666
2667 /* pipesrc and dspsize control the size that is scaled from,
2668 * which should always be the user's requested size.
2669 */
2670 I915_WRITE(DSPSIZE(plane),
a8d201af
ML
2671 ((crtc_state->pipe_src_h - 1) << 16) |
2672 (crtc_state->pipe_src_w - 1));
f45651ba 2673 I915_WRITE(DSPPOS(plane), 0);
c14b0485
VS
2674 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2675 I915_WRITE(PRIMSIZE(plane),
a8d201af
ML
2676 ((crtc_state->pipe_src_h - 1) << 16) |
2677 (crtc_state->pipe_src_w - 1));
c14b0485
VS
2678 I915_WRITE(PRIMPOS(plane), 0);
2679 I915_WRITE(PRIMCNSTALPHA(plane), 0);
f45651ba 2680 }
81255565 2681
57779d06
VS
2682 switch (fb->pixel_format) {
2683 case DRM_FORMAT_C8:
81255565
JB
2684 dspcntr |= DISPPLANE_8BPP;
2685 break;
57779d06 2686 case DRM_FORMAT_XRGB1555:
57779d06 2687 dspcntr |= DISPPLANE_BGRX555;
81255565 2688 break;
57779d06
VS
2689 case DRM_FORMAT_RGB565:
2690 dspcntr |= DISPPLANE_BGRX565;
2691 break;
2692 case DRM_FORMAT_XRGB8888:
57779d06
VS
2693 dspcntr |= DISPPLANE_BGRX888;
2694 break;
2695 case DRM_FORMAT_XBGR8888:
57779d06
VS
2696 dspcntr |= DISPPLANE_RGBX888;
2697 break;
2698 case DRM_FORMAT_XRGB2101010:
57779d06
VS
2699 dspcntr |= DISPPLANE_BGRX101010;
2700 break;
2701 case DRM_FORMAT_XBGR2101010:
57779d06 2702 dspcntr |= DISPPLANE_RGBX101010;
81255565
JB
2703 break;
2704 default:
baba133a 2705 BUG();
81255565 2706 }
57779d06 2707
f45651ba
VS
2708 if (INTEL_INFO(dev)->gen >= 4 &&
2709 obj->tiling_mode != I915_TILING_NONE)
2710 dspcntr |= DISPPLANE_TILED;
81255565 2711
de1aa629
VS
2712 if (IS_G4X(dev))
2713 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2714
ac484963 2715 linear_offset = y * fb->pitches[0] + x * cpp;
81255565 2716
c2c75131
DV
2717 if (INTEL_INFO(dev)->gen >= 4) {
2718 intel_crtc->dspaddr_offset =
4f2d9934 2719 intel_compute_tile_offset(&x, &y, fb, 0,
8d0deca8 2720 fb->pitches[0], rotation);
c2c75131
DV
2721 linear_offset -= intel_crtc->dspaddr_offset;
2722 } else {
e506a0c6 2723 intel_crtc->dspaddr_offset = linear_offset;
c2c75131 2724 }
e506a0c6 2725
8d0deca8 2726 if (rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2727 dspcntr |= DISPPLANE_ROTATE_180;
2728
a8d201af
ML
2729 x += (crtc_state->pipe_src_w - 1);
2730 y += (crtc_state->pipe_src_h - 1);
48404c1e
SJ
2731
2732 /* Finding the last pixel of the last line of the display
2733 data and adding to linear_offset*/
2734 linear_offset +=
a8d201af 2735 (crtc_state->pipe_src_h - 1) * fb->pitches[0] +
ac484963 2736 (crtc_state->pipe_src_w - 1) * cpp;
48404c1e
SJ
2737 }
2738
2db3366b
PZ
2739 intel_crtc->adjusted_x = x;
2740 intel_crtc->adjusted_y = y;
2741
48404c1e
SJ
2742 I915_WRITE(reg, dspcntr);
2743
01f2c773 2744 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
a6c45cf0 2745 if (INTEL_INFO(dev)->gen >= 4) {
85ba7b7d
DV
2746 I915_WRITE(DSPSURF(plane),
2747 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
5eddb70b 2748 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
e506a0c6 2749 I915_WRITE(DSPLINOFF(plane), linear_offset);
5eddb70b 2750 } else
f343c5f6 2751 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
5eddb70b 2752 POSTING_READ(reg);
17638cd6
JB
2753}
2754
a8d201af
ML
2755static void i9xx_disable_primary_plane(struct drm_plane *primary,
2756 struct drm_crtc *crtc)
17638cd6
JB
2757{
2758 struct drm_device *dev = crtc->dev;
2759 struct drm_i915_private *dev_priv = dev->dev_private;
2760 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
17638cd6 2761 int plane = intel_crtc->plane;
f45651ba 2762
a8d201af
ML
2763 I915_WRITE(DSPCNTR(plane), 0);
2764 if (INTEL_INFO(dev_priv)->gen >= 4)
fdd508a6 2765 I915_WRITE(DSPSURF(plane), 0);
a8d201af
ML
2766 else
2767 I915_WRITE(DSPADDR(plane), 0);
2768 POSTING_READ(DSPCNTR(plane));
2769}
c9ba6fad 2770
a8d201af
ML
2771static void ironlake_update_primary_plane(struct drm_plane *primary,
2772 const struct intel_crtc_state *crtc_state,
2773 const struct intel_plane_state *plane_state)
2774{
2775 struct drm_device *dev = primary->dev;
2776 struct drm_i915_private *dev_priv = dev->dev_private;
2777 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2778 struct drm_framebuffer *fb = plane_state->base.fb;
2779 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
2780 int plane = intel_crtc->plane;
54ea9da8 2781 u32 linear_offset;
a8d201af
ML
2782 u32 dspcntr;
2783 i915_reg_t reg = DSPCNTR(plane);
8d0deca8 2784 unsigned int rotation = plane_state->base.rotation;
ac484963 2785 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
a8d201af
ML
2786 int x = plane_state->src.x1 >> 16;
2787 int y = plane_state->src.y1 >> 16;
c9ba6fad 2788
f45651ba 2789 dspcntr = DISPPLANE_GAMMA_ENABLE;
fdd508a6 2790 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2791
2792 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2793 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
17638cd6 2794
57779d06
VS
2795 switch (fb->pixel_format) {
2796 case DRM_FORMAT_C8:
17638cd6
JB
2797 dspcntr |= DISPPLANE_8BPP;
2798 break;
57779d06
VS
2799 case DRM_FORMAT_RGB565:
2800 dspcntr |= DISPPLANE_BGRX565;
17638cd6 2801 break;
57779d06 2802 case DRM_FORMAT_XRGB8888:
57779d06
VS
2803 dspcntr |= DISPPLANE_BGRX888;
2804 break;
2805 case DRM_FORMAT_XBGR8888:
57779d06
VS
2806 dspcntr |= DISPPLANE_RGBX888;
2807 break;
2808 case DRM_FORMAT_XRGB2101010:
57779d06
VS
2809 dspcntr |= DISPPLANE_BGRX101010;
2810 break;
2811 case DRM_FORMAT_XBGR2101010:
57779d06 2812 dspcntr |= DISPPLANE_RGBX101010;
17638cd6
JB
2813 break;
2814 default:
baba133a 2815 BUG();
17638cd6
JB
2816 }
2817
2818 if (obj->tiling_mode != I915_TILING_NONE)
2819 dspcntr |= DISPPLANE_TILED;
17638cd6 2820
f45651ba 2821 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
1f5d76db 2822 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
17638cd6 2823
ac484963 2824 linear_offset = y * fb->pitches[0] + x * cpp;
c2c75131 2825 intel_crtc->dspaddr_offset =
4f2d9934 2826 intel_compute_tile_offset(&x, &y, fb, 0,
8d0deca8 2827 fb->pitches[0], rotation);
c2c75131 2828 linear_offset -= intel_crtc->dspaddr_offset;
8d0deca8 2829 if (rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2830 dspcntr |= DISPPLANE_ROTATE_180;
2831
2832 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
a8d201af
ML
2833 x += (crtc_state->pipe_src_w - 1);
2834 y += (crtc_state->pipe_src_h - 1);
48404c1e
SJ
2835
2836 /* Finding the last pixel of the last line of the display
2837 data and adding to linear_offset*/
2838 linear_offset +=
a8d201af 2839 (crtc_state->pipe_src_h - 1) * fb->pitches[0] +
ac484963 2840 (crtc_state->pipe_src_w - 1) * cpp;
48404c1e
SJ
2841 }
2842 }
2843
2db3366b
PZ
2844 intel_crtc->adjusted_x = x;
2845 intel_crtc->adjusted_y = y;
2846
48404c1e 2847 I915_WRITE(reg, dspcntr);
17638cd6 2848
01f2c773 2849 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
85ba7b7d
DV
2850 I915_WRITE(DSPSURF(plane),
2851 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
b3dc685e 2852 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
bc1c91eb
DL
2853 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2854 } else {
2855 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2856 I915_WRITE(DSPLINOFF(plane), linear_offset);
2857 }
17638cd6 2858 POSTING_READ(reg);
17638cd6
JB
2859}
2860
7b49f948
VS
2861u32 intel_fb_stride_alignment(const struct drm_i915_private *dev_priv,
2862 uint64_t fb_modifier, uint32_t pixel_format)
b321803d 2863{
7b49f948 2864 if (fb_modifier == DRM_FORMAT_MOD_NONE) {
b321803d 2865 return 64;
7b49f948
VS
2866 } else {
2867 int cpp = drm_format_plane_cpp(pixel_format, 0);
2868
27ba3910 2869 return intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
b321803d
DL
2870 }
2871}
2872
44eb0cb9
MK
2873u32 intel_plane_obj_offset(struct intel_plane *intel_plane,
2874 struct drm_i915_gem_object *obj,
2875 unsigned int plane)
121920fa 2876{
ce7f1728 2877 struct i915_ggtt_view view;
dedf278c 2878 struct i915_vma *vma;
44eb0cb9 2879 u64 offset;
121920fa 2880
e7941294 2881 intel_fill_fb_ggtt_view(&view, intel_plane->base.state->fb,
3465c580 2882 intel_plane->base.state->rotation);
121920fa 2883
ce7f1728 2884 vma = i915_gem_obj_to_ggtt_view(obj, &view);
dedf278c 2885 if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n",
ce7f1728 2886 view.type))
dedf278c
TU
2887 return -1;
2888
44eb0cb9 2889 offset = vma->node.start;
dedf278c
TU
2890
2891 if (plane == 1) {
7723f47d 2892 offset += vma->ggtt_view.params.rotated.uv_start_page *
dedf278c
TU
2893 PAGE_SIZE;
2894 }
2895
44eb0cb9
MK
2896 WARN_ON(upper_32_bits(offset));
2897
2898 return lower_32_bits(offset);
121920fa
TU
2899}
2900
e435d6e5
ML
2901static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id)
2902{
2903 struct drm_device *dev = intel_crtc->base.dev;
2904 struct drm_i915_private *dev_priv = dev->dev_private;
2905
2906 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0);
2907 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0);
2908 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0);
e435d6e5
ML
2909}
2910
a1b2278e
CK
2911/*
2912 * This function detaches (aka. unbinds) unused scalers in hardware
2913 */
0583236e 2914static void skl_detach_scalers(struct intel_crtc *intel_crtc)
a1b2278e 2915{
a1b2278e
CK
2916 struct intel_crtc_scaler_state *scaler_state;
2917 int i;
2918
a1b2278e
CK
2919 scaler_state = &intel_crtc->config->scaler_state;
2920
2921 /* loop through and disable scalers that aren't in use */
2922 for (i = 0; i < intel_crtc->num_scalers; i++) {
e435d6e5
ML
2923 if (!scaler_state->scalers[i].in_use)
2924 skl_detach_scaler(intel_crtc, i);
a1b2278e
CK
2925 }
2926}
2927
6156a456 2928u32 skl_plane_ctl_format(uint32_t pixel_format)
70d21f0e 2929{
6156a456 2930 switch (pixel_format) {
d161cf7a 2931 case DRM_FORMAT_C8:
c34ce3d1 2932 return PLANE_CTL_FORMAT_INDEXED;
70d21f0e 2933 case DRM_FORMAT_RGB565:
c34ce3d1 2934 return PLANE_CTL_FORMAT_RGB_565;
70d21f0e 2935 case DRM_FORMAT_XBGR8888:
c34ce3d1 2936 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
6156a456 2937 case DRM_FORMAT_XRGB8888:
c34ce3d1 2938 return PLANE_CTL_FORMAT_XRGB_8888;
6156a456
CK
2939 /*
2940 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
2941 * to be already pre-multiplied. We need to add a knob (or a different
2942 * DRM_FORMAT) for user-space to configure that.
2943 */
f75fb42a 2944 case DRM_FORMAT_ABGR8888:
c34ce3d1 2945 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
6156a456 2946 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
6156a456 2947 case DRM_FORMAT_ARGB8888:
c34ce3d1 2948 return PLANE_CTL_FORMAT_XRGB_8888 |
6156a456 2949 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
70d21f0e 2950 case DRM_FORMAT_XRGB2101010:
c34ce3d1 2951 return PLANE_CTL_FORMAT_XRGB_2101010;
70d21f0e 2952 case DRM_FORMAT_XBGR2101010:
c34ce3d1 2953 return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
6156a456 2954 case DRM_FORMAT_YUYV:
c34ce3d1 2955 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
6156a456 2956 case DRM_FORMAT_YVYU:
c34ce3d1 2957 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
6156a456 2958 case DRM_FORMAT_UYVY:
c34ce3d1 2959 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
6156a456 2960 case DRM_FORMAT_VYUY:
c34ce3d1 2961 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
70d21f0e 2962 default:
4249eeef 2963 MISSING_CASE(pixel_format);
70d21f0e 2964 }
8cfcba41 2965
c34ce3d1 2966 return 0;
6156a456 2967}
70d21f0e 2968
6156a456
CK
2969u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
2970{
6156a456 2971 switch (fb_modifier) {
30af77c4 2972 case DRM_FORMAT_MOD_NONE:
70d21f0e 2973 break;
30af77c4 2974 case I915_FORMAT_MOD_X_TILED:
c34ce3d1 2975 return PLANE_CTL_TILED_X;
b321803d 2976 case I915_FORMAT_MOD_Y_TILED:
c34ce3d1 2977 return PLANE_CTL_TILED_Y;
b321803d 2978 case I915_FORMAT_MOD_Yf_TILED:
c34ce3d1 2979 return PLANE_CTL_TILED_YF;
70d21f0e 2980 default:
6156a456 2981 MISSING_CASE(fb_modifier);
70d21f0e 2982 }
8cfcba41 2983
c34ce3d1 2984 return 0;
6156a456 2985}
70d21f0e 2986
6156a456
CK
2987u32 skl_plane_ctl_rotation(unsigned int rotation)
2988{
3b7a5119 2989 switch (rotation) {
6156a456
CK
2990 case BIT(DRM_ROTATE_0):
2991 break;
1e8df167
SJ
2992 /*
2993 * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr
2994 * while i915 HW rotation is clockwise, thats why this swapping.
2995 */
3b7a5119 2996 case BIT(DRM_ROTATE_90):
1e8df167 2997 return PLANE_CTL_ROTATE_270;
3b7a5119 2998 case BIT(DRM_ROTATE_180):
c34ce3d1 2999 return PLANE_CTL_ROTATE_180;
3b7a5119 3000 case BIT(DRM_ROTATE_270):
1e8df167 3001 return PLANE_CTL_ROTATE_90;
6156a456
CK
3002 default:
3003 MISSING_CASE(rotation);
3004 }
3005
c34ce3d1 3006 return 0;
6156a456
CK
3007}
3008
a8d201af
ML
3009static void skylake_update_primary_plane(struct drm_plane *plane,
3010 const struct intel_crtc_state *crtc_state,
3011 const struct intel_plane_state *plane_state)
6156a456 3012{
a8d201af 3013 struct drm_device *dev = plane->dev;
6156a456 3014 struct drm_i915_private *dev_priv = dev->dev_private;
a8d201af
ML
3015 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3016 struct drm_framebuffer *fb = plane_state->base.fb;
3017 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
6156a456
CK
3018 int pipe = intel_crtc->pipe;
3019 u32 plane_ctl, stride_div, stride;
3020 u32 tile_height, plane_offset, plane_size;
a8d201af 3021 unsigned int rotation = plane_state->base.rotation;
6156a456 3022 int x_offset, y_offset;
44eb0cb9 3023 u32 surf_addr;
a8d201af
ML
3024 int scaler_id = plane_state->scaler_id;
3025 int src_x = plane_state->src.x1 >> 16;
3026 int src_y = plane_state->src.y1 >> 16;
3027 int src_w = drm_rect_width(&plane_state->src) >> 16;
3028 int src_h = drm_rect_height(&plane_state->src) >> 16;
3029 int dst_x = plane_state->dst.x1;
3030 int dst_y = plane_state->dst.y1;
3031 int dst_w = drm_rect_width(&plane_state->dst);
3032 int dst_h = drm_rect_height(&plane_state->dst);
70d21f0e 3033
6156a456
CK
3034 plane_ctl = PLANE_CTL_ENABLE |
3035 PLANE_CTL_PIPE_GAMMA_ENABLE |
3036 PLANE_CTL_PIPE_CSC_ENABLE;
3037
3038 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3039 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
3040 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
6156a456
CK
3041 plane_ctl |= skl_plane_ctl_rotation(rotation);
3042
7b49f948 3043 stride_div = intel_fb_stride_alignment(dev_priv, fb->modifier[0],
b321803d 3044 fb->pixel_format);
dedf278c 3045 surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj, 0);
3b7a5119 3046
a42e5a23
PZ
3047 WARN_ON(drm_rect_width(&plane_state->src) == 0);
3048
3b7a5119 3049 if (intel_rotation_90_or_270(rotation)) {
832be82f
VS
3050 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
3051
3b7a5119 3052 /* stride = Surface height in tiles */
832be82f 3053 tile_height = intel_tile_height(dev_priv, fb->modifier[0], cpp);
3b7a5119 3054 stride = DIV_ROUND_UP(fb->height, tile_height);
a8d201af
ML
3055 x_offset = stride * tile_height - src_y - src_h;
3056 y_offset = src_x;
6156a456 3057 plane_size = (src_w - 1) << 16 | (src_h - 1);
3b7a5119
SJ
3058 } else {
3059 stride = fb->pitches[0] / stride_div;
a8d201af
ML
3060 x_offset = src_x;
3061 y_offset = src_y;
6156a456 3062 plane_size = (src_h - 1) << 16 | (src_w - 1);
3b7a5119
SJ
3063 }
3064 plane_offset = y_offset << 16 | x_offset;
b321803d 3065
2db3366b
PZ
3066 intel_crtc->adjusted_x = x_offset;
3067 intel_crtc->adjusted_y = y_offset;
3068
70d21f0e 3069 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
3b7a5119
SJ
3070 I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset);
3071 I915_WRITE(PLANE_SIZE(pipe, 0), plane_size);
3072 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
6156a456
CK
3073
3074 if (scaler_id >= 0) {
3075 uint32_t ps_ctrl = 0;
3076
3077 WARN_ON(!dst_w || !dst_h);
3078 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3079 crtc_state->scaler_state.scalers[scaler_id].mode;
3080 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3081 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3082 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3083 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3084 I915_WRITE(PLANE_POS(pipe, 0), 0);
3085 } else {
3086 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3087 }
3088
121920fa 3089 I915_WRITE(PLANE_SURF(pipe, 0), surf_addr);
70d21f0e
DL
3090
3091 POSTING_READ(PLANE_SURF(pipe, 0));
3092}
3093
a8d201af
ML
3094static void skylake_disable_primary_plane(struct drm_plane *primary,
3095 struct drm_crtc *crtc)
17638cd6
JB
3096{
3097 struct drm_device *dev = crtc->dev;
3098 struct drm_i915_private *dev_priv = dev->dev_private;
a8d201af 3099 int pipe = to_intel_crtc(crtc)->pipe;
17638cd6 3100
a8d201af
ML
3101 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3102 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3103 POSTING_READ(PLANE_SURF(pipe, 0));
3104}
29b9bde6 3105
a8d201af
ML
3106/* Assume fb object is pinned & idle & fenced and just update base pointers */
3107static int
3108intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3109 int x, int y, enum mode_set_atomic state)
3110{
3111 /* Support for kgdboc is disabled, this needs a major rework. */
3112 DRM_ERROR("legacy panic handler not supported any more.\n");
3113
3114 return -ENODEV;
81255565
JB
3115}
3116
5a21b665
DV
3117static void intel_complete_page_flips(struct drm_i915_private *dev_priv)
3118{
3119 struct intel_crtc *crtc;
3120
3121 for_each_intel_crtc(dev_priv->dev, crtc)
3122 intel_finish_page_flip_cs(dev_priv, crtc->pipe);
3123}
3124
7514747d
VS
3125static void intel_update_primary_planes(struct drm_device *dev)
3126{
7514747d 3127 struct drm_crtc *crtc;
96a02917 3128
70e1e0ec 3129 for_each_crtc(dev, crtc) {
11c22da6
ML
3130 struct intel_plane *plane = to_intel_plane(crtc->primary);
3131 struct intel_plane_state *plane_state;
96a02917 3132
11c22da6 3133 drm_modeset_lock_crtc(crtc, &plane->base);
11c22da6
ML
3134 plane_state = to_intel_plane_state(plane->base.state);
3135
a8d201af
ML
3136 if (plane_state->visible)
3137 plane->update_plane(&plane->base,
3138 to_intel_crtc_state(crtc->state),
3139 plane_state);
11c22da6
ML
3140
3141 drm_modeset_unlock_crtc(crtc);
96a02917
VS
3142 }
3143}
3144
c033666a 3145void intel_prepare_reset(struct drm_i915_private *dev_priv)
7514747d
VS
3146{
3147 /* no reset support for gen2 */
c033666a 3148 if (IS_GEN2(dev_priv))
7514747d
VS
3149 return;
3150
3151 /* reset doesn't touch the display */
c033666a 3152 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
7514747d
VS
3153 return;
3154
c033666a 3155 drm_modeset_lock_all(dev_priv->dev);
f98ce92f
VS
3156 /*
3157 * Disabling the crtcs gracefully seems nicer. Also the
3158 * g33 docs say we should at least disable all the planes.
3159 */
c033666a 3160 intel_display_suspend(dev_priv->dev);
7514747d
VS
3161}
3162
c033666a 3163void intel_finish_reset(struct drm_i915_private *dev_priv)
7514747d 3164{
5a21b665
DV
3165 /*
3166 * Flips in the rings will be nuked by the reset,
3167 * so complete all pending flips so that user space
3168 * will get its events and not get stuck.
3169 */
3170 intel_complete_page_flips(dev_priv);
3171
7514747d 3172 /* no reset support for gen2 */
c033666a 3173 if (IS_GEN2(dev_priv))
7514747d
VS
3174 return;
3175
3176 /* reset doesn't touch the display */
c033666a 3177 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv)) {
7514747d
VS
3178 /*
3179 * Flips in the rings have been nuked by the reset,
3180 * so update the base address of all primary
3181 * planes to the the last fb to make sure we're
3182 * showing the correct fb after a reset.
11c22da6
ML
3183 *
3184 * FIXME: Atomic will make this obsolete since we won't schedule
3185 * CS-based flips (which might get lost in gpu resets) any more.
7514747d 3186 */
c033666a 3187 intel_update_primary_planes(dev_priv->dev);
7514747d
VS
3188 return;
3189 }
3190
3191 /*
3192 * The display has been reset as well,
3193 * so need a full re-initialization.
3194 */
3195 intel_runtime_pm_disable_interrupts(dev_priv);
3196 intel_runtime_pm_enable_interrupts(dev_priv);
3197
c033666a 3198 intel_modeset_init_hw(dev_priv->dev);
7514747d
VS
3199
3200 spin_lock_irq(&dev_priv->irq_lock);
3201 if (dev_priv->display.hpd_irq_setup)
91d14251 3202 dev_priv->display.hpd_irq_setup(dev_priv);
7514747d
VS
3203 spin_unlock_irq(&dev_priv->irq_lock);
3204
c033666a 3205 intel_display_resume(dev_priv->dev);
7514747d
VS
3206
3207 intel_hpd_init(dev_priv);
3208
c033666a 3209 drm_modeset_unlock_all(dev_priv->dev);
7514747d
VS
3210}
3211
7d5e3799
CW
3212static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3213{
5a21b665
DV
3214 struct drm_device *dev = crtc->dev;
3215 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3216 unsigned reset_counter;
3217 bool pending;
3218
3219 reset_counter = i915_reset_counter(&to_i915(dev)->gpu_error);
3220 if (intel_crtc->reset_counter != reset_counter)
3221 return false;
3222
3223 spin_lock_irq(&dev->event_lock);
3224 pending = to_intel_crtc(crtc)->flip_work != NULL;
3225 spin_unlock_irq(&dev->event_lock);
3226
3227 return pending;
7d5e3799
CW
3228}
3229
bfd16b2a
ML
3230static void intel_update_pipe_config(struct intel_crtc *crtc,
3231 struct intel_crtc_state *old_crtc_state)
e30e8f75
GP
3232{
3233 struct drm_device *dev = crtc->base.dev;
3234 struct drm_i915_private *dev_priv = dev->dev_private;
bfd16b2a
ML
3235 struct intel_crtc_state *pipe_config =
3236 to_intel_crtc_state(crtc->base.state);
e30e8f75 3237
bfd16b2a
ML
3238 /* drm_atomic_helper_update_legacy_modeset_state might not be called. */
3239 crtc->base.mode = crtc->base.state->mode;
3240
3241 DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n",
3242 old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h,
3243 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
e30e8f75
GP
3244
3245 /*
3246 * Update pipe size and adjust fitter if needed: the reason for this is
3247 * that in compute_mode_changes we check the native mode (not the pfit
3248 * mode) to see if we can flip rather than do a full mode set. In the
3249 * fastboot case, we'll flip, but if we don't update the pipesrc and
3250 * pfit state, we'll end up with a big fb scanned out into the wrong
3251 * sized surface.
e30e8f75
GP
3252 */
3253
e30e8f75 3254 I915_WRITE(PIPESRC(crtc->pipe),
bfd16b2a
ML
3255 ((pipe_config->pipe_src_w - 1) << 16) |
3256 (pipe_config->pipe_src_h - 1));
3257
3258 /* on skylake this is done by detaching scalers */
3259 if (INTEL_INFO(dev)->gen >= 9) {
3260 skl_detach_scalers(crtc);
3261
3262 if (pipe_config->pch_pfit.enabled)
3263 skylake_pfit_enable(crtc);
3264 } else if (HAS_PCH_SPLIT(dev)) {
3265 if (pipe_config->pch_pfit.enabled)
3266 ironlake_pfit_enable(crtc);
3267 else if (old_crtc_state->pch_pfit.enabled)
3268 ironlake_pfit_disable(crtc, true);
e30e8f75 3269 }
e30e8f75
GP
3270}
3271
5e84e1a4
ZW
3272static void intel_fdi_normal_train(struct drm_crtc *crtc)
3273{
3274 struct drm_device *dev = crtc->dev;
3275 struct drm_i915_private *dev_priv = dev->dev_private;
3276 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3277 int pipe = intel_crtc->pipe;
f0f59a00
VS
3278 i915_reg_t reg;
3279 u32 temp;
5e84e1a4
ZW
3280
3281 /* enable normal train */
3282 reg = FDI_TX_CTL(pipe);
3283 temp = I915_READ(reg);
61e499bf 3284 if (IS_IVYBRIDGE(dev)) {
357555c0
JB
3285 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3286 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
61e499bf
KP
3287 } else {
3288 temp &= ~FDI_LINK_TRAIN_NONE;
3289 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
357555c0 3290 }
5e84e1a4
ZW
3291 I915_WRITE(reg, temp);
3292
3293 reg = FDI_RX_CTL(pipe);
3294 temp = I915_READ(reg);
3295 if (HAS_PCH_CPT(dev)) {
3296 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3297 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3298 } else {
3299 temp &= ~FDI_LINK_TRAIN_NONE;
3300 temp |= FDI_LINK_TRAIN_NONE;
3301 }
3302 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3303
3304 /* wait one idle pattern time */
3305 POSTING_READ(reg);
3306 udelay(1000);
357555c0
JB
3307
3308 /* IVB wants error correction enabled */
3309 if (IS_IVYBRIDGE(dev))
3310 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3311 FDI_FE_ERRC_ENABLE);
5e84e1a4
ZW
3312}
3313
8db9d77b
ZW
3314/* The FDI link training functions for ILK/Ibexpeak. */
3315static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3316{
3317 struct drm_device *dev = crtc->dev;
3318 struct drm_i915_private *dev_priv = dev->dev_private;
3319 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3320 int pipe = intel_crtc->pipe;
f0f59a00
VS
3321 i915_reg_t reg;
3322 u32 temp, tries;
8db9d77b 3323
1c8562f6 3324 /* FDI needs bits from pipe first */
0fc932b8 3325 assert_pipe_enabled(dev_priv, pipe);
0fc932b8 3326
e1a44743
AJ
3327 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3328 for train result */
5eddb70b
CW
3329 reg = FDI_RX_IMR(pipe);
3330 temp = I915_READ(reg);
e1a44743
AJ
3331 temp &= ~FDI_RX_SYMBOL_LOCK;
3332 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3333 I915_WRITE(reg, temp);
3334 I915_READ(reg);
e1a44743
AJ
3335 udelay(150);
3336
8db9d77b 3337 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3338 reg = FDI_TX_CTL(pipe);
3339 temp = I915_READ(reg);
627eb5a3 3340 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3341 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3342 temp &= ~FDI_LINK_TRAIN_NONE;
3343 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 3344 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3345
5eddb70b
CW
3346 reg = FDI_RX_CTL(pipe);
3347 temp = I915_READ(reg);
8db9d77b
ZW
3348 temp &= ~FDI_LINK_TRAIN_NONE;
3349 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b
CW
3350 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3351
3352 POSTING_READ(reg);
8db9d77b
ZW
3353 udelay(150);
3354
5b2adf89 3355 /* Ironlake workaround, enable clock pointer after FDI enable*/
8f5718a6
DV
3356 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3357 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3358 FDI_RX_PHASE_SYNC_POINTER_EN);
5b2adf89 3359
5eddb70b 3360 reg = FDI_RX_IIR(pipe);
e1a44743 3361 for (tries = 0; tries < 5; tries++) {
5eddb70b 3362 temp = I915_READ(reg);
8db9d77b
ZW
3363 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3364
3365 if ((temp & FDI_RX_BIT_LOCK)) {
3366 DRM_DEBUG_KMS("FDI train 1 done.\n");
5eddb70b 3367 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
3368 break;
3369 }
8db9d77b 3370 }
e1a44743 3371 if (tries == 5)
5eddb70b 3372 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3373
3374 /* Train 2 */
5eddb70b
CW
3375 reg = FDI_TX_CTL(pipe);
3376 temp = I915_READ(reg);
8db9d77b
ZW
3377 temp &= ~FDI_LINK_TRAIN_NONE;
3378 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3379 I915_WRITE(reg, temp);
8db9d77b 3380
5eddb70b
CW
3381 reg = FDI_RX_CTL(pipe);
3382 temp = I915_READ(reg);
8db9d77b
ZW
3383 temp &= ~FDI_LINK_TRAIN_NONE;
3384 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3385 I915_WRITE(reg, temp);
8db9d77b 3386
5eddb70b
CW
3387 POSTING_READ(reg);
3388 udelay(150);
8db9d77b 3389
5eddb70b 3390 reg = FDI_RX_IIR(pipe);
e1a44743 3391 for (tries = 0; tries < 5; tries++) {
5eddb70b 3392 temp = I915_READ(reg);
8db9d77b
ZW
3393 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3394
3395 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 3396 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
3397 DRM_DEBUG_KMS("FDI train 2 done.\n");
3398 break;
3399 }
8db9d77b 3400 }
e1a44743 3401 if (tries == 5)
5eddb70b 3402 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3403
3404 DRM_DEBUG_KMS("FDI train done\n");
5c5313c8 3405
8db9d77b
ZW
3406}
3407
0206e353 3408static const int snb_b_fdi_train_param[] = {
8db9d77b
ZW
3409 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3410 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3411 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3412 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3413};
3414
3415/* The FDI link training functions for SNB/Cougarpoint. */
3416static void gen6_fdi_link_train(struct drm_crtc *crtc)
3417{
3418 struct drm_device *dev = crtc->dev;
3419 struct drm_i915_private *dev_priv = dev->dev_private;
3420 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3421 int pipe = intel_crtc->pipe;
f0f59a00
VS
3422 i915_reg_t reg;
3423 u32 temp, i, retry;
8db9d77b 3424
e1a44743
AJ
3425 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3426 for train result */
5eddb70b
CW
3427 reg = FDI_RX_IMR(pipe);
3428 temp = I915_READ(reg);
e1a44743
AJ
3429 temp &= ~FDI_RX_SYMBOL_LOCK;
3430 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3431 I915_WRITE(reg, temp);
3432
3433 POSTING_READ(reg);
e1a44743
AJ
3434 udelay(150);
3435
8db9d77b 3436 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3437 reg = FDI_TX_CTL(pipe);
3438 temp = I915_READ(reg);
627eb5a3 3439 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3440 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3441 temp &= ~FDI_LINK_TRAIN_NONE;
3442 temp |= FDI_LINK_TRAIN_PATTERN_1;
3443 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3444 /* SNB-B */
3445 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
5eddb70b 3446 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3447
d74cf324
DV
3448 I915_WRITE(FDI_RX_MISC(pipe),
3449 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3450
5eddb70b
CW
3451 reg = FDI_RX_CTL(pipe);
3452 temp = I915_READ(reg);
8db9d77b
ZW
3453 if (HAS_PCH_CPT(dev)) {
3454 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3455 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3456 } else {
3457 temp &= ~FDI_LINK_TRAIN_NONE;
3458 temp |= FDI_LINK_TRAIN_PATTERN_1;
3459 }
5eddb70b
CW
3460 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3461
3462 POSTING_READ(reg);
8db9d77b
ZW
3463 udelay(150);
3464
0206e353 3465 for (i = 0; i < 4; i++) {
5eddb70b
CW
3466 reg = FDI_TX_CTL(pipe);
3467 temp = I915_READ(reg);
8db9d77b
ZW
3468 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3469 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3470 I915_WRITE(reg, temp);
3471
3472 POSTING_READ(reg);
8db9d77b
ZW
3473 udelay(500);
3474
fa37d39e
SP
3475 for (retry = 0; retry < 5; retry++) {
3476 reg = FDI_RX_IIR(pipe);
3477 temp = I915_READ(reg);
3478 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3479 if (temp & FDI_RX_BIT_LOCK) {
3480 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3481 DRM_DEBUG_KMS("FDI train 1 done.\n");
3482 break;
3483 }
3484 udelay(50);
8db9d77b 3485 }
fa37d39e
SP
3486 if (retry < 5)
3487 break;
8db9d77b
ZW
3488 }
3489 if (i == 4)
5eddb70b 3490 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3491
3492 /* Train 2 */
5eddb70b
CW
3493 reg = FDI_TX_CTL(pipe);
3494 temp = I915_READ(reg);
8db9d77b
ZW
3495 temp &= ~FDI_LINK_TRAIN_NONE;
3496 temp |= FDI_LINK_TRAIN_PATTERN_2;
3497 if (IS_GEN6(dev)) {
3498 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3499 /* SNB-B */
3500 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3501 }
5eddb70b 3502 I915_WRITE(reg, temp);
8db9d77b 3503
5eddb70b
CW
3504 reg = FDI_RX_CTL(pipe);
3505 temp = I915_READ(reg);
8db9d77b
ZW
3506 if (HAS_PCH_CPT(dev)) {
3507 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3508 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3509 } else {
3510 temp &= ~FDI_LINK_TRAIN_NONE;
3511 temp |= FDI_LINK_TRAIN_PATTERN_2;
3512 }
5eddb70b
CW
3513 I915_WRITE(reg, temp);
3514
3515 POSTING_READ(reg);
8db9d77b
ZW
3516 udelay(150);
3517
0206e353 3518 for (i = 0; i < 4; i++) {
5eddb70b
CW
3519 reg = FDI_TX_CTL(pipe);
3520 temp = I915_READ(reg);
8db9d77b
ZW
3521 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3522 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3523 I915_WRITE(reg, temp);
3524
3525 POSTING_READ(reg);
8db9d77b
ZW
3526 udelay(500);
3527
fa37d39e
SP
3528 for (retry = 0; retry < 5; retry++) {
3529 reg = FDI_RX_IIR(pipe);
3530 temp = I915_READ(reg);
3531 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3532 if (temp & FDI_RX_SYMBOL_LOCK) {
3533 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3534 DRM_DEBUG_KMS("FDI train 2 done.\n");
3535 break;
3536 }
3537 udelay(50);
8db9d77b 3538 }
fa37d39e
SP
3539 if (retry < 5)
3540 break;
8db9d77b
ZW
3541 }
3542 if (i == 4)
5eddb70b 3543 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3544
3545 DRM_DEBUG_KMS("FDI train done.\n");
3546}
3547
357555c0
JB
3548/* Manual link training for Ivy Bridge A0 parts */
3549static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3550{
3551 struct drm_device *dev = crtc->dev;
3552 struct drm_i915_private *dev_priv = dev->dev_private;
3553 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3554 int pipe = intel_crtc->pipe;
f0f59a00
VS
3555 i915_reg_t reg;
3556 u32 temp, i, j;
357555c0
JB
3557
3558 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3559 for train result */
3560 reg = FDI_RX_IMR(pipe);
3561 temp = I915_READ(reg);
3562 temp &= ~FDI_RX_SYMBOL_LOCK;
3563 temp &= ~FDI_RX_BIT_LOCK;
3564 I915_WRITE(reg, temp);
3565
3566 POSTING_READ(reg);
3567 udelay(150);
3568
01a415fd
DV
3569 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3570 I915_READ(FDI_RX_IIR(pipe)));
3571
139ccd3f
JB
3572 /* Try each vswing and preemphasis setting twice before moving on */
3573 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3574 /* disable first in case we need to retry */
3575 reg = FDI_TX_CTL(pipe);
3576 temp = I915_READ(reg);
3577 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3578 temp &= ~FDI_TX_ENABLE;
3579 I915_WRITE(reg, temp);
357555c0 3580
139ccd3f
JB
3581 reg = FDI_RX_CTL(pipe);
3582 temp = I915_READ(reg);
3583 temp &= ~FDI_LINK_TRAIN_AUTO;
3584 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3585 temp &= ~FDI_RX_ENABLE;
3586 I915_WRITE(reg, temp);
357555c0 3587
139ccd3f 3588 /* enable CPU FDI TX and PCH FDI RX */
357555c0
JB
3589 reg = FDI_TX_CTL(pipe);
3590 temp = I915_READ(reg);
139ccd3f 3591 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3592 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
139ccd3f 3593 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
357555c0 3594 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
139ccd3f
JB
3595 temp |= snb_b_fdi_train_param[j/2];
3596 temp |= FDI_COMPOSITE_SYNC;
3597 I915_WRITE(reg, temp | FDI_TX_ENABLE);
357555c0 3598
139ccd3f
JB
3599 I915_WRITE(FDI_RX_MISC(pipe),
3600 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
357555c0 3601
139ccd3f 3602 reg = FDI_RX_CTL(pipe);
357555c0 3603 temp = I915_READ(reg);
139ccd3f
JB
3604 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3605 temp |= FDI_COMPOSITE_SYNC;
3606 I915_WRITE(reg, temp | FDI_RX_ENABLE);
357555c0 3607
139ccd3f
JB
3608 POSTING_READ(reg);
3609 udelay(1); /* should be 0.5us */
357555c0 3610
139ccd3f
JB
3611 for (i = 0; i < 4; i++) {
3612 reg = FDI_RX_IIR(pipe);
3613 temp = I915_READ(reg);
3614 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3615
139ccd3f
JB
3616 if (temp & FDI_RX_BIT_LOCK ||
3617 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3618 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3619 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3620 i);
3621 break;
3622 }
3623 udelay(1); /* should be 0.5us */
3624 }
3625 if (i == 4) {
3626 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3627 continue;
3628 }
357555c0 3629
139ccd3f 3630 /* Train 2 */
357555c0
JB
3631 reg = FDI_TX_CTL(pipe);
3632 temp = I915_READ(reg);
139ccd3f
JB
3633 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3634 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3635 I915_WRITE(reg, temp);
3636
3637 reg = FDI_RX_CTL(pipe);
3638 temp = I915_READ(reg);
3639 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3640 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
357555c0
JB
3641 I915_WRITE(reg, temp);
3642
3643 POSTING_READ(reg);
139ccd3f 3644 udelay(2); /* should be 1.5us */
357555c0 3645
139ccd3f
JB
3646 for (i = 0; i < 4; i++) {
3647 reg = FDI_RX_IIR(pipe);
3648 temp = I915_READ(reg);
3649 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3650
139ccd3f
JB
3651 if (temp & FDI_RX_SYMBOL_LOCK ||
3652 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3653 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3654 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3655 i);
3656 goto train_done;
3657 }
3658 udelay(2); /* should be 1.5us */
357555c0 3659 }
139ccd3f
JB
3660 if (i == 4)
3661 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
357555c0 3662 }
357555c0 3663
139ccd3f 3664train_done:
357555c0
JB
3665 DRM_DEBUG_KMS("FDI train done.\n");
3666}
3667
88cefb6c 3668static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
2c07245f 3669{
88cefb6c 3670 struct drm_device *dev = intel_crtc->base.dev;
2c07245f 3671 struct drm_i915_private *dev_priv = dev->dev_private;
2c07245f 3672 int pipe = intel_crtc->pipe;
f0f59a00
VS
3673 i915_reg_t reg;
3674 u32 temp;
c64e311e 3675
c98e9dcf 3676 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
5eddb70b
CW
3677 reg = FDI_RX_CTL(pipe);
3678 temp = I915_READ(reg);
627eb5a3 3679 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
6e3c9717 3680 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
dfd07d72 3681 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
5eddb70b
CW
3682 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3683
3684 POSTING_READ(reg);
c98e9dcf
JB
3685 udelay(200);
3686
3687 /* Switch from Rawclk to PCDclk */
5eddb70b
CW
3688 temp = I915_READ(reg);
3689 I915_WRITE(reg, temp | FDI_PCDCLK);
3690
3691 POSTING_READ(reg);
c98e9dcf
JB
3692 udelay(200);
3693
20749730
PZ
3694 /* Enable CPU FDI TX PLL, always on for Ironlake */
3695 reg = FDI_TX_CTL(pipe);
3696 temp = I915_READ(reg);
3697 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3698 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
5eddb70b 3699
20749730
PZ
3700 POSTING_READ(reg);
3701 udelay(100);
6be4a607 3702 }
0e23b99d
JB
3703}
3704
88cefb6c
DV
3705static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3706{
3707 struct drm_device *dev = intel_crtc->base.dev;
3708 struct drm_i915_private *dev_priv = dev->dev_private;
3709 int pipe = intel_crtc->pipe;
f0f59a00
VS
3710 i915_reg_t reg;
3711 u32 temp;
88cefb6c
DV
3712
3713 /* Switch from PCDclk to Rawclk */
3714 reg = FDI_RX_CTL(pipe);
3715 temp = I915_READ(reg);
3716 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3717
3718 /* Disable CPU FDI TX PLL */
3719 reg = FDI_TX_CTL(pipe);
3720 temp = I915_READ(reg);
3721 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3722
3723 POSTING_READ(reg);
3724 udelay(100);
3725
3726 reg = FDI_RX_CTL(pipe);
3727 temp = I915_READ(reg);
3728 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3729
3730 /* Wait for the clocks to turn off. */
3731 POSTING_READ(reg);
3732 udelay(100);
3733}
3734
0fc932b8
JB
3735static void ironlake_fdi_disable(struct drm_crtc *crtc)
3736{
3737 struct drm_device *dev = crtc->dev;
3738 struct drm_i915_private *dev_priv = dev->dev_private;
3739 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3740 int pipe = intel_crtc->pipe;
f0f59a00
VS
3741 i915_reg_t reg;
3742 u32 temp;
0fc932b8
JB
3743
3744 /* disable CPU FDI tx and PCH FDI rx */
3745 reg = FDI_TX_CTL(pipe);
3746 temp = I915_READ(reg);
3747 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3748 POSTING_READ(reg);
3749
3750 reg = FDI_RX_CTL(pipe);
3751 temp = I915_READ(reg);
3752 temp &= ~(0x7 << 16);
dfd07d72 3753 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3754 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3755
3756 POSTING_READ(reg);
3757 udelay(100);
3758
3759 /* Ironlake workaround, disable clock pointer after downing FDI */
eba905b2 3760 if (HAS_PCH_IBX(dev))
6f06ce18 3761 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
0fc932b8
JB
3762
3763 /* still set train pattern 1 */
3764 reg = FDI_TX_CTL(pipe);
3765 temp = I915_READ(reg);
3766 temp &= ~FDI_LINK_TRAIN_NONE;
3767 temp |= FDI_LINK_TRAIN_PATTERN_1;
3768 I915_WRITE(reg, temp);
3769
3770 reg = FDI_RX_CTL(pipe);
3771 temp = I915_READ(reg);
3772 if (HAS_PCH_CPT(dev)) {
3773 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3774 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3775 } else {
3776 temp &= ~FDI_LINK_TRAIN_NONE;
3777 temp |= FDI_LINK_TRAIN_PATTERN_1;
3778 }
3779 /* BPC in FDI rx is consistent with that in PIPECONF */
3780 temp &= ~(0x07 << 16);
dfd07d72 3781 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3782 I915_WRITE(reg, temp);
3783
3784 POSTING_READ(reg);
3785 udelay(100);
3786}
3787
5dce5b93
CW
3788bool intel_has_pending_fb_unpin(struct drm_device *dev)
3789{
3790 struct intel_crtc *crtc;
3791
3792 /* Note that we don't need to be called with mode_config.lock here
3793 * as our list of CRTC objects is static for the lifetime of the
3794 * device and so cannot disappear as we iterate. Similarly, we can
3795 * happily treat the predicates as racy, atomic checks as userspace
3796 * cannot claim and pin a new fb without at least acquring the
3797 * struct_mutex and so serialising with us.
3798 */
d3fcc808 3799 for_each_intel_crtc(dev, crtc) {
5dce5b93
CW
3800 if (atomic_read(&crtc->unpin_work_count) == 0)
3801 continue;
3802
5a21b665 3803 if (crtc->flip_work)
5dce5b93
CW
3804 intel_wait_for_vblank(dev, crtc->pipe);
3805
3806 return true;
3807 }
3808
3809 return false;
3810}
3811
5a21b665 3812static void page_flip_completed(struct intel_crtc *intel_crtc)
d6bbafa1
CW
3813{
3814 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
5a21b665
DV
3815 struct intel_flip_work *work = intel_crtc->flip_work;
3816
3817 intel_crtc->flip_work = NULL;
d6bbafa1
CW
3818
3819 if (work->event)
560ce1dc 3820 drm_crtc_send_vblank_event(&intel_crtc->base, work->event);
d6bbafa1
CW
3821
3822 drm_crtc_vblank_put(&intel_crtc->base);
3823
5a21b665 3824 wake_up_all(&dev_priv->pending_flip_queue);
143f73b3 3825 queue_work(dev_priv->wq, &work->unpin_work);
5a21b665
DV
3826
3827 trace_i915_flip_complete(intel_crtc->plane,
3828 work->pending_flip_obj);
d6bbafa1
CW
3829}
3830
5008e874 3831static int intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
e6c3a2a6 3832{
0f91128d 3833 struct drm_device *dev = crtc->dev;
5bb61643 3834 struct drm_i915_private *dev_priv = dev->dev_private;
5008e874 3835 long ret;
e6c3a2a6 3836
2c10d571 3837 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
5008e874
ML
3838
3839 ret = wait_event_interruptible_timeout(
3840 dev_priv->pending_flip_queue,
3841 !intel_crtc_has_pending_flip(crtc),
3842 60*HZ);
3843
3844 if (ret < 0)
3845 return ret;
3846
5a21b665
DV
3847 if (ret == 0) {
3848 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3849 struct intel_flip_work *work;
3850
3851 spin_lock_irq(&dev->event_lock);
3852 work = intel_crtc->flip_work;
3853 if (work && !is_mmio_work(work)) {
3854 WARN_ONCE(1, "Removing stuck page flip\n");
3855 page_flip_completed(intel_crtc);
3856 }
3857 spin_unlock_irq(&dev->event_lock);
3858 }
5bb61643 3859
5008e874 3860 return 0;
e6c3a2a6
CW
3861}
3862
060f02d8
VS
3863static void lpt_disable_iclkip(struct drm_i915_private *dev_priv)
3864{
3865 u32 temp;
3866
3867 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3868
3869 mutex_lock(&dev_priv->sb_lock);
3870
3871 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
3872 temp |= SBI_SSCCTL_DISABLE;
3873 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
3874
3875 mutex_unlock(&dev_priv->sb_lock);
3876}
3877
e615efe4
ED
3878/* Program iCLKIP clock to the desired frequency */
3879static void lpt_program_iclkip(struct drm_crtc *crtc)
3880{
64b46a06 3881 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
6e3c9717 3882 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
e615efe4
ED
3883 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3884 u32 temp;
3885
060f02d8 3886 lpt_disable_iclkip(dev_priv);
e615efe4 3887
64b46a06
VS
3888 /* The iCLK virtual clock root frequency is in MHz,
3889 * but the adjusted_mode->crtc_clock in in KHz. To get the
3890 * divisors, it is necessary to divide one by another, so we
3891 * convert the virtual clock precision to KHz here for higher
3892 * precision.
3893 */
3894 for (auxdiv = 0; auxdiv < 2; auxdiv++) {
e615efe4
ED
3895 u32 iclk_virtual_root_freq = 172800 * 1000;
3896 u32 iclk_pi_range = 64;
64b46a06 3897 u32 desired_divisor;
e615efe4 3898
64b46a06
VS
3899 desired_divisor = DIV_ROUND_CLOSEST(iclk_virtual_root_freq,
3900 clock << auxdiv);
3901 divsel = (desired_divisor / iclk_pi_range) - 2;
3902 phaseinc = desired_divisor % iclk_pi_range;
e615efe4 3903
64b46a06
VS
3904 /*
3905 * Near 20MHz is a corner case which is
3906 * out of range for the 7-bit divisor
3907 */
3908 if (divsel <= 0x7f)
3909 break;
e615efe4
ED
3910 }
3911
3912 /* This should not happen with any sane values */
3913 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3914 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3915 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3916 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3917
3918 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
12d7ceed 3919 clock,
e615efe4
ED
3920 auxdiv,
3921 divsel,
3922 phasedir,
3923 phaseinc);
3924
060f02d8
VS
3925 mutex_lock(&dev_priv->sb_lock);
3926
e615efe4 3927 /* Program SSCDIVINTPHASE6 */
988d6ee8 3928 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
e615efe4
ED
3929 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3930 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3931 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3932 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3933 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3934 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
988d6ee8 3935 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
e615efe4
ED
3936
3937 /* Program SSCAUXDIV */
988d6ee8 3938 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
e615efe4
ED
3939 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3940 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
988d6ee8 3941 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
e615efe4
ED
3942
3943 /* Enable modulator and associated divider */
988d6ee8 3944 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
e615efe4 3945 temp &= ~SBI_SSCCTL_DISABLE;
988d6ee8 3946 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
e615efe4 3947
060f02d8
VS
3948 mutex_unlock(&dev_priv->sb_lock);
3949
e615efe4
ED
3950 /* Wait for initialization time */
3951 udelay(24);
3952
3953 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
3954}
3955
8802e5b6
VS
3956int lpt_get_iclkip(struct drm_i915_private *dev_priv)
3957{
3958 u32 divsel, phaseinc, auxdiv;
3959 u32 iclk_virtual_root_freq = 172800 * 1000;
3960 u32 iclk_pi_range = 64;
3961 u32 desired_divisor;
3962 u32 temp;
3963
3964 if ((I915_READ(PIXCLK_GATE) & PIXCLK_GATE_UNGATE) == 0)
3965 return 0;
3966
3967 mutex_lock(&dev_priv->sb_lock);
3968
3969 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
3970 if (temp & SBI_SSCCTL_DISABLE) {
3971 mutex_unlock(&dev_priv->sb_lock);
3972 return 0;
3973 }
3974
3975 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
3976 divsel = (temp & SBI_SSCDIVINTPHASE_DIVSEL_MASK) >>
3977 SBI_SSCDIVINTPHASE_DIVSEL_SHIFT;
3978 phaseinc = (temp & SBI_SSCDIVINTPHASE_INCVAL_MASK) >>
3979 SBI_SSCDIVINTPHASE_INCVAL_SHIFT;
3980
3981 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
3982 auxdiv = (temp & SBI_SSCAUXDIV_FINALDIV2SEL_MASK) >>
3983 SBI_SSCAUXDIV_FINALDIV2SEL_SHIFT;
3984
3985 mutex_unlock(&dev_priv->sb_lock);
3986
3987 desired_divisor = (divsel + 2) * iclk_pi_range + phaseinc;
3988
3989 return DIV_ROUND_CLOSEST(iclk_virtual_root_freq,
3990 desired_divisor << auxdiv);
3991}
3992
275f01b2
DV
3993static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3994 enum pipe pch_transcoder)
3995{
3996 struct drm_device *dev = crtc->base.dev;
3997 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 3998 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
275f01b2
DV
3999
4000 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
4001 I915_READ(HTOTAL(cpu_transcoder)));
4002 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
4003 I915_READ(HBLANK(cpu_transcoder)));
4004 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
4005 I915_READ(HSYNC(cpu_transcoder)));
4006
4007 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
4008 I915_READ(VTOTAL(cpu_transcoder)));
4009 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
4010 I915_READ(VBLANK(cpu_transcoder)));
4011 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
4012 I915_READ(VSYNC(cpu_transcoder)));
4013 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
4014 I915_READ(VSYNCSHIFT(cpu_transcoder)));
4015}
4016
003632d9 4017static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
1fbc0d78
DV
4018{
4019 struct drm_i915_private *dev_priv = dev->dev_private;
4020 uint32_t temp;
4021
4022 temp = I915_READ(SOUTH_CHICKEN1);
003632d9 4023 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
1fbc0d78
DV
4024 return;
4025
4026 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4027 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4028
003632d9
ACO
4029 temp &= ~FDI_BC_BIFURCATION_SELECT;
4030 if (enable)
4031 temp |= FDI_BC_BIFURCATION_SELECT;
4032
4033 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
1fbc0d78
DV
4034 I915_WRITE(SOUTH_CHICKEN1, temp);
4035 POSTING_READ(SOUTH_CHICKEN1);
4036}
4037
4038static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4039{
4040 struct drm_device *dev = intel_crtc->base.dev;
1fbc0d78
DV
4041
4042 switch (intel_crtc->pipe) {
4043 case PIPE_A:
4044 break;
4045 case PIPE_B:
6e3c9717 4046 if (intel_crtc->config->fdi_lanes > 2)
003632d9 4047 cpt_set_fdi_bc_bifurcation(dev, false);
1fbc0d78 4048 else
003632d9 4049 cpt_set_fdi_bc_bifurcation(dev, true);
1fbc0d78
DV
4050
4051 break;
4052 case PIPE_C:
003632d9 4053 cpt_set_fdi_bc_bifurcation(dev, true);
1fbc0d78
DV
4054
4055 break;
4056 default:
4057 BUG();
4058 }
4059}
4060
c48b5305
VS
4061/* Return which DP Port should be selected for Transcoder DP control */
4062static enum port
4063intel_trans_dp_port_sel(struct drm_crtc *crtc)
4064{
4065 struct drm_device *dev = crtc->dev;
4066 struct intel_encoder *encoder;
4067
4068 for_each_encoder_on_crtc(dev, crtc, encoder) {
4069 if (encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
4070 encoder->type == INTEL_OUTPUT_EDP)
4071 return enc_to_dig_port(&encoder->base)->port;
4072 }
4073
4074 return -1;
4075}
4076
f67a559d
JB
4077/*
4078 * Enable PCH resources required for PCH ports:
4079 * - PCH PLLs
4080 * - FDI training & RX/TX
4081 * - update transcoder timings
4082 * - DP transcoding bits
4083 * - transcoder
4084 */
4085static void ironlake_pch_enable(struct drm_crtc *crtc)
0e23b99d
JB
4086{
4087 struct drm_device *dev = crtc->dev;
4088 struct drm_i915_private *dev_priv = dev->dev_private;
4089 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4090 int pipe = intel_crtc->pipe;
f0f59a00 4091 u32 temp;
2c07245f 4092
ab9412ba 4093 assert_pch_transcoder_disabled(dev_priv, pipe);
e7e164db 4094
1fbc0d78
DV
4095 if (IS_IVYBRIDGE(dev))
4096 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4097
cd986abb
DV
4098 /* Write the TU size bits before fdi link training, so that error
4099 * detection works. */
4100 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4101 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4102
c98e9dcf 4103 /* For PCH output, training FDI link */
674cf967 4104 dev_priv->display.fdi_link_train(crtc);
2c07245f 4105
3ad8a208
DV
4106 /* We need to program the right clock selection before writing the pixel
4107 * mutliplier into the DPLL. */
303b81e0 4108 if (HAS_PCH_CPT(dev)) {
ee7b9f93 4109 u32 sel;
4b645f14 4110
c98e9dcf 4111 temp = I915_READ(PCH_DPLL_SEL);
11887397
DV
4112 temp |= TRANS_DPLL_ENABLE(pipe);
4113 sel = TRANS_DPLLB_SEL(pipe);
8106ddbd
ACO
4114 if (intel_crtc->config->shared_dpll ==
4115 intel_get_shared_dpll_by_id(dev_priv, DPLL_ID_PCH_PLL_B))
ee7b9f93
JB
4116 temp |= sel;
4117 else
4118 temp &= ~sel;
c98e9dcf 4119 I915_WRITE(PCH_DPLL_SEL, temp);
c98e9dcf 4120 }
5eddb70b 4121
3ad8a208
DV
4122 /* XXX: pch pll's can be enabled any time before we enable the PCH
4123 * transcoder, and we actually should do this to not upset any PCH
4124 * transcoder that already use the clock when we share it.
4125 *
4126 * Note that enable_shared_dpll tries to do the right thing, but
4127 * get_shared_dpll unconditionally resets the pll - we need that to have
4128 * the right LVDS enable sequence. */
85b3894f 4129 intel_enable_shared_dpll(intel_crtc);
3ad8a208 4130
d9b6cb56
JB
4131 /* set transcoder timing, panel must allow it */
4132 assert_panel_unlocked(dev_priv, pipe);
275f01b2 4133 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
8db9d77b 4134
303b81e0 4135 intel_fdi_normal_train(crtc);
5e84e1a4 4136
c98e9dcf 4137 /* For PCH DP, enable TRANS_DP_CTL */
6e3c9717 4138 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
9c4edaee
VS
4139 const struct drm_display_mode *adjusted_mode =
4140 &intel_crtc->config->base.adjusted_mode;
dfd07d72 4141 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
f0f59a00 4142 i915_reg_t reg = TRANS_DP_CTL(pipe);
5eddb70b
CW
4143 temp = I915_READ(reg);
4144 temp &= ~(TRANS_DP_PORT_SEL_MASK |
220cad3c
EA
4145 TRANS_DP_SYNC_MASK |
4146 TRANS_DP_BPC_MASK);
e3ef4479 4147 temp |= TRANS_DP_OUTPUT_ENABLE;
9325c9f0 4148 temp |= bpc << 9; /* same format but at 11:9 */
c98e9dcf 4149
9c4edaee 4150 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
5eddb70b 4151 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
9c4edaee 4152 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
5eddb70b 4153 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
c98e9dcf
JB
4154
4155 switch (intel_trans_dp_port_sel(crtc)) {
c48b5305 4156 case PORT_B:
5eddb70b 4157 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf 4158 break;
c48b5305 4159 case PORT_C:
5eddb70b 4160 temp |= TRANS_DP_PORT_SEL_C;
c98e9dcf 4161 break;
c48b5305 4162 case PORT_D:
5eddb70b 4163 temp |= TRANS_DP_PORT_SEL_D;
c98e9dcf
JB
4164 break;
4165 default:
e95d41e1 4166 BUG();
32f9d658 4167 }
2c07245f 4168
5eddb70b 4169 I915_WRITE(reg, temp);
6be4a607 4170 }
b52eb4dc 4171
b8a4f404 4172 ironlake_enable_pch_transcoder(dev_priv, pipe);
f67a559d
JB
4173}
4174
1507e5bd
PZ
4175static void lpt_pch_enable(struct drm_crtc *crtc)
4176{
4177 struct drm_device *dev = crtc->dev;
4178 struct drm_i915_private *dev_priv = dev->dev_private;
4179 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 4180 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
1507e5bd 4181
ab9412ba 4182 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
1507e5bd 4183
8c52b5e8 4184 lpt_program_iclkip(crtc);
1507e5bd 4185
0540e488 4186 /* Set transcoder timing. */
275f01b2 4187 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
1507e5bd 4188
937bb610 4189 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
f67a559d
JB
4190}
4191
a1520318 4192static void cpt_verify_modeset(struct drm_device *dev, int pipe)
d4270e57
JB
4193{
4194 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 4195 i915_reg_t dslreg = PIPEDSL(pipe);
d4270e57
JB
4196 u32 temp;
4197
4198 temp = I915_READ(dslreg);
4199 udelay(500);
4200 if (wait_for(I915_READ(dslreg) != temp, 5)) {
d4270e57 4201 if (wait_for(I915_READ(dslreg) != temp, 5))
84f44ce7 4202 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
d4270e57
JB
4203 }
4204}
4205
86adf9d7
ML
4206static int
4207skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
4208 unsigned scaler_user, int *scaler_id, unsigned int rotation,
4209 int src_w, int src_h, int dst_w, int dst_h)
a1b2278e 4210{
86adf9d7
ML
4211 struct intel_crtc_scaler_state *scaler_state =
4212 &crtc_state->scaler_state;
4213 struct intel_crtc *intel_crtc =
4214 to_intel_crtc(crtc_state->base.crtc);
a1b2278e 4215 int need_scaling;
6156a456
CK
4216
4217 need_scaling = intel_rotation_90_or_270(rotation) ?
4218 (src_h != dst_w || src_w != dst_h):
4219 (src_w != dst_w || src_h != dst_h);
a1b2278e
CK
4220
4221 /*
4222 * if plane is being disabled or scaler is no more required or force detach
4223 * - free scaler binded to this plane/crtc
4224 * - in order to do this, update crtc->scaler_usage
4225 *
4226 * Here scaler state in crtc_state is set free so that
4227 * scaler can be assigned to other user. Actual register
4228 * update to free the scaler is done in plane/panel-fit programming.
4229 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4230 */
86adf9d7 4231 if (force_detach || !need_scaling) {
a1b2278e 4232 if (*scaler_id >= 0) {
86adf9d7 4233 scaler_state->scaler_users &= ~(1 << scaler_user);
a1b2278e
CK
4234 scaler_state->scalers[*scaler_id].in_use = 0;
4235
86adf9d7
ML
4236 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4237 "Staged freeing scaler id %d scaler_users = 0x%x\n",
4238 intel_crtc->pipe, scaler_user, *scaler_id,
a1b2278e
CK
4239 scaler_state->scaler_users);
4240 *scaler_id = -1;
4241 }
4242 return 0;
4243 }
4244
4245 /* range checks */
4246 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4247 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4248
4249 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4250 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
86adf9d7 4251 DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u "
a1b2278e 4252 "size is out of scaler range\n",
86adf9d7 4253 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h);
a1b2278e
CK
4254 return -EINVAL;
4255 }
4256
86adf9d7
ML
4257 /* mark this plane as a scaler user in crtc_state */
4258 scaler_state->scaler_users |= (1 << scaler_user);
4259 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4260 "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n",
4261 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h,
4262 scaler_state->scaler_users);
4263
4264 return 0;
4265}
4266
4267/**
4268 * skl_update_scaler_crtc - Stages update to scaler state for a given crtc.
4269 *
4270 * @state: crtc's scaler state
86adf9d7
ML
4271 *
4272 * Return
4273 * 0 - scaler_usage updated successfully
4274 * error - requested scaling cannot be supported or other error condition
4275 */
e435d6e5 4276int skl_update_scaler_crtc(struct intel_crtc_state *state)
86adf9d7
ML
4277{
4278 struct intel_crtc *intel_crtc = to_intel_crtc(state->base.crtc);
7c5f93b0 4279 const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode;
86adf9d7
ML
4280
4281 DRM_DEBUG_KMS("Updating scaler for [CRTC:%i] scaler_user index %u.%u\n",
4282 intel_crtc->base.base.id, intel_crtc->pipe, SKL_CRTC_INDEX);
4283
e435d6e5 4284 return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX,
fa5a7970 4285 &state->scaler_state.scaler_id, BIT(DRM_ROTATE_0),
86adf9d7 4286 state->pipe_src_w, state->pipe_src_h,
aad941d5 4287 adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay);
86adf9d7
ML
4288}
4289
4290/**
4291 * skl_update_scaler_plane - Stages update to scaler state for a given plane.
4292 *
4293 * @state: crtc's scaler state
86adf9d7
ML
4294 * @plane_state: atomic plane state to update
4295 *
4296 * Return
4297 * 0 - scaler_usage updated successfully
4298 * error - requested scaling cannot be supported or other error condition
4299 */
da20eabd
ML
4300static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
4301 struct intel_plane_state *plane_state)
86adf9d7
ML
4302{
4303
4304 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
da20eabd
ML
4305 struct intel_plane *intel_plane =
4306 to_intel_plane(plane_state->base.plane);
86adf9d7
ML
4307 struct drm_framebuffer *fb = plane_state->base.fb;
4308 int ret;
4309
4310 bool force_detach = !fb || !plane_state->visible;
4311
4312 DRM_DEBUG_KMS("Updating scaler for [PLANE:%d] scaler_user index %u.%u\n",
4313 intel_plane->base.base.id, intel_crtc->pipe,
4314 drm_plane_index(&intel_plane->base));
4315
4316 ret = skl_update_scaler(crtc_state, force_detach,
4317 drm_plane_index(&intel_plane->base),
4318 &plane_state->scaler_id,
4319 plane_state->base.rotation,
4320 drm_rect_width(&plane_state->src) >> 16,
4321 drm_rect_height(&plane_state->src) >> 16,
4322 drm_rect_width(&plane_state->dst),
4323 drm_rect_height(&plane_state->dst));
4324
4325 if (ret || plane_state->scaler_id < 0)
4326 return ret;
4327
a1b2278e 4328 /* check colorkey */
818ed961 4329 if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) {
86adf9d7 4330 DRM_DEBUG_KMS("[PLANE:%d] scaling with color key not allowed",
818ed961 4331 intel_plane->base.base.id);
a1b2278e
CK
4332 return -EINVAL;
4333 }
4334
4335 /* Check src format */
86adf9d7
ML
4336 switch (fb->pixel_format) {
4337 case DRM_FORMAT_RGB565:
4338 case DRM_FORMAT_XBGR8888:
4339 case DRM_FORMAT_XRGB8888:
4340 case DRM_FORMAT_ABGR8888:
4341 case DRM_FORMAT_ARGB8888:
4342 case DRM_FORMAT_XRGB2101010:
4343 case DRM_FORMAT_XBGR2101010:
4344 case DRM_FORMAT_YUYV:
4345 case DRM_FORMAT_YVYU:
4346 case DRM_FORMAT_UYVY:
4347 case DRM_FORMAT_VYUY:
4348 break;
4349 default:
4350 DRM_DEBUG_KMS("[PLANE:%d] FB:%d unsupported scaling format 0x%x\n",
4351 intel_plane->base.base.id, fb->base.id, fb->pixel_format);
4352 return -EINVAL;
a1b2278e
CK
4353 }
4354
a1b2278e
CK
4355 return 0;
4356}
4357
e435d6e5
ML
4358static void skylake_scaler_disable(struct intel_crtc *crtc)
4359{
4360 int i;
4361
4362 for (i = 0; i < crtc->num_scalers; i++)
4363 skl_detach_scaler(crtc, i);
4364}
4365
4366static void skylake_pfit_enable(struct intel_crtc *crtc)
bd2e244f
JB
4367{
4368 struct drm_device *dev = crtc->base.dev;
4369 struct drm_i915_private *dev_priv = dev->dev_private;
4370 int pipe = crtc->pipe;
a1b2278e
CK
4371 struct intel_crtc_scaler_state *scaler_state =
4372 &crtc->config->scaler_state;
4373
4374 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4375
6e3c9717 4376 if (crtc->config->pch_pfit.enabled) {
a1b2278e
CK
4377 int id;
4378
4379 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4380 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4381 return;
4382 }
4383
4384 id = scaler_state->scaler_id;
4385 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4386 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4387 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4388 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4389
4390 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
bd2e244f
JB
4391 }
4392}
4393
b074cec8
JB
4394static void ironlake_pfit_enable(struct intel_crtc *crtc)
4395{
4396 struct drm_device *dev = crtc->base.dev;
4397 struct drm_i915_private *dev_priv = dev->dev_private;
4398 int pipe = crtc->pipe;
4399
6e3c9717 4400 if (crtc->config->pch_pfit.enabled) {
b074cec8
JB
4401 /* Force use of hard-coded filter coefficients
4402 * as some pre-programmed values are broken,
4403 * e.g. x201.
4404 */
4405 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4406 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4407 PF_PIPE_SEL_IVB(pipe));
4408 else
4409 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
6e3c9717
ACO
4410 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4411 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
d4270e57
JB
4412 }
4413}
4414
20bc8673 4415void hsw_enable_ips(struct intel_crtc *crtc)
d77e4531 4416{
cea165c3
VS
4417 struct drm_device *dev = crtc->base.dev;
4418 struct drm_i915_private *dev_priv = dev->dev_private;
d77e4531 4419
6e3c9717 4420 if (!crtc->config->ips_enabled)
d77e4531
PZ
4421 return;
4422
307e4498
ML
4423 /*
4424 * We can only enable IPS after we enable a plane and wait for a vblank
4425 * This function is called from post_plane_update, which is run after
4426 * a vblank wait.
4427 */
cea165c3 4428
d77e4531 4429 assert_plane_enabled(dev_priv, crtc->plane);
cea165c3 4430 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4431 mutex_lock(&dev_priv->rps.hw_lock);
4432 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4433 mutex_unlock(&dev_priv->rps.hw_lock);
4434 /* Quoting Art Runyan: "its not safe to expect any particular
4435 * value in IPS_CTL bit 31 after enabling IPS through the
e59150dc
JB
4436 * mailbox." Moreover, the mailbox may return a bogus state,
4437 * so we need to just enable it and continue on.
2a114cc1
BW
4438 */
4439 } else {
4440 I915_WRITE(IPS_CTL, IPS_ENABLE);
4441 /* The bit only becomes 1 in the next vblank, so this wait here
4442 * is essentially intel_wait_for_vblank. If we don't have this
4443 * and don't wait for vblanks until the end of crtc_enable, then
4444 * the HW state readout code will complain that the expected
4445 * IPS_CTL value is not the one we read. */
4446 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4447 DRM_ERROR("Timed out waiting for IPS enable\n");
4448 }
d77e4531
PZ
4449}
4450
20bc8673 4451void hsw_disable_ips(struct intel_crtc *crtc)
d77e4531
PZ
4452{
4453 struct drm_device *dev = crtc->base.dev;
4454 struct drm_i915_private *dev_priv = dev->dev_private;
4455
6e3c9717 4456 if (!crtc->config->ips_enabled)
d77e4531
PZ
4457 return;
4458
4459 assert_plane_enabled(dev_priv, crtc->plane);
23d0b130 4460 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4461 mutex_lock(&dev_priv->rps.hw_lock);
4462 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4463 mutex_unlock(&dev_priv->rps.hw_lock);
23d0b130
BW
4464 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4465 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4466 DRM_ERROR("Timed out waiting for IPS disable\n");
e59150dc 4467 } else {
2a114cc1 4468 I915_WRITE(IPS_CTL, 0);
e59150dc
JB
4469 POSTING_READ(IPS_CTL);
4470 }
d77e4531
PZ
4471
4472 /* We need to wait for a vblank before we can disable the plane. */
4473 intel_wait_for_vblank(dev, crtc->pipe);
4474}
4475
7cac945f 4476static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
d3eedb1a 4477{
7cac945f 4478 if (intel_crtc->overlay) {
d3eedb1a
VS
4479 struct drm_device *dev = intel_crtc->base.dev;
4480 struct drm_i915_private *dev_priv = dev->dev_private;
4481
4482 mutex_lock(&dev->struct_mutex);
4483 dev_priv->mm.interruptible = false;
4484 (void) intel_overlay_switch_off(intel_crtc->overlay);
4485 dev_priv->mm.interruptible = true;
4486 mutex_unlock(&dev->struct_mutex);
4487 }
4488
4489 /* Let userspace switch the overlay on again. In most cases userspace
4490 * has to recompute where to put it anyway.
4491 */
4492}
4493
87d4300a
ML
4494/**
4495 * intel_post_enable_primary - Perform operations after enabling primary plane
4496 * @crtc: the CRTC whose primary plane was just enabled
4497 *
4498 * Performs potentially sleeping operations that must be done after the primary
4499 * plane is enabled, such as updating FBC and IPS. Note that this may be
4500 * called due to an explicit primary plane update, or due to an implicit
4501 * re-enable that is caused when a sprite plane is updated to no longer
4502 * completely hide the primary plane.
4503 */
4504static void
4505intel_post_enable_primary(struct drm_crtc *crtc)
a5c4d7bc
VS
4506{
4507 struct drm_device *dev = crtc->dev;
87d4300a 4508 struct drm_i915_private *dev_priv = dev->dev_private;
a5c4d7bc
VS
4509 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4510 int pipe = intel_crtc->pipe;
a5c4d7bc 4511
87d4300a
ML
4512 /*
4513 * FIXME IPS should be fine as long as one plane is
4514 * enabled, but in practice it seems to have problems
4515 * when going from primary only to sprite only and vice
4516 * versa.
4517 */
a5c4d7bc
VS
4518 hsw_enable_ips(intel_crtc);
4519
f99d7069 4520 /*
87d4300a
ML
4521 * Gen2 reports pipe underruns whenever all planes are disabled.
4522 * So don't enable underrun reporting before at least some planes
4523 * are enabled.
4524 * FIXME: Need to fix the logic to work when we turn off all planes
4525 * but leave the pipe running.
f99d7069 4526 */
87d4300a
ML
4527 if (IS_GEN2(dev))
4528 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4529
aca7b684
VS
4530 /* Underruns don't always raise interrupts, so check manually. */
4531 intel_check_cpu_fifo_underruns(dev_priv);
4532 intel_check_pch_fifo_underruns(dev_priv);
a5c4d7bc
VS
4533}
4534
2622a081 4535/* FIXME move all this to pre_plane_update() with proper state tracking */
87d4300a
ML
4536static void
4537intel_pre_disable_primary(struct drm_crtc *crtc)
a5c4d7bc
VS
4538{
4539 struct drm_device *dev = crtc->dev;
4540 struct drm_i915_private *dev_priv = dev->dev_private;
4541 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4542 int pipe = intel_crtc->pipe;
a5c4d7bc 4543
87d4300a
ML
4544 /*
4545 * Gen2 reports pipe underruns whenever all planes are disabled.
4546 * So diasble underrun reporting before all the planes get disabled.
4547 * FIXME: Need to fix the logic to work when we turn off all planes
4548 * but leave the pipe running.
4549 */
4550 if (IS_GEN2(dev))
4551 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
a5c4d7bc 4552
2622a081
VS
4553 /*
4554 * FIXME IPS should be fine as long as one plane is
4555 * enabled, but in practice it seems to have problems
4556 * when going from primary only to sprite only and vice
4557 * versa.
4558 */
4559 hsw_disable_ips(intel_crtc);
4560}
4561
4562/* FIXME get rid of this and use pre_plane_update */
4563static void
4564intel_pre_disable_primary_noatomic(struct drm_crtc *crtc)
4565{
4566 struct drm_device *dev = crtc->dev;
4567 struct drm_i915_private *dev_priv = dev->dev_private;
4568 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4569 int pipe = intel_crtc->pipe;
4570
4571 intel_pre_disable_primary(crtc);
4572
87d4300a
ML
4573 /*
4574 * Vblank time updates from the shadow to live plane control register
4575 * are blocked if the memory self-refresh mode is active at that
4576 * moment. So to make sure the plane gets truly disabled, disable
4577 * first the self-refresh mode. The self-refresh enable bit in turn
4578 * will be checked/applied by the HW only at the next frame start
4579 * event which is after the vblank start event, so we need to have a
4580 * wait-for-vblank between disabling the plane and the pipe.
4581 */
262cd2e1 4582 if (HAS_GMCH_DISPLAY(dev)) {
87d4300a 4583 intel_set_memory_cxsr(dev_priv, false);
262cd2e1
VS
4584 dev_priv->wm.vlv.cxsr = false;
4585 intel_wait_for_vblank(dev, pipe);
4586 }
87d4300a
ML
4587}
4588
5a21b665
DV
4589static void intel_post_plane_update(struct intel_crtc_state *old_crtc_state)
4590{
4591 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
4592 struct drm_atomic_state *old_state = old_crtc_state->base.state;
4593 struct intel_crtc_state *pipe_config =
4594 to_intel_crtc_state(crtc->base.state);
4595 struct drm_device *dev = crtc->base.dev;
4596 struct drm_plane *primary = crtc->base.primary;
4597 struct drm_plane_state *old_pri_state =
4598 drm_atomic_get_existing_plane_state(old_state, primary);
4599
4600 intel_frontbuffer_flip(dev, pipe_config->fb_bits);
4601
4602 crtc->wm.cxsr_allowed = true;
4603
4604 if (pipe_config->update_wm_post && pipe_config->base.active)
4605 intel_update_watermarks(&crtc->base);
4606
4607 if (old_pri_state) {
4608 struct intel_plane_state *primary_state =
4609 to_intel_plane_state(primary->state);
4610 struct intel_plane_state *old_primary_state =
4611 to_intel_plane_state(old_pri_state);
4612
4613 intel_fbc_post_update(crtc);
4614
4615 if (primary_state->visible &&
4616 (needs_modeset(&pipe_config->base) ||
4617 !old_primary_state->visible))
4618 intel_post_enable_primary(&crtc->base);
4619 }
4620}
4621
5c74cd73 4622static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state)
ac21b225 4623{
5c74cd73 4624 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
ac21b225 4625 struct drm_device *dev = crtc->base.dev;
eddfcbcd 4626 struct drm_i915_private *dev_priv = dev->dev_private;
ab1d3a0e
ML
4627 struct intel_crtc_state *pipe_config =
4628 to_intel_crtc_state(crtc->base.state);
5c74cd73
ML
4629 struct drm_atomic_state *old_state = old_crtc_state->base.state;
4630 struct drm_plane *primary = crtc->base.primary;
4631 struct drm_plane_state *old_pri_state =
4632 drm_atomic_get_existing_plane_state(old_state, primary);
4633 bool modeset = needs_modeset(&pipe_config->base);
ac21b225 4634
5c74cd73
ML
4635 if (old_pri_state) {
4636 struct intel_plane_state *primary_state =
4637 to_intel_plane_state(primary->state);
4638 struct intel_plane_state *old_primary_state =
4639 to_intel_plane_state(old_pri_state);
4640
5a21b665 4641 intel_fbc_pre_update(crtc);
31ae71fc 4642
5c74cd73
ML
4643 if (old_primary_state->visible &&
4644 (modeset || !primary_state->visible))
4645 intel_pre_disable_primary(&crtc->base);
4646 }
852eb00d 4647
ab1d3a0e 4648 if (pipe_config->disable_cxsr) {
852eb00d 4649 crtc->wm.cxsr_allowed = false;
2dfd178d 4650
2622a081
VS
4651 /*
4652 * Vblank time updates from the shadow to live plane control register
4653 * are blocked if the memory self-refresh mode is active at that
4654 * moment. So to make sure the plane gets truly disabled, disable
4655 * first the self-refresh mode. The self-refresh enable bit in turn
4656 * will be checked/applied by the HW only at the next frame start
4657 * event which is after the vblank start event, so we need to have a
4658 * wait-for-vblank between disabling the plane and the pipe.
4659 */
4660 if (old_crtc_state->base.active) {
2dfd178d 4661 intel_set_memory_cxsr(dev_priv, false);
2622a081
VS
4662 dev_priv->wm.vlv.cxsr = false;
4663 intel_wait_for_vblank(dev, crtc->pipe);
4664 }
852eb00d 4665 }
92826fcd 4666
ed4a6a7c
MR
4667 /*
4668 * IVB workaround: must disable low power watermarks for at least
4669 * one frame before enabling scaling. LP watermarks can be re-enabled
4670 * when scaling is disabled.
4671 *
4672 * WaCxSRDisabledForSpriteScaling:ivb
4673 */
4674 if (pipe_config->disable_lp_wm) {
4675 ilk_disable_lp_wm(dev);
4676 intel_wait_for_vblank(dev, crtc->pipe);
4677 }
4678
4679 /*
4680 * If we're doing a modeset, we're done. No need to do any pre-vblank
4681 * watermark programming here.
4682 */
4683 if (needs_modeset(&pipe_config->base))
4684 return;
4685
4686 /*
4687 * For platforms that support atomic watermarks, program the
4688 * 'intermediate' watermarks immediately. On pre-gen9 platforms, these
4689 * will be the intermediate values that are safe for both pre- and
4690 * post- vblank; when vblank happens, the 'active' values will be set
4691 * to the final 'target' values and we'll do this again to get the
4692 * optimal watermarks. For gen9+ platforms, the values we program here
4693 * will be the final target values which will get automatically latched
4694 * at vblank time; no further programming will be necessary.
4695 *
4696 * If a platform hasn't been transitioned to atomic watermarks yet,
4697 * we'll continue to update watermarks the old way, if flags tell
4698 * us to.
4699 */
4700 if (dev_priv->display.initial_watermarks != NULL)
4701 dev_priv->display.initial_watermarks(pipe_config);
caed361d 4702 else if (pipe_config->update_wm_pre)
92826fcd 4703 intel_update_watermarks(&crtc->base);
ac21b225
ML
4704}
4705
d032ffa0 4706static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask)
87d4300a
ML
4707{
4708 struct drm_device *dev = crtc->dev;
4709 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
d032ffa0 4710 struct drm_plane *p;
87d4300a
ML
4711 int pipe = intel_crtc->pipe;
4712
7cac945f 4713 intel_crtc_dpms_overlay_disable(intel_crtc);
27321ae8 4714
d032ffa0
ML
4715 drm_for_each_plane_mask(p, dev, plane_mask)
4716 to_intel_plane(p)->disable_plane(p, crtc);
f98551ae 4717
f99d7069
DV
4718 /*
4719 * FIXME: Once we grow proper nuclear flip support out of this we need
4720 * to compute the mask of flip planes precisely. For the time being
4721 * consider this a flip to a NULL plane.
4722 */
4723 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
a5c4d7bc
VS
4724}
4725
f67a559d
JB
4726static void ironlake_crtc_enable(struct drm_crtc *crtc)
4727{
4728 struct drm_device *dev = crtc->dev;
4729 struct drm_i915_private *dev_priv = dev->dev_private;
4730 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4731 struct intel_encoder *encoder;
f67a559d 4732 int pipe = intel_crtc->pipe;
b95c5321
ML
4733 struct intel_crtc_state *pipe_config =
4734 to_intel_crtc_state(crtc->state);
f67a559d 4735
53d9f4e9 4736 if (WARN_ON(intel_crtc->active))
f67a559d
JB
4737 return;
4738
b2c0593a
VS
4739 /*
4740 * Sometimes spurious CPU pipe underruns happen during FDI
4741 * training, at least with VGA+HDMI cloning. Suppress them.
4742 *
4743 * On ILK we get an occasional spurious CPU pipe underruns
4744 * between eDP port A enable and vdd enable. Also PCH port
4745 * enable seems to result in the occasional CPU pipe underrun.
4746 *
4747 * Spurious PCH underruns also occur during PCH enabling.
4748 */
4749 if (intel_crtc->config->has_pch_encoder || IS_GEN5(dev_priv))
4750 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
81b088ca
VS
4751 if (intel_crtc->config->has_pch_encoder)
4752 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
4753
6e3c9717 4754 if (intel_crtc->config->has_pch_encoder)
b14b1055
DV
4755 intel_prepare_shared_dpll(intel_crtc);
4756
6e3c9717 4757 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 4758 intel_dp_set_m_n(intel_crtc, M1_N1);
29407aab
DV
4759
4760 intel_set_pipe_timings(intel_crtc);
bc58be60 4761 intel_set_pipe_src_size(intel_crtc);
29407aab 4762
6e3c9717 4763 if (intel_crtc->config->has_pch_encoder) {
29407aab 4764 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 4765 &intel_crtc->config->fdi_m_n, NULL);
29407aab
DV
4766 }
4767
4768 ironlake_set_pipeconf(crtc);
4769
f67a559d 4770 intel_crtc->active = true;
8664281b 4771
f6736a1a 4772 for_each_encoder_on_crtc(dev, crtc, encoder)
952735ee
DV
4773 if (encoder->pre_enable)
4774 encoder->pre_enable(encoder);
f67a559d 4775
6e3c9717 4776 if (intel_crtc->config->has_pch_encoder) {
fff367c7
DV
4777 /* Note: FDI PLL enabling _must_ be done before we enable the
4778 * cpu pipes, hence this is separate from all the other fdi/pch
4779 * enabling. */
88cefb6c 4780 ironlake_fdi_pll_enable(intel_crtc);
46b6f814
DV
4781 } else {
4782 assert_fdi_tx_disabled(dev_priv, pipe);
4783 assert_fdi_rx_disabled(dev_priv, pipe);
4784 }
f67a559d 4785
b074cec8 4786 ironlake_pfit_enable(intel_crtc);
f67a559d 4787
9c54c0dd
JB
4788 /*
4789 * On ILK+ LUT must be loaded before the pipe is running but with
4790 * clocks enabled
4791 */
b95c5321 4792 intel_color_load_luts(&pipe_config->base);
9c54c0dd 4793
1d5bf5d9
ID
4794 if (dev_priv->display.initial_watermarks != NULL)
4795 dev_priv->display.initial_watermarks(intel_crtc->config);
e1fdc473 4796 intel_enable_pipe(intel_crtc);
f67a559d 4797
6e3c9717 4798 if (intel_crtc->config->has_pch_encoder)
f67a559d 4799 ironlake_pch_enable(crtc);
c98e9dcf 4800
f9b61ff6
DV
4801 assert_vblank_disabled(crtc);
4802 drm_crtc_vblank_on(crtc);
4803
fa5c73b1
DV
4804 for_each_encoder_on_crtc(dev, crtc, encoder)
4805 encoder->enable(encoder);
61b77ddd
DV
4806
4807 if (HAS_PCH_CPT(dev))
a1520318 4808 cpt_verify_modeset(dev, intel_crtc->pipe);
37ca8d4c
VS
4809
4810 /* Must wait for vblank to avoid spurious PCH FIFO underruns */
4811 if (intel_crtc->config->has_pch_encoder)
4812 intel_wait_for_vblank(dev, pipe);
b2c0593a 4813 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
37ca8d4c 4814 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
6be4a607
JB
4815}
4816
42db64ef
PZ
4817/* IPS only exists on ULT machines and is tied to pipe A. */
4818static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4819{
f5adf94e 4820 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
42db64ef
PZ
4821}
4822
4f771f10
PZ
4823static void haswell_crtc_enable(struct drm_crtc *crtc)
4824{
4825 struct drm_device *dev = crtc->dev;
4826 struct drm_i915_private *dev_priv = dev->dev_private;
4827 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4828 struct intel_encoder *encoder;
99d736a2 4829 int pipe = intel_crtc->pipe, hsw_workaround_pipe;
4d1de975 4830 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
99d736a2
ML
4831 struct intel_crtc_state *pipe_config =
4832 to_intel_crtc_state(crtc->state);
4f771f10 4833
53d9f4e9 4834 if (WARN_ON(intel_crtc->active))
4f771f10
PZ
4835 return;
4836
81b088ca
VS
4837 if (intel_crtc->config->has_pch_encoder)
4838 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4839 false);
4840
8106ddbd 4841 if (intel_crtc->config->shared_dpll)
df8ad70c
DV
4842 intel_enable_shared_dpll(intel_crtc);
4843
6e3c9717 4844 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 4845 intel_dp_set_m_n(intel_crtc, M1_N1);
229fca97 4846
4d1de975
JN
4847 if (!intel_crtc->config->has_dsi_encoder)
4848 intel_set_pipe_timings(intel_crtc);
4849
bc58be60 4850 intel_set_pipe_src_size(intel_crtc);
229fca97 4851
4d1de975
JN
4852 if (cpu_transcoder != TRANSCODER_EDP &&
4853 !transcoder_is_dsi(cpu_transcoder)) {
4854 I915_WRITE(PIPE_MULT(cpu_transcoder),
6e3c9717 4855 intel_crtc->config->pixel_multiplier - 1);
ebb69c95
CT
4856 }
4857
6e3c9717 4858 if (intel_crtc->config->has_pch_encoder) {
229fca97 4859 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 4860 &intel_crtc->config->fdi_m_n, NULL);
229fca97
DV
4861 }
4862
4d1de975
JN
4863 if (!intel_crtc->config->has_dsi_encoder)
4864 haswell_set_pipeconf(crtc);
4865
391bf048 4866 haswell_set_pipemisc(crtc);
229fca97 4867
b95c5321 4868 intel_color_set_csc(&pipe_config->base);
229fca97 4869
4f771f10 4870 intel_crtc->active = true;
8664281b 4871
6b698516
DV
4872 if (intel_crtc->config->has_pch_encoder)
4873 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4874 else
4875 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4876
7d4aefd0 4877 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10
PZ
4878 if (encoder->pre_enable)
4879 encoder->pre_enable(encoder);
7d4aefd0 4880 }
4f771f10 4881
d2d65408 4882 if (intel_crtc->config->has_pch_encoder)
4fe9467d 4883 dev_priv->display.fdi_link_train(crtc);
4fe9467d 4884
a65347ba 4885 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 4886 intel_ddi_enable_pipe_clock(intel_crtc);
4f771f10 4887
1c132b44 4888 if (INTEL_INFO(dev)->gen >= 9)
e435d6e5 4889 skylake_pfit_enable(intel_crtc);
ff6d9f55 4890 else
1c132b44 4891 ironlake_pfit_enable(intel_crtc);
4f771f10
PZ
4892
4893 /*
4894 * On ILK+ LUT must be loaded before the pipe is running but with
4895 * clocks enabled
4896 */
b95c5321 4897 intel_color_load_luts(&pipe_config->base);
4f771f10 4898
1f544388 4899 intel_ddi_set_pipe_settings(crtc);
a65347ba 4900 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 4901 intel_ddi_enable_transcoder_func(crtc);
4f771f10 4902
1d5bf5d9
ID
4903 if (dev_priv->display.initial_watermarks != NULL)
4904 dev_priv->display.initial_watermarks(pipe_config);
4905 else
4906 intel_update_watermarks(crtc);
4d1de975
JN
4907
4908 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
4909 if (!intel_crtc->config->has_dsi_encoder)
4910 intel_enable_pipe(intel_crtc);
42db64ef 4911
6e3c9717 4912 if (intel_crtc->config->has_pch_encoder)
1507e5bd 4913 lpt_pch_enable(crtc);
4f771f10 4914
a65347ba 4915 if (intel_crtc->config->dp_encoder_is_mst)
0e32b39c
DA
4916 intel_ddi_set_vc_payload_alloc(crtc, true);
4917
f9b61ff6
DV
4918 assert_vblank_disabled(crtc);
4919 drm_crtc_vblank_on(crtc);
4920
8807e55b 4921 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10 4922 encoder->enable(encoder);
8807e55b
JN
4923 intel_opregion_notify_encoder(encoder, true);
4924 }
4f771f10 4925
6b698516
DV
4926 if (intel_crtc->config->has_pch_encoder) {
4927 intel_wait_for_vblank(dev, pipe);
4928 intel_wait_for_vblank(dev, pipe);
4929 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
d2d65408
VS
4930 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4931 true);
6b698516 4932 }
d2d65408 4933
e4916946
PZ
4934 /* If we change the relative order between pipe/planes enabling, we need
4935 * to change the workaround. */
99d736a2
ML
4936 hsw_workaround_pipe = pipe_config->hsw_workaround_pipe;
4937 if (IS_HASWELL(dev) && hsw_workaround_pipe != INVALID_PIPE) {
4938 intel_wait_for_vblank(dev, hsw_workaround_pipe);
4939 intel_wait_for_vblank(dev, hsw_workaround_pipe);
4940 }
4f771f10
PZ
4941}
4942
bfd16b2a 4943static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force)
3f8dce3a
DV
4944{
4945 struct drm_device *dev = crtc->base.dev;
4946 struct drm_i915_private *dev_priv = dev->dev_private;
4947 int pipe = crtc->pipe;
4948
4949 /* To avoid upsetting the power well on haswell only disable the pfit if
4950 * it's in use. The hw state code will make sure we get this right. */
bfd16b2a 4951 if (force || crtc->config->pch_pfit.enabled) {
3f8dce3a
DV
4952 I915_WRITE(PF_CTL(pipe), 0);
4953 I915_WRITE(PF_WIN_POS(pipe), 0);
4954 I915_WRITE(PF_WIN_SZ(pipe), 0);
4955 }
4956}
4957
6be4a607
JB
4958static void ironlake_crtc_disable(struct drm_crtc *crtc)
4959{
4960 struct drm_device *dev = crtc->dev;
4961 struct drm_i915_private *dev_priv = dev->dev_private;
4962 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4963 struct intel_encoder *encoder;
6be4a607 4964 int pipe = intel_crtc->pipe;
b52eb4dc 4965
b2c0593a
VS
4966 /*
4967 * Sometimes spurious CPU pipe underruns happen when the
4968 * pipe is already disabled, but FDI RX/TX is still enabled.
4969 * Happens at least with VGA+HDMI cloning. Suppress them.
4970 */
4971 if (intel_crtc->config->has_pch_encoder) {
4972 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
37ca8d4c 4973 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
b2c0593a 4974 }
37ca8d4c 4975
ea9d758d
DV
4976 for_each_encoder_on_crtc(dev, crtc, encoder)
4977 encoder->disable(encoder);
4978
f9b61ff6
DV
4979 drm_crtc_vblank_off(crtc);
4980 assert_vblank_disabled(crtc);
4981
575f7ab7 4982 intel_disable_pipe(intel_crtc);
32f9d658 4983
bfd16b2a 4984 ironlake_pfit_disable(intel_crtc, false);
2c07245f 4985
b2c0593a 4986 if (intel_crtc->config->has_pch_encoder)
5a74f70a
VS
4987 ironlake_fdi_disable(crtc);
4988
bf49ec8c
DV
4989 for_each_encoder_on_crtc(dev, crtc, encoder)
4990 if (encoder->post_disable)
4991 encoder->post_disable(encoder);
2c07245f 4992
6e3c9717 4993 if (intel_crtc->config->has_pch_encoder) {
d925c59a 4994 ironlake_disable_pch_transcoder(dev_priv, pipe);
6be4a607 4995
d925c59a 4996 if (HAS_PCH_CPT(dev)) {
f0f59a00
VS
4997 i915_reg_t reg;
4998 u32 temp;
4999
d925c59a
DV
5000 /* disable TRANS_DP_CTL */
5001 reg = TRANS_DP_CTL(pipe);
5002 temp = I915_READ(reg);
5003 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
5004 TRANS_DP_PORT_SEL_MASK);
5005 temp |= TRANS_DP_PORT_SEL_NONE;
5006 I915_WRITE(reg, temp);
5007
5008 /* disable DPLL_SEL */
5009 temp = I915_READ(PCH_DPLL_SEL);
11887397 5010 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
d925c59a 5011 I915_WRITE(PCH_DPLL_SEL, temp);
9db4a9c7 5012 }
e3421a18 5013
d925c59a
DV
5014 ironlake_fdi_pll_disable(intel_crtc);
5015 }
81b088ca 5016
b2c0593a 5017 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
81b088ca 5018 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
6be4a607 5019}
1b3c7a47 5020
4f771f10 5021static void haswell_crtc_disable(struct drm_crtc *crtc)
ee7b9f93 5022{
4f771f10
PZ
5023 struct drm_device *dev = crtc->dev;
5024 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93 5025 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4f771f10 5026 struct intel_encoder *encoder;
6e3c9717 5027 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
ee7b9f93 5028
d2d65408
VS
5029 if (intel_crtc->config->has_pch_encoder)
5030 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5031 false);
5032
8807e55b
JN
5033 for_each_encoder_on_crtc(dev, crtc, encoder) {
5034 intel_opregion_notify_encoder(encoder, false);
4f771f10 5035 encoder->disable(encoder);
8807e55b 5036 }
4f771f10 5037
f9b61ff6
DV
5038 drm_crtc_vblank_off(crtc);
5039 assert_vblank_disabled(crtc);
5040
4d1de975
JN
5041 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
5042 if (!intel_crtc->config->has_dsi_encoder)
5043 intel_disable_pipe(intel_crtc);
4f771f10 5044
6e3c9717 5045 if (intel_crtc->config->dp_encoder_is_mst)
a4bf214f
VS
5046 intel_ddi_set_vc_payload_alloc(crtc, false);
5047
a65347ba 5048 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 5049 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
4f771f10 5050
1c132b44 5051 if (INTEL_INFO(dev)->gen >= 9)
e435d6e5 5052 skylake_scaler_disable(intel_crtc);
ff6d9f55 5053 else
bfd16b2a 5054 ironlake_pfit_disable(intel_crtc, false);
4f771f10 5055
a65347ba 5056 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 5057 intel_ddi_disable_pipe_clock(intel_crtc);
4f771f10 5058
97b040aa
ID
5059 for_each_encoder_on_crtc(dev, crtc, encoder)
5060 if (encoder->post_disable)
5061 encoder->post_disable(encoder);
81b088ca 5062
92966a37
VS
5063 if (intel_crtc->config->has_pch_encoder) {
5064 lpt_disable_pch_transcoder(dev_priv);
503a74e9 5065 lpt_disable_iclkip(dev_priv);
92966a37
VS
5066 intel_ddi_fdi_disable(crtc);
5067
81b088ca
VS
5068 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5069 true);
92966a37 5070 }
4f771f10
PZ
5071}
5072
2dd24552
JB
5073static void i9xx_pfit_enable(struct intel_crtc *crtc)
5074{
5075 struct drm_device *dev = crtc->base.dev;
5076 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 5077 struct intel_crtc_state *pipe_config = crtc->config;
2dd24552 5078
681a8504 5079 if (!pipe_config->gmch_pfit.control)
2dd24552
JB
5080 return;
5081
2dd24552 5082 /*
c0b03411
DV
5083 * The panel fitter should only be adjusted whilst the pipe is disabled,
5084 * according to register description and PRM.
2dd24552 5085 */
c0b03411
DV
5086 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5087 assert_pipe_disabled(dev_priv, crtc->pipe);
2dd24552 5088
b074cec8
JB
5089 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5090 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
5a80c45c
DV
5091
5092 /* Border color in case we don't scale up to the full screen. Black by
5093 * default, change to something else for debugging. */
5094 I915_WRITE(BCLRPAT(crtc->pipe), 0);
2dd24552
JB
5095}
5096
d05410f9
DA
5097static enum intel_display_power_domain port_to_power_domain(enum port port)
5098{
5099 switch (port) {
5100 case PORT_A:
6331a704 5101 return POWER_DOMAIN_PORT_DDI_A_LANES;
d05410f9 5102 case PORT_B:
6331a704 5103 return POWER_DOMAIN_PORT_DDI_B_LANES;
d05410f9 5104 case PORT_C:
6331a704 5105 return POWER_DOMAIN_PORT_DDI_C_LANES;
d05410f9 5106 case PORT_D:
6331a704 5107 return POWER_DOMAIN_PORT_DDI_D_LANES;
d8e19f99 5108 case PORT_E:
6331a704 5109 return POWER_DOMAIN_PORT_DDI_E_LANES;
d05410f9 5110 default:
b9fec167 5111 MISSING_CASE(port);
d05410f9
DA
5112 return POWER_DOMAIN_PORT_OTHER;
5113 }
5114}
5115
25f78f58
VS
5116static enum intel_display_power_domain port_to_aux_power_domain(enum port port)
5117{
5118 switch (port) {
5119 case PORT_A:
5120 return POWER_DOMAIN_AUX_A;
5121 case PORT_B:
5122 return POWER_DOMAIN_AUX_B;
5123 case PORT_C:
5124 return POWER_DOMAIN_AUX_C;
5125 case PORT_D:
5126 return POWER_DOMAIN_AUX_D;
5127 case PORT_E:
5128 /* FIXME: Check VBT for actual wiring of PORT E */
5129 return POWER_DOMAIN_AUX_D;
5130 default:
b9fec167 5131 MISSING_CASE(port);
25f78f58
VS
5132 return POWER_DOMAIN_AUX_A;
5133 }
5134}
5135
319be8ae
ID
5136enum intel_display_power_domain
5137intel_display_port_power_domain(struct intel_encoder *intel_encoder)
5138{
5139 struct drm_device *dev = intel_encoder->base.dev;
5140 struct intel_digital_port *intel_dig_port;
5141
5142 switch (intel_encoder->type) {
5143 case INTEL_OUTPUT_UNKNOWN:
5144 /* Only DDI platforms should ever use this output type */
5145 WARN_ON_ONCE(!HAS_DDI(dev));
5146 case INTEL_OUTPUT_DISPLAYPORT:
5147 case INTEL_OUTPUT_HDMI:
5148 case INTEL_OUTPUT_EDP:
5149 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
d05410f9 5150 return port_to_power_domain(intel_dig_port->port);
0e32b39c
DA
5151 case INTEL_OUTPUT_DP_MST:
5152 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5153 return port_to_power_domain(intel_dig_port->port);
319be8ae
ID
5154 case INTEL_OUTPUT_ANALOG:
5155 return POWER_DOMAIN_PORT_CRT;
5156 case INTEL_OUTPUT_DSI:
5157 return POWER_DOMAIN_PORT_DSI;
5158 default:
5159 return POWER_DOMAIN_PORT_OTHER;
5160 }
5161}
5162
25f78f58
VS
5163enum intel_display_power_domain
5164intel_display_port_aux_power_domain(struct intel_encoder *intel_encoder)
5165{
5166 struct drm_device *dev = intel_encoder->base.dev;
5167 struct intel_digital_port *intel_dig_port;
5168
5169 switch (intel_encoder->type) {
5170 case INTEL_OUTPUT_UNKNOWN:
651174a4
ID
5171 case INTEL_OUTPUT_HDMI:
5172 /*
5173 * Only DDI platforms should ever use these output types.
5174 * We can get here after the HDMI detect code has already set
5175 * the type of the shared encoder. Since we can't be sure
5176 * what's the status of the given connectors, play safe and
5177 * run the DP detection too.
5178 */
25f78f58
VS
5179 WARN_ON_ONCE(!HAS_DDI(dev));
5180 case INTEL_OUTPUT_DISPLAYPORT:
5181 case INTEL_OUTPUT_EDP:
5182 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
5183 return port_to_aux_power_domain(intel_dig_port->port);
5184 case INTEL_OUTPUT_DP_MST:
5185 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5186 return port_to_aux_power_domain(intel_dig_port->port);
5187 default:
b9fec167 5188 MISSING_CASE(intel_encoder->type);
25f78f58
VS
5189 return POWER_DOMAIN_AUX_A;
5190 }
5191}
5192
74bff5f9
ML
5193static unsigned long get_crtc_power_domains(struct drm_crtc *crtc,
5194 struct intel_crtc_state *crtc_state)
77d22dca 5195{
319be8ae 5196 struct drm_device *dev = crtc->dev;
74bff5f9 5197 struct drm_encoder *encoder;
319be8ae
ID
5198 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5199 enum pipe pipe = intel_crtc->pipe;
77d22dca 5200 unsigned long mask;
74bff5f9 5201 enum transcoder transcoder = crtc_state->cpu_transcoder;
77d22dca 5202
74bff5f9 5203 if (!crtc_state->base.active)
292b990e
ML
5204 return 0;
5205
77d22dca
ID
5206 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5207 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
74bff5f9
ML
5208 if (crtc_state->pch_pfit.enabled ||
5209 crtc_state->pch_pfit.force_thru)
77d22dca
ID
5210 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5211
74bff5f9
ML
5212 drm_for_each_encoder_mask(encoder, dev, crtc_state->base.encoder_mask) {
5213 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
5214
319be8ae 5215 mask |= BIT(intel_display_port_power_domain(intel_encoder));
74bff5f9 5216 }
319be8ae 5217
15e7ec29
ML
5218 if (crtc_state->shared_dpll)
5219 mask |= BIT(POWER_DOMAIN_PLLS);
5220
77d22dca
ID
5221 return mask;
5222}
5223
74bff5f9
ML
5224static unsigned long
5225modeset_get_crtc_power_domains(struct drm_crtc *crtc,
5226 struct intel_crtc_state *crtc_state)
77d22dca 5227{
292b990e
ML
5228 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5229 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5230 enum intel_display_power_domain domain;
5a21b665 5231 unsigned long domains, new_domains, old_domains;
77d22dca 5232
292b990e 5233 old_domains = intel_crtc->enabled_power_domains;
74bff5f9
ML
5234 intel_crtc->enabled_power_domains = new_domains =
5235 get_crtc_power_domains(crtc, crtc_state);
77d22dca 5236
5a21b665 5237 domains = new_domains & ~old_domains;
292b990e
ML
5238
5239 for_each_power_domain(domain, domains)
5240 intel_display_power_get(dev_priv, domain);
5241
5a21b665 5242 return old_domains & ~new_domains;
292b990e
ML
5243}
5244
5245static void modeset_put_power_domains(struct drm_i915_private *dev_priv,
5246 unsigned long domains)
5247{
5248 enum intel_display_power_domain domain;
5249
5250 for_each_power_domain(domain, domains)
5251 intel_display_power_put(dev_priv, domain);
5252}
77d22dca 5253
adafdc6f
MK
5254static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv)
5255{
5256 int max_cdclk_freq = dev_priv->max_cdclk_freq;
5257
5258 if (INTEL_INFO(dev_priv)->gen >= 9 ||
5259 IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
5260 return max_cdclk_freq;
5261 else if (IS_CHERRYVIEW(dev_priv))
5262 return max_cdclk_freq*95/100;
5263 else if (INTEL_INFO(dev_priv)->gen < 4)
5264 return 2*max_cdclk_freq*90/100;
5265 else
5266 return max_cdclk_freq*90/100;
5267}
5268
b2045352
VS
5269static int skl_calc_cdclk(int max_pixclk, int vco);
5270
560a7ae4
DL
5271static void intel_update_max_cdclk(struct drm_device *dev)
5272{
5273 struct drm_i915_private *dev_priv = dev->dev_private;
5274
ef11bdb3 5275 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
560a7ae4 5276 u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK;
b2045352
VS
5277 int max_cdclk, vco;
5278
5279 vco = dev_priv->skl_preferred_vco_freq;
63911d72 5280 WARN_ON(vco != 8100000 && vco != 8640000);
560a7ae4 5281
b2045352
VS
5282 /*
5283 * Use the lower (vco 8640) cdclk values as a
5284 * first guess. skl_calc_cdclk() will correct it
5285 * if the preferred vco is 8100 instead.
5286 */
560a7ae4 5287 if (limit == SKL_DFSM_CDCLK_LIMIT_675)
487ed2e4 5288 max_cdclk = 617143;
560a7ae4 5289 else if (limit == SKL_DFSM_CDCLK_LIMIT_540)
b2045352 5290 max_cdclk = 540000;
560a7ae4 5291 else if (limit == SKL_DFSM_CDCLK_LIMIT_450)
b2045352 5292 max_cdclk = 432000;
560a7ae4 5293 else
487ed2e4 5294 max_cdclk = 308571;
b2045352
VS
5295
5296 dev_priv->max_cdclk_freq = skl_calc_cdclk(max_cdclk, vco);
281c114f
MR
5297 } else if (IS_BROXTON(dev)) {
5298 dev_priv->max_cdclk_freq = 624000;
560a7ae4
DL
5299 } else if (IS_BROADWELL(dev)) {
5300 /*
5301 * FIXME with extra cooling we can allow
5302 * 540 MHz for ULX and 675 Mhz for ULT.
5303 * How can we know if extra cooling is
5304 * available? PCI ID, VTB, something else?
5305 */
5306 if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
5307 dev_priv->max_cdclk_freq = 450000;
5308 else if (IS_BDW_ULX(dev))
5309 dev_priv->max_cdclk_freq = 450000;
5310 else if (IS_BDW_ULT(dev))
5311 dev_priv->max_cdclk_freq = 540000;
5312 else
5313 dev_priv->max_cdclk_freq = 675000;
0904deaf
MK
5314 } else if (IS_CHERRYVIEW(dev)) {
5315 dev_priv->max_cdclk_freq = 320000;
560a7ae4
DL
5316 } else if (IS_VALLEYVIEW(dev)) {
5317 dev_priv->max_cdclk_freq = 400000;
5318 } else {
5319 /* otherwise assume cdclk is fixed */
5320 dev_priv->max_cdclk_freq = dev_priv->cdclk_freq;
5321 }
5322
adafdc6f
MK
5323 dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv);
5324
560a7ae4
DL
5325 DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n",
5326 dev_priv->max_cdclk_freq);
adafdc6f
MK
5327
5328 DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n",
5329 dev_priv->max_dotclk_freq);
560a7ae4
DL
5330}
5331
5332static void intel_update_cdclk(struct drm_device *dev)
5333{
5334 struct drm_i915_private *dev_priv = dev->dev_private;
5335
5336 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
2f2a121a 5337
83d7c81f 5338 if (INTEL_GEN(dev_priv) >= 9)
709e05c3
VS
5339 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz, VCO: %d kHz, ref: %d kHz\n",
5340 dev_priv->cdclk_freq, dev_priv->cdclk_pll.vco,
5341 dev_priv->cdclk_pll.ref);
2f2a121a
VS
5342 else
5343 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
5344 dev_priv->cdclk_freq);
560a7ae4
DL
5345
5346 /*
b5d99ff9
VS
5347 * 9:0 CMBUS [sic] CDCLK frequency (cdfreq):
5348 * Programmng [sic] note: bit[9:2] should be programmed to the number
5349 * of cdclk that generates 4MHz reference clock freq which is used to
5350 * generate GMBus clock. This will vary with the cdclk freq.
560a7ae4 5351 */
b5d99ff9 5352 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
560a7ae4 5353 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
560a7ae4
DL
5354}
5355
92891e45
VS
5356/* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5357static int skl_cdclk_decimal(int cdclk)
5358{
5359 return DIV_ROUND_CLOSEST(cdclk - 1000, 500);
5360}
5361
5f199dfa
VS
5362static int bxt_de_pll_vco(struct drm_i915_private *dev_priv, int cdclk)
5363{
5364 int ratio;
5365
5366 if (cdclk == dev_priv->cdclk_pll.ref)
5367 return 0;
5368
5369 switch (cdclk) {
5370 default:
5371 MISSING_CASE(cdclk);
5372 case 144000:
5373 case 288000:
5374 case 384000:
5375 case 576000:
5376 ratio = 60;
5377 break;
5378 case 624000:
5379 ratio = 65;
5380 break;
5381 }
5382
5383 return dev_priv->cdclk_pll.ref * ratio;
5384}
5385
2b73001e
VS
5386static void bxt_de_pll_disable(struct drm_i915_private *dev_priv)
5387{
5388 I915_WRITE(BXT_DE_PLL_ENABLE, 0);
5389
5390 /* Timeout 200us */
5391 if (wait_for((I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK) == 0, 1))
5392 DRM_ERROR("timeout waiting for DE PLL unlock\n");
83d7c81f
VS
5393
5394 dev_priv->cdclk_pll.vco = 0;
2b73001e
VS
5395}
5396
5f199dfa 5397static void bxt_de_pll_enable(struct drm_i915_private *dev_priv, int vco)
2b73001e 5398{
5f199dfa 5399 int ratio = DIV_ROUND_CLOSEST(vco, dev_priv->cdclk_pll.ref);
2b73001e
VS
5400 u32 val;
5401
5402 val = I915_READ(BXT_DE_PLL_CTL);
5403 val &= ~BXT_DE_PLL_RATIO_MASK;
5f199dfa 5404 val |= BXT_DE_PLL_RATIO(ratio);
2b73001e
VS
5405 I915_WRITE(BXT_DE_PLL_CTL, val);
5406
5407 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5408
5409 /* Timeout 200us */
5410 if (wait_for((I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK) != 0, 1))
5411 DRM_ERROR("timeout waiting for DE PLL lock\n");
83d7c81f 5412
5f199dfa 5413 dev_priv->cdclk_pll.vco = vco;
2b73001e
VS
5414}
5415
9ef56154 5416static void broxton_set_cdclk(struct drm_i915_private *dev_priv, int cdclk)
f8437dd1 5417{
5f199dfa
VS
5418 u32 val, divider;
5419 int vco, ret;
f8437dd1 5420
5f199dfa
VS
5421 vco = bxt_de_pll_vco(dev_priv, cdclk);
5422
5423 DRM_DEBUG_DRIVER("Changing CDCLK to %d kHz (VCO %d kHz)\n", cdclk, vco);
5424
5425 /* cdclk = vco / 2 / div{1,1.5,2,4} */
5426 switch (DIV_ROUND_CLOSEST(vco, cdclk)) {
5427 case 8:
f8437dd1 5428 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
f8437dd1 5429 break;
5f199dfa 5430 case 4:
f8437dd1 5431 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
f8437dd1 5432 break;
5f199dfa 5433 case 3:
f8437dd1 5434 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
f8437dd1 5435 break;
5f199dfa 5436 case 2:
f8437dd1 5437 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
f8437dd1
VK
5438 break;
5439 default:
5f199dfa
VS
5440 WARN_ON(cdclk != dev_priv->cdclk_pll.ref);
5441 WARN_ON(vco != 0);
f8437dd1 5442
5f199dfa
VS
5443 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5444 break;
f8437dd1
VK
5445 }
5446
f8437dd1 5447 /* Inform power controller of upcoming frequency change */
5f199dfa 5448 mutex_lock(&dev_priv->rps.hw_lock);
f8437dd1
VK
5449 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5450 0x80000000);
5451 mutex_unlock(&dev_priv->rps.hw_lock);
5452
5453 if (ret) {
5454 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
9ef56154 5455 ret, cdclk);
f8437dd1
VK
5456 return;
5457 }
5458
5f199dfa
VS
5459 if (dev_priv->cdclk_pll.vco != 0 &&
5460 dev_priv->cdclk_pll.vco != vco)
2b73001e 5461 bxt_de_pll_disable(dev_priv);
f8437dd1 5462
5f199dfa
VS
5463 if (dev_priv->cdclk_pll.vco != vco)
5464 bxt_de_pll_enable(dev_priv, vco);
f8437dd1 5465
5f199dfa
VS
5466 val = divider | skl_cdclk_decimal(cdclk);
5467 /*
5468 * FIXME if only the cd2x divider needs changing, it could be done
5469 * without shutting off the pipe (if only one pipe is active).
5470 */
5471 val |= BXT_CDCLK_CD2X_PIPE_NONE;
5472 /*
5473 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5474 * enable otherwise.
5475 */
5476 if (cdclk >= 500000)
5477 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5478 I915_WRITE(CDCLK_CTL, val);
f8437dd1
VK
5479
5480 mutex_lock(&dev_priv->rps.hw_lock);
5481 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
9ef56154 5482 DIV_ROUND_UP(cdclk, 25000));
f8437dd1
VK
5483 mutex_unlock(&dev_priv->rps.hw_lock);
5484
5485 if (ret) {
5486 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
9ef56154 5487 ret, cdclk);
f8437dd1
VK
5488 return;
5489 }
5490
c6c4696f 5491 intel_update_cdclk(dev_priv->dev);
f8437dd1
VK
5492}
5493
d66a2194 5494static void bxt_sanitize_cdclk(struct drm_i915_private *dev_priv)
f8437dd1 5495{
d66a2194
ID
5496 u32 cdctl, expected;
5497
089c6fd5 5498 intel_update_cdclk(dev_priv->dev);
f8437dd1 5499
d66a2194
ID
5500 if (dev_priv->cdclk_pll.vco == 0 ||
5501 dev_priv->cdclk_freq == dev_priv->cdclk_pll.ref)
5502 goto sanitize;
5503
5504 /* DPLL okay; verify the cdclock
5505 *
5506 * Some BIOS versions leave an incorrect decimal frequency value and
5507 * set reserved MBZ bits in CDCLK_CTL at least during exiting from S4,
5508 * so sanitize this register.
5509 */
5510 cdctl = I915_READ(CDCLK_CTL);
5511 /*
5512 * Let's ignore the pipe field, since BIOS could have configured the
5513 * dividers both synching to an active pipe, or asynchronously
5514 * (PIPE_NONE).
5515 */
5516 cdctl &= ~BXT_CDCLK_CD2X_PIPE_NONE;
5517
5518 expected = (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) |
5519 skl_cdclk_decimal(dev_priv->cdclk_freq);
5520 /*
5521 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5522 * enable otherwise.
5523 */
5524 if (dev_priv->cdclk_freq >= 500000)
5525 expected |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5526
5527 if (cdctl == expected)
5528 /* All well; nothing to sanitize */
5529 return;
5530
5531sanitize:
5532 DRM_DEBUG_KMS("Sanitizing cdclk programmed by pre-os\n");
5533
5534 /* force cdclk programming */
5535 dev_priv->cdclk_freq = 0;
5536
5537 /* force full PLL disable + enable */
5538 dev_priv->cdclk_pll.vco = -1;
5539}
5540
5541void broxton_init_cdclk(struct drm_i915_private *dev_priv)
5542{
5543 bxt_sanitize_cdclk(dev_priv);
5544
5545 if (dev_priv->cdclk_freq != 0 && dev_priv->cdclk_pll.vco != 0)
089c6fd5 5546 return;
c2e001ef 5547
f8437dd1
VK
5548 /*
5549 * FIXME:
5550 * - The initial CDCLK needs to be read from VBT.
5551 * Need to make this change after VBT has changes for BXT.
f8437dd1 5552 */
d1b32c32 5553 broxton_set_cdclk(dev_priv, broxton_calc_cdclk(0));
f8437dd1
VK
5554}
5555
c6c4696f 5556void broxton_uninit_cdclk(struct drm_i915_private *dev_priv)
f8437dd1 5557{
5f199dfa 5558 broxton_set_cdclk(dev_priv, dev_priv->cdclk_pll.ref);
f8437dd1
VK
5559}
5560
a8ca4934
VS
5561static int skl_calc_cdclk(int max_pixclk, int vco)
5562{
63911d72 5563 if (vco == 8640000) {
a8ca4934 5564 if (max_pixclk > 540000)
487ed2e4 5565 return 617143;
a8ca4934
VS
5566 else if (max_pixclk > 432000)
5567 return 540000;
487ed2e4 5568 else if (max_pixclk > 308571)
a8ca4934
VS
5569 return 432000;
5570 else
487ed2e4 5571 return 308571;
a8ca4934 5572 } else {
a8ca4934
VS
5573 if (max_pixclk > 540000)
5574 return 675000;
5575 else if (max_pixclk > 450000)
5576 return 540000;
5577 else if (max_pixclk > 337500)
5578 return 450000;
5579 else
5580 return 337500;
5581 }
5582}
5583
ea61791e
VS
5584static void
5585skl_dpll0_update(struct drm_i915_private *dev_priv)
5d96d8af 5586{
ea61791e 5587 u32 val;
5d96d8af 5588
709e05c3 5589 dev_priv->cdclk_pll.ref = 24000;
1c3f7700 5590 dev_priv->cdclk_pll.vco = 0;
709e05c3 5591
ea61791e 5592 val = I915_READ(LCPLL1_CTL);
1c3f7700 5593 if ((val & LCPLL_PLL_ENABLE) == 0)
ea61791e 5594 return;
5d96d8af 5595
1c3f7700
ID
5596 if (WARN_ON((val & LCPLL_PLL_LOCK) == 0))
5597 return;
9f7eb31a 5598
ea61791e
VS
5599 val = I915_READ(DPLL_CTRL1);
5600
1c3f7700
ID
5601 if (WARN_ON((val & (DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) |
5602 DPLL_CTRL1_SSC(SKL_DPLL0) |
5603 DPLL_CTRL1_OVERRIDE(SKL_DPLL0))) !=
5604 DPLL_CTRL1_OVERRIDE(SKL_DPLL0)))
5605 return;
9f7eb31a 5606
ea61791e
VS
5607 switch (val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) {
5608 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810, SKL_DPLL0):
5609 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1350, SKL_DPLL0):
5610 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1620, SKL_DPLL0):
5611 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2700, SKL_DPLL0):
63911d72 5612 dev_priv->cdclk_pll.vco = 8100000;
ea61791e
VS
5613 break;
5614 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080, SKL_DPLL0):
5615 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2160, SKL_DPLL0):
63911d72 5616 dev_priv->cdclk_pll.vco = 8640000;
ea61791e
VS
5617 break;
5618 default:
5619 MISSING_CASE(val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
ea61791e
VS
5620 break;
5621 }
5d96d8af
DL
5622}
5623
b2045352
VS
5624void skl_set_preferred_cdclk_vco(struct drm_i915_private *dev_priv, int vco)
5625{
5626 bool changed = dev_priv->skl_preferred_vco_freq != vco;
5627
5628 dev_priv->skl_preferred_vco_freq = vco;
5629
5630 if (changed)
5631 intel_update_max_cdclk(dev_priv->dev);
5632}
5633
5d96d8af 5634static void
3861fc60 5635skl_dpll0_enable(struct drm_i915_private *dev_priv, int vco)
5d96d8af 5636{
a8ca4934 5637 int min_cdclk = skl_calc_cdclk(0, vco);
5d96d8af
DL
5638 u32 val;
5639
63911d72 5640 WARN_ON(vco != 8100000 && vco != 8640000);
b2045352 5641
5d96d8af 5642 /* select the minimum CDCLK before enabling DPLL 0 */
9ef56154 5643 val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_cdclk);
5d96d8af
DL
5644 I915_WRITE(CDCLK_CTL, val);
5645 POSTING_READ(CDCLK_CTL);
5646
5647 /*
5648 * We always enable DPLL0 with the lowest link rate possible, but still
5649 * taking into account the VCO required to operate the eDP panel at the
5650 * desired frequency. The usual DP link rates operate with a VCO of
5651 * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640.
5652 * The modeset code is responsible for the selection of the exact link
5653 * rate later on, with the constraint of choosing a frequency that
a8ca4934 5654 * works with vco.
5d96d8af
DL
5655 */
5656 val = I915_READ(DPLL_CTRL1);
5657
5658 val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) |
5659 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
5660 val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
63911d72 5661 if (vco == 8640000)
5d96d8af
DL
5662 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
5663 SKL_DPLL0);
5664 else
5665 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
5666 SKL_DPLL0);
5667
5668 I915_WRITE(DPLL_CTRL1, val);
5669 POSTING_READ(DPLL_CTRL1);
5670
5671 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE);
5672
5673 if (wait_for(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK, 5))
5674 DRM_ERROR("DPLL0 not locked\n");
1cd593e0 5675
63911d72 5676 dev_priv->cdclk_pll.vco = vco;
b2045352
VS
5677
5678 /* We'll want to keep using the current vco from now on. */
5679 skl_set_preferred_cdclk_vco(dev_priv, vco);
5d96d8af
DL
5680}
5681
430e05de
VS
5682static void
5683skl_dpll0_disable(struct drm_i915_private *dev_priv)
5684{
5685 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE);
5686 if (wait_for(!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK), 1))
5687 DRM_ERROR("Couldn't disable DPLL0\n");
1cd593e0 5688
63911d72 5689 dev_priv->cdclk_pll.vco = 0;
430e05de
VS
5690}
5691
5d96d8af
DL
5692static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv)
5693{
5694 int ret;
5695 u32 val;
5696
5697 /* inform PCU we want to change CDCLK */
5698 val = SKL_CDCLK_PREPARE_FOR_CHANGE;
5699 mutex_lock(&dev_priv->rps.hw_lock);
5700 ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val);
5701 mutex_unlock(&dev_priv->rps.hw_lock);
5702
5703 return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE);
5704}
5705
5706static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv)
5707{
5708 unsigned int i;
5709
5710 for (i = 0; i < 15; i++) {
5711 if (skl_cdclk_pcu_ready(dev_priv))
5712 return true;
5713 udelay(10);
5714 }
5715
5716 return false;
5717}
5718
1cd593e0 5719static void skl_set_cdclk(struct drm_i915_private *dev_priv, int cdclk, int vco)
5d96d8af 5720{
560a7ae4 5721 struct drm_device *dev = dev_priv->dev;
5d96d8af
DL
5722 u32 freq_select, pcu_ack;
5723
1cd593e0
VS
5724 WARN_ON((cdclk == 24000) != (vco == 0));
5725
63911d72 5726 DRM_DEBUG_DRIVER("Changing CDCLK to %d kHz (VCO %d kHz)\n", cdclk, vco);
5d96d8af
DL
5727
5728 if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) {
5729 DRM_ERROR("failed to inform PCU about cdclk change\n");
5730 return;
5731 }
5732
5733 /* set CDCLK_CTL */
9ef56154 5734 switch (cdclk) {
5d96d8af
DL
5735 case 450000:
5736 case 432000:
5737 freq_select = CDCLK_FREQ_450_432;
5738 pcu_ack = 1;
5739 break;
5740 case 540000:
5741 freq_select = CDCLK_FREQ_540;
5742 pcu_ack = 2;
5743 break;
487ed2e4 5744 case 308571:
5d96d8af
DL
5745 case 337500:
5746 default:
5747 freq_select = CDCLK_FREQ_337_308;
5748 pcu_ack = 0;
5749 break;
487ed2e4 5750 case 617143:
5d96d8af
DL
5751 case 675000:
5752 freq_select = CDCLK_FREQ_675_617;
5753 pcu_ack = 3;
5754 break;
5755 }
5756
63911d72
VS
5757 if (dev_priv->cdclk_pll.vco != 0 &&
5758 dev_priv->cdclk_pll.vco != vco)
1cd593e0
VS
5759 skl_dpll0_disable(dev_priv);
5760
63911d72 5761 if (dev_priv->cdclk_pll.vco != vco)
1cd593e0
VS
5762 skl_dpll0_enable(dev_priv, vco);
5763
9ef56154 5764 I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(cdclk));
5d96d8af
DL
5765 POSTING_READ(CDCLK_CTL);
5766
5767 /* inform PCU of the change */
5768 mutex_lock(&dev_priv->rps.hw_lock);
5769 sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack);
5770 mutex_unlock(&dev_priv->rps.hw_lock);
560a7ae4
DL
5771
5772 intel_update_cdclk(dev);
5d96d8af
DL
5773}
5774
9f7eb31a
VS
5775static void skl_sanitize_cdclk(struct drm_i915_private *dev_priv);
5776
5d96d8af
DL
5777void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
5778{
709e05c3 5779 skl_set_cdclk(dev_priv, dev_priv->cdclk_pll.ref, 0);
5d96d8af
DL
5780}
5781
5782void skl_init_cdclk(struct drm_i915_private *dev_priv)
5783{
9f7eb31a
VS
5784 int cdclk, vco;
5785
5786 skl_sanitize_cdclk(dev_priv);
5d96d8af 5787
63911d72 5788 if (dev_priv->cdclk_freq != 0 && dev_priv->cdclk_pll.vco != 0) {
9f7eb31a
VS
5789 /*
5790 * Use the current vco as our initial
5791 * guess as to what the preferred vco is.
5792 */
5793 if (dev_priv->skl_preferred_vco_freq == 0)
5794 skl_set_preferred_cdclk_vco(dev_priv,
63911d72 5795 dev_priv->cdclk_pll.vco);
70c2c184 5796 return;
1cd593e0 5797 }
5d96d8af 5798
70c2c184
VS
5799 vco = dev_priv->skl_preferred_vco_freq;
5800 if (vco == 0)
63911d72 5801 vco = 8100000;
70c2c184 5802 cdclk = skl_calc_cdclk(0, vco);
5d96d8af 5803
70c2c184 5804 skl_set_cdclk(dev_priv, cdclk, vco);
5d96d8af
DL
5805}
5806
9f7eb31a 5807static void skl_sanitize_cdclk(struct drm_i915_private *dev_priv)
c73666f3 5808{
09492498 5809 uint32_t cdctl, expected;
c73666f3 5810
f1b391a5
SK
5811 /*
5812 * check if the pre-os intialized the display
5813 * There is SWF18 scratchpad register defined which is set by the
5814 * pre-os which can be used by the OS drivers to check the status
5815 */
5816 if ((I915_READ(SWF_ILK(0x18)) & 0x00FFFFFF) == 0)
5817 goto sanitize;
5818
1c3f7700 5819 intel_update_cdclk(dev_priv->dev);
c73666f3 5820 /* Is PLL enabled and locked ? */
1c3f7700
ID
5821 if (dev_priv->cdclk_pll.vco == 0 ||
5822 dev_priv->cdclk_freq == dev_priv->cdclk_pll.ref)
c73666f3
SK
5823 goto sanitize;
5824
5825 /* DPLL okay; verify the cdclock
5826 *
5827 * Noticed in some instances that the freq selection is correct but
5828 * decimal part is programmed wrong from BIOS where pre-os does not
5829 * enable display. Verify the same as well.
5830 */
09492498
VS
5831 cdctl = I915_READ(CDCLK_CTL);
5832 expected = (cdctl & CDCLK_FREQ_SEL_MASK) |
5833 skl_cdclk_decimal(dev_priv->cdclk_freq);
5834 if (cdctl == expected)
c73666f3 5835 /* All well; nothing to sanitize */
9f7eb31a 5836 return;
c89e39f3 5837
9f7eb31a
VS
5838sanitize:
5839 DRM_DEBUG_KMS("Sanitizing cdclk programmed by pre-os\n");
c73666f3 5840
9f7eb31a
VS
5841 /* force cdclk programming */
5842 dev_priv->cdclk_freq = 0;
5843 /* force full PLL disable + enable */
63911d72 5844 dev_priv->cdclk_pll.vco = -1;
c73666f3
SK
5845}
5846
30a970c6
JB
5847/* Adjust CDclk dividers to allow high res or save power if possible */
5848static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
5849{
5850 struct drm_i915_private *dev_priv = dev->dev_private;
5851 u32 val, cmd;
5852
164dfd28
VK
5853 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5854 != dev_priv->cdclk_freq);
d60c4473 5855
dfcab17e 5856 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
30a970c6 5857 cmd = 2;
dfcab17e 5858 else if (cdclk == 266667)
30a970c6
JB
5859 cmd = 1;
5860 else
5861 cmd = 0;
5862
5863 mutex_lock(&dev_priv->rps.hw_lock);
5864 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5865 val &= ~DSPFREQGUAR_MASK;
5866 val |= (cmd << DSPFREQGUAR_SHIFT);
5867 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5868 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5869 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
5870 50)) {
5871 DRM_ERROR("timed out waiting for CDclk change\n");
5872 }
5873 mutex_unlock(&dev_priv->rps.hw_lock);
5874
54433e91
VS
5875 mutex_lock(&dev_priv->sb_lock);
5876
dfcab17e 5877 if (cdclk == 400000) {
6bcda4f0 5878 u32 divider;
30a970c6 5879
6bcda4f0 5880 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
30a970c6 5881
30a970c6
JB
5882 /* adjust cdclk divider */
5883 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
87d5d259 5884 val &= ~CCK_FREQUENCY_VALUES;
30a970c6
JB
5885 val |= divider;
5886 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
a877e801
VS
5887
5888 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
87d5d259 5889 CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
a877e801
VS
5890 50))
5891 DRM_ERROR("timed out waiting for CDclk change\n");
30a970c6
JB
5892 }
5893
30a970c6
JB
5894 /* adjust self-refresh exit latency value */
5895 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
5896 val &= ~0x7f;
5897
5898 /*
5899 * For high bandwidth configs, we set a higher latency in the bunit
5900 * so that the core display fetch happens in time to avoid underruns.
5901 */
dfcab17e 5902 if (cdclk == 400000)
30a970c6
JB
5903 val |= 4500 / 250; /* 4.5 usec */
5904 else
5905 val |= 3000 / 250; /* 3.0 usec */
5906 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
54433e91 5907
a580516d 5908 mutex_unlock(&dev_priv->sb_lock);
30a970c6 5909
b6283055 5910 intel_update_cdclk(dev);
30a970c6
JB
5911}
5912
383c5a6a
VS
5913static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
5914{
5915 struct drm_i915_private *dev_priv = dev->dev_private;
5916 u32 val, cmd;
5917
164dfd28
VK
5918 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5919 != dev_priv->cdclk_freq);
383c5a6a
VS
5920
5921 switch (cdclk) {
383c5a6a
VS
5922 case 333333:
5923 case 320000:
383c5a6a 5924 case 266667:
383c5a6a 5925 case 200000:
383c5a6a
VS
5926 break;
5927 default:
5f77eeb0 5928 MISSING_CASE(cdclk);
383c5a6a
VS
5929 return;
5930 }
5931
9d0d3fda
VS
5932 /*
5933 * Specs are full of misinformation, but testing on actual
5934 * hardware has shown that we just need to write the desired
5935 * CCK divider into the Punit register.
5936 */
5937 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
5938
383c5a6a
VS
5939 mutex_lock(&dev_priv->rps.hw_lock);
5940 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5941 val &= ~DSPFREQGUAR_MASK_CHV;
5942 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
5943 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5944 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5945 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
5946 50)) {
5947 DRM_ERROR("timed out waiting for CDclk change\n");
5948 }
5949 mutex_unlock(&dev_priv->rps.hw_lock);
5950
b6283055 5951 intel_update_cdclk(dev);
383c5a6a
VS
5952}
5953
30a970c6
JB
5954static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
5955 int max_pixclk)
5956{
6bcda4f0 5957 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
6cca3195 5958 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
29dc7ef3 5959
30a970c6
JB
5960 /*
5961 * Really only a few cases to deal with, as only 4 CDclks are supported:
5962 * 200MHz
5963 * 267MHz
29dc7ef3 5964 * 320/333MHz (depends on HPLL freq)
6cca3195
VS
5965 * 400MHz (VLV only)
5966 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
5967 * of the lower bin and adjust if needed.
e37c67a1
VS
5968 *
5969 * We seem to get an unstable or solid color picture at 200MHz.
5970 * Not sure what's wrong. For now use 200MHz only when all pipes
5971 * are off.
30a970c6 5972 */
6cca3195
VS
5973 if (!IS_CHERRYVIEW(dev_priv) &&
5974 max_pixclk > freq_320*limit/100)
dfcab17e 5975 return 400000;
6cca3195 5976 else if (max_pixclk > 266667*limit/100)
29dc7ef3 5977 return freq_320;
e37c67a1 5978 else if (max_pixclk > 0)
dfcab17e 5979 return 266667;
e37c67a1
VS
5980 else
5981 return 200000;
30a970c6
JB
5982}
5983
c44deb6c 5984static int broxton_calc_cdclk(int max_pixclk)
f8437dd1 5985{
760e1477 5986 if (max_pixclk > 576000)
f8437dd1 5987 return 624000;
760e1477 5988 else if (max_pixclk > 384000)
f8437dd1 5989 return 576000;
760e1477 5990 else if (max_pixclk > 288000)
f8437dd1 5991 return 384000;
760e1477 5992 else if (max_pixclk > 144000)
f8437dd1
VK
5993 return 288000;
5994 else
5995 return 144000;
5996}
5997
e8788cbc 5998/* Compute the max pixel clock for new configuration. */
a821fc46
ACO
5999static int intel_mode_max_pixclk(struct drm_device *dev,
6000 struct drm_atomic_state *state)
30a970c6 6001{
565602d7
ML
6002 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
6003 struct drm_i915_private *dev_priv = dev->dev_private;
6004 struct drm_crtc *crtc;
6005 struct drm_crtc_state *crtc_state;
6006 unsigned max_pixclk = 0, i;
6007 enum pipe pipe;
30a970c6 6008
565602d7
ML
6009 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
6010 sizeof(intel_state->min_pixclk));
304603f4 6011
565602d7
ML
6012 for_each_crtc_in_state(state, crtc, crtc_state, i) {
6013 int pixclk = 0;
6014
6015 if (crtc_state->enable)
6016 pixclk = crtc_state->adjusted_mode.crtc_clock;
304603f4 6017
565602d7 6018 intel_state->min_pixclk[i] = pixclk;
30a970c6
JB
6019 }
6020
565602d7
ML
6021 for_each_pipe(dev_priv, pipe)
6022 max_pixclk = max(intel_state->min_pixclk[pipe], max_pixclk);
6023
30a970c6
JB
6024 return max_pixclk;
6025}
6026
27c329ed 6027static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state)
30a970c6 6028{
27c329ed
ML
6029 struct drm_device *dev = state->dev;
6030 struct drm_i915_private *dev_priv = dev->dev_private;
6031 int max_pixclk = intel_mode_max_pixclk(dev, state);
1a617b77
ML
6032 struct intel_atomic_state *intel_state =
6033 to_intel_atomic_state(state);
30a970c6 6034
1a617b77 6035 intel_state->cdclk = intel_state->dev_cdclk =
27c329ed 6036 valleyview_calc_cdclk(dev_priv, max_pixclk);
0a9ab303 6037
1a617b77
ML
6038 if (!intel_state->active_crtcs)
6039 intel_state->dev_cdclk = valleyview_calc_cdclk(dev_priv, 0);
6040
27c329ed
ML
6041 return 0;
6042}
304603f4 6043
27c329ed
ML
6044static int broxton_modeset_calc_cdclk(struct drm_atomic_state *state)
6045{
4e5ca60f 6046 int max_pixclk = ilk_max_pixel_rate(state);
1a617b77
ML
6047 struct intel_atomic_state *intel_state =
6048 to_intel_atomic_state(state);
85a96e7a 6049
1a617b77 6050 intel_state->cdclk = intel_state->dev_cdclk =
c44deb6c 6051 broxton_calc_cdclk(max_pixclk);
85a96e7a 6052
1a617b77 6053 if (!intel_state->active_crtcs)
c44deb6c 6054 intel_state->dev_cdclk = broxton_calc_cdclk(0);
1a617b77 6055
27c329ed 6056 return 0;
30a970c6
JB
6057}
6058
1e69cd74
VS
6059static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
6060{
6061 unsigned int credits, default_credits;
6062
6063 if (IS_CHERRYVIEW(dev_priv))
6064 default_credits = PFI_CREDIT(12);
6065 else
6066 default_credits = PFI_CREDIT(8);
6067
bfa7df01 6068 if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) {
1e69cd74
VS
6069 /* CHV suggested value is 31 or 63 */
6070 if (IS_CHERRYVIEW(dev_priv))
fcc0008f 6071 credits = PFI_CREDIT_63;
1e69cd74
VS
6072 else
6073 credits = PFI_CREDIT(15);
6074 } else {
6075 credits = default_credits;
6076 }
6077
6078 /*
6079 * WA - write default credits before re-programming
6080 * FIXME: should we also set the resend bit here?
6081 */
6082 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6083 default_credits);
6084
6085 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6086 credits | PFI_CREDIT_RESEND);
6087
6088 /*
6089 * FIXME is this guaranteed to clear
6090 * immediately or should we poll for it?
6091 */
6092 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
6093}
6094
27c329ed 6095static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state)
30a970c6 6096{
a821fc46 6097 struct drm_device *dev = old_state->dev;
30a970c6 6098 struct drm_i915_private *dev_priv = dev->dev_private;
1a617b77
ML
6099 struct intel_atomic_state *old_intel_state =
6100 to_intel_atomic_state(old_state);
6101 unsigned req_cdclk = old_intel_state->dev_cdclk;
30a970c6 6102
27c329ed
ML
6103 /*
6104 * FIXME: We can end up here with all power domains off, yet
6105 * with a CDCLK frequency other than the minimum. To account
6106 * for this take the PIPE-A power domain, which covers the HW
6107 * blocks needed for the following programming. This can be
6108 * removed once it's guaranteed that we get here either with
6109 * the minimum CDCLK set, or the required power domains
6110 * enabled.
6111 */
6112 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
738c05c0 6113
27c329ed
ML
6114 if (IS_CHERRYVIEW(dev))
6115 cherryview_set_cdclk(dev, req_cdclk);
6116 else
6117 valleyview_set_cdclk(dev, req_cdclk);
738c05c0 6118
27c329ed 6119 vlv_program_pfi_credits(dev_priv);
1e69cd74 6120
27c329ed 6121 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
30a970c6
JB
6122}
6123
89b667f8
JB
6124static void valleyview_crtc_enable(struct drm_crtc *crtc)
6125{
6126 struct drm_device *dev = crtc->dev;
a72e4c9f 6127 struct drm_i915_private *dev_priv = to_i915(dev);
89b667f8
JB
6128 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6129 struct intel_encoder *encoder;
b95c5321
ML
6130 struct intel_crtc_state *pipe_config =
6131 to_intel_crtc_state(crtc->state);
89b667f8 6132 int pipe = intel_crtc->pipe;
89b667f8 6133
53d9f4e9 6134 if (WARN_ON(intel_crtc->active))
89b667f8
JB
6135 return;
6136
6e3c9717 6137 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 6138 intel_dp_set_m_n(intel_crtc, M1_N1);
5b18e57c
DV
6139
6140 intel_set_pipe_timings(intel_crtc);
bc58be60 6141 intel_set_pipe_src_size(intel_crtc);
5b18e57c 6142
c14b0485
VS
6143 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
6144 struct drm_i915_private *dev_priv = dev->dev_private;
6145
6146 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
6147 I915_WRITE(CHV_CANVAS(pipe), 0);
6148 }
6149
5b18e57c
DV
6150 i9xx_set_pipeconf(intel_crtc);
6151
89b667f8 6152 intel_crtc->active = true;
89b667f8 6153
a72e4c9f 6154 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 6155
89b667f8
JB
6156 for_each_encoder_on_crtc(dev, crtc, encoder)
6157 if (encoder->pre_pll_enable)
6158 encoder->pre_pll_enable(encoder);
6159
cd2d34d9
VS
6160 if (IS_CHERRYVIEW(dev)) {
6161 chv_prepare_pll(intel_crtc, intel_crtc->config);
6162 chv_enable_pll(intel_crtc, intel_crtc->config);
6163 } else {
6164 vlv_prepare_pll(intel_crtc, intel_crtc->config);
6165 vlv_enable_pll(intel_crtc, intel_crtc->config);
9d556c99 6166 }
89b667f8
JB
6167
6168 for_each_encoder_on_crtc(dev, crtc, encoder)
6169 if (encoder->pre_enable)
6170 encoder->pre_enable(encoder);
6171
2dd24552
JB
6172 i9xx_pfit_enable(intel_crtc);
6173
b95c5321 6174 intel_color_load_luts(&pipe_config->base);
63cbb074 6175
caed361d 6176 intel_update_watermarks(crtc);
e1fdc473 6177 intel_enable_pipe(intel_crtc);
be6a6f8e 6178
4b3a9526
VS
6179 assert_vblank_disabled(crtc);
6180 drm_crtc_vblank_on(crtc);
6181
f9b61ff6
DV
6182 for_each_encoder_on_crtc(dev, crtc, encoder)
6183 encoder->enable(encoder);
89b667f8
JB
6184}
6185
f13c2ef3
DV
6186static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
6187{
6188 struct drm_device *dev = crtc->base.dev;
6189 struct drm_i915_private *dev_priv = dev->dev_private;
6190
6e3c9717
ACO
6191 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
6192 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
f13c2ef3
DV
6193}
6194
0b8765c6 6195static void i9xx_crtc_enable(struct drm_crtc *crtc)
79e53945
JB
6196{
6197 struct drm_device *dev = crtc->dev;
a72e4c9f 6198 struct drm_i915_private *dev_priv = to_i915(dev);
79e53945 6199 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 6200 struct intel_encoder *encoder;
b95c5321
ML
6201 struct intel_crtc_state *pipe_config =
6202 to_intel_crtc_state(crtc->state);
cd2d34d9 6203 enum pipe pipe = intel_crtc->pipe;
79e53945 6204
53d9f4e9 6205 if (WARN_ON(intel_crtc->active))
f7abfe8b
CW
6206 return;
6207
f13c2ef3
DV
6208 i9xx_set_pll_dividers(intel_crtc);
6209
6e3c9717 6210 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 6211 intel_dp_set_m_n(intel_crtc, M1_N1);
5b18e57c
DV
6212
6213 intel_set_pipe_timings(intel_crtc);
bc58be60 6214 intel_set_pipe_src_size(intel_crtc);
5b18e57c 6215
5b18e57c
DV
6216 i9xx_set_pipeconf(intel_crtc);
6217
f7abfe8b 6218 intel_crtc->active = true;
6b383a7f 6219
4a3436e8 6220 if (!IS_GEN2(dev))
a72e4c9f 6221 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 6222
9d6d9f19
MK
6223 for_each_encoder_on_crtc(dev, crtc, encoder)
6224 if (encoder->pre_enable)
6225 encoder->pre_enable(encoder);
6226
f6736a1a
DV
6227 i9xx_enable_pll(intel_crtc);
6228
2dd24552
JB
6229 i9xx_pfit_enable(intel_crtc);
6230
b95c5321 6231 intel_color_load_luts(&pipe_config->base);
63cbb074 6232
f37fcc2a 6233 intel_update_watermarks(crtc);
e1fdc473 6234 intel_enable_pipe(intel_crtc);
be6a6f8e 6235
4b3a9526
VS
6236 assert_vblank_disabled(crtc);
6237 drm_crtc_vblank_on(crtc);
6238
f9b61ff6
DV
6239 for_each_encoder_on_crtc(dev, crtc, encoder)
6240 encoder->enable(encoder);
0b8765c6 6241}
79e53945 6242
87476d63
DV
6243static void i9xx_pfit_disable(struct intel_crtc *crtc)
6244{
6245 struct drm_device *dev = crtc->base.dev;
6246 struct drm_i915_private *dev_priv = dev->dev_private;
87476d63 6247
6e3c9717 6248 if (!crtc->config->gmch_pfit.control)
328d8e82 6249 return;
87476d63 6250
328d8e82 6251 assert_pipe_disabled(dev_priv, crtc->pipe);
87476d63 6252
328d8e82
DV
6253 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6254 I915_READ(PFIT_CONTROL));
6255 I915_WRITE(PFIT_CONTROL, 0);
87476d63
DV
6256}
6257
0b8765c6
JB
6258static void i9xx_crtc_disable(struct drm_crtc *crtc)
6259{
6260 struct drm_device *dev = crtc->dev;
6261 struct drm_i915_private *dev_priv = dev->dev_private;
6262 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 6263 struct intel_encoder *encoder;
0b8765c6 6264 int pipe = intel_crtc->pipe;
ef9c3aee 6265
6304cd91
VS
6266 /*
6267 * On gen2 planes are double buffered but the pipe isn't, so we must
6268 * wait for planes to fully turn off before disabling the pipe.
6269 */
90e83e53
ACO
6270 if (IS_GEN2(dev))
6271 intel_wait_for_vblank(dev, pipe);
6304cd91 6272
4b3a9526
VS
6273 for_each_encoder_on_crtc(dev, crtc, encoder)
6274 encoder->disable(encoder);
6275
f9b61ff6
DV
6276 drm_crtc_vblank_off(crtc);
6277 assert_vblank_disabled(crtc);
6278
575f7ab7 6279 intel_disable_pipe(intel_crtc);
24a1f16d 6280
87476d63 6281 i9xx_pfit_disable(intel_crtc);
24a1f16d 6282
89b667f8
JB
6283 for_each_encoder_on_crtc(dev, crtc, encoder)
6284 if (encoder->post_disable)
6285 encoder->post_disable(encoder);
6286
a65347ba 6287 if (!intel_crtc->config->has_dsi_encoder) {
076ed3b2
CML
6288 if (IS_CHERRYVIEW(dev))
6289 chv_disable_pll(dev_priv, pipe);
6290 else if (IS_VALLEYVIEW(dev))
6291 vlv_disable_pll(dev_priv, pipe);
6292 else
1c4e0274 6293 i9xx_disable_pll(intel_crtc);
076ed3b2 6294 }
0b8765c6 6295
d6db995f
VS
6296 for_each_encoder_on_crtc(dev, crtc, encoder)
6297 if (encoder->post_pll_disable)
6298 encoder->post_pll_disable(encoder);
6299
4a3436e8 6300 if (!IS_GEN2(dev))
a72e4c9f 6301 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
0b8765c6
JB
6302}
6303
b17d48e2
ML
6304static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
6305{
842e0307 6306 struct intel_encoder *encoder;
b17d48e2
ML
6307 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6308 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
6309 enum intel_display_power_domain domain;
6310 unsigned long domains;
6311
6312 if (!intel_crtc->active)
6313 return;
6314
a539205a 6315 if (to_intel_plane_state(crtc->primary->state)->visible) {
5a21b665 6316 WARN_ON(intel_crtc->flip_work);
fc32b1fd 6317
2622a081 6318 intel_pre_disable_primary_noatomic(crtc);
54a41961
ML
6319
6320 intel_crtc_disable_planes(crtc, 1 << drm_plane_index(crtc->primary));
6321 to_intel_plane_state(crtc->primary->state)->visible = false;
a539205a
ML
6322 }
6323
b17d48e2 6324 dev_priv->display.crtc_disable(crtc);
842e0307
ML
6325
6326 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was enabled, now disabled\n",
6327 crtc->base.id);
6328
6329 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->state, NULL) < 0);
6330 crtc->state->active = false;
37d9078b 6331 intel_crtc->active = false;
842e0307
ML
6332 crtc->enabled = false;
6333 crtc->state->connector_mask = 0;
6334 crtc->state->encoder_mask = 0;
6335
6336 for_each_encoder_on_crtc(crtc->dev, crtc, encoder)
6337 encoder->base.crtc = NULL;
6338
58f9c0bc 6339 intel_fbc_disable(intel_crtc);
37d9078b 6340 intel_update_watermarks(crtc);
1f7457b1 6341 intel_disable_shared_dpll(intel_crtc);
b17d48e2
ML
6342
6343 domains = intel_crtc->enabled_power_domains;
6344 for_each_power_domain(domain, domains)
6345 intel_display_power_put(dev_priv, domain);
6346 intel_crtc->enabled_power_domains = 0;
565602d7
ML
6347
6348 dev_priv->active_crtcs &= ~(1 << intel_crtc->pipe);
6349 dev_priv->min_pixclk[intel_crtc->pipe] = 0;
b17d48e2
ML
6350}
6351
6b72d486
ML
6352/*
6353 * turn all crtc's off, but do not adjust state
6354 * This has to be paired with a call to intel_modeset_setup_hw_state.
6355 */
70e0bd74 6356int intel_display_suspend(struct drm_device *dev)
ee7b9f93 6357{
e2c8b870 6358 struct drm_i915_private *dev_priv = to_i915(dev);
70e0bd74 6359 struct drm_atomic_state *state;
e2c8b870 6360 int ret;
70e0bd74 6361
e2c8b870
ML
6362 state = drm_atomic_helper_suspend(dev);
6363 ret = PTR_ERR_OR_ZERO(state);
70e0bd74
ML
6364 if (ret)
6365 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
e2c8b870
ML
6366 else
6367 dev_priv->modeset_restore_state = state;
70e0bd74 6368 return ret;
ee7b9f93
JB
6369}
6370
ea5b213a 6371void intel_encoder_destroy(struct drm_encoder *encoder)
7e7d76c3 6372{
4ef69c7a 6373 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
ea5b213a 6374
ea5b213a
CW
6375 drm_encoder_cleanup(encoder);
6376 kfree(intel_encoder);
7e7d76c3
JB
6377}
6378
0a91ca29
DV
6379/* Cross check the actual hw state with our own modeset state tracking (and it's
6380 * internal consistency). */
5a21b665 6381static void intel_connector_verify_state(struct intel_connector *connector)
79e53945 6382{
5a21b665 6383 struct drm_crtc *crtc = connector->base.state->crtc;
35dd3c64
ML
6384
6385 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6386 connector->base.base.id,
6387 connector->base.name);
6388
0a91ca29 6389 if (connector->get_hw_state(connector)) {
e85376cb 6390 struct intel_encoder *encoder = connector->encoder;
5a21b665 6391 struct drm_connector_state *conn_state = connector->base.state;
0a91ca29 6392
35dd3c64
ML
6393 I915_STATE_WARN(!crtc,
6394 "connector enabled without attached crtc\n");
0a91ca29 6395
35dd3c64
ML
6396 if (!crtc)
6397 return;
6398
6399 I915_STATE_WARN(!crtc->state->active,
6400 "connector is active, but attached crtc isn't\n");
6401
e85376cb 6402 if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST)
35dd3c64
ML
6403 return;
6404
e85376cb 6405 I915_STATE_WARN(conn_state->best_encoder != &encoder->base,
35dd3c64
ML
6406 "atomic encoder doesn't match attached encoder\n");
6407
e85376cb 6408 I915_STATE_WARN(conn_state->crtc != encoder->base.crtc,
35dd3c64
ML
6409 "attached encoder crtc differs from connector crtc\n");
6410 } else {
4d688a2a
ML
6411 I915_STATE_WARN(crtc && crtc->state->active,
6412 "attached crtc is active, but connector isn't\n");
5a21b665 6413 I915_STATE_WARN(!crtc && connector->base.state->best_encoder,
35dd3c64 6414 "best encoder set without crtc!\n");
0a91ca29 6415 }
79e53945
JB
6416}
6417
08d9bc92
ACO
6418int intel_connector_init(struct intel_connector *connector)
6419{
5350a031 6420 drm_atomic_helper_connector_reset(&connector->base);
08d9bc92 6421
5350a031 6422 if (!connector->base.state)
08d9bc92
ACO
6423 return -ENOMEM;
6424
08d9bc92
ACO
6425 return 0;
6426}
6427
6428struct intel_connector *intel_connector_alloc(void)
6429{
6430 struct intel_connector *connector;
6431
6432 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6433 if (!connector)
6434 return NULL;
6435
6436 if (intel_connector_init(connector) < 0) {
6437 kfree(connector);
6438 return NULL;
6439 }
6440
6441 return connector;
6442}
6443
f0947c37
DV
6444/* Simple connector->get_hw_state implementation for encoders that support only
6445 * one connector and no cloning and hence the encoder state determines the state
6446 * of the connector. */
6447bool intel_connector_get_hw_state(struct intel_connector *connector)
ea5b213a 6448{
24929352 6449 enum pipe pipe = 0;
f0947c37 6450 struct intel_encoder *encoder = connector->encoder;
ea5b213a 6451
f0947c37 6452 return encoder->get_hw_state(encoder, &pipe);
ea5b213a
CW
6453}
6454
6d293983 6455static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
d272ddfa 6456{
6d293983
ACO
6457 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
6458 return crtc_state->fdi_lanes;
d272ddfa
VS
6459
6460 return 0;
6461}
6462
6d293983 6463static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
5cec258b 6464 struct intel_crtc_state *pipe_config)
1857e1da 6465{
6d293983
ACO
6466 struct drm_atomic_state *state = pipe_config->base.state;
6467 struct intel_crtc *other_crtc;
6468 struct intel_crtc_state *other_crtc_state;
6469
1857e1da
DV
6470 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
6471 pipe_name(pipe), pipe_config->fdi_lanes);
6472 if (pipe_config->fdi_lanes > 4) {
6473 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
6474 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6475 return -EINVAL;
1857e1da
DV
6476 }
6477
bafb6553 6478 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
1857e1da
DV
6479 if (pipe_config->fdi_lanes > 2) {
6480 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
6481 pipe_config->fdi_lanes);
6d293983 6482 return -EINVAL;
1857e1da 6483 } else {
6d293983 6484 return 0;
1857e1da
DV
6485 }
6486 }
6487
6488 if (INTEL_INFO(dev)->num_pipes == 2)
6d293983 6489 return 0;
1857e1da
DV
6490
6491 /* Ivybridge 3 pipe is really complicated */
6492 switch (pipe) {
6493 case PIPE_A:
6d293983 6494 return 0;
1857e1da 6495 case PIPE_B:
6d293983
ACO
6496 if (pipe_config->fdi_lanes <= 2)
6497 return 0;
6498
6499 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
6500 other_crtc_state =
6501 intel_atomic_get_crtc_state(state, other_crtc);
6502 if (IS_ERR(other_crtc_state))
6503 return PTR_ERR(other_crtc_state);
6504
6505 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
1857e1da
DV
6506 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
6507 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6508 return -EINVAL;
1857e1da 6509 }
6d293983 6510 return 0;
1857e1da 6511 case PIPE_C:
251cc67c
VS
6512 if (pipe_config->fdi_lanes > 2) {
6513 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
6514 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6515 return -EINVAL;
251cc67c 6516 }
6d293983
ACO
6517
6518 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
6519 other_crtc_state =
6520 intel_atomic_get_crtc_state(state, other_crtc);
6521 if (IS_ERR(other_crtc_state))
6522 return PTR_ERR(other_crtc_state);
6523
6524 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
1857e1da 6525 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
6d293983 6526 return -EINVAL;
1857e1da 6527 }
6d293983 6528 return 0;
1857e1da
DV
6529 default:
6530 BUG();
6531 }
6532}
6533
e29c22c0
DV
6534#define RETRY 1
6535static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5cec258b 6536 struct intel_crtc_state *pipe_config)
877d48d5 6537{
1857e1da 6538 struct drm_device *dev = intel_crtc->base.dev;
7c5f93b0 6539 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
6d293983
ACO
6540 int lane, link_bw, fdi_dotclock, ret;
6541 bool needs_recompute = false;
877d48d5 6542
e29c22c0 6543retry:
877d48d5
DV
6544 /* FDI is a binary signal running at ~2.7GHz, encoding
6545 * each output octet as 10 bits. The actual frequency
6546 * is stored as a divider into a 100MHz clock, and the
6547 * mode pixel clock is stored in units of 1KHz.
6548 * Hence the bw of each lane in terms of the mode signal
6549 * is:
6550 */
21a727b3 6551 link_bw = intel_fdi_link_freq(to_i915(dev), pipe_config);
877d48d5 6552
241bfc38 6553 fdi_dotclock = adjusted_mode->crtc_clock;
877d48d5 6554
2bd89a07 6555 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
877d48d5
DV
6556 pipe_config->pipe_bpp);
6557
6558 pipe_config->fdi_lanes = lane;
6559
2bd89a07 6560 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
877d48d5 6561 link_bw, &pipe_config->fdi_m_n);
1857e1da 6562
e3b247da 6563 ret = ironlake_check_fdi_lanes(dev, intel_crtc->pipe, pipe_config);
6d293983 6564 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
e29c22c0
DV
6565 pipe_config->pipe_bpp -= 2*3;
6566 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
6567 pipe_config->pipe_bpp);
6568 needs_recompute = true;
6569 pipe_config->bw_constrained = true;
6570
6571 goto retry;
6572 }
6573
6574 if (needs_recompute)
6575 return RETRY;
6576
6d293983 6577 return ret;
877d48d5
DV
6578}
6579
8cfb3407
VS
6580static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv,
6581 struct intel_crtc_state *pipe_config)
6582{
6583 if (pipe_config->pipe_bpp > 24)
6584 return false;
6585
6586 /* HSW can handle pixel rate up to cdclk? */
2d1fe073 6587 if (IS_HASWELL(dev_priv))
8cfb3407
VS
6588 return true;
6589
6590 /*
b432e5cf
VS
6591 * We compare against max which means we must take
6592 * the increased cdclk requirement into account when
6593 * calculating the new cdclk.
6594 *
6595 * Should measure whether using a lower cdclk w/o IPS
8cfb3407
VS
6596 */
6597 return ilk_pipe_pixel_rate(pipe_config) <=
6598 dev_priv->max_cdclk_freq * 95 / 100;
6599}
6600
42db64ef 6601static void hsw_compute_ips_config(struct intel_crtc *crtc,
5cec258b 6602 struct intel_crtc_state *pipe_config)
42db64ef 6603{
8cfb3407
VS
6604 struct drm_device *dev = crtc->base.dev;
6605 struct drm_i915_private *dev_priv = dev->dev_private;
6606
d330a953 6607 pipe_config->ips_enabled = i915.enable_ips &&
8cfb3407
VS
6608 hsw_crtc_supports_ips(crtc) &&
6609 pipe_config_supports_ips(dev_priv, pipe_config);
42db64ef
PZ
6610}
6611
39acb4aa
VS
6612static bool intel_crtc_supports_double_wide(const struct intel_crtc *crtc)
6613{
6614 const struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6615
6616 /* GDG double wide on either pipe, otherwise pipe A only */
6617 return INTEL_INFO(dev_priv)->gen < 4 &&
6618 (crtc->pipe == PIPE_A || IS_I915G(dev_priv));
6619}
6620
a43f6e0f 6621static int intel_crtc_compute_config(struct intel_crtc *crtc,
5cec258b 6622 struct intel_crtc_state *pipe_config)
79e53945 6623{
a43f6e0f 6624 struct drm_device *dev = crtc->base.dev;
8bd31e67 6625 struct drm_i915_private *dev_priv = dev->dev_private;
7c5f93b0 6626 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
89749350 6627
ad3a4479 6628 /* FIXME should check pixel clock limits on all platforms */
cf532bb2 6629 if (INTEL_INFO(dev)->gen < 4) {
39acb4aa 6630 int clock_limit = dev_priv->max_cdclk_freq * 9 / 10;
cf532bb2
VS
6631
6632 /*
39acb4aa 6633 * Enable double wide mode when the dot clock
cf532bb2 6634 * is > 90% of the (display) core speed.
cf532bb2 6635 */
39acb4aa
VS
6636 if (intel_crtc_supports_double_wide(crtc) &&
6637 adjusted_mode->crtc_clock > clock_limit) {
ad3a4479 6638 clock_limit *= 2;
cf532bb2 6639 pipe_config->double_wide = true;
ad3a4479
VS
6640 }
6641
39acb4aa
VS
6642 if (adjusted_mode->crtc_clock > clock_limit) {
6643 DRM_DEBUG_KMS("requested pixel clock (%d kHz) too high (max: %d kHz, double wide: %s)\n",
6644 adjusted_mode->crtc_clock, clock_limit,
6645 yesno(pipe_config->double_wide));
e29c22c0 6646 return -EINVAL;
39acb4aa 6647 }
2c07245f 6648 }
89749350 6649
1d1d0e27
VS
6650 /*
6651 * Pipe horizontal size must be even in:
6652 * - DVO ganged mode
6653 * - LVDS dual channel mode
6654 * - Double wide pipe
6655 */
a93e255f 6656 if ((intel_pipe_will_have_type(pipe_config, INTEL_OUTPUT_LVDS) &&
1d1d0e27
VS
6657 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
6658 pipe_config->pipe_src_w &= ~1;
6659
8693a824
DL
6660 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
6661 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
44f46b42
CW
6662 */
6663 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
aad941d5 6664 adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay)
e29c22c0 6665 return -EINVAL;
44f46b42 6666
f5adf94e 6667 if (HAS_IPS(dev))
a43f6e0f
DV
6668 hsw_compute_ips_config(crtc, pipe_config);
6669
877d48d5 6670 if (pipe_config->has_pch_encoder)
a43f6e0f 6671 return ironlake_fdi_compute_config(crtc, pipe_config);
877d48d5 6672
cf5a15be 6673 return 0;
79e53945
JB
6674}
6675
1652d19e
VS
6676static int skylake_get_display_clock_speed(struct drm_device *dev)
6677{
6678 struct drm_i915_private *dev_priv = to_i915(dev);
ea61791e 6679 uint32_t cdctl;
1652d19e 6680
ea61791e 6681 skl_dpll0_update(dev_priv);
1652d19e 6682
63911d72 6683 if (dev_priv->cdclk_pll.vco == 0)
709e05c3 6684 return dev_priv->cdclk_pll.ref;
1652d19e 6685
ea61791e 6686 cdctl = I915_READ(CDCLK_CTL);
1652d19e 6687
63911d72 6688 if (dev_priv->cdclk_pll.vco == 8640000) {
1652d19e
VS
6689 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6690 case CDCLK_FREQ_450_432:
6691 return 432000;
6692 case CDCLK_FREQ_337_308:
487ed2e4 6693 return 308571;
ea61791e
VS
6694 case CDCLK_FREQ_540:
6695 return 540000;
1652d19e 6696 case CDCLK_FREQ_675_617:
487ed2e4 6697 return 617143;
1652d19e 6698 default:
ea61791e 6699 MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK);
1652d19e
VS
6700 }
6701 } else {
1652d19e
VS
6702 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6703 case CDCLK_FREQ_450_432:
6704 return 450000;
6705 case CDCLK_FREQ_337_308:
6706 return 337500;
ea61791e
VS
6707 case CDCLK_FREQ_540:
6708 return 540000;
1652d19e
VS
6709 case CDCLK_FREQ_675_617:
6710 return 675000;
6711 default:
ea61791e 6712 MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK);
1652d19e
VS
6713 }
6714 }
6715
709e05c3 6716 return dev_priv->cdclk_pll.ref;
1652d19e
VS
6717}
6718
83d7c81f
VS
6719static void bxt_de_pll_update(struct drm_i915_private *dev_priv)
6720{
6721 u32 val;
6722
6723 dev_priv->cdclk_pll.ref = 19200;
1c3f7700 6724 dev_priv->cdclk_pll.vco = 0;
83d7c81f
VS
6725
6726 val = I915_READ(BXT_DE_PLL_ENABLE);
1c3f7700 6727 if ((val & BXT_DE_PLL_PLL_ENABLE) == 0)
83d7c81f 6728 return;
83d7c81f 6729
1c3f7700
ID
6730 if (WARN_ON((val & BXT_DE_PLL_LOCK) == 0))
6731 return;
83d7c81f
VS
6732
6733 val = I915_READ(BXT_DE_PLL_CTL);
6734 dev_priv->cdclk_pll.vco = (val & BXT_DE_PLL_RATIO_MASK) *
6735 dev_priv->cdclk_pll.ref;
6736}
6737
acd3f3d3
BP
6738static int broxton_get_display_clock_speed(struct drm_device *dev)
6739{
6740 struct drm_i915_private *dev_priv = to_i915(dev);
f5986242
VS
6741 u32 divider;
6742 int div, vco;
acd3f3d3 6743
83d7c81f
VS
6744 bxt_de_pll_update(dev_priv);
6745
f5986242
VS
6746 vco = dev_priv->cdclk_pll.vco;
6747 if (vco == 0)
6748 return dev_priv->cdclk_pll.ref;
acd3f3d3 6749
f5986242 6750 divider = I915_READ(CDCLK_CTL) & BXT_CDCLK_CD2X_DIV_SEL_MASK;
acd3f3d3 6751
f5986242 6752 switch (divider) {
acd3f3d3 6753 case BXT_CDCLK_CD2X_DIV_SEL_1:
f5986242
VS
6754 div = 2;
6755 break;
acd3f3d3 6756 case BXT_CDCLK_CD2X_DIV_SEL_1_5:
f5986242
VS
6757 div = 3;
6758 break;
acd3f3d3 6759 case BXT_CDCLK_CD2X_DIV_SEL_2:
f5986242
VS
6760 div = 4;
6761 break;
acd3f3d3 6762 case BXT_CDCLK_CD2X_DIV_SEL_4:
f5986242
VS
6763 div = 8;
6764 break;
6765 default:
6766 MISSING_CASE(divider);
6767 return dev_priv->cdclk_pll.ref;
acd3f3d3
BP
6768 }
6769
f5986242 6770 return DIV_ROUND_CLOSEST(vco, div);
acd3f3d3
BP
6771}
6772
1652d19e
VS
6773static int broadwell_get_display_clock_speed(struct drm_device *dev)
6774{
6775 struct drm_i915_private *dev_priv = dev->dev_private;
6776 uint32_t lcpll = I915_READ(LCPLL_CTL);
6777 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6778
6779 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6780 return 800000;
6781 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6782 return 450000;
6783 else if (freq == LCPLL_CLK_FREQ_450)
6784 return 450000;
6785 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
6786 return 540000;
6787 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
6788 return 337500;
6789 else
6790 return 675000;
6791}
6792
6793static int haswell_get_display_clock_speed(struct drm_device *dev)
6794{
6795 struct drm_i915_private *dev_priv = dev->dev_private;
6796 uint32_t lcpll = I915_READ(LCPLL_CTL);
6797 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6798
6799 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6800 return 800000;
6801 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6802 return 450000;
6803 else if (freq == LCPLL_CLK_FREQ_450)
6804 return 450000;
6805 else if (IS_HSW_ULT(dev))
6806 return 337500;
6807 else
6808 return 540000;
79e53945
JB
6809}
6810
25eb05fc
JB
6811static int valleyview_get_display_clock_speed(struct drm_device *dev)
6812{
bfa7df01
VS
6813 return vlv_get_cck_clock_hpll(to_i915(dev), "cdclk",
6814 CCK_DISPLAY_CLOCK_CONTROL);
25eb05fc
JB
6815}
6816
b37a6434
VS
6817static int ilk_get_display_clock_speed(struct drm_device *dev)
6818{
6819 return 450000;
6820}
6821
e70236a8
JB
6822static int i945_get_display_clock_speed(struct drm_device *dev)
6823{
6824 return 400000;
6825}
79e53945 6826
e70236a8 6827static int i915_get_display_clock_speed(struct drm_device *dev)
79e53945 6828{
e907f170 6829 return 333333;
e70236a8 6830}
79e53945 6831
e70236a8
JB
6832static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
6833{
6834 return 200000;
6835}
79e53945 6836
257a7ffc
DV
6837static int pnv_get_display_clock_speed(struct drm_device *dev)
6838{
6839 u16 gcfgc = 0;
6840
6841 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6842
6843 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6844 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
e907f170 6845 return 266667;
257a7ffc 6846 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
e907f170 6847 return 333333;
257a7ffc 6848 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
e907f170 6849 return 444444;
257a7ffc
DV
6850 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
6851 return 200000;
6852 default:
6853 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
6854 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
e907f170 6855 return 133333;
257a7ffc 6856 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
e907f170 6857 return 166667;
257a7ffc
DV
6858 }
6859}
6860
e70236a8
JB
6861static int i915gm_get_display_clock_speed(struct drm_device *dev)
6862{
6863 u16 gcfgc = 0;
79e53945 6864
e70236a8
JB
6865 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6866
6867 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
e907f170 6868 return 133333;
e70236a8
JB
6869 else {
6870 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6871 case GC_DISPLAY_CLOCK_333_MHZ:
e907f170 6872 return 333333;
e70236a8
JB
6873 default:
6874 case GC_DISPLAY_CLOCK_190_200_MHZ:
6875 return 190000;
79e53945 6876 }
e70236a8
JB
6877 }
6878}
6879
6880static int i865_get_display_clock_speed(struct drm_device *dev)
6881{
e907f170 6882 return 266667;
e70236a8
JB
6883}
6884
1b1d2716 6885static int i85x_get_display_clock_speed(struct drm_device *dev)
e70236a8
JB
6886{
6887 u16 hpllcc = 0;
1b1d2716 6888
65cd2b3f
VS
6889 /*
6890 * 852GM/852GMV only supports 133 MHz and the HPLLCC
6891 * encoding is different :(
6892 * FIXME is this the right way to detect 852GM/852GMV?
6893 */
6894 if (dev->pdev->revision == 0x1)
6895 return 133333;
6896
1b1d2716
VS
6897 pci_bus_read_config_word(dev->pdev->bus,
6898 PCI_DEVFN(0, 3), HPLLCC, &hpllcc);
6899
e70236a8
JB
6900 /* Assume that the hardware is in the high speed state. This
6901 * should be the default.
6902 */
6903 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
6904 case GC_CLOCK_133_200:
1b1d2716 6905 case GC_CLOCK_133_200_2:
e70236a8
JB
6906 case GC_CLOCK_100_200:
6907 return 200000;
6908 case GC_CLOCK_166_250:
6909 return 250000;
6910 case GC_CLOCK_100_133:
e907f170 6911 return 133333;
1b1d2716
VS
6912 case GC_CLOCK_133_266:
6913 case GC_CLOCK_133_266_2:
6914 case GC_CLOCK_166_266:
6915 return 266667;
e70236a8 6916 }
79e53945 6917
e70236a8
JB
6918 /* Shouldn't happen */
6919 return 0;
6920}
79e53945 6921
e70236a8
JB
6922static int i830_get_display_clock_speed(struct drm_device *dev)
6923{
e907f170 6924 return 133333;
79e53945
JB
6925}
6926
34edce2f
VS
6927static unsigned int intel_hpll_vco(struct drm_device *dev)
6928{
6929 struct drm_i915_private *dev_priv = dev->dev_private;
6930 static const unsigned int blb_vco[8] = {
6931 [0] = 3200000,
6932 [1] = 4000000,
6933 [2] = 5333333,
6934 [3] = 4800000,
6935 [4] = 6400000,
6936 };
6937 static const unsigned int pnv_vco[8] = {
6938 [0] = 3200000,
6939 [1] = 4000000,
6940 [2] = 5333333,
6941 [3] = 4800000,
6942 [4] = 2666667,
6943 };
6944 static const unsigned int cl_vco[8] = {
6945 [0] = 3200000,
6946 [1] = 4000000,
6947 [2] = 5333333,
6948 [3] = 6400000,
6949 [4] = 3333333,
6950 [5] = 3566667,
6951 [6] = 4266667,
6952 };
6953 static const unsigned int elk_vco[8] = {
6954 [0] = 3200000,
6955 [1] = 4000000,
6956 [2] = 5333333,
6957 [3] = 4800000,
6958 };
6959 static const unsigned int ctg_vco[8] = {
6960 [0] = 3200000,
6961 [1] = 4000000,
6962 [2] = 5333333,
6963 [3] = 6400000,
6964 [4] = 2666667,
6965 [5] = 4266667,
6966 };
6967 const unsigned int *vco_table;
6968 unsigned int vco;
6969 uint8_t tmp = 0;
6970
6971 /* FIXME other chipsets? */
6972 if (IS_GM45(dev))
6973 vco_table = ctg_vco;
6974 else if (IS_G4X(dev))
6975 vco_table = elk_vco;
6976 else if (IS_CRESTLINE(dev))
6977 vco_table = cl_vco;
6978 else if (IS_PINEVIEW(dev))
6979 vco_table = pnv_vco;
6980 else if (IS_G33(dev))
6981 vco_table = blb_vco;
6982 else
6983 return 0;
6984
6985 tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO);
6986
6987 vco = vco_table[tmp & 0x7];
6988 if (vco == 0)
6989 DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp);
6990 else
6991 DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco);
6992
6993 return vco;
6994}
6995
6996static int gm45_get_display_clock_speed(struct drm_device *dev)
6997{
6998 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
6999 uint16_t tmp = 0;
7000
7001 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7002
7003 cdclk_sel = (tmp >> 12) & 0x1;
7004
7005 switch (vco) {
7006 case 2666667:
7007 case 4000000:
7008 case 5333333:
7009 return cdclk_sel ? 333333 : 222222;
7010 case 3200000:
7011 return cdclk_sel ? 320000 : 228571;
7012 default:
7013 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp);
7014 return 222222;
7015 }
7016}
7017
7018static int i965gm_get_display_clock_speed(struct drm_device *dev)
7019{
7020 static const uint8_t div_3200[] = { 16, 10, 8 };
7021 static const uint8_t div_4000[] = { 20, 12, 10 };
7022 static const uint8_t div_5333[] = { 24, 16, 14 };
7023 const uint8_t *div_table;
7024 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7025 uint16_t tmp = 0;
7026
7027 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7028
7029 cdclk_sel = ((tmp >> 8) & 0x1f) - 1;
7030
7031 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7032 goto fail;
7033
7034 switch (vco) {
7035 case 3200000:
7036 div_table = div_3200;
7037 break;
7038 case 4000000:
7039 div_table = div_4000;
7040 break;
7041 case 5333333:
7042 div_table = div_5333;
7043 break;
7044 default:
7045 goto fail;
7046 }
7047
7048 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7049
caf4e252 7050fail:
34edce2f
VS
7051 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp);
7052 return 200000;
7053}
7054
7055static int g33_get_display_clock_speed(struct drm_device *dev)
7056{
7057 static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 };
7058 static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 };
7059 static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 };
7060 static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 };
7061 const uint8_t *div_table;
7062 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7063 uint16_t tmp = 0;
7064
7065 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7066
7067 cdclk_sel = (tmp >> 4) & 0x7;
7068
7069 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7070 goto fail;
7071
7072 switch (vco) {
7073 case 3200000:
7074 div_table = div_3200;
7075 break;
7076 case 4000000:
7077 div_table = div_4000;
7078 break;
7079 case 4800000:
7080 div_table = div_4800;
7081 break;
7082 case 5333333:
7083 div_table = div_5333;
7084 break;
7085 default:
7086 goto fail;
7087 }
7088
7089 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7090
caf4e252 7091fail:
34edce2f
VS
7092 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp);
7093 return 190476;
7094}
7095
2c07245f 7096static void
a65851af 7097intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
2c07245f 7098{
a65851af
VS
7099 while (*num > DATA_LINK_M_N_MASK ||
7100 *den > DATA_LINK_M_N_MASK) {
2c07245f
ZW
7101 *num >>= 1;
7102 *den >>= 1;
7103 }
7104}
7105
a65851af
VS
7106static void compute_m_n(unsigned int m, unsigned int n,
7107 uint32_t *ret_m, uint32_t *ret_n)
7108{
7109 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
7110 *ret_m = div_u64((uint64_t) m * *ret_n, n);
7111 intel_reduce_m_n_ratio(ret_m, ret_n);
7112}
7113
e69d0bc1
DV
7114void
7115intel_link_compute_m_n(int bits_per_pixel, int nlanes,
7116 int pixel_clock, int link_clock,
7117 struct intel_link_m_n *m_n)
2c07245f 7118{
e69d0bc1 7119 m_n->tu = 64;
a65851af
VS
7120
7121 compute_m_n(bits_per_pixel * pixel_clock,
7122 link_clock * nlanes * 8,
7123 &m_n->gmch_m, &m_n->gmch_n);
7124
7125 compute_m_n(pixel_clock, link_clock,
7126 &m_n->link_m, &m_n->link_n);
2c07245f
ZW
7127}
7128
a7615030
CW
7129static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
7130{
d330a953
JN
7131 if (i915.panel_use_ssc >= 0)
7132 return i915.panel_use_ssc != 0;
41aa3448 7133 return dev_priv->vbt.lvds_use_ssc
435793df 7134 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
a7615030
CW
7135}
7136
7429e9d4 7137static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
c65d77d8 7138{
7df00d7a 7139 return (1 << dpll->n) << 16 | dpll->m2;
7429e9d4 7140}
f47709a9 7141
7429e9d4
DV
7142static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
7143{
7144 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
c65d77d8
JB
7145}
7146
f47709a9 7147static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
190f68c5 7148 struct intel_crtc_state *crtc_state,
9e2c8475 7149 struct dpll *reduced_clock)
a7516a05 7150{
f47709a9 7151 struct drm_device *dev = crtc->base.dev;
a7516a05
JB
7152 u32 fp, fp2 = 0;
7153
7154 if (IS_PINEVIEW(dev)) {
190f68c5 7155 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
a7516a05 7156 if (reduced_clock)
7429e9d4 7157 fp2 = pnv_dpll_compute_fp(reduced_clock);
a7516a05 7158 } else {
190f68c5 7159 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
a7516a05 7160 if (reduced_clock)
7429e9d4 7161 fp2 = i9xx_dpll_compute_fp(reduced_clock);
a7516a05
JB
7162 }
7163
190f68c5 7164 crtc_state->dpll_hw_state.fp0 = fp;
a7516a05 7165
f47709a9 7166 crtc->lowfreq_avail = false;
a93e255f 7167 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ab585dea 7168 reduced_clock) {
190f68c5 7169 crtc_state->dpll_hw_state.fp1 = fp2;
f47709a9 7170 crtc->lowfreq_avail = true;
a7516a05 7171 } else {
190f68c5 7172 crtc_state->dpll_hw_state.fp1 = fp;
a7516a05
JB
7173 }
7174}
7175
5e69f97f
CML
7176static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
7177 pipe)
89b667f8
JB
7178{
7179 u32 reg_val;
7180
7181 /*
7182 * PLLB opamp always calibrates to max value of 0x3f, force enable it
7183 * and set it to a reasonable value instead.
7184 */
ab3c759a 7185 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8
JB
7186 reg_val &= 0xffffff00;
7187 reg_val |= 0x00000030;
ab3c759a 7188 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 7189
ab3c759a 7190 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
7191 reg_val &= 0x8cffffff;
7192 reg_val = 0x8c000000;
ab3c759a 7193 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8 7194
ab3c759a 7195 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8 7196 reg_val &= 0xffffff00;
ab3c759a 7197 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 7198
ab3c759a 7199 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
7200 reg_val &= 0x00ffffff;
7201 reg_val |= 0xb0000000;
ab3c759a 7202 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8
JB
7203}
7204
b551842d
DV
7205static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
7206 struct intel_link_m_n *m_n)
7207{
7208 struct drm_device *dev = crtc->base.dev;
7209 struct drm_i915_private *dev_priv = dev->dev_private;
7210 int pipe = crtc->pipe;
7211
e3b95f1e
DV
7212 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7213 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
7214 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
7215 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
b551842d
DV
7216}
7217
7218static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
f769cd24
VK
7219 struct intel_link_m_n *m_n,
7220 struct intel_link_m_n *m2_n2)
b551842d
DV
7221{
7222 struct drm_device *dev = crtc->base.dev;
7223 struct drm_i915_private *dev_priv = dev->dev_private;
7224 int pipe = crtc->pipe;
6e3c9717 7225 enum transcoder transcoder = crtc->config->cpu_transcoder;
b551842d
DV
7226
7227 if (INTEL_INFO(dev)->gen >= 5) {
7228 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
7229 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
7230 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
7231 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
f769cd24
VK
7232 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
7233 * for gen < 8) and if DRRS is supported (to make sure the
7234 * registers are not unnecessarily accessed).
7235 */
44395bfe 7236 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
6e3c9717 7237 crtc->config->has_drrs) {
f769cd24
VK
7238 I915_WRITE(PIPE_DATA_M2(transcoder),
7239 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
7240 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
7241 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
7242 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
7243 }
b551842d 7244 } else {
e3b95f1e
DV
7245 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7246 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
7247 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
7248 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
b551842d
DV
7249 }
7250}
7251
fe3cd48d 7252void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
03afc4a2 7253{
fe3cd48d
R
7254 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
7255
7256 if (m_n == M1_N1) {
7257 dp_m_n = &crtc->config->dp_m_n;
7258 dp_m2_n2 = &crtc->config->dp_m2_n2;
7259 } else if (m_n == M2_N2) {
7260
7261 /*
7262 * M2_N2 registers are not supported. Hence m2_n2 divider value
7263 * needs to be programmed into M1_N1.
7264 */
7265 dp_m_n = &crtc->config->dp_m2_n2;
7266 } else {
7267 DRM_ERROR("Unsupported divider value\n");
7268 return;
7269 }
7270
6e3c9717
ACO
7271 if (crtc->config->has_pch_encoder)
7272 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
03afc4a2 7273 else
fe3cd48d 7274 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
03afc4a2
DV
7275}
7276
251ac862
DV
7277static void vlv_compute_dpll(struct intel_crtc *crtc,
7278 struct intel_crtc_state *pipe_config)
bdd4b6a6 7279{
03ed5cbf 7280 pipe_config->dpll_hw_state.dpll = DPLL_INTEGRATED_REF_CLK_VLV |
cd2d34d9 7281 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
03ed5cbf
VS
7282 if (crtc->pipe != PIPE_A)
7283 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
bdd4b6a6 7284
cd2d34d9 7285 /* DPLL not used with DSI, but still need the rest set up */
187a1c07 7286 if (!pipe_config->has_dsi_encoder)
cd2d34d9
VS
7287 pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE |
7288 DPLL_EXT_BUFFER_ENABLE_VLV;
7289
03ed5cbf
VS
7290 pipe_config->dpll_hw_state.dpll_md =
7291 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
7292}
bdd4b6a6 7293
03ed5cbf
VS
7294static void chv_compute_dpll(struct intel_crtc *crtc,
7295 struct intel_crtc_state *pipe_config)
7296{
7297 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV |
cd2d34d9 7298 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
03ed5cbf
VS
7299 if (crtc->pipe != PIPE_A)
7300 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7301
cd2d34d9 7302 /* DPLL not used with DSI, but still need the rest set up */
187a1c07 7303 if (!pipe_config->has_dsi_encoder)
cd2d34d9
VS
7304 pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE;
7305
03ed5cbf
VS
7306 pipe_config->dpll_hw_state.dpll_md =
7307 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
bdd4b6a6
DV
7308}
7309
d288f65f 7310static void vlv_prepare_pll(struct intel_crtc *crtc,
5cec258b 7311 const struct intel_crtc_state *pipe_config)
a0c4da24 7312{
f47709a9 7313 struct drm_device *dev = crtc->base.dev;
a0c4da24 7314 struct drm_i915_private *dev_priv = dev->dev_private;
cd2d34d9 7315 enum pipe pipe = crtc->pipe;
bdd4b6a6 7316 u32 mdiv;
a0c4da24 7317 u32 bestn, bestm1, bestm2, bestp1, bestp2;
bdd4b6a6 7318 u32 coreclk, reg_val;
a0c4da24 7319
cd2d34d9
VS
7320 /* Enable Refclk */
7321 I915_WRITE(DPLL(pipe),
7322 pipe_config->dpll_hw_state.dpll &
7323 ~(DPLL_VCO_ENABLE | DPLL_EXT_BUFFER_ENABLE_VLV));
7324
7325 /* No need to actually set up the DPLL with DSI */
7326 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
7327 return;
7328
a580516d 7329 mutex_lock(&dev_priv->sb_lock);
09153000 7330
d288f65f
VS
7331 bestn = pipe_config->dpll.n;
7332 bestm1 = pipe_config->dpll.m1;
7333 bestm2 = pipe_config->dpll.m2;
7334 bestp1 = pipe_config->dpll.p1;
7335 bestp2 = pipe_config->dpll.p2;
a0c4da24 7336
89b667f8
JB
7337 /* See eDP HDMI DPIO driver vbios notes doc */
7338
7339 /* PLL B needs special handling */
bdd4b6a6 7340 if (pipe == PIPE_B)
5e69f97f 7341 vlv_pllb_recal_opamp(dev_priv, pipe);
89b667f8
JB
7342
7343 /* Set up Tx target for periodic Rcomp update */
ab3c759a 7344 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
89b667f8
JB
7345
7346 /* Disable target IRef on PLL */
ab3c759a 7347 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
89b667f8 7348 reg_val &= 0x00ffffff;
ab3c759a 7349 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
89b667f8
JB
7350
7351 /* Disable fast lock */
ab3c759a 7352 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
89b667f8
JB
7353
7354 /* Set idtafcrecal before PLL is enabled */
a0c4da24
JB
7355 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
7356 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
7357 mdiv |= ((bestn << DPIO_N_SHIFT));
a0c4da24 7358 mdiv |= (1 << DPIO_K_SHIFT);
7df5080b
JB
7359
7360 /*
7361 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
7362 * but we don't support that).
7363 * Note: don't use the DAC post divider as it seems unstable.
7364 */
7365 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
ab3c759a 7366 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 7367
a0c4da24 7368 mdiv |= DPIO_ENABLE_CALIBRATION;
ab3c759a 7369 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 7370
89b667f8 7371 /* Set HBR and RBR LPF coefficients */
d288f65f 7372 if (pipe_config->port_clock == 162000 ||
409ee761
ACO
7373 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
7374 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
ab3c759a 7375 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
885b0120 7376 0x009f0003);
89b667f8 7377 else
ab3c759a 7378 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
89b667f8
JB
7379 0x00d0000f);
7380
681a8504 7381 if (pipe_config->has_dp_encoder) {
89b667f8 7382 /* Use SSC source */
bdd4b6a6 7383 if (pipe == PIPE_A)
ab3c759a 7384 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7385 0x0df40000);
7386 else
ab3c759a 7387 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7388 0x0df70000);
7389 } else { /* HDMI or VGA */
7390 /* Use bend source */
bdd4b6a6 7391 if (pipe == PIPE_A)
ab3c759a 7392 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7393 0x0df70000);
7394 else
ab3c759a 7395 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7396 0x0df40000);
7397 }
a0c4da24 7398
ab3c759a 7399 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
89b667f8 7400 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
409ee761
ACO
7401 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
7402 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
89b667f8 7403 coreclk |= 0x01000000;
ab3c759a 7404 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
a0c4da24 7405
ab3c759a 7406 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
a580516d 7407 mutex_unlock(&dev_priv->sb_lock);
a0c4da24
JB
7408}
7409
d288f65f 7410static void chv_prepare_pll(struct intel_crtc *crtc,
5cec258b 7411 const struct intel_crtc_state *pipe_config)
9d556c99
CML
7412{
7413 struct drm_device *dev = crtc->base.dev;
7414 struct drm_i915_private *dev_priv = dev->dev_private;
cd2d34d9 7415 enum pipe pipe = crtc->pipe;
9d556c99 7416 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9cbe40c1 7417 u32 loopfilter, tribuf_calcntr;
9d556c99 7418 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
a945ce7e 7419 u32 dpio_val;
9cbe40c1 7420 int vco;
9d556c99 7421
cd2d34d9
VS
7422 /* Enable Refclk and SSC */
7423 I915_WRITE(DPLL(pipe),
7424 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
7425
7426 /* No need to actually set up the DPLL with DSI */
7427 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
7428 return;
7429
d288f65f
VS
7430 bestn = pipe_config->dpll.n;
7431 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7432 bestm1 = pipe_config->dpll.m1;
7433 bestm2 = pipe_config->dpll.m2 >> 22;
7434 bestp1 = pipe_config->dpll.p1;
7435 bestp2 = pipe_config->dpll.p2;
9cbe40c1 7436 vco = pipe_config->dpll.vco;
a945ce7e 7437 dpio_val = 0;
9cbe40c1 7438 loopfilter = 0;
9d556c99 7439
a580516d 7440 mutex_lock(&dev_priv->sb_lock);
9d556c99 7441
9d556c99
CML
7442 /* p1 and p2 divider */
7443 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
7444 5 << DPIO_CHV_S1_DIV_SHIFT |
7445 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
7446 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
7447 1 << DPIO_CHV_K_DIV_SHIFT);
7448
7449 /* Feedback post-divider - m2 */
7450 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
7451
7452 /* Feedback refclk divider - n and m1 */
7453 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
7454 DPIO_CHV_M1_DIV_BY_2 |
7455 1 << DPIO_CHV_N_DIV_SHIFT);
7456
7457 /* M2 fraction division */
25a25dfc 7458 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
9d556c99
CML
7459
7460 /* M2 fraction division enable */
a945ce7e
VP
7461 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
7462 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
7463 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
7464 if (bestm2_frac)
7465 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
7466 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
9d556c99 7467
de3a0fde
VP
7468 /* Program digital lock detect threshold */
7469 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
7470 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
7471 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
7472 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
7473 if (!bestm2_frac)
7474 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
7475 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
7476
9d556c99 7477 /* Loop filter */
9cbe40c1
VP
7478 if (vco == 5400000) {
7479 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
7480 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
7481 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
7482 tribuf_calcntr = 0x9;
7483 } else if (vco <= 6200000) {
7484 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
7485 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
7486 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7487 tribuf_calcntr = 0x9;
7488 } else if (vco <= 6480000) {
7489 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7490 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7491 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7492 tribuf_calcntr = 0x8;
7493 } else {
7494 /* Not supported. Apply the same limits as in the max case */
7495 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7496 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7497 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7498 tribuf_calcntr = 0;
7499 }
9d556c99
CML
7500 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
7501
968040b2 7502 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
9cbe40c1
VP
7503 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
7504 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
7505 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
7506
9d556c99
CML
7507 /* AFC Recal */
7508 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
7509 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
7510 DPIO_AFC_RECAL);
7511
a580516d 7512 mutex_unlock(&dev_priv->sb_lock);
9d556c99
CML
7513}
7514
d288f65f
VS
7515/**
7516 * vlv_force_pll_on - forcibly enable just the PLL
7517 * @dev_priv: i915 private structure
7518 * @pipe: pipe PLL to enable
7519 * @dpll: PLL configuration
7520 *
7521 * Enable the PLL for @pipe using the supplied @dpll config. To be used
7522 * in cases where we need the PLL enabled even when @pipe is not going to
7523 * be enabled.
7524 */
3f36b937
TU
7525int vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
7526 const struct dpll *dpll)
d288f65f
VS
7527{
7528 struct intel_crtc *crtc =
7529 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
3f36b937
TU
7530 struct intel_crtc_state *pipe_config;
7531
7532 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
7533 if (!pipe_config)
7534 return -ENOMEM;
7535
7536 pipe_config->base.crtc = &crtc->base;
7537 pipe_config->pixel_multiplier = 1;
7538 pipe_config->dpll = *dpll;
d288f65f
VS
7539
7540 if (IS_CHERRYVIEW(dev)) {
3f36b937
TU
7541 chv_compute_dpll(crtc, pipe_config);
7542 chv_prepare_pll(crtc, pipe_config);
7543 chv_enable_pll(crtc, pipe_config);
d288f65f 7544 } else {
3f36b937
TU
7545 vlv_compute_dpll(crtc, pipe_config);
7546 vlv_prepare_pll(crtc, pipe_config);
7547 vlv_enable_pll(crtc, pipe_config);
d288f65f 7548 }
3f36b937
TU
7549
7550 kfree(pipe_config);
7551
7552 return 0;
d288f65f
VS
7553}
7554
7555/**
7556 * vlv_force_pll_off - forcibly disable just the PLL
7557 * @dev_priv: i915 private structure
7558 * @pipe: pipe PLL to disable
7559 *
7560 * Disable the PLL for @pipe. To be used in cases where we need
7561 * the PLL enabled even when @pipe is not going to be enabled.
7562 */
7563void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
7564{
7565 if (IS_CHERRYVIEW(dev))
7566 chv_disable_pll(to_i915(dev), pipe);
7567 else
7568 vlv_disable_pll(to_i915(dev), pipe);
7569}
7570
251ac862
DV
7571static void i9xx_compute_dpll(struct intel_crtc *crtc,
7572 struct intel_crtc_state *crtc_state,
9e2c8475 7573 struct dpll *reduced_clock)
eb1cbe48 7574{
f47709a9 7575 struct drm_device *dev = crtc->base.dev;
eb1cbe48 7576 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48
DV
7577 u32 dpll;
7578 bool is_sdvo;
190f68c5 7579 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 7580
190f68c5 7581 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 7582
a93e255f
ACO
7583 is_sdvo = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO) ||
7584 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI);
eb1cbe48
DV
7585
7586 dpll = DPLL_VGA_MODE_DIS;
7587
a93e255f 7588 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
eb1cbe48
DV
7589 dpll |= DPLLB_MODE_LVDS;
7590 else
7591 dpll |= DPLLB_MODE_DAC_SERIAL;
6cc5f341 7592
ef1b460d 7593 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
190f68c5 7594 dpll |= (crtc_state->pixel_multiplier - 1)
198a037f 7595 << SDVO_MULTIPLIER_SHIFT_HIRES;
eb1cbe48 7596 }
198a037f
DV
7597
7598 if (is_sdvo)
4a33e48d 7599 dpll |= DPLL_SDVO_HIGH_SPEED;
198a037f 7600
190f68c5 7601 if (crtc_state->has_dp_encoder)
4a33e48d 7602 dpll |= DPLL_SDVO_HIGH_SPEED;
eb1cbe48
DV
7603
7604 /* compute bitmask from p1 value */
7605 if (IS_PINEVIEW(dev))
7606 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
7607 else {
7608 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7609 if (IS_G4X(dev) && reduced_clock)
7610 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
7611 }
7612 switch (clock->p2) {
7613 case 5:
7614 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7615 break;
7616 case 7:
7617 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7618 break;
7619 case 10:
7620 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7621 break;
7622 case 14:
7623 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7624 break;
7625 }
7626 if (INTEL_INFO(dev)->gen >= 4)
7627 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
7628
190f68c5 7629 if (crtc_state->sdvo_tv_clock)
eb1cbe48 7630 dpll |= PLL_REF_INPUT_TVCLKINBC;
a93e255f 7631 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ceb41007 7632 intel_panel_use_ssc(dev_priv))
eb1cbe48
DV
7633 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7634 else
7635 dpll |= PLL_REF_INPUT_DREFCLK;
7636
7637 dpll |= DPLL_VCO_ENABLE;
190f68c5 7638 crtc_state->dpll_hw_state.dpll = dpll;
8bcc2795 7639
eb1cbe48 7640 if (INTEL_INFO(dev)->gen >= 4) {
190f68c5 7641 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
ef1b460d 7642 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
190f68c5 7643 crtc_state->dpll_hw_state.dpll_md = dpll_md;
eb1cbe48
DV
7644 }
7645}
7646
251ac862
DV
7647static void i8xx_compute_dpll(struct intel_crtc *crtc,
7648 struct intel_crtc_state *crtc_state,
9e2c8475 7649 struct dpll *reduced_clock)
eb1cbe48 7650{
f47709a9 7651 struct drm_device *dev = crtc->base.dev;
eb1cbe48 7652 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48 7653 u32 dpll;
190f68c5 7654 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 7655
190f68c5 7656 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 7657
eb1cbe48
DV
7658 dpll = DPLL_VGA_MODE_DIS;
7659
a93e255f 7660 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
eb1cbe48
DV
7661 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7662 } else {
7663 if (clock->p1 == 2)
7664 dpll |= PLL_P1_DIVIDE_BY_TWO;
7665 else
7666 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7667 if (clock->p2 == 4)
7668 dpll |= PLL_P2_DIVIDE_BY_4;
7669 }
7670
a93e255f 7671 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
4a33e48d
DV
7672 dpll |= DPLL_DVO_2X_MODE;
7673
a93e255f 7674 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ceb41007 7675 intel_panel_use_ssc(dev_priv))
eb1cbe48
DV
7676 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7677 else
7678 dpll |= PLL_REF_INPUT_DREFCLK;
7679
7680 dpll |= DPLL_VCO_ENABLE;
190f68c5 7681 crtc_state->dpll_hw_state.dpll = dpll;
eb1cbe48
DV
7682}
7683
8a654f3b 7684static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
b0e77b9c
PZ
7685{
7686 struct drm_device *dev = intel_crtc->base.dev;
7687 struct drm_i915_private *dev_priv = dev->dev_private;
7688 enum pipe pipe = intel_crtc->pipe;
6e3c9717 7689 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
7c5f93b0 7690 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
1caea6e9
VS
7691 uint32_t crtc_vtotal, crtc_vblank_end;
7692 int vsyncshift = 0;
4d8a62ea
DV
7693
7694 /* We need to be careful not to changed the adjusted mode, for otherwise
7695 * the hw state checker will get angry at the mismatch. */
7696 crtc_vtotal = adjusted_mode->crtc_vtotal;
7697 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
b0e77b9c 7698
609aeaca 7699 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
b0e77b9c 7700 /* the chip adds 2 halflines automatically */
4d8a62ea
DV
7701 crtc_vtotal -= 1;
7702 crtc_vblank_end -= 1;
609aeaca 7703
409ee761 7704 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
609aeaca
VS
7705 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
7706 else
7707 vsyncshift = adjusted_mode->crtc_hsync_start -
7708 adjusted_mode->crtc_htotal / 2;
1caea6e9
VS
7709 if (vsyncshift < 0)
7710 vsyncshift += adjusted_mode->crtc_htotal;
b0e77b9c
PZ
7711 }
7712
7713 if (INTEL_INFO(dev)->gen > 3)
fe2b8f9d 7714 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
b0e77b9c 7715
fe2b8f9d 7716 I915_WRITE(HTOTAL(cpu_transcoder),
b0e77b9c
PZ
7717 (adjusted_mode->crtc_hdisplay - 1) |
7718 ((adjusted_mode->crtc_htotal - 1) << 16));
fe2b8f9d 7719 I915_WRITE(HBLANK(cpu_transcoder),
b0e77b9c
PZ
7720 (adjusted_mode->crtc_hblank_start - 1) |
7721 ((adjusted_mode->crtc_hblank_end - 1) << 16));
fe2b8f9d 7722 I915_WRITE(HSYNC(cpu_transcoder),
b0e77b9c
PZ
7723 (adjusted_mode->crtc_hsync_start - 1) |
7724 ((adjusted_mode->crtc_hsync_end - 1) << 16));
7725
fe2b8f9d 7726 I915_WRITE(VTOTAL(cpu_transcoder),
b0e77b9c 7727 (adjusted_mode->crtc_vdisplay - 1) |
4d8a62ea 7728 ((crtc_vtotal - 1) << 16));
fe2b8f9d 7729 I915_WRITE(VBLANK(cpu_transcoder),
b0e77b9c 7730 (adjusted_mode->crtc_vblank_start - 1) |
4d8a62ea 7731 ((crtc_vblank_end - 1) << 16));
fe2b8f9d 7732 I915_WRITE(VSYNC(cpu_transcoder),
b0e77b9c
PZ
7733 (adjusted_mode->crtc_vsync_start - 1) |
7734 ((adjusted_mode->crtc_vsync_end - 1) << 16));
7735
b5e508d4
PZ
7736 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
7737 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
7738 * documented on the DDI_FUNC_CTL register description, EDP Input Select
7739 * bits. */
7740 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
7741 (pipe == PIPE_B || pipe == PIPE_C))
7742 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
7743
bc58be60
JN
7744}
7745
7746static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc)
7747{
7748 struct drm_device *dev = intel_crtc->base.dev;
7749 struct drm_i915_private *dev_priv = dev->dev_private;
7750 enum pipe pipe = intel_crtc->pipe;
7751
b0e77b9c
PZ
7752 /* pipesrc controls the size that is scaled from, which should
7753 * always be the user's requested size.
7754 */
7755 I915_WRITE(PIPESRC(pipe),
6e3c9717
ACO
7756 ((intel_crtc->config->pipe_src_w - 1) << 16) |
7757 (intel_crtc->config->pipe_src_h - 1));
b0e77b9c
PZ
7758}
7759
1bd1bd80 7760static void intel_get_pipe_timings(struct intel_crtc *crtc,
5cec258b 7761 struct intel_crtc_state *pipe_config)
1bd1bd80
DV
7762{
7763 struct drm_device *dev = crtc->base.dev;
7764 struct drm_i915_private *dev_priv = dev->dev_private;
7765 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
7766 uint32_t tmp;
7767
7768 tmp = I915_READ(HTOTAL(cpu_transcoder));
2d112de7
ACO
7769 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
7770 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7771 tmp = I915_READ(HBLANK(cpu_transcoder));
2d112de7
ACO
7772 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
7773 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7774 tmp = I915_READ(HSYNC(cpu_transcoder));
2d112de7
ACO
7775 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
7776 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
7777
7778 tmp = I915_READ(VTOTAL(cpu_transcoder));
2d112de7
ACO
7779 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
7780 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7781 tmp = I915_READ(VBLANK(cpu_transcoder));
2d112de7
ACO
7782 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
7783 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7784 tmp = I915_READ(VSYNC(cpu_transcoder));
2d112de7
ACO
7785 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
7786 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
7787
7788 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
2d112de7
ACO
7789 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
7790 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
7791 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
1bd1bd80 7792 }
bc58be60
JN
7793}
7794
7795static void intel_get_pipe_src_size(struct intel_crtc *crtc,
7796 struct intel_crtc_state *pipe_config)
7797{
7798 struct drm_device *dev = crtc->base.dev;
7799 struct drm_i915_private *dev_priv = dev->dev_private;
7800 u32 tmp;
1bd1bd80
DV
7801
7802 tmp = I915_READ(PIPESRC(crtc->pipe));
37327abd
VS
7803 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
7804 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
7805
2d112de7
ACO
7806 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
7807 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
1bd1bd80
DV
7808}
7809
f6a83288 7810void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5cec258b 7811 struct intel_crtc_state *pipe_config)
babea61d 7812{
2d112de7
ACO
7813 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
7814 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
7815 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
7816 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
babea61d 7817
2d112de7
ACO
7818 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
7819 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
7820 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
7821 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
babea61d 7822
2d112de7 7823 mode->flags = pipe_config->base.adjusted_mode.flags;
cd13f5ab 7824 mode->type = DRM_MODE_TYPE_DRIVER;
babea61d 7825
2d112de7
ACO
7826 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
7827 mode->flags |= pipe_config->base.adjusted_mode.flags;
cd13f5ab
ML
7828
7829 mode->hsync = drm_mode_hsync(mode);
7830 mode->vrefresh = drm_mode_vrefresh(mode);
7831 drm_mode_set_name(mode);
babea61d
JB
7832}
7833
84b046f3
DV
7834static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
7835{
7836 struct drm_device *dev = intel_crtc->base.dev;
7837 struct drm_i915_private *dev_priv = dev->dev_private;
7838 uint32_t pipeconf;
7839
9f11a9e4 7840 pipeconf = 0;
84b046f3 7841
b6b5d049
VS
7842 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
7843 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
7844 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
67c72a12 7845
6e3c9717 7846 if (intel_crtc->config->double_wide)
cf532bb2 7847 pipeconf |= PIPECONF_DOUBLE_WIDE;
84b046f3 7848
ff9ce46e 7849 /* only g4x and later have fancy bpc/dither controls */
666a4537 7850 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
ff9ce46e 7851 /* Bspec claims that we can't use dithering for 30bpp pipes. */
6e3c9717 7852 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
ff9ce46e 7853 pipeconf |= PIPECONF_DITHER_EN |
84b046f3 7854 PIPECONF_DITHER_TYPE_SP;
84b046f3 7855
6e3c9717 7856 switch (intel_crtc->config->pipe_bpp) {
ff9ce46e
DV
7857 case 18:
7858 pipeconf |= PIPECONF_6BPC;
7859 break;
7860 case 24:
7861 pipeconf |= PIPECONF_8BPC;
7862 break;
7863 case 30:
7864 pipeconf |= PIPECONF_10BPC;
7865 break;
7866 default:
7867 /* Case prevented by intel_choose_pipe_bpp_dither. */
7868 BUG();
84b046f3
DV
7869 }
7870 }
7871
7872 if (HAS_PIPE_CXSR(dev)) {
7873 if (intel_crtc->lowfreq_avail) {
7874 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
7875 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
7876 } else {
7877 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
84b046f3
DV
7878 }
7879 }
7880
6e3c9717 7881 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
efc2cfff 7882 if (INTEL_INFO(dev)->gen < 4 ||
409ee761 7883 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
efc2cfff
VS
7884 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
7885 else
7886 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
7887 } else
84b046f3
DV
7888 pipeconf |= PIPECONF_PROGRESSIVE;
7889
666a4537
WB
7890 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
7891 intel_crtc->config->limited_color_range)
9f11a9e4 7892 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
9c8e09b7 7893
84b046f3
DV
7894 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
7895 POSTING_READ(PIPECONF(intel_crtc->pipe));
7896}
7897
81c97f52
ACO
7898static int i8xx_crtc_compute_clock(struct intel_crtc *crtc,
7899 struct intel_crtc_state *crtc_state)
7900{
7901 struct drm_device *dev = crtc->base.dev;
7902 struct drm_i915_private *dev_priv = dev->dev_private;
1b6f4958 7903 const struct intel_limit *limit;
81c97f52
ACO
7904 int refclk = 48000;
7905
7906 memset(&crtc_state->dpll_hw_state, 0,
7907 sizeof(crtc_state->dpll_hw_state));
7908
7909 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
7910 if (intel_panel_use_ssc(dev_priv)) {
7911 refclk = dev_priv->vbt.lvds_ssc_freq;
7912 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
7913 }
7914
7915 limit = &intel_limits_i8xx_lvds;
7916 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO)) {
7917 limit = &intel_limits_i8xx_dvo;
7918 } else {
7919 limit = &intel_limits_i8xx_dac;
7920 }
7921
7922 if (!crtc_state->clock_set &&
7923 !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
7924 refclk, NULL, &crtc_state->dpll)) {
7925 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7926 return -EINVAL;
7927 }
7928
7929 i8xx_compute_dpll(crtc, crtc_state, NULL);
7930
7931 return 0;
7932}
7933
19ec6693
ACO
7934static int g4x_crtc_compute_clock(struct intel_crtc *crtc,
7935 struct intel_crtc_state *crtc_state)
7936{
7937 struct drm_device *dev = crtc->base.dev;
7938 struct drm_i915_private *dev_priv = dev->dev_private;
1b6f4958 7939 const struct intel_limit *limit;
19ec6693
ACO
7940 int refclk = 96000;
7941
7942 memset(&crtc_state->dpll_hw_state, 0,
7943 sizeof(crtc_state->dpll_hw_state));
7944
7945 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
7946 if (intel_panel_use_ssc(dev_priv)) {
7947 refclk = dev_priv->vbt.lvds_ssc_freq;
7948 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
7949 }
7950
7951 if (intel_is_dual_link_lvds(dev))
7952 limit = &intel_limits_g4x_dual_channel_lvds;
7953 else
7954 limit = &intel_limits_g4x_single_channel_lvds;
7955 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI) ||
7956 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_ANALOG)) {
7957 limit = &intel_limits_g4x_hdmi;
7958 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO)) {
7959 limit = &intel_limits_g4x_sdvo;
7960 } else {
7961 /* The option is for other outputs */
7962 limit = &intel_limits_i9xx_sdvo;
7963 }
7964
7965 if (!crtc_state->clock_set &&
7966 !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
7967 refclk, NULL, &crtc_state->dpll)) {
7968 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7969 return -EINVAL;
7970 }
7971
7972 i9xx_compute_dpll(crtc, crtc_state, NULL);
7973
7974 return 0;
7975}
7976
70e8aa21
ACO
7977static int pnv_crtc_compute_clock(struct intel_crtc *crtc,
7978 struct intel_crtc_state *crtc_state)
7979{
7980 struct drm_device *dev = crtc->base.dev;
7981 struct drm_i915_private *dev_priv = dev->dev_private;
1b6f4958 7982 const struct intel_limit *limit;
70e8aa21
ACO
7983 int refclk = 96000;
7984
7985 memset(&crtc_state->dpll_hw_state, 0,
7986 sizeof(crtc_state->dpll_hw_state));
7987
7988 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
7989 if (intel_panel_use_ssc(dev_priv)) {
7990 refclk = dev_priv->vbt.lvds_ssc_freq;
7991 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
7992 }
7993
7994 limit = &intel_limits_pineview_lvds;
7995 } else {
7996 limit = &intel_limits_pineview_sdvo;
7997 }
7998
7999 if (!crtc_state->clock_set &&
8000 !pnv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8001 refclk, NULL, &crtc_state->dpll)) {
8002 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8003 return -EINVAL;
8004 }
8005
8006 i9xx_compute_dpll(crtc, crtc_state, NULL);
8007
8008 return 0;
8009}
8010
190f68c5
ACO
8011static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
8012 struct intel_crtc_state *crtc_state)
79e53945 8013{
c7653199 8014 struct drm_device *dev = crtc->base.dev;
79e53945 8015 struct drm_i915_private *dev_priv = dev->dev_private;
1b6f4958 8016 const struct intel_limit *limit;
81c97f52 8017 int refclk = 96000;
79e53945 8018
dd3cd74a
ACO
8019 memset(&crtc_state->dpll_hw_state, 0,
8020 sizeof(crtc_state->dpll_hw_state));
8021
70e8aa21
ACO
8022 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
8023 if (intel_panel_use_ssc(dev_priv)) {
8024 refclk = dev_priv->vbt.lvds_ssc_freq;
8025 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
8026 }
43565a06 8027
70e8aa21
ACO
8028 limit = &intel_limits_i9xx_lvds;
8029 } else {
8030 limit = &intel_limits_i9xx_sdvo;
81c97f52 8031 }
79e53945 8032
70e8aa21
ACO
8033 if (!crtc_state->clock_set &&
8034 !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8035 refclk, NULL, &crtc_state->dpll)) {
8036 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8037 return -EINVAL;
f47709a9 8038 }
7026d4ac 8039
81c97f52 8040 i9xx_compute_dpll(crtc, crtc_state, NULL);
79e53945 8041
c8f7a0db 8042 return 0;
f564048e
EA
8043}
8044
65b3d6a9
ACO
8045static int chv_crtc_compute_clock(struct intel_crtc *crtc,
8046 struct intel_crtc_state *crtc_state)
8047{
8048 int refclk = 100000;
1b6f4958 8049 const struct intel_limit *limit = &intel_limits_chv;
65b3d6a9
ACO
8050
8051 memset(&crtc_state->dpll_hw_state, 0,
8052 sizeof(crtc_state->dpll_hw_state));
8053
65b3d6a9
ACO
8054 if (!crtc_state->clock_set &&
8055 !chv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8056 refclk, NULL, &crtc_state->dpll)) {
8057 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8058 return -EINVAL;
8059 }
8060
8061 chv_compute_dpll(crtc, crtc_state);
8062
8063 return 0;
8064}
8065
8066static int vlv_crtc_compute_clock(struct intel_crtc *crtc,
8067 struct intel_crtc_state *crtc_state)
8068{
8069 int refclk = 100000;
1b6f4958 8070 const struct intel_limit *limit = &intel_limits_vlv;
65b3d6a9
ACO
8071
8072 memset(&crtc_state->dpll_hw_state, 0,
8073 sizeof(crtc_state->dpll_hw_state));
8074
65b3d6a9
ACO
8075 if (!crtc_state->clock_set &&
8076 !vlv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8077 refclk, NULL, &crtc_state->dpll)) {
8078 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8079 return -EINVAL;
8080 }
8081
8082 vlv_compute_dpll(crtc, crtc_state);
8083
8084 return 0;
8085}
8086
2fa2fe9a 8087static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5cec258b 8088 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
8089{
8090 struct drm_device *dev = crtc->base.dev;
8091 struct drm_i915_private *dev_priv = dev->dev_private;
8092 uint32_t tmp;
8093
dc9e7dec
VS
8094 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
8095 return;
8096
2fa2fe9a 8097 tmp = I915_READ(PFIT_CONTROL);
06922821
DV
8098 if (!(tmp & PFIT_ENABLE))
8099 return;
2fa2fe9a 8100
06922821 8101 /* Check whether the pfit is attached to our pipe. */
2fa2fe9a
DV
8102 if (INTEL_INFO(dev)->gen < 4) {
8103 if (crtc->pipe != PIPE_B)
8104 return;
2fa2fe9a
DV
8105 } else {
8106 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
8107 return;
8108 }
8109
06922821 8110 pipe_config->gmch_pfit.control = tmp;
2fa2fe9a 8111 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
2fa2fe9a
DV
8112}
8113
acbec814 8114static void vlv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8115 struct intel_crtc_state *pipe_config)
acbec814
JB
8116{
8117 struct drm_device *dev = crtc->base.dev;
8118 struct drm_i915_private *dev_priv = dev->dev_private;
8119 int pipe = pipe_config->cpu_transcoder;
9e2c8475 8120 struct dpll clock;
acbec814 8121 u32 mdiv;
662c6ecb 8122 int refclk = 100000;
acbec814 8123
b521973b
VS
8124 /* In case of DSI, DPLL will not be used */
8125 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
f573de5a
SK
8126 return;
8127
a580516d 8128 mutex_lock(&dev_priv->sb_lock);
ab3c759a 8129 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
a580516d 8130 mutex_unlock(&dev_priv->sb_lock);
acbec814
JB
8131
8132 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
8133 clock.m2 = mdiv & DPIO_M2DIV_MASK;
8134 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
8135 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
8136 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
8137
dccbea3b 8138 pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock);
acbec814
JB
8139}
8140
5724dbd1
DL
8141static void
8142i9xx_get_initial_plane_config(struct intel_crtc *crtc,
8143 struct intel_initial_plane_config *plane_config)
1ad292b5
JB
8144{
8145 struct drm_device *dev = crtc->base.dev;
8146 struct drm_i915_private *dev_priv = dev->dev_private;
8147 u32 val, base, offset;
8148 int pipe = crtc->pipe, plane = crtc->plane;
8149 int fourcc, pixel_format;
6761dd31 8150 unsigned int aligned_height;
b113d5ee 8151 struct drm_framebuffer *fb;
1b842c89 8152 struct intel_framebuffer *intel_fb;
1ad292b5 8153
42a7b088
DL
8154 val = I915_READ(DSPCNTR(plane));
8155 if (!(val & DISPLAY_PLANE_ENABLE))
8156 return;
8157
d9806c9f 8158 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 8159 if (!intel_fb) {
1ad292b5
JB
8160 DRM_DEBUG_KMS("failed to alloc fb\n");
8161 return;
8162 }
8163
1b842c89
DL
8164 fb = &intel_fb->base;
8165
18c5247e
DV
8166 if (INTEL_INFO(dev)->gen >= 4) {
8167 if (val & DISPPLANE_TILED) {
49af449b 8168 plane_config->tiling = I915_TILING_X;
18c5247e
DV
8169 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8170 }
8171 }
1ad292b5
JB
8172
8173 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 8174 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
8175 fb->pixel_format = fourcc;
8176 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
1ad292b5
JB
8177
8178 if (INTEL_INFO(dev)->gen >= 4) {
49af449b 8179 if (plane_config->tiling)
1ad292b5
JB
8180 offset = I915_READ(DSPTILEOFF(plane));
8181 else
8182 offset = I915_READ(DSPLINOFF(plane));
8183 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
8184 } else {
8185 base = I915_READ(DSPADDR(plane));
8186 }
8187 plane_config->base = base;
8188
8189 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
8190 fb->width = ((val >> 16) & 0xfff) + 1;
8191 fb->height = ((val >> 0) & 0xfff) + 1;
1ad292b5
JB
8192
8193 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 8194 fb->pitches[0] = val & 0xffffffc0;
1ad292b5 8195
b113d5ee 8196 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
8197 fb->pixel_format,
8198 fb->modifier[0]);
1ad292b5 8199
f37b5c2b 8200 plane_config->size = fb->pitches[0] * aligned_height;
1ad292b5 8201
2844a921
DL
8202 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8203 pipe_name(pipe), plane, fb->width, fb->height,
8204 fb->bits_per_pixel, base, fb->pitches[0],
8205 plane_config->size);
1ad292b5 8206
2d14030b 8207 plane_config->fb = intel_fb;
1ad292b5
JB
8208}
8209
70b23a98 8210static void chv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8211 struct intel_crtc_state *pipe_config)
70b23a98
VS
8212{
8213 struct drm_device *dev = crtc->base.dev;
8214 struct drm_i915_private *dev_priv = dev->dev_private;
8215 int pipe = pipe_config->cpu_transcoder;
8216 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9e2c8475 8217 struct dpll clock;
0d7b6b11 8218 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3;
70b23a98
VS
8219 int refclk = 100000;
8220
b521973b
VS
8221 /* In case of DSI, DPLL will not be used */
8222 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
8223 return;
8224
a580516d 8225 mutex_lock(&dev_priv->sb_lock);
70b23a98
VS
8226 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
8227 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
8228 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
8229 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
0d7b6b11 8230 pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
a580516d 8231 mutex_unlock(&dev_priv->sb_lock);
70b23a98
VS
8232
8233 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
0d7b6b11
ID
8234 clock.m2 = (pll_dw0 & 0xff) << 22;
8235 if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN)
8236 clock.m2 |= pll_dw2 & 0x3fffff;
70b23a98
VS
8237 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
8238 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
8239 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
8240
dccbea3b 8241 pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock);
70b23a98
VS
8242}
8243
0e8ffe1b 8244static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
5cec258b 8245 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
8246{
8247 struct drm_device *dev = crtc->base.dev;
8248 struct drm_i915_private *dev_priv = dev->dev_private;
1729050e 8249 enum intel_display_power_domain power_domain;
0e8ffe1b 8250 uint32_t tmp;
1729050e 8251 bool ret;
0e8ffe1b 8252
1729050e
ID
8253 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
8254 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
b5482bd0
ID
8255 return false;
8256
e143a21c 8257 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
8106ddbd 8258 pipe_config->shared_dpll = NULL;
eccb140b 8259
1729050e
ID
8260 ret = false;
8261
0e8ffe1b
DV
8262 tmp = I915_READ(PIPECONF(crtc->pipe));
8263 if (!(tmp & PIPECONF_ENABLE))
1729050e 8264 goto out;
0e8ffe1b 8265
666a4537 8266 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
42571aef
VS
8267 switch (tmp & PIPECONF_BPC_MASK) {
8268 case PIPECONF_6BPC:
8269 pipe_config->pipe_bpp = 18;
8270 break;
8271 case PIPECONF_8BPC:
8272 pipe_config->pipe_bpp = 24;
8273 break;
8274 case PIPECONF_10BPC:
8275 pipe_config->pipe_bpp = 30;
8276 break;
8277 default:
8278 break;
8279 }
8280 }
8281
666a4537
WB
8282 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
8283 (tmp & PIPECONF_COLOR_RANGE_SELECT))
b5a9fa09
DV
8284 pipe_config->limited_color_range = true;
8285
282740f7
VS
8286 if (INTEL_INFO(dev)->gen < 4)
8287 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
8288
1bd1bd80 8289 intel_get_pipe_timings(crtc, pipe_config);
bc58be60 8290 intel_get_pipe_src_size(crtc, pipe_config);
1bd1bd80 8291
2fa2fe9a
DV
8292 i9xx_get_pfit_config(crtc, pipe_config);
8293
6c49f241 8294 if (INTEL_INFO(dev)->gen >= 4) {
c231775c
VS
8295 /* No way to read it out on pipes B and C */
8296 if (IS_CHERRYVIEW(dev) && crtc->pipe != PIPE_A)
8297 tmp = dev_priv->chv_dpll_md[crtc->pipe];
8298 else
8299 tmp = I915_READ(DPLL_MD(crtc->pipe));
6c49f241
DV
8300 pipe_config->pixel_multiplier =
8301 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
8302 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
8bcc2795 8303 pipe_config->dpll_hw_state.dpll_md = tmp;
6c49f241
DV
8304 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
8305 tmp = I915_READ(DPLL(crtc->pipe));
8306 pipe_config->pixel_multiplier =
8307 ((tmp & SDVO_MULTIPLIER_MASK)
8308 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
8309 } else {
8310 /* Note that on i915G/GM the pixel multiplier is in the sdvo
8311 * port and will be fixed up in the encoder->get_config
8312 * function. */
8313 pipe_config->pixel_multiplier = 1;
8314 }
8bcc2795 8315 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
666a4537 8316 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
1c4e0274
VS
8317 /*
8318 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
8319 * on 830. Filter it out here so that we don't
8320 * report errors due to that.
8321 */
8322 if (IS_I830(dev))
8323 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
8324
8bcc2795
DV
8325 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
8326 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
165e901c
VS
8327 } else {
8328 /* Mask out read-only status bits. */
8329 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
8330 DPLL_PORTC_READY_MASK |
8331 DPLL_PORTB_READY_MASK);
8bcc2795 8332 }
6c49f241 8333
70b23a98
VS
8334 if (IS_CHERRYVIEW(dev))
8335 chv_crtc_clock_get(crtc, pipe_config);
8336 else if (IS_VALLEYVIEW(dev))
acbec814
JB
8337 vlv_crtc_clock_get(crtc, pipe_config);
8338 else
8339 i9xx_crtc_clock_get(crtc, pipe_config);
18442d08 8340
0f64614d
VS
8341 /*
8342 * Normally the dotclock is filled in by the encoder .get_config()
8343 * but in case the pipe is enabled w/o any ports we need a sane
8344 * default.
8345 */
8346 pipe_config->base.adjusted_mode.crtc_clock =
8347 pipe_config->port_clock / pipe_config->pixel_multiplier;
8348
1729050e
ID
8349 ret = true;
8350
8351out:
8352 intel_display_power_put(dev_priv, power_domain);
8353
8354 return ret;
0e8ffe1b
DV
8355}
8356
dde86e2d 8357static void ironlake_init_pch_refclk(struct drm_device *dev)
13d83a67
JB
8358{
8359 struct drm_i915_private *dev_priv = dev->dev_private;
13d83a67 8360 struct intel_encoder *encoder;
f165d283 8361 int i;
74cfd7ac 8362 u32 val, final;
13d83a67 8363 bool has_lvds = false;
199e5d79 8364 bool has_cpu_edp = false;
199e5d79 8365 bool has_panel = false;
99eb6a01
KP
8366 bool has_ck505 = false;
8367 bool can_ssc = false;
f165d283 8368 bool using_ssc_source = false;
13d83a67
JB
8369
8370 /* We need to take the global config into account */
b2784e15 8371 for_each_intel_encoder(dev, encoder) {
199e5d79
KP
8372 switch (encoder->type) {
8373 case INTEL_OUTPUT_LVDS:
8374 has_panel = true;
8375 has_lvds = true;
8376 break;
8377 case INTEL_OUTPUT_EDP:
8378 has_panel = true;
2de6905f 8379 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
199e5d79
KP
8380 has_cpu_edp = true;
8381 break;
6847d71b
PZ
8382 default:
8383 break;
13d83a67
JB
8384 }
8385 }
8386
99eb6a01 8387 if (HAS_PCH_IBX(dev)) {
41aa3448 8388 has_ck505 = dev_priv->vbt.display_clock_mode;
99eb6a01
KP
8389 can_ssc = has_ck505;
8390 } else {
8391 has_ck505 = false;
8392 can_ssc = true;
8393 }
8394
f165d283
L
8395 /* Check if any DPLLs are using the SSC source */
8396 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
8397 u32 temp = I915_READ(PCH_DPLL(i));
8398
8399 if (!(temp & DPLL_VCO_ENABLE))
8400 continue;
8401
8402 if ((temp & PLL_REF_INPUT_MASK) ==
8403 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
8404 using_ssc_source = true;
8405 break;
8406 }
8407 }
8408
8409 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d using_ssc_source %d\n",
8410 has_panel, has_lvds, has_ck505, using_ssc_source);
13d83a67
JB
8411
8412 /* Ironlake: try to setup display ref clock before DPLL
8413 * enabling. This is only under driver's control after
8414 * PCH B stepping, previous chipset stepping should be
8415 * ignoring this setting.
8416 */
74cfd7ac
CW
8417 val = I915_READ(PCH_DREF_CONTROL);
8418
8419 /* As we must carefully and slowly disable/enable each source in turn,
8420 * compute the final state we want first and check if we need to
8421 * make any changes at all.
8422 */
8423 final = val;
8424 final &= ~DREF_NONSPREAD_SOURCE_MASK;
8425 if (has_ck505)
8426 final |= DREF_NONSPREAD_CK505_ENABLE;
8427 else
8428 final |= DREF_NONSPREAD_SOURCE_ENABLE;
8429
74cfd7ac 8430 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
f165d283
L
8431
8432 if (!using_ssc_source) {
8433 final &= ~DREF_SSC_SOURCE_MASK;
8434 final &= ~DREF_SSC1_ENABLE;
8435 }
74cfd7ac
CW
8436
8437 if (has_panel) {
8438 final |= DREF_SSC_SOURCE_ENABLE;
8439
8440 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8441 final |= DREF_SSC1_ENABLE;
8442
8443 if (has_cpu_edp) {
8444 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8445 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
8446 else
8447 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
8448 } else
8449 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8450 } else {
8451 final |= DREF_SSC_SOURCE_DISABLE;
8452 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8453 }
8454
8455 if (final == val)
8456 return;
8457
13d83a67 8458 /* Always enable nonspread source */
74cfd7ac 8459 val &= ~DREF_NONSPREAD_SOURCE_MASK;
13d83a67 8460
99eb6a01 8461 if (has_ck505)
74cfd7ac 8462 val |= DREF_NONSPREAD_CK505_ENABLE;
99eb6a01 8463 else
74cfd7ac 8464 val |= DREF_NONSPREAD_SOURCE_ENABLE;
13d83a67 8465
199e5d79 8466 if (has_panel) {
74cfd7ac
CW
8467 val &= ~DREF_SSC_SOURCE_MASK;
8468 val |= DREF_SSC_SOURCE_ENABLE;
13d83a67 8469
199e5d79 8470 /* SSC must be turned on before enabling the CPU output */
99eb6a01 8471 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 8472 DRM_DEBUG_KMS("Using SSC on panel\n");
74cfd7ac 8473 val |= DREF_SSC1_ENABLE;
e77166b5 8474 } else
74cfd7ac 8475 val &= ~DREF_SSC1_ENABLE;
199e5d79
KP
8476
8477 /* Get SSC going before enabling the outputs */
74cfd7ac 8478 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8479 POSTING_READ(PCH_DREF_CONTROL);
8480 udelay(200);
8481
74cfd7ac 8482 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
13d83a67
JB
8483
8484 /* Enable CPU source on CPU attached eDP */
199e5d79 8485 if (has_cpu_edp) {
99eb6a01 8486 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 8487 DRM_DEBUG_KMS("Using SSC on eDP\n");
74cfd7ac 8488 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
eba905b2 8489 } else
74cfd7ac 8490 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
199e5d79 8491 } else
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 } else {
f165d283 8498 DRM_DEBUG_KMS("Disabling CPU source output\n");
199e5d79 8499
74cfd7ac 8500 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
199e5d79
KP
8501
8502 /* Turn off CPU output */
74cfd7ac 8503 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 8504
74cfd7ac 8505 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8506 POSTING_READ(PCH_DREF_CONTROL);
8507 udelay(200);
8508
f165d283
L
8509 if (!using_ssc_source) {
8510 DRM_DEBUG_KMS("Disabling SSC source\n");
199e5d79 8511
f165d283
L
8512 /* Turn off the SSC source */
8513 val &= ~DREF_SSC_SOURCE_MASK;
8514 val |= DREF_SSC_SOURCE_DISABLE;
199e5d79 8515
f165d283
L
8516 /* Turn off SSC1 */
8517 val &= ~DREF_SSC1_ENABLE;
8518
8519 I915_WRITE(PCH_DREF_CONTROL, val);
8520 POSTING_READ(PCH_DREF_CONTROL);
8521 udelay(200);
8522 }
13d83a67 8523 }
74cfd7ac
CW
8524
8525 BUG_ON(val != final);
13d83a67
JB
8526}
8527
f31f2d55 8528static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
dde86e2d 8529{
f31f2d55 8530 uint32_t tmp;
dde86e2d 8531
0ff066a9
PZ
8532 tmp = I915_READ(SOUTH_CHICKEN2);
8533 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
8534 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 8535
0ff066a9
PZ
8536 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
8537 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
8538 DRM_ERROR("FDI mPHY reset assert timeout\n");
dde86e2d 8539
0ff066a9
PZ
8540 tmp = I915_READ(SOUTH_CHICKEN2);
8541 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
8542 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 8543
0ff066a9
PZ
8544 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
8545 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
8546 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
f31f2d55
PZ
8547}
8548
8549/* WaMPhyProgramming:hsw */
8550static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
8551{
8552 uint32_t tmp;
dde86e2d
PZ
8553
8554 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
8555 tmp &= ~(0xFF << 24);
8556 tmp |= (0x12 << 24);
8557 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
8558
dde86e2d
PZ
8559 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
8560 tmp |= (1 << 11);
8561 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
8562
8563 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
8564 tmp |= (1 << 11);
8565 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
8566
dde86e2d
PZ
8567 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
8568 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8569 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
8570
8571 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
8572 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8573 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
8574
0ff066a9
PZ
8575 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
8576 tmp &= ~(7 << 13);
8577 tmp |= (5 << 13);
8578 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
dde86e2d 8579
0ff066a9
PZ
8580 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
8581 tmp &= ~(7 << 13);
8582 tmp |= (5 << 13);
8583 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
dde86e2d
PZ
8584
8585 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
8586 tmp &= ~0xFF;
8587 tmp |= 0x1C;
8588 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
8589
8590 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
8591 tmp &= ~0xFF;
8592 tmp |= 0x1C;
8593 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
8594
8595 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
8596 tmp &= ~(0xFF << 16);
8597 tmp |= (0x1C << 16);
8598 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
8599
8600 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
8601 tmp &= ~(0xFF << 16);
8602 tmp |= (0x1C << 16);
8603 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
8604
0ff066a9
PZ
8605 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
8606 tmp |= (1 << 27);
8607 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
dde86e2d 8608
0ff066a9
PZ
8609 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
8610 tmp |= (1 << 27);
8611 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
dde86e2d 8612
0ff066a9
PZ
8613 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
8614 tmp &= ~(0xF << 28);
8615 tmp |= (4 << 28);
8616 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
dde86e2d 8617
0ff066a9
PZ
8618 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
8619 tmp &= ~(0xF << 28);
8620 tmp |= (4 << 28);
8621 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
f31f2d55
PZ
8622}
8623
2fa86a1f
PZ
8624/* Implements 3 different sequences from BSpec chapter "Display iCLK
8625 * Programming" based on the parameters passed:
8626 * - Sequence to enable CLKOUT_DP
8627 * - Sequence to enable CLKOUT_DP without spread
8628 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
8629 */
8630static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
8631 bool with_fdi)
f31f2d55
PZ
8632{
8633 struct drm_i915_private *dev_priv = dev->dev_private;
2fa86a1f
PZ
8634 uint32_t reg, tmp;
8635
8636 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
8637 with_spread = true;
c2699524 8638 if (WARN(HAS_PCH_LPT_LP(dev) && with_fdi, "LP PCH doesn't have FDI\n"))
2fa86a1f 8639 with_fdi = false;
f31f2d55 8640
a580516d 8641 mutex_lock(&dev_priv->sb_lock);
f31f2d55
PZ
8642
8643 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8644 tmp &= ~SBI_SSCCTL_DISABLE;
8645 tmp |= SBI_SSCCTL_PATHALT;
8646 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8647
8648 udelay(24);
8649
2fa86a1f
PZ
8650 if (with_spread) {
8651 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8652 tmp &= ~SBI_SSCCTL_PATHALT;
8653 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
f31f2d55 8654
2fa86a1f
PZ
8655 if (with_fdi) {
8656 lpt_reset_fdi_mphy(dev_priv);
8657 lpt_program_fdi_mphy(dev_priv);
8658 }
8659 }
dde86e2d 8660
c2699524 8661 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
2fa86a1f
PZ
8662 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8663 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8664 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
c00db246 8665
a580516d 8666 mutex_unlock(&dev_priv->sb_lock);
dde86e2d
PZ
8667}
8668
47701c3b
PZ
8669/* Sequence to disable CLKOUT_DP */
8670static void lpt_disable_clkout_dp(struct drm_device *dev)
8671{
8672 struct drm_i915_private *dev_priv = dev->dev_private;
8673 uint32_t reg, tmp;
8674
a580516d 8675 mutex_lock(&dev_priv->sb_lock);
47701c3b 8676
c2699524 8677 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
47701c3b
PZ
8678 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8679 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8680 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
8681
8682 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8683 if (!(tmp & SBI_SSCCTL_DISABLE)) {
8684 if (!(tmp & SBI_SSCCTL_PATHALT)) {
8685 tmp |= SBI_SSCCTL_PATHALT;
8686 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8687 udelay(32);
8688 }
8689 tmp |= SBI_SSCCTL_DISABLE;
8690 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8691 }
8692
a580516d 8693 mutex_unlock(&dev_priv->sb_lock);
47701c3b
PZ
8694}
8695
f7be2c21
VS
8696#define BEND_IDX(steps) ((50 + (steps)) / 5)
8697
8698static const uint16_t sscdivintphase[] = {
8699 [BEND_IDX( 50)] = 0x3B23,
8700 [BEND_IDX( 45)] = 0x3B23,
8701 [BEND_IDX( 40)] = 0x3C23,
8702 [BEND_IDX( 35)] = 0x3C23,
8703 [BEND_IDX( 30)] = 0x3D23,
8704 [BEND_IDX( 25)] = 0x3D23,
8705 [BEND_IDX( 20)] = 0x3E23,
8706 [BEND_IDX( 15)] = 0x3E23,
8707 [BEND_IDX( 10)] = 0x3F23,
8708 [BEND_IDX( 5)] = 0x3F23,
8709 [BEND_IDX( 0)] = 0x0025,
8710 [BEND_IDX( -5)] = 0x0025,
8711 [BEND_IDX(-10)] = 0x0125,
8712 [BEND_IDX(-15)] = 0x0125,
8713 [BEND_IDX(-20)] = 0x0225,
8714 [BEND_IDX(-25)] = 0x0225,
8715 [BEND_IDX(-30)] = 0x0325,
8716 [BEND_IDX(-35)] = 0x0325,
8717 [BEND_IDX(-40)] = 0x0425,
8718 [BEND_IDX(-45)] = 0x0425,
8719 [BEND_IDX(-50)] = 0x0525,
8720};
8721
8722/*
8723 * Bend CLKOUT_DP
8724 * steps -50 to 50 inclusive, in steps of 5
8725 * < 0 slow down the clock, > 0 speed up the clock, 0 == no bend (135MHz)
8726 * change in clock period = -(steps / 10) * 5.787 ps
8727 */
8728static void lpt_bend_clkout_dp(struct drm_i915_private *dev_priv, int steps)
8729{
8730 uint32_t tmp;
8731 int idx = BEND_IDX(steps);
8732
8733 if (WARN_ON(steps % 5 != 0))
8734 return;
8735
8736 if (WARN_ON(idx >= ARRAY_SIZE(sscdivintphase)))
8737 return;
8738
8739 mutex_lock(&dev_priv->sb_lock);
8740
8741 if (steps % 10 != 0)
8742 tmp = 0xAAAAAAAB;
8743 else
8744 tmp = 0x00000000;
8745 intel_sbi_write(dev_priv, SBI_SSCDITHPHASE, tmp, SBI_ICLK);
8746
8747 tmp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE, SBI_ICLK);
8748 tmp &= 0xffff0000;
8749 tmp |= sscdivintphase[idx];
8750 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE, tmp, SBI_ICLK);
8751
8752 mutex_unlock(&dev_priv->sb_lock);
8753}
8754
8755#undef BEND_IDX
8756
bf8fa3d3
PZ
8757static void lpt_init_pch_refclk(struct drm_device *dev)
8758{
bf8fa3d3
PZ
8759 struct intel_encoder *encoder;
8760 bool has_vga = false;
8761
b2784e15 8762 for_each_intel_encoder(dev, encoder) {
bf8fa3d3
PZ
8763 switch (encoder->type) {
8764 case INTEL_OUTPUT_ANALOG:
8765 has_vga = true;
8766 break;
6847d71b
PZ
8767 default:
8768 break;
bf8fa3d3
PZ
8769 }
8770 }
8771
f7be2c21
VS
8772 if (has_vga) {
8773 lpt_bend_clkout_dp(to_i915(dev), 0);
47701c3b 8774 lpt_enable_clkout_dp(dev, true, true);
f7be2c21 8775 } else {
47701c3b 8776 lpt_disable_clkout_dp(dev);
f7be2c21 8777 }
bf8fa3d3
PZ
8778}
8779
dde86e2d
PZ
8780/*
8781 * Initialize reference clocks when the driver loads
8782 */
8783void intel_init_pch_refclk(struct drm_device *dev)
8784{
8785 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
8786 ironlake_init_pch_refclk(dev);
8787 else if (HAS_PCH_LPT(dev))
8788 lpt_init_pch_refclk(dev);
8789}
8790
6ff93609 8791static void ironlake_set_pipeconf(struct drm_crtc *crtc)
79e53945 8792{
c8203565 8793 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
79e53945
JB
8794 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8795 int pipe = intel_crtc->pipe;
c8203565
PZ
8796 uint32_t val;
8797
78114071 8798 val = 0;
c8203565 8799
6e3c9717 8800 switch (intel_crtc->config->pipe_bpp) {
c8203565 8801 case 18:
dfd07d72 8802 val |= PIPECONF_6BPC;
c8203565
PZ
8803 break;
8804 case 24:
dfd07d72 8805 val |= PIPECONF_8BPC;
c8203565
PZ
8806 break;
8807 case 30:
dfd07d72 8808 val |= PIPECONF_10BPC;
c8203565
PZ
8809 break;
8810 case 36:
dfd07d72 8811 val |= PIPECONF_12BPC;
c8203565
PZ
8812 break;
8813 default:
cc769b62
PZ
8814 /* Case prevented by intel_choose_pipe_bpp_dither. */
8815 BUG();
c8203565
PZ
8816 }
8817
6e3c9717 8818 if (intel_crtc->config->dither)
c8203565
PZ
8819 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8820
6e3c9717 8821 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
c8203565
PZ
8822 val |= PIPECONF_INTERLACED_ILK;
8823 else
8824 val |= PIPECONF_PROGRESSIVE;
8825
6e3c9717 8826 if (intel_crtc->config->limited_color_range)
3685a8f3 8827 val |= PIPECONF_COLOR_RANGE_SELECT;
3685a8f3 8828
c8203565
PZ
8829 I915_WRITE(PIPECONF(pipe), val);
8830 POSTING_READ(PIPECONF(pipe));
8831}
8832
6ff93609 8833static void haswell_set_pipeconf(struct drm_crtc *crtc)
ee2b0b38 8834{
391bf048 8835 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
ee2b0b38 8836 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 8837 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
391bf048 8838 u32 val = 0;
ee2b0b38 8839
391bf048 8840 if (IS_HASWELL(dev_priv) && intel_crtc->config->dither)
ee2b0b38
PZ
8841 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8842
6e3c9717 8843 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
ee2b0b38
PZ
8844 val |= PIPECONF_INTERLACED_ILK;
8845 else
8846 val |= PIPECONF_PROGRESSIVE;
8847
702e7a56
PZ
8848 I915_WRITE(PIPECONF(cpu_transcoder), val);
8849 POSTING_READ(PIPECONF(cpu_transcoder));
391bf048
JN
8850}
8851
391bf048
JN
8852static void haswell_set_pipemisc(struct drm_crtc *crtc)
8853{
8854 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
8855 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
756f85cf 8856
391bf048
JN
8857 if (IS_BROADWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 9) {
8858 u32 val = 0;
756f85cf 8859
6e3c9717 8860 switch (intel_crtc->config->pipe_bpp) {
756f85cf
PZ
8861 case 18:
8862 val |= PIPEMISC_DITHER_6_BPC;
8863 break;
8864 case 24:
8865 val |= PIPEMISC_DITHER_8_BPC;
8866 break;
8867 case 30:
8868 val |= PIPEMISC_DITHER_10_BPC;
8869 break;
8870 case 36:
8871 val |= PIPEMISC_DITHER_12_BPC;
8872 break;
8873 default:
8874 /* Case prevented by pipe_config_set_bpp. */
8875 BUG();
8876 }
8877
6e3c9717 8878 if (intel_crtc->config->dither)
756f85cf
PZ
8879 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
8880
391bf048 8881 I915_WRITE(PIPEMISC(intel_crtc->pipe), val);
756f85cf 8882 }
ee2b0b38
PZ
8883}
8884
d4b1931c
PZ
8885int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
8886{
8887 /*
8888 * Account for spread spectrum to avoid
8889 * oversubscribing the link. Max center spread
8890 * is 2.5%; use 5% for safety's sake.
8891 */
8892 u32 bps = target_clock * bpp * 21 / 20;
619d4d04 8893 return DIV_ROUND_UP(bps, link_bw * 8);
d4b1931c
PZ
8894}
8895
7429e9d4 8896static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
6cf86a5e 8897{
7429e9d4 8898 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
f48d8f23
PZ
8899}
8900
b75ca6f6
ACO
8901static void ironlake_compute_dpll(struct intel_crtc *intel_crtc,
8902 struct intel_crtc_state *crtc_state,
9e2c8475 8903 struct dpll *reduced_clock)
79e53945 8904{
de13a2e3 8905 struct drm_crtc *crtc = &intel_crtc->base;
79e53945
JB
8906 struct drm_device *dev = crtc->dev;
8907 struct drm_i915_private *dev_priv = dev->dev_private;
55bb9992 8908 struct drm_atomic_state *state = crtc_state->base.state;
da3ced29 8909 struct drm_connector *connector;
55bb9992
ACO
8910 struct drm_connector_state *connector_state;
8911 struct intel_encoder *encoder;
b75ca6f6 8912 u32 dpll, fp, fp2;
ceb41007 8913 int factor, i;
09ede541 8914 bool is_lvds = false, is_sdvo = false;
79e53945 8915
da3ced29 8916 for_each_connector_in_state(state, connector, connector_state, i) {
55bb9992
ACO
8917 if (connector_state->crtc != crtc_state->base.crtc)
8918 continue;
8919
8920 encoder = to_intel_encoder(connector_state->best_encoder);
8921
8922 switch (encoder->type) {
79e53945
JB
8923 case INTEL_OUTPUT_LVDS:
8924 is_lvds = true;
8925 break;
8926 case INTEL_OUTPUT_SDVO:
7d57382e 8927 case INTEL_OUTPUT_HDMI:
79e53945 8928 is_sdvo = true;
79e53945 8929 break;
6847d71b
PZ
8930 default:
8931 break;
79e53945
JB
8932 }
8933 }
79e53945 8934
c1858123 8935 /* Enable autotuning of the PLL clock (if permissible) */
8febb297
EA
8936 factor = 21;
8937 if (is_lvds) {
8938 if ((intel_panel_use_ssc(dev_priv) &&
e91e941b 8939 dev_priv->vbt.lvds_ssc_freq == 100000) ||
f0b44056 8940 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
8febb297 8941 factor = 25;
190f68c5 8942 } else if (crtc_state->sdvo_tv_clock)
8febb297 8943 factor = 20;
c1858123 8944
b75ca6f6
ACO
8945 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
8946
190f68c5 8947 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
b75ca6f6
ACO
8948 fp |= FP_CB_TUNE;
8949
8950 if (reduced_clock) {
8951 fp2 = i9xx_dpll_compute_fp(reduced_clock);
2c07245f 8952
b75ca6f6
ACO
8953 if (reduced_clock->m < factor * reduced_clock->n)
8954 fp2 |= FP_CB_TUNE;
8955 } else {
8956 fp2 = fp;
8957 }
9a7c7890 8958
5eddb70b 8959 dpll = 0;
2c07245f 8960
a07d6787
EA
8961 if (is_lvds)
8962 dpll |= DPLLB_MODE_LVDS;
8963 else
8964 dpll |= DPLLB_MODE_DAC_SERIAL;
198a037f 8965
190f68c5 8966 dpll |= (crtc_state->pixel_multiplier - 1)
ef1b460d 8967 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
198a037f
DV
8968
8969 if (is_sdvo)
4a33e48d 8970 dpll |= DPLL_SDVO_HIGH_SPEED;
190f68c5 8971 if (crtc_state->has_dp_encoder)
4a33e48d 8972 dpll |= DPLL_SDVO_HIGH_SPEED;
79e53945 8973
a07d6787 8974 /* compute bitmask from p1 value */
190f68c5 8975 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
a07d6787 8976 /* also FPA1 */
190f68c5 8977 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
a07d6787 8978
190f68c5 8979 switch (crtc_state->dpll.p2) {
a07d6787
EA
8980 case 5:
8981 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
8982 break;
8983 case 7:
8984 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
8985 break;
8986 case 10:
8987 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
8988 break;
8989 case 14:
8990 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
8991 break;
79e53945
JB
8992 }
8993
ceb41007 8994 if (is_lvds && intel_panel_use_ssc(dev_priv))
43565a06 8995 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
79e53945
JB
8996 else
8997 dpll |= PLL_REF_INPUT_DREFCLK;
8998
b75ca6f6
ACO
8999 dpll |= DPLL_VCO_ENABLE;
9000
9001 crtc_state->dpll_hw_state.dpll = dpll;
9002 crtc_state->dpll_hw_state.fp0 = fp;
9003 crtc_state->dpll_hw_state.fp1 = fp2;
de13a2e3
PZ
9004}
9005
190f68c5
ACO
9006static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
9007 struct intel_crtc_state *crtc_state)
de13a2e3 9008{
997c030c
ACO
9009 struct drm_device *dev = crtc->base.dev;
9010 struct drm_i915_private *dev_priv = dev->dev_private;
9e2c8475 9011 struct dpll reduced_clock;
7ed9f894 9012 bool has_reduced_clock = false;
e2b78267 9013 struct intel_shared_dpll *pll;
1b6f4958 9014 const struct intel_limit *limit;
997c030c 9015 int refclk = 120000;
de13a2e3 9016
dd3cd74a
ACO
9017 memset(&crtc_state->dpll_hw_state, 0,
9018 sizeof(crtc_state->dpll_hw_state));
9019
ded220e2
ACO
9020 crtc->lowfreq_avail = false;
9021
9022 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
9023 if (!crtc_state->has_pch_encoder)
9024 return 0;
79e53945 9025
997c030c
ACO
9026 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
9027 if (intel_panel_use_ssc(dev_priv)) {
9028 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
9029 dev_priv->vbt.lvds_ssc_freq);
9030 refclk = dev_priv->vbt.lvds_ssc_freq;
9031 }
9032
9033 if (intel_is_dual_link_lvds(dev)) {
9034 if (refclk == 100000)
9035 limit = &intel_limits_ironlake_dual_lvds_100m;
9036 else
9037 limit = &intel_limits_ironlake_dual_lvds;
9038 } else {
9039 if (refclk == 100000)
9040 limit = &intel_limits_ironlake_single_lvds_100m;
9041 else
9042 limit = &intel_limits_ironlake_single_lvds;
9043 }
9044 } else {
9045 limit = &intel_limits_ironlake_dac;
9046 }
9047
364ee29d 9048 if (!crtc_state->clock_set &&
997c030c
ACO
9049 !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
9050 refclk, NULL, &crtc_state->dpll)) {
364ee29d
ACO
9051 DRM_ERROR("Couldn't find PLL settings for mode!\n");
9052 return -EINVAL;
f47709a9 9053 }
79e53945 9054
b75ca6f6
ACO
9055 ironlake_compute_dpll(crtc, crtc_state,
9056 has_reduced_clock ? &reduced_clock : NULL);
66e985c0 9057
ded220e2
ACO
9058 pll = intel_get_shared_dpll(crtc, crtc_state, NULL);
9059 if (pll == NULL) {
9060 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
9061 pipe_name(crtc->pipe));
9062 return -EINVAL;
3fb37703 9063 }
79e53945 9064
ded220e2
ACO
9065 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
9066 has_reduced_clock)
c7653199 9067 crtc->lowfreq_avail = true;
e2b78267 9068
c8f7a0db 9069 return 0;
79e53945
JB
9070}
9071
eb14cb74
VS
9072static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
9073 struct intel_link_m_n *m_n)
9074{
9075 struct drm_device *dev = crtc->base.dev;
9076 struct drm_i915_private *dev_priv = dev->dev_private;
9077 enum pipe pipe = crtc->pipe;
9078
9079 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
9080 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
9081 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
9082 & ~TU_SIZE_MASK;
9083 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
9084 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
9085 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9086}
9087
9088static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
9089 enum transcoder transcoder,
b95af8be
VK
9090 struct intel_link_m_n *m_n,
9091 struct intel_link_m_n *m2_n2)
72419203
DV
9092{
9093 struct drm_device *dev = crtc->base.dev;
9094 struct drm_i915_private *dev_priv = dev->dev_private;
eb14cb74 9095 enum pipe pipe = crtc->pipe;
72419203 9096
eb14cb74
VS
9097 if (INTEL_INFO(dev)->gen >= 5) {
9098 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
9099 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
9100 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
9101 & ~TU_SIZE_MASK;
9102 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
9103 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
9104 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
b95af8be
VK
9105 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
9106 * gen < 8) and if DRRS is supported (to make sure the
9107 * registers are not unnecessarily read).
9108 */
9109 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
6e3c9717 9110 crtc->config->has_drrs) {
b95af8be
VK
9111 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
9112 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
9113 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
9114 & ~TU_SIZE_MASK;
9115 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
9116 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
9117 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9118 }
eb14cb74
VS
9119 } else {
9120 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
9121 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
9122 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
9123 & ~TU_SIZE_MASK;
9124 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
9125 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
9126 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9127 }
9128}
9129
9130void intel_dp_get_m_n(struct intel_crtc *crtc,
5cec258b 9131 struct intel_crtc_state *pipe_config)
eb14cb74 9132{
681a8504 9133 if (pipe_config->has_pch_encoder)
eb14cb74
VS
9134 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
9135 else
9136 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be
VK
9137 &pipe_config->dp_m_n,
9138 &pipe_config->dp_m2_n2);
eb14cb74 9139}
72419203 9140
eb14cb74 9141static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
5cec258b 9142 struct intel_crtc_state *pipe_config)
eb14cb74
VS
9143{
9144 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be 9145 &pipe_config->fdi_m_n, NULL);
72419203
DV
9146}
9147
bd2e244f 9148static void skylake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 9149 struct intel_crtc_state *pipe_config)
bd2e244f
JB
9150{
9151 struct drm_device *dev = crtc->base.dev;
9152 struct drm_i915_private *dev_priv = dev->dev_private;
a1b2278e
CK
9153 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
9154 uint32_t ps_ctrl = 0;
9155 int id = -1;
9156 int i;
bd2e244f 9157
a1b2278e
CK
9158 /* find scaler attached to this pipe */
9159 for (i = 0; i < crtc->num_scalers; i++) {
9160 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
9161 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
9162 id = i;
9163 pipe_config->pch_pfit.enabled = true;
9164 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
9165 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
9166 break;
9167 }
9168 }
bd2e244f 9169
a1b2278e
CK
9170 scaler_state->scaler_id = id;
9171 if (id >= 0) {
9172 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
9173 } else {
9174 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
bd2e244f
JB
9175 }
9176}
9177
5724dbd1
DL
9178static void
9179skylake_get_initial_plane_config(struct intel_crtc *crtc,
9180 struct intel_initial_plane_config *plane_config)
bc8d7dff
DL
9181{
9182 struct drm_device *dev = crtc->base.dev;
9183 struct drm_i915_private *dev_priv = dev->dev_private;
40f46283 9184 u32 val, base, offset, stride_mult, tiling;
bc8d7dff
DL
9185 int pipe = crtc->pipe;
9186 int fourcc, pixel_format;
6761dd31 9187 unsigned int aligned_height;
bc8d7dff 9188 struct drm_framebuffer *fb;
1b842c89 9189 struct intel_framebuffer *intel_fb;
bc8d7dff 9190
d9806c9f 9191 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 9192 if (!intel_fb) {
bc8d7dff
DL
9193 DRM_DEBUG_KMS("failed to alloc fb\n");
9194 return;
9195 }
9196
1b842c89
DL
9197 fb = &intel_fb->base;
9198
bc8d7dff 9199 val = I915_READ(PLANE_CTL(pipe, 0));
42a7b088
DL
9200 if (!(val & PLANE_CTL_ENABLE))
9201 goto error;
9202
bc8d7dff
DL
9203 pixel_format = val & PLANE_CTL_FORMAT_MASK;
9204 fourcc = skl_format_to_fourcc(pixel_format,
9205 val & PLANE_CTL_ORDER_RGBX,
9206 val & PLANE_CTL_ALPHA_MASK);
9207 fb->pixel_format = fourcc;
9208 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9209
40f46283
DL
9210 tiling = val & PLANE_CTL_TILED_MASK;
9211 switch (tiling) {
9212 case PLANE_CTL_TILED_LINEAR:
9213 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
9214 break;
9215 case PLANE_CTL_TILED_X:
9216 plane_config->tiling = I915_TILING_X;
9217 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9218 break;
9219 case PLANE_CTL_TILED_Y:
9220 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
9221 break;
9222 case PLANE_CTL_TILED_YF:
9223 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
9224 break;
9225 default:
9226 MISSING_CASE(tiling);
9227 goto error;
9228 }
9229
bc8d7dff
DL
9230 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
9231 plane_config->base = base;
9232
9233 offset = I915_READ(PLANE_OFFSET(pipe, 0));
9234
9235 val = I915_READ(PLANE_SIZE(pipe, 0));
9236 fb->height = ((val >> 16) & 0xfff) + 1;
9237 fb->width = ((val >> 0) & 0x1fff) + 1;
9238
9239 val = I915_READ(PLANE_STRIDE(pipe, 0));
7b49f948 9240 stride_mult = intel_fb_stride_alignment(dev_priv, fb->modifier[0],
40f46283 9241 fb->pixel_format);
bc8d7dff
DL
9242 fb->pitches[0] = (val & 0x3ff) * stride_mult;
9243
9244 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
9245 fb->pixel_format,
9246 fb->modifier[0]);
bc8d7dff 9247
f37b5c2b 9248 plane_config->size = fb->pitches[0] * aligned_height;
bc8d7dff
DL
9249
9250 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9251 pipe_name(pipe), fb->width, fb->height,
9252 fb->bits_per_pixel, base, fb->pitches[0],
9253 plane_config->size);
9254
2d14030b 9255 plane_config->fb = intel_fb;
bc8d7dff
DL
9256 return;
9257
9258error:
9259 kfree(fb);
9260}
9261
2fa2fe9a 9262static void ironlake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 9263 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
9264{
9265 struct drm_device *dev = crtc->base.dev;
9266 struct drm_i915_private *dev_priv = dev->dev_private;
9267 uint32_t tmp;
9268
9269 tmp = I915_READ(PF_CTL(crtc->pipe));
9270
9271 if (tmp & PF_ENABLE) {
fd4daa9c 9272 pipe_config->pch_pfit.enabled = true;
2fa2fe9a
DV
9273 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
9274 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
cb8b2a30
DV
9275
9276 /* We currently do not free assignements of panel fitters on
9277 * ivb/hsw (since we don't use the higher upscaling modes which
9278 * differentiates them) so just WARN about this case for now. */
9279 if (IS_GEN7(dev)) {
9280 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
9281 PF_PIPE_SEL_IVB(crtc->pipe));
9282 }
2fa2fe9a 9283 }
79e53945
JB
9284}
9285
5724dbd1
DL
9286static void
9287ironlake_get_initial_plane_config(struct intel_crtc *crtc,
9288 struct intel_initial_plane_config *plane_config)
4c6baa59
JB
9289{
9290 struct drm_device *dev = crtc->base.dev;
9291 struct drm_i915_private *dev_priv = dev->dev_private;
9292 u32 val, base, offset;
aeee5a49 9293 int pipe = crtc->pipe;
4c6baa59 9294 int fourcc, pixel_format;
6761dd31 9295 unsigned int aligned_height;
b113d5ee 9296 struct drm_framebuffer *fb;
1b842c89 9297 struct intel_framebuffer *intel_fb;
4c6baa59 9298
42a7b088
DL
9299 val = I915_READ(DSPCNTR(pipe));
9300 if (!(val & DISPLAY_PLANE_ENABLE))
9301 return;
9302
d9806c9f 9303 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 9304 if (!intel_fb) {
4c6baa59
JB
9305 DRM_DEBUG_KMS("failed to alloc fb\n");
9306 return;
9307 }
9308
1b842c89
DL
9309 fb = &intel_fb->base;
9310
18c5247e
DV
9311 if (INTEL_INFO(dev)->gen >= 4) {
9312 if (val & DISPPLANE_TILED) {
49af449b 9313 plane_config->tiling = I915_TILING_X;
18c5247e
DV
9314 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9315 }
9316 }
4c6baa59
JB
9317
9318 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 9319 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
9320 fb->pixel_format = fourcc;
9321 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
4c6baa59 9322
aeee5a49 9323 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
4c6baa59 9324 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
aeee5a49 9325 offset = I915_READ(DSPOFFSET(pipe));
4c6baa59 9326 } else {
49af449b 9327 if (plane_config->tiling)
aeee5a49 9328 offset = I915_READ(DSPTILEOFF(pipe));
4c6baa59 9329 else
aeee5a49 9330 offset = I915_READ(DSPLINOFF(pipe));
4c6baa59
JB
9331 }
9332 plane_config->base = base;
9333
9334 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
9335 fb->width = ((val >> 16) & 0xfff) + 1;
9336 fb->height = ((val >> 0) & 0xfff) + 1;
4c6baa59
JB
9337
9338 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 9339 fb->pitches[0] = val & 0xffffffc0;
4c6baa59 9340
b113d5ee 9341 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
9342 fb->pixel_format,
9343 fb->modifier[0]);
4c6baa59 9344
f37b5c2b 9345 plane_config->size = fb->pitches[0] * aligned_height;
4c6baa59 9346
2844a921
DL
9347 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9348 pipe_name(pipe), fb->width, fb->height,
9349 fb->bits_per_pixel, base, fb->pitches[0],
9350 plane_config->size);
b113d5ee 9351
2d14030b 9352 plane_config->fb = intel_fb;
4c6baa59
JB
9353}
9354
0e8ffe1b 9355static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
5cec258b 9356 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
9357{
9358 struct drm_device *dev = crtc->base.dev;
9359 struct drm_i915_private *dev_priv = dev->dev_private;
1729050e 9360 enum intel_display_power_domain power_domain;
0e8ffe1b 9361 uint32_t tmp;
1729050e 9362 bool ret;
0e8ffe1b 9363
1729050e
ID
9364 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
9365 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
930e8c9e
PZ
9366 return false;
9367
e143a21c 9368 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
8106ddbd 9369 pipe_config->shared_dpll = NULL;
eccb140b 9370
1729050e 9371 ret = false;
0e8ffe1b
DV
9372 tmp = I915_READ(PIPECONF(crtc->pipe));
9373 if (!(tmp & PIPECONF_ENABLE))
1729050e 9374 goto out;
0e8ffe1b 9375
42571aef
VS
9376 switch (tmp & PIPECONF_BPC_MASK) {
9377 case PIPECONF_6BPC:
9378 pipe_config->pipe_bpp = 18;
9379 break;
9380 case PIPECONF_8BPC:
9381 pipe_config->pipe_bpp = 24;
9382 break;
9383 case PIPECONF_10BPC:
9384 pipe_config->pipe_bpp = 30;
9385 break;
9386 case PIPECONF_12BPC:
9387 pipe_config->pipe_bpp = 36;
9388 break;
9389 default:
9390 break;
9391 }
9392
b5a9fa09
DV
9393 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
9394 pipe_config->limited_color_range = true;
9395
ab9412ba 9396 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
66e985c0 9397 struct intel_shared_dpll *pll;
8106ddbd 9398 enum intel_dpll_id pll_id;
66e985c0 9399
88adfff1
DV
9400 pipe_config->has_pch_encoder = true;
9401
627eb5a3
DV
9402 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
9403 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9404 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
9405
9406 ironlake_get_fdi_m_n_config(crtc, pipe_config);
6c49f241 9407
2d1fe073 9408 if (HAS_PCH_IBX(dev_priv)) {
d9a7bc67
ID
9409 /*
9410 * The pipe->pch transcoder and pch transcoder->pll
9411 * mapping is fixed.
9412 */
8106ddbd 9413 pll_id = (enum intel_dpll_id) crtc->pipe;
c0d43d62
DV
9414 } else {
9415 tmp = I915_READ(PCH_DPLL_SEL);
9416 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
8106ddbd 9417 pll_id = DPLL_ID_PCH_PLL_B;
c0d43d62 9418 else
8106ddbd 9419 pll_id= DPLL_ID_PCH_PLL_A;
c0d43d62 9420 }
66e985c0 9421
8106ddbd
ACO
9422 pipe_config->shared_dpll =
9423 intel_get_shared_dpll_by_id(dev_priv, pll_id);
9424 pll = pipe_config->shared_dpll;
66e985c0 9425
2edd6443
ACO
9426 WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll,
9427 &pipe_config->dpll_hw_state));
c93f54cf
DV
9428
9429 tmp = pipe_config->dpll_hw_state.dpll;
9430 pipe_config->pixel_multiplier =
9431 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
9432 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
18442d08
VS
9433
9434 ironlake_pch_clock_get(crtc, pipe_config);
6c49f241
DV
9435 } else {
9436 pipe_config->pixel_multiplier = 1;
627eb5a3
DV
9437 }
9438
1bd1bd80 9439 intel_get_pipe_timings(crtc, pipe_config);
bc58be60 9440 intel_get_pipe_src_size(crtc, pipe_config);
1bd1bd80 9441
2fa2fe9a
DV
9442 ironlake_get_pfit_config(crtc, pipe_config);
9443
1729050e
ID
9444 ret = true;
9445
9446out:
9447 intel_display_power_put(dev_priv, power_domain);
9448
9449 return ret;
0e8ffe1b
DV
9450}
9451
be256dc7
PZ
9452static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
9453{
9454 struct drm_device *dev = dev_priv->dev;
be256dc7 9455 struct intel_crtc *crtc;
be256dc7 9456
d3fcc808 9457 for_each_intel_crtc(dev, crtc)
e2c719b7 9458 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
be256dc7
PZ
9459 pipe_name(crtc->pipe));
9460
e2c719b7
RC
9461 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
9462 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
01403de3
VS
9463 I915_STATE_WARN(I915_READ(WRPLL_CTL(0)) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
9464 I915_STATE_WARN(I915_READ(WRPLL_CTL(1)) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
e2c719b7
RC
9465 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
9466 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
be256dc7 9467 "CPU PWM1 enabled\n");
c5107b87 9468 if (IS_HASWELL(dev))
e2c719b7 9469 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
c5107b87 9470 "CPU PWM2 enabled\n");
e2c719b7 9471 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
be256dc7 9472 "PCH PWM1 enabled\n");
e2c719b7 9473 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
be256dc7 9474 "Utility pin enabled\n");
e2c719b7 9475 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
be256dc7 9476
9926ada1
PZ
9477 /*
9478 * In theory we can still leave IRQs enabled, as long as only the HPD
9479 * interrupts remain enabled. We used to check for that, but since it's
9480 * gen-specific and since we only disable LCPLL after we fully disable
9481 * the interrupts, the check below should be enough.
9482 */
e2c719b7 9483 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
be256dc7
PZ
9484}
9485
9ccd5aeb
PZ
9486static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
9487{
9488 struct drm_device *dev = dev_priv->dev;
9489
9490 if (IS_HASWELL(dev))
9491 return I915_READ(D_COMP_HSW);
9492 else
9493 return I915_READ(D_COMP_BDW);
9494}
9495
3c4c9b81
PZ
9496static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
9497{
9498 struct drm_device *dev = dev_priv->dev;
9499
9500 if (IS_HASWELL(dev)) {
9501 mutex_lock(&dev_priv->rps.hw_lock);
9502 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
9503 val))
f475dadf 9504 DRM_ERROR("Failed to write to D_COMP\n");
3c4c9b81
PZ
9505 mutex_unlock(&dev_priv->rps.hw_lock);
9506 } else {
9ccd5aeb
PZ
9507 I915_WRITE(D_COMP_BDW, val);
9508 POSTING_READ(D_COMP_BDW);
3c4c9b81 9509 }
be256dc7
PZ
9510}
9511
9512/*
9513 * This function implements pieces of two sequences from BSpec:
9514 * - Sequence for display software to disable LCPLL
9515 * - Sequence for display software to allow package C8+
9516 * The steps implemented here are just the steps that actually touch the LCPLL
9517 * register. Callers should take care of disabling all the display engine
9518 * functions, doing the mode unset, fixing interrupts, etc.
9519 */
6ff58d53
PZ
9520static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
9521 bool switch_to_fclk, bool allow_power_down)
be256dc7
PZ
9522{
9523 uint32_t val;
9524
9525 assert_can_disable_lcpll(dev_priv);
9526
9527 val = I915_READ(LCPLL_CTL);
9528
9529 if (switch_to_fclk) {
9530 val |= LCPLL_CD_SOURCE_FCLK;
9531 I915_WRITE(LCPLL_CTL, val);
9532
9533 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9534 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9535 DRM_ERROR("Switching to FCLK failed\n");
9536
9537 val = I915_READ(LCPLL_CTL);
9538 }
9539
9540 val |= LCPLL_PLL_DISABLE;
9541 I915_WRITE(LCPLL_CTL, val);
9542 POSTING_READ(LCPLL_CTL);
9543
9544 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
9545 DRM_ERROR("LCPLL still locked\n");
9546
9ccd5aeb 9547 val = hsw_read_dcomp(dev_priv);
be256dc7 9548 val |= D_COMP_COMP_DISABLE;
3c4c9b81 9549 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
9550 ndelay(100);
9551
9ccd5aeb
PZ
9552 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
9553 1))
be256dc7
PZ
9554 DRM_ERROR("D_COMP RCOMP still in progress\n");
9555
9556 if (allow_power_down) {
9557 val = I915_READ(LCPLL_CTL);
9558 val |= LCPLL_POWER_DOWN_ALLOW;
9559 I915_WRITE(LCPLL_CTL, val);
9560 POSTING_READ(LCPLL_CTL);
9561 }
9562}
9563
9564/*
9565 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
9566 * source.
9567 */
6ff58d53 9568static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
be256dc7
PZ
9569{
9570 uint32_t val;
9571
9572 val = I915_READ(LCPLL_CTL);
9573
9574 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
9575 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
9576 return;
9577
a8a8bd54
PZ
9578 /*
9579 * Make sure we're not on PC8 state before disabling PC8, otherwise
9580 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
a8a8bd54 9581 */
59bad947 9582 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
215733fa 9583
be256dc7
PZ
9584 if (val & LCPLL_POWER_DOWN_ALLOW) {
9585 val &= ~LCPLL_POWER_DOWN_ALLOW;
9586 I915_WRITE(LCPLL_CTL, val);
35d8f2eb 9587 POSTING_READ(LCPLL_CTL);
be256dc7
PZ
9588 }
9589
9ccd5aeb 9590 val = hsw_read_dcomp(dev_priv);
be256dc7
PZ
9591 val |= D_COMP_COMP_FORCE;
9592 val &= ~D_COMP_COMP_DISABLE;
3c4c9b81 9593 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
9594
9595 val = I915_READ(LCPLL_CTL);
9596 val &= ~LCPLL_PLL_DISABLE;
9597 I915_WRITE(LCPLL_CTL, val);
9598
9599 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
9600 DRM_ERROR("LCPLL not locked yet\n");
9601
9602 if (val & LCPLL_CD_SOURCE_FCLK) {
9603 val = I915_READ(LCPLL_CTL);
9604 val &= ~LCPLL_CD_SOURCE_FCLK;
9605 I915_WRITE(LCPLL_CTL, val);
9606
9607 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9608 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9609 DRM_ERROR("Switching back to LCPLL failed\n");
9610 }
215733fa 9611
59bad947 9612 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
b6283055 9613 intel_update_cdclk(dev_priv->dev);
be256dc7
PZ
9614}
9615
765dab67
PZ
9616/*
9617 * Package states C8 and deeper are really deep PC states that can only be
9618 * reached when all the devices on the system allow it, so even if the graphics
9619 * device allows PC8+, it doesn't mean the system will actually get to these
9620 * states. Our driver only allows PC8+ when going into runtime PM.
9621 *
9622 * The requirements for PC8+ are that all the outputs are disabled, the power
9623 * well is disabled and most interrupts are disabled, and these are also
9624 * requirements for runtime PM. When these conditions are met, we manually do
9625 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
9626 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
9627 * hang the machine.
9628 *
9629 * When we really reach PC8 or deeper states (not just when we allow it) we lose
9630 * the state of some registers, so when we come back from PC8+ we need to
9631 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
9632 * need to take care of the registers kept by RC6. Notice that this happens even
9633 * if we don't put the device in PCI D3 state (which is what currently happens
9634 * because of the runtime PM support).
9635 *
9636 * For more, read "Display Sequences for Package C8" on the hardware
9637 * documentation.
9638 */
a14cb6fc 9639void hsw_enable_pc8(struct drm_i915_private *dev_priv)
c67a470b 9640{
c67a470b
PZ
9641 struct drm_device *dev = dev_priv->dev;
9642 uint32_t val;
9643
c67a470b
PZ
9644 DRM_DEBUG_KMS("Enabling package C8+\n");
9645
c2699524 9646 if (HAS_PCH_LPT_LP(dev)) {
c67a470b
PZ
9647 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9648 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
9649 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9650 }
9651
9652 lpt_disable_clkout_dp(dev);
c67a470b
PZ
9653 hsw_disable_lcpll(dev_priv, true, true);
9654}
9655
a14cb6fc 9656void hsw_disable_pc8(struct drm_i915_private *dev_priv)
c67a470b
PZ
9657{
9658 struct drm_device *dev = dev_priv->dev;
9659 uint32_t val;
9660
c67a470b
PZ
9661 DRM_DEBUG_KMS("Disabling package C8+\n");
9662
9663 hsw_restore_lcpll(dev_priv);
c67a470b
PZ
9664 lpt_init_pch_refclk(dev);
9665
c2699524 9666 if (HAS_PCH_LPT_LP(dev)) {
c67a470b
PZ
9667 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9668 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
9669 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9670 }
c67a470b
PZ
9671}
9672
27c329ed 9673static void broxton_modeset_commit_cdclk(struct drm_atomic_state *old_state)
f8437dd1 9674{
a821fc46 9675 struct drm_device *dev = old_state->dev;
1a617b77
ML
9676 struct intel_atomic_state *old_intel_state =
9677 to_intel_atomic_state(old_state);
9678 unsigned int req_cdclk = old_intel_state->dev_cdclk;
f8437dd1 9679
c6c4696f 9680 broxton_set_cdclk(to_i915(dev), req_cdclk);
f8437dd1
VK
9681}
9682
b432e5cf 9683/* compute the max rate for new configuration */
27c329ed 9684static int ilk_max_pixel_rate(struct drm_atomic_state *state)
b432e5cf 9685{
565602d7
ML
9686 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
9687 struct drm_i915_private *dev_priv = state->dev->dev_private;
9688 struct drm_crtc *crtc;
9689 struct drm_crtc_state *cstate;
27c329ed 9690 struct intel_crtc_state *crtc_state;
565602d7
ML
9691 unsigned max_pixel_rate = 0, i;
9692 enum pipe pipe;
b432e5cf 9693
565602d7
ML
9694 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
9695 sizeof(intel_state->min_pixclk));
27c329ed 9696
565602d7
ML
9697 for_each_crtc_in_state(state, crtc, cstate, i) {
9698 int pixel_rate;
27c329ed 9699
565602d7
ML
9700 crtc_state = to_intel_crtc_state(cstate);
9701 if (!crtc_state->base.enable) {
9702 intel_state->min_pixclk[i] = 0;
b432e5cf 9703 continue;
565602d7 9704 }
b432e5cf 9705
27c329ed 9706 pixel_rate = ilk_pipe_pixel_rate(crtc_state);
b432e5cf
VS
9707
9708 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
565602d7 9709 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
b432e5cf
VS
9710 pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95);
9711
565602d7 9712 intel_state->min_pixclk[i] = pixel_rate;
b432e5cf
VS
9713 }
9714
565602d7
ML
9715 for_each_pipe(dev_priv, pipe)
9716 max_pixel_rate = max(intel_state->min_pixclk[pipe], max_pixel_rate);
9717
b432e5cf
VS
9718 return max_pixel_rate;
9719}
9720
9721static void broadwell_set_cdclk(struct drm_device *dev, int cdclk)
9722{
9723 struct drm_i915_private *dev_priv = dev->dev_private;
9724 uint32_t val, data;
9725 int ret;
9726
9727 if (WARN((I915_READ(LCPLL_CTL) &
9728 (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK |
9729 LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE |
9730 LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW |
9731 LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK,
9732 "trying to change cdclk frequency with cdclk not enabled\n"))
9733 return;
9734
9735 mutex_lock(&dev_priv->rps.hw_lock);
9736 ret = sandybridge_pcode_write(dev_priv,
9737 BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
9738 mutex_unlock(&dev_priv->rps.hw_lock);
9739 if (ret) {
9740 DRM_ERROR("failed to inform pcode about cdclk change\n");
9741 return;
9742 }
9743
9744 val = I915_READ(LCPLL_CTL);
9745 val |= LCPLL_CD_SOURCE_FCLK;
9746 I915_WRITE(LCPLL_CTL, val);
9747
5ba00178
TU
9748 if (wait_for_us(I915_READ(LCPLL_CTL) &
9749 LCPLL_CD_SOURCE_FCLK_DONE, 1))
b432e5cf
VS
9750 DRM_ERROR("Switching to FCLK failed\n");
9751
9752 val = I915_READ(LCPLL_CTL);
9753 val &= ~LCPLL_CLK_FREQ_MASK;
9754
9755 switch (cdclk) {
9756 case 450000:
9757 val |= LCPLL_CLK_FREQ_450;
9758 data = 0;
9759 break;
9760 case 540000:
9761 val |= LCPLL_CLK_FREQ_54O_BDW;
9762 data = 1;
9763 break;
9764 case 337500:
9765 val |= LCPLL_CLK_FREQ_337_5_BDW;
9766 data = 2;
9767 break;
9768 case 675000:
9769 val |= LCPLL_CLK_FREQ_675_BDW;
9770 data = 3;
9771 break;
9772 default:
9773 WARN(1, "invalid cdclk frequency\n");
9774 return;
9775 }
9776
9777 I915_WRITE(LCPLL_CTL, val);
9778
9779 val = I915_READ(LCPLL_CTL);
9780 val &= ~LCPLL_CD_SOURCE_FCLK;
9781 I915_WRITE(LCPLL_CTL, val);
9782
5ba00178
TU
9783 if (wait_for_us((I915_READ(LCPLL_CTL) &
9784 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
b432e5cf
VS
9785 DRM_ERROR("Switching back to LCPLL failed\n");
9786
9787 mutex_lock(&dev_priv->rps.hw_lock);
9788 sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data);
9789 mutex_unlock(&dev_priv->rps.hw_lock);
9790
7f1052a8
VS
9791 I915_WRITE(CDCLK_FREQ, DIV_ROUND_CLOSEST(cdclk, 1000) - 1);
9792
b432e5cf
VS
9793 intel_update_cdclk(dev);
9794
9795 WARN(cdclk != dev_priv->cdclk_freq,
9796 "cdclk requested %d kHz but got %d kHz\n",
9797 cdclk, dev_priv->cdclk_freq);
9798}
9799
587c7914
VS
9800static int broadwell_calc_cdclk(int max_pixclk)
9801{
9802 if (max_pixclk > 540000)
9803 return 675000;
9804 else if (max_pixclk > 450000)
9805 return 540000;
9806 else if (max_pixclk > 337500)
9807 return 450000;
9808 else
9809 return 337500;
9810}
9811
27c329ed 9812static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state)
b432e5cf 9813{
27c329ed 9814 struct drm_i915_private *dev_priv = to_i915(state->dev);
1a617b77 9815 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
27c329ed 9816 int max_pixclk = ilk_max_pixel_rate(state);
b432e5cf
VS
9817 int cdclk;
9818
9819 /*
9820 * FIXME should also account for plane ratio
9821 * once 64bpp pixel formats are supported.
9822 */
587c7914 9823 cdclk = broadwell_calc_cdclk(max_pixclk);
b432e5cf 9824
b432e5cf 9825 if (cdclk > dev_priv->max_cdclk_freq) {
63ba534e
ML
9826 DRM_DEBUG_KMS("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
9827 cdclk, dev_priv->max_cdclk_freq);
9828 return -EINVAL;
b432e5cf
VS
9829 }
9830
1a617b77
ML
9831 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
9832 if (!intel_state->active_crtcs)
587c7914 9833 intel_state->dev_cdclk = broadwell_calc_cdclk(0);
b432e5cf
VS
9834
9835 return 0;
9836}
9837
27c329ed 9838static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state)
b432e5cf 9839{
27c329ed 9840 struct drm_device *dev = old_state->dev;
1a617b77
ML
9841 struct intel_atomic_state *old_intel_state =
9842 to_intel_atomic_state(old_state);
9843 unsigned req_cdclk = old_intel_state->dev_cdclk;
b432e5cf 9844
27c329ed 9845 broadwell_set_cdclk(dev, req_cdclk);
b432e5cf
VS
9846}
9847
c89e39f3
CT
9848static int skl_modeset_calc_cdclk(struct drm_atomic_state *state)
9849{
9850 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
9851 struct drm_i915_private *dev_priv = to_i915(state->dev);
9852 const int max_pixclk = ilk_max_pixel_rate(state);
a8ca4934 9853 int vco = intel_state->cdclk_pll_vco;
c89e39f3
CT
9854 int cdclk;
9855
9856 /*
9857 * FIXME should also account for plane ratio
9858 * once 64bpp pixel formats are supported.
9859 */
a8ca4934 9860 cdclk = skl_calc_cdclk(max_pixclk, vco);
c89e39f3
CT
9861
9862 /*
9863 * FIXME move the cdclk caclulation to
9864 * compute_config() so we can fail gracegully.
9865 */
9866 if (cdclk > dev_priv->max_cdclk_freq) {
9867 DRM_ERROR("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
9868 cdclk, dev_priv->max_cdclk_freq);
9869 cdclk = dev_priv->max_cdclk_freq;
9870 }
9871
9872 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
9873 if (!intel_state->active_crtcs)
a8ca4934 9874 intel_state->dev_cdclk = skl_calc_cdclk(0, vco);
c89e39f3
CT
9875
9876 return 0;
9877}
9878
9879static void skl_modeset_commit_cdclk(struct drm_atomic_state *old_state)
9880{
1cd593e0
VS
9881 struct drm_i915_private *dev_priv = to_i915(old_state->dev);
9882 struct intel_atomic_state *intel_state = to_intel_atomic_state(old_state);
9883 unsigned int req_cdclk = intel_state->dev_cdclk;
9884 unsigned int req_vco = intel_state->cdclk_pll_vco;
c89e39f3 9885
1cd593e0 9886 skl_set_cdclk(dev_priv, req_cdclk, req_vco);
c89e39f3
CT
9887}
9888
190f68c5
ACO
9889static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
9890 struct intel_crtc_state *crtc_state)
09b4ddf9 9891{
af3997b5
MK
9892 struct intel_encoder *intel_encoder =
9893 intel_ddi_get_crtc_new_encoder(crtc_state);
9894
9895 if (intel_encoder->type != INTEL_OUTPUT_DSI) {
9896 if (!intel_ddi_pll_select(crtc, crtc_state))
9897 return -EINVAL;
9898 }
716c2e55 9899
c7653199 9900 crtc->lowfreq_avail = false;
644cef34 9901
c8f7a0db 9902 return 0;
79e53945
JB
9903}
9904
3760b59c
S
9905static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
9906 enum port port,
9907 struct intel_crtc_state *pipe_config)
9908{
8106ddbd
ACO
9909 enum intel_dpll_id id;
9910
3760b59c
S
9911 switch (port) {
9912 case PORT_A:
9913 pipe_config->ddi_pll_sel = SKL_DPLL0;
08250c4b 9914 id = DPLL_ID_SKL_DPLL0;
3760b59c
S
9915 break;
9916 case PORT_B:
9917 pipe_config->ddi_pll_sel = SKL_DPLL1;
08250c4b 9918 id = DPLL_ID_SKL_DPLL1;
3760b59c
S
9919 break;
9920 case PORT_C:
9921 pipe_config->ddi_pll_sel = SKL_DPLL2;
08250c4b 9922 id = DPLL_ID_SKL_DPLL2;
3760b59c
S
9923 break;
9924 default:
9925 DRM_ERROR("Incorrect port type\n");
8106ddbd 9926 return;
3760b59c 9927 }
8106ddbd
ACO
9928
9929 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
3760b59c
S
9930}
9931
96b7dfb7
S
9932static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
9933 enum port port,
5cec258b 9934 struct intel_crtc_state *pipe_config)
96b7dfb7 9935{
8106ddbd 9936 enum intel_dpll_id id;
a3c988ea 9937 u32 temp;
96b7dfb7
S
9938
9939 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
9940 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
9941
9942 switch (pipe_config->ddi_pll_sel) {
3148ade7 9943 case SKL_DPLL0:
a3c988ea
ACO
9944 id = DPLL_ID_SKL_DPLL0;
9945 break;
96b7dfb7 9946 case SKL_DPLL1:
8106ddbd 9947 id = DPLL_ID_SKL_DPLL1;
96b7dfb7
S
9948 break;
9949 case SKL_DPLL2:
8106ddbd 9950 id = DPLL_ID_SKL_DPLL2;
96b7dfb7
S
9951 break;
9952 case SKL_DPLL3:
8106ddbd 9953 id = DPLL_ID_SKL_DPLL3;
96b7dfb7 9954 break;
8106ddbd
ACO
9955 default:
9956 MISSING_CASE(pipe_config->ddi_pll_sel);
9957 return;
96b7dfb7 9958 }
8106ddbd
ACO
9959
9960 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
96b7dfb7
S
9961}
9962
7d2c8175
DL
9963static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
9964 enum port port,
5cec258b 9965 struct intel_crtc_state *pipe_config)
7d2c8175 9966{
8106ddbd
ACO
9967 enum intel_dpll_id id;
9968
7d2c8175
DL
9969 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
9970
9971 switch (pipe_config->ddi_pll_sel) {
9972 case PORT_CLK_SEL_WRPLL1:
8106ddbd 9973 id = DPLL_ID_WRPLL1;
7d2c8175
DL
9974 break;
9975 case PORT_CLK_SEL_WRPLL2:
8106ddbd 9976 id = DPLL_ID_WRPLL2;
7d2c8175 9977 break;
00490c22 9978 case PORT_CLK_SEL_SPLL:
8106ddbd 9979 id = DPLL_ID_SPLL;
79bd23da 9980 break;
9d16da65
ACO
9981 case PORT_CLK_SEL_LCPLL_810:
9982 id = DPLL_ID_LCPLL_810;
9983 break;
9984 case PORT_CLK_SEL_LCPLL_1350:
9985 id = DPLL_ID_LCPLL_1350;
9986 break;
9987 case PORT_CLK_SEL_LCPLL_2700:
9988 id = DPLL_ID_LCPLL_2700;
9989 break;
8106ddbd
ACO
9990 default:
9991 MISSING_CASE(pipe_config->ddi_pll_sel);
9992 /* fall through */
9993 case PORT_CLK_SEL_NONE:
8106ddbd 9994 return;
7d2c8175 9995 }
8106ddbd
ACO
9996
9997 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
7d2c8175
DL
9998}
9999
cf30429e
JN
10000static bool hsw_get_transcoder_state(struct intel_crtc *crtc,
10001 struct intel_crtc_state *pipe_config,
10002 unsigned long *power_domain_mask)
10003{
10004 struct drm_device *dev = crtc->base.dev;
10005 struct drm_i915_private *dev_priv = dev->dev_private;
10006 enum intel_display_power_domain power_domain;
10007 u32 tmp;
10008
d9a7bc67
ID
10009 /*
10010 * The pipe->transcoder mapping is fixed with the exception of the eDP
10011 * transcoder handled below.
10012 */
cf30429e
JN
10013 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
10014
10015 /*
10016 * XXX: Do intel_display_power_get_if_enabled before reading this (for
10017 * consistency and less surprising code; it's in always on power).
10018 */
10019 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
10020 if (tmp & TRANS_DDI_FUNC_ENABLE) {
10021 enum pipe trans_edp_pipe;
10022 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
10023 default:
10024 WARN(1, "unknown pipe linked to edp transcoder\n");
10025 case TRANS_DDI_EDP_INPUT_A_ONOFF:
10026 case TRANS_DDI_EDP_INPUT_A_ON:
10027 trans_edp_pipe = PIPE_A;
10028 break;
10029 case TRANS_DDI_EDP_INPUT_B_ONOFF:
10030 trans_edp_pipe = PIPE_B;
10031 break;
10032 case TRANS_DDI_EDP_INPUT_C_ONOFF:
10033 trans_edp_pipe = PIPE_C;
10034 break;
10035 }
10036
10037 if (trans_edp_pipe == crtc->pipe)
10038 pipe_config->cpu_transcoder = TRANSCODER_EDP;
10039 }
10040
10041 power_domain = POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder);
10042 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
10043 return false;
10044 *power_domain_mask |= BIT(power_domain);
10045
10046 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
10047
10048 return tmp & PIPECONF_ENABLE;
10049}
10050
4d1de975
JN
10051static bool bxt_get_dsi_transcoder_state(struct intel_crtc *crtc,
10052 struct intel_crtc_state *pipe_config,
10053 unsigned long *power_domain_mask)
10054{
10055 struct drm_device *dev = crtc->base.dev;
10056 struct drm_i915_private *dev_priv = dev->dev_private;
10057 enum intel_display_power_domain power_domain;
10058 enum port port;
10059 enum transcoder cpu_transcoder;
10060 u32 tmp;
10061
10062 pipe_config->has_dsi_encoder = false;
10063
10064 for_each_port_masked(port, BIT(PORT_A) | BIT(PORT_C)) {
10065 if (port == PORT_A)
10066 cpu_transcoder = TRANSCODER_DSI_A;
10067 else
10068 cpu_transcoder = TRANSCODER_DSI_C;
10069
10070 power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
10071 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
10072 continue;
10073 *power_domain_mask |= BIT(power_domain);
10074
db18b6a6
ID
10075 /*
10076 * The PLL needs to be enabled with a valid divider
10077 * configuration, otherwise accessing DSI registers will hang
10078 * the machine. See BSpec North Display Engine
10079 * registers/MIPI[BXT]. We can break out here early, since we
10080 * need the same DSI PLL to be enabled for both DSI ports.
10081 */
10082 if (!intel_dsi_pll_is_enabled(dev_priv))
10083 break;
10084
4d1de975
JN
10085 /* XXX: this works for video mode only */
10086 tmp = I915_READ(BXT_MIPI_PORT_CTRL(port));
10087 if (!(tmp & DPI_ENABLE))
10088 continue;
10089
10090 tmp = I915_READ(MIPI_CTRL(port));
10091 if ((tmp & BXT_PIPE_SELECT_MASK) != BXT_PIPE_SELECT(crtc->pipe))
10092 continue;
10093
10094 pipe_config->cpu_transcoder = cpu_transcoder;
10095 pipe_config->has_dsi_encoder = true;
10096 break;
10097 }
10098
10099 return pipe_config->has_dsi_encoder;
10100}
10101
26804afd 10102static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
5cec258b 10103 struct intel_crtc_state *pipe_config)
26804afd
DV
10104{
10105 struct drm_device *dev = crtc->base.dev;
10106 struct drm_i915_private *dev_priv = dev->dev_private;
d452c5b6 10107 struct intel_shared_dpll *pll;
26804afd
DV
10108 enum port port;
10109 uint32_t tmp;
10110
10111 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
10112
10113 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
10114
ef11bdb3 10115 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
96b7dfb7 10116 skylake_get_ddi_pll(dev_priv, port, pipe_config);
3760b59c
S
10117 else if (IS_BROXTON(dev))
10118 bxt_get_ddi_pll(dev_priv, port, pipe_config);
96b7dfb7
S
10119 else
10120 haswell_get_ddi_pll(dev_priv, port, pipe_config);
9cd86933 10121
8106ddbd
ACO
10122 pll = pipe_config->shared_dpll;
10123 if (pll) {
2edd6443
ACO
10124 WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll,
10125 &pipe_config->dpll_hw_state));
d452c5b6
DV
10126 }
10127
26804afd
DV
10128 /*
10129 * Haswell has only FDI/PCH transcoder A. It is which is connected to
10130 * DDI E. So just check whether this pipe is wired to DDI E and whether
10131 * the PCH transcoder is on.
10132 */
ca370455
DL
10133 if (INTEL_INFO(dev)->gen < 9 &&
10134 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
26804afd
DV
10135 pipe_config->has_pch_encoder = true;
10136
10137 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
10138 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
10139 FDI_DP_PORT_WIDTH_SHIFT) + 1;
10140
10141 ironlake_get_fdi_m_n_config(crtc, pipe_config);
10142 }
10143}
10144
0e8ffe1b 10145static bool haswell_get_pipe_config(struct intel_crtc *crtc,
5cec258b 10146 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
10147{
10148 struct drm_device *dev = crtc->base.dev;
10149 struct drm_i915_private *dev_priv = dev->dev_private;
1729050e
ID
10150 enum intel_display_power_domain power_domain;
10151 unsigned long power_domain_mask;
cf30429e 10152 bool active;
0e8ffe1b 10153
1729050e
ID
10154 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
10155 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
b5482bd0 10156 return false;
1729050e
ID
10157 power_domain_mask = BIT(power_domain);
10158
8106ddbd 10159 pipe_config->shared_dpll = NULL;
c0d43d62 10160
cf30429e 10161 active = hsw_get_transcoder_state(crtc, pipe_config, &power_domain_mask);
eccb140b 10162
4d1de975
JN
10163 if (IS_BROXTON(dev_priv)) {
10164 bxt_get_dsi_transcoder_state(crtc, pipe_config,
10165 &power_domain_mask);
10166 WARN_ON(active && pipe_config->has_dsi_encoder);
10167 if (pipe_config->has_dsi_encoder)
10168 active = true;
10169 }
10170
cf30429e 10171 if (!active)
1729050e 10172 goto out;
0e8ffe1b 10173
4d1de975
JN
10174 if (!pipe_config->has_dsi_encoder) {
10175 haswell_get_ddi_port_state(crtc, pipe_config);
10176 intel_get_pipe_timings(crtc, pipe_config);
10177 }
627eb5a3 10178
bc58be60 10179 intel_get_pipe_src_size(crtc, pipe_config);
1bd1bd80 10180
05dc698c
LL
10181 pipe_config->gamma_mode =
10182 I915_READ(GAMMA_MODE(crtc->pipe)) & GAMMA_MODE_MODE_MASK;
10183
a1b2278e
CK
10184 if (INTEL_INFO(dev)->gen >= 9) {
10185 skl_init_scalers(dev, crtc, pipe_config);
10186 }
10187
af99ceda
CK
10188 if (INTEL_INFO(dev)->gen >= 9) {
10189 pipe_config->scaler_state.scaler_id = -1;
10190 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
10191 }
10192
1729050e
ID
10193 power_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
10194 if (intel_display_power_get_if_enabled(dev_priv, power_domain)) {
10195 power_domain_mask |= BIT(power_domain);
1c132b44 10196 if (INTEL_INFO(dev)->gen >= 9)
bd2e244f 10197 skylake_get_pfit_config(crtc, pipe_config);
ff6d9f55 10198 else
1c132b44 10199 ironlake_get_pfit_config(crtc, pipe_config);
bd2e244f 10200 }
88adfff1 10201
e59150dc
JB
10202 if (IS_HASWELL(dev))
10203 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
10204 (I915_READ(IPS_CTL) & IPS_ENABLE);
42db64ef 10205
4d1de975
JN
10206 if (pipe_config->cpu_transcoder != TRANSCODER_EDP &&
10207 !transcoder_is_dsi(pipe_config->cpu_transcoder)) {
ebb69c95
CT
10208 pipe_config->pixel_multiplier =
10209 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
10210 } else {
10211 pipe_config->pixel_multiplier = 1;
10212 }
6c49f241 10213
1729050e
ID
10214out:
10215 for_each_power_domain(power_domain, power_domain_mask)
10216 intel_display_power_put(dev_priv, power_domain);
10217
cf30429e 10218 return active;
0e8ffe1b
DV
10219}
10220
55a08b3f
ML
10221static void i845_update_cursor(struct drm_crtc *crtc, u32 base,
10222 const struct intel_plane_state *plane_state)
560b85bb
CW
10223{
10224 struct drm_device *dev = crtc->dev;
10225 struct drm_i915_private *dev_priv = dev->dev_private;
10226 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
dc41c154 10227 uint32_t cntl = 0, size = 0;
560b85bb 10228
55a08b3f
ML
10229 if (plane_state && plane_state->visible) {
10230 unsigned int width = plane_state->base.crtc_w;
10231 unsigned int height = plane_state->base.crtc_h;
dc41c154
VS
10232 unsigned int stride = roundup_pow_of_two(width) * 4;
10233
10234 switch (stride) {
10235 default:
10236 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
10237 width, stride);
10238 stride = 256;
10239 /* fallthrough */
10240 case 256:
10241 case 512:
10242 case 1024:
10243 case 2048:
10244 break;
4b0e333e
CW
10245 }
10246
dc41c154
VS
10247 cntl |= CURSOR_ENABLE |
10248 CURSOR_GAMMA_ENABLE |
10249 CURSOR_FORMAT_ARGB |
10250 CURSOR_STRIDE(stride);
10251
10252 size = (height << 12) | width;
4b0e333e 10253 }
560b85bb 10254
dc41c154
VS
10255 if (intel_crtc->cursor_cntl != 0 &&
10256 (intel_crtc->cursor_base != base ||
10257 intel_crtc->cursor_size != size ||
10258 intel_crtc->cursor_cntl != cntl)) {
10259 /* On these chipsets we can only modify the base/size/stride
10260 * whilst the cursor is disabled.
10261 */
0b87c24e
VS
10262 I915_WRITE(CURCNTR(PIPE_A), 0);
10263 POSTING_READ(CURCNTR(PIPE_A));
dc41c154 10264 intel_crtc->cursor_cntl = 0;
4b0e333e 10265 }
560b85bb 10266
99d1f387 10267 if (intel_crtc->cursor_base != base) {
0b87c24e 10268 I915_WRITE(CURBASE(PIPE_A), base);
99d1f387
VS
10269 intel_crtc->cursor_base = base;
10270 }
4726e0b0 10271
dc41c154
VS
10272 if (intel_crtc->cursor_size != size) {
10273 I915_WRITE(CURSIZE, size);
10274 intel_crtc->cursor_size = size;
4b0e333e 10275 }
560b85bb 10276
4b0e333e 10277 if (intel_crtc->cursor_cntl != cntl) {
0b87c24e
VS
10278 I915_WRITE(CURCNTR(PIPE_A), cntl);
10279 POSTING_READ(CURCNTR(PIPE_A));
4b0e333e 10280 intel_crtc->cursor_cntl = cntl;
560b85bb 10281 }
560b85bb
CW
10282}
10283
55a08b3f
ML
10284static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base,
10285 const struct intel_plane_state *plane_state)
65a21cd6
JB
10286{
10287 struct drm_device *dev = crtc->dev;
10288 struct drm_i915_private *dev_priv = dev->dev_private;
10289 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10290 int pipe = intel_crtc->pipe;
663f3122 10291 uint32_t cntl = 0;
4b0e333e 10292
55a08b3f 10293 if (plane_state && plane_state->visible) {
4b0e333e 10294 cntl = MCURSOR_GAMMA_ENABLE;
55a08b3f 10295 switch (plane_state->base.crtc_w) {
4726e0b0
SK
10296 case 64:
10297 cntl |= CURSOR_MODE_64_ARGB_AX;
10298 break;
10299 case 128:
10300 cntl |= CURSOR_MODE_128_ARGB_AX;
10301 break;
10302 case 256:
10303 cntl |= CURSOR_MODE_256_ARGB_AX;
10304 break;
10305 default:
55a08b3f 10306 MISSING_CASE(plane_state->base.crtc_w);
4726e0b0 10307 return;
65a21cd6 10308 }
4b0e333e 10309 cntl |= pipe << 28; /* Connect to correct pipe */
47bf17a7 10310
fc6f93bc 10311 if (HAS_DDI(dev))
47bf17a7 10312 cntl |= CURSOR_PIPE_CSC_ENABLE;
65a21cd6 10313
55a08b3f
ML
10314 if (plane_state->base.rotation == BIT(DRM_ROTATE_180))
10315 cntl |= CURSOR_ROTATE_180;
10316 }
4398ad45 10317
4b0e333e
CW
10318 if (intel_crtc->cursor_cntl != cntl) {
10319 I915_WRITE(CURCNTR(pipe), cntl);
10320 POSTING_READ(CURCNTR(pipe));
10321 intel_crtc->cursor_cntl = cntl;
65a21cd6 10322 }
4b0e333e 10323
65a21cd6 10324 /* and commit changes on next vblank */
5efb3e28
VS
10325 I915_WRITE(CURBASE(pipe), base);
10326 POSTING_READ(CURBASE(pipe));
99d1f387
VS
10327
10328 intel_crtc->cursor_base = base;
65a21cd6
JB
10329}
10330
cda4b7d3 10331/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6b383a7f 10332static void intel_crtc_update_cursor(struct drm_crtc *crtc,
55a08b3f 10333 const struct intel_plane_state *plane_state)
cda4b7d3
CW
10334{
10335 struct drm_device *dev = crtc->dev;
10336 struct drm_i915_private *dev_priv = dev->dev_private;
10337 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10338 int pipe = intel_crtc->pipe;
55a08b3f
ML
10339 u32 base = intel_crtc->cursor_addr;
10340 u32 pos = 0;
cda4b7d3 10341
55a08b3f
ML
10342 if (plane_state) {
10343 int x = plane_state->base.crtc_x;
10344 int y = plane_state->base.crtc_y;
cda4b7d3 10345
55a08b3f
ML
10346 if (x < 0) {
10347 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
10348 x = -x;
10349 }
10350 pos |= x << CURSOR_X_SHIFT;
cda4b7d3 10351
55a08b3f
ML
10352 if (y < 0) {
10353 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
10354 y = -y;
10355 }
10356 pos |= y << CURSOR_Y_SHIFT;
10357
10358 /* ILK+ do this automagically */
10359 if (HAS_GMCH_DISPLAY(dev) &&
10360 plane_state->base.rotation == BIT(DRM_ROTATE_180)) {
10361 base += (plane_state->base.crtc_h *
10362 plane_state->base.crtc_w - 1) * 4;
10363 }
cda4b7d3 10364 }
cda4b7d3 10365
5efb3e28
VS
10366 I915_WRITE(CURPOS(pipe), pos);
10367
8ac54669 10368 if (IS_845G(dev) || IS_I865G(dev))
55a08b3f 10369 i845_update_cursor(crtc, base, plane_state);
5efb3e28 10370 else
55a08b3f 10371 i9xx_update_cursor(crtc, base, plane_state);
cda4b7d3
CW
10372}
10373
dc41c154
VS
10374static bool cursor_size_ok(struct drm_device *dev,
10375 uint32_t width, uint32_t height)
10376{
10377 if (width == 0 || height == 0)
10378 return false;
10379
10380 /*
10381 * 845g/865g are special in that they are only limited by
10382 * the width of their cursors, the height is arbitrary up to
10383 * the precision of the register. Everything else requires
10384 * square cursors, limited to a few power-of-two sizes.
10385 */
10386 if (IS_845G(dev) || IS_I865G(dev)) {
10387 if ((width & 63) != 0)
10388 return false;
10389
10390 if (width > (IS_845G(dev) ? 64 : 512))
10391 return false;
10392
10393 if (height > 1023)
10394 return false;
10395 } else {
10396 switch (width | height) {
10397 case 256:
10398 case 128:
10399 if (IS_GEN2(dev))
10400 return false;
10401 case 64:
10402 break;
10403 default:
10404 return false;
10405 }
10406 }
10407
10408 return true;
10409}
10410
79e53945
JB
10411/* VESA 640x480x72Hz mode to set on the pipe */
10412static struct drm_display_mode load_detect_mode = {
10413 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
10414 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
10415};
10416
a8bb6818
DV
10417struct drm_framebuffer *
10418__intel_framebuffer_create(struct drm_device *dev,
10419 struct drm_mode_fb_cmd2 *mode_cmd,
10420 struct drm_i915_gem_object *obj)
d2dff872
CW
10421{
10422 struct intel_framebuffer *intel_fb;
10423 int ret;
10424
10425 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
dcb1394e 10426 if (!intel_fb)
d2dff872 10427 return ERR_PTR(-ENOMEM);
d2dff872
CW
10428
10429 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
dd4916c5
DV
10430 if (ret)
10431 goto err;
d2dff872
CW
10432
10433 return &intel_fb->base;
dcb1394e 10434
dd4916c5 10435err:
dd4916c5 10436 kfree(intel_fb);
dd4916c5 10437 return ERR_PTR(ret);
d2dff872
CW
10438}
10439
b5ea642a 10440static struct drm_framebuffer *
a8bb6818
DV
10441intel_framebuffer_create(struct drm_device *dev,
10442 struct drm_mode_fb_cmd2 *mode_cmd,
10443 struct drm_i915_gem_object *obj)
10444{
10445 struct drm_framebuffer *fb;
10446 int ret;
10447
10448 ret = i915_mutex_lock_interruptible(dev);
10449 if (ret)
10450 return ERR_PTR(ret);
10451 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
10452 mutex_unlock(&dev->struct_mutex);
10453
10454 return fb;
10455}
10456
d2dff872
CW
10457static u32
10458intel_framebuffer_pitch_for_width(int width, int bpp)
10459{
10460 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
10461 return ALIGN(pitch, 64);
10462}
10463
10464static u32
10465intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
10466{
10467 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
1267a26b 10468 return PAGE_ALIGN(pitch * mode->vdisplay);
d2dff872
CW
10469}
10470
10471static struct drm_framebuffer *
10472intel_framebuffer_create_for_mode(struct drm_device *dev,
10473 struct drm_display_mode *mode,
10474 int depth, int bpp)
10475{
dcb1394e 10476 struct drm_framebuffer *fb;
d2dff872 10477 struct drm_i915_gem_object *obj;
0fed39bd 10478 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
d2dff872 10479
d37cd8a8 10480 obj = i915_gem_object_create(dev,
d2dff872 10481 intel_framebuffer_size_for_mode(mode, bpp));
fe3db79b
CW
10482 if (IS_ERR(obj))
10483 return ERR_CAST(obj);
d2dff872
CW
10484
10485 mode_cmd.width = mode->hdisplay;
10486 mode_cmd.height = mode->vdisplay;
308e5bcb
JB
10487 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
10488 bpp);
5ca0c34a 10489 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
d2dff872 10490
dcb1394e
LW
10491 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
10492 if (IS_ERR(fb))
10493 drm_gem_object_unreference_unlocked(&obj->base);
10494
10495 return fb;
d2dff872
CW
10496}
10497
10498static struct drm_framebuffer *
10499mode_fits_in_fbdev(struct drm_device *dev,
10500 struct drm_display_mode *mode)
10501{
0695726e 10502#ifdef CONFIG_DRM_FBDEV_EMULATION
d2dff872
CW
10503 struct drm_i915_private *dev_priv = dev->dev_private;
10504 struct drm_i915_gem_object *obj;
10505 struct drm_framebuffer *fb;
10506
4c0e5528 10507 if (!dev_priv->fbdev)
d2dff872
CW
10508 return NULL;
10509
4c0e5528 10510 if (!dev_priv->fbdev->fb)
d2dff872
CW
10511 return NULL;
10512
4c0e5528
DV
10513 obj = dev_priv->fbdev->fb->obj;
10514 BUG_ON(!obj);
10515
8bcd4553 10516 fb = &dev_priv->fbdev->fb->base;
01f2c773
VS
10517 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
10518 fb->bits_per_pixel))
d2dff872
CW
10519 return NULL;
10520
01f2c773 10521 if (obj->base.size < mode->vdisplay * fb->pitches[0])
d2dff872
CW
10522 return NULL;
10523
edde3617 10524 drm_framebuffer_reference(fb);
d2dff872 10525 return fb;
4520f53a
DV
10526#else
10527 return NULL;
10528#endif
d2dff872
CW
10529}
10530
d3a40d1b
ACO
10531static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
10532 struct drm_crtc *crtc,
10533 struct drm_display_mode *mode,
10534 struct drm_framebuffer *fb,
10535 int x, int y)
10536{
10537 struct drm_plane_state *plane_state;
10538 int hdisplay, vdisplay;
10539 int ret;
10540
10541 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
10542 if (IS_ERR(plane_state))
10543 return PTR_ERR(plane_state);
10544
10545 if (mode)
10546 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
10547 else
10548 hdisplay = vdisplay = 0;
10549
10550 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
10551 if (ret)
10552 return ret;
10553 drm_atomic_set_fb_for_plane(plane_state, fb);
10554 plane_state->crtc_x = 0;
10555 plane_state->crtc_y = 0;
10556 plane_state->crtc_w = hdisplay;
10557 plane_state->crtc_h = vdisplay;
10558 plane_state->src_x = x << 16;
10559 plane_state->src_y = y << 16;
10560 plane_state->src_w = hdisplay << 16;
10561 plane_state->src_h = vdisplay << 16;
10562
10563 return 0;
10564}
10565
d2434ab7 10566bool intel_get_load_detect_pipe(struct drm_connector *connector,
7173188d 10567 struct drm_display_mode *mode,
51fd371b
RC
10568 struct intel_load_detect_pipe *old,
10569 struct drm_modeset_acquire_ctx *ctx)
79e53945
JB
10570{
10571 struct intel_crtc *intel_crtc;
d2434ab7
DV
10572 struct intel_encoder *intel_encoder =
10573 intel_attached_encoder(connector);
79e53945 10574 struct drm_crtc *possible_crtc;
4ef69c7a 10575 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
10576 struct drm_crtc *crtc = NULL;
10577 struct drm_device *dev = encoder->dev;
94352cf9 10578 struct drm_framebuffer *fb;
51fd371b 10579 struct drm_mode_config *config = &dev->mode_config;
edde3617 10580 struct drm_atomic_state *state = NULL, *restore_state = NULL;
944b0c76 10581 struct drm_connector_state *connector_state;
4be07317 10582 struct intel_crtc_state *crtc_state;
51fd371b 10583 int ret, i = -1;
79e53945 10584
d2dff872 10585 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 10586 connector->base.id, connector->name,
8e329a03 10587 encoder->base.id, encoder->name);
d2dff872 10588
edde3617
ML
10589 old->restore_state = NULL;
10590
51fd371b
RC
10591retry:
10592 ret = drm_modeset_lock(&config->connection_mutex, ctx);
10593 if (ret)
ad3c558f 10594 goto fail;
6e9f798d 10595
79e53945
JB
10596 /*
10597 * Algorithm gets a little messy:
7a5e4805 10598 *
79e53945
JB
10599 * - if the connector already has an assigned crtc, use it (but make
10600 * sure it's on first)
7a5e4805 10601 *
79e53945
JB
10602 * - try to find the first unused crtc that can drive this connector,
10603 * and use that if we find one
79e53945
JB
10604 */
10605
10606 /* See if we already have a CRTC for this connector */
edde3617
ML
10607 if (connector->state->crtc) {
10608 crtc = connector->state->crtc;
8261b191 10609
51fd371b 10610 ret = drm_modeset_lock(&crtc->mutex, ctx);
4d02e2de 10611 if (ret)
ad3c558f 10612 goto fail;
8261b191
CW
10613
10614 /* Make sure the crtc and connector are running */
edde3617 10615 goto found;
79e53945
JB
10616 }
10617
10618 /* Find an unused one (if possible) */
70e1e0ec 10619 for_each_crtc(dev, possible_crtc) {
79e53945
JB
10620 i++;
10621 if (!(encoder->possible_crtcs & (1 << i)))
10622 continue;
edde3617
ML
10623
10624 ret = drm_modeset_lock(&possible_crtc->mutex, ctx);
10625 if (ret)
10626 goto fail;
10627
10628 if (possible_crtc->state->enable) {
10629 drm_modeset_unlock(&possible_crtc->mutex);
a459249c 10630 continue;
edde3617 10631 }
a459249c
VS
10632
10633 crtc = possible_crtc;
10634 break;
79e53945
JB
10635 }
10636
10637 /*
10638 * If we didn't find an unused CRTC, don't use any.
10639 */
10640 if (!crtc) {
7173188d 10641 DRM_DEBUG_KMS("no pipe available for load-detect\n");
ad3c558f 10642 goto fail;
79e53945
JB
10643 }
10644
edde3617
ML
10645found:
10646 intel_crtc = to_intel_crtc(crtc);
10647
4d02e2de
DV
10648 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10649 if (ret)
ad3c558f 10650 goto fail;
79e53945 10651
83a57153 10652 state = drm_atomic_state_alloc(dev);
edde3617
ML
10653 restore_state = drm_atomic_state_alloc(dev);
10654 if (!state || !restore_state) {
10655 ret = -ENOMEM;
10656 goto fail;
10657 }
83a57153
ACO
10658
10659 state->acquire_ctx = ctx;
edde3617 10660 restore_state->acquire_ctx = ctx;
83a57153 10661
944b0c76
ACO
10662 connector_state = drm_atomic_get_connector_state(state, connector);
10663 if (IS_ERR(connector_state)) {
10664 ret = PTR_ERR(connector_state);
10665 goto fail;
10666 }
10667
edde3617
ML
10668 ret = drm_atomic_set_crtc_for_connector(connector_state, crtc);
10669 if (ret)
10670 goto fail;
944b0c76 10671
4be07317
ACO
10672 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10673 if (IS_ERR(crtc_state)) {
10674 ret = PTR_ERR(crtc_state);
10675 goto fail;
10676 }
10677
49d6fa21 10678 crtc_state->base.active = crtc_state->base.enable = true;
4be07317 10679
6492711d
CW
10680 if (!mode)
10681 mode = &load_detect_mode;
79e53945 10682
d2dff872
CW
10683 /* We need a framebuffer large enough to accommodate all accesses
10684 * that the plane may generate whilst we perform load detection.
10685 * We can not rely on the fbcon either being present (we get called
10686 * during its initialisation to detect all boot displays, or it may
10687 * not even exist) or that it is large enough to satisfy the
10688 * requested mode.
10689 */
94352cf9
DV
10690 fb = mode_fits_in_fbdev(dev, mode);
10691 if (fb == NULL) {
d2dff872 10692 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
94352cf9 10693 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
d2dff872
CW
10694 } else
10695 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
94352cf9 10696 if (IS_ERR(fb)) {
d2dff872 10697 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
412b61d8 10698 goto fail;
79e53945 10699 }
79e53945 10700
d3a40d1b
ACO
10701 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
10702 if (ret)
10703 goto fail;
10704
edde3617
ML
10705 drm_framebuffer_unreference(fb);
10706
10707 ret = drm_atomic_set_mode_for_crtc(&crtc_state->base, mode);
10708 if (ret)
10709 goto fail;
10710
10711 ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(restore_state, connector));
10712 if (!ret)
10713 ret = PTR_ERR_OR_ZERO(drm_atomic_get_crtc_state(restore_state, crtc));
10714 if (!ret)
10715 ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(restore_state, crtc->primary));
10716 if (ret) {
10717 DRM_DEBUG_KMS("Failed to create a copy of old state to restore: %i\n", ret);
10718 goto fail;
10719 }
8c7b5ccb 10720
3ba86073
ML
10721 ret = drm_atomic_commit(state);
10722 if (ret) {
6492711d 10723 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
412b61d8 10724 goto fail;
79e53945 10725 }
edde3617
ML
10726
10727 old->restore_state = restore_state;
7173188d 10728
79e53945 10729 /* let the connector get through one full cycle before testing */
9d0498a2 10730 intel_wait_for_vblank(dev, intel_crtc->pipe);
7173188d 10731 return true;
412b61d8 10732
ad3c558f 10733fail:
e5d958ef 10734 drm_atomic_state_free(state);
edde3617
ML
10735 drm_atomic_state_free(restore_state);
10736 restore_state = state = NULL;
83a57153 10737
51fd371b
RC
10738 if (ret == -EDEADLK) {
10739 drm_modeset_backoff(ctx);
10740 goto retry;
10741 }
10742
412b61d8 10743 return false;
79e53945
JB
10744}
10745
d2434ab7 10746void intel_release_load_detect_pipe(struct drm_connector *connector,
49172fee
ACO
10747 struct intel_load_detect_pipe *old,
10748 struct drm_modeset_acquire_ctx *ctx)
79e53945 10749{
d2434ab7
DV
10750 struct intel_encoder *intel_encoder =
10751 intel_attached_encoder(connector);
4ef69c7a 10752 struct drm_encoder *encoder = &intel_encoder->base;
edde3617 10753 struct drm_atomic_state *state = old->restore_state;
d3a40d1b 10754 int ret;
79e53945 10755
d2dff872 10756 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 10757 connector->base.id, connector->name,
8e329a03 10758 encoder->base.id, encoder->name);
d2dff872 10759
edde3617 10760 if (!state)
0622a53c 10761 return;
79e53945 10762
edde3617
ML
10763 ret = drm_atomic_commit(state);
10764 if (ret) {
10765 DRM_DEBUG_KMS("Couldn't release load detect pipe: %i\n", ret);
10766 drm_atomic_state_free(state);
10767 }
79e53945
JB
10768}
10769
da4a1efa 10770static int i9xx_pll_refclk(struct drm_device *dev,
5cec258b 10771 const struct intel_crtc_state *pipe_config)
da4a1efa
VS
10772{
10773 struct drm_i915_private *dev_priv = dev->dev_private;
10774 u32 dpll = pipe_config->dpll_hw_state.dpll;
10775
10776 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
e91e941b 10777 return dev_priv->vbt.lvds_ssc_freq;
da4a1efa
VS
10778 else if (HAS_PCH_SPLIT(dev))
10779 return 120000;
10780 else if (!IS_GEN2(dev))
10781 return 96000;
10782 else
10783 return 48000;
10784}
10785
79e53945 10786/* Returns the clock of the currently programmed mode of the given pipe. */
f1f644dc 10787static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 10788 struct intel_crtc_state *pipe_config)
79e53945 10789{
f1f644dc 10790 struct drm_device *dev = crtc->base.dev;
79e53945 10791 struct drm_i915_private *dev_priv = dev->dev_private;
f1f644dc 10792 int pipe = pipe_config->cpu_transcoder;
293623f7 10793 u32 dpll = pipe_config->dpll_hw_state.dpll;
79e53945 10794 u32 fp;
9e2c8475 10795 struct dpll clock;
dccbea3b 10796 int port_clock;
da4a1efa 10797 int refclk = i9xx_pll_refclk(dev, pipe_config);
79e53945
JB
10798
10799 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
293623f7 10800 fp = pipe_config->dpll_hw_state.fp0;
79e53945 10801 else
293623f7 10802 fp = pipe_config->dpll_hw_state.fp1;
79e53945
JB
10803
10804 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
f2b115e6
AJ
10805 if (IS_PINEVIEW(dev)) {
10806 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
10807 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
2177832f
SL
10808 } else {
10809 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
10810 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
10811 }
10812
a6c45cf0 10813 if (!IS_GEN2(dev)) {
f2b115e6
AJ
10814 if (IS_PINEVIEW(dev))
10815 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
10816 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
2177832f
SL
10817 else
10818 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
79e53945
JB
10819 DPLL_FPA01_P1_POST_DIV_SHIFT);
10820
10821 switch (dpll & DPLL_MODE_MASK) {
10822 case DPLLB_MODE_DAC_SERIAL:
10823 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
10824 5 : 10;
10825 break;
10826 case DPLLB_MODE_LVDS:
10827 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
10828 7 : 14;
10829 break;
10830 default:
28c97730 10831 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
79e53945 10832 "mode\n", (int)(dpll & DPLL_MODE_MASK));
f1f644dc 10833 return;
79e53945
JB
10834 }
10835
ac58c3f0 10836 if (IS_PINEVIEW(dev))
dccbea3b 10837 port_clock = pnv_calc_dpll_params(refclk, &clock);
ac58c3f0 10838 else
dccbea3b 10839 port_clock = i9xx_calc_dpll_params(refclk, &clock);
79e53945 10840 } else {
0fb58223 10841 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
b1c560d1 10842 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
79e53945
JB
10843
10844 if (is_lvds) {
10845 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
10846 DPLL_FPA01_P1_POST_DIV_SHIFT);
b1c560d1
VS
10847
10848 if (lvds & LVDS_CLKB_POWER_UP)
10849 clock.p2 = 7;
10850 else
10851 clock.p2 = 14;
79e53945
JB
10852 } else {
10853 if (dpll & PLL_P1_DIVIDE_BY_TWO)
10854 clock.p1 = 2;
10855 else {
10856 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
10857 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
10858 }
10859 if (dpll & PLL_P2_DIVIDE_BY_4)
10860 clock.p2 = 4;
10861 else
10862 clock.p2 = 2;
79e53945 10863 }
da4a1efa 10864
dccbea3b 10865 port_clock = i9xx_calc_dpll_params(refclk, &clock);
79e53945
JB
10866 }
10867
18442d08
VS
10868 /*
10869 * This value includes pixel_multiplier. We will use
241bfc38 10870 * port_clock to compute adjusted_mode.crtc_clock in the
18442d08
VS
10871 * encoder's get_config() function.
10872 */
dccbea3b 10873 pipe_config->port_clock = port_clock;
f1f644dc
JB
10874}
10875
6878da05
VS
10876int intel_dotclock_calculate(int link_freq,
10877 const struct intel_link_m_n *m_n)
f1f644dc 10878{
f1f644dc
JB
10879 /*
10880 * The calculation for the data clock is:
1041a02f 10881 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
f1f644dc 10882 * But we want to avoid losing precison if possible, so:
1041a02f 10883 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
f1f644dc
JB
10884 *
10885 * and the link clock is simpler:
1041a02f 10886 * link_clock = (m * link_clock) / n
f1f644dc
JB
10887 */
10888
6878da05
VS
10889 if (!m_n->link_n)
10890 return 0;
f1f644dc 10891
6878da05
VS
10892 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
10893}
f1f644dc 10894
18442d08 10895static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 10896 struct intel_crtc_state *pipe_config)
6878da05 10897{
e3b247da 10898 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
79e53945 10899
18442d08
VS
10900 /* read out port_clock from the DPLL */
10901 i9xx_crtc_clock_get(crtc, pipe_config);
f1f644dc 10902
f1f644dc 10903 /*
e3b247da
VS
10904 * In case there is an active pipe without active ports,
10905 * we may need some idea for the dotclock anyway.
10906 * Calculate one based on the FDI configuration.
79e53945 10907 */
2d112de7 10908 pipe_config->base.adjusted_mode.crtc_clock =
21a727b3 10909 intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config),
18442d08 10910 &pipe_config->fdi_m_n);
79e53945
JB
10911}
10912
10913/** Returns the currently programmed mode of the given pipe. */
10914struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
10915 struct drm_crtc *crtc)
10916{
548f245b 10917 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 10918 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 10919 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
79e53945 10920 struct drm_display_mode *mode;
3f36b937 10921 struct intel_crtc_state *pipe_config;
fe2b8f9d
PZ
10922 int htot = I915_READ(HTOTAL(cpu_transcoder));
10923 int hsync = I915_READ(HSYNC(cpu_transcoder));
10924 int vtot = I915_READ(VTOTAL(cpu_transcoder));
10925 int vsync = I915_READ(VSYNC(cpu_transcoder));
293623f7 10926 enum pipe pipe = intel_crtc->pipe;
79e53945
JB
10927
10928 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
10929 if (!mode)
10930 return NULL;
10931
3f36b937
TU
10932 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
10933 if (!pipe_config) {
10934 kfree(mode);
10935 return NULL;
10936 }
10937
f1f644dc
JB
10938 /*
10939 * Construct a pipe_config sufficient for getting the clock info
10940 * back out of crtc_clock_get.
10941 *
10942 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
10943 * to use a real value here instead.
10944 */
3f36b937
TU
10945 pipe_config->cpu_transcoder = (enum transcoder) pipe;
10946 pipe_config->pixel_multiplier = 1;
10947 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(pipe));
10948 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(pipe));
10949 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(pipe));
10950 i9xx_crtc_clock_get(intel_crtc, pipe_config);
10951
10952 mode->clock = pipe_config->port_clock / pipe_config->pixel_multiplier;
79e53945
JB
10953 mode->hdisplay = (htot & 0xffff) + 1;
10954 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
10955 mode->hsync_start = (hsync & 0xffff) + 1;
10956 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
10957 mode->vdisplay = (vtot & 0xffff) + 1;
10958 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
10959 mode->vsync_start = (vsync & 0xffff) + 1;
10960 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
10961
10962 drm_mode_set_name(mode);
79e53945 10963
3f36b937
TU
10964 kfree(pipe_config);
10965
79e53945
JB
10966 return mode;
10967}
10968
7d993739 10969void intel_mark_busy(struct drm_i915_private *dev_priv)
f047e395 10970{
f62a0076
CW
10971 if (dev_priv->mm.busy)
10972 return;
10973
43694d69 10974 intel_runtime_pm_get(dev_priv);
c67a470b 10975 i915_update_gfx_val(dev_priv);
7d993739 10976 if (INTEL_GEN(dev_priv) >= 6)
43cf3bf0 10977 gen6_rps_busy(dev_priv);
f62a0076 10978 dev_priv->mm.busy = true;
f047e395
CW
10979}
10980
7d993739 10981void intel_mark_idle(struct drm_i915_private *dev_priv)
652c393a 10982{
f62a0076
CW
10983 if (!dev_priv->mm.busy)
10984 return;
10985
10986 dev_priv->mm.busy = false;
10987
7d993739
TU
10988 if (INTEL_GEN(dev_priv) >= 6)
10989 gen6_rps_idle(dev_priv);
bb4cdd53 10990
43694d69 10991 intel_runtime_pm_put(dev_priv);
652c393a
JB
10992}
10993
79e53945
JB
10994static void intel_crtc_destroy(struct drm_crtc *crtc)
10995{
10996 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
67e77c5a 10997 struct drm_device *dev = crtc->dev;
51cbaf01 10998 struct intel_flip_work *work;
67e77c5a 10999
5e2d7afc 11000 spin_lock_irq(&dev->event_lock);
5a21b665
DV
11001 work = intel_crtc->flip_work;
11002 intel_crtc->flip_work = NULL;
11003 spin_unlock_irq(&dev->event_lock);
67e77c5a 11004
5a21b665 11005 if (work) {
51cbaf01
ML
11006 cancel_work_sync(&work->mmio_work);
11007 cancel_work_sync(&work->unpin_work);
5a21b665 11008 kfree(work);
67e77c5a 11009 }
79e53945
JB
11010
11011 drm_crtc_cleanup(crtc);
67e77c5a 11012
79e53945
JB
11013 kfree(intel_crtc);
11014}
11015
6b95a207
KH
11016static void intel_unpin_work_fn(struct work_struct *__work)
11017{
51cbaf01
ML
11018 struct intel_flip_work *work =
11019 container_of(__work, struct intel_flip_work, unpin_work);
5a21b665
DV
11020 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
11021 struct drm_device *dev = crtc->base.dev;
11022 struct drm_plane *primary = crtc->base.primary;
03f476e1 11023
5a21b665
DV
11024 if (is_mmio_work(work))
11025 flush_work(&work->mmio_work);
03f476e1 11026
5a21b665
DV
11027 mutex_lock(&dev->struct_mutex);
11028 intel_unpin_fb_obj(work->old_fb, primary->state->rotation);
11029 drm_gem_object_unreference(&work->pending_flip_obj->base);
143f73b3 11030
5a21b665
DV
11031 if (work->flip_queued_req)
11032 i915_gem_request_assign(&work->flip_queued_req, NULL);
11033 mutex_unlock(&dev->struct_mutex);
143f73b3 11034
5a21b665
DV
11035 intel_frontbuffer_flip_complete(dev, to_intel_plane(primary)->frontbuffer_bit);
11036 intel_fbc_post_update(crtc);
11037 drm_framebuffer_unreference(work->old_fb);
143f73b3 11038
5a21b665
DV
11039 BUG_ON(atomic_read(&crtc->unpin_work_count) == 0);
11040 atomic_dec(&crtc->unpin_work_count);
a6747b73 11041
5a21b665
DV
11042 kfree(work);
11043}
d9e86c0e 11044
5a21b665
DV
11045/* Is 'a' after or equal to 'b'? */
11046static bool g4x_flip_count_after_eq(u32 a, u32 b)
11047{
11048 return !((a - b) & 0x80000000);
11049}
143f73b3 11050
5a21b665
DV
11051static bool __pageflip_finished_cs(struct intel_crtc *crtc,
11052 struct intel_flip_work *work)
11053{
11054 struct drm_device *dev = crtc->base.dev;
11055 struct drm_i915_private *dev_priv = dev->dev_private;
11056 unsigned reset_counter;
143f73b3 11057
5a21b665
DV
11058 reset_counter = i915_reset_counter(&dev_priv->gpu_error);
11059 if (crtc->reset_counter != reset_counter)
11060 return true;
143f73b3 11061
5a21b665
DV
11062 /*
11063 * The relevant registers doen't exist on pre-ctg.
11064 * As the flip done interrupt doesn't trigger for mmio
11065 * flips on gmch platforms, a flip count check isn't
11066 * really needed there. But since ctg has the registers,
11067 * include it in the check anyway.
11068 */
11069 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
11070 return true;
b4a98e57 11071
5a21b665
DV
11072 /*
11073 * BDW signals flip done immediately if the plane
11074 * is disabled, even if the plane enable is already
11075 * armed to occur at the next vblank :(
11076 */
f99d7069 11077
5a21b665
DV
11078 /*
11079 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
11080 * used the same base address. In that case the mmio flip might
11081 * have completed, but the CS hasn't even executed the flip yet.
11082 *
11083 * A flip count check isn't enough as the CS might have updated
11084 * the base address just after start of vblank, but before we
11085 * managed to process the interrupt. This means we'd complete the
11086 * CS flip too soon.
11087 *
11088 * Combining both checks should get us a good enough result. It may
11089 * still happen that the CS flip has been executed, but has not
11090 * yet actually completed. But in case the base address is the same
11091 * anyway, we don't really care.
11092 */
11093 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
11094 crtc->flip_work->gtt_offset &&
11095 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_G4X(crtc->pipe)),
11096 crtc->flip_work->flip_count);
11097}
b4a98e57 11098
5a21b665
DV
11099static bool
11100__pageflip_finished_mmio(struct intel_crtc *crtc,
11101 struct intel_flip_work *work)
11102{
11103 /*
11104 * MMIO work completes when vblank is different from
11105 * flip_queued_vblank.
11106 *
11107 * Reset counter value doesn't matter, this is handled by
11108 * i915_wait_request finishing early, so no need to handle
11109 * reset here.
11110 */
11111 return intel_crtc_get_vblank_counter(crtc) != work->flip_queued_vblank;
6b95a207
KH
11112}
11113
51cbaf01
ML
11114
11115static bool pageflip_finished(struct intel_crtc *crtc,
11116 struct intel_flip_work *work)
11117{
11118 if (!atomic_read(&work->pending))
11119 return false;
11120
11121 smp_rmb();
11122
5a21b665
DV
11123 if (is_mmio_work(work))
11124 return __pageflip_finished_mmio(crtc, work);
11125 else
11126 return __pageflip_finished_cs(crtc, work);
11127}
11128
11129void intel_finish_page_flip_cs(struct drm_i915_private *dev_priv, int pipe)
11130{
11131 struct drm_device *dev = dev_priv->dev;
11132 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11133 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11134 struct intel_flip_work *work;
11135 unsigned long flags;
11136
11137 /* Ignore early vblank irqs */
11138 if (!crtc)
11139 return;
11140
51cbaf01 11141 /*
5a21b665
DV
11142 * This is called both by irq handlers and the reset code (to complete
11143 * lost pageflips) so needs the full irqsave spinlocks.
51cbaf01 11144 */
5a21b665
DV
11145 spin_lock_irqsave(&dev->event_lock, flags);
11146 work = intel_crtc->flip_work;
11147
11148 if (work != NULL &&
11149 !is_mmio_work(work) &&
11150 pageflip_finished(intel_crtc, work))
11151 page_flip_completed(intel_crtc);
11152
11153 spin_unlock_irqrestore(&dev->event_lock, flags);
75f7f3ec
VS
11154}
11155
51cbaf01 11156void intel_finish_page_flip_mmio(struct drm_i915_private *dev_priv, int pipe)
6b95a207 11157{
91d14251 11158 struct drm_device *dev = dev_priv->dev;
5251f04e
ML
11159 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11160 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
51cbaf01 11161 struct intel_flip_work *work;
6b95a207
KH
11162 unsigned long flags;
11163
5251f04e
ML
11164 /* Ignore early vblank irqs */
11165 if (!crtc)
11166 return;
f326038a
DV
11167
11168 /*
11169 * This is called both by irq handlers and the reset code (to complete
11170 * lost pageflips) so needs the full irqsave spinlocks.
e7d841ca 11171 */
6b95a207 11172 spin_lock_irqsave(&dev->event_lock, flags);
5a21b665 11173 work = intel_crtc->flip_work;
5251f04e 11174
5a21b665
DV
11175 if (work != NULL &&
11176 is_mmio_work(work) &&
11177 pageflip_finished(intel_crtc, work))
11178 page_flip_completed(intel_crtc);
5251f04e 11179
6b95a207
KH
11180 spin_unlock_irqrestore(&dev->event_lock, flags);
11181}
11182
5a21b665
DV
11183static inline void intel_mark_page_flip_active(struct intel_crtc *crtc,
11184 struct intel_flip_work *work)
84c33a64 11185{
5a21b665 11186 work->flip_queued_vblank = intel_crtc_get_vblank_counter(crtc);
84c33a64 11187
5a21b665
DV
11188 /* Ensure that the work item is consistent when activating it ... */
11189 smp_mb__before_atomic();
11190 atomic_set(&work->pending, 1);
11191}
a6747b73 11192
5a21b665
DV
11193static int intel_gen2_queue_flip(struct drm_device *dev,
11194 struct drm_crtc *crtc,
11195 struct drm_framebuffer *fb,
11196 struct drm_i915_gem_object *obj,
11197 struct drm_i915_gem_request *req,
11198 uint32_t flags)
11199{
11200 struct intel_engine_cs *engine = req->engine;
11201 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11202 u32 flip_mask;
11203 int ret;
143f73b3 11204
5a21b665
DV
11205 ret = intel_ring_begin(req, 6);
11206 if (ret)
11207 return ret;
143f73b3 11208
5a21b665
DV
11209 /* Can't queue multiple flips, so wait for the previous
11210 * one to finish before executing the next.
11211 */
11212 if (intel_crtc->plane)
11213 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11214 else
11215 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
11216 intel_ring_emit(engine, MI_WAIT_FOR_EVENT | flip_mask);
11217 intel_ring_emit(engine, MI_NOOP);
11218 intel_ring_emit(engine, MI_DISPLAY_FLIP |
11219 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11220 intel_ring_emit(engine, fb->pitches[0]);
11221 intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset);
11222 intel_ring_emit(engine, 0); /* aux display base address, unused */
143f73b3 11223
5a21b665
DV
11224 return 0;
11225}
84c33a64 11226
5a21b665
DV
11227static int intel_gen3_queue_flip(struct drm_device *dev,
11228 struct drm_crtc *crtc,
11229 struct drm_framebuffer *fb,
11230 struct drm_i915_gem_object *obj,
11231 struct drm_i915_gem_request *req,
11232 uint32_t flags)
11233{
11234 struct intel_engine_cs *engine = req->engine;
11235 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11236 u32 flip_mask;
11237 int ret;
d55dbd06 11238
5a21b665
DV
11239 ret = intel_ring_begin(req, 6);
11240 if (ret)
11241 return ret;
d55dbd06 11242
5a21b665
DV
11243 if (intel_crtc->plane)
11244 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11245 else
11246 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
11247 intel_ring_emit(engine, MI_WAIT_FOR_EVENT | flip_mask);
11248 intel_ring_emit(engine, MI_NOOP);
11249 intel_ring_emit(engine, MI_DISPLAY_FLIP_I915 |
11250 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11251 intel_ring_emit(engine, fb->pitches[0]);
11252 intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset);
11253 intel_ring_emit(engine, MI_NOOP);
fd8e058a 11254
5a21b665
DV
11255 return 0;
11256}
84c33a64 11257
5a21b665
DV
11258static int intel_gen4_queue_flip(struct drm_device *dev,
11259 struct drm_crtc *crtc,
11260 struct drm_framebuffer *fb,
11261 struct drm_i915_gem_object *obj,
11262 struct drm_i915_gem_request *req,
11263 uint32_t flags)
11264{
11265 struct intel_engine_cs *engine = req->engine;
11266 struct drm_i915_private *dev_priv = dev->dev_private;
11267 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11268 uint32_t pf, pipesrc;
11269 int ret;
143f73b3 11270
5a21b665
DV
11271 ret = intel_ring_begin(req, 4);
11272 if (ret)
11273 return ret;
143f73b3 11274
5a21b665
DV
11275 /* i965+ uses the linear or tiled offsets from the
11276 * Display Registers (which do not change across a page-flip)
11277 * so we need only reprogram the base address.
11278 */
11279 intel_ring_emit(engine, MI_DISPLAY_FLIP |
11280 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11281 intel_ring_emit(engine, fb->pitches[0]);
11282 intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset |
11283 obj->tiling_mode);
11284
11285 /* XXX Enabling the panel-fitter across page-flip is so far
11286 * untested on non-native modes, so ignore it for now.
11287 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
11288 */
11289 pf = 0;
11290 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
11291 intel_ring_emit(engine, pf | pipesrc);
143f73b3 11292
5a21b665 11293 return 0;
8c9f3aaf
JB
11294}
11295
5a21b665
DV
11296static int intel_gen6_queue_flip(struct drm_device *dev,
11297 struct drm_crtc *crtc,
11298 struct drm_framebuffer *fb,
11299 struct drm_i915_gem_object *obj,
11300 struct drm_i915_gem_request *req,
11301 uint32_t flags)
da20eabd 11302{
5a21b665
DV
11303 struct intel_engine_cs *engine = req->engine;
11304 struct drm_i915_private *dev_priv = dev->dev_private;
11305 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11306 uint32_t pf, pipesrc;
11307 int ret;
d21fbe87 11308
5a21b665
DV
11309 ret = intel_ring_begin(req, 4);
11310 if (ret)
11311 return ret;
92826fcd 11312
5a21b665
DV
11313 intel_ring_emit(engine, MI_DISPLAY_FLIP |
11314 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11315 intel_ring_emit(engine, fb->pitches[0] | obj->tiling_mode);
11316 intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset);
92826fcd 11317
5a21b665
DV
11318 /* Contrary to the suggestions in the documentation,
11319 * "Enable Panel Fitter" does not seem to be required when page
11320 * flipping with a non-native mode, and worse causes a normal
11321 * modeset to fail.
11322 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
11323 */
11324 pf = 0;
11325 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
11326 intel_ring_emit(engine, pf | pipesrc);
7809e5ae 11327
5a21b665 11328 return 0;
7809e5ae
MR
11329}
11330
5a21b665
DV
11331static int intel_gen7_queue_flip(struct drm_device *dev,
11332 struct drm_crtc *crtc,
11333 struct drm_framebuffer *fb,
11334 struct drm_i915_gem_object *obj,
11335 struct drm_i915_gem_request *req,
11336 uint32_t flags)
d21fbe87 11337{
5a21b665
DV
11338 struct intel_engine_cs *engine = req->engine;
11339 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11340 uint32_t plane_bit = 0;
11341 int len, ret;
d21fbe87 11342
5a21b665
DV
11343 switch (intel_crtc->plane) {
11344 case PLANE_A:
11345 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
11346 break;
11347 case PLANE_B:
11348 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
11349 break;
11350 case PLANE_C:
11351 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
11352 break;
11353 default:
11354 WARN_ONCE(1, "unknown plane in flip command\n");
11355 return -ENODEV;
11356 }
11357
11358 len = 4;
11359 if (engine->id == RCS) {
11360 len += 6;
11361 /*
11362 * On Gen 8, SRM is now taking an extra dword to accommodate
11363 * 48bits addresses, and we need a NOOP for the batch size to
11364 * stay even.
11365 */
11366 if (IS_GEN8(dev))
11367 len += 2;
11368 }
11369
11370 /*
11371 * BSpec MI_DISPLAY_FLIP for IVB:
11372 * "The full packet must be contained within the same cache line."
11373 *
11374 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
11375 * cacheline, if we ever start emitting more commands before
11376 * the MI_DISPLAY_FLIP we may need to first emit everything else,
11377 * then do the cacheline alignment, and finally emit the
11378 * MI_DISPLAY_FLIP.
11379 */
11380 ret = intel_ring_cacheline_align(req);
11381 if (ret)
11382 return ret;
11383
11384 ret = intel_ring_begin(req, len);
11385 if (ret)
11386 return ret;
11387
11388 /* Unmask the flip-done completion message. Note that the bspec says that
11389 * we should do this for both the BCS and RCS, and that we must not unmask
11390 * more than one flip event at any time (or ensure that one flip message
11391 * can be sent by waiting for flip-done prior to queueing new flips).
11392 * Experimentation says that BCS works despite DERRMR masking all
11393 * flip-done completion events and that unmasking all planes at once
11394 * for the RCS also doesn't appear to drop events. Setting the DERRMR
11395 * to zero does lead to lockups within MI_DISPLAY_FLIP.
11396 */
11397 if (engine->id == RCS) {
11398 intel_ring_emit(engine, MI_LOAD_REGISTER_IMM(1));
11399 intel_ring_emit_reg(engine, DERRMR);
11400 intel_ring_emit(engine, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
11401 DERRMR_PIPEB_PRI_FLIP_DONE |
11402 DERRMR_PIPEC_PRI_FLIP_DONE));
11403 if (IS_GEN8(dev))
11404 intel_ring_emit(engine, MI_STORE_REGISTER_MEM_GEN8 |
11405 MI_SRM_LRM_GLOBAL_GTT);
11406 else
11407 intel_ring_emit(engine, MI_STORE_REGISTER_MEM |
11408 MI_SRM_LRM_GLOBAL_GTT);
11409 intel_ring_emit_reg(engine, DERRMR);
11410 intel_ring_emit(engine, engine->scratch.gtt_offset + 256);
11411 if (IS_GEN8(dev)) {
11412 intel_ring_emit(engine, 0);
11413 intel_ring_emit(engine, MI_NOOP);
11414 }
11415 }
11416
11417 intel_ring_emit(engine, MI_DISPLAY_FLIP_I915 | plane_bit);
11418 intel_ring_emit(engine, (fb->pitches[0] | obj->tiling_mode));
11419 intel_ring_emit(engine, intel_crtc->flip_work->gtt_offset);
11420 intel_ring_emit(engine, (MI_NOOP));
11421
11422 return 0;
11423}
11424
11425static bool use_mmio_flip(struct intel_engine_cs *engine,
11426 struct drm_i915_gem_object *obj)
11427{
11428 /*
11429 * This is not being used for older platforms, because
11430 * non-availability of flip done interrupt forces us to use
11431 * CS flips. Older platforms derive flip done using some clever
11432 * tricks involving the flip_pending status bits and vblank irqs.
11433 * So using MMIO flips there would disrupt this mechanism.
11434 */
11435
11436 if (engine == NULL)
11437 return true;
11438
11439 if (INTEL_GEN(engine->i915) < 5)
11440 return false;
11441
11442 if (i915.use_mmio_flip < 0)
11443 return false;
11444 else if (i915.use_mmio_flip > 0)
11445 return true;
11446 else if (i915.enable_execlists)
11447 return true;
11448 else if (obj->base.dma_buf &&
11449 !reservation_object_test_signaled_rcu(obj->base.dma_buf->resv,
11450 false))
11451 return true;
11452 else
11453 return engine != i915_gem_request_get_engine(obj->last_write_req);
11454}
11455
11456static void skl_do_mmio_flip(struct intel_crtc *intel_crtc,
11457 unsigned int rotation,
11458 struct intel_flip_work *work)
11459{
11460 struct drm_device *dev = intel_crtc->base.dev;
11461 struct drm_i915_private *dev_priv = dev->dev_private;
11462 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
11463 const enum pipe pipe = intel_crtc->pipe;
11464 u32 ctl, stride, tile_height;
11465
11466 ctl = I915_READ(PLANE_CTL(pipe, 0));
11467 ctl &= ~PLANE_CTL_TILED_MASK;
11468 switch (fb->modifier[0]) {
11469 case DRM_FORMAT_MOD_NONE:
11470 break;
11471 case I915_FORMAT_MOD_X_TILED:
11472 ctl |= PLANE_CTL_TILED_X;
11473 break;
11474 case I915_FORMAT_MOD_Y_TILED:
11475 ctl |= PLANE_CTL_TILED_Y;
11476 break;
11477 case I915_FORMAT_MOD_Yf_TILED:
11478 ctl |= PLANE_CTL_TILED_YF;
11479 break;
11480 default:
11481 MISSING_CASE(fb->modifier[0]);
11482 }
11483
11484 /*
11485 * The stride is either expressed as a multiple of 64 bytes chunks for
11486 * linear buffers or in number of tiles for tiled buffers.
11487 */
11488 if (intel_rotation_90_or_270(rotation)) {
11489 /* stride = Surface height in tiles */
11490 tile_height = intel_tile_height(dev_priv, fb->modifier[0], 0);
11491 stride = DIV_ROUND_UP(fb->height, tile_height);
11492 } else {
11493 stride = fb->pitches[0] /
11494 intel_fb_stride_alignment(dev_priv, fb->modifier[0],
11495 fb->pixel_format);
11496 }
11497
11498 /*
11499 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
11500 * PLANE_SURF updates, the update is then guaranteed to be atomic.
11501 */
11502 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
11503 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
11504
11505 I915_WRITE(PLANE_SURF(pipe, 0), work->gtt_offset);
11506 POSTING_READ(PLANE_SURF(pipe, 0));
11507}
11508
11509static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc,
11510 struct intel_flip_work *work)
11511{
11512 struct drm_device *dev = intel_crtc->base.dev;
11513 struct drm_i915_private *dev_priv = dev->dev_private;
11514 struct intel_framebuffer *intel_fb =
11515 to_intel_framebuffer(intel_crtc->base.primary->fb);
11516 struct drm_i915_gem_object *obj = intel_fb->obj;
11517 i915_reg_t reg = DSPCNTR(intel_crtc->plane);
11518 u32 dspcntr;
11519
11520 dspcntr = I915_READ(reg);
11521
11522 if (obj->tiling_mode != I915_TILING_NONE)
11523 dspcntr |= DISPPLANE_TILED;
11524 else
11525 dspcntr &= ~DISPPLANE_TILED;
11526
11527 I915_WRITE(reg, dspcntr);
11528
11529 I915_WRITE(DSPSURF(intel_crtc->plane), work->gtt_offset);
11530 POSTING_READ(DSPSURF(intel_crtc->plane));
11531}
11532
11533static void intel_mmio_flip_work_func(struct work_struct *w)
11534{
11535 struct intel_flip_work *work =
11536 container_of(w, struct intel_flip_work, mmio_work);
11537 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
11538 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
11539 struct intel_framebuffer *intel_fb =
11540 to_intel_framebuffer(crtc->base.primary->fb);
11541 struct drm_i915_gem_object *obj = intel_fb->obj;
11542
11543 if (work->flip_queued_req)
11544 WARN_ON(__i915_wait_request(work->flip_queued_req,
11545 false, NULL,
11546 &dev_priv->rps.mmioflips));
11547
11548 /* For framebuffer backed by dmabuf, wait for fence */
11549 if (obj->base.dma_buf)
11550 WARN_ON(reservation_object_wait_timeout_rcu(obj->base.dma_buf->resv,
11551 false, false,
11552 MAX_SCHEDULE_TIMEOUT) < 0);
11553
11554 intel_pipe_update_start(crtc);
11555
11556 if (INTEL_GEN(dev_priv) >= 9)
11557 skl_do_mmio_flip(crtc, work->rotation, work);
11558 else
11559 /* use_mmio_flip() retricts MMIO flips to ilk+ */
11560 ilk_do_mmio_flip(crtc, work);
11561
11562 intel_pipe_update_end(crtc, work);
11563}
11564
11565static int intel_default_queue_flip(struct drm_device *dev,
11566 struct drm_crtc *crtc,
11567 struct drm_framebuffer *fb,
11568 struct drm_i915_gem_object *obj,
11569 struct drm_i915_gem_request *req,
11570 uint32_t flags)
11571{
11572 return -ENODEV;
11573}
11574
11575static bool __pageflip_stall_check_cs(struct drm_i915_private *dev_priv,
11576 struct intel_crtc *intel_crtc,
11577 struct intel_flip_work *work)
11578{
11579 u32 addr, vblank;
11580
11581 if (!atomic_read(&work->pending))
11582 return false;
11583
11584 smp_rmb();
11585
11586 vblank = intel_crtc_get_vblank_counter(intel_crtc);
11587 if (work->flip_ready_vblank == 0) {
11588 if (work->flip_queued_req &&
11589 !i915_gem_request_completed(work->flip_queued_req, true))
11590 return false;
11591
11592 work->flip_ready_vblank = vblank;
11593 }
11594
11595 if (vblank - work->flip_ready_vblank < 3)
11596 return false;
11597
11598 /* Potential stall - if we see that the flip has happened,
11599 * assume a missed interrupt. */
11600 if (INTEL_GEN(dev_priv) >= 4)
11601 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
11602 else
11603 addr = I915_READ(DSPADDR(intel_crtc->plane));
11604
11605 /* There is a potential issue here with a false positive after a flip
11606 * to the same address. We could address this by checking for a
11607 * non-incrementing frame counter.
11608 */
11609 return addr == work->gtt_offset;
11610}
11611
11612void intel_check_page_flip(struct drm_i915_private *dev_priv, int pipe)
11613{
11614 struct drm_device *dev = dev_priv->dev;
11615 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11616 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11617 struct intel_flip_work *work;
11618
11619 WARN_ON(!in_interrupt());
11620
11621 if (crtc == NULL)
11622 return;
11623
11624 spin_lock(&dev->event_lock);
11625 work = intel_crtc->flip_work;
11626
11627 if (work != NULL && !is_mmio_work(work) &&
11628 __pageflip_stall_check_cs(dev_priv, intel_crtc, work)) {
11629 WARN_ONCE(1,
11630 "Kicking stuck page flip: queued at %d, now %d\n",
11631 work->flip_queued_vblank, intel_crtc_get_vblank_counter(intel_crtc));
11632 page_flip_completed(intel_crtc);
11633 work = NULL;
11634 }
11635
11636 if (work != NULL && !is_mmio_work(work) &&
11637 intel_crtc_get_vblank_counter(intel_crtc) - work->flip_queued_vblank > 1)
11638 intel_queue_rps_boost_for_request(work->flip_queued_req);
11639 spin_unlock(&dev->event_lock);
11640}
11641
11642static int intel_crtc_page_flip(struct drm_crtc *crtc,
11643 struct drm_framebuffer *fb,
11644 struct drm_pending_vblank_event *event,
11645 uint32_t page_flip_flags)
11646{
11647 struct drm_device *dev = crtc->dev;
11648 struct drm_i915_private *dev_priv = dev->dev_private;
11649 struct drm_framebuffer *old_fb = crtc->primary->fb;
11650 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
11651 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11652 struct drm_plane *primary = crtc->primary;
11653 enum pipe pipe = intel_crtc->pipe;
11654 struct intel_flip_work *work;
11655 struct intel_engine_cs *engine;
11656 bool mmio_flip;
11657 struct drm_i915_gem_request *request = NULL;
11658 int ret;
11659
11660 /*
11661 * drm_mode_page_flip_ioctl() should already catch this, but double
11662 * check to be safe. In the future we may enable pageflipping from
11663 * a disabled primary plane.
11664 */
11665 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
11666 return -EBUSY;
11667
11668 /* Can't change pixel format via MI display flips. */
11669 if (fb->pixel_format != crtc->primary->fb->pixel_format)
11670 return -EINVAL;
11671
11672 /*
11673 * TILEOFF/LINOFF registers can't be changed via MI display flips.
11674 * Note that pitch changes could also affect these register.
11675 */
11676 if (INTEL_INFO(dev)->gen > 3 &&
11677 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
11678 fb->pitches[0] != crtc->primary->fb->pitches[0]))
11679 return -EINVAL;
11680
11681 if (i915_terminally_wedged(&dev_priv->gpu_error))
11682 goto out_hang;
11683
11684 work = kzalloc(sizeof(*work), GFP_KERNEL);
11685 if (work == NULL)
11686 return -ENOMEM;
11687
11688 work->event = event;
11689 work->crtc = crtc;
11690 work->old_fb = old_fb;
11691 INIT_WORK(&work->unpin_work, intel_unpin_work_fn);
11692
11693 ret = drm_crtc_vblank_get(crtc);
11694 if (ret)
11695 goto free_work;
11696
11697 /* We borrow the event spin lock for protecting flip_work */
11698 spin_lock_irq(&dev->event_lock);
11699 if (intel_crtc->flip_work) {
11700 /* Before declaring the flip queue wedged, check if
11701 * the hardware completed the operation behind our backs.
11702 */
11703 if (pageflip_finished(intel_crtc, intel_crtc->flip_work)) {
11704 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
11705 page_flip_completed(intel_crtc);
11706 } else {
11707 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
11708 spin_unlock_irq(&dev->event_lock);
11709
11710 drm_crtc_vblank_put(crtc);
11711 kfree(work);
11712 return -EBUSY;
11713 }
11714 }
11715 intel_crtc->flip_work = work;
11716 spin_unlock_irq(&dev->event_lock);
11717
11718 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
11719 flush_workqueue(dev_priv->wq);
11720
11721 /* Reference the objects for the scheduled work. */
11722 drm_framebuffer_reference(work->old_fb);
11723 drm_gem_object_reference(&obj->base);
11724
11725 crtc->primary->fb = fb;
11726 update_state_fb(crtc->primary);
11727 intel_fbc_pre_update(intel_crtc);
11728
11729 work->pending_flip_obj = obj;
11730
11731 ret = i915_mutex_lock_interruptible(dev);
11732 if (ret)
11733 goto cleanup;
11734
11735 intel_crtc->reset_counter = i915_reset_counter(&dev_priv->gpu_error);
11736 if (__i915_reset_in_progress_or_wedged(intel_crtc->reset_counter)) {
11737 ret = -EIO;
11738 goto cleanup;
11739 }
11740
11741 atomic_inc(&intel_crtc->unpin_work_count);
11742
11743 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
11744 work->flip_count = I915_READ(PIPE_FLIPCOUNT_G4X(pipe)) + 1;
11745
11746 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
11747 engine = &dev_priv->engine[BCS];
11748 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
11749 /* vlv: DISPLAY_FLIP fails to change tiling */
11750 engine = NULL;
11751 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
11752 engine = &dev_priv->engine[BCS];
11753 } else if (INTEL_INFO(dev)->gen >= 7) {
11754 engine = i915_gem_request_get_engine(obj->last_write_req);
11755 if (engine == NULL || engine->id != RCS)
11756 engine = &dev_priv->engine[BCS];
11757 } else {
11758 engine = &dev_priv->engine[RCS];
11759 }
11760
11761 mmio_flip = use_mmio_flip(engine, obj);
11762
11763 /* When using CS flips, we want to emit semaphores between rings.
11764 * However, when using mmio flips we will create a task to do the
11765 * synchronisation, so all we want here is to pin the framebuffer
11766 * into the display plane and skip any waits.
11767 */
11768 if (!mmio_flip) {
11769 ret = i915_gem_object_sync(obj, engine, &request);
11770 if (!ret && !request) {
11771 request = i915_gem_request_alloc(engine, NULL);
11772 ret = PTR_ERR_OR_ZERO(request);
11773 }
11774
11775 if (ret)
11776 goto cleanup_pending;
11777 }
11778
11779 ret = intel_pin_and_fence_fb_obj(fb, primary->state->rotation);
11780 if (ret)
11781 goto cleanup_pending;
11782
11783 work->gtt_offset = intel_plane_obj_offset(to_intel_plane(primary),
11784 obj, 0);
11785 work->gtt_offset += intel_crtc->dspaddr_offset;
11786 work->rotation = crtc->primary->state->rotation;
11787
11788 if (mmio_flip) {
11789 INIT_WORK(&work->mmio_work, intel_mmio_flip_work_func);
11790
11791 i915_gem_request_assign(&work->flip_queued_req,
11792 obj->last_write_req);
11793
11794 schedule_work(&work->mmio_work);
11795 } else {
11796 i915_gem_request_assign(&work->flip_queued_req, request);
11797 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, request,
11798 page_flip_flags);
11799 if (ret)
11800 goto cleanup_unpin;
11801
11802 intel_mark_page_flip_active(intel_crtc, work);
11803
11804 i915_add_request_no_flush(request);
11805 }
11806
11807 i915_gem_track_fb(intel_fb_obj(old_fb), obj,
11808 to_intel_plane(primary)->frontbuffer_bit);
11809 mutex_unlock(&dev->struct_mutex);
11810
11811 intel_frontbuffer_flip_prepare(dev,
11812 to_intel_plane(primary)->frontbuffer_bit);
11813
11814 trace_i915_flip_request(intel_crtc->plane, obj);
11815
11816 return 0;
11817
11818cleanup_unpin:
11819 intel_unpin_fb_obj(fb, crtc->primary->state->rotation);
11820cleanup_pending:
11821 if (!IS_ERR_OR_NULL(request))
11822 i915_add_request_no_flush(request);
11823 atomic_dec(&intel_crtc->unpin_work_count);
11824 mutex_unlock(&dev->struct_mutex);
11825cleanup:
11826 crtc->primary->fb = old_fb;
11827 update_state_fb(crtc->primary);
11828
11829 drm_gem_object_unreference_unlocked(&obj->base);
11830 drm_framebuffer_unreference(work->old_fb);
11831
11832 spin_lock_irq(&dev->event_lock);
11833 intel_crtc->flip_work = NULL;
11834 spin_unlock_irq(&dev->event_lock);
11835
11836 drm_crtc_vblank_put(crtc);
11837free_work:
11838 kfree(work);
11839
11840 if (ret == -EIO) {
11841 struct drm_atomic_state *state;
11842 struct drm_plane_state *plane_state;
11843
11844out_hang:
11845 state = drm_atomic_state_alloc(dev);
11846 if (!state)
11847 return -ENOMEM;
11848 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
11849
11850retry:
11851 plane_state = drm_atomic_get_plane_state(state, primary);
11852 ret = PTR_ERR_OR_ZERO(plane_state);
11853 if (!ret) {
11854 drm_atomic_set_fb_for_plane(plane_state, fb);
11855
11856 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
11857 if (!ret)
11858 ret = drm_atomic_commit(state);
11859 }
11860
11861 if (ret == -EDEADLK) {
11862 drm_modeset_backoff(state->acquire_ctx);
11863 drm_atomic_state_clear(state);
11864 goto retry;
11865 }
11866
11867 if (ret)
11868 drm_atomic_state_free(state);
11869
11870 if (ret == 0 && event) {
11871 spin_lock_irq(&dev->event_lock);
11872 drm_crtc_send_vblank_event(crtc, event);
11873 spin_unlock_irq(&dev->event_lock);
11874 }
11875 }
11876 return ret;
11877}
11878
11879
11880/**
11881 * intel_wm_need_update - Check whether watermarks need updating
11882 * @plane: drm plane
11883 * @state: new plane state
11884 *
11885 * Check current plane state versus the new one to determine whether
11886 * watermarks need to be recalculated.
11887 *
11888 * Returns true or false.
11889 */
11890static bool intel_wm_need_update(struct drm_plane *plane,
11891 struct drm_plane_state *state)
11892{
11893 struct intel_plane_state *new = to_intel_plane_state(state);
11894 struct intel_plane_state *cur = to_intel_plane_state(plane->state);
11895
11896 /* Update watermarks on tiling or size changes. */
11897 if (new->visible != cur->visible)
11898 return true;
11899
11900 if (!cur->base.fb || !new->base.fb)
11901 return false;
11902
11903 if (cur->base.fb->modifier[0] != new->base.fb->modifier[0] ||
11904 cur->base.rotation != new->base.rotation ||
11905 drm_rect_width(&new->src) != drm_rect_width(&cur->src) ||
11906 drm_rect_height(&new->src) != drm_rect_height(&cur->src) ||
11907 drm_rect_width(&new->dst) != drm_rect_width(&cur->dst) ||
11908 drm_rect_height(&new->dst) != drm_rect_height(&cur->dst))
11909 return true;
11910
11911 return false;
11912}
11913
11914static bool needs_scaling(struct intel_plane_state *state)
11915{
11916 int src_w = drm_rect_width(&state->src) >> 16;
11917 int src_h = drm_rect_height(&state->src) >> 16;
11918 int dst_w = drm_rect_width(&state->dst);
11919 int dst_h = drm_rect_height(&state->dst);
11920
11921 return (src_w != dst_w || src_h != dst_h);
11922}
d21fbe87 11923
da20eabd
ML
11924int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
11925 struct drm_plane_state *plane_state)
11926{
ab1d3a0e 11927 struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc_state);
da20eabd
ML
11928 struct drm_crtc *crtc = crtc_state->crtc;
11929 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11930 struct drm_plane *plane = plane_state->plane;
11931 struct drm_device *dev = crtc->dev;
ed4a6a7c 11932 struct drm_i915_private *dev_priv = to_i915(dev);
da20eabd
ML
11933 struct intel_plane_state *old_plane_state =
11934 to_intel_plane_state(plane->state);
11935 int idx = intel_crtc->base.base.id, ret;
da20eabd
ML
11936 bool mode_changed = needs_modeset(crtc_state);
11937 bool was_crtc_enabled = crtc->state->active;
11938 bool is_crtc_enabled = crtc_state->active;
da20eabd
ML
11939 bool turn_off, turn_on, visible, was_visible;
11940 struct drm_framebuffer *fb = plane_state->fb;
11941
11942 if (crtc_state && INTEL_INFO(dev)->gen >= 9 &&
11943 plane->type != DRM_PLANE_TYPE_CURSOR) {
11944 ret = skl_update_scaler_plane(
11945 to_intel_crtc_state(crtc_state),
11946 to_intel_plane_state(plane_state));
11947 if (ret)
11948 return ret;
11949 }
11950
da20eabd
ML
11951 was_visible = old_plane_state->visible;
11952 visible = to_intel_plane_state(plane_state)->visible;
11953
11954 if (!was_crtc_enabled && WARN_ON(was_visible))
11955 was_visible = false;
11956
35c08f43
ML
11957 /*
11958 * Visibility is calculated as if the crtc was on, but
11959 * after scaler setup everything depends on it being off
11960 * when the crtc isn't active.
f818ffea
VS
11961 *
11962 * FIXME this is wrong for watermarks. Watermarks should also
11963 * be computed as if the pipe would be active. Perhaps move
11964 * per-plane wm computation to the .check_plane() hook, and
11965 * only combine the results from all planes in the current place?
35c08f43
ML
11966 */
11967 if (!is_crtc_enabled)
11968 to_intel_plane_state(plane_state)->visible = visible = false;
da20eabd
ML
11969
11970 if (!was_visible && !visible)
11971 return 0;
11972
e8861675
ML
11973 if (fb != old_plane_state->base.fb)
11974 pipe_config->fb_changed = true;
11975
da20eabd
ML
11976 turn_off = was_visible && (!visible || mode_changed);
11977 turn_on = visible && (!was_visible || mode_changed);
11978
11979 DRM_DEBUG_ATOMIC("[CRTC:%i] has [PLANE:%i] with fb %i\n", idx,
11980 plane->base.id, fb ? fb->base.id : -1);
11981
11982 DRM_DEBUG_ATOMIC("[PLANE:%i] visible %i -> %i, off %i, on %i, ms %i\n",
11983 plane->base.id, was_visible, visible,
11984 turn_off, turn_on, mode_changed);
11985
caed361d
VS
11986 if (turn_on) {
11987 pipe_config->update_wm_pre = true;
11988
11989 /* must disable cxsr around plane enable/disable */
11990 if (plane->type != DRM_PLANE_TYPE_CURSOR)
11991 pipe_config->disable_cxsr = true;
11992 } else if (turn_off) {
11993 pipe_config->update_wm_post = true;
92826fcd 11994
852eb00d 11995 /* must disable cxsr around plane enable/disable */
e8861675 11996 if (plane->type != DRM_PLANE_TYPE_CURSOR)
ab1d3a0e 11997 pipe_config->disable_cxsr = true;
852eb00d 11998 } else if (intel_wm_need_update(plane, plane_state)) {
caed361d
VS
11999 /* FIXME bollocks */
12000 pipe_config->update_wm_pre = true;
12001 pipe_config->update_wm_post = true;
852eb00d 12002 }
da20eabd 12003
ed4a6a7c 12004 /* Pre-gen9 platforms need two-step watermark updates */
caed361d
VS
12005 if ((pipe_config->update_wm_pre || pipe_config->update_wm_post) &&
12006 INTEL_INFO(dev)->gen < 9 && dev_priv->display.optimize_watermarks)
ed4a6a7c
MR
12007 to_intel_crtc_state(crtc_state)->wm.need_postvbl_update = true;
12008
8be6ca85 12009 if (visible || was_visible)
cd202f69 12010 pipe_config->fb_bits |= to_intel_plane(plane)->frontbuffer_bit;
a9ff8714 12011
31ae71fc
ML
12012 /*
12013 * WaCxSRDisabledForSpriteScaling:ivb
12014 *
12015 * cstate->update_wm was already set above, so this flag will
12016 * take effect when we commit and program watermarks.
12017 */
12018 if (plane->type == DRM_PLANE_TYPE_OVERLAY && IS_IVYBRIDGE(dev) &&
12019 needs_scaling(to_intel_plane_state(plane_state)) &&
12020 !needs_scaling(old_plane_state))
12021 pipe_config->disable_lp_wm = true;
d21fbe87 12022
da20eabd
ML
12023 return 0;
12024}
12025
6d3a1ce7
ML
12026static bool encoders_cloneable(const struct intel_encoder *a,
12027 const struct intel_encoder *b)
12028{
12029 /* masks could be asymmetric, so check both ways */
12030 return a == b || (a->cloneable & (1 << b->type) &&
12031 b->cloneable & (1 << a->type));
12032}
12033
12034static bool check_single_encoder_cloning(struct drm_atomic_state *state,
12035 struct intel_crtc *crtc,
12036 struct intel_encoder *encoder)
12037{
12038 struct intel_encoder *source_encoder;
12039 struct drm_connector *connector;
12040 struct drm_connector_state *connector_state;
12041 int i;
12042
12043 for_each_connector_in_state(state, connector, connector_state, i) {
12044 if (connector_state->crtc != &crtc->base)
12045 continue;
12046
12047 source_encoder =
12048 to_intel_encoder(connector_state->best_encoder);
12049 if (!encoders_cloneable(encoder, source_encoder))
12050 return false;
12051 }
12052
12053 return true;
12054}
12055
12056static bool check_encoder_cloning(struct drm_atomic_state *state,
12057 struct intel_crtc *crtc)
12058{
12059 struct intel_encoder *encoder;
12060 struct drm_connector *connector;
12061 struct drm_connector_state *connector_state;
12062 int i;
12063
12064 for_each_connector_in_state(state, connector, connector_state, i) {
12065 if (connector_state->crtc != &crtc->base)
12066 continue;
12067
12068 encoder = to_intel_encoder(connector_state->best_encoder);
12069 if (!check_single_encoder_cloning(state, crtc, encoder))
12070 return false;
12071 }
12072
12073 return true;
12074}
12075
12076static int intel_crtc_atomic_check(struct drm_crtc *crtc,
12077 struct drm_crtc_state *crtc_state)
12078{
cf5a15be 12079 struct drm_device *dev = crtc->dev;
ad421372 12080 struct drm_i915_private *dev_priv = dev->dev_private;
6d3a1ce7 12081 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cf5a15be
ML
12082 struct intel_crtc_state *pipe_config =
12083 to_intel_crtc_state(crtc_state);
6d3a1ce7 12084 struct drm_atomic_state *state = crtc_state->state;
4d20cd86 12085 int ret;
6d3a1ce7
ML
12086 bool mode_changed = needs_modeset(crtc_state);
12087
12088 if (mode_changed && !check_encoder_cloning(state, intel_crtc)) {
12089 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
12090 return -EINVAL;
12091 }
12092
852eb00d 12093 if (mode_changed && !crtc_state->active)
caed361d 12094 pipe_config->update_wm_post = true;
eddfcbcd 12095
ad421372
ML
12096 if (mode_changed && crtc_state->enable &&
12097 dev_priv->display.crtc_compute_clock &&
8106ddbd 12098 !WARN_ON(pipe_config->shared_dpll)) {
ad421372
ML
12099 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
12100 pipe_config);
12101 if (ret)
12102 return ret;
12103 }
12104
82cf435b
LL
12105 if (crtc_state->color_mgmt_changed) {
12106 ret = intel_color_check(crtc, crtc_state);
12107 if (ret)
12108 return ret;
12109 }
12110
e435d6e5 12111 ret = 0;
86c8bbbe 12112 if (dev_priv->display.compute_pipe_wm) {
e3bddded 12113 ret = dev_priv->display.compute_pipe_wm(pipe_config);
ed4a6a7c
MR
12114 if (ret) {
12115 DRM_DEBUG_KMS("Target pipe watermarks are invalid\n");
12116 return ret;
12117 }
12118 }
12119
12120 if (dev_priv->display.compute_intermediate_wm &&
12121 !to_intel_atomic_state(state)->skip_intermediate_wm) {
12122 if (WARN_ON(!dev_priv->display.compute_pipe_wm))
12123 return 0;
12124
12125 /*
12126 * Calculate 'intermediate' watermarks that satisfy both the
12127 * old state and the new state. We can program these
12128 * immediately.
12129 */
12130 ret = dev_priv->display.compute_intermediate_wm(crtc->dev,
12131 intel_crtc,
12132 pipe_config);
12133 if (ret) {
12134 DRM_DEBUG_KMS("No valid intermediate pipe watermarks are possible\n");
86c8bbbe 12135 return ret;
ed4a6a7c 12136 }
e3d5457c
VS
12137 } else if (dev_priv->display.compute_intermediate_wm) {
12138 if (HAS_PCH_SPLIT(dev_priv) && INTEL_GEN(dev_priv) < 9)
12139 pipe_config->wm.ilk.intermediate = pipe_config->wm.ilk.optimal;
86c8bbbe
MR
12140 }
12141
e435d6e5
ML
12142 if (INTEL_INFO(dev)->gen >= 9) {
12143 if (mode_changed)
12144 ret = skl_update_scaler_crtc(pipe_config);
12145
12146 if (!ret)
12147 ret = intel_atomic_setup_scalers(dev, intel_crtc,
12148 pipe_config);
12149 }
12150
12151 return ret;
6d3a1ce7
ML
12152}
12153
65b38e0d 12154static const struct drm_crtc_helper_funcs intel_helper_funcs = {
f6e5b160 12155 .mode_set_base_atomic = intel_pipe_set_base_atomic,
5a21b665
DV
12156 .atomic_begin = intel_begin_crtc_commit,
12157 .atomic_flush = intel_finish_crtc_commit,
6d3a1ce7 12158 .atomic_check = intel_crtc_atomic_check,
f6e5b160
CW
12159};
12160
d29b2f9d
ACO
12161static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
12162{
12163 struct intel_connector *connector;
12164
12165 for_each_intel_connector(dev, connector) {
8863dc7f
DV
12166 if (connector->base.state->crtc)
12167 drm_connector_unreference(&connector->base);
12168
d29b2f9d
ACO
12169 if (connector->base.encoder) {
12170 connector->base.state->best_encoder =
12171 connector->base.encoder;
12172 connector->base.state->crtc =
12173 connector->base.encoder->crtc;
8863dc7f
DV
12174
12175 drm_connector_reference(&connector->base);
d29b2f9d
ACO
12176 } else {
12177 connector->base.state->best_encoder = NULL;
12178 connector->base.state->crtc = NULL;
12179 }
12180 }
12181}
12182
050f7aeb 12183static void
eba905b2 12184connected_sink_compute_bpp(struct intel_connector *connector,
5cec258b 12185 struct intel_crtc_state *pipe_config)
050f7aeb
DV
12186{
12187 int bpp = pipe_config->pipe_bpp;
12188
12189 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
12190 connector->base.base.id,
c23cc417 12191 connector->base.name);
050f7aeb
DV
12192
12193 /* Don't use an invalid EDID bpc value */
12194 if (connector->base.display_info.bpc &&
12195 connector->base.display_info.bpc * 3 < bpp) {
12196 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
12197 bpp, connector->base.display_info.bpc*3);
12198 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
12199 }
12200
013dd9e0
JN
12201 /* Clamp bpp to default limit on screens without EDID 1.4 */
12202 if (connector->base.display_info.bpc == 0) {
12203 int type = connector->base.connector_type;
12204 int clamp_bpp = 24;
12205
12206 /* Fall back to 18 bpp when DP sink capability is unknown. */
12207 if (type == DRM_MODE_CONNECTOR_DisplayPort ||
12208 type == DRM_MODE_CONNECTOR_eDP)
12209 clamp_bpp = 18;
12210
12211 if (bpp > clamp_bpp) {
12212 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of %d\n",
12213 bpp, clamp_bpp);
12214 pipe_config->pipe_bpp = clamp_bpp;
12215 }
050f7aeb
DV
12216 }
12217}
12218
4e53c2e0 12219static int
050f7aeb 12220compute_baseline_pipe_bpp(struct intel_crtc *crtc,
5cec258b 12221 struct intel_crtc_state *pipe_config)
4e53c2e0 12222{
050f7aeb 12223 struct drm_device *dev = crtc->base.dev;
1486017f 12224 struct drm_atomic_state *state;
da3ced29
ACO
12225 struct drm_connector *connector;
12226 struct drm_connector_state *connector_state;
1486017f 12227 int bpp, i;
4e53c2e0 12228
666a4537 12229 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)))
4e53c2e0 12230 bpp = 10*3;
d328c9d7
DV
12231 else if (INTEL_INFO(dev)->gen >= 5)
12232 bpp = 12*3;
12233 else
12234 bpp = 8*3;
12235
4e53c2e0 12236
4e53c2e0
DV
12237 pipe_config->pipe_bpp = bpp;
12238
1486017f
ACO
12239 state = pipe_config->base.state;
12240
4e53c2e0 12241 /* Clamp display bpp to EDID value */
da3ced29
ACO
12242 for_each_connector_in_state(state, connector, connector_state, i) {
12243 if (connector_state->crtc != &crtc->base)
4e53c2e0
DV
12244 continue;
12245
da3ced29
ACO
12246 connected_sink_compute_bpp(to_intel_connector(connector),
12247 pipe_config);
4e53c2e0
DV
12248 }
12249
12250 return bpp;
12251}
12252
644db711
DV
12253static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
12254{
12255 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
12256 "type: 0x%x flags: 0x%x\n",
1342830c 12257 mode->crtc_clock,
644db711
DV
12258 mode->crtc_hdisplay, mode->crtc_hsync_start,
12259 mode->crtc_hsync_end, mode->crtc_htotal,
12260 mode->crtc_vdisplay, mode->crtc_vsync_start,
12261 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
12262}
12263
c0b03411 12264static void intel_dump_pipe_config(struct intel_crtc *crtc,
5cec258b 12265 struct intel_crtc_state *pipe_config,
c0b03411
DV
12266 const char *context)
12267{
6a60cd87
CK
12268 struct drm_device *dev = crtc->base.dev;
12269 struct drm_plane *plane;
12270 struct intel_plane *intel_plane;
12271 struct intel_plane_state *state;
12272 struct drm_framebuffer *fb;
12273
12274 DRM_DEBUG_KMS("[CRTC:%d]%s config %p for pipe %c\n", crtc->base.base.id,
12275 context, pipe_config, pipe_name(crtc->pipe));
c0b03411 12276
da205630 12277 DRM_DEBUG_KMS("cpu_transcoder: %s\n", transcoder_name(pipe_config->cpu_transcoder));
c0b03411
DV
12278 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
12279 pipe_config->pipe_bpp, pipe_config->dither);
12280 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
12281 pipe_config->has_pch_encoder,
12282 pipe_config->fdi_lanes,
12283 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
12284 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
12285 pipe_config->fdi_m_n.tu);
90a6b7b0 12286 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
eb14cb74 12287 pipe_config->has_dp_encoder,
90a6b7b0 12288 pipe_config->lane_count,
eb14cb74
VS
12289 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
12290 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
12291 pipe_config->dp_m_n.tu);
b95af8be 12292
90a6b7b0 12293 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
b95af8be 12294 pipe_config->has_dp_encoder,
90a6b7b0 12295 pipe_config->lane_count,
b95af8be
VK
12296 pipe_config->dp_m2_n2.gmch_m,
12297 pipe_config->dp_m2_n2.gmch_n,
12298 pipe_config->dp_m2_n2.link_m,
12299 pipe_config->dp_m2_n2.link_n,
12300 pipe_config->dp_m2_n2.tu);
12301
55072d19
DV
12302 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
12303 pipe_config->has_audio,
12304 pipe_config->has_infoframe);
12305
c0b03411 12306 DRM_DEBUG_KMS("requested mode:\n");
2d112de7 12307 drm_mode_debug_printmodeline(&pipe_config->base.mode);
c0b03411 12308 DRM_DEBUG_KMS("adjusted mode:\n");
2d112de7
ACO
12309 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
12310 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
d71b8d4a 12311 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
37327abd
VS
12312 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
12313 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
0ec463d3
TU
12314 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
12315 crtc->num_scalers,
12316 pipe_config->scaler_state.scaler_users,
12317 pipe_config->scaler_state.scaler_id);
c0b03411
DV
12318 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
12319 pipe_config->gmch_pfit.control,
12320 pipe_config->gmch_pfit.pgm_ratios,
12321 pipe_config->gmch_pfit.lvds_border_bits);
fd4daa9c 12322 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
c0b03411 12323 pipe_config->pch_pfit.pos,
fd4daa9c
CW
12324 pipe_config->pch_pfit.size,
12325 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
42db64ef 12326 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
cf532bb2 12327 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
6a60cd87 12328
415ff0f6 12329 if (IS_BROXTON(dev)) {
05712c15 12330 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x,"
415ff0f6 12331 "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
c8453338 12332 "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n",
415ff0f6
TU
12333 pipe_config->ddi_pll_sel,
12334 pipe_config->dpll_hw_state.ebb0,
05712c15 12335 pipe_config->dpll_hw_state.ebb4,
415ff0f6
TU
12336 pipe_config->dpll_hw_state.pll0,
12337 pipe_config->dpll_hw_state.pll1,
12338 pipe_config->dpll_hw_state.pll2,
12339 pipe_config->dpll_hw_state.pll3,
12340 pipe_config->dpll_hw_state.pll6,
12341 pipe_config->dpll_hw_state.pll8,
05712c15 12342 pipe_config->dpll_hw_state.pll9,
c8453338 12343 pipe_config->dpll_hw_state.pll10,
415ff0f6 12344 pipe_config->dpll_hw_state.pcsdw12);
ef11bdb3 12345 } else if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
415ff0f6
TU
12346 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: "
12347 "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
12348 pipe_config->ddi_pll_sel,
12349 pipe_config->dpll_hw_state.ctrl1,
12350 pipe_config->dpll_hw_state.cfgcr1,
12351 pipe_config->dpll_hw_state.cfgcr2);
12352 } else if (HAS_DDI(dev)) {
1260f07e 12353 DRM_DEBUG_KMS("ddi_pll_sel: 0x%x; dpll_hw_state: wrpll: 0x%x spll: 0x%x\n",
415ff0f6 12354 pipe_config->ddi_pll_sel,
00490c22
ML
12355 pipe_config->dpll_hw_state.wrpll,
12356 pipe_config->dpll_hw_state.spll);
415ff0f6
TU
12357 } else {
12358 DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
12359 "fp0: 0x%x, fp1: 0x%x\n",
12360 pipe_config->dpll_hw_state.dpll,
12361 pipe_config->dpll_hw_state.dpll_md,
12362 pipe_config->dpll_hw_state.fp0,
12363 pipe_config->dpll_hw_state.fp1);
12364 }
12365
6a60cd87
CK
12366 DRM_DEBUG_KMS("planes on this crtc\n");
12367 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
12368 intel_plane = to_intel_plane(plane);
12369 if (intel_plane->pipe != crtc->pipe)
12370 continue;
12371
12372 state = to_intel_plane_state(plane->state);
12373 fb = state->base.fb;
12374 if (!fb) {
12375 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d "
12376 "disabled, scaler_id = %d\n",
12377 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12378 plane->base.id, intel_plane->pipe,
12379 (crtc->base.primary == plane) ? 0 : intel_plane->plane + 1,
12380 drm_plane_index(plane), state->scaler_id);
12381 continue;
12382 }
12383
12384 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d enabled",
12385 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12386 plane->base.id, intel_plane->pipe,
12387 crtc->base.primary == plane ? 0 : intel_plane->plane + 1,
12388 drm_plane_index(plane));
12389 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = 0x%x",
12390 fb->base.id, fb->width, fb->height, fb->pixel_format);
12391 DRM_DEBUG_KMS("\tscaler:%d src (%u, %u) %ux%u dst (%u, %u) %ux%u\n",
12392 state->scaler_id,
12393 state->src.x1 >> 16, state->src.y1 >> 16,
12394 drm_rect_width(&state->src) >> 16,
12395 drm_rect_height(&state->src) >> 16,
12396 state->dst.x1, state->dst.y1,
12397 drm_rect_width(&state->dst), drm_rect_height(&state->dst));
12398 }
c0b03411
DV
12399}
12400
5448a00d 12401static bool check_digital_port_conflicts(struct drm_atomic_state *state)
00f0b378 12402{
5448a00d 12403 struct drm_device *dev = state->dev;
da3ced29 12404 struct drm_connector *connector;
00f0b378
VS
12405 unsigned int used_ports = 0;
12406
12407 /*
12408 * Walk the connector list instead of the encoder
12409 * list to detect the problem on ddi platforms
12410 * where there's just one encoder per digital port.
12411 */
0bff4858
VS
12412 drm_for_each_connector(connector, dev) {
12413 struct drm_connector_state *connector_state;
12414 struct intel_encoder *encoder;
12415
12416 connector_state = drm_atomic_get_existing_connector_state(state, connector);
12417 if (!connector_state)
12418 connector_state = connector->state;
12419
5448a00d 12420 if (!connector_state->best_encoder)
00f0b378
VS
12421 continue;
12422
5448a00d
ACO
12423 encoder = to_intel_encoder(connector_state->best_encoder);
12424
12425 WARN_ON(!connector_state->crtc);
00f0b378
VS
12426
12427 switch (encoder->type) {
12428 unsigned int port_mask;
12429 case INTEL_OUTPUT_UNKNOWN:
12430 if (WARN_ON(!HAS_DDI(dev)))
12431 break;
12432 case INTEL_OUTPUT_DISPLAYPORT:
12433 case INTEL_OUTPUT_HDMI:
12434 case INTEL_OUTPUT_EDP:
12435 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
12436
12437 /* the same port mustn't appear more than once */
12438 if (used_ports & port_mask)
12439 return false;
12440
12441 used_ports |= port_mask;
12442 default:
12443 break;
12444 }
12445 }
12446
12447 return true;
12448}
12449
83a57153
ACO
12450static void
12451clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
12452{
12453 struct drm_crtc_state tmp_state;
663a3640 12454 struct intel_crtc_scaler_state scaler_state;
4978cc93 12455 struct intel_dpll_hw_state dpll_hw_state;
8106ddbd 12456 struct intel_shared_dpll *shared_dpll;
8504c74c 12457 uint32_t ddi_pll_sel;
c4e2d043 12458 bool force_thru;
83a57153 12459
7546a384
ACO
12460 /* FIXME: before the switch to atomic started, a new pipe_config was
12461 * kzalloc'd. Code that depends on any field being zero should be
12462 * fixed, so that the crtc_state can be safely duplicated. For now,
12463 * only fields that are know to not cause problems are preserved. */
12464
83a57153 12465 tmp_state = crtc_state->base;
663a3640 12466 scaler_state = crtc_state->scaler_state;
4978cc93
ACO
12467 shared_dpll = crtc_state->shared_dpll;
12468 dpll_hw_state = crtc_state->dpll_hw_state;
8504c74c 12469 ddi_pll_sel = crtc_state->ddi_pll_sel;
c4e2d043 12470 force_thru = crtc_state->pch_pfit.force_thru;
4978cc93 12471
83a57153 12472 memset(crtc_state, 0, sizeof *crtc_state);
4978cc93 12473
83a57153 12474 crtc_state->base = tmp_state;
663a3640 12475 crtc_state->scaler_state = scaler_state;
4978cc93
ACO
12476 crtc_state->shared_dpll = shared_dpll;
12477 crtc_state->dpll_hw_state = dpll_hw_state;
8504c74c 12478 crtc_state->ddi_pll_sel = ddi_pll_sel;
c4e2d043 12479 crtc_state->pch_pfit.force_thru = force_thru;
83a57153
ACO
12480}
12481
548ee15b 12482static int
b8cecdf5 12483intel_modeset_pipe_config(struct drm_crtc *crtc,
b359283a 12484 struct intel_crtc_state *pipe_config)
ee7b9f93 12485{
b359283a 12486 struct drm_atomic_state *state = pipe_config->base.state;
7758a113 12487 struct intel_encoder *encoder;
da3ced29 12488 struct drm_connector *connector;
0b901879 12489 struct drm_connector_state *connector_state;
d328c9d7 12490 int base_bpp, ret = -EINVAL;
0b901879 12491 int i;
e29c22c0 12492 bool retry = true;
ee7b9f93 12493
83a57153 12494 clear_intel_crtc_state(pipe_config);
7758a113 12495
e143a21c
DV
12496 pipe_config->cpu_transcoder =
12497 (enum transcoder) to_intel_crtc(crtc)->pipe;
b8cecdf5 12498
2960bc9c
ID
12499 /*
12500 * Sanitize sync polarity flags based on requested ones. If neither
12501 * positive or negative polarity is requested, treat this as meaning
12502 * negative polarity.
12503 */
2d112de7 12504 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 12505 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
2d112de7 12506 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
2960bc9c 12507
2d112de7 12508 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 12509 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
2d112de7 12510 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
2960bc9c 12511
d328c9d7
DV
12512 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
12513 pipe_config);
12514 if (base_bpp < 0)
4e53c2e0
DV
12515 goto fail;
12516
e41a56be
VS
12517 /*
12518 * Determine the real pipe dimensions. Note that stereo modes can
12519 * increase the actual pipe size due to the frame doubling and
12520 * insertion of additional space for blanks between the frame. This
12521 * is stored in the crtc timings. We use the requested mode to do this
12522 * computation to clearly distinguish it from the adjusted mode, which
12523 * can be changed by the connectors in the below retry loop.
12524 */
2d112de7 12525 drm_crtc_get_hv_timing(&pipe_config->base.mode,
ecb7e16b
GP
12526 &pipe_config->pipe_src_w,
12527 &pipe_config->pipe_src_h);
e41a56be 12528
e29c22c0 12529encoder_retry:
ef1b460d 12530 /* Ensure the port clock defaults are reset when retrying. */
ff9a6750 12531 pipe_config->port_clock = 0;
ef1b460d 12532 pipe_config->pixel_multiplier = 1;
ff9a6750 12533
135c81b8 12534 /* Fill in default crtc timings, allow encoders to overwrite them. */
2d112de7
ACO
12535 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
12536 CRTC_STEREO_DOUBLE);
135c81b8 12537
7758a113
DV
12538 /* Pass our mode to the connectors and the CRTC to give them a chance to
12539 * adjust it according to limitations or connector properties, and also
12540 * a chance to reject the mode entirely.
47f1c6c9 12541 */
da3ced29 12542 for_each_connector_in_state(state, connector, connector_state, i) {
0b901879 12543 if (connector_state->crtc != crtc)
7758a113 12544 continue;
7ae89233 12545
0b901879
ACO
12546 encoder = to_intel_encoder(connector_state->best_encoder);
12547
efea6e8e
DV
12548 if (!(encoder->compute_config(encoder, pipe_config))) {
12549 DRM_DEBUG_KMS("Encoder config failure\n");
7758a113
DV
12550 goto fail;
12551 }
ee7b9f93 12552 }
47f1c6c9 12553
ff9a6750
DV
12554 /* Set default port clock if not overwritten by the encoder. Needs to be
12555 * done afterwards in case the encoder adjusts the mode. */
12556 if (!pipe_config->port_clock)
2d112de7 12557 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
241bfc38 12558 * pipe_config->pixel_multiplier;
ff9a6750 12559
a43f6e0f 12560 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
e29c22c0 12561 if (ret < 0) {
7758a113
DV
12562 DRM_DEBUG_KMS("CRTC fixup failed\n");
12563 goto fail;
ee7b9f93 12564 }
e29c22c0
DV
12565
12566 if (ret == RETRY) {
12567 if (WARN(!retry, "loop in pipe configuration computation\n")) {
12568 ret = -EINVAL;
12569 goto fail;
12570 }
12571
12572 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
12573 retry = false;
12574 goto encoder_retry;
12575 }
12576
e8fa4270
DV
12577 /* Dithering seems to not pass-through bits correctly when it should, so
12578 * only enable it on 6bpc panels. */
12579 pipe_config->dither = pipe_config->pipe_bpp == 6*3;
62f0ace5 12580 DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n",
d328c9d7 12581 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
4e53c2e0 12582
7758a113 12583fail:
548ee15b 12584 return ret;
ee7b9f93 12585}
47f1c6c9 12586
ea9d758d 12587static void
4740b0f2 12588intel_modeset_update_crtc_state(struct drm_atomic_state *state)
ea9d758d 12589{
0a9ab303
ACO
12590 struct drm_crtc *crtc;
12591 struct drm_crtc_state *crtc_state;
8a75d157 12592 int i;
ea9d758d 12593
7668851f 12594 /* Double check state. */
8a75d157 12595 for_each_crtc_in_state(state, crtc, crtc_state, i) {
3cb480bc 12596 to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state);
fc467a22
ML
12597
12598 /* Update hwmode for vblank functions */
12599 if (crtc->state->active)
12600 crtc->hwmode = crtc->state->adjusted_mode;
12601 else
12602 crtc->hwmode.crtc_clock = 0;
61067a5e
ML
12603
12604 /*
12605 * Update legacy state to satisfy fbc code. This can
12606 * be removed when fbc uses the atomic state.
12607 */
12608 if (drm_atomic_get_existing_plane_state(state, crtc->primary)) {
12609 struct drm_plane_state *plane_state = crtc->primary->state;
12610
12611 crtc->primary->fb = plane_state->fb;
12612 crtc->x = plane_state->src_x >> 16;
12613 crtc->y = plane_state->src_y >> 16;
12614 }
ea9d758d 12615 }
ea9d758d
DV
12616}
12617
3bd26263 12618static bool intel_fuzzy_clock_check(int clock1, int clock2)
f1f644dc 12619{
3bd26263 12620 int diff;
f1f644dc
JB
12621
12622 if (clock1 == clock2)
12623 return true;
12624
12625 if (!clock1 || !clock2)
12626 return false;
12627
12628 diff = abs(clock1 - clock2);
12629
12630 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
12631 return true;
12632
12633 return false;
12634}
12635
25c5b266
DV
12636#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
12637 list_for_each_entry((intel_crtc), \
12638 &(dev)->mode_config.crtc_list, \
12639 base.head) \
95150bdf 12640 for_each_if (mask & (1 <<(intel_crtc)->pipe))
25c5b266 12641
cfb23ed6
ML
12642static bool
12643intel_compare_m_n(unsigned int m, unsigned int n,
12644 unsigned int m2, unsigned int n2,
12645 bool exact)
12646{
12647 if (m == m2 && n == n2)
12648 return true;
12649
12650 if (exact || !m || !n || !m2 || !n2)
12651 return false;
12652
12653 BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX);
12654
31d10b57
ML
12655 if (n > n2) {
12656 while (n > n2) {
cfb23ed6
ML
12657 m2 <<= 1;
12658 n2 <<= 1;
12659 }
31d10b57
ML
12660 } else if (n < n2) {
12661 while (n < n2) {
cfb23ed6
ML
12662 m <<= 1;
12663 n <<= 1;
12664 }
12665 }
12666
31d10b57
ML
12667 if (n != n2)
12668 return false;
12669
12670 return intel_fuzzy_clock_check(m, m2);
cfb23ed6
ML
12671}
12672
12673static bool
12674intel_compare_link_m_n(const struct intel_link_m_n *m_n,
12675 struct intel_link_m_n *m2_n2,
12676 bool adjust)
12677{
12678 if (m_n->tu == m2_n2->tu &&
12679 intel_compare_m_n(m_n->gmch_m, m_n->gmch_n,
12680 m2_n2->gmch_m, m2_n2->gmch_n, !adjust) &&
12681 intel_compare_m_n(m_n->link_m, m_n->link_n,
12682 m2_n2->link_m, m2_n2->link_n, !adjust)) {
12683 if (adjust)
12684 *m2_n2 = *m_n;
12685
12686 return true;
12687 }
12688
12689 return false;
12690}
12691
0e8ffe1b 12692static bool
2fa2fe9a 12693intel_pipe_config_compare(struct drm_device *dev,
5cec258b 12694 struct intel_crtc_state *current_config,
cfb23ed6
ML
12695 struct intel_crtc_state *pipe_config,
12696 bool adjust)
0e8ffe1b 12697{
cfb23ed6
ML
12698 bool ret = true;
12699
12700#define INTEL_ERR_OR_DBG_KMS(fmt, ...) \
12701 do { \
12702 if (!adjust) \
12703 DRM_ERROR(fmt, ##__VA_ARGS__); \
12704 else \
12705 DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \
12706 } while (0)
12707
66e985c0
DV
12708#define PIPE_CONF_CHECK_X(name) \
12709 if (current_config->name != pipe_config->name) { \
cfb23ed6 12710 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
66e985c0
DV
12711 "(expected 0x%08x, found 0x%08x)\n", \
12712 current_config->name, \
12713 pipe_config->name); \
cfb23ed6 12714 ret = false; \
66e985c0
DV
12715 }
12716
08a24034
DV
12717#define PIPE_CONF_CHECK_I(name) \
12718 if (current_config->name != pipe_config->name) { \
cfb23ed6 12719 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
08a24034
DV
12720 "(expected %i, found %i)\n", \
12721 current_config->name, \
12722 pipe_config->name); \
cfb23ed6
ML
12723 ret = false; \
12724 }
12725
8106ddbd
ACO
12726#define PIPE_CONF_CHECK_P(name) \
12727 if (current_config->name != pipe_config->name) { \
12728 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12729 "(expected %p, found %p)\n", \
12730 current_config->name, \
12731 pipe_config->name); \
12732 ret = false; \
12733 }
12734
cfb23ed6
ML
12735#define PIPE_CONF_CHECK_M_N(name) \
12736 if (!intel_compare_link_m_n(&current_config->name, \
12737 &pipe_config->name,\
12738 adjust)) { \
12739 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12740 "(expected tu %i gmch %i/%i link %i/%i, " \
12741 "found tu %i, gmch %i/%i link %i/%i)\n", \
12742 current_config->name.tu, \
12743 current_config->name.gmch_m, \
12744 current_config->name.gmch_n, \
12745 current_config->name.link_m, \
12746 current_config->name.link_n, \
12747 pipe_config->name.tu, \
12748 pipe_config->name.gmch_m, \
12749 pipe_config->name.gmch_n, \
12750 pipe_config->name.link_m, \
12751 pipe_config->name.link_n); \
12752 ret = false; \
12753 }
12754
55c561a7
DV
12755/* This is required for BDW+ where there is only one set of registers for
12756 * switching between high and low RR.
12757 * This macro can be used whenever a comparison has to be made between one
12758 * hw state and multiple sw state variables.
12759 */
cfb23ed6
ML
12760#define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \
12761 if (!intel_compare_link_m_n(&current_config->name, \
12762 &pipe_config->name, adjust) && \
12763 !intel_compare_link_m_n(&current_config->alt_name, \
12764 &pipe_config->name, adjust)) { \
12765 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12766 "(expected tu %i gmch %i/%i link %i/%i, " \
12767 "or tu %i gmch %i/%i link %i/%i, " \
12768 "found tu %i, gmch %i/%i link %i/%i)\n", \
12769 current_config->name.tu, \
12770 current_config->name.gmch_m, \
12771 current_config->name.gmch_n, \
12772 current_config->name.link_m, \
12773 current_config->name.link_n, \
12774 current_config->alt_name.tu, \
12775 current_config->alt_name.gmch_m, \
12776 current_config->alt_name.gmch_n, \
12777 current_config->alt_name.link_m, \
12778 current_config->alt_name.link_n, \
12779 pipe_config->name.tu, \
12780 pipe_config->name.gmch_m, \
12781 pipe_config->name.gmch_n, \
12782 pipe_config->name.link_m, \
12783 pipe_config->name.link_n); \
12784 ret = false; \
88adfff1
DV
12785 }
12786
1bd1bd80
DV
12787#define PIPE_CONF_CHECK_FLAGS(name, mask) \
12788 if ((current_config->name ^ pipe_config->name) & (mask)) { \
cfb23ed6 12789 INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \
1bd1bd80
DV
12790 "(expected %i, found %i)\n", \
12791 current_config->name & (mask), \
12792 pipe_config->name & (mask)); \
cfb23ed6 12793 ret = false; \
1bd1bd80
DV
12794 }
12795
5e550656
VS
12796#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
12797 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
cfb23ed6 12798 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
5e550656
VS
12799 "(expected %i, found %i)\n", \
12800 current_config->name, \
12801 pipe_config->name); \
cfb23ed6 12802 ret = false; \
5e550656
VS
12803 }
12804
bb760063
DV
12805#define PIPE_CONF_QUIRK(quirk) \
12806 ((current_config->quirks | pipe_config->quirks) & (quirk))
12807
eccb140b
DV
12808 PIPE_CONF_CHECK_I(cpu_transcoder);
12809
08a24034
DV
12810 PIPE_CONF_CHECK_I(has_pch_encoder);
12811 PIPE_CONF_CHECK_I(fdi_lanes);
cfb23ed6 12812 PIPE_CONF_CHECK_M_N(fdi_m_n);
08a24034 12813
eb14cb74 12814 PIPE_CONF_CHECK_I(has_dp_encoder);
90a6b7b0 12815 PIPE_CONF_CHECK_I(lane_count);
b95af8be
VK
12816
12817 if (INTEL_INFO(dev)->gen < 8) {
cfb23ed6
ML
12818 PIPE_CONF_CHECK_M_N(dp_m_n);
12819
cfb23ed6
ML
12820 if (current_config->has_drrs)
12821 PIPE_CONF_CHECK_M_N(dp_m2_n2);
12822 } else
12823 PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2);
eb14cb74 12824
a65347ba
JN
12825 PIPE_CONF_CHECK_I(has_dsi_encoder);
12826
2d112de7
ACO
12827 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
12828 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
12829 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
12830 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
12831 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
12832 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
1bd1bd80 12833
2d112de7
ACO
12834 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
12835 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
12836 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
12837 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
12838 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
12839 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
1bd1bd80 12840
c93f54cf 12841 PIPE_CONF_CHECK_I(pixel_multiplier);
6897b4b5 12842 PIPE_CONF_CHECK_I(has_hdmi_sink);
b5a9fa09 12843 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
666a4537 12844 IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
b5a9fa09 12845 PIPE_CONF_CHECK_I(limited_color_range);
e43823ec 12846 PIPE_CONF_CHECK_I(has_infoframe);
6c49f241 12847
9ed109a7
DV
12848 PIPE_CONF_CHECK_I(has_audio);
12849
2d112de7 12850 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
1bd1bd80
DV
12851 DRM_MODE_FLAG_INTERLACE);
12852
bb760063 12853 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
2d112de7 12854 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12855 DRM_MODE_FLAG_PHSYNC);
2d112de7 12856 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12857 DRM_MODE_FLAG_NHSYNC);
2d112de7 12858 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12859 DRM_MODE_FLAG_PVSYNC);
2d112de7 12860 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063
DV
12861 DRM_MODE_FLAG_NVSYNC);
12862 }
045ac3b5 12863
333b8ca8 12864 PIPE_CONF_CHECK_X(gmch_pfit.control);
e2ff2d4a
DV
12865 /* pfit ratios are autocomputed by the hw on gen4+ */
12866 if (INTEL_INFO(dev)->gen < 4)
7f7d8dd6 12867 PIPE_CONF_CHECK_X(gmch_pfit.pgm_ratios);
333b8ca8 12868 PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits);
9953599b 12869
bfd16b2a
ML
12870 if (!adjust) {
12871 PIPE_CONF_CHECK_I(pipe_src_w);
12872 PIPE_CONF_CHECK_I(pipe_src_h);
12873
12874 PIPE_CONF_CHECK_I(pch_pfit.enabled);
12875 if (current_config->pch_pfit.enabled) {
12876 PIPE_CONF_CHECK_X(pch_pfit.pos);
12877 PIPE_CONF_CHECK_X(pch_pfit.size);
12878 }
2fa2fe9a 12879
7aefe2b5
ML
12880 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
12881 }
a1b2278e 12882
e59150dc
JB
12883 /* BDW+ don't expose a synchronous way to read the state */
12884 if (IS_HASWELL(dev))
12885 PIPE_CONF_CHECK_I(ips_enabled);
42db64ef 12886
282740f7
VS
12887 PIPE_CONF_CHECK_I(double_wide);
12888
26804afd
DV
12889 PIPE_CONF_CHECK_X(ddi_pll_sel);
12890
8106ddbd 12891 PIPE_CONF_CHECK_P(shared_dpll);
66e985c0 12892 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
8bcc2795 12893 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
66e985c0
DV
12894 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
12895 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
d452c5b6 12896 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
00490c22 12897 PIPE_CONF_CHECK_X(dpll_hw_state.spll);
3f4cd19f
DL
12898 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
12899 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
12900 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
c0d43d62 12901
47eacbab
VS
12902 PIPE_CONF_CHECK_X(dsi_pll.ctrl);
12903 PIPE_CONF_CHECK_X(dsi_pll.div);
12904
42571aef
VS
12905 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
12906 PIPE_CONF_CHECK_I(pipe_bpp);
12907
2d112de7 12908 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
a9a7e98a 12909 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
5e550656 12910
66e985c0 12911#undef PIPE_CONF_CHECK_X
08a24034 12912#undef PIPE_CONF_CHECK_I
8106ddbd 12913#undef PIPE_CONF_CHECK_P
1bd1bd80 12914#undef PIPE_CONF_CHECK_FLAGS
5e550656 12915#undef PIPE_CONF_CHECK_CLOCK_FUZZY
bb760063 12916#undef PIPE_CONF_QUIRK
cfb23ed6 12917#undef INTEL_ERR_OR_DBG_KMS
88adfff1 12918
cfb23ed6 12919 return ret;
0e8ffe1b
DV
12920}
12921
e3b247da
VS
12922static void intel_pipe_config_sanity_check(struct drm_i915_private *dev_priv,
12923 const struct intel_crtc_state *pipe_config)
12924{
12925 if (pipe_config->has_pch_encoder) {
21a727b3 12926 int fdi_dotclock = intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config),
e3b247da
VS
12927 &pipe_config->fdi_m_n);
12928 int dotclock = pipe_config->base.adjusted_mode.crtc_clock;
12929
12930 /*
12931 * FDI already provided one idea for the dotclock.
12932 * Yell if the encoder disagrees.
12933 */
12934 WARN(!intel_fuzzy_clock_check(fdi_dotclock, dotclock),
12935 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
12936 fdi_dotclock, dotclock);
12937 }
12938}
12939
c0ead703
ML
12940static void verify_wm_state(struct drm_crtc *crtc,
12941 struct drm_crtc_state *new_state)
08db6652 12942{
e7c84544 12943 struct drm_device *dev = crtc->dev;
08db6652
DL
12944 struct drm_i915_private *dev_priv = dev->dev_private;
12945 struct skl_ddb_allocation hw_ddb, *sw_ddb;
e7c84544
ML
12946 struct skl_ddb_entry *hw_entry, *sw_entry;
12947 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12948 const enum pipe pipe = intel_crtc->pipe;
08db6652
DL
12949 int plane;
12950
e7c84544 12951 if (INTEL_INFO(dev)->gen < 9 || !new_state->active)
08db6652
DL
12952 return;
12953
12954 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
12955 sw_ddb = &dev_priv->wm.skl_hw.ddb;
12956
e7c84544
ML
12957 /* planes */
12958 for_each_plane(dev_priv, pipe, plane) {
12959 hw_entry = &hw_ddb.plane[pipe][plane];
12960 sw_entry = &sw_ddb->plane[pipe][plane];
08db6652 12961
e7c84544 12962 if (skl_ddb_entry_equal(hw_entry, sw_entry))
08db6652
DL
12963 continue;
12964
e7c84544
ML
12965 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
12966 "(expected (%u,%u), found (%u,%u))\n",
12967 pipe_name(pipe), plane + 1,
12968 sw_entry->start, sw_entry->end,
12969 hw_entry->start, hw_entry->end);
12970 }
08db6652 12971
e7c84544
ML
12972 /* cursor */
12973 hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR];
12974 sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR];
08db6652 12975
e7c84544 12976 if (!skl_ddb_entry_equal(hw_entry, sw_entry)) {
08db6652
DL
12977 DRM_ERROR("mismatch in DDB state pipe %c cursor "
12978 "(expected (%u,%u), found (%u,%u))\n",
12979 pipe_name(pipe),
12980 sw_entry->start, sw_entry->end,
12981 hw_entry->start, hw_entry->end);
12982 }
12983}
12984
91d1b4bd 12985static void
c0ead703 12986verify_connector_state(struct drm_device *dev, struct drm_crtc *crtc)
8af6cf88 12987{
35dd3c64 12988 struct drm_connector *connector;
8af6cf88 12989
e7c84544 12990 drm_for_each_connector(connector, dev) {
35dd3c64
ML
12991 struct drm_encoder *encoder = connector->encoder;
12992 struct drm_connector_state *state = connector->state;
ad3c558f 12993
e7c84544
ML
12994 if (state->crtc != crtc)
12995 continue;
12996
5a21b665 12997 intel_connector_verify_state(to_intel_connector(connector));
8af6cf88 12998
ad3c558f 12999 I915_STATE_WARN(state->best_encoder != encoder,
35dd3c64 13000 "connector's atomic encoder doesn't match legacy encoder\n");
8af6cf88 13001 }
91d1b4bd
DV
13002}
13003
13004static void
c0ead703 13005verify_encoder_state(struct drm_device *dev)
91d1b4bd
DV
13006{
13007 struct intel_encoder *encoder;
13008 struct intel_connector *connector;
8af6cf88 13009
b2784e15 13010 for_each_intel_encoder(dev, encoder) {
8af6cf88 13011 bool enabled = false;
4d20cd86 13012 enum pipe pipe;
8af6cf88
DV
13013
13014 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
13015 encoder->base.base.id,
8e329a03 13016 encoder->base.name);
8af6cf88 13017
3a3371ff 13018 for_each_intel_connector(dev, connector) {
4d20cd86 13019 if (connector->base.state->best_encoder != &encoder->base)
8af6cf88
DV
13020 continue;
13021 enabled = true;
ad3c558f
ML
13022
13023 I915_STATE_WARN(connector->base.state->crtc !=
13024 encoder->base.crtc,
13025 "connector's crtc doesn't match encoder crtc\n");
8af6cf88 13026 }
0e32b39c 13027
e2c719b7 13028 I915_STATE_WARN(!!encoder->base.crtc != enabled,
8af6cf88
DV
13029 "encoder's enabled state mismatch "
13030 "(expected %i, found %i)\n",
13031 !!encoder->base.crtc, enabled);
7c60d198
ML
13032
13033 if (!encoder->base.crtc) {
4d20cd86 13034 bool active;
7c60d198 13035
4d20cd86
ML
13036 active = encoder->get_hw_state(encoder, &pipe);
13037 I915_STATE_WARN(active,
13038 "encoder detached but still enabled on pipe %c.\n",
13039 pipe_name(pipe));
7c60d198 13040 }
8af6cf88 13041 }
91d1b4bd
DV
13042}
13043
13044static void
c0ead703
ML
13045verify_crtc_state(struct drm_crtc *crtc,
13046 struct drm_crtc_state *old_crtc_state,
13047 struct drm_crtc_state *new_crtc_state)
91d1b4bd 13048{
e7c84544 13049 struct drm_device *dev = crtc->dev;
fbee40df 13050 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd 13051 struct intel_encoder *encoder;
e7c84544
ML
13052 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13053 struct intel_crtc_state *pipe_config, *sw_config;
13054 struct drm_atomic_state *old_state;
13055 bool active;
045ac3b5 13056
e7c84544
ML
13057 old_state = old_crtc_state->state;
13058 __drm_atomic_helper_crtc_destroy_state(crtc, old_crtc_state);
13059 pipe_config = to_intel_crtc_state(old_crtc_state);
13060 memset(pipe_config, 0, sizeof(*pipe_config));
13061 pipe_config->base.crtc = crtc;
13062 pipe_config->base.state = old_state;
8af6cf88 13063
e7c84544 13064 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
8af6cf88 13065
e7c84544 13066 active = dev_priv->display.get_pipe_config(intel_crtc, pipe_config);
d62cf62a 13067
e7c84544
ML
13068 /* hw state is inconsistent with the pipe quirk */
13069 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
13070 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
13071 active = new_crtc_state->active;
6c49f241 13072
e7c84544
ML
13073 I915_STATE_WARN(new_crtc_state->active != active,
13074 "crtc active state doesn't match with hw state "
13075 "(expected %i, found %i)\n", new_crtc_state->active, active);
0e8ffe1b 13076
e7c84544
ML
13077 I915_STATE_WARN(intel_crtc->active != new_crtc_state->active,
13078 "transitional active state does not match atomic hw state "
13079 "(expected %i, found %i)\n", new_crtc_state->active, intel_crtc->active);
4d20cd86 13080
e7c84544
ML
13081 for_each_encoder_on_crtc(dev, crtc, encoder) {
13082 enum pipe pipe;
4d20cd86 13083
e7c84544
ML
13084 active = encoder->get_hw_state(encoder, &pipe);
13085 I915_STATE_WARN(active != new_crtc_state->active,
13086 "[ENCODER:%i] active %i with crtc active %i\n",
13087 encoder->base.base.id, active, new_crtc_state->active);
4d20cd86 13088
e7c84544
ML
13089 I915_STATE_WARN(active && intel_crtc->pipe != pipe,
13090 "Encoder connected to wrong pipe %c\n",
13091 pipe_name(pipe));
4d20cd86 13092
e7c84544
ML
13093 if (active)
13094 encoder->get_config(encoder, pipe_config);
13095 }
53d9f4e9 13096
e7c84544
ML
13097 if (!new_crtc_state->active)
13098 return;
cfb23ed6 13099
e7c84544 13100 intel_pipe_config_sanity_check(dev_priv, pipe_config);
e3b247da 13101
e7c84544
ML
13102 sw_config = to_intel_crtc_state(crtc->state);
13103 if (!intel_pipe_config_compare(dev, sw_config,
13104 pipe_config, false)) {
13105 I915_STATE_WARN(1, "pipe state doesn't match!\n");
13106 intel_dump_pipe_config(intel_crtc, pipe_config,
13107 "[hw state]");
13108 intel_dump_pipe_config(intel_crtc, sw_config,
13109 "[sw state]");
8af6cf88
DV
13110 }
13111}
13112
91d1b4bd 13113static void
c0ead703
ML
13114verify_single_dpll_state(struct drm_i915_private *dev_priv,
13115 struct intel_shared_dpll *pll,
13116 struct drm_crtc *crtc,
13117 struct drm_crtc_state *new_state)
91d1b4bd 13118{
91d1b4bd 13119 struct intel_dpll_hw_state dpll_hw_state;
e7c84544
ML
13120 unsigned crtc_mask;
13121 bool active;
5358901f 13122
e7c84544 13123 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
5358901f 13124
e7c84544 13125 DRM_DEBUG_KMS("%s\n", pll->name);
5358901f 13126
e7c84544 13127 active = pll->funcs.get_hw_state(dev_priv, pll, &dpll_hw_state);
5358901f 13128
e7c84544
ML
13129 if (!(pll->flags & INTEL_DPLL_ALWAYS_ON)) {
13130 I915_STATE_WARN(!pll->on && pll->active_mask,
13131 "pll in active use but not on in sw tracking\n");
13132 I915_STATE_WARN(pll->on && !pll->active_mask,
13133 "pll is on but not used by any active crtc\n");
13134 I915_STATE_WARN(pll->on != active,
13135 "pll on state mismatch (expected %i, found %i)\n",
13136 pll->on, active);
13137 }
5358901f 13138
e7c84544 13139 if (!crtc) {
2dd66ebd 13140 I915_STATE_WARN(pll->active_mask & ~pll->config.crtc_mask,
e7c84544
ML
13141 "more active pll users than references: %x vs %x\n",
13142 pll->active_mask, pll->config.crtc_mask);
5358901f 13143
e7c84544
ML
13144 return;
13145 }
13146
13147 crtc_mask = 1 << drm_crtc_index(crtc);
13148
13149 if (new_state->active)
13150 I915_STATE_WARN(!(pll->active_mask & crtc_mask),
13151 "pll active mismatch (expected pipe %c in active mask 0x%02x)\n",
13152 pipe_name(drm_crtc_index(crtc)), pll->active_mask);
13153 else
13154 I915_STATE_WARN(pll->active_mask & crtc_mask,
13155 "pll active mismatch (didn't expect pipe %c in active mask 0x%02x)\n",
13156 pipe_name(drm_crtc_index(crtc)), pll->active_mask);
2dd66ebd 13157
e7c84544
ML
13158 I915_STATE_WARN(!(pll->config.crtc_mask & crtc_mask),
13159 "pll enabled crtcs mismatch (expected 0x%x in 0x%02x)\n",
13160 crtc_mask, pll->config.crtc_mask);
66e985c0 13161
e7c84544
ML
13162 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state,
13163 &dpll_hw_state,
13164 sizeof(dpll_hw_state)),
13165 "pll hw state mismatch\n");
13166}
13167
13168static void
c0ead703
ML
13169verify_shared_dpll_state(struct drm_device *dev, struct drm_crtc *crtc,
13170 struct drm_crtc_state *old_crtc_state,
13171 struct drm_crtc_state *new_crtc_state)
e7c84544
ML
13172{
13173 struct drm_i915_private *dev_priv = dev->dev_private;
13174 struct intel_crtc_state *old_state = to_intel_crtc_state(old_crtc_state);
13175 struct intel_crtc_state *new_state = to_intel_crtc_state(new_crtc_state);
13176
13177 if (new_state->shared_dpll)
c0ead703 13178 verify_single_dpll_state(dev_priv, new_state->shared_dpll, crtc, new_crtc_state);
e7c84544
ML
13179
13180 if (old_state->shared_dpll &&
13181 old_state->shared_dpll != new_state->shared_dpll) {
13182 unsigned crtc_mask = 1 << drm_crtc_index(crtc);
13183 struct intel_shared_dpll *pll = old_state->shared_dpll;
13184
13185 I915_STATE_WARN(pll->active_mask & crtc_mask,
13186 "pll active mismatch (didn't expect pipe %c in active mask)\n",
13187 pipe_name(drm_crtc_index(crtc)));
13188 I915_STATE_WARN(pll->config.crtc_mask & crtc_mask,
13189 "pll enabled crtcs mismatch (found %x in enabled mask)\n",
13190 pipe_name(drm_crtc_index(crtc)));
5358901f 13191 }
8af6cf88
DV
13192}
13193
e7c84544 13194static void
c0ead703 13195intel_modeset_verify_crtc(struct drm_crtc *crtc,
e7c84544
ML
13196 struct drm_crtc_state *old_state,
13197 struct drm_crtc_state *new_state)
13198{
5a21b665
DV
13199 if (!needs_modeset(new_state) &&
13200 !to_intel_crtc_state(new_state)->update_pipe)
13201 return;
13202
c0ead703 13203 verify_wm_state(crtc, new_state);
5a21b665 13204 verify_connector_state(crtc->dev, crtc);
c0ead703
ML
13205 verify_crtc_state(crtc, old_state, new_state);
13206 verify_shared_dpll_state(crtc->dev, crtc, old_state, new_state);
e7c84544
ML
13207}
13208
13209static void
c0ead703 13210verify_disabled_dpll_state(struct drm_device *dev)
e7c84544
ML
13211{
13212 struct drm_i915_private *dev_priv = dev->dev_private;
13213 int i;
13214
13215 for (i = 0; i < dev_priv->num_shared_dpll; i++)
c0ead703 13216 verify_single_dpll_state(dev_priv, &dev_priv->shared_dplls[i], NULL, NULL);
e7c84544
ML
13217}
13218
13219static void
c0ead703 13220intel_modeset_verify_disabled(struct drm_device *dev)
e7c84544 13221{
c0ead703
ML
13222 verify_encoder_state(dev);
13223 verify_connector_state(dev, NULL);
13224 verify_disabled_dpll_state(dev);
e7c84544
ML
13225}
13226
80715b2f
VS
13227static void update_scanline_offset(struct intel_crtc *crtc)
13228{
13229 struct drm_device *dev = crtc->base.dev;
13230
13231 /*
13232 * The scanline counter increments at the leading edge of hsync.
13233 *
13234 * On most platforms it starts counting from vtotal-1 on the
13235 * first active line. That means the scanline counter value is
13236 * always one less than what we would expect. Ie. just after
13237 * start of vblank, which also occurs at start of hsync (on the
13238 * last active line), the scanline counter will read vblank_start-1.
13239 *
13240 * On gen2 the scanline counter starts counting from 1 instead
13241 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
13242 * to keep the value positive), instead of adding one.
13243 *
13244 * On HSW+ the behaviour of the scanline counter depends on the output
13245 * type. For DP ports it behaves like most other platforms, but on HDMI
13246 * there's an extra 1 line difference. So we need to add two instead of
13247 * one to the value.
13248 */
13249 if (IS_GEN2(dev)) {
124abe07 13250 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
80715b2f
VS
13251 int vtotal;
13252
124abe07
VS
13253 vtotal = adjusted_mode->crtc_vtotal;
13254 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
80715b2f
VS
13255 vtotal /= 2;
13256
13257 crtc->scanline_offset = vtotal - 1;
13258 } else if (HAS_DDI(dev) &&
409ee761 13259 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
80715b2f
VS
13260 crtc->scanline_offset = 2;
13261 } else
13262 crtc->scanline_offset = 1;
13263}
13264
ad421372 13265static void intel_modeset_clear_plls(struct drm_atomic_state *state)
ed6739ef 13266{
225da59b 13267 struct drm_device *dev = state->dev;
ed6739ef 13268 struct drm_i915_private *dev_priv = to_i915(dev);
ad421372 13269 struct intel_shared_dpll_config *shared_dpll = NULL;
0a9ab303
ACO
13270 struct drm_crtc *crtc;
13271 struct drm_crtc_state *crtc_state;
0a9ab303 13272 int i;
ed6739ef
ACO
13273
13274 if (!dev_priv->display.crtc_compute_clock)
ad421372 13275 return;
ed6739ef 13276
0a9ab303 13277 for_each_crtc_in_state(state, crtc, crtc_state, i) {
fb1a38a9 13278 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8106ddbd
ACO
13279 struct intel_shared_dpll *old_dpll =
13280 to_intel_crtc_state(crtc->state)->shared_dpll;
0a9ab303 13281
fb1a38a9 13282 if (!needs_modeset(crtc_state))
225da59b
ACO
13283 continue;
13284
8106ddbd 13285 to_intel_crtc_state(crtc_state)->shared_dpll = NULL;
fb1a38a9 13286
8106ddbd 13287 if (!old_dpll)
fb1a38a9 13288 continue;
0a9ab303 13289
ad421372
ML
13290 if (!shared_dpll)
13291 shared_dpll = intel_atomic_get_shared_dpll_state(state);
ed6739ef 13292
8106ddbd 13293 intel_shared_dpll_config_put(shared_dpll, old_dpll, intel_crtc);
ad421372 13294 }
ed6739ef
ACO
13295}
13296
99d736a2
ML
13297/*
13298 * This implements the workaround described in the "notes" section of the mode
13299 * set sequence documentation. When going from no pipes or single pipe to
13300 * multiple pipes, and planes are enabled after the pipe, we need to wait at
13301 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
13302 */
13303static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state)
13304{
13305 struct drm_crtc_state *crtc_state;
13306 struct intel_crtc *intel_crtc;
13307 struct drm_crtc *crtc;
13308 struct intel_crtc_state *first_crtc_state = NULL;
13309 struct intel_crtc_state *other_crtc_state = NULL;
13310 enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE;
13311 int i;
13312
13313 /* look at all crtc's that are going to be enabled in during modeset */
13314 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13315 intel_crtc = to_intel_crtc(crtc);
13316
13317 if (!crtc_state->active || !needs_modeset(crtc_state))
13318 continue;
13319
13320 if (first_crtc_state) {
13321 other_crtc_state = to_intel_crtc_state(crtc_state);
13322 break;
13323 } else {
13324 first_crtc_state = to_intel_crtc_state(crtc_state);
13325 first_pipe = intel_crtc->pipe;
13326 }
13327 }
13328
13329 /* No workaround needed? */
13330 if (!first_crtc_state)
13331 return 0;
13332
13333 /* w/a possibly needed, check how many crtc's are already enabled. */
13334 for_each_intel_crtc(state->dev, intel_crtc) {
13335 struct intel_crtc_state *pipe_config;
13336
13337 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
13338 if (IS_ERR(pipe_config))
13339 return PTR_ERR(pipe_config);
13340
13341 pipe_config->hsw_workaround_pipe = INVALID_PIPE;
13342
13343 if (!pipe_config->base.active ||
13344 needs_modeset(&pipe_config->base))
13345 continue;
13346
13347 /* 2 or more enabled crtcs means no need for w/a */
13348 if (enabled_pipe != INVALID_PIPE)
13349 return 0;
13350
13351 enabled_pipe = intel_crtc->pipe;
13352 }
13353
13354 if (enabled_pipe != INVALID_PIPE)
13355 first_crtc_state->hsw_workaround_pipe = enabled_pipe;
13356 else if (other_crtc_state)
13357 other_crtc_state->hsw_workaround_pipe = first_pipe;
13358
13359 return 0;
13360}
13361
27c329ed
ML
13362static int intel_modeset_all_pipes(struct drm_atomic_state *state)
13363{
13364 struct drm_crtc *crtc;
13365 struct drm_crtc_state *crtc_state;
13366 int ret = 0;
13367
13368 /* add all active pipes to the state */
13369 for_each_crtc(state->dev, crtc) {
13370 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13371 if (IS_ERR(crtc_state))
13372 return PTR_ERR(crtc_state);
13373
13374 if (!crtc_state->active || needs_modeset(crtc_state))
13375 continue;
13376
13377 crtc_state->mode_changed = true;
13378
13379 ret = drm_atomic_add_affected_connectors(state, crtc);
13380 if (ret)
13381 break;
13382
13383 ret = drm_atomic_add_affected_planes(state, crtc);
13384 if (ret)
13385 break;
13386 }
13387
13388 return ret;
13389}
13390
c347a676 13391static int intel_modeset_checks(struct drm_atomic_state *state)
054518dd 13392{
565602d7
ML
13393 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
13394 struct drm_i915_private *dev_priv = state->dev->dev_private;
13395 struct drm_crtc *crtc;
13396 struct drm_crtc_state *crtc_state;
13397 int ret = 0, i;
054518dd 13398
b359283a
ML
13399 if (!check_digital_port_conflicts(state)) {
13400 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
13401 return -EINVAL;
13402 }
13403
565602d7
ML
13404 intel_state->modeset = true;
13405 intel_state->active_crtcs = dev_priv->active_crtcs;
13406
13407 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13408 if (crtc_state->active)
13409 intel_state->active_crtcs |= 1 << i;
13410 else
13411 intel_state->active_crtcs &= ~(1 << i);
8b4a7d05
MR
13412
13413 if (crtc_state->active != crtc->state->active)
13414 intel_state->active_pipe_changes |= drm_crtc_mask(crtc);
565602d7
ML
13415 }
13416
054518dd
ACO
13417 /*
13418 * See if the config requires any additional preparation, e.g.
13419 * to adjust global state with pipes off. We need to do this
13420 * here so we can get the modeset_pipe updated config for the new
13421 * mode set on this crtc. For other crtcs we need to use the
13422 * adjusted_mode bits in the crtc directly.
13423 */
27c329ed 13424 if (dev_priv->display.modeset_calc_cdclk) {
c89e39f3 13425 if (!intel_state->cdclk_pll_vco)
63911d72 13426 intel_state->cdclk_pll_vco = dev_priv->cdclk_pll.vco;
b2045352
VS
13427 if (!intel_state->cdclk_pll_vco)
13428 intel_state->cdclk_pll_vco = dev_priv->skl_preferred_vco_freq;
c89e39f3 13429
27c329ed 13430 ret = dev_priv->display.modeset_calc_cdclk(state);
c89e39f3
CT
13431 if (ret < 0)
13432 return ret;
27c329ed 13433
c89e39f3 13434 if (intel_state->dev_cdclk != dev_priv->cdclk_freq ||
63911d72 13435 intel_state->cdclk_pll_vco != dev_priv->cdclk_pll.vco)
27c329ed
ML
13436 ret = intel_modeset_all_pipes(state);
13437
13438 if (ret < 0)
054518dd 13439 return ret;
e8788cbc
ML
13440
13441 DRM_DEBUG_KMS("New cdclk calculated to be atomic %u, actual %u\n",
13442 intel_state->cdclk, intel_state->dev_cdclk);
27c329ed 13443 } else
1a617b77 13444 to_intel_atomic_state(state)->cdclk = dev_priv->atomic_cdclk_freq;
054518dd 13445
ad421372 13446 intel_modeset_clear_plls(state);
054518dd 13447
565602d7 13448 if (IS_HASWELL(dev_priv))
ad421372 13449 return haswell_mode_set_planes_workaround(state);
99d736a2 13450
ad421372 13451 return 0;
c347a676
ACO
13452}
13453
aa363136
MR
13454/*
13455 * Handle calculation of various watermark data at the end of the atomic check
13456 * phase. The code here should be run after the per-crtc and per-plane 'check'
13457 * handlers to ensure that all derived state has been updated.
13458 */
55994c2c 13459static int calc_watermark_data(struct drm_atomic_state *state)
aa363136
MR
13460{
13461 struct drm_device *dev = state->dev;
98d39494 13462 struct drm_i915_private *dev_priv = to_i915(dev);
98d39494
MR
13463
13464 /* Is there platform-specific watermark information to calculate? */
13465 if (dev_priv->display.compute_global_watermarks)
55994c2c
MR
13466 return dev_priv->display.compute_global_watermarks(state);
13467
13468 return 0;
aa363136
MR
13469}
13470
74c090b1
ML
13471/**
13472 * intel_atomic_check - validate state object
13473 * @dev: drm device
13474 * @state: state to validate
13475 */
13476static int intel_atomic_check(struct drm_device *dev,
13477 struct drm_atomic_state *state)
c347a676 13478{
dd8b3bdb 13479 struct drm_i915_private *dev_priv = to_i915(dev);
aa363136 13480 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
c347a676
ACO
13481 struct drm_crtc *crtc;
13482 struct drm_crtc_state *crtc_state;
13483 int ret, i;
61333b60 13484 bool any_ms = false;
c347a676 13485
74c090b1 13486 ret = drm_atomic_helper_check_modeset(dev, state);
054518dd
ACO
13487 if (ret)
13488 return ret;
13489
c347a676 13490 for_each_crtc_in_state(state, crtc, crtc_state, i) {
cfb23ed6
ML
13491 struct intel_crtc_state *pipe_config =
13492 to_intel_crtc_state(crtc_state);
1ed51de9
DV
13493
13494 /* Catch I915_MODE_FLAG_INHERITED */
13495 if (crtc_state->mode.private_flags != crtc->state->mode.private_flags)
13496 crtc_state->mode_changed = true;
cfb23ed6 13497
af4a879e 13498 if (!needs_modeset(crtc_state))
c347a676
ACO
13499 continue;
13500
af4a879e
DV
13501 if (!crtc_state->enable) {
13502 any_ms = true;
cfb23ed6 13503 continue;
af4a879e 13504 }
cfb23ed6 13505
26495481
DV
13506 /* FIXME: For only active_changed we shouldn't need to do any
13507 * state recomputation at all. */
13508
1ed51de9
DV
13509 ret = drm_atomic_add_affected_connectors(state, crtc);
13510 if (ret)
13511 return ret;
b359283a 13512
cfb23ed6 13513 ret = intel_modeset_pipe_config(crtc, pipe_config);
25aa1c39
ML
13514 if (ret) {
13515 intel_dump_pipe_config(to_intel_crtc(crtc),
13516 pipe_config, "[failed]");
c347a676 13517 return ret;
25aa1c39 13518 }
c347a676 13519
73831236 13520 if (i915.fastboot &&
dd8b3bdb 13521 intel_pipe_config_compare(dev,
cfb23ed6 13522 to_intel_crtc_state(crtc->state),
1ed51de9 13523 pipe_config, true)) {
26495481 13524 crtc_state->mode_changed = false;
bfd16b2a 13525 to_intel_crtc_state(crtc_state)->update_pipe = true;
26495481
DV
13526 }
13527
af4a879e 13528 if (needs_modeset(crtc_state))
26495481 13529 any_ms = true;
cfb23ed6 13530
af4a879e
DV
13531 ret = drm_atomic_add_affected_planes(state, crtc);
13532 if (ret)
13533 return ret;
61333b60 13534
26495481
DV
13535 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
13536 needs_modeset(crtc_state) ?
13537 "[modeset]" : "[fastset]");
c347a676
ACO
13538 }
13539
61333b60
ML
13540 if (any_ms) {
13541 ret = intel_modeset_checks(state);
13542
13543 if (ret)
13544 return ret;
27c329ed 13545 } else
dd8b3bdb 13546 intel_state->cdclk = dev_priv->cdclk_freq;
76305b1a 13547
dd8b3bdb 13548 ret = drm_atomic_helper_check_planes(dev, state);
aa363136
MR
13549 if (ret)
13550 return ret;
13551
f51be2e0 13552 intel_fbc_choose_crtc(dev_priv, state);
55994c2c 13553 return calc_watermark_data(state);
054518dd
ACO
13554}
13555
5008e874
ML
13556static int intel_atomic_prepare_commit(struct drm_device *dev,
13557 struct drm_atomic_state *state,
81072bfd 13558 bool nonblock)
5008e874 13559{
7580d774
ML
13560 struct drm_i915_private *dev_priv = dev->dev_private;
13561 struct drm_plane_state *plane_state;
5008e874 13562 struct drm_crtc_state *crtc_state;
7580d774 13563 struct drm_plane *plane;
5008e874
ML
13564 struct drm_crtc *crtc;
13565 int i, ret;
13566
5a21b665
DV
13567 if (nonblock) {
13568 DRM_DEBUG_KMS("i915 does not yet support nonblocking commit\n");
13569 return -EINVAL;
13570 }
a6747b73 13571
5a21b665
DV
13572 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13573 if (state->legacy_cursor_update)
a6747b73
ML
13574 continue;
13575
5a21b665
DV
13576 ret = intel_crtc_wait_for_pending_flips(crtc);
13577 if (ret)
13578 return ret;
5008e874 13579
5a21b665
DV
13580 if (atomic_read(&to_intel_crtc(crtc)->unpin_work_count) >= 2)
13581 flush_workqueue(dev_priv->wq);
d55dbd06
ML
13582 }
13583
f935675f
ML
13584 ret = mutex_lock_interruptible(&dev->struct_mutex);
13585 if (ret)
13586 return ret;
13587
5008e874 13588 ret = drm_atomic_helper_prepare_planes(dev, state);
f7e5838b 13589 mutex_unlock(&dev->struct_mutex);
7580d774 13590
21daaeee 13591 if (!ret && !nonblock) {
7580d774
ML
13592 for_each_plane_in_state(state, plane, plane_state, i) {
13593 struct intel_plane_state *intel_plane_state =
13594 to_intel_plane_state(plane_state);
13595
13596 if (!intel_plane_state->wait_req)
13597 continue;
13598
13599 ret = __i915_wait_request(intel_plane_state->wait_req,
299259a3 13600 true, NULL, NULL);
f7e5838b 13601 if (ret) {
f4457ae7
CW
13602 /* Any hang should be swallowed by the wait */
13603 WARN_ON(ret == -EIO);
f7e5838b
CW
13604 mutex_lock(&dev->struct_mutex);
13605 drm_atomic_helper_cleanup_planes(dev, state);
13606 mutex_unlock(&dev->struct_mutex);
7580d774 13607 break;
f7e5838b 13608 }
7580d774 13609 }
7580d774 13610 }
5008e874
ML
13611
13612 return ret;
13613}
13614
a2991414
ML
13615u32 intel_crtc_get_vblank_counter(struct intel_crtc *crtc)
13616{
13617 struct drm_device *dev = crtc->base.dev;
13618
13619 if (!dev->max_vblank_count)
13620 return drm_accurate_vblank_count(&crtc->base);
13621
13622 return dev->driver->get_vblank_counter(dev, crtc->pipe);
13623}
13624
5a21b665
DV
13625static void intel_atomic_wait_for_vblanks(struct drm_device *dev,
13626 struct drm_i915_private *dev_priv,
13627 unsigned crtc_mask)
e8861675 13628{
5a21b665
DV
13629 unsigned last_vblank_count[I915_MAX_PIPES];
13630 enum pipe pipe;
13631 int ret;
e8861675 13632
5a21b665
DV
13633 if (!crtc_mask)
13634 return;
e8861675 13635
5a21b665
DV
13636 for_each_pipe(dev_priv, pipe) {
13637 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
e8861675 13638
5a21b665 13639 if (!((1 << pipe) & crtc_mask))
e8861675
ML
13640 continue;
13641
5a21b665
DV
13642 ret = drm_crtc_vblank_get(crtc);
13643 if (WARN_ON(ret != 0)) {
13644 crtc_mask &= ~(1 << pipe);
13645 continue;
e8861675
ML
13646 }
13647
5a21b665 13648 last_vblank_count[pipe] = drm_crtc_vblank_count(crtc);
e8861675
ML
13649 }
13650
5a21b665
DV
13651 for_each_pipe(dev_priv, pipe) {
13652 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
13653 long lret;
e8861675 13654
5a21b665
DV
13655 if (!((1 << pipe) & crtc_mask))
13656 continue;
d55dbd06 13657
5a21b665
DV
13658 lret = wait_event_timeout(dev->vblank[pipe].queue,
13659 last_vblank_count[pipe] !=
13660 drm_crtc_vblank_count(crtc),
13661 msecs_to_jiffies(50));
d55dbd06 13662
5a21b665 13663 WARN(!lret, "pipe %c vblank wait timed out\n", pipe_name(pipe));
d55dbd06 13664
5a21b665 13665 drm_crtc_vblank_put(crtc);
d55dbd06
ML
13666 }
13667}
13668
5a21b665 13669static bool needs_vblank_wait(struct intel_crtc_state *crtc_state)
a6747b73 13670{
5a21b665
DV
13671 /* fb updated, need to unpin old fb */
13672 if (crtc_state->fb_changed)
13673 return true;
a6747b73 13674
5a21b665
DV
13675 /* wm changes, need vblank before final wm's */
13676 if (crtc_state->update_wm_post)
13677 return true;
a6747b73 13678
5a21b665
DV
13679 /*
13680 * cxsr is re-enabled after vblank.
13681 * This is already handled by crtc_state->update_wm_post,
13682 * but added for clarity.
13683 */
13684 if (crtc_state->disable_cxsr)
13685 return true;
a6747b73 13686
5a21b665 13687 return false;
e8861675
ML
13688}
13689
74c090b1
ML
13690/**
13691 * intel_atomic_commit - commit validated state object
13692 * @dev: DRM device
13693 * @state: the top-level driver state object
81072bfd 13694 * @nonblock: nonblocking commit
74c090b1
ML
13695 *
13696 * This function commits a top-level state object that has been validated
13697 * with drm_atomic_helper_check().
13698 *
13699 * FIXME: Atomic modeset support for i915 is not yet complete. At the moment
13700 * we can only handle plane-related operations and do not yet support
81072bfd 13701 * nonblocking commit.
74c090b1
ML
13702 *
13703 * RETURNS
13704 * Zero for success or -errno.
13705 */
13706static int intel_atomic_commit(struct drm_device *dev,
13707 struct drm_atomic_state *state,
81072bfd 13708 bool nonblock)
a6778b3c 13709{
565602d7 13710 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fbee40df 13711 struct drm_i915_private *dev_priv = dev->dev_private;
29ceb0e6 13712 struct drm_crtc_state *old_crtc_state;
7580d774 13713 struct drm_crtc *crtc;
5a21b665 13714 struct intel_crtc_state *intel_cstate;
565602d7 13715 int ret = 0, i;
5a21b665
DV
13716 bool hw_check = intel_state->modeset;
13717 unsigned long put_domains[I915_MAX_PIPES] = {};
13718 unsigned crtc_vblank_mask = 0;
a6778b3c 13719
81072bfd 13720 ret = intel_atomic_prepare_commit(dev, state, nonblock);
7580d774
ML
13721 if (ret) {
13722 DRM_DEBUG_ATOMIC("Preparing state failed with %i\n", ret);
d4afb8cc 13723 return ret;
7580d774 13724 }
d4afb8cc 13725
1c5e19f8 13726 drm_atomic_helper_swap_state(dev, state);
279e99d7 13727 dev_priv->wm.distrust_bios_wm = false;
734fa01f 13728 dev_priv->wm.skl_results = intel_state->wm_results;
a1475e77 13729 intel_shared_dpll_commit(state);
1c5e19f8 13730
565602d7
ML
13731 if (intel_state->modeset) {
13732 memcpy(dev_priv->min_pixclk, intel_state->min_pixclk,
13733 sizeof(intel_state->min_pixclk));
13734 dev_priv->active_crtcs = intel_state->active_crtcs;
1a617b77 13735 dev_priv->atomic_cdclk_freq = intel_state->cdclk;
5a21b665
DV
13736
13737 intel_display_power_get(dev_priv, POWER_DOMAIN_MODESET);
565602d7
ML
13738 }
13739
29ceb0e6 13740 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
a539205a
ML
13741 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13742
5a21b665
DV
13743 if (needs_modeset(crtc->state) ||
13744 to_intel_crtc_state(crtc->state)->update_pipe) {
13745 hw_check = true;
13746
13747 put_domains[to_intel_crtc(crtc)->pipe] =
13748 modeset_get_crtc_power_domains(crtc,
13749 to_intel_crtc_state(crtc->state));
13750 }
13751
61333b60
ML
13752 if (!needs_modeset(crtc->state))
13753 continue;
13754
29ceb0e6 13755 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state));
460da916 13756
29ceb0e6
VS
13757 if (old_crtc_state->active) {
13758 intel_crtc_disable_planes(crtc, old_crtc_state->plane_mask);
a539205a 13759 dev_priv->display.crtc_disable(crtc);
eddfcbcd 13760 intel_crtc->active = false;
58f9c0bc 13761 intel_fbc_disable(intel_crtc);
eddfcbcd 13762 intel_disable_shared_dpll(intel_crtc);
9bbc8258
VS
13763
13764 /*
13765 * Underruns don't always raise
13766 * interrupts, so check manually.
13767 */
13768 intel_check_cpu_fifo_underruns(dev_priv);
13769 intel_check_pch_fifo_underruns(dev_priv);
b9001114
ML
13770
13771 if (!crtc->state->active)
13772 intel_update_watermarks(crtc);
a539205a 13773 }
b8cecdf5 13774 }
7758a113 13775
ea9d758d
DV
13776 /* Only after disabling all output pipelines that will be changed can we
13777 * update the the output configuration. */
4740b0f2 13778 intel_modeset_update_crtc_state(state);
f6e5b160 13779
565602d7 13780 if (intel_state->modeset) {
4740b0f2 13781 drm_atomic_helper_update_legacy_modeset_state(state->dev, state);
33c8df89
ML
13782
13783 if (dev_priv->display.modeset_commit_cdclk &&
c89e39f3 13784 (intel_state->dev_cdclk != dev_priv->cdclk_freq ||
63911d72 13785 intel_state->cdclk_pll_vco != dev_priv->cdclk_pll.vco))
33c8df89 13786 dev_priv->display.modeset_commit_cdclk(state);
f6d1973d 13787
c0ead703 13788 intel_modeset_verify_disabled(dev);
4740b0f2 13789 }
47fab737 13790
a6778b3c 13791 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
29ceb0e6 13792 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
f6ac4b2a
ML
13793 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13794 bool modeset = needs_modeset(crtc->state);
5a21b665
DV
13795 struct intel_crtc_state *pipe_config =
13796 to_intel_crtc_state(crtc->state);
13797 bool update_pipe = !modeset && pipe_config->update_pipe;
9f836f90 13798
f6ac4b2a 13799 if (modeset && crtc->state->active) {
a539205a
ML
13800 update_scanline_offset(to_intel_crtc(crtc));
13801 dev_priv->display.crtc_enable(crtc);
13802 }
80715b2f 13803
f6ac4b2a 13804 if (!modeset)
29ceb0e6 13805 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state));
f6ac4b2a 13806
5a21b665
DV
13807 if (crtc->state->active &&
13808 drm_atomic_get_existing_plane_state(state, crtc->primary))
13809 intel_fbc_enable(intel_crtc);
13810
13811 if (crtc->state->active &&
13812 (crtc->state->planes_changed || update_pipe))
13813 drm_atomic_helper_commit_planes_on_crtc(old_crtc_state);
f6d1973d 13814
5a21b665
DV
13815 if (pipe_config->base.active && needs_vblank_wait(pipe_config))
13816 crtc_vblank_mask |= 1 << i;
177246a8
MR
13817 }
13818
d55dbd06
ML
13819 /* FIXME: add subpixel order */
13820
5a21b665
DV
13821 if (!state->legacy_cursor_update)
13822 intel_atomic_wait_for_vblanks(dev, dev_priv, crtc_vblank_mask);
13823
13824 /*
13825 * Now that the vblank has passed, we can go ahead and program the
13826 * optimal watermarks on platforms that need two-step watermark
13827 * programming.
13828 *
13829 * TODO: Move this (and other cleanup) to an async worker eventually.
13830 */
13831 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
13832 intel_cstate = to_intel_crtc_state(crtc->state);
13833
13834 if (dev_priv->display.optimize_watermarks)
13835 dev_priv->display.optimize_watermarks(intel_cstate);
13836 }
13837
13838 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
13839 intel_post_plane_update(to_intel_crtc_state(old_crtc_state));
13840
13841 if (put_domains[i])
13842 modeset_put_power_domains(dev_priv, put_domains[i]);
13843
13844 intel_modeset_verify_crtc(crtc, old_crtc_state, crtc->state);
13845 }
13846
13847 if (intel_state->modeset)
13848 intel_display_power_put(dev_priv, POWER_DOMAIN_MODESET);
13849
13850 mutex_lock(&dev->struct_mutex);
13851 drm_atomic_helper_cleanup_planes(dev, state);
13852 mutex_unlock(&dev->struct_mutex);
13853
ee165b1a 13854 drm_atomic_state_free(state);
f30da187 13855
75714940
MK
13856 /* As one of the primary mmio accessors, KMS has a high likelihood
13857 * of triggering bugs in unclaimed access. After we finish
13858 * modesetting, see if an error has been flagged, and if so
13859 * enable debugging for the next modeset - and hope we catch
13860 * the culprit.
13861 *
13862 * XXX note that we assume display power is on at this point.
13863 * This might hold true now but we need to add pm helper to check
13864 * unclaimed only when the hardware is on, as atomic commits
13865 * can happen also when the device is completely off.
13866 */
13867 intel_uncore_arm_unclaimed_mmio_detection(dev_priv);
13868
74c090b1 13869 return 0;
7f27126e
JB
13870}
13871
c0c36b94
CW
13872void intel_crtc_restore_mode(struct drm_crtc *crtc)
13873{
83a57153
ACO
13874 struct drm_device *dev = crtc->dev;
13875 struct drm_atomic_state *state;
e694eb02 13876 struct drm_crtc_state *crtc_state;
2bfb4627 13877 int ret;
83a57153
ACO
13878
13879 state = drm_atomic_state_alloc(dev);
13880 if (!state) {
e694eb02 13881 DRM_DEBUG_KMS("[CRTC:%d] crtc restore failed, out of memory",
83a57153
ACO
13882 crtc->base.id);
13883 return;
13884 }
13885
e694eb02 13886 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
83a57153 13887
e694eb02
ML
13888retry:
13889 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13890 ret = PTR_ERR_OR_ZERO(crtc_state);
13891 if (!ret) {
13892 if (!crtc_state->active)
13893 goto out;
83a57153 13894
e694eb02 13895 crtc_state->mode_changed = true;
74c090b1 13896 ret = drm_atomic_commit(state);
83a57153
ACO
13897 }
13898
e694eb02
ML
13899 if (ret == -EDEADLK) {
13900 drm_atomic_state_clear(state);
13901 drm_modeset_backoff(state->acquire_ctx);
13902 goto retry;
4ed9fb37 13903 }
4be07317 13904
2bfb4627 13905 if (ret)
e694eb02 13906out:
2bfb4627 13907 drm_atomic_state_free(state);
c0c36b94
CW
13908}
13909
25c5b266
DV
13910#undef for_each_intel_crtc_masked
13911
f6e5b160 13912static const struct drm_crtc_funcs intel_crtc_funcs = {
82cf435b 13913 .gamma_set = drm_atomic_helper_legacy_gamma_set,
74c090b1 13914 .set_config = drm_atomic_helper_set_config,
82cf435b 13915 .set_property = drm_atomic_helper_crtc_set_property,
f6e5b160 13916 .destroy = intel_crtc_destroy,
5a21b665 13917 .page_flip = intel_crtc_page_flip,
1356837e
MR
13918 .atomic_duplicate_state = intel_crtc_duplicate_state,
13919 .atomic_destroy_state = intel_crtc_destroy_state,
f6e5b160
CW
13920};
13921
6beb8c23
MR
13922/**
13923 * intel_prepare_plane_fb - Prepare fb for usage on plane
13924 * @plane: drm plane to prepare for
13925 * @fb: framebuffer to prepare for presentation
13926 *
13927 * Prepares a framebuffer for usage on a display plane. Generally this
13928 * involves pinning the underlying object and updating the frontbuffer tracking
13929 * bits. Some older platforms need special physical address handling for
13930 * cursor planes.
13931 *
f935675f
ML
13932 * Must be called with struct_mutex held.
13933 *
6beb8c23
MR
13934 * Returns 0 on success, negative error code on failure.
13935 */
13936int
13937intel_prepare_plane_fb(struct drm_plane *plane,
d136dfee 13938 const struct drm_plane_state *new_state)
465c120c
MR
13939{
13940 struct drm_device *dev = plane->dev;
844f9111 13941 struct drm_framebuffer *fb = new_state->fb;
6beb8c23 13942 struct intel_plane *intel_plane = to_intel_plane(plane);
6beb8c23 13943 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
1ee49399 13944 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->state->fb);
6beb8c23 13945 int ret = 0;
465c120c 13946
1ee49399 13947 if (!obj && !old_obj)
465c120c
MR
13948 return 0;
13949
5008e874
ML
13950 if (old_obj) {
13951 struct drm_crtc_state *crtc_state =
13952 drm_atomic_get_existing_crtc_state(new_state->state, plane->state->crtc);
13953
13954 /* Big Hammer, we also need to ensure that any pending
13955 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
13956 * current scanout is retired before unpinning the old
13957 * framebuffer. Note that we rely on userspace rendering
13958 * into the buffer attached to the pipe they are waiting
13959 * on. If not, userspace generates a GPU hang with IPEHR
13960 * point to the MI_WAIT_FOR_EVENT.
13961 *
13962 * This should only fail upon a hung GPU, in which case we
13963 * can safely continue.
13964 */
13965 if (needs_modeset(crtc_state))
13966 ret = i915_gem_object_wait_rendering(old_obj, true);
f4457ae7
CW
13967 if (ret) {
13968 /* GPU hangs should have been swallowed by the wait */
13969 WARN_ON(ret == -EIO);
f935675f 13970 return ret;
f4457ae7 13971 }
5008e874
ML
13972 }
13973
5a21b665
DV
13974 /* For framebuffer backed by dmabuf, wait for fence */
13975 if (obj && obj->base.dma_buf) {
13976 long lret;
13977
13978 lret = reservation_object_wait_timeout_rcu(obj->base.dma_buf->resv,
13979 false, true,
13980 MAX_SCHEDULE_TIMEOUT);
13981 if (lret == -ERESTARTSYS)
13982 return lret;
13983
13984 WARN(lret < 0, "waiting returns %li\n", lret);
13985 }
13986
1ee49399
ML
13987 if (!obj) {
13988 ret = 0;
13989 } else if (plane->type == DRM_PLANE_TYPE_CURSOR &&
6beb8c23
MR
13990 INTEL_INFO(dev)->cursor_needs_physical) {
13991 int align = IS_I830(dev) ? 16 * 1024 : 256;
13992 ret = i915_gem_object_attach_phys(obj, align);
13993 if (ret)
13994 DRM_DEBUG_KMS("failed to attach phys object\n");
13995 } else {
3465c580 13996 ret = intel_pin_and_fence_fb_obj(fb, new_state->rotation);
6beb8c23 13997 }
465c120c 13998
7580d774
ML
13999 if (ret == 0) {
14000 if (obj) {
14001 struct intel_plane_state *plane_state =
14002 to_intel_plane_state(new_state);
14003
14004 i915_gem_request_assign(&plane_state->wait_req,
14005 obj->last_write_req);
14006 }
14007
a9ff8714 14008 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
7580d774 14009 }
fdd508a6 14010
6beb8c23
MR
14011 return ret;
14012}
14013
38f3ce3a
MR
14014/**
14015 * intel_cleanup_plane_fb - Cleans up an fb after plane use
14016 * @plane: drm plane to clean up for
14017 * @fb: old framebuffer that was on plane
14018 *
14019 * Cleans up a framebuffer that has just been removed from a plane.
f935675f
ML
14020 *
14021 * Must be called with struct_mutex held.
38f3ce3a
MR
14022 */
14023void
14024intel_cleanup_plane_fb(struct drm_plane *plane,
d136dfee 14025 const struct drm_plane_state *old_state)
38f3ce3a
MR
14026{
14027 struct drm_device *dev = plane->dev;
1ee49399 14028 struct intel_plane *intel_plane = to_intel_plane(plane);
7580d774 14029 struct intel_plane_state *old_intel_state;
1ee49399
ML
14030 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_state->fb);
14031 struct drm_i915_gem_object *obj = intel_fb_obj(plane->state->fb);
38f3ce3a 14032
7580d774
ML
14033 old_intel_state = to_intel_plane_state(old_state);
14034
1ee49399 14035 if (!obj && !old_obj)
38f3ce3a
MR
14036 return;
14037
1ee49399
ML
14038 if (old_obj && (plane->type != DRM_PLANE_TYPE_CURSOR ||
14039 !INTEL_INFO(dev)->cursor_needs_physical))
3465c580 14040 intel_unpin_fb_obj(old_state->fb, old_state->rotation);
1ee49399
ML
14041
14042 /* prepare_fb aborted? */
14043 if ((old_obj && (old_obj->frontbuffer_bits & intel_plane->frontbuffer_bit)) ||
14044 (obj && !(obj->frontbuffer_bits & intel_plane->frontbuffer_bit)))
14045 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
7580d774
ML
14046
14047 i915_gem_request_assign(&old_intel_state->wait_req, NULL);
465c120c
MR
14048}
14049
6156a456
CK
14050int
14051skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
14052{
14053 int max_scale;
14054 struct drm_device *dev;
14055 struct drm_i915_private *dev_priv;
14056 int crtc_clock, cdclk;
14057
bf8a0af0 14058 if (!intel_crtc || !crtc_state->base.enable)
6156a456
CK
14059 return DRM_PLANE_HELPER_NO_SCALING;
14060
14061 dev = intel_crtc->base.dev;
14062 dev_priv = dev->dev_private;
14063 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
27c329ed 14064 cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk;
6156a456 14065
54bf1ce6 14066 if (WARN_ON_ONCE(!crtc_clock || cdclk < crtc_clock))
6156a456
CK
14067 return DRM_PLANE_HELPER_NO_SCALING;
14068
14069 /*
14070 * skl max scale is lower of:
14071 * close to 3 but not 3, -1 is for that purpose
14072 * or
14073 * cdclk/crtc_clock
14074 */
14075 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
14076
14077 return max_scale;
14078}
14079
465c120c 14080static int
3c692a41 14081intel_check_primary_plane(struct drm_plane *plane,
061e4b8d 14082 struct intel_crtc_state *crtc_state,
3c692a41
GP
14083 struct intel_plane_state *state)
14084{
2b875c22
MR
14085 struct drm_crtc *crtc = state->base.crtc;
14086 struct drm_framebuffer *fb = state->base.fb;
6156a456 14087 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
061e4b8d
ML
14088 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
14089 bool can_position = false;
465c120c 14090
693bdc28
VS
14091 if (INTEL_INFO(plane->dev)->gen >= 9) {
14092 /* use scaler when colorkey is not required */
14093 if (state->ckey.flags == I915_SET_COLORKEY_NONE) {
14094 min_scale = 1;
14095 max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state);
14096 }
d8106366 14097 can_position = true;
6156a456 14098 }
d8106366 14099
061e4b8d
ML
14100 return drm_plane_helper_check_update(plane, crtc, fb, &state->src,
14101 &state->dst, &state->clip,
da20eabd
ML
14102 min_scale, max_scale,
14103 can_position, true,
14104 &state->visible);
14af293f
GP
14105}
14106
5a21b665
DV
14107static void intel_begin_crtc_commit(struct drm_crtc *crtc,
14108 struct drm_crtc_state *old_crtc_state)
14109{
14110 struct drm_device *dev = crtc->dev;
14111 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14112 struct intel_crtc_state *old_intel_state =
14113 to_intel_crtc_state(old_crtc_state);
14114 bool modeset = needs_modeset(crtc->state);
14115
14116 /* Perform vblank evasion around commit operation */
14117 intel_pipe_update_start(intel_crtc);
14118
14119 if (modeset)
14120 return;
14121
14122 if (crtc->state->color_mgmt_changed || to_intel_crtc_state(crtc->state)->update_pipe) {
14123 intel_color_set_csc(crtc->state);
14124 intel_color_load_luts(crtc->state);
14125 }
14126
14127 if (to_intel_crtc_state(crtc->state)->update_pipe)
14128 intel_update_pipe_config(intel_crtc, old_intel_state);
14129 else if (INTEL_INFO(dev)->gen >= 9)
14130 skl_detach_scalers(intel_crtc);
14131}
14132
14133static void intel_finish_crtc_commit(struct drm_crtc *crtc,
14134 struct drm_crtc_state *old_crtc_state)
14135{
14136 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14137
14138 intel_pipe_update_end(intel_crtc, NULL);
14139}
14140
cf4c7c12 14141/**
4a3b8769
MR
14142 * intel_plane_destroy - destroy a plane
14143 * @plane: plane to destroy
cf4c7c12 14144 *
4a3b8769
MR
14145 * Common destruction function for all types of planes (primary, cursor,
14146 * sprite).
cf4c7c12 14147 */
4a3b8769 14148void intel_plane_destroy(struct drm_plane *plane)
465c120c
MR
14149{
14150 struct intel_plane *intel_plane = to_intel_plane(plane);
14151 drm_plane_cleanup(plane);
14152 kfree(intel_plane);
14153}
14154
65a3fea0 14155const struct drm_plane_funcs intel_plane_funcs = {
70a101f8
MR
14156 .update_plane = drm_atomic_helper_update_plane,
14157 .disable_plane = drm_atomic_helper_disable_plane,
3d7d6510 14158 .destroy = intel_plane_destroy,
c196e1d6 14159 .set_property = drm_atomic_helper_plane_set_property,
a98b3431
MR
14160 .atomic_get_property = intel_plane_atomic_get_property,
14161 .atomic_set_property = intel_plane_atomic_set_property,
ea2c67bb
MR
14162 .atomic_duplicate_state = intel_plane_duplicate_state,
14163 .atomic_destroy_state = intel_plane_destroy_state,
14164
465c120c
MR
14165};
14166
14167static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
14168 int pipe)
14169{
fca0ce2a
VS
14170 struct intel_plane *primary = NULL;
14171 struct intel_plane_state *state = NULL;
465c120c 14172 const uint32_t *intel_primary_formats;
45e3743a 14173 unsigned int num_formats;
fca0ce2a 14174 int ret;
465c120c
MR
14175
14176 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
fca0ce2a
VS
14177 if (!primary)
14178 goto fail;
465c120c 14179
8e7d688b 14180 state = intel_create_plane_state(&primary->base);
fca0ce2a
VS
14181 if (!state)
14182 goto fail;
8e7d688b 14183 primary->base.state = &state->base;
ea2c67bb 14184
465c120c
MR
14185 primary->can_scale = false;
14186 primary->max_downscale = 1;
6156a456
CK
14187 if (INTEL_INFO(dev)->gen >= 9) {
14188 primary->can_scale = true;
af99ceda 14189 state->scaler_id = -1;
6156a456 14190 }
465c120c
MR
14191 primary->pipe = pipe;
14192 primary->plane = pipe;
a9ff8714 14193 primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe);
c59cb179 14194 primary->check_plane = intel_check_primary_plane;
465c120c
MR
14195 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
14196 primary->plane = !pipe;
14197
6c0fd451
DL
14198 if (INTEL_INFO(dev)->gen >= 9) {
14199 intel_primary_formats = skl_primary_formats;
14200 num_formats = ARRAY_SIZE(skl_primary_formats);
a8d201af
ML
14201
14202 primary->update_plane = skylake_update_primary_plane;
14203 primary->disable_plane = skylake_disable_primary_plane;
14204 } else if (HAS_PCH_SPLIT(dev)) {
14205 intel_primary_formats = i965_primary_formats;
14206 num_formats = ARRAY_SIZE(i965_primary_formats);
14207
14208 primary->update_plane = ironlake_update_primary_plane;
14209 primary->disable_plane = i9xx_disable_primary_plane;
6c0fd451 14210 } else if (INTEL_INFO(dev)->gen >= 4) {
568db4f2
DL
14211 intel_primary_formats = i965_primary_formats;
14212 num_formats = ARRAY_SIZE(i965_primary_formats);
a8d201af
ML
14213
14214 primary->update_plane = i9xx_update_primary_plane;
14215 primary->disable_plane = i9xx_disable_primary_plane;
6c0fd451
DL
14216 } else {
14217 intel_primary_formats = i8xx_primary_formats;
14218 num_formats = ARRAY_SIZE(i8xx_primary_formats);
a8d201af
ML
14219
14220 primary->update_plane = i9xx_update_primary_plane;
14221 primary->disable_plane = i9xx_disable_primary_plane;
465c120c
MR
14222 }
14223
fca0ce2a
VS
14224 ret = drm_universal_plane_init(dev, &primary->base, 0,
14225 &intel_plane_funcs,
14226 intel_primary_formats, num_formats,
14227 DRM_PLANE_TYPE_PRIMARY, NULL);
14228 if (ret)
14229 goto fail;
48404c1e 14230
3b7a5119
SJ
14231 if (INTEL_INFO(dev)->gen >= 4)
14232 intel_create_rotation_property(dev, primary);
48404c1e 14233
ea2c67bb
MR
14234 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
14235
465c120c 14236 return &primary->base;
fca0ce2a
VS
14237
14238fail:
14239 kfree(state);
14240 kfree(primary);
14241
14242 return NULL;
465c120c
MR
14243}
14244
3b7a5119
SJ
14245void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
14246{
14247 if (!dev->mode_config.rotation_property) {
14248 unsigned long flags = BIT(DRM_ROTATE_0) |
14249 BIT(DRM_ROTATE_180);
14250
14251 if (INTEL_INFO(dev)->gen >= 9)
14252 flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270);
14253
14254 dev->mode_config.rotation_property =
14255 drm_mode_create_rotation_property(dev, flags);
14256 }
14257 if (dev->mode_config.rotation_property)
14258 drm_object_attach_property(&plane->base.base,
14259 dev->mode_config.rotation_property,
14260 plane->base.state->rotation);
14261}
14262
3d7d6510 14263static int
852e787c 14264intel_check_cursor_plane(struct drm_plane *plane,
061e4b8d 14265 struct intel_crtc_state *crtc_state,
852e787c 14266 struct intel_plane_state *state)
3d7d6510 14267{
061e4b8d 14268 struct drm_crtc *crtc = crtc_state->base.crtc;
2b875c22 14269 struct drm_framebuffer *fb = state->base.fb;
757f9a3e 14270 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
b29ec92c 14271 enum pipe pipe = to_intel_plane(plane)->pipe;
757f9a3e
GP
14272 unsigned stride;
14273 int ret;
3d7d6510 14274
061e4b8d
ML
14275 ret = drm_plane_helper_check_update(plane, crtc, fb, &state->src,
14276 &state->dst, &state->clip,
3d7d6510
MR
14277 DRM_PLANE_HELPER_NO_SCALING,
14278 DRM_PLANE_HELPER_NO_SCALING,
852e787c 14279 true, true, &state->visible);
757f9a3e
GP
14280 if (ret)
14281 return ret;
14282
757f9a3e
GP
14283 /* if we want to turn off the cursor ignore width and height */
14284 if (!obj)
da20eabd 14285 return 0;
757f9a3e 14286
757f9a3e 14287 /* Check for which cursor types we support */
061e4b8d 14288 if (!cursor_size_ok(plane->dev, state->base.crtc_w, state->base.crtc_h)) {
ea2c67bb
MR
14289 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
14290 state->base.crtc_w, state->base.crtc_h);
757f9a3e
GP
14291 return -EINVAL;
14292 }
14293
ea2c67bb
MR
14294 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
14295 if (obj->base.size < stride * state->base.crtc_h) {
757f9a3e
GP
14296 DRM_DEBUG_KMS("buffer is too small\n");
14297 return -ENOMEM;
14298 }
14299
3a656b54 14300 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
757f9a3e 14301 DRM_DEBUG_KMS("cursor cannot be tiled\n");
da20eabd 14302 return -EINVAL;
32b7eeec
MR
14303 }
14304
b29ec92c
VS
14305 /*
14306 * There's something wrong with the cursor on CHV pipe C.
14307 * If it straddles the left edge of the screen then
14308 * moving it away from the edge or disabling it often
14309 * results in a pipe underrun, and often that can lead to
14310 * dead pipe (constant underrun reported, and it scans
14311 * out just a solid color). To recover from that, the
14312 * display power well must be turned off and on again.
14313 * Refuse the put the cursor into that compromised position.
14314 */
14315 if (IS_CHERRYVIEW(plane->dev) && pipe == PIPE_C &&
14316 state->visible && state->base.crtc_x < 0) {
14317 DRM_DEBUG_KMS("CHV cursor C not allowed to straddle the left screen edge\n");
14318 return -EINVAL;
14319 }
14320
da20eabd 14321 return 0;
852e787c 14322}
3d7d6510 14323
a8ad0d8e
ML
14324static void
14325intel_disable_cursor_plane(struct drm_plane *plane,
7fabf5ef 14326 struct drm_crtc *crtc)
a8ad0d8e 14327{
f2858021
ML
14328 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14329
14330 intel_crtc->cursor_addr = 0;
55a08b3f 14331 intel_crtc_update_cursor(crtc, NULL);
a8ad0d8e
ML
14332}
14333
f4a2cf29 14334static void
55a08b3f
ML
14335intel_update_cursor_plane(struct drm_plane *plane,
14336 const struct intel_crtc_state *crtc_state,
14337 const struct intel_plane_state *state)
852e787c 14338{
55a08b3f
ML
14339 struct drm_crtc *crtc = crtc_state->base.crtc;
14340 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ea2c67bb 14341 struct drm_device *dev = plane->dev;
2b875c22 14342 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
a912f12f 14343 uint32_t addr;
852e787c 14344
f4a2cf29 14345 if (!obj)
a912f12f 14346 addr = 0;
f4a2cf29 14347 else if (!INTEL_INFO(dev)->cursor_needs_physical)
a912f12f 14348 addr = i915_gem_obj_ggtt_offset(obj);
f4a2cf29 14349 else
a912f12f 14350 addr = obj->phys_handle->busaddr;
852e787c 14351
a912f12f 14352 intel_crtc->cursor_addr = addr;
55a08b3f 14353 intel_crtc_update_cursor(crtc, state);
852e787c
GP
14354}
14355
3d7d6510
MR
14356static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
14357 int pipe)
14358{
fca0ce2a
VS
14359 struct intel_plane *cursor = NULL;
14360 struct intel_plane_state *state = NULL;
14361 int ret;
3d7d6510
MR
14362
14363 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
fca0ce2a
VS
14364 if (!cursor)
14365 goto fail;
3d7d6510 14366
8e7d688b 14367 state = intel_create_plane_state(&cursor->base);
fca0ce2a
VS
14368 if (!state)
14369 goto fail;
8e7d688b 14370 cursor->base.state = &state->base;
ea2c67bb 14371
3d7d6510
MR
14372 cursor->can_scale = false;
14373 cursor->max_downscale = 1;
14374 cursor->pipe = pipe;
14375 cursor->plane = pipe;
a9ff8714 14376 cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe);
c59cb179 14377 cursor->check_plane = intel_check_cursor_plane;
55a08b3f 14378 cursor->update_plane = intel_update_cursor_plane;
a8ad0d8e 14379 cursor->disable_plane = intel_disable_cursor_plane;
3d7d6510 14380
fca0ce2a
VS
14381 ret = drm_universal_plane_init(dev, &cursor->base, 0,
14382 &intel_plane_funcs,
14383 intel_cursor_formats,
14384 ARRAY_SIZE(intel_cursor_formats),
14385 DRM_PLANE_TYPE_CURSOR, NULL);
14386 if (ret)
14387 goto fail;
4398ad45
VS
14388
14389 if (INTEL_INFO(dev)->gen >= 4) {
14390 if (!dev->mode_config.rotation_property)
14391 dev->mode_config.rotation_property =
14392 drm_mode_create_rotation_property(dev,
14393 BIT(DRM_ROTATE_0) |
14394 BIT(DRM_ROTATE_180));
14395 if (dev->mode_config.rotation_property)
14396 drm_object_attach_property(&cursor->base.base,
14397 dev->mode_config.rotation_property,
8e7d688b 14398 state->base.rotation);
4398ad45
VS
14399 }
14400
af99ceda
CK
14401 if (INTEL_INFO(dev)->gen >=9)
14402 state->scaler_id = -1;
14403
ea2c67bb
MR
14404 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
14405
3d7d6510 14406 return &cursor->base;
fca0ce2a
VS
14407
14408fail:
14409 kfree(state);
14410 kfree(cursor);
14411
14412 return NULL;
3d7d6510
MR
14413}
14414
549e2bfb
CK
14415static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
14416 struct intel_crtc_state *crtc_state)
14417{
14418 int i;
14419 struct intel_scaler *intel_scaler;
14420 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
14421
14422 for (i = 0; i < intel_crtc->num_scalers; i++) {
14423 intel_scaler = &scaler_state->scalers[i];
14424 intel_scaler->in_use = 0;
549e2bfb
CK
14425 intel_scaler->mode = PS_SCALER_MODE_DYN;
14426 }
14427
14428 scaler_state->scaler_id = -1;
14429}
14430
b358d0a6 14431static void intel_crtc_init(struct drm_device *dev, int pipe)
79e53945 14432{
fbee40df 14433 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 14434 struct intel_crtc *intel_crtc;
f5de6e07 14435 struct intel_crtc_state *crtc_state = NULL;
3d7d6510
MR
14436 struct drm_plane *primary = NULL;
14437 struct drm_plane *cursor = NULL;
8563b1e8 14438 int ret;
79e53945 14439
955382f3 14440 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
79e53945
JB
14441 if (intel_crtc == NULL)
14442 return;
14443
f5de6e07
ACO
14444 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
14445 if (!crtc_state)
14446 goto fail;
550acefd
ACO
14447 intel_crtc->config = crtc_state;
14448 intel_crtc->base.state = &crtc_state->base;
07878248 14449 crtc_state->base.crtc = &intel_crtc->base;
f5de6e07 14450
549e2bfb
CK
14451 /* initialize shared scalers */
14452 if (INTEL_INFO(dev)->gen >= 9) {
14453 if (pipe == PIPE_C)
14454 intel_crtc->num_scalers = 1;
14455 else
14456 intel_crtc->num_scalers = SKL_NUM_SCALERS;
14457
14458 skl_init_scalers(dev, intel_crtc, crtc_state);
14459 }
14460
465c120c 14461 primary = intel_primary_plane_create(dev, pipe);
3d7d6510
MR
14462 if (!primary)
14463 goto fail;
14464
14465 cursor = intel_cursor_plane_create(dev, pipe);
14466 if (!cursor)
14467 goto fail;
14468
465c120c 14469 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
f9882876 14470 cursor, &intel_crtc_funcs, NULL);
3d7d6510
MR
14471 if (ret)
14472 goto fail;
79e53945 14473
1f1c2e24
VS
14474 /*
14475 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
8c0f92e1 14476 * is hooked to pipe B. Hence we want plane A feeding pipe B.
1f1c2e24 14477 */
80824003
JB
14478 intel_crtc->pipe = pipe;
14479 intel_crtc->plane = pipe;
3a77c4c4 14480 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
28c97730 14481 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
e2e767ab 14482 intel_crtc->plane = !pipe;
80824003
JB
14483 }
14484
4b0e333e
CW
14485 intel_crtc->cursor_base = ~0;
14486 intel_crtc->cursor_cntl = ~0;
dc41c154 14487 intel_crtc->cursor_size = ~0;
8d7849db 14488
852eb00d
VS
14489 intel_crtc->wm.cxsr_allowed = true;
14490
22fd0fab
JB
14491 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
14492 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
14493 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
14494 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
14495
79e53945 14496 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
87b6b101 14497
8563b1e8
LL
14498 intel_color_init(&intel_crtc->base);
14499
87b6b101 14500 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
3d7d6510
MR
14501 return;
14502
14503fail:
14504 if (primary)
14505 drm_plane_cleanup(primary);
14506 if (cursor)
14507 drm_plane_cleanup(cursor);
f5de6e07 14508 kfree(crtc_state);
3d7d6510 14509 kfree(intel_crtc);
79e53945
JB
14510}
14511
752aa88a
JB
14512enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
14513{
14514 struct drm_encoder *encoder = connector->base.encoder;
6e9f798d 14515 struct drm_device *dev = connector->base.dev;
752aa88a 14516
51fd371b 14517 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
752aa88a 14518
d3babd3f 14519 if (!encoder || WARN_ON(!encoder->crtc))
752aa88a
JB
14520 return INVALID_PIPE;
14521
14522 return to_intel_crtc(encoder->crtc)->pipe;
14523}
14524
08d7b3d1 14525int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
05394f39 14526 struct drm_file *file)
08d7b3d1 14527{
08d7b3d1 14528 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
7707e653 14529 struct drm_crtc *drmmode_crtc;
c05422d5 14530 struct intel_crtc *crtc;
08d7b3d1 14531
7707e653 14532 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
08d7b3d1 14533
7707e653 14534 if (!drmmode_crtc) {
08d7b3d1 14535 DRM_ERROR("no such CRTC id\n");
3f2c2057 14536 return -ENOENT;
08d7b3d1
CW
14537 }
14538
7707e653 14539 crtc = to_intel_crtc(drmmode_crtc);
c05422d5 14540 pipe_from_crtc_id->pipe = crtc->pipe;
08d7b3d1 14541
c05422d5 14542 return 0;
08d7b3d1
CW
14543}
14544
66a9278e 14545static int intel_encoder_clones(struct intel_encoder *encoder)
79e53945 14546{
66a9278e
DV
14547 struct drm_device *dev = encoder->base.dev;
14548 struct intel_encoder *source_encoder;
79e53945 14549 int index_mask = 0;
79e53945
JB
14550 int entry = 0;
14551
b2784e15 14552 for_each_intel_encoder(dev, source_encoder) {
bc079e8b 14553 if (encoders_cloneable(encoder, source_encoder))
66a9278e
DV
14554 index_mask |= (1 << entry);
14555
79e53945
JB
14556 entry++;
14557 }
4ef69c7a 14558
79e53945
JB
14559 return index_mask;
14560}
14561
4d302442
CW
14562static bool has_edp_a(struct drm_device *dev)
14563{
14564 struct drm_i915_private *dev_priv = dev->dev_private;
14565
14566 if (!IS_MOBILE(dev))
14567 return false;
14568
14569 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
14570 return false;
14571
e3589908 14572 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
4d302442
CW
14573 return false;
14574
14575 return true;
14576}
14577
84b4e042
JB
14578static bool intel_crt_present(struct drm_device *dev)
14579{
14580 struct drm_i915_private *dev_priv = dev->dev_private;
14581
884497ed
DL
14582 if (INTEL_INFO(dev)->gen >= 9)
14583 return false;
14584
cf404ce4 14585 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
84b4e042
JB
14586 return false;
14587
14588 if (IS_CHERRYVIEW(dev))
14589 return false;
14590
65e472e4
VS
14591 if (HAS_PCH_LPT_H(dev) && I915_READ(SFUSE_STRAP) & SFUSE_STRAP_CRT_DISABLED)
14592 return false;
14593
70ac54d0
VS
14594 /* DDI E can't be used if DDI A requires 4 lanes */
14595 if (HAS_DDI(dev) && I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES)
14596 return false;
14597
e4abb733 14598 if (!dev_priv->vbt.int_crt_support)
84b4e042
JB
14599 return false;
14600
14601 return true;
14602}
14603
79e53945
JB
14604static void intel_setup_outputs(struct drm_device *dev)
14605{
725e30ad 14606 struct drm_i915_private *dev_priv = dev->dev_private;
4ef69c7a 14607 struct intel_encoder *encoder;
cb0953d7 14608 bool dpd_is_edp = false;
79e53945 14609
c9093354 14610 intel_lvds_init(dev);
79e53945 14611
84b4e042 14612 if (intel_crt_present(dev))
79935fca 14613 intel_crt_init(dev);
cb0953d7 14614
c776eb2e
VK
14615 if (IS_BROXTON(dev)) {
14616 /*
14617 * FIXME: Broxton doesn't support port detection via the
14618 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
14619 * detect the ports.
14620 */
14621 intel_ddi_init(dev, PORT_A);
14622 intel_ddi_init(dev, PORT_B);
14623 intel_ddi_init(dev, PORT_C);
c6c794a2
SS
14624
14625 intel_dsi_init(dev);
c776eb2e 14626 } else if (HAS_DDI(dev)) {
0e72a5b5
ED
14627 int found;
14628
de31facd
JB
14629 /*
14630 * Haswell uses DDI functions to detect digital outputs.
14631 * On SKL pre-D0 the strap isn't connected, so we assume
14632 * it's there.
14633 */
77179400 14634 found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED;
de31facd 14635 /* WaIgnoreDDIAStrap: skl */
ef11bdb3 14636 if (found || IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
0e72a5b5
ED
14637 intel_ddi_init(dev, PORT_A);
14638
14639 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
14640 * register */
14641 found = I915_READ(SFUSE_STRAP);
14642
14643 if (found & SFUSE_STRAP_DDIB_DETECTED)
14644 intel_ddi_init(dev, PORT_B);
14645 if (found & SFUSE_STRAP_DDIC_DETECTED)
14646 intel_ddi_init(dev, PORT_C);
14647 if (found & SFUSE_STRAP_DDID_DETECTED)
14648 intel_ddi_init(dev, PORT_D);
2800e4c2
RV
14649 /*
14650 * On SKL we don't have a way to detect DDI-E so we rely on VBT.
14651 */
ef11bdb3 14652 if ((IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) &&
2800e4c2
RV
14653 (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp ||
14654 dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi ||
14655 dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi))
14656 intel_ddi_init(dev, PORT_E);
14657
0e72a5b5 14658 } else if (HAS_PCH_SPLIT(dev)) {
cb0953d7 14659 int found;
5d8a7752 14660 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
270b3042
DV
14661
14662 if (has_edp_a(dev))
14663 intel_dp_init(dev, DP_A, PORT_A);
cb0953d7 14664
dc0fa718 14665 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
461ed3ca 14666 /* PCH SDVOB multiplex with HDMIB */
2a5c0832 14667 found = intel_sdvo_init(dev, PCH_SDVOB, PORT_B);
30ad48b7 14668 if (!found)
e2debe91 14669 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
5eb08b69 14670 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
ab9d7c30 14671 intel_dp_init(dev, PCH_DP_B, PORT_B);
30ad48b7
ZW
14672 }
14673
dc0fa718 14674 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
e2debe91 14675 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
30ad48b7 14676
dc0fa718 14677 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
e2debe91 14678 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
30ad48b7 14679
5eb08b69 14680 if (I915_READ(PCH_DP_C) & DP_DETECTED)
ab9d7c30 14681 intel_dp_init(dev, PCH_DP_C, PORT_C);
5eb08b69 14682
270b3042 14683 if (I915_READ(PCH_DP_D) & DP_DETECTED)
ab9d7c30 14684 intel_dp_init(dev, PCH_DP_D, PORT_D);
666a4537 14685 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
e17ac6db
VS
14686 /*
14687 * The DP_DETECTED bit is the latched state of the DDC
14688 * SDA pin at boot. However since eDP doesn't require DDC
14689 * (no way to plug in a DP->HDMI dongle) the DDC pins for
14690 * eDP ports may have been muxed to an alternate function.
14691 * Thus we can't rely on the DP_DETECTED bit alone to detect
14692 * eDP ports. Consult the VBT as well as DP_DETECTED to
14693 * detect eDP ports.
14694 */
e66eb81d 14695 if (I915_READ(VLV_HDMIB) & SDVO_DETECTED &&
d2182a66 14696 !intel_dp_is_edp(dev, PORT_B))
e66eb81d
VS
14697 intel_hdmi_init(dev, VLV_HDMIB, PORT_B);
14698 if (I915_READ(VLV_DP_B) & DP_DETECTED ||
e17ac6db 14699 intel_dp_is_edp(dev, PORT_B))
e66eb81d 14700 intel_dp_init(dev, VLV_DP_B, PORT_B);
585a94b8 14701
e66eb81d 14702 if (I915_READ(VLV_HDMIC) & SDVO_DETECTED &&
d2182a66 14703 !intel_dp_is_edp(dev, PORT_C))
e66eb81d
VS
14704 intel_hdmi_init(dev, VLV_HDMIC, PORT_C);
14705 if (I915_READ(VLV_DP_C) & DP_DETECTED ||
e17ac6db 14706 intel_dp_is_edp(dev, PORT_C))
e66eb81d 14707 intel_dp_init(dev, VLV_DP_C, PORT_C);
19c03924 14708
9418c1f1 14709 if (IS_CHERRYVIEW(dev)) {
e17ac6db 14710 /* eDP not supported on port D, so don't check VBT */
e66eb81d
VS
14711 if (I915_READ(CHV_HDMID) & SDVO_DETECTED)
14712 intel_hdmi_init(dev, CHV_HDMID, PORT_D);
14713 if (I915_READ(CHV_DP_D) & DP_DETECTED)
14714 intel_dp_init(dev, CHV_DP_D, PORT_D);
9418c1f1
VS
14715 }
14716
3cfca973 14717 intel_dsi_init(dev);
09da55dc 14718 } else if (!IS_GEN2(dev) && !IS_PINEVIEW(dev)) {
27185ae1 14719 bool found = false;
7d57382e 14720
e2debe91 14721 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 14722 DRM_DEBUG_KMS("probing SDVOB\n");
2a5c0832 14723 found = intel_sdvo_init(dev, GEN3_SDVOB, PORT_B);
3fec3d2f 14724 if (!found && IS_G4X(dev)) {
b01f2c3a 14725 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
e2debe91 14726 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
b01f2c3a 14727 }
27185ae1 14728
3fec3d2f 14729 if (!found && IS_G4X(dev))
ab9d7c30 14730 intel_dp_init(dev, DP_B, PORT_B);
725e30ad 14731 }
13520b05
KH
14732
14733 /* Before G4X SDVOC doesn't have its own detect register */
13520b05 14734
e2debe91 14735 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 14736 DRM_DEBUG_KMS("probing SDVOC\n");
2a5c0832 14737 found = intel_sdvo_init(dev, GEN3_SDVOC, PORT_C);
b01f2c3a 14738 }
27185ae1 14739
e2debe91 14740 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
27185ae1 14741
3fec3d2f 14742 if (IS_G4X(dev)) {
b01f2c3a 14743 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
e2debe91 14744 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
b01f2c3a 14745 }
3fec3d2f 14746 if (IS_G4X(dev))
ab9d7c30 14747 intel_dp_init(dev, DP_C, PORT_C);
725e30ad 14748 }
27185ae1 14749
3fec3d2f 14750 if (IS_G4X(dev) &&
e7281eab 14751 (I915_READ(DP_D) & DP_DETECTED))
ab9d7c30 14752 intel_dp_init(dev, DP_D, PORT_D);
bad720ff 14753 } else if (IS_GEN2(dev))
79e53945
JB
14754 intel_dvo_init(dev);
14755
103a196f 14756 if (SUPPORTS_TV(dev))
79e53945
JB
14757 intel_tv_init(dev);
14758
0bc12bcb 14759 intel_psr_init(dev);
7c8f8a70 14760
b2784e15 14761 for_each_intel_encoder(dev, encoder) {
4ef69c7a
CW
14762 encoder->base.possible_crtcs = encoder->crtc_mask;
14763 encoder->base.possible_clones =
66a9278e 14764 intel_encoder_clones(encoder);
79e53945 14765 }
47356eb6 14766
dde86e2d 14767 intel_init_pch_refclk(dev);
270b3042
DV
14768
14769 drm_helper_move_panel_connectors_to_head(dev);
79e53945
JB
14770}
14771
14772static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
14773{
60a5ca01 14774 struct drm_device *dev = fb->dev;
79e53945 14775 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
79e53945 14776
ef2d633e 14777 drm_framebuffer_cleanup(fb);
60a5ca01 14778 mutex_lock(&dev->struct_mutex);
ef2d633e 14779 WARN_ON(!intel_fb->obj->framebuffer_references--);
60a5ca01
VS
14780 drm_gem_object_unreference(&intel_fb->obj->base);
14781 mutex_unlock(&dev->struct_mutex);
79e53945
JB
14782 kfree(intel_fb);
14783}
14784
14785static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
05394f39 14786 struct drm_file *file,
79e53945
JB
14787 unsigned int *handle)
14788{
14789 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 14790 struct drm_i915_gem_object *obj = intel_fb->obj;
79e53945 14791
cc917ab4
CW
14792 if (obj->userptr.mm) {
14793 DRM_DEBUG("attempting to use a userptr for a framebuffer, denied\n");
14794 return -EINVAL;
14795 }
14796
05394f39 14797 return drm_gem_handle_create(file, &obj->base, handle);
79e53945
JB
14798}
14799
86c98588
RV
14800static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb,
14801 struct drm_file *file,
14802 unsigned flags, unsigned color,
14803 struct drm_clip_rect *clips,
14804 unsigned num_clips)
14805{
14806 struct drm_device *dev = fb->dev;
14807 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
14808 struct drm_i915_gem_object *obj = intel_fb->obj;
14809
14810 mutex_lock(&dev->struct_mutex);
74b4ea1e 14811 intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB);
86c98588
RV
14812 mutex_unlock(&dev->struct_mutex);
14813
14814 return 0;
14815}
14816
79e53945
JB
14817static const struct drm_framebuffer_funcs intel_fb_funcs = {
14818 .destroy = intel_user_framebuffer_destroy,
14819 .create_handle = intel_user_framebuffer_create_handle,
86c98588 14820 .dirty = intel_user_framebuffer_dirty,
79e53945
JB
14821};
14822
b321803d
DL
14823static
14824u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
14825 uint32_t pixel_format)
14826{
14827 u32 gen = INTEL_INFO(dev)->gen;
14828
14829 if (gen >= 9) {
ac484963
VS
14830 int cpp = drm_format_plane_cpp(pixel_format, 0);
14831
b321803d
DL
14832 /* "The stride in bytes must not exceed the of the size of 8K
14833 * pixels and 32K bytes."
14834 */
ac484963 14835 return min(8192 * cpp, 32768);
666a4537 14836 } else if (gen >= 5 && !IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
b321803d
DL
14837 return 32*1024;
14838 } else if (gen >= 4) {
14839 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14840 return 16*1024;
14841 else
14842 return 32*1024;
14843 } else if (gen >= 3) {
14844 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14845 return 8*1024;
14846 else
14847 return 16*1024;
14848 } else {
14849 /* XXX DSPC is limited to 4k tiled */
14850 return 8*1024;
14851 }
14852}
14853
b5ea642a
DV
14854static int intel_framebuffer_init(struct drm_device *dev,
14855 struct intel_framebuffer *intel_fb,
14856 struct drm_mode_fb_cmd2 *mode_cmd,
14857 struct drm_i915_gem_object *obj)
79e53945 14858{
7b49f948 14859 struct drm_i915_private *dev_priv = to_i915(dev);
6761dd31 14860 unsigned int aligned_height;
79e53945 14861 int ret;
b321803d 14862 u32 pitch_limit, stride_alignment;
79e53945 14863
dd4916c5
DV
14864 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
14865
2a80eada
DV
14866 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
14867 /* Enforce that fb modifier and tiling mode match, but only for
14868 * X-tiled. This is needed for FBC. */
14869 if (!!(obj->tiling_mode == I915_TILING_X) !=
14870 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
14871 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
14872 return -EINVAL;
14873 }
14874 } else {
14875 if (obj->tiling_mode == I915_TILING_X)
14876 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
14877 else if (obj->tiling_mode == I915_TILING_Y) {
14878 DRM_DEBUG("No Y tiling for legacy addfb\n");
14879 return -EINVAL;
14880 }
14881 }
14882
9a8f0a12
TU
14883 /* Passed in modifier sanity checking. */
14884 switch (mode_cmd->modifier[0]) {
14885 case I915_FORMAT_MOD_Y_TILED:
14886 case I915_FORMAT_MOD_Yf_TILED:
14887 if (INTEL_INFO(dev)->gen < 9) {
14888 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
14889 mode_cmd->modifier[0]);
14890 return -EINVAL;
14891 }
14892 case DRM_FORMAT_MOD_NONE:
14893 case I915_FORMAT_MOD_X_TILED:
14894 break;
14895 default:
c0f40428
JB
14896 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
14897 mode_cmd->modifier[0]);
57cd6508 14898 return -EINVAL;
c16ed4be 14899 }
57cd6508 14900
7b49f948
VS
14901 stride_alignment = intel_fb_stride_alignment(dev_priv,
14902 mode_cmd->modifier[0],
b321803d
DL
14903 mode_cmd->pixel_format);
14904 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
14905 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
14906 mode_cmd->pitches[0], stride_alignment);
57cd6508 14907 return -EINVAL;
c16ed4be 14908 }
57cd6508 14909
b321803d
DL
14910 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
14911 mode_cmd->pixel_format);
a35cdaa0 14912 if (mode_cmd->pitches[0] > pitch_limit) {
b321803d
DL
14913 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
14914 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
2a80eada 14915 "tiled" : "linear",
a35cdaa0 14916 mode_cmd->pitches[0], pitch_limit);
5d7bd705 14917 return -EINVAL;
c16ed4be 14918 }
5d7bd705 14919
2a80eada 14920 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
c16ed4be
CW
14921 mode_cmd->pitches[0] != obj->stride) {
14922 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
14923 mode_cmd->pitches[0], obj->stride);
5d7bd705 14924 return -EINVAL;
c16ed4be 14925 }
5d7bd705 14926
57779d06 14927 /* Reject formats not supported by any plane early. */
308e5bcb 14928 switch (mode_cmd->pixel_format) {
57779d06 14929 case DRM_FORMAT_C8:
04b3924d
VS
14930 case DRM_FORMAT_RGB565:
14931 case DRM_FORMAT_XRGB8888:
14932 case DRM_FORMAT_ARGB8888:
57779d06
VS
14933 break;
14934 case DRM_FORMAT_XRGB1555:
c16ed4be 14935 if (INTEL_INFO(dev)->gen > 3) {
4ee62c76
VS
14936 DRM_DEBUG("unsupported pixel format: %s\n",
14937 drm_get_format_name(mode_cmd->pixel_format));
57779d06 14938 return -EINVAL;
c16ed4be 14939 }
57779d06 14940 break;
57779d06 14941 case DRM_FORMAT_ABGR8888:
666a4537
WB
14942 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
14943 INTEL_INFO(dev)->gen < 9) {
6c0fd451
DL
14944 DRM_DEBUG("unsupported pixel format: %s\n",
14945 drm_get_format_name(mode_cmd->pixel_format));
14946 return -EINVAL;
14947 }
14948 break;
14949 case DRM_FORMAT_XBGR8888:
04b3924d 14950 case DRM_FORMAT_XRGB2101010:
57779d06 14951 case DRM_FORMAT_XBGR2101010:
c16ed4be 14952 if (INTEL_INFO(dev)->gen < 4) {
4ee62c76
VS
14953 DRM_DEBUG("unsupported pixel format: %s\n",
14954 drm_get_format_name(mode_cmd->pixel_format));
57779d06 14955 return -EINVAL;
c16ed4be 14956 }
b5626747 14957 break;
7531208b 14958 case DRM_FORMAT_ABGR2101010:
666a4537 14959 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
7531208b
DL
14960 DRM_DEBUG("unsupported pixel format: %s\n",
14961 drm_get_format_name(mode_cmd->pixel_format));
14962 return -EINVAL;
14963 }
14964 break;
04b3924d
VS
14965 case DRM_FORMAT_YUYV:
14966 case DRM_FORMAT_UYVY:
14967 case DRM_FORMAT_YVYU:
14968 case DRM_FORMAT_VYUY:
c16ed4be 14969 if (INTEL_INFO(dev)->gen < 5) {
4ee62c76
VS
14970 DRM_DEBUG("unsupported pixel format: %s\n",
14971 drm_get_format_name(mode_cmd->pixel_format));
57779d06 14972 return -EINVAL;
c16ed4be 14973 }
57cd6508
CW
14974 break;
14975 default:
4ee62c76
VS
14976 DRM_DEBUG("unsupported pixel format: %s\n",
14977 drm_get_format_name(mode_cmd->pixel_format));
57cd6508
CW
14978 return -EINVAL;
14979 }
14980
90f9a336
VS
14981 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
14982 if (mode_cmd->offsets[0] != 0)
14983 return -EINVAL;
14984
ec2c981e 14985 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
091df6cb
DV
14986 mode_cmd->pixel_format,
14987 mode_cmd->modifier[0]);
53155c0a
DV
14988 /* FIXME drm helper for size checks (especially planar formats)? */
14989 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
14990 return -EINVAL;
14991
c7d73f6a
DV
14992 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
14993 intel_fb->obj = obj;
14994
2d7a215f
VS
14995 intel_fill_fb_info(dev_priv, &intel_fb->base);
14996
79e53945
JB
14997 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
14998 if (ret) {
14999 DRM_ERROR("framebuffer init failed %d\n", ret);
15000 return ret;
15001 }
15002
0b05e1e0
VS
15003 intel_fb->obj->framebuffer_references++;
15004
79e53945
JB
15005 return 0;
15006}
15007
79e53945
JB
15008static struct drm_framebuffer *
15009intel_user_framebuffer_create(struct drm_device *dev,
15010 struct drm_file *filp,
1eb83451 15011 const struct drm_mode_fb_cmd2 *user_mode_cmd)
79e53945 15012{
dcb1394e 15013 struct drm_framebuffer *fb;
05394f39 15014 struct drm_i915_gem_object *obj;
76dc3769 15015 struct drm_mode_fb_cmd2 mode_cmd = *user_mode_cmd;
79e53945 15016
308e5bcb 15017 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
76dc3769 15018 mode_cmd.handles[0]));
c8725226 15019 if (&obj->base == NULL)
cce13ff7 15020 return ERR_PTR(-ENOENT);
79e53945 15021
92907cbb 15022 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
dcb1394e
LW
15023 if (IS_ERR(fb))
15024 drm_gem_object_unreference_unlocked(&obj->base);
15025
15026 return fb;
79e53945
JB
15027}
15028
0695726e 15029#ifndef CONFIG_DRM_FBDEV_EMULATION
0632fef6 15030static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
4520f53a
DV
15031{
15032}
15033#endif
15034
79e53945 15035static const struct drm_mode_config_funcs intel_mode_funcs = {
79e53945 15036 .fb_create = intel_user_framebuffer_create,
0632fef6 15037 .output_poll_changed = intel_fbdev_output_poll_changed,
5ee67f1c
MR
15038 .atomic_check = intel_atomic_check,
15039 .atomic_commit = intel_atomic_commit,
de419ab6
ML
15040 .atomic_state_alloc = intel_atomic_state_alloc,
15041 .atomic_state_clear = intel_atomic_state_clear,
79e53945
JB
15042};
15043
88212941
ID
15044/**
15045 * intel_init_display_hooks - initialize the display modesetting hooks
15046 * @dev_priv: device private
15047 */
15048void intel_init_display_hooks(struct drm_i915_private *dev_priv)
e70236a8 15049{
88212941 15050 if (INTEL_INFO(dev_priv)->gen >= 9) {
bc8d7dff 15051 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
15052 dev_priv->display.get_initial_plane_config =
15053 skylake_get_initial_plane_config;
bc8d7dff
DL
15054 dev_priv->display.crtc_compute_clock =
15055 haswell_crtc_compute_clock;
15056 dev_priv->display.crtc_enable = haswell_crtc_enable;
15057 dev_priv->display.crtc_disable = haswell_crtc_disable;
88212941 15058 } else if (HAS_DDI(dev_priv)) {
0e8ffe1b 15059 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
15060 dev_priv->display.get_initial_plane_config =
15061 ironlake_get_initial_plane_config;
797d0259
ACO
15062 dev_priv->display.crtc_compute_clock =
15063 haswell_crtc_compute_clock;
4f771f10
PZ
15064 dev_priv->display.crtc_enable = haswell_crtc_enable;
15065 dev_priv->display.crtc_disable = haswell_crtc_disable;
88212941 15066 } else if (HAS_PCH_SPLIT(dev_priv)) {
0e8ffe1b 15067 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
5724dbd1
DL
15068 dev_priv->display.get_initial_plane_config =
15069 ironlake_get_initial_plane_config;
3fb37703
ACO
15070 dev_priv->display.crtc_compute_clock =
15071 ironlake_crtc_compute_clock;
76e5a89c
DV
15072 dev_priv->display.crtc_enable = ironlake_crtc_enable;
15073 dev_priv->display.crtc_disable = ironlake_crtc_disable;
65b3d6a9 15074 } else if (IS_CHERRYVIEW(dev_priv)) {
89b667f8 15075 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
15076 dev_priv->display.get_initial_plane_config =
15077 i9xx_get_initial_plane_config;
65b3d6a9
ACO
15078 dev_priv->display.crtc_compute_clock = chv_crtc_compute_clock;
15079 dev_priv->display.crtc_enable = valleyview_crtc_enable;
15080 dev_priv->display.crtc_disable = i9xx_crtc_disable;
15081 } else if (IS_VALLEYVIEW(dev_priv)) {
15082 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15083 dev_priv->display.get_initial_plane_config =
15084 i9xx_get_initial_plane_config;
15085 dev_priv->display.crtc_compute_clock = vlv_crtc_compute_clock;
89b667f8
JB
15086 dev_priv->display.crtc_enable = valleyview_crtc_enable;
15087 dev_priv->display.crtc_disable = i9xx_crtc_disable;
19ec6693
ACO
15088 } else if (IS_G4X(dev_priv)) {
15089 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15090 dev_priv->display.get_initial_plane_config =
15091 i9xx_get_initial_plane_config;
15092 dev_priv->display.crtc_compute_clock = g4x_crtc_compute_clock;
15093 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15094 dev_priv->display.crtc_disable = i9xx_crtc_disable;
70e8aa21
ACO
15095 } else if (IS_PINEVIEW(dev_priv)) {
15096 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15097 dev_priv->display.get_initial_plane_config =
15098 i9xx_get_initial_plane_config;
15099 dev_priv->display.crtc_compute_clock = pnv_crtc_compute_clock;
15100 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15101 dev_priv->display.crtc_disable = i9xx_crtc_disable;
81c97f52 15102 } else if (!IS_GEN2(dev_priv)) {
0e8ffe1b 15103 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
15104 dev_priv->display.get_initial_plane_config =
15105 i9xx_get_initial_plane_config;
d6dfee7a 15106 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
76e5a89c
DV
15107 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15108 dev_priv->display.crtc_disable = i9xx_crtc_disable;
81c97f52
ACO
15109 } else {
15110 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15111 dev_priv->display.get_initial_plane_config =
15112 i9xx_get_initial_plane_config;
15113 dev_priv->display.crtc_compute_clock = i8xx_crtc_compute_clock;
15114 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15115 dev_priv->display.crtc_disable = i9xx_crtc_disable;
f564048e 15116 }
e70236a8 15117
e70236a8 15118 /* Returns the core display clock speed */
88212941 15119 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
1652d19e
VS
15120 dev_priv->display.get_display_clock_speed =
15121 skylake_get_display_clock_speed;
88212941 15122 else if (IS_BROXTON(dev_priv))
acd3f3d3
BP
15123 dev_priv->display.get_display_clock_speed =
15124 broxton_get_display_clock_speed;
88212941 15125 else if (IS_BROADWELL(dev_priv))
1652d19e
VS
15126 dev_priv->display.get_display_clock_speed =
15127 broadwell_get_display_clock_speed;
88212941 15128 else if (IS_HASWELL(dev_priv))
1652d19e
VS
15129 dev_priv->display.get_display_clock_speed =
15130 haswell_get_display_clock_speed;
88212941 15131 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
25eb05fc
JB
15132 dev_priv->display.get_display_clock_speed =
15133 valleyview_get_display_clock_speed;
88212941 15134 else if (IS_GEN5(dev_priv))
b37a6434
VS
15135 dev_priv->display.get_display_clock_speed =
15136 ilk_get_display_clock_speed;
88212941
ID
15137 else if (IS_I945G(dev_priv) || IS_BROADWATER(dev_priv) ||
15138 IS_GEN6(dev_priv) || IS_IVYBRIDGE(dev_priv))
e70236a8
JB
15139 dev_priv->display.get_display_clock_speed =
15140 i945_get_display_clock_speed;
88212941 15141 else if (IS_GM45(dev_priv))
34edce2f
VS
15142 dev_priv->display.get_display_clock_speed =
15143 gm45_get_display_clock_speed;
88212941 15144 else if (IS_CRESTLINE(dev_priv))
34edce2f
VS
15145 dev_priv->display.get_display_clock_speed =
15146 i965gm_get_display_clock_speed;
88212941 15147 else if (IS_PINEVIEW(dev_priv))
34edce2f
VS
15148 dev_priv->display.get_display_clock_speed =
15149 pnv_get_display_clock_speed;
88212941 15150 else if (IS_G33(dev_priv) || IS_G4X(dev_priv))
34edce2f
VS
15151 dev_priv->display.get_display_clock_speed =
15152 g33_get_display_clock_speed;
88212941 15153 else if (IS_I915G(dev_priv))
e70236a8
JB
15154 dev_priv->display.get_display_clock_speed =
15155 i915_get_display_clock_speed;
88212941 15156 else if (IS_I945GM(dev_priv) || IS_845G(dev_priv))
e70236a8
JB
15157 dev_priv->display.get_display_clock_speed =
15158 i9xx_misc_get_display_clock_speed;
88212941 15159 else if (IS_I915GM(dev_priv))
e70236a8
JB
15160 dev_priv->display.get_display_clock_speed =
15161 i915gm_get_display_clock_speed;
88212941 15162 else if (IS_I865G(dev_priv))
e70236a8
JB
15163 dev_priv->display.get_display_clock_speed =
15164 i865_get_display_clock_speed;
88212941 15165 else if (IS_I85X(dev_priv))
e70236a8 15166 dev_priv->display.get_display_clock_speed =
1b1d2716 15167 i85x_get_display_clock_speed;
623e01e5 15168 else { /* 830 */
88212941 15169 WARN(!IS_I830(dev_priv), "Unknown platform. Assuming 133 MHz CDCLK\n");
e70236a8
JB
15170 dev_priv->display.get_display_clock_speed =
15171 i830_get_display_clock_speed;
623e01e5 15172 }
e70236a8 15173
88212941 15174 if (IS_GEN5(dev_priv)) {
3bb11b53 15175 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
88212941 15176 } else if (IS_GEN6(dev_priv)) {
3bb11b53 15177 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
88212941 15178 } else if (IS_IVYBRIDGE(dev_priv)) {
3bb11b53
SJ
15179 /* FIXME: detect B0+ stepping and use auto training */
15180 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
88212941 15181 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
3bb11b53 15182 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
445e780b
VS
15183 }
15184
15185 if (IS_BROADWELL(dev_priv)) {
15186 dev_priv->display.modeset_commit_cdclk =
15187 broadwell_modeset_commit_cdclk;
15188 dev_priv->display.modeset_calc_cdclk =
15189 broadwell_modeset_calc_cdclk;
88212941 15190 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
27c329ed
ML
15191 dev_priv->display.modeset_commit_cdclk =
15192 valleyview_modeset_commit_cdclk;
15193 dev_priv->display.modeset_calc_cdclk =
15194 valleyview_modeset_calc_cdclk;
88212941 15195 } else if (IS_BROXTON(dev_priv)) {
27c329ed
ML
15196 dev_priv->display.modeset_commit_cdclk =
15197 broxton_modeset_commit_cdclk;
15198 dev_priv->display.modeset_calc_cdclk =
15199 broxton_modeset_calc_cdclk;
c89e39f3
CT
15200 } else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
15201 dev_priv->display.modeset_commit_cdclk =
15202 skl_modeset_commit_cdclk;
15203 dev_priv->display.modeset_calc_cdclk =
15204 skl_modeset_calc_cdclk;
e70236a8 15205 }
5a21b665
DV
15206
15207 switch (INTEL_INFO(dev_priv)->gen) {
15208 case 2:
15209 dev_priv->display.queue_flip = intel_gen2_queue_flip;
15210 break;
15211
15212 case 3:
15213 dev_priv->display.queue_flip = intel_gen3_queue_flip;
15214 break;
15215
15216 case 4:
15217 case 5:
15218 dev_priv->display.queue_flip = intel_gen4_queue_flip;
15219 break;
15220
15221 case 6:
15222 dev_priv->display.queue_flip = intel_gen6_queue_flip;
15223 break;
15224 case 7:
15225 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
15226 dev_priv->display.queue_flip = intel_gen7_queue_flip;
15227 break;
15228 case 9:
15229 /* Drop through - unsupported since execlist only. */
15230 default:
15231 /* Default just returns -ENODEV to indicate unsupported */
15232 dev_priv->display.queue_flip = intel_default_queue_flip;
15233 }
e70236a8
JB
15234}
15235
b690e96c
JB
15236/*
15237 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
15238 * resume, or other times. This quirk makes sure that's the case for
15239 * affected systems.
15240 */
0206e353 15241static void quirk_pipea_force(struct drm_device *dev)
b690e96c
JB
15242{
15243 struct drm_i915_private *dev_priv = dev->dev_private;
15244
15245 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
bc0daf48 15246 DRM_INFO("applying pipe a force quirk\n");
b690e96c
JB
15247}
15248
b6b5d049
VS
15249static void quirk_pipeb_force(struct drm_device *dev)
15250{
15251 struct drm_i915_private *dev_priv = dev->dev_private;
15252
15253 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
15254 DRM_INFO("applying pipe b force quirk\n");
15255}
15256
435793df
KP
15257/*
15258 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
15259 */
15260static void quirk_ssc_force_disable(struct drm_device *dev)
15261{
15262 struct drm_i915_private *dev_priv = dev->dev_private;
15263 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
bc0daf48 15264 DRM_INFO("applying lvds SSC disable quirk\n");
435793df
KP
15265}
15266
4dca20ef 15267/*
5a15ab5b
CE
15268 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
15269 * brightness value
4dca20ef
CE
15270 */
15271static void quirk_invert_brightness(struct drm_device *dev)
15272{
15273 struct drm_i915_private *dev_priv = dev->dev_private;
15274 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
bc0daf48 15275 DRM_INFO("applying inverted panel brightness quirk\n");
435793df
KP
15276}
15277
9c72cc6f
SD
15278/* Some VBT's incorrectly indicate no backlight is present */
15279static void quirk_backlight_present(struct drm_device *dev)
15280{
15281 struct drm_i915_private *dev_priv = dev->dev_private;
15282 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
15283 DRM_INFO("applying backlight present quirk\n");
15284}
15285
b690e96c
JB
15286struct intel_quirk {
15287 int device;
15288 int subsystem_vendor;
15289 int subsystem_device;
15290 void (*hook)(struct drm_device *dev);
15291};
15292
5f85f176
EE
15293/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
15294struct intel_dmi_quirk {
15295 void (*hook)(struct drm_device *dev);
15296 const struct dmi_system_id (*dmi_id_list)[];
15297};
15298
15299static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
15300{
15301 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
15302 return 1;
15303}
15304
15305static const struct intel_dmi_quirk intel_dmi_quirks[] = {
15306 {
15307 .dmi_id_list = &(const struct dmi_system_id[]) {
15308 {
15309 .callback = intel_dmi_reverse_brightness,
15310 .ident = "NCR Corporation",
15311 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
15312 DMI_MATCH(DMI_PRODUCT_NAME, ""),
15313 },
15314 },
15315 { } /* terminating entry */
15316 },
15317 .hook = quirk_invert_brightness,
15318 },
15319};
15320
c43b5634 15321static struct intel_quirk intel_quirks[] = {
b690e96c
JB
15322 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
15323 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
15324
b690e96c
JB
15325 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
15326 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
15327
5f080c0f
VS
15328 /* 830 needs to leave pipe A & dpll A up */
15329 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
15330
b6b5d049
VS
15331 /* 830 needs to leave pipe B & dpll B up */
15332 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
15333
435793df
KP
15334 /* Lenovo U160 cannot use SSC on LVDS */
15335 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
070d329a
MAS
15336
15337 /* Sony Vaio Y cannot use SSC on LVDS */
15338 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
5a15ab5b 15339
be505f64
AH
15340 /* Acer Aspire 5734Z must invert backlight brightness */
15341 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
15342
15343 /* Acer/eMachines G725 */
15344 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
15345
15346 /* Acer/eMachines e725 */
15347 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
15348
15349 /* Acer/Packard Bell NCL20 */
15350 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
15351
15352 /* Acer Aspire 4736Z */
15353 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
0f540c3a
JN
15354
15355 /* Acer Aspire 5336 */
15356 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
2e93a1aa
SD
15357
15358 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
15359 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
d4967d8c 15360
dfb3d47b
SD
15361 /* Acer C720 Chromebook (Core i3 4005U) */
15362 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
15363
b2a9601c 15364 /* Apple Macbook 2,1 (Core 2 T7400) */
15365 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
15366
1b9448b0
JN
15367 /* Apple Macbook 4,1 */
15368 { 0x2a02, 0x106b, 0x00a1, quirk_backlight_present },
15369
d4967d8c
SD
15370 /* Toshiba CB35 Chromebook (Celeron 2955U) */
15371 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
724cb06f
SD
15372
15373 /* HP Chromebook 14 (Celeron 2955U) */
15374 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
cf6f0af9
JN
15375
15376 /* Dell Chromebook 11 */
15377 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
9be64eee
JN
15378
15379 /* Dell Chromebook 11 (2015 version) */
15380 { 0x0a16, 0x1028, 0x0a35, quirk_backlight_present },
b690e96c
JB
15381};
15382
15383static void intel_init_quirks(struct drm_device *dev)
15384{
15385 struct pci_dev *d = dev->pdev;
15386 int i;
15387
15388 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
15389 struct intel_quirk *q = &intel_quirks[i];
15390
15391 if (d->device == q->device &&
15392 (d->subsystem_vendor == q->subsystem_vendor ||
15393 q->subsystem_vendor == PCI_ANY_ID) &&
15394 (d->subsystem_device == q->subsystem_device ||
15395 q->subsystem_device == PCI_ANY_ID))
15396 q->hook(dev);
15397 }
5f85f176
EE
15398 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
15399 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
15400 intel_dmi_quirks[i].hook(dev);
15401 }
b690e96c
JB
15402}
15403
9cce37f4
JB
15404/* Disable the VGA plane that we never use */
15405static void i915_disable_vga(struct drm_device *dev)
15406{
15407 struct drm_i915_private *dev_priv = dev->dev_private;
15408 u8 sr1;
f0f59a00 15409 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
9cce37f4 15410
2b37c616 15411 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
9cce37f4 15412 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
3fdcf431 15413 outb(SR01, VGA_SR_INDEX);
9cce37f4
JB
15414 sr1 = inb(VGA_SR_DATA);
15415 outb(sr1 | 1<<5, VGA_SR_DATA);
15416 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
15417 udelay(300);
15418
01f5a626 15419 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
9cce37f4
JB
15420 POSTING_READ(vga_reg);
15421}
15422
f817586c
DV
15423void intel_modeset_init_hw(struct drm_device *dev)
15424{
1a617b77
ML
15425 struct drm_i915_private *dev_priv = dev->dev_private;
15426
b6283055 15427 intel_update_cdclk(dev);
1a617b77
ML
15428
15429 dev_priv->atomic_cdclk_freq = dev_priv->cdclk_freq;
15430
f817586c 15431 intel_init_clock_gating(dev);
dc97997a 15432 intel_enable_gt_powersave(dev_priv);
f817586c
DV
15433}
15434
d93c0372
MR
15435/*
15436 * Calculate what we think the watermarks should be for the state we've read
15437 * out of the hardware and then immediately program those watermarks so that
15438 * we ensure the hardware settings match our internal state.
15439 *
15440 * We can calculate what we think WM's should be by creating a duplicate of the
15441 * current state (which was constructed during hardware readout) and running it
15442 * through the atomic check code to calculate new watermark values in the
15443 * state object.
15444 */
15445static void sanitize_watermarks(struct drm_device *dev)
15446{
15447 struct drm_i915_private *dev_priv = to_i915(dev);
15448 struct drm_atomic_state *state;
15449 struct drm_crtc *crtc;
15450 struct drm_crtc_state *cstate;
15451 struct drm_modeset_acquire_ctx ctx;
15452 int ret;
15453 int i;
15454
15455 /* Only supported on platforms that use atomic watermark design */
ed4a6a7c 15456 if (!dev_priv->display.optimize_watermarks)
d93c0372
MR
15457 return;
15458
15459 /*
15460 * We need to hold connection_mutex before calling duplicate_state so
15461 * that the connector loop is protected.
15462 */
15463 drm_modeset_acquire_init(&ctx, 0);
15464retry:
0cd1262d 15465 ret = drm_modeset_lock_all_ctx(dev, &ctx);
d93c0372
MR
15466 if (ret == -EDEADLK) {
15467 drm_modeset_backoff(&ctx);
15468 goto retry;
15469 } else if (WARN_ON(ret)) {
0cd1262d 15470 goto fail;
d93c0372
MR
15471 }
15472
15473 state = drm_atomic_helper_duplicate_state(dev, &ctx);
15474 if (WARN_ON(IS_ERR(state)))
0cd1262d 15475 goto fail;
d93c0372 15476
ed4a6a7c
MR
15477 /*
15478 * Hardware readout is the only time we don't want to calculate
15479 * intermediate watermarks (since we don't trust the current
15480 * watermarks).
15481 */
15482 to_intel_atomic_state(state)->skip_intermediate_wm = true;
15483
d93c0372
MR
15484 ret = intel_atomic_check(dev, state);
15485 if (ret) {
15486 /*
15487 * If we fail here, it means that the hardware appears to be
15488 * programmed in a way that shouldn't be possible, given our
15489 * understanding of watermark requirements. This might mean a
15490 * mistake in the hardware readout code or a mistake in the
15491 * watermark calculations for a given platform. Raise a WARN
15492 * so that this is noticeable.
15493 *
15494 * If this actually happens, we'll have to just leave the
15495 * BIOS-programmed watermarks untouched and hope for the best.
15496 */
15497 WARN(true, "Could not determine valid watermarks for inherited state\n");
0cd1262d 15498 goto fail;
d93c0372
MR
15499 }
15500
15501 /* Write calculated watermark values back */
d93c0372
MR
15502 for_each_crtc_in_state(state, crtc, cstate, i) {
15503 struct intel_crtc_state *cs = to_intel_crtc_state(cstate);
15504
ed4a6a7c
MR
15505 cs->wm.need_postvbl_update = true;
15506 dev_priv->display.optimize_watermarks(cs);
d93c0372
MR
15507 }
15508
15509 drm_atomic_state_free(state);
0cd1262d 15510fail:
d93c0372
MR
15511 drm_modeset_drop_locks(&ctx);
15512 drm_modeset_acquire_fini(&ctx);
15513}
15514
79e53945
JB
15515void intel_modeset_init(struct drm_device *dev)
15516{
72e96d64
JL
15517 struct drm_i915_private *dev_priv = to_i915(dev);
15518 struct i915_ggtt *ggtt = &dev_priv->ggtt;
1fe47785 15519 int sprite, ret;
8cc87b75 15520 enum pipe pipe;
46f297fb 15521 struct intel_crtc *crtc;
79e53945
JB
15522
15523 drm_mode_config_init(dev);
15524
15525 dev->mode_config.min_width = 0;
15526 dev->mode_config.min_height = 0;
15527
019d96cb
DA
15528 dev->mode_config.preferred_depth = 24;
15529 dev->mode_config.prefer_shadow = 1;
15530
25bab385
TU
15531 dev->mode_config.allow_fb_modifiers = true;
15532
e6ecefaa 15533 dev->mode_config.funcs = &intel_mode_funcs;
79e53945 15534
b690e96c
JB
15535 intel_init_quirks(dev);
15536
1fa61106
ED
15537 intel_init_pm(dev);
15538
e3c74757
BW
15539 if (INTEL_INFO(dev)->num_pipes == 0)
15540 return;
15541
69f92f67
LW
15542 /*
15543 * There may be no VBT; and if the BIOS enabled SSC we can
15544 * just keep using it to avoid unnecessary flicker. Whereas if the
15545 * BIOS isn't using it, don't assume it will work even if the VBT
15546 * indicates as much.
15547 */
15548 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
15549 bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
15550 DREF_SSC1_ENABLE);
15551
15552 if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) {
15553 DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n",
15554 bios_lvds_use_ssc ? "en" : "dis",
15555 dev_priv->vbt.lvds_use_ssc ? "en" : "dis");
15556 dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc;
15557 }
15558 }
15559
a6c45cf0
CW
15560 if (IS_GEN2(dev)) {
15561 dev->mode_config.max_width = 2048;
15562 dev->mode_config.max_height = 2048;
15563 } else if (IS_GEN3(dev)) {
5e4d6fa7
KP
15564 dev->mode_config.max_width = 4096;
15565 dev->mode_config.max_height = 4096;
79e53945 15566 } else {
a6c45cf0
CW
15567 dev->mode_config.max_width = 8192;
15568 dev->mode_config.max_height = 8192;
79e53945 15569 }
068be561 15570
dc41c154
VS
15571 if (IS_845G(dev) || IS_I865G(dev)) {
15572 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
15573 dev->mode_config.cursor_height = 1023;
15574 } else if (IS_GEN2(dev)) {
068be561
DL
15575 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
15576 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
15577 } else {
15578 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
15579 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
15580 }
15581
72e96d64 15582 dev->mode_config.fb_base = ggtt->mappable_base;
79e53945 15583
28c97730 15584 DRM_DEBUG_KMS("%d display pipe%s available.\n",
7eb552ae
BW
15585 INTEL_INFO(dev)->num_pipes,
15586 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
79e53945 15587
055e393f 15588 for_each_pipe(dev_priv, pipe) {
8cc87b75 15589 intel_crtc_init(dev, pipe);
3bdcfc0c 15590 for_each_sprite(dev_priv, pipe, sprite) {
1fe47785 15591 ret = intel_plane_init(dev, pipe, sprite);
7f1f3851 15592 if (ret)
06da8da2 15593 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
1fe47785 15594 pipe_name(pipe), sprite_name(pipe, sprite), ret);
7f1f3851 15595 }
79e53945
JB
15596 }
15597
bfa7df01
VS
15598 intel_update_czclk(dev_priv);
15599 intel_update_cdclk(dev);
15600
e72f9fbf 15601 intel_shared_dpll_init(dev);
ee7b9f93 15602
b2045352
VS
15603 if (dev_priv->max_cdclk_freq == 0)
15604 intel_update_max_cdclk(dev);
15605
9cce37f4
JB
15606 /* Just disable it once at startup */
15607 i915_disable_vga(dev);
79e53945 15608 intel_setup_outputs(dev);
11be49eb 15609
6e9f798d 15610 drm_modeset_lock_all(dev);
043e9bda 15611 intel_modeset_setup_hw_state(dev);
6e9f798d 15612 drm_modeset_unlock_all(dev);
46f297fb 15613
d3fcc808 15614 for_each_intel_crtc(dev, crtc) {
eeebeac5
ML
15615 struct intel_initial_plane_config plane_config = {};
15616
46f297fb
JB
15617 if (!crtc->active)
15618 continue;
15619
46f297fb 15620 /*
46f297fb
JB
15621 * Note that reserving the BIOS fb up front prevents us
15622 * from stuffing other stolen allocations like the ring
15623 * on top. This prevents some ugliness at boot time, and
15624 * can even allow for smooth boot transitions if the BIOS
15625 * fb is large enough for the active pipe configuration.
15626 */
eeebeac5
ML
15627 dev_priv->display.get_initial_plane_config(crtc,
15628 &plane_config);
15629
15630 /*
15631 * If the fb is shared between multiple heads, we'll
15632 * just get the first one.
15633 */
15634 intel_find_initial_plane_obj(crtc, &plane_config);
46f297fb 15635 }
d93c0372
MR
15636
15637 /*
15638 * Make sure hardware watermarks really match the state we read out.
15639 * Note that we need to do this after reconstructing the BIOS fb's
15640 * since the watermark calculation done here will use pstate->fb.
15641 */
15642 sanitize_watermarks(dev);
2c7111db
CW
15643}
15644
7fad798e
DV
15645static void intel_enable_pipe_a(struct drm_device *dev)
15646{
15647 struct intel_connector *connector;
15648 struct drm_connector *crt = NULL;
15649 struct intel_load_detect_pipe load_detect_temp;
208bf9fd 15650 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
7fad798e
DV
15651
15652 /* We can't just switch on the pipe A, we need to set things up with a
15653 * proper mode and output configuration. As a gross hack, enable pipe A
15654 * by enabling the load detect pipe once. */
3a3371ff 15655 for_each_intel_connector(dev, connector) {
7fad798e
DV
15656 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
15657 crt = &connector->base;
15658 break;
15659 }
15660 }
15661
15662 if (!crt)
15663 return;
15664
208bf9fd 15665 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
49172fee 15666 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
7fad798e
DV
15667}
15668
fa555837
DV
15669static bool
15670intel_check_plane_mapping(struct intel_crtc *crtc)
15671{
7eb552ae
BW
15672 struct drm_device *dev = crtc->base.dev;
15673 struct drm_i915_private *dev_priv = dev->dev_private;
649636ef 15674 u32 val;
fa555837 15675
7eb552ae 15676 if (INTEL_INFO(dev)->num_pipes == 1)
fa555837
DV
15677 return true;
15678
649636ef 15679 val = I915_READ(DSPCNTR(!crtc->plane));
fa555837
DV
15680
15681 if ((val & DISPLAY_PLANE_ENABLE) &&
15682 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
15683 return false;
15684
15685 return true;
15686}
15687
02e93c35
VS
15688static bool intel_crtc_has_encoders(struct intel_crtc *crtc)
15689{
15690 struct drm_device *dev = crtc->base.dev;
15691 struct intel_encoder *encoder;
15692
15693 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
15694 return true;
15695
15696 return false;
15697}
15698
dd756198
VS
15699static bool intel_encoder_has_connectors(struct intel_encoder *encoder)
15700{
15701 struct drm_device *dev = encoder->base.dev;
15702 struct intel_connector *connector;
15703
15704 for_each_connector_on_encoder(dev, &encoder->base, connector)
15705 return true;
15706
15707 return false;
15708}
15709
24929352
DV
15710static void intel_sanitize_crtc(struct intel_crtc *crtc)
15711{
15712 struct drm_device *dev = crtc->base.dev;
15713 struct drm_i915_private *dev_priv = dev->dev_private;
4d1de975 15714 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
24929352 15715
24929352 15716 /* Clear any frame start delays used for debugging left by the BIOS */
4d1de975
JN
15717 if (!transcoder_is_dsi(cpu_transcoder)) {
15718 i915_reg_t reg = PIPECONF(cpu_transcoder);
15719
15720 I915_WRITE(reg,
15721 I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
15722 }
24929352 15723
d3eaf884 15724 /* restore vblank interrupts to correct state */
9625604c 15725 drm_crtc_vblank_reset(&crtc->base);
d297e103 15726 if (crtc->active) {
f9cd7b88
VS
15727 struct intel_plane *plane;
15728
9625604c 15729 drm_crtc_vblank_on(&crtc->base);
f9cd7b88
VS
15730
15731 /* Disable everything but the primary plane */
15732 for_each_intel_plane_on_crtc(dev, crtc, plane) {
15733 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
15734 continue;
15735
15736 plane->disable_plane(&plane->base, &crtc->base);
15737 }
9625604c 15738 }
d3eaf884 15739
24929352 15740 /* We need to sanitize the plane -> pipe mapping first because this will
fa555837
DV
15741 * disable the crtc (and hence change the state) if it is wrong. Note
15742 * that gen4+ has a fixed plane -> pipe mapping. */
15743 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
24929352
DV
15744 bool plane;
15745
24929352
DV
15746 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
15747 crtc->base.base.id);
15748
15749 /* Pipe has the wrong plane attached and the plane is active.
15750 * Temporarily change the plane mapping and disable everything
15751 * ... */
15752 plane = crtc->plane;
b70709a6 15753 to_intel_plane_state(crtc->base.primary->state)->visible = true;
24929352 15754 crtc->plane = !plane;
b17d48e2 15755 intel_crtc_disable_noatomic(&crtc->base);
24929352 15756 crtc->plane = plane;
24929352 15757 }
24929352 15758
7fad798e
DV
15759 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
15760 crtc->pipe == PIPE_A && !crtc->active) {
15761 /* BIOS forgot to enable pipe A, this mostly happens after
15762 * resume. Force-enable the pipe to fix this, the update_dpms
15763 * call below we restore the pipe to the right state, but leave
15764 * the required bits on. */
15765 intel_enable_pipe_a(dev);
15766 }
15767
24929352
DV
15768 /* Adjust the state of the output pipe according to whether we
15769 * have active connectors/encoders. */
842e0307 15770 if (crtc->active && !intel_crtc_has_encoders(crtc))
b17d48e2 15771 intel_crtc_disable_noatomic(&crtc->base);
24929352 15772
a3ed6aad 15773 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
4cc31489
DV
15774 /*
15775 * We start out with underrun reporting disabled to avoid races.
15776 * For correct bookkeeping mark this on active crtcs.
15777 *
c5ab3bc0
DV
15778 * Also on gmch platforms we dont have any hardware bits to
15779 * disable the underrun reporting. Which means we need to start
15780 * out with underrun reporting disabled also on inactive pipes,
15781 * since otherwise we'll complain about the garbage we read when
15782 * e.g. coming up after runtime pm.
15783 *
4cc31489
DV
15784 * No protection against concurrent access is required - at
15785 * worst a fifo underrun happens which also sets this to false.
15786 */
15787 crtc->cpu_fifo_underrun_disabled = true;
15788 crtc->pch_fifo_underrun_disabled = true;
15789 }
24929352
DV
15790}
15791
15792static void intel_sanitize_encoder(struct intel_encoder *encoder)
15793{
15794 struct intel_connector *connector;
15795 struct drm_device *dev = encoder->base.dev;
15796
15797 /* We need to check both for a crtc link (meaning that the
15798 * encoder is active and trying to read from a pipe) and the
15799 * pipe itself being active. */
15800 bool has_active_crtc = encoder->base.crtc &&
15801 to_intel_crtc(encoder->base.crtc)->active;
15802
dd756198 15803 if (intel_encoder_has_connectors(encoder) && !has_active_crtc) {
24929352
DV
15804 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
15805 encoder->base.base.id,
8e329a03 15806 encoder->base.name);
24929352
DV
15807
15808 /* Connector is active, but has no active pipe. This is
15809 * fallout from our resume register restoring. Disable
15810 * the encoder manually again. */
15811 if (encoder->base.crtc) {
15812 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
15813 encoder->base.base.id,
8e329a03 15814 encoder->base.name);
24929352 15815 encoder->disable(encoder);
a62d1497
VS
15816 if (encoder->post_disable)
15817 encoder->post_disable(encoder);
24929352 15818 }
7f1950fb 15819 encoder->base.crtc = NULL;
24929352
DV
15820
15821 /* Inconsistent output/port/pipe state happens presumably due to
15822 * a bug in one of the get_hw_state functions. Or someplace else
15823 * in our code, like the register restore mess on resume. Clamp
15824 * things to off as a safer default. */
3a3371ff 15825 for_each_intel_connector(dev, connector) {
24929352
DV
15826 if (connector->encoder != encoder)
15827 continue;
7f1950fb
EE
15828 connector->base.dpms = DRM_MODE_DPMS_OFF;
15829 connector->base.encoder = NULL;
24929352
DV
15830 }
15831 }
15832 /* Enabled encoders without active connectors will be fixed in
15833 * the crtc fixup. */
15834}
15835
04098753 15836void i915_redisable_vga_power_on(struct drm_device *dev)
0fde901f
KM
15837{
15838 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 15839 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
0fde901f 15840
04098753
ID
15841 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
15842 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
15843 i915_disable_vga(dev);
15844 }
15845}
15846
15847void i915_redisable_vga(struct drm_device *dev)
15848{
15849 struct drm_i915_private *dev_priv = dev->dev_private;
15850
8dc8a27c
PZ
15851 /* This function can be called both from intel_modeset_setup_hw_state or
15852 * at a very early point in our resume sequence, where the power well
15853 * structures are not yet restored. Since this function is at a very
15854 * paranoid "someone might have enabled VGA while we were not looking"
15855 * level, just check if the power well is enabled instead of trying to
15856 * follow the "don't touch the power well if we don't need it" policy
15857 * the rest of the driver uses. */
6392f847 15858 if (!intel_display_power_get_if_enabled(dev_priv, POWER_DOMAIN_VGA))
8dc8a27c
PZ
15859 return;
15860
04098753 15861 i915_redisable_vga_power_on(dev);
6392f847
ID
15862
15863 intel_display_power_put(dev_priv, POWER_DOMAIN_VGA);
0fde901f
KM
15864}
15865
f9cd7b88 15866static bool primary_get_hw_state(struct intel_plane *plane)
98ec7739 15867{
f9cd7b88 15868 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
98ec7739 15869
f9cd7b88 15870 return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE;
d032ffa0
ML
15871}
15872
f9cd7b88
VS
15873/* FIXME read out full plane state for all planes */
15874static void readout_plane_state(struct intel_crtc *crtc)
d032ffa0 15875{
b26d3ea3 15876 struct drm_plane *primary = crtc->base.primary;
f9cd7b88 15877 struct intel_plane_state *plane_state =
b26d3ea3 15878 to_intel_plane_state(primary->state);
d032ffa0 15879
19b8d387 15880 plane_state->visible = crtc->active &&
b26d3ea3
ML
15881 primary_get_hw_state(to_intel_plane(primary));
15882
15883 if (plane_state->visible)
15884 crtc->base.state->plane_mask |= 1 << drm_plane_index(primary);
98ec7739
VS
15885}
15886
30e984df 15887static void intel_modeset_readout_hw_state(struct drm_device *dev)
24929352
DV
15888{
15889 struct drm_i915_private *dev_priv = dev->dev_private;
15890 enum pipe pipe;
24929352
DV
15891 struct intel_crtc *crtc;
15892 struct intel_encoder *encoder;
15893 struct intel_connector *connector;
5358901f 15894 int i;
24929352 15895
565602d7
ML
15896 dev_priv->active_crtcs = 0;
15897
d3fcc808 15898 for_each_intel_crtc(dev, crtc) {
565602d7
ML
15899 struct intel_crtc_state *crtc_state = crtc->config;
15900 int pixclk = 0;
3b117c8f 15901
565602d7
ML
15902 __drm_atomic_helper_crtc_destroy_state(&crtc->base, &crtc_state->base);
15903 memset(crtc_state, 0, sizeof(*crtc_state));
15904 crtc_state->base.crtc = &crtc->base;
24929352 15905
565602d7
ML
15906 crtc_state->base.active = crtc_state->base.enable =
15907 dev_priv->display.get_pipe_config(crtc, crtc_state);
15908
15909 crtc->base.enabled = crtc_state->base.enable;
15910 crtc->active = crtc_state->base.active;
15911
15912 if (crtc_state->base.active) {
15913 dev_priv->active_crtcs |= 1 << crtc->pipe;
15914
c89e39f3 15915 if (INTEL_GEN(dev_priv) >= 9 || IS_BROADWELL(dev_priv))
565602d7 15916 pixclk = ilk_pipe_pixel_rate(crtc_state);
9558d15d 15917 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
565602d7
ML
15918 pixclk = crtc_state->base.adjusted_mode.crtc_clock;
15919 else
15920 WARN_ON(dev_priv->display.modeset_calc_cdclk);
9558d15d
VS
15921
15922 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
15923 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
15924 pixclk = DIV_ROUND_UP(pixclk * 100, 95);
565602d7
ML
15925 }
15926
15927 dev_priv->min_pixclk[crtc->pipe] = pixclk;
b70709a6 15928
f9cd7b88 15929 readout_plane_state(crtc);
24929352
DV
15930
15931 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
15932 crtc->base.base.id,
15933 crtc->active ? "enabled" : "disabled");
15934 }
15935
5358901f
DV
15936 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15937 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15938
2edd6443
ACO
15939 pll->on = pll->funcs.get_hw_state(dev_priv, pll,
15940 &pll->config.hw_state);
3e369b76 15941 pll->config.crtc_mask = 0;
d3fcc808 15942 for_each_intel_crtc(dev, crtc) {
2dd66ebd 15943 if (crtc->active && crtc->config->shared_dpll == pll)
3e369b76 15944 pll->config.crtc_mask |= 1 << crtc->pipe;
5358901f 15945 }
2dd66ebd 15946 pll->active_mask = pll->config.crtc_mask;
5358901f 15947
1e6f2ddc 15948 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
3e369b76 15949 pll->name, pll->config.crtc_mask, pll->on);
5358901f
DV
15950 }
15951
b2784e15 15952 for_each_intel_encoder(dev, encoder) {
24929352
DV
15953 pipe = 0;
15954
15955 if (encoder->get_hw_state(encoder, &pipe)) {
045ac3b5
JB
15956 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15957 encoder->base.crtc = &crtc->base;
6e3c9717 15958 encoder->get_config(encoder, crtc->config);
24929352
DV
15959 } else {
15960 encoder->base.crtc = NULL;
15961 }
15962
6f2bcceb 15963 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
24929352 15964 encoder->base.base.id,
8e329a03 15965 encoder->base.name,
24929352 15966 encoder->base.crtc ? "enabled" : "disabled",
6f2bcceb 15967 pipe_name(pipe));
24929352
DV
15968 }
15969
3a3371ff 15970 for_each_intel_connector(dev, connector) {
24929352
DV
15971 if (connector->get_hw_state(connector)) {
15972 connector->base.dpms = DRM_MODE_DPMS_ON;
2aa974c9
ML
15973
15974 encoder = connector->encoder;
15975 connector->base.encoder = &encoder->base;
15976
15977 if (encoder->base.crtc &&
15978 encoder->base.crtc->state->active) {
15979 /*
15980 * This has to be done during hardware readout
15981 * because anything calling .crtc_disable may
15982 * rely on the connector_mask being accurate.
15983 */
15984 encoder->base.crtc->state->connector_mask |=
15985 1 << drm_connector_index(&connector->base);
e87a52b3
ML
15986 encoder->base.crtc->state->encoder_mask |=
15987 1 << drm_encoder_index(&encoder->base);
2aa974c9
ML
15988 }
15989
24929352
DV
15990 } else {
15991 connector->base.dpms = DRM_MODE_DPMS_OFF;
15992 connector->base.encoder = NULL;
15993 }
15994 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
15995 connector->base.base.id,
c23cc417 15996 connector->base.name,
24929352
DV
15997 connector->base.encoder ? "enabled" : "disabled");
15998 }
7f4c6284
VS
15999
16000 for_each_intel_crtc(dev, crtc) {
16001 crtc->base.hwmode = crtc->config->base.adjusted_mode;
16002
16003 memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
16004 if (crtc->base.state->active) {
16005 intel_mode_from_pipe_config(&crtc->base.mode, crtc->config);
16006 intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config);
16007 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode));
16008
16009 /*
16010 * The initial mode needs to be set in order to keep
16011 * the atomic core happy. It wants a valid mode if the
16012 * crtc's enabled, so we do the above call.
16013 *
16014 * At this point some state updated by the connectors
16015 * in their ->detect() callback has not run yet, so
16016 * no recalculation can be done yet.
16017 *
16018 * Even if we could do a recalculation and modeset
16019 * right now it would cause a double modeset if
16020 * fbdev or userspace chooses a different initial mode.
16021 *
16022 * If that happens, someone indicated they wanted a
16023 * mode change, which means it's safe to do a full
16024 * recalculation.
16025 */
16026 crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;
9eca6832
VS
16027
16028 drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
16029 update_scanline_offset(crtc);
7f4c6284 16030 }
e3b247da
VS
16031
16032 intel_pipe_config_sanity_check(dev_priv, crtc->config);
7f4c6284 16033 }
30e984df
DV
16034}
16035
043e9bda
ML
16036/* Scan out the current hw modeset state,
16037 * and sanitizes it to the current state
16038 */
16039static void
16040intel_modeset_setup_hw_state(struct drm_device *dev)
30e984df
DV
16041{
16042 struct drm_i915_private *dev_priv = dev->dev_private;
16043 enum pipe pipe;
30e984df
DV
16044 struct intel_crtc *crtc;
16045 struct intel_encoder *encoder;
35c95375 16046 int i;
30e984df
DV
16047
16048 intel_modeset_readout_hw_state(dev);
24929352
DV
16049
16050 /* HW state is read out, now we need to sanitize this mess. */
b2784e15 16051 for_each_intel_encoder(dev, encoder) {
24929352
DV
16052 intel_sanitize_encoder(encoder);
16053 }
16054
055e393f 16055 for_each_pipe(dev_priv, pipe) {
24929352
DV
16056 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
16057 intel_sanitize_crtc(crtc);
6e3c9717
ACO
16058 intel_dump_pipe_config(crtc, crtc->config,
16059 "[setup_hw_state]");
24929352 16060 }
9a935856 16061
d29b2f9d
ACO
16062 intel_modeset_update_connector_atomic_state(dev);
16063
35c95375
DV
16064 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
16065 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
16066
2dd66ebd 16067 if (!pll->on || pll->active_mask)
35c95375
DV
16068 continue;
16069
16070 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
16071
2edd6443 16072 pll->funcs.disable(dev_priv, pll);
35c95375
DV
16073 pll->on = false;
16074 }
16075
666a4537 16076 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
6eb1a681
VS
16077 vlv_wm_get_hw_state(dev);
16078 else if (IS_GEN9(dev))
3078999f
PB
16079 skl_wm_get_hw_state(dev);
16080 else if (HAS_PCH_SPLIT(dev))
243e6a44 16081 ilk_wm_get_hw_state(dev);
292b990e
ML
16082
16083 for_each_intel_crtc(dev, crtc) {
16084 unsigned long put_domains;
16085
74bff5f9 16086 put_domains = modeset_get_crtc_power_domains(&crtc->base, crtc->config);
292b990e
ML
16087 if (WARN_ON(put_domains))
16088 modeset_put_power_domains(dev_priv, put_domains);
16089 }
16090 intel_display_set_init_power(dev_priv, false);
010cf73d
PZ
16091
16092 intel_fbc_init_pipe_state(dev_priv);
043e9bda 16093}
7d0bc1ea 16094
043e9bda
ML
16095void intel_display_resume(struct drm_device *dev)
16096{
e2c8b870
ML
16097 struct drm_i915_private *dev_priv = to_i915(dev);
16098 struct drm_atomic_state *state = dev_priv->modeset_restore_state;
16099 struct drm_modeset_acquire_ctx ctx;
043e9bda 16100 int ret;
e2c8b870 16101 bool setup = false;
f30da187 16102
e2c8b870 16103 dev_priv->modeset_restore_state = NULL;
043e9bda 16104
ea49c9ac
ML
16105 /*
16106 * This is a cludge because with real atomic modeset mode_config.mutex
16107 * won't be taken. Unfortunately some probed state like
16108 * audio_codec_enable is still protected by mode_config.mutex, so lock
16109 * it here for now.
16110 */
16111 mutex_lock(&dev->mode_config.mutex);
e2c8b870 16112 drm_modeset_acquire_init(&ctx, 0);
043e9bda 16113
e2c8b870
ML
16114retry:
16115 ret = drm_modeset_lock_all_ctx(dev, &ctx);
043e9bda 16116
e2c8b870
ML
16117 if (ret == 0 && !setup) {
16118 setup = true;
043e9bda 16119
e2c8b870
ML
16120 intel_modeset_setup_hw_state(dev);
16121 i915_redisable_vga(dev);
45e2b5f6 16122 }
8af6cf88 16123
e2c8b870
ML
16124 if (ret == 0 && state) {
16125 struct drm_crtc_state *crtc_state;
16126 struct drm_crtc *crtc;
16127 int i;
043e9bda 16128
e2c8b870
ML
16129 state->acquire_ctx = &ctx;
16130
e3d5457c
VS
16131 /* ignore any reset values/BIOS leftovers in the WM registers */
16132 to_intel_atomic_state(state)->skip_intermediate_wm = true;
16133
e2c8b870
ML
16134 for_each_crtc_in_state(state, crtc, crtc_state, i) {
16135 /*
16136 * Force recalculation even if we restore
16137 * current state. With fast modeset this may not result
16138 * in a modeset when the state is compatible.
16139 */
16140 crtc_state->mode_changed = true;
16141 }
16142
16143 ret = drm_atomic_commit(state);
043e9bda
ML
16144 }
16145
e2c8b870
ML
16146 if (ret == -EDEADLK) {
16147 drm_modeset_backoff(&ctx);
16148 goto retry;
16149 }
043e9bda 16150
e2c8b870
ML
16151 drm_modeset_drop_locks(&ctx);
16152 drm_modeset_acquire_fini(&ctx);
ea49c9ac 16153 mutex_unlock(&dev->mode_config.mutex);
043e9bda 16154
e2c8b870
ML
16155 if (ret) {
16156 DRM_ERROR("Restoring old state failed with %i\n", ret);
16157 drm_atomic_state_free(state);
16158 }
2c7111db
CW
16159}
16160
16161void intel_modeset_gem_init(struct drm_device *dev)
16162{
dc97997a 16163 struct drm_i915_private *dev_priv = to_i915(dev);
484b41dd 16164 struct drm_crtc *c;
2ff8fde1 16165 struct drm_i915_gem_object *obj;
e0d6149b 16166 int ret;
484b41dd 16167
dc97997a 16168 intel_init_gt_powersave(dev_priv);
ae48434c 16169
1833b134 16170 intel_modeset_init_hw(dev);
02e792fb 16171
1ee8da6d 16172 intel_setup_overlay(dev_priv);
484b41dd
JB
16173
16174 /*
16175 * Make sure any fbs we allocated at startup are properly
16176 * pinned & fenced. When we do the allocation it's too early
16177 * for this.
16178 */
70e1e0ec 16179 for_each_crtc(dev, c) {
2ff8fde1
MR
16180 obj = intel_fb_obj(c->primary->fb);
16181 if (obj == NULL)
484b41dd
JB
16182 continue;
16183
e0d6149b 16184 mutex_lock(&dev->struct_mutex);
3465c580
VS
16185 ret = intel_pin_and_fence_fb_obj(c->primary->fb,
16186 c->primary->state->rotation);
e0d6149b
TU
16187 mutex_unlock(&dev->struct_mutex);
16188 if (ret) {
484b41dd
JB
16189 DRM_ERROR("failed to pin boot fb on pipe %d\n",
16190 to_intel_crtc(c)->pipe);
66e514c1 16191 drm_framebuffer_unreference(c->primary->fb);
5a21b665 16192 c->primary->fb = NULL;
36750f28 16193 c->primary->crtc = c->primary->state->crtc = NULL;
5a21b665 16194 update_state_fb(c->primary);
36750f28 16195 c->state->plane_mask &= ~(1 << drm_plane_index(c->primary));
484b41dd
JB
16196 }
16197 }
0962c3c9
VS
16198
16199 intel_backlight_register(dev);
79e53945
JB
16200}
16201
4932e2c3
ID
16202void intel_connector_unregister(struct intel_connector *intel_connector)
16203{
16204 struct drm_connector *connector = &intel_connector->base;
16205
16206 intel_panel_destroy_backlight(connector);
34ea3d38 16207 drm_connector_unregister(connector);
4932e2c3
ID
16208}
16209
79e53945
JB
16210void intel_modeset_cleanup(struct drm_device *dev)
16211{
652c393a 16212 struct drm_i915_private *dev_priv = dev->dev_private;
19c8054c 16213 struct intel_connector *connector;
652c393a 16214
dc97997a 16215 intel_disable_gt_powersave(dev_priv);
2eb5252e 16216
0962c3c9
VS
16217 intel_backlight_unregister(dev);
16218
fd0c0642
DV
16219 /*
16220 * Interrupts and polling as the first thing to avoid creating havoc.
2eb5252e 16221 * Too much stuff here (turning of connectors, ...) would
fd0c0642
DV
16222 * experience fancy races otherwise.
16223 */
2aeb7d3a 16224 intel_irq_uninstall(dev_priv);
eb21b92b 16225
fd0c0642
DV
16226 /*
16227 * Due to the hpd irq storm handling the hotplug work can re-arm the
16228 * poll handlers. Hence disable polling after hpd handling is shut down.
16229 */
f87ea761 16230 drm_kms_helper_poll_fini(dev);
fd0c0642 16231
723bfd70
JB
16232 intel_unregister_dsm_handler();
16233
c937ab3e 16234 intel_fbc_global_disable(dev_priv);
69341a5e 16235
1630fe75
CW
16236 /* flush any delayed tasks or pending work */
16237 flush_scheduled_work();
16238
db31af1d 16239 /* destroy the backlight and sysfs files before encoders/connectors */
19c8054c
JN
16240 for_each_intel_connector(dev, connector)
16241 connector->unregister(connector);
d9255d57 16242
79e53945 16243 drm_mode_config_cleanup(dev);
4d7bb011 16244
1ee8da6d 16245 intel_cleanup_overlay(dev_priv);
ae48434c 16246
dc97997a 16247 intel_cleanup_gt_powersave(dev_priv);
f5949141
DV
16248
16249 intel_teardown_gmbus(dev);
79e53945
JB
16250}
16251
f1c79df3
ZW
16252/*
16253 * Return which encoder is currently attached for connector.
16254 */
df0e9248 16255struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
79e53945 16256{
df0e9248
CW
16257 return &intel_attached_encoder(connector)->base;
16258}
f1c79df3 16259
df0e9248
CW
16260void intel_connector_attach_encoder(struct intel_connector *connector,
16261 struct intel_encoder *encoder)
16262{
16263 connector->encoder = encoder;
16264 drm_mode_connector_attach_encoder(&connector->base,
16265 &encoder->base);
79e53945 16266}
28d52043
DA
16267
16268/*
16269 * set vga decode state - true == enable VGA decode
16270 */
16271int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
16272{
16273 struct drm_i915_private *dev_priv = dev->dev_private;
a885b3cc 16274 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
28d52043
DA
16275 u16 gmch_ctrl;
16276
75fa041d
CW
16277 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
16278 DRM_ERROR("failed to read control word\n");
16279 return -EIO;
16280 }
16281
c0cc8a55
CW
16282 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
16283 return 0;
16284
28d52043
DA
16285 if (state)
16286 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
16287 else
16288 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
75fa041d
CW
16289
16290 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
16291 DRM_ERROR("failed to write control word\n");
16292 return -EIO;
16293 }
16294
28d52043
DA
16295 return 0;
16296}
c4a1d9e4 16297
c4a1d9e4 16298struct intel_display_error_state {
ff57f1b0
PZ
16299
16300 u32 power_well_driver;
16301
63b66e5b
CW
16302 int num_transcoders;
16303
c4a1d9e4
CW
16304 struct intel_cursor_error_state {
16305 u32 control;
16306 u32 position;
16307 u32 base;
16308 u32 size;
52331309 16309 } cursor[I915_MAX_PIPES];
c4a1d9e4
CW
16310
16311 struct intel_pipe_error_state {
ddf9c536 16312 bool power_domain_on;
c4a1d9e4 16313 u32 source;
f301b1e1 16314 u32 stat;
52331309 16315 } pipe[I915_MAX_PIPES];
c4a1d9e4
CW
16316
16317 struct intel_plane_error_state {
16318 u32 control;
16319 u32 stride;
16320 u32 size;
16321 u32 pos;
16322 u32 addr;
16323 u32 surface;
16324 u32 tile_offset;
52331309 16325 } plane[I915_MAX_PIPES];
63b66e5b
CW
16326
16327 struct intel_transcoder_error_state {
ddf9c536 16328 bool power_domain_on;
63b66e5b
CW
16329 enum transcoder cpu_transcoder;
16330
16331 u32 conf;
16332
16333 u32 htotal;
16334 u32 hblank;
16335 u32 hsync;
16336 u32 vtotal;
16337 u32 vblank;
16338 u32 vsync;
16339 } transcoder[4];
c4a1d9e4
CW
16340};
16341
16342struct intel_display_error_state *
c033666a 16343intel_display_capture_error_state(struct drm_i915_private *dev_priv)
c4a1d9e4 16344{
c4a1d9e4 16345 struct intel_display_error_state *error;
63b66e5b
CW
16346 int transcoders[] = {
16347 TRANSCODER_A,
16348 TRANSCODER_B,
16349 TRANSCODER_C,
16350 TRANSCODER_EDP,
16351 };
c4a1d9e4
CW
16352 int i;
16353
c033666a 16354 if (INTEL_INFO(dev_priv)->num_pipes == 0)
63b66e5b
CW
16355 return NULL;
16356
9d1cb914 16357 error = kzalloc(sizeof(*error), GFP_ATOMIC);
c4a1d9e4
CW
16358 if (error == NULL)
16359 return NULL;
16360
c033666a 16361 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
ff57f1b0
PZ
16362 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
16363
055e393f 16364 for_each_pipe(dev_priv, i) {
ddf9c536 16365 error->pipe[i].power_domain_on =
f458ebbc
DV
16366 __intel_display_power_is_enabled(dev_priv,
16367 POWER_DOMAIN_PIPE(i));
ddf9c536 16368 if (!error->pipe[i].power_domain_on)
9d1cb914
PZ
16369 continue;
16370
5efb3e28
VS
16371 error->cursor[i].control = I915_READ(CURCNTR(i));
16372 error->cursor[i].position = I915_READ(CURPOS(i));
16373 error->cursor[i].base = I915_READ(CURBASE(i));
c4a1d9e4
CW
16374
16375 error->plane[i].control = I915_READ(DSPCNTR(i));
16376 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
c033666a 16377 if (INTEL_GEN(dev_priv) <= 3) {
51889b35 16378 error->plane[i].size = I915_READ(DSPSIZE(i));
80ca378b
PZ
16379 error->plane[i].pos = I915_READ(DSPPOS(i));
16380 }
c033666a 16381 if (INTEL_GEN(dev_priv) <= 7 && !IS_HASWELL(dev_priv))
ca291363 16382 error->plane[i].addr = I915_READ(DSPADDR(i));
c033666a 16383 if (INTEL_GEN(dev_priv) >= 4) {
c4a1d9e4
CW
16384 error->plane[i].surface = I915_READ(DSPSURF(i));
16385 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
16386 }
16387
c4a1d9e4 16388 error->pipe[i].source = I915_READ(PIPESRC(i));
f301b1e1 16389
c033666a 16390 if (HAS_GMCH_DISPLAY(dev_priv))
f301b1e1 16391 error->pipe[i].stat = I915_READ(PIPESTAT(i));
63b66e5b
CW
16392 }
16393
4d1de975 16394 /* Note: this does not include DSI transcoders. */
c033666a 16395 error->num_transcoders = INTEL_INFO(dev_priv)->num_pipes;
2d1fe073 16396 if (HAS_DDI(dev_priv))
63b66e5b
CW
16397 error->num_transcoders++; /* Account for eDP. */
16398
16399 for (i = 0; i < error->num_transcoders; i++) {
16400 enum transcoder cpu_transcoder = transcoders[i];
16401
ddf9c536 16402 error->transcoder[i].power_domain_on =
f458ebbc 16403 __intel_display_power_is_enabled(dev_priv,
38cc1daf 16404 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
ddf9c536 16405 if (!error->transcoder[i].power_domain_on)
9d1cb914
PZ
16406 continue;
16407
63b66e5b
CW
16408 error->transcoder[i].cpu_transcoder = cpu_transcoder;
16409
16410 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
16411 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
16412 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
16413 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
16414 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
16415 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
16416 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
c4a1d9e4
CW
16417 }
16418
16419 return error;
16420}
16421
edc3d884
MK
16422#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
16423
c4a1d9e4 16424void
edc3d884 16425intel_display_print_error_state(struct drm_i915_error_state_buf *m,
c4a1d9e4
CW
16426 struct drm_device *dev,
16427 struct intel_display_error_state *error)
16428{
055e393f 16429 struct drm_i915_private *dev_priv = dev->dev_private;
c4a1d9e4
CW
16430 int i;
16431
63b66e5b
CW
16432 if (!error)
16433 return;
16434
edc3d884 16435 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
190be112 16436 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
edc3d884 16437 err_printf(m, "PWR_WELL_CTL2: %08x\n",
ff57f1b0 16438 error->power_well_driver);
055e393f 16439 for_each_pipe(dev_priv, i) {
edc3d884 16440 err_printf(m, "Pipe [%d]:\n", i);
ddf9c536 16441 err_printf(m, " Power: %s\n",
87ad3212 16442 onoff(error->pipe[i].power_domain_on));
edc3d884 16443 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
f301b1e1 16444 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
edc3d884
MK
16445
16446 err_printf(m, "Plane [%d]:\n", i);
16447 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
16448 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
80ca378b 16449 if (INTEL_INFO(dev)->gen <= 3) {
edc3d884
MK
16450 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
16451 err_printf(m, " POS: %08x\n", error->plane[i].pos);
80ca378b 16452 }
4b71a570 16453 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
edc3d884 16454 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
c4a1d9e4 16455 if (INTEL_INFO(dev)->gen >= 4) {
edc3d884
MK
16456 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
16457 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
c4a1d9e4
CW
16458 }
16459
edc3d884
MK
16460 err_printf(m, "Cursor [%d]:\n", i);
16461 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
16462 err_printf(m, " POS: %08x\n", error->cursor[i].position);
16463 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
c4a1d9e4 16464 }
63b66e5b
CW
16465
16466 for (i = 0; i < error->num_transcoders; i++) {
da205630 16467 err_printf(m, "CPU transcoder: %s\n",
63b66e5b 16468 transcoder_name(error->transcoder[i].cpu_transcoder));
ddf9c536 16469 err_printf(m, " Power: %s\n",
87ad3212 16470 onoff(error->transcoder[i].power_domain_on));
63b66e5b
CW
16471 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
16472 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
16473 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
16474 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
16475 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
16476 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
16477 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
16478 }
c4a1d9e4 16479}