]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/i915/intel_display.c
drm/i915: Only dump dp_m2_n2 configuration when drrs is used
[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"
5d723d7a 37#include "intel_frontbuffer.h"
760285e7 38#include <drm/i915_drm.h>
79e53945 39#include "i915_drv.h"
db18b6a6 40#include "intel_dsi.h"
e5510fac 41#include "i915_trace.h"
319c1d42 42#include <drm/drm_atomic.h>
c196e1d6 43#include <drm/drm_atomic_helper.h>
760285e7
DH
44#include <drm/drm_dp_helper.h>
45#include <drm/drm_crtc_helper.h>
465c120c
MR
46#include <drm/drm_plane_helper.h>
47#include <drm/drm_rect.h>
c0f372b3 48#include <linux/dma_remapping.h>
fd8e058a 49#include <linux/reservation.h>
79e53945 50
5a21b665
DV
51static bool is_mmio_work(struct intel_flip_work *work)
52{
53 return work->mmio_work.func;
54}
55
465c120c 56/* Primary plane formats for gen <= 3 */
568db4f2 57static const uint32_t i8xx_primary_formats[] = {
67fe7dc5
DL
58 DRM_FORMAT_C8,
59 DRM_FORMAT_RGB565,
465c120c 60 DRM_FORMAT_XRGB1555,
67fe7dc5 61 DRM_FORMAT_XRGB8888,
465c120c
MR
62};
63
64/* Primary plane formats for gen >= 4 */
568db4f2 65static const uint32_t i965_primary_formats[] = {
6c0fd451
DL
66 DRM_FORMAT_C8,
67 DRM_FORMAT_RGB565,
68 DRM_FORMAT_XRGB8888,
69 DRM_FORMAT_XBGR8888,
70 DRM_FORMAT_XRGB2101010,
71 DRM_FORMAT_XBGR2101010,
72};
73
74static const uint32_t skl_primary_formats[] = {
67fe7dc5
DL
75 DRM_FORMAT_C8,
76 DRM_FORMAT_RGB565,
77 DRM_FORMAT_XRGB8888,
465c120c 78 DRM_FORMAT_XBGR8888,
67fe7dc5 79 DRM_FORMAT_ARGB8888,
465c120c
MR
80 DRM_FORMAT_ABGR8888,
81 DRM_FORMAT_XRGB2101010,
465c120c 82 DRM_FORMAT_XBGR2101010,
ea916ea0
KM
83 DRM_FORMAT_YUYV,
84 DRM_FORMAT_YVYU,
85 DRM_FORMAT_UYVY,
86 DRM_FORMAT_VYUY,
465c120c
MR
87};
88
3d7d6510
MR
89/* Cursor formats */
90static const uint32_t intel_cursor_formats[] = {
91 DRM_FORMAT_ARGB8888,
92};
93
f1f644dc 94static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 95 struct intel_crtc_state *pipe_config);
18442d08 96static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 97 struct intel_crtc_state *pipe_config);
f1f644dc 98
eb1bfe80
JB
99static int intel_framebuffer_init(struct drm_device *dev,
100 struct intel_framebuffer *ifb,
101 struct drm_mode_fb_cmd2 *mode_cmd,
102 struct drm_i915_gem_object *obj);
5b18e57c
DV
103static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
104static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
bc58be60 105static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc);
29407aab 106static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
f769cd24
VK
107 struct intel_link_m_n *m_n,
108 struct intel_link_m_n *m2_n2);
29407aab 109static void ironlake_set_pipeconf(struct drm_crtc *crtc);
229fca97 110static void haswell_set_pipeconf(struct drm_crtc *crtc);
391bf048 111static void haswell_set_pipemisc(struct drm_crtc *crtc);
d288f65f 112static void vlv_prepare_pll(struct intel_crtc *crtc,
5cec258b 113 const struct intel_crtc_state *pipe_config);
d288f65f 114static void chv_prepare_pll(struct intel_crtc *crtc,
5cec258b 115 const struct intel_crtc_state *pipe_config);
5a21b665
DV
116static void intel_begin_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
117static void intel_finish_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
65edccce
VS
118static void skl_init_scalers(struct drm_i915_private *dev_priv,
119 struct intel_crtc *crtc,
120 struct intel_crtc_state *crtc_state);
bfd16b2a
ML
121static void skylake_pfit_enable(struct intel_crtc *crtc);
122static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force);
123static void ironlake_pfit_enable(struct intel_crtc *crtc);
043e9bda 124static void intel_modeset_setup_hw_state(struct drm_device *dev);
2622a081 125static void intel_pre_disable_primary_noatomic(struct drm_crtc *crtc);
4e5ca60f 126static int ilk_max_pixel_rate(struct drm_atomic_state *state);
324513c0 127static int bxt_calc_cdclk(int max_pixclk);
e7457a9a 128
d4906093 129struct intel_limit {
4c5def93
ACO
130 struct {
131 int min, max;
132 } dot, vco, n, m, m1, m2, p, p1;
133
134 struct {
135 int dot_limit;
136 int p2_slow, p2_fast;
137 } p2;
d4906093 138};
79e53945 139
bfa7df01
VS
140/* returns HPLL frequency in kHz */
141static int valleyview_get_vco(struct drm_i915_private *dev_priv)
142{
143 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
144
145 /* Obtain SKU information */
146 mutex_lock(&dev_priv->sb_lock);
147 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
148 CCK_FUSE_HPLL_FREQ_MASK;
149 mutex_unlock(&dev_priv->sb_lock);
150
151 return vco_freq[hpll_freq] * 1000;
152}
153
c30fec65
VS
154int vlv_get_cck_clock(struct drm_i915_private *dev_priv,
155 const char *name, u32 reg, int ref_freq)
bfa7df01
VS
156{
157 u32 val;
158 int divider;
159
bfa7df01
VS
160 mutex_lock(&dev_priv->sb_lock);
161 val = vlv_cck_read(dev_priv, reg);
162 mutex_unlock(&dev_priv->sb_lock);
163
164 divider = val & CCK_FREQUENCY_VALUES;
165
166 WARN((val & CCK_FREQUENCY_STATUS) !=
167 (divider << CCK_FREQUENCY_STATUS_SHIFT),
168 "%s change in progress\n", name);
169
c30fec65
VS
170 return DIV_ROUND_CLOSEST(ref_freq << 1, divider + 1);
171}
172
173static int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
174 const char *name, u32 reg)
175{
176 if (dev_priv->hpll_freq == 0)
177 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
178
179 return vlv_get_cck_clock(dev_priv, name, reg,
180 dev_priv->hpll_freq);
bfa7df01
VS
181}
182
e7dc33f3
VS
183static int
184intel_pch_rawclk(struct drm_i915_private *dev_priv)
d2acd215 185{
e7dc33f3
VS
186 return (I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK) * 1000;
187}
d2acd215 188
e7dc33f3
VS
189static int
190intel_vlv_hrawclk(struct drm_i915_private *dev_priv)
191{
19ab4ed3 192 /* RAWCLK_FREQ_VLV register updated from power well code */
35d38d1f
VS
193 return vlv_get_cck_clock_hpll(dev_priv, "hrawclk",
194 CCK_DISPLAY_REF_CLOCK_CONTROL);
d2acd215
DV
195}
196
e7dc33f3
VS
197static int
198intel_g4x_hrawclk(struct drm_i915_private *dev_priv)
79e50a4f 199{
79e50a4f
JN
200 uint32_t clkcfg;
201
e7dc33f3 202 /* hrawclock is 1/4 the FSB frequency */
79e50a4f
JN
203 clkcfg = I915_READ(CLKCFG);
204 switch (clkcfg & CLKCFG_FSB_MASK) {
205 case CLKCFG_FSB_400:
e7dc33f3 206 return 100000;
79e50a4f 207 case CLKCFG_FSB_533:
e7dc33f3 208 return 133333;
79e50a4f 209 case CLKCFG_FSB_667:
e7dc33f3 210 return 166667;
79e50a4f 211 case CLKCFG_FSB_800:
e7dc33f3 212 return 200000;
79e50a4f 213 case CLKCFG_FSB_1067:
e7dc33f3 214 return 266667;
79e50a4f 215 case CLKCFG_FSB_1333:
e7dc33f3 216 return 333333;
79e50a4f
JN
217 /* these two are just a guess; one of them might be right */
218 case CLKCFG_FSB_1600:
219 case CLKCFG_FSB_1600_ALT:
e7dc33f3 220 return 400000;
79e50a4f 221 default:
e7dc33f3 222 return 133333;
79e50a4f
JN
223 }
224}
225
19ab4ed3 226void intel_update_rawclk(struct drm_i915_private *dev_priv)
e7dc33f3
VS
227{
228 if (HAS_PCH_SPLIT(dev_priv))
229 dev_priv->rawclk_freq = intel_pch_rawclk(dev_priv);
230 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
231 dev_priv->rawclk_freq = intel_vlv_hrawclk(dev_priv);
232 else if (IS_G4X(dev_priv) || IS_PINEVIEW(dev_priv))
233 dev_priv->rawclk_freq = intel_g4x_hrawclk(dev_priv);
234 else
235 return; /* no rawclk on other platforms, or no need to know it */
236
237 DRM_DEBUG_DRIVER("rawclk rate: %d kHz\n", dev_priv->rawclk_freq);
238}
239
bfa7df01
VS
240static void intel_update_czclk(struct drm_i915_private *dev_priv)
241{
666a4537 242 if (!(IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)))
bfa7df01
VS
243 return;
244
245 dev_priv->czclk_freq = vlv_get_cck_clock_hpll(dev_priv, "czclk",
246 CCK_CZ_CLOCK_CONTROL);
247
248 DRM_DEBUG_DRIVER("CZ clock rate: %d kHz\n", dev_priv->czclk_freq);
249}
250
021357ac 251static inline u32 /* units of 100MHz */
21a727b3
VS
252intel_fdi_link_freq(struct drm_i915_private *dev_priv,
253 const struct intel_crtc_state *pipe_config)
021357ac 254{
21a727b3
VS
255 if (HAS_DDI(dev_priv))
256 return pipe_config->port_clock; /* SPLL */
257 else if (IS_GEN5(dev_priv))
258 return ((I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2) * 10000;
e3b247da 259 else
21a727b3 260 return 270000;
021357ac
CW
261}
262
1b6f4958 263static const struct intel_limit intel_limits_i8xx_dac = {
0206e353 264 .dot = { .min = 25000, .max = 350000 },
9c333719 265 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 266 .n = { .min = 2, .max = 16 },
0206e353
AJ
267 .m = { .min = 96, .max = 140 },
268 .m1 = { .min = 18, .max = 26 },
269 .m2 = { .min = 6, .max = 16 },
270 .p = { .min = 4, .max = 128 },
271 .p1 = { .min = 2, .max = 33 },
273e27ca
EA
272 .p2 = { .dot_limit = 165000,
273 .p2_slow = 4, .p2_fast = 2 },
e4b36699
KP
274};
275
1b6f4958 276static const struct intel_limit intel_limits_i8xx_dvo = {
5d536e28 277 .dot = { .min = 25000, .max = 350000 },
9c333719 278 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 279 .n = { .min = 2, .max = 16 },
5d536e28
DV
280 .m = { .min = 96, .max = 140 },
281 .m1 = { .min = 18, .max = 26 },
282 .m2 = { .min = 6, .max = 16 },
283 .p = { .min = 4, .max = 128 },
284 .p1 = { .min = 2, .max = 33 },
285 .p2 = { .dot_limit = 165000,
286 .p2_slow = 4, .p2_fast = 4 },
287};
288
1b6f4958 289static const struct intel_limit intel_limits_i8xx_lvds = {
0206e353 290 .dot = { .min = 25000, .max = 350000 },
9c333719 291 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 292 .n = { .min = 2, .max = 16 },
0206e353
AJ
293 .m = { .min = 96, .max = 140 },
294 .m1 = { .min = 18, .max = 26 },
295 .m2 = { .min = 6, .max = 16 },
296 .p = { .min = 4, .max = 128 },
297 .p1 = { .min = 1, .max = 6 },
273e27ca
EA
298 .p2 = { .dot_limit = 165000,
299 .p2_slow = 14, .p2_fast = 7 },
e4b36699 300};
273e27ca 301
1b6f4958 302static const struct intel_limit intel_limits_i9xx_sdvo = {
0206e353
AJ
303 .dot = { .min = 20000, .max = 400000 },
304 .vco = { .min = 1400000, .max = 2800000 },
305 .n = { .min = 1, .max = 6 },
306 .m = { .min = 70, .max = 120 },
4f7dfb67
PJ
307 .m1 = { .min = 8, .max = 18 },
308 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
309 .p = { .min = 5, .max = 80 },
310 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
311 .p2 = { .dot_limit = 200000,
312 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
313};
314
1b6f4958 315static const struct intel_limit intel_limits_i9xx_lvds = {
0206e353
AJ
316 .dot = { .min = 20000, .max = 400000 },
317 .vco = { .min = 1400000, .max = 2800000 },
318 .n = { .min = 1, .max = 6 },
319 .m = { .min = 70, .max = 120 },
53a7d2d1
PJ
320 .m1 = { .min = 8, .max = 18 },
321 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
322 .p = { .min = 7, .max = 98 },
323 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
324 .p2 = { .dot_limit = 112000,
325 .p2_slow = 14, .p2_fast = 7 },
e4b36699
KP
326};
327
273e27ca 328
1b6f4958 329static const struct intel_limit intel_limits_g4x_sdvo = {
273e27ca
EA
330 .dot = { .min = 25000, .max = 270000 },
331 .vco = { .min = 1750000, .max = 3500000},
332 .n = { .min = 1, .max = 4 },
333 .m = { .min = 104, .max = 138 },
334 .m1 = { .min = 17, .max = 23 },
335 .m2 = { .min = 5, .max = 11 },
336 .p = { .min = 10, .max = 30 },
337 .p1 = { .min = 1, .max = 3},
338 .p2 = { .dot_limit = 270000,
339 .p2_slow = 10,
340 .p2_fast = 10
044c7c41 341 },
e4b36699
KP
342};
343
1b6f4958 344static const struct intel_limit intel_limits_g4x_hdmi = {
273e27ca
EA
345 .dot = { .min = 22000, .max = 400000 },
346 .vco = { .min = 1750000, .max = 3500000},
347 .n = { .min = 1, .max = 4 },
348 .m = { .min = 104, .max = 138 },
349 .m1 = { .min = 16, .max = 23 },
350 .m2 = { .min = 5, .max = 11 },
351 .p = { .min = 5, .max = 80 },
352 .p1 = { .min = 1, .max = 8},
353 .p2 = { .dot_limit = 165000,
354 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
355};
356
1b6f4958 357static const struct intel_limit intel_limits_g4x_single_channel_lvds = {
273e27ca
EA
358 .dot = { .min = 20000, .max = 115000 },
359 .vco = { .min = 1750000, .max = 3500000 },
360 .n = { .min = 1, .max = 3 },
361 .m = { .min = 104, .max = 138 },
362 .m1 = { .min = 17, .max = 23 },
363 .m2 = { .min = 5, .max = 11 },
364 .p = { .min = 28, .max = 112 },
365 .p1 = { .min = 2, .max = 8 },
366 .p2 = { .dot_limit = 0,
367 .p2_slow = 14, .p2_fast = 14
044c7c41 368 },
e4b36699
KP
369};
370
1b6f4958 371static const struct intel_limit intel_limits_g4x_dual_channel_lvds = {
273e27ca
EA
372 .dot = { .min = 80000, .max = 224000 },
373 .vco = { .min = 1750000, .max = 3500000 },
374 .n = { .min = 1, .max = 3 },
375 .m = { .min = 104, .max = 138 },
376 .m1 = { .min = 17, .max = 23 },
377 .m2 = { .min = 5, .max = 11 },
378 .p = { .min = 14, .max = 42 },
379 .p1 = { .min = 2, .max = 6 },
380 .p2 = { .dot_limit = 0,
381 .p2_slow = 7, .p2_fast = 7
044c7c41 382 },
e4b36699
KP
383};
384
1b6f4958 385static const struct intel_limit intel_limits_pineview_sdvo = {
0206e353
AJ
386 .dot = { .min = 20000, .max = 400000},
387 .vco = { .min = 1700000, .max = 3500000 },
273e27ca 388 /* Pineview's Ncounter is a ring counter */
0206e353
AJ
389 .n = { .min = 3, .max = 6 },
390 .m = { .min = 2, .max = 256 },
273e27ca 391 /* Pineview only has one combined m divider, which we treat as m2. */
0206e353
AJ
392 .m1 = { .min = 0, .max = 0 },
393 .m2 = { .min = 0, .max = 254 },
394 .p = { .min = 5, .max = 80 },
395 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
396 .p2 = { .dot_limit = 200000,
397 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
398};
399
1b6f4958 400static const struct intel_limit intel_limits_pineview_lvds = {
0206e353
AJ
401 .dot = { .min = 20000, .max = 400000 },
402 .vco = { .min = 1700000, .max = 3500000 },
403 .n = { .min = 3, .max = 6 },
404 .m = { .min = 2, .max = 256 },
405 .m1 = { .min = 0, .max = 0 },
406 .m2 = { .min = 0, .max = 254 },
407 .p = { .min = 7, .max = 112 },
408 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
409 .p2 = { .dot_limit = 112000,
410 .p2_slow = 14, .p2_fast = 14 },
e4b36699
KP
411};
412
273e27ca
EA
413/* Ironlake / Sandybridge
414 *
415 * We calculate clock using (register_value + 2) for N/M1/M2, so here
416 * the range value for them is (actual_value - 2).
417 */
1b6f4958 418static const struct intel_limit intel_limits_ironlake_dac = {
273e27ca
EA
419 .dot = { .min = 25000, .max = 350000 },
420 .vco = { .min = 1760000, .max = 3510000 },
421 .n = { .min = 1, .max = 5 },
422 .m = { .min = 79, .max = 127 },
423 .m1 = { .min = 12, .max = 22 },
424 .m2 = { .min = 5, .max = 9 },
425 .p = { .min = 5, .max = 80 },
426 .p1 = { .min = 1, .max = 8 },
427 .p2 = { .dot_limit = 225000,
428 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
429};
430
1b6f4958 431static const struct intel_limit intel_limits_ironlake_single_lvds = {
273e27ca
EA
432 .dot = { .min = 25000, .max = 350000 },
433 .vco = { .min = 1760000, .max = 3510000 },
434 .n = { .min = 1, .max = 3 },
435 .m = { .min = 79, .max = 118 },
436 .m1 = { .min = 12, .max = 22 },
437 .m2 = { .min = 5, .max = 9 },
438 .p = { .min = 28, .max = 112 },
439 .p1 = { .min = 2, .max = 8 },
440 .p2 = { .dot_limit = 225000,
441 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
442};
443
1b6f4958 444static const struct intel_limit intel_limits_ironlake_dual_lvds = {
273e27ca
EA
445 .dot = { .min = 25000, .max = 350000 },
446 .vco = { .min = 1760000, .max = 3510000 },
447 .n = { .min = 1, .max = 3 },
448 .m = { .min = 79, .max = 127 },
449 .m1 = { .min = 12, .max = 22 },
450 .m2 = { .min = 5, .max = 9 },
451 .p = { .min = 14, .max = 56 },
452 .p1 = { .min = 2, .max = 8 },
453 .p2 = { .dot_limit = 225000,
454 .p2_slow = 7, .p2_fast = 7 },
b91ad0ec
ZW
455};
456
273e27ca 457/* LVDS 100mhz refclk limits. */
1b6f4958 458static const struct intel_limit intel_limits_ironlake_single_lvds_100m = {
273e27ca
EA
459 .dot = { .min = 25000, .max = 350000 },
460 .vco = { .min = 1760000, .max = 3510000 },
461 .n = { .min = 1, .max = 2 },
462 .m = { .min = 79, .max = 126 },
463 .m1 = { .min = 12, .max = 22 },
464 .m2 = { .min = 5, .max = 9 },
465 .p = { .min = 28, .max = 112 },
0206e353 466 .p1 = { .min = 2, .max = 8 },
273e27ca
EA
467 .p2 = { .dot_limit = 225000,
468 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
469};
470
1b6f4958 471static const struct intel_limit intel_limits_ironlake_dual_lvds_100m = {
273e27ca
EA
472 .dot = { .min = 25000, .max = 350000 },
473 .vco = { .min = 1760000, .max = 3510000 },
474 .n = { .min = 1, .max = 3 },
475 .m = { .min = 79, .max = 126 },
476 .m1 = { .min = 12, .max = 22 },
477 .m2 = { .min = 5, .max = 9 },
478 .p = { .min = 14, .max = 42 },
0206e353 479 .p1 = { .min = 2, .max = 6 },
273e27ca
EA
480 .p2 = { .dot_limit = 225000,
481 .p2_slow = 7, .p2_fast = 7 },
4547668a
ZY
482};
483
1b6f4958 484static const struct intel_limit intel_limits_vlv = {
f01b7962
VS
485 /*
486 * These are the data rate limits (measured in fast clocks)
487 * since those are the strictest limits we have. The fast
488 * clock and actual rate limits are more relaxed, so checking
489 * them would make no difference.
490 */
491 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
75e53986 492 .vco = { .min = 4000000, .max = 6000000 },
a0c4da24 493 .n = { .min = 1, .max = 7 },
a0c4da24
JB
494 .m1 = { .min = 2, .max = 3 },
495 .m2 = { .min = 11, .max = 156 },
b99ab663 496 .p1 = { .min = 2, .max = 3 },
5fdc9c49 497 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
a0c4da24
JB
498};
499
1b6f4958 500static const struct intel_limit intel_limits_chv = {
ef9348c8
CML
501 /*
502 * These are the data rate limits (measured in fast clocks)
503 * since those are the strictest limits we have. The fast
504 * clock and actual rate limits are more relaxed, so checking
505 * them would make no difference.
506 */
507 .dot = { .min = 25000 * 5, .max = 540000 * 5},
17fe1021 508 .vco = { .min = 4800000, .max = 6480000 },
ef9348c8
CML
509 .n = { .min = 1, .max = 1 },
510 .m1 = { .min = 2, .max = 2 },
511 .m2 = { .min = 24 << 22, .max = 175 << 22 },
512 .p1 = { .min = 2, .max = 4 },
513 .p2 = { .p2_slow = 1, .p2_fast = 14 },
514};
515
1b6f4958 516static const struct intel_limit intel_limits_bxt = {
5ab7b0b7
ID
517 /* FIXME: find real dot limits */
518 .dot = { .min = 0, .max = INT_MAX },
e6292556 519 .vco = { .min = 4800000, .max = 6700000 },
5ab7b0b7
ID
520 .n = { .min = 1, .max = 1 },
521 .m1 = { .min = 2, .max = 2 },
522 /* FIXME: find real m2 limits */
523 .m2 = { .min = 2 << 22, .max = 255 << 22 },
524 .p1 = { .min = 2, .max = 4 },
525 .p2 = { .p2_slow = 1, .p2_fast = 20 },
526};
527
cdba954e
ACO
528static bool
529needs_modeset(struct drm_crtc_state *state)
530{
fc596660 531 return drm_atomic_crtc_needs_modeset(state);
cdba954e
ACO
532}
533
dccbea3b
ID
534/*
535 * Platform specific helpers to calculate the port PLL loopback- (clock.m),
536 * and post-divider (clock.p) values, pre- (clock.vco) and post-divided fast
537 * (clock.dot) clock rates. This fast dot clock is fed to the port's IO logic.
538 * The helpers' return value is the rate of the clock that is fed to the
539 * display engine's pipe which can be the above fast dot clock rate or a
540 * divided-down version of it.
541 */
f2b115e6 542/* m1 is reserved as 0 in Pineview, n is a ring counter */
9e2c8475 543static int pnv_calc_dpll_params(int refclk, struct dpll *clock)
79e53945 544{
2177832f
SL
545 clock->m = clock->m2 + 2;
546 clock->p = clock->p1 * clock->p2;
ed5ca77e 547 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 548 return 0;
fb03ac01
VS
549 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
550 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
551
552 return clock->dot;
2177832f
SL
553}
554
7429e9d4
DV
555static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
556{
557 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
558}
559
9e2c8475 560static int i9xx_calc_dpll_params(int refclk, struct dpll *clock)
2177832f 561{
7429e9d4 562 clock->m = i9xx_dpll_compute_m(clock);
79e53945 563 clock->p = clock->p1 * clock->p2;
ed5ca77e 564 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
dccbea3b 565 return 0;
fb03ac01
VS
566 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
567 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
568
569 return clock->dot;
79e53945
JB
570}
571
9e2c8475 572static int vlv_calc_dpll_params(int refclk, struct dpll *clock)
589eca67
ID
573{
574 clock->m = clock->m1 * clock->m2;
575 clock->p = clock->p1 * clock->p2;
576 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 577 return 0;
589eca67
ID
578 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
579 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
580
581 return clock->dot / 5;
589eca67
ID
582}
583
9e2c8475 584int chv_calc_dpll_params(int refclk, struct dpll *clock)
ef9348c8
CML
585{
586 clock->m = clock->m1 * clock->m2;
587 clock->p = clock->p1 * clock->p2;
588 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 589 return 0;
ef9348c8
CML
590 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
591 clock->n << 22);
592 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
593
594 return clock->dot / 5;
ef9348c8
CML
595}
596
7c04d1d9 597#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
79e53945
JB
598/**
599 * Returns whether the given set of divisors are valid for a given refclk with
600 * the given connectors.
601 */
602
e2d214ae 603static bool intel_PLL_is_valid(struct drm_i915_private *dev_priv,
1b6f4958 604 const struct intel_limit *limit,
9e2c8475 605 const struct dpll *clock)
79e53945 606{
f01b7962
VS
607 if (clock->n < limit->n.min || limit->n.max < clock->n)
608 INTELPllInvalid("n out of range\n");
79e53945 609 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
0206e353 610 INTELPllInvalid("p1 out of range\n");
79e53945 611 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
0206e353 612 INTELPllInvalid("m2 out of range\n");
79e53945 613 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
0206e353 614 INTELPllInvalid("m1 out of range\n");
f01b7962 615
e2d214ae
TU
616 if (!IS_PINEVIEW(dev_priv) && !IS_VALLEYVIEW(dev_priv) &&
617 !IS_CHERRYVIEW(dev_priv) && !IS_BROXTON(dev_priv))
f01b7962
VS
618 if (clock->m1 <= clock->m2)
619 INTELPllInvalid("m1 <= m2\n");
620
e2d214ae
TU
621 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv) &&
622 !IS_BROXTON(dev_priv)) {
f01b7962
VS
623 if (clock->p < limit->p.min || limit->p.max < clock->p)
624 INTELPllInvalid("p out of range\n");
625 if (clock->m < limit->m.min || limit->m.max < clock->m)
626 INTELPllInvalid("m out of range\n");
627 }
628
79e53945 629 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
0206e353 630 INTELPllInvalid("vco out of range\n");
79e53945
JB
631 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
632 * connector, etc., rather than just a single range.
633 */
634 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
0206e353 635 INTELPllInvalid("dot out of range\n");
79e53945
JB
636
637 return true;
638}
639
3b1429d9 640static int
1b6f4958 641i9xx_select_p2_div(const struct intel_limit *limit,
3b1429d9
VS
642 const struct intel_crtc_state *crtc_state,
643 int target)
79e53945 644{
3b1429d9 645 struct drm_device *dev = crtc_state->base.crtc->dev;
79e53945 646
2d84d2b3 647 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
79e53945 648 /*
a210b028
DV
649 * For LVDS just rely on its current settings for dual-channel.
650 * We haven't figured out how to reliably set up different
651 * single/dual channel state, if we even can.
79e53945 652 */
1974cad0 653 if (intel_is_dual_link_lvds(dev))
3b1429d9 654 return limit->p2.p2_fast;
79e53945 655 else
3b1429d9 656 return limit->p2.p2_slow;
79e53945
JB
657 } else {
658 if (target < limit->p2.dot_limit)
3b1429d9 659 return limit->p2.p2_slow;
79e53945 660 else
3b1429d9 661 return limit->p2.p2_fast;
79e53945 662 }
3b1429d9
VS
663}
664
70e8aa21
ACO
665/*
666 * Returns a set of divisors for the desired target clock with the given
667 * refclk, or FALSE. The returned values represent the clock equation:
668 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
669 *
670 * Target and reference clocks are specified in kHz.
671 *
672 * If match_clock is provided, then best_clock P divider must match the P
673 * divider from @match_clock used for LVDS downclocking.
674 */
3b1429d9 675static bool
1b6f4958 676i9xx_find_best_dpll(const struct intel_limit *limit,
3b1429d9 677 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
678 int target, int refclk, struct dpll *match_clock,
679 struct dpll *best_clock)
3b1429d9
VS
680{
681 struct drm_device *dev = crtc_state->base.crtc->dev;
9e2c8475 682 struct dpll clock;
3b1429d9 683 int err = target;
79e53945 684
0206e353 685 memset(best_clock, 0, sizeof(*best_clock));
79e53945 686
3b1429d9
VS
687 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
688
42158660
ZY
689 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
690 clock.m1++) {
691 for (clock.m2 = limit->m2.min;
692 clock.m2 <= limit->m2.max; clock.m2++) {
c0efc387 693 if (clock.m2 >= clock.m1)
42158660
ZY
694 break;
695 for (clock.n = limit->n.min;
696 clock.n <= limit->n.max; clock.n++) {
697 for (clock.p1 = limit->p1.min;
698 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
699 int this_err;
700
dccbea3b 701 i9xx_calc_dpll_params(refclk, &clock);
e2d214ae
TU
702 if (!intel_PLL_is_valid(to_i915(dev),
703 limit,
ac58c3f0
DV
704 &clock))
705 continue;
706 if (match_clock &&
707 clock.p != match_clock->p)
708 continue;
709
710 this_err = abs(clock.dot - target);
711 if (this_err < err) {
712 *best_clock = clock;
713 err = this_err;
714 }
715 }
716 }
717 }
718 }
719
720 return (err != target);
721}
722
70e8aa21
ACO
723/*
724 * Returns a set of divisors for the desired target clock with the given
725 * refclk, or FALSE. The returned values represent the clock equation:
726 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
727 *
728 * Target and reference clocks are specified in kHz.
729 *
730 * If match_clock is provided, then best_clock P divider must match the P
731 * divider from @match_clock used for LVDS downclocking.
732 */
ac58c3f0 733static bool
1b6f4958 734pnv_find_best_dpll(const struct intel_limit *limit,
a93e255f 735 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
736 int target, int refclk, struct dpll *match_clock,
737 struct dpll *best_clock)
79e53945 738{
3b1429d9 739 struct drm_device *dev = crtc_state->base.crtc->dev;
9e2c8475 740 struct dpll clock;
79e53945
JB
741 int err = target;
742
0206e353 743 memset(best_clock, 0, sizeof(*best_clock));
79e53945 744
3b1429d9
VS
745 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
746
42158660
ZY
747 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
748 clock.m1++) {
749 for (clock.m2 = limit->m2.min;
750 clock.m2 <= limit->m2.max; clock.m2++) {
42158660
ZY
751 for (clock.n = limit->n.min;
752 clock.n <= limit->n.max; clock.n++) {
753 for (clock.p1 = limit->p1.min;
754 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
755 int this_err;
756
dccbea3b 757 pnv_calc_dpll_params(refclk, &clock);
e2d214ae
TU
758 if (!intel_PLL_is_valid(to_i915(dev),
759 limit,
1b894b59 760 &clock))
79e53945 761 continue;
cec2f356
SP
762 if (match_clock &&
763 clock.p != match_clock->p)
764 continue;
79e53945
JB
765
766 this_err = abs(clock.dot - target);
767 if (this_err < err) {
768 *best_clock = clock;
769 err = this_err;
770 }
771 }
772 }
773 }
774 }
775
776 return (err != target);
777}
778
997c030c
ACO
779/*
780 * Returns a set of divisors for the desired target clock with the given
781 * refclk, or FALSE. The returned values represent the clock equation:
782 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
70e8aa21
ACO
783 *
784 * Target and reference clocks are specified in kHz.
785 *
786 * If match_clock is provided, then best_clock P divider must match the P
787 * divider from @match_clock used for LVDS downclocking.
997c030c 788 */
d4906093 789static bool
1b6f4958 790g4x_find_best_dpll(const struct intel_limit *limit,
a93e255f 791 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
792 int target, int refclk, struct dpll *match_clock,
793 struct dpll *best_clock)
d4906093 794{
3b1429d9 795 struct drm_device *dev = crtc_state->base.crtc->dev;
9e2c8475 796 struct dpll clock;
d4906093 797 int max_n;
3b1429d9 798 bool found = false;
6ba770dc
AJ
799 /* approximately equals target * 0.00585 */
800 int err_most = (target >> 8) + (target >> 9);
d4906093
ML
801
802 memset(best_clock, 0, sizeof(*best_clock));
3b1429d9
VS
803
804 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
805
d4906093 806 max_n = limit->n.max;
f77f13e2 807 /* based on hardware requirement, prefer smaller n to precision */
d4906093 808 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
f77f13e2 809 /* based on hardware requirement, prefere larger m1,m2 */
d4906093
ML
810 for (clock.m1 = limit->m1.max;
811 clock.m1 >= limit->m1.min; clock.m1--) {
812 for (clock.m2 = limit->m2.max;
813 clock.m2 >= limit->m2.min; clock.m2--) {
814 for (clock.p1 = limit->p1.max;
815 clock.p1 >= limit->p1.min; clock.p1--) {
816 int this_err;
817
dccbea3b 818 i9xx_calc_dpll_params(refclk, &clock);
e2d214ae
TU
819 if (!intel_PLL_is_valid(to_i915(dev),
820 limit,
1b894b59 821 &clock))
d4906093 822 continue;
1b894b59
CW
823
824 this_err = abs(clock.dot - target);
d4906093
ML
825 if (this_err < err_most) {
826 *best_clock = clock;
827 err_most = this_err;
828 max_n = clock.n;
829 found = true;
830 }
831 }
832 }
833 }
834 }
2c07245f
ZW
835 return found;
836}
837
d5dd62bd
ID
838/*
839 * Check if the calculated PLL configuration is more optimal compared to the
840 * best configuration and error found so far. Return the calculated error.
841 */
842static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq,
9e2c8475
ACO
843 const struct dpll *calculated_clock,
844 const struct dpll *best_clock,
d5dd62bd
ID
845 unsigned int best_error_ppm,
846 unsigned int *error_ppm)
847{
9ca3ba01
ID
848 /*
849 * For CHV ignore the error and consider only the P value.
850 * Prefer a bigger P value based on HW requirements.
851 */
920a14b2 852 if (IS_CHERRYVIEW(to_i915(dev))) {
9ca3ba01
ID
853 *error_ppm = 0;
854
855 return calculated_clock->p > best_clock->p;
856 }
857
24be4e46
ID
858 if (WARN_ON_ONCE(!target_freq))
859 return false;
860
d5dd62bd
ID
861 *error_ppm = div_u64(1000000ULL *
862 abs(target_freq - calculated_clock->dot),
863 target_freq);
864 /*
865 * Prefer a better P value over a better (smaller) error if the error
866 * is small. Ensure this preference for future configurations too by
867 * setting the error to 0.
868 */
869 if (*error_ppm < 100 && calculated_clock->p > best_clock->p) {
870 *error_ppm = 0;
871
872 return true;
873 }
874
875 return *error_ppm + 10 < best_error_ppm;
876}
877
65b3d6a9
ACO
878/*
879 * Returns a set of divisors for the desired target clock with the given
880 * refclk, or FALSE. The returned values represent the clock equation:
881 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
882 */
a0c4da24 883static bool
1b6f4958 884vlv_find_best_dpll(const struct intel_limit *limit,
a93e255f 885 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
886 int target, int refclk, struct dpll *match_clock,
887 struct dpll *best_clock)
a0c4da24 888{
a93e255f 889 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
a919ff14 890 struct drm_device *dev = crtc->base.dev;
9e2c8475 891 struct dpll clock;
69e4f900 892 unsigned int bestppm = 1000000;
27e639bf
VS
893 /* min update 19.2 MHz */
894 int max_n = min(limit->n.max, refclk / 19200);
49e497ef 895 bool found = false;
a0c4da24 896
6b4bf1c4
VS
897 target *= 5; /* fast clock */
898
899 memset(best_clock, 0, sizeof(*best_clock));
a0c4da24
JB
900
901 /* based on hardware requirement, prefer smaller n to precision */
27e639bf 902 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
811bbf05 903 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
889059d8 904 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
c1a9ae43 905 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
6b4bf1c4 906 clock.p = clock.p1 * clock.p2;
a0c4da24 907 /* based on hardware requirement, prefer bigger m1,m2 values */
6b4bf1c4 908 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
d5dd62bd 909 unsigned int ppm;
69e4f900 910
6b4bf1c4
VS
911 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
912 refclk * clock.m1);
913
dccbea3b 914 vlv_calc_dpll_params(refclk, &clock);
43b0ac53 915
e2d214ae
TU
916 if (!intel_PLL_is_valid(to_i915(dev),
917 limit,
f01b7962 918 &clock))
43b0ac53
VS
919 continue;
920
d5dd62bd
ID
921 if (!vlv_PLL_is_optimal(dev, target,
922 &clock,
923 best_clock,
924 bestppm, &ppm))
925 continue;
6b4bf1c4 926
d5dd62bd
ID
927 *best_clock = clock;
928 bestppm = ppm;
929 found = true;
a0c4da24
JB
930 }
931 }
932 }
933 }
a0c4da24 934
49e497ef 935 return found;
a0c4da24 936}
a4fc5ed6 937
65b3d6a9
ACO
938/*
939 * Returns a set of divisors for the desired target clock with the given
940 * refclk, or FALSE. The returned values represent the clock equation:
941 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
942 */
ef9348c8 943static bool
1b6f4958 944chv_find_best_dpll(const struct intel_limit *limit,
a93e255f 945 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
946 int target, int refclk, struct dpll *match_clock,
947 struct dpll *best_clock)
ef9348c8 948{
a93e255f 949 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
a919ff14 950 struct drm_device *dev = crtc->base.dev;
9ca3ba01 951 unsigned int best_error_ppm;
9e2c8475 952 struct dpll clock;
ef9348c8
CML
953 uint64_t m2;
954 int found = false;
955
956 memset(best_clock, 0, sizeof(*best_clock));
9ca3ba01 957 best_error_ppm = 1000000;
ef9348c8
CML
958
959 /*
960 * Based on hardware doc, the n always set to 1, and m1 always
961 * set to 2. If requires to support 200Mhz refclk, we need to
962 * revisit this because n may not 1 anymore.
963 */
964 clock.n = 1, clock.m1 = 2;
965 target *= 5; /* fast clock */
966
967 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
968 for (clock.p2 = limit->p2.p2_fast;
969 clock.p2 >= limit->p2.p2_slow;
970 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
9ca3ba01 971 unsigned int error_ppm;
ef9348c8
CML
972
973 clock.p = clock.p1 * clock.p2;
974
975 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
976 clock.n) << 22, refclk * clock.m1);
977
978 if (m2 > INT_MAX/clock.m1)
979 continue;
980
981 clock.m2 = m2;
982
dccbea3b 983 chv_calc_dpll_params(refclk, &clock);
ef9348c8 984
e2d214ae 985 if (!intel_PLL_is_valid(to_i915(dev), limit, &clock))
ef9348c8
CML
986 continue;
987
9ca3ba01
ID
988 if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock,
989 best_error_ppm, &error_ppm))
990 continue;
991
992 *best_clock = clock;
993 best_error_ppm = error_ppm;
994 found = true;
ef9348c8
CML
995 }
996 }
997
998 return found;
999}
1000
5ab7b0b7 1001bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
9e2c8475 1002 struct dpll *best_clock)
5ab7b0b7 1003{
65b3d6a9 1004 int refclk = 100000;
1b6f4958 1005 const struct intel_limit *limit = &intel_limits_bxt;
5ab7b0b7 1006
65b3d6a9 1007 return chv_find_best_dpll(limit, crtc_state,
5ab7b0b7
ID
1008 target_clock, refclk, NULL, best_clock);
1009}
1010
525b9311 1011bool intel_crtc_active(struct intel_crtc *crtc)
20ddf665 1012{
20ddf665
VS
1013 /* Be paranoid as we can arrive here with only partial
1014 * state retrieved from the hardware during setup.
1015 *
241bfc38 1016 * We can ditch the adjusted_mode.crtc_clock check as soon
20ddf665
VS
1017 * as Haswell has gained clock readout/fastboot support.
1018 *
66e514c1 1019 * We can ditch the crtc->primary->fb check as soon as we can
20ddf665 1020 * properly reconstruct framebuffers.
c3d1f436
MR
1021 *
1022 * FIXME: The intel_crtc->active here should be switched to
1023 * crtc->state->active once we have proper CRTC states wired up
1024 * for atomic.
20ddf665 1025 */
525b9311
VS
1026 return crtc->active && crtc->base.primary->state->fb &&
1027 crtc->config->base.adjusted_mode.crtc_clock;
20ddf665
VS
1028}
1029
a5c961d1
PZ
1030enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1031 enum pipe pipe)
1032{
98187836 1033 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
a5c961d1 1034
e2af48c6 1035 return crtc->config->cpu_transcoder;
a5c961d1
PZ
1036}
1037
6315b5d3 1038static bool pipe_dsl_stopped(struct drm_i915_private *dev_priv, enum pipe pipe)
fbf49ea2 1039{
f0f59a00 1040 i915_reg_t reg = PIPEDSL(pipe);
fbf49ea2
VS
1041 u32 line1, line2;
1042 u32 line_mask;
1043
5db94019 1044 if (IS_GEN2(dev_priv))
fbf49ea2
VS
1045 line_mask = DSL_LINEMASK_GEN2;
1046 else
1047 line_mask = DSL_LINEMASK_GEN3;
1048
1049 line1 = I915_READ(reg) & line_mask;
6adfb1ef 1050 msleep(5);
fbf49ea2
VS
1051 line2 = I915_READ(reg) & line_mask;
1052
1053 return line1 == line2;
1054}
1055
ab7ad7f6
KP
1056/*
1057 * intel_wait_for_pipe_off - wait for pipe to turn off
575f7ab7 1058 * @crtc: crtc whose pipe to wait for
9d0498a2
JB
1059 *
1060 * After disabling a pipe, we can't wait for vblank in the usual way,
1061 * spinning on the vblank interrupt status bit, since we won't actually
1062 * see an interrupt when the pipe is disabled.
1063 *
ab7ad7f6
KP
1064 * On Gen4 and above:
1065 * wait for the pipe register state bit to turn off
1066 *
1067 * Otherwise:
1068 * wait for the display line value to settle (it usually
1069 * ends up stopping at the start of the next frame).
58e10eb9 1070 *
9d0498a2 1071 */
575f7ab7 1072static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
9d0498a2 1073{
6315b5d3 1074 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6e3c9717 1075 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 1076 enum pipe pipe = crtc->pipe;
ab7ad7f6 1077
6315b5d3 1078 if (INTEL_GEN(dev_priv) >= 4) {
f0f59a00 1079 i915_reg_t reg = PIPECONF(cpu_transcoder);
ab7ad7f6
KP
1080
1081 /* Wait for the Pipe State to go off */
b8511f53
CW
1082 if (intel_wait_for_register(dev_priv,
1083 reg, I965_PIPECONF_ACTIVE, 0,
1084 100))
284637d9 1085 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 1086 } else {
ab7ad7f6 1087 /* Wait for the display line to settle */
6315b5d3 1088 if (wait_for(pipe_dsl_stopped(dev_priv, pipe), 100))
284637d9 1089 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 1090 }
79e53945
JB
1091}
1092
b24e7179 1093/* Only for pre-ILK configs */
55607e8a
DV
1094void assert_pll(struct drm_i915_private *dev_priv,
1095 enum pipe pipe, bool state)
b24e7179 1096{
b24e7179
JB
1097 u32 val;
1098 bool cur_state;
1099
649636ef 1100 val = I915_READ(DPLL(pipe));
b24e7179 1101 cur_state = !!(val & DPLL_VCO_ENABLE);
e2c719b7 1102 I915_STATE_WARN(cur_state != state,
b24e7179 1103 "PLL state assertion failure (expected %s, current %s)\n",
87ad3212 1104 onoff(state), onoff(cur_state));
b24e7179 1105}
b24e7179 1106
23538ef1 1107/* XXX: the dsi pll is shared between MIPI DSI ports */
8563b1e8 1108void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
23538ef1
JN
1109{
1110 u32 val;
1111 bool cur_state;
1112
a580516d 1113 mutex_lock(&dev_priv->sb_lock);
23538ef1 1114 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
a580516d 1115 mutex_unlock(&dev_priv->sb_lock);
23538ef1
JN
1116
1117 cur_state = val & DSI_PLL_VCO_EN;
e2c719b7 1118 I915_STATE_WARN(cur_state != state,
23538ef1 1119 "DSI PLL state assertion failure (expected %s, current %s)\n",
87ad3212 1120 onoff(state), onoff(cur_state));
23538ef1 1121}
23538ef1 1122
040484af
JB
1123static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1124 enum pipe pipe, bool state)
1125{
040484af 1126 bool cur_state;
ad80a810
PZ
1127 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1128 pipe);
040484af 1129
2d1fe073 1130 if (HAS_DDI(dev_priv)) {
affa9354 1131 /* DDI does not have a specific FDI_TX register */
649636ef 1132 u32 val = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
ad80a810 1133 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
bf507ef7 1134 } else {
649636ef 1135 u32 val = I915_READ(FDI_TX_CTL(pipe));
bf507ef7
ED
1136 cur_state = !!(val & FDI_TX_ENABLE);
1137 }
e2c719b7 1138 I915_STATE_WARN(cur_state != state,
040484af 1139 "FDI TX state assertion failure (expected %s, current %s)\n",
87ad3212 1140 onoff(state), onoff(cur_state));
040484af
JB
1141}
1142#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1143#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1144
1145static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1146 enum pipe pipe, bool state)
1147{
040484af
JB
1148 u32 val;
1149 bool cur_state;
1150
649636ef 1151 val = I915_READ(FDI_RX_CTL(pipe));
d63fa0dc 1152 cur_state = !!(val & FDI_RX_ENABLE);
e2c719b7 1153 I915_STATE_WARN(cur_state != state,
040484af 1154 "FDI RX state assertion failure (expected %s, current %s)\n",
87ad3212 1155 onoff(state), onoff(cur_state));
040484af
JB
1156}
1157#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1158#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1159
1160static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1161 enum pipe pipe)
1162{
040484af
JB
1163 u32 val;
1164
1165 /* ILK FDI PLL is always enabled */
7e22dbbb 1166 if (IS_GEN5(dev_priv))
040484af
JB
1167 return;
1168
bf507ef7 1169 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
2d1fe073 1170 if (HAS_DDI(dev_priv))
bf507ef7
ED
1171 return;
1172
649636ef 1173 val = I915_READ(FDI_TX_CTL(pipe));
e2c719b7 1174 I915_STATE_WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
040484af
JB
1175}
1176
55607e8a
DV
1177void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1178 enum pipe pipe, bool state)
040484af 1179{
040484af 1180 u32 val;
55607e8a 1181 bool cur_state;
040484af 1182
649636ef 1183 val = I915_READ(FDI_RX_CTL(pipe));
55607e8a 1184 cur_state = !!(val & FDI_RX_PLL_ENABLE);
e2c719b7 1185 I915_STATE_WARN(cur_state != state,
55607e8a 1186 "FDI RX PLL assertion failure (expected %s, current %s)\n",
87ad3212 1187 onoff(state), onoff(cur_state));
040484af
JB
1188}
1189
4f8036a2 1190void assert_panel_unlocked(struct drm_i915_private *dev_priv, enum pipe pipe)
ea0760cf 1191{
f0f59a00 1192 i915_reg_t pp_reg;
ea0760cf
JB
1193 u32 val;
1194 enum pipe panel_pipe = PIPE_A;
0de3b485 1195 bool locked = true;
ea0760cf 1196
4f8036a2 1197 if (WARN_ON(HAS_DDI(dev_priv)))
bedd4dba
JN
1198 return;
1199
4f8036a2 1200 if (HAS_PCH_SPLIT(dev_priv)) {
bedd4dba
JN
1201 u32 port_sel;
1202
44cb734c
ID
1203 pp_reg = PP_CONTROL(0);
1204 port_sel = I915_READ(PP_ON_DELAYS(0)) & PANEL_PORT_SELECT_MASK;
bedd4dba
JN
1205
1206 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1207 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1208 panel_pipe = PIPE_B;
1209 /* XXX: else fix for eDP */
4f8036a2 1210 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
bedd4dba 1211 /* presumably write lock depends on pipe, not port select */
44cb734c 1212 pp_reg = PP_CONTROL(pipe);
bedd4dba 1213 panel_pipe = pipe;
ea0760cf 1214 } else {
44cb734c 1215 pp_reg = PP_CONTROL(0);
bedd4dba
JN
1216 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1217 panel_pipe = PIPE_B;
ea0760cf
JB
1218 }
1219
1220 val = I915_READ(pp_reg);
1221 if (!(val & PANEL_POWER_ON) ||
ec49ba2d 1222 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
ea0760cf
JB
1223 locked = false;
1224
e2c719b7 1225 I915_STATE_WARN(panel_pipe == pipe && locked,
ea0760cf 1226 "panel assertion failure, pipe %c regs locked\n",
9db4a9c7 1227 pipe_name(pipe));
ea0760cf
JB
1228}
1229
93ce0ba6
JN
1230static void assert_cursor(struct drm_i915_private *dev_priv,
1231 enum pipe pipe, bool state)
1232{
93ce0ba6
JN
1233 bool cur_state;
1234
50a0bc90 1235 if (IS_845G(dev_priv) || IS_I865G(dev_priv))
0b87c24e 1236 cur_state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE;
d9d82081 1237 else
5efb3e28 1238 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
93ce0ba6 1239
e2c719b7 1240 I915_STATE_WARN(cur_state != state,
93ce0ba6 1241 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
87ad3212 1242 pipe_name(pipe), onoff(state), onoff(cur_state));
93ce0ba6
JN
1243}
1244#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1245#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1246
b840d907
JB
1247void assert_pipe(struct drm_i915_private *dev_priv,
1248 enum pipe pipe, bool state)
b24e7179 1249{
63d7bbe9 1250 bool cur_state;
702e7a56
PZ
1251 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1252 pipe);
4feed0eb 1253 enum intel_display_power_domain power_domain;
b24e7179 1254
b6b5d049
VS
1255 /* if we need the pipe quirk it must be always on */
1256 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1257 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
8e636784
DV
1258 state = true;
1259
4feed0eb
ID
1260 power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
1261 if (intel_display_power_get_if_enabled(dev_priv, power_domain)) {
649636ef 1262 u32 val = I915_READ(PIPECONF(cpu_transcoder));
69310161 1263 cur_state = !!(val & PIPECONF_ENABLE);
4feed0eb
ID
1264
1265 intel_display_power_put(dev_priv, power_domain);
1266 } else {
1267 cur_state = false;
69310161
PZ
1268 }
1269
e2c719b7 1270 I915_STATE_WARN(cur_state != state,
63d7bbe9 1271 "pipe %c assertion failure (expected %s, current %s)\n",
87ad3212 1272 pipe_name(pipe), onoff(state), onoff(cur_state));
b24e7179
JB
1273}
1274
931872fc
CW
1275static void assert_plane(struct drm_i915_private *dev_priv,
1276 enum plane plane, bool state)
b24e7179 1277{
b24e7179 1278 u32 val;
931872fc 1279 bool cur_state;
b24e7179 1280
649636ef 1281 val = I915_READ(DSPCNTR(plane));
931872fc 1282 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
e2c719b7 1283 I915_STATE_WARN(cur_state != state,
931872fc 1284 "plane %c assertion failure (expected %s, current %s)\n",
87ad3212 1285 plane_name(plane), onoff(state), onoff(cur_state));
b24e7179
JB
1286}
1287
931872fc
CW
1288#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1289#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1290
b24e7179
JB
1291static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1292 enum pipe pipe)
1293{
649636ef 1294 int i;
b24e7179 1295
653e1026 1296 /* Primary planes are fixed to pipes on gen4+ */
6315b5d3 1297 if (INTEL_GEN(dev_priv) >= 4) {
649636ef 1298 u32 val = I915_READ(DSPCNTR(pipe));
e2c719b7 1299 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
28c05794
AJ
1300 "plane %c assertion failure, should be disabled but not\n",
1301 plane_name(pipe));
19ec1358 1302 return;
28c05794 1303 }
19ec1358 1304
b24e7179 1305 /* Need to check both planes against the pipe */
055e393f 1306 for_each_pipe(dev_priv, i) {
649636ef
VS
1307 u32 val = I915_READ(DSPCNTR(i));
1308 enum pipe cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
b24e7179 1309 DISPPLANE_SEL_PIPE_SHIFT;
e2c719b7 1310 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
9db4a9c7
JB
1311 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1312 plane_name(i), pipe_name(pipe));
b24e7179
JB
1313 }
1314}
1315
19332d7a
JB
1316static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1317 enum pipe pipe)
1318{
649636ef 1319 int sprite;
19332d7a 1320
6315b5d3 1321 if (INTEL_GEN(dev_priv) >= 9) {
3bdcfc0c 1322 for_each_sprite(dev_priv, pipe, sprite) {
649636ef 1323 u32 val = I915_READ(PLANE_CTL(pipe, sprite));
e2c719b7 1324 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
7feb8b88
DL
1325 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1326 sprite, pipe_name(pipe));
1327 }
920a14b2 1328 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
3bdcfc0c 1329 for_each_sprite(dev_priv, pipe, sprite) {
649636ef 1330 u32 val = I915_READ(SPCNTR(pipe, sprite));
e2c719b7 1331 I915_STATE_WARN(val & SP_ENABLE,
20674eef 1332 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1fe47785 1333 sprite_name(pipe, sprite), pipe_name(pipe));
20674eef 1334 }
6315b5d3 1335 } else if (INTEL_GEN(dev_priv) >= 7) {
649636ef 1336 u32 val = I915_READ(SPRCTL(pipe));
e2c719b7 1337 I915_STATE_WARN(val & SPRITE_ENABLE,
06da8da2 1338 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef 1339 plane_name(pipe), pipe_name(pipe));
6315b5d3 1340 } else if (INTEL_GEN(dev_priv) >= 5) {
649636ef 1341 u32 val = I915_READ(DVSCNTR(pipe));
e2c719b7 1342 I915_STATE_WARN(val & DVS_ENABLE,
06da8da2 1343 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef 1344 plane_name(pipe), pipe_name(pipe));
19332d7a
JB
1345 }
1346}
1347
08c71e5e
VS
1348static void assert_vblank_disabled(struct drm_crtc *crtc)
1349{
e2c719b7 1350 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
08c71e5e
VS
1351 drm_crtc_vblank_put(crtc);
1352}
1353
7abd4b35
ACO
1354void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1355 enum pipe pipe)
92f2584a 1356{
92f2584a
JB
1357 u32 val;
1358 bool enabled;
1359
649636ef 1360 val = I915_READ(PCH_TRANSCONF(pipe));
92f2584a 1361 enabled = !!(val & TRANS_ENABLE);
e2c719b7 1362 I915_STATE_WARN(enabled,
9db4a9c7
JB
1363 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1364 pipe_name(pipe));
92f2584a
JB
1365}
1366
4e634389
KP
1367static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1368 enum pipe pipe, u32 port_sel, u32 val)
f0575e92
KP
1369{
1370 if ((val & DP_PORT_EN) == 0)
1371 return false;
1372
2d1fe073 1373 if (HAS_PCH_CPT(dev_priv)) {
f0f59a00 1374 u32 trans_dp_ctl = I915_READ(TRANS_DP_CTL(pipe));
f0575e92
KP
1375 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1376 return false;
2d1fe073 1377 } else if (IS_CHERRYVIEW(dev_priv)) {
44f37d1f
CML
1378 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1379 return false;
f0575e92
KP
1380 } else {
1381 if ((val & DP_PIPE_MASK) != (pipe << 30))
1382 return false;
1383 }
1384 return true;
1385}
1386
1519b995
KP
1387static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1388 enum pipe pipe, u32 val)
1389{
dc0fa718 1390 if ((val & SDVO_ENABLE) == 0)
1519b995
KP
1391 return false;
1392
2d1fe073 1393 if (HAS_PCH_CPT(dev_priv)) {
dc0fa718 1394 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
1519b995 1395 return false;
2d1fe073 1396 } else if (IS_CHERRYVIEW(dev_priv)) {
44f37d1f
CML
1397 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1398 return false;
1519b995 1399 } else {
dc0fa718 1400 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
1519b995
KP
1401 return false;
1402 }
1403 return true;
1404}
1405
1406static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1407 enum pipe pipe, u32 val)
1408{
1409 if ((val & LVDS_PORT_EN) == 0)
1410 return false;
1411
2d1fe073 1412 if (HAS_PCH_CPT(dev_priv)) {
1519b995
KP
1413 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1414 return false;
1415 } else {
1416 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1417 return false;
1418 }
1419 return true;
1420}
1421
1422static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1423 enum pipe pipe, u32 val)
1424{
1425 if ((val & ADPA_DAC_ENABLE) == 0)
1426 return false;
2d1fe073 1427 if (HAS_PCH_CPT(dev_priv)) {
1519b995
KP
1428 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1429 return false;
1430 } else {
1431 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1432 return false;
1433 }
1434 return true;
1435}
1436
291906f1 1437static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
f0f59a00
VS
1438 enum pipe pipe, i915_reg_t reg,
1439 u32 port_sel)
291906f1 1440{
47a05eca 1441 u32 val = I915_READ(reg);
e2c719b7 1442 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
291906f1 1443 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
f0f59a00 1444 i915_mmio_reg_offset(reg), pipe_name(pipe));
de9a35ab 1445
2d1fe073 1446 I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & DP_PORT_EN) == 0
75c5da27 1447 && (val & DP_PIPEB_SELECT),
de9a35ab 1448 "IBX PCH dp port still using transcoder B\n");
291906f1
JB
1449}
1450
1451static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
f0f59a00 1452 enum pipe pipe, i915_reg_t reg)
291906f1 1453{
47a05eca 1454 u32 val = I915_READ(reg);
e2c719b7 1455 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
23c99e77 1456 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
f0f59a00 1457 i915_mmio_reg_offset(reg), pipe_name(pipe));
de9a35ab 1458
2d1fe073 1459 I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & SDVO_ENABLE) == 0
75c5da27 1460 && (val & SDVO_PIPE_B_SELECT),
de9a35ab 1461 "IBX PCH hdmi port still using transcoder B\n");
291906f1
JB
1462}
1463
1464static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1465 enum pipe pipe)
1466{
291906f1 1467 u32 val;
291906f1 1468
f0575e92
KP
1469 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1470 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1471 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
291906f1 1472
649636ef 1473 val = I915_READ(PCH_ADPA);
e2c719b7 1474 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
291906f1 1475 "PCH VGA enabled on transcoder %c, should be disabled\n",
9db4a9c7 1476 pipe_name(pipe));
291906f1 1477
649636ef 1478 val = I915_READ(PCH_LVDS);
e2c719b7 1479 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
291906f1 1480 "PCH LVDS enabled on transcoder %c, should be disabled\n",
9db4a9c7 1481 pipe_name(pipe));
291906f1 1482
e2debe91
PZ
1483 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1484 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1485 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
291906f1
JB
1486}
1487
cd2d34d9
VS
1488static void _vlv_enable_pll(struct intel_crtc *crtc,
1489 const struct intel_crtc_state *pipe_config)
1490{
1491 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1492 enum pipe pipe = crtc->pipe;
1493
1494 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
1495 POSTING_READ(DPLL(pipe));
1496 udelay(150);
1497
2c30b43b
CW
1498 if (intel_wait_for_register(dev_priv,
1499 DPLL(pipe),
1500 DPLL_LOCK_VLV,
1501 DPLL_LOCK_VLV,
1502 1))
cd2d34d9
VS
1503 DRM_ERROR("DPLL %d failed to lock\n", pipe);
1504}
1505
d288f65f 1506static void vlv_enable_pll(struct intel_crtc *crtc,
5cec258b 1507 const struct intel_crtc_state *pipe_config)
87442f73 1508{
cd2d34d9 1509 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
8bd3f301 1510 enum pipe pipe = crtc->pipe;
87442f73 1511
8bd3f301 1512 assert_pipe_disabled(dev_priv, pipe);
87442f73 1513
87442f73 1514 /* PLL is protected by panel, make sure we can write it */
7d1a83cb 1515 assert_panel_unlocked(dev_priv, pipe);
87442f73 1516
cd2d34d9
VS
1517 if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE)
1518 _vlv_enable_pll(crtc, pipe_config);
426115cf 1519
8bd3f301
VS
1520 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
1521 POSTING_READ(DPLL_MD(pipe));
87442f73
DV
1522}
1523
cd2d34d9
VS
1524
1525static void _chv_enable_pll(struct intel_crtc *crtc,
1526 const struct intel_crtc_state *pipe_config)
9d556c99 1527{
cd2d34d9 1528 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
8bd3f301 1529 enum pipe pipe = crtc->pipe;
9d556c99 1530 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9d556c99
CML
1531 u32 tmp;
1532
a580516d 1533 mutex_lock(&dev_priv->sb_lock);
9d556c99
CML
1534
1535 /* Enable back the 10bit clock to display controller */
1536 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1537 tmp |= DPIO_DCLKP_EN;
1538 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1539
54433e91
VS
1540 mutex_unlock(&dev_priv->sb_lock);
1541
9d556c99
CML
1542 /*
1543 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1544 */
1545 udelay(1);
1546
1547 /* Enable PLL */
d288f65f 1548 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
9d556c99
CML
1549
1550 /* Check PLL is locked */
6b18826a
CW
1551 if (intel_wait_for_register(dev_priv,
1552 DPLL(pipe), DPLL_LOCK_VLV, DPLL_LOCK_VLV,
1553 1))
9d556c99 1554 DRM_ERROR("PLL %d failed to lock\n", pipe);
cd2d34d9
VS
1555}
1556
1557static void chv_enable_pll(struct intel_crtc *crtc,
1558 const struct intel_crtc_state *pipe_config)
1559{
1560 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1561 enum pipe pipe = crtc->pipe;
1562
1563 assert_pipe_disabled(dev_priv, pipe);
1564
1565 /* PLL is protected by panel, make sure we can write it */
1566 assert_panel_unlocked(dev_priv, pipe);
1567
1568 if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE)
1569 _chv_enable_pll(crtc, pipe_config);
9d556c99 1570
c231775c
VS
1571 if (pipe != PIPE_A) {
1572 /*
1573 * WaPixelRepeatModeFixForC0:chv
1574 *
1575 * DPLLCMD is AWOL. Use chicken bits to propagate
1576 * the value from DPLLBMD to either pipe B or C.
1577 */
1578 I915_WRITE(CBR4_VLV, pipe == PIPE_B ? CBR_DPLLBMD_PIPE_B : CBR_DPLLBMD_PIPE_C);
1579 I915_WRITE(DPLL_MD(PIPE_B), pipe_config->dpll_hw_state.dpll_md);
1580 I915_WRITE(CBR4_VLV, 0);
1581 dev_priv->chv_dpll_md[pipe] = pipe_config->dpll_hw_state.dpll_md;
1582
1583 /*
1584 * DPLLB VGA mode also seems to cause problems.
1585 * We should always have it disabled.
1586 */
1587 WARN_ON((I915_READ(DPLL(PIPE_B)) & DPLL_VGA_MODE_DIS) == 0);
1588 } else {
1589 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
1590 POSTING_READ(DPLL_MD(pipe));
1591 }
9d556c99
CML
1592}
1593
6315b5d3 1594static int intel_num_dvo_pipes(struct drm_i915_private *dev_priv)
1c4e0274
VS
1595{
1596 struct intel_crtc *crtc;
1597 int count = 0;
1598
6315b5d3 1599 for_each_intel_crtc(&dev_priv->drm, crtc) {
3538b9df 1600 count += crtc->base.state->active &&
2d84d2b3
VS
1601 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_DVO);
1602 }
1c4e0274
VS
1603
1604 return count;
1605}
1606
66e3d5c0 1607static void i9xx_enable_pll(struct intel_crtc *crtc)
63d7bbe9 1608{
6315b5d3 1609 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
f0f59a00 1610 i915_reg_t reg = DPLL(crtc->pipe);
6e3c9717 1611 u32 dpll = crtc->config->dpll_hw_state.dpll;
63d7bbe9 1612
66e3d5c0 1613 assert_pipe_disabled(dev_priv, crtc->pipe);
58c6eaa2 1614
63d7bbe9 1615 /* PLL is protected by panel, make sure we can write it */
50a0bc90 1616 if (IS_MOBILE(dev_priv) && !IS_I830(dev_priv))
66e3d5c0 1617 assert_panel_unlocked(dev_priv, crtc->pipe);
63d7bbe9 1618
1c4e0274 1619 /* Enable DVO 2x clock on both PLLs if necessary */
6315b5d3 1620 if (IS_I830(dev_priv) && intel_num_dvo_pipes(dev_priv) > 0) {
1c4e0274
VS
1621 /*
1622 * It appears to be important that we don't enable this
1623 * for the current pipe before otherwise configuring the
1624 * PLL. No idea how this should be handled if multiple
1625 * DVO outputs are enabled simultaneosly.
1626 */
1627 dpll |= DPLL_DVO_2X_MODE;
1628 I915_WRITE(DPLL(!crtc->pipe),
1629 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1630 }
66e3d5c0 1631
c2b63374
VS
1632 /*
1633 * Apparently we need to have VGA mode enabled prior to changing
1634 * the P1/P2 dividers. Otherwise the DPLL will keep using the old
1635 * dividers, even though the register value does change.
1636 */
1637 I915_WRITE(reg, 0);
1638
8e7a65aa
VS
1639 I915_WRITE(reg, dpll);
1640
66e3d5c0
DV
1641 /* Wait for the clocks to stabilize. */
1642 POSTING_READ(reg);
1643 udelay(150);
1644
6315b5d3 1645 if (INTEL_GEN(dev_priv) >= 4) {
66e3d5c0 1646 I915_WRITE(DPLL_MD(crtc->pipe),
6e3c9717 1647 crtc->config->dpll_hw_state.dpll_md);
66e3d5c0
DV
1648 } else {
1649 /* The pixel multiplier can only be updated once the
1650 * DPLL is enabled and the clocks are stable.
1651 *
1652 * So write it again.
1653 */
1654 I915_WRITE(reg, dpll);
1655 }
63d7bbe9
JB
1656
1657 /* We do this three times for luck */
66e3d5c0 1658 I915_WRITE(reg, dpll);
63d7bbe9
JB
1659 POSTING_READ(reg);
1660 udelay(150); /* wait for warmup */
66e3d5c0 1661 I915_WRITE(reg, dpll);
63d7bbe9
JB
1662 POSTING_READ(reg);
1663 udelay(150); /* wait for warmup */
66e3d5c0 1664 I915_WRITE(reg, dpll);
63d7bbe9
JB
1665 POSTING_READ(reg);
1666 udelay(150); /* wait for warmup */
1667}
1668
1669/**
50b44a44 1670 * i9xx_disable_pll - disable a PLL
63d7bbe9
JB
1671 * @dev_priv: i915 private structure
1672 * @pipe: pipe PLL to disable
1673 *
1674 * Disable the PLL for @pipe, making sure the pipe is off first.
1675 *
1676 * Note! This is for pre-ILK only.
1677 */
1c4e0274 1678static void i9xx_disable_pll(struct intel_crtc *crtc)
63d7bbe9 1679{
6315b5d3 1680 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1c4e0274
VS
1681 enum pipe pipe = crtc->pipe;
1682
1683 /* Disable DVO 2x clock on both PLLs if necessary */
50a0bc90 1684 if (IS_I830(dev_priv) &&
2d84d2b3 1685 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_DVO) &&
6315b5d3 1686 !intel_num_dvo_pipes(dev_priv)) {
1c4e0274
VS
1687 I915_WRITE(DPLL(PIPE_B),
1688 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1689 I915_WRITE(DPLL(PIPE_A),
1690 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1691 }
1692
b6b5d049
VS
1693 /* Don't disable pipe or pipe PLLs if needed */
1694 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1695 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
63d7bbe9
JB
1696 return;
1697
1698 /* Make sure the pipe isn't still relying on us */
1699 assert_pipe_disabled(dev_priv, pipe);
1700
b8afb911 1701 I915_WRITE(DPLL(pipe), DPLL_VGA_MODE_DIS);
50b44a44 1702 POSTING_READ(DPLL(pipe));
63d7bbe9
JB
1703}
1704
f6071166
JB
1705static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1706{
b8afb911 1707 u32 val;
f6071166
JB
1708
1709 /* Make sure the pipe isn't still relying on us */
1710 assert_pipe_disabled(dev_priv, pipe);
1711
03ed5cbf
VS
1712 val = DPLL_INTEGRATED_REF_CLK_VLV |
1713 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
1714 if (pipe != PIPE_A)
1715 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1716
f6071166
JB
1717 I915_WRITE(DPLL(pipe), val);
1718 POSTING_READ(DPLL(pipe));
076ed3b2
CML
1719}
1720
1721static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1722{
d752048d 1723 enum dpio_channel port = vlv_pipe_to_channel(pipe);
076ed3b2
CML
1724 u32 val;
1725
a11b0703
VS
1726 /* Make sure the pipe isn't still relying on us */
1727 assert_pipe_disabled(dev_priv, pipe);
076ed3b2 1728
60bfe44f
VS
1729 val = DPLL_SSC_REF_CLK_CHV |
1730 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
a11b0703
VS
1731 if (pipe != PIPE_A)
1732 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
03ed5cbf 1733
a11b0703
VS
1734 I915_WRITE(DPLL(pipe), val);
1735 POSTING_READ(DPLL(pipe));
d752048d 1736
a580516d 1737 mutex_lock(&dev_priv->sb_lock);
d752048d
VS
1738
1739 /* Disable 10bit clock to display controller */
1740 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1741 val &= ~DPIO_DCLKP_EN;
1742 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1743
a580516d 1744 mutex_unlock(&dev_priv->sb_lock);
f6071166
JB
1745}
1746
e4607fcf 1747void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
9b6de0a1
VS
1748 struct intel_digital_port *dport,
1749 unsigned int expected_mask)
89b667f8
JB
1750{
1751 u32 port_mask;
f0f59a00 1752 i915_reg_t dpll_reg;
89b667f8 1753
e4607fcf
CML
1754 switch (dport->port) {
1755 case PORT_B:
89b667f8 1756 port_mask = DPLL_PORTB_READY_MASK;
00fc31b7 1757 dpll_reg = DPLL(0);
e4607fcf
CML
1758 break;
1759 case PORT_C:
89b667f8 1760 port_mask = DPLL_PORTC_READY_MASK;
00fc31b7 1761 dpll_reg = DPLL(0);
9b6de0a1 1762 expected_mask <<= 4;
00fc31b7
CML
1763 break;
1764 case PORT_D:
1765 port_mask = DPLL_PORTD_READY_MASK;
1766 dpll_reg = DPIO_PHY_STATUS;
e4607fcf
CML
1767 break;
1768 default:
1769 BUG();
1770 }
89b667f8 1771
370004d3
CW
1772 if (intel_wait_for_register(dev_priv,
1773 dpll_reg, port_mask, expected_mask,
1774 1000))
9b6de0a1
VS
1775 WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n",
1776 port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask);
89b667f8
JB
1777}
1778
b8a4f404
PZ
1779static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1780 enum pipe pipe)
040484af 1781{
98187836
VS
1782 struct intel_crtc *intel_crtc = intel_get_crtc_for_pipe(dev_priv,
1783 pipe);
f0f59a00
VS
1784 i915_reg_t reg;
1785 uint32_t val, pipeconf_val;
040484af 1786
040484af 1787 /* Make sure PCH DPLL is enabled */
8106ddbd 1788 assert_shared_dpll_enabled(dev_priv, intel_crtc->config->shared_dpll);
040484af
JB
1789
1790 /* FDI must be feeding us bits for PCH ports */
1791 assert_fdi_tx_enabled(dev_priv, pipe);
1792 assert_fdi_rx_enabled(dev_priv, pipe);
1793
6e266956 1794 if (HAS_PCH_CPT(dev_priv)) {
23670b32
DV
1795 /* Workaround: Set the timing override bit before enabling the
1796 * pch transcoder. */
1797 reg = TRANS_CHICKEN2(pipe);
1798 val = I915_READ(reg);
1799 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1800 I915_WRITE(reg, val);
59c859d6 1801 }
23670b32 1802
ab9412ba 1803 reg = PCH_TRANSCONF(pipe);
040484af 1804 val = I915_READ(reg);
5f7f726d 1805 pipeconf_val = I915_READ(PIPECONF(pipe));
e9bcff5c 1806
2d1fe073 1807 if (HAS_PCH_IBX(dev_priv)) {
e9bcff5c 1808 /*
c5de7c6f
VS
1809 * Make the BPC in transcoder be consistent with
1810 * that in pipeconf reg. For HDMI we must use 8bpc
1811 * here for both 8bpc and 12bpc.
e9bcff5c 1812 */
dfd07d72 1813 val &= ~PIPECONF_BPC_MASK;
2d84d2b3 1814 if (intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_HDMI))
c5de7c6f
VS
1815 val |= PIPECONF_8BPC;
1816 else
1817 val |= pipeconf_val & PIPECONF_BPC_MASK;
e9bcff5c 1818 }
5f7f726d
PZ
1819
1820 val &= ~TRANS_INTERLACE_MASK;
1821 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
2d1fe073 1822 if (HAS_PCH_IBX(dev_priv) &&
2d84d2b3 1823 intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_SDVO))
7c26e5c6
PZ
1824 val |= TRANS_LEGACY_INTERLACED_ILK;
1825 else
1826 val |= TRANS_INTERLACED;
5f7f726d
PZ
1827 else
1828 val |= TRANS_PROGRESSIVE;
1829
040484af 1830 I915_WRITE(reg, val | TRANS_ENABLE);
650fbd84
CW
1831 if (intel_wait_for_register(dev_priv,
1832 reg, TRANS_STATE_ENABLE, TRANS_STATE_ENABLE,
1833 100))
4bb6f1f3 1834 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
040484af
JB
1835}
1836
8fb033d7 1837static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
937bb610 1838 enum transcoder cpu_transcoder)
040484af 1839{
8fb033d7 1840 u32 val, pipeconf_val;
8fb033d7 1841
8fb033d7 1842 /* FDI must be feeding us bits for PCH ports */
1a240d4d 1843 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
937bb610 1844 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
8fb033d7 1845
223a6fdf 1846 /* Workaround: set timing override bit. */
36c0d0cf 1847 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
23670b32 1848 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
36c0d0cf 1849 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
223a6fdf 1850
25f3ef11 1851 val = TRANS_ENABLE;
937bb610 1852 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
8fb033d7 1853
9a76b1c6
PZ
1854 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1855 PIPECONF_INTERLACED_ILK)
a35f2679 1856 val |= TRANS_INTERLACED;
8fb033d7
PZ
1857 else
1858 val |= TRANS_PROGRESSIVE;
1859
ab9412ba 1860 I915_WRITE(LPT_TRANSCONF, val);
d9f96244
CW
1861 if (intel_wait_for_register(dev_priv,
1862 LPT_TRANSCONF,
1863 TRANS_STATE_ENABLE,
1864 TRANS_STATE_ENABLE,
1865 100))
937bb610 1866 DRM_ERROR("Failed to enable PCH transcoder\n");
8fb033d7
PZ
1867}
1868
b8a4f404
PZ
1869static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1870 enum pipe pipe)
040484af 1871{
f0f59a00
VS
1872 i915_reg_t reg;
1873 uint32_t val;
040484af
JB
1874
1875 /* FDI relies on the transcoder */
1876 assert_fdi_tx_disabled(dev_priv, pipe);
1877 assert_fdi_rx_disabled(dev_priv, pipe);
1878
291906f1
JB
1879 /* Ports must be off as well */
1880 assert_pch_ports_disabled(dev_priv, pipe);
1881
ab9412ba 1882 reg = PCH_TRANSCONF(pipe);
040484af
JB
1883 val = I915_READ(reg);
1884 val &= ~TRANS_ENABLE;
1885 I915_WRITE(reg, val);
1886 /* wait for PCH transcoder off, transcoder state */
a7d04662
CW
1887 if (intel_wait_for_register(dev_priv,
1888 reg, TRANS_STATE_ENABLE, 0,
1889 50))
4bb6f1f3 1890 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
23670b32 1891
6e266956 1892 if (HAS_PCH_CPT(dev_priv)) {
23670b32
DV
1893 /* Workaround: Clear the timing override chicken bit again. */
1894 reg = TRANS_CHICKEN2(pipe);
1895 val = I915_READ(reg);
1896 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1897 I915_WRITE(reg, val);
1898 }
040484af
JB
1899}
1900
b7076546 1901void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
8fb033d7 1902{
8fb033d7
PZ
1903 u32 val;
1904
ab9412ba 1905 val = I915_READ(LPT_TRANSCONF);
8fb033d7 1906 val &= ~TRANS_ENABLE;
ab9412ba 1907 I915_WRITE(LPT_TRANSCONF, val);
8fb033d7 1908 /* wait for PCH transcoder off, transcoder state */
dfdb4749
CW
1909 if (intel_wait_for_register(dev_priv,
1910 LPT_TRANSCONF, TRANS_STATE_ENABLE, 0,
1911 50))
8a52fd9f 1912 DRM_ERROR("Failed to disable PCH transcoder\n");
223a6fdf
PZ
1913
1914 /* Workaround: clear timing override bit. */
36c0d0cf 1915 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
23670b32 1916 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
36c0d0cf 1917 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
040484af
JB
1918}
1919
65f2130c
VS
1920enum transcoder intel_crtc_pch_transcoder(struct intel_crtc *crtc)
1921{
1922 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1923
1924 WARN_ON(!crtc->config->has_pch_encoder);
1925
1926 if (HAS_PCH_LPT(dev_priv))
1927 return TRANSCODER_A;
1928 else
1929 return (enum transcoder) crtc->pipe;
1930}
1931
b24e7179 1932/**
309cfea8 1933 * intel_enable_pipe - enable a pipe, asserting requirements
0372264a 1934 * @crtc: crtc responsible for the pipe
b24e7179 1935 *
0372264a 1936 * Enable @crtc's pipe, making sure that various hardware specific requirements
b24e7179 1937 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
b24e7179 1938 */
e1fdc473 1939static void intel_enable_pipe(struct intel_crtc *crtc)
b24e7179 1940{
0372264a 1941 struct drm_device *dev = crtc->base.dev;
fac5e23e 1942 struct drm_i915_private *dev_priv = to_i915(dev);
0372264a 1943 enum pipe pipe = crtc->pipe;
1a70a728 1944 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
f0f59a00 1945 i915_reg_t reg;
b24e7179
JB
1946 u32 val;
1947
9e2ee2dd
VS
1948 DRM_DEBUG_KMS("enabling pipe %c\n", pipe_name(pipe));
1949
58c6eaa2 1950 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 1951 assert_cursor_disabled(dev_priv, pipe);
58c6eaa2
DV
1952 assert_sprites_disabled(dev_priv, pipe);
1953
b24e7179
JB
1954 /*
1955 * A pipe without a PLL won't actually be able to drive bits from
1956 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1957 * need the check.
1958 */
09fa8bb9 1959 if (HAS_GMCH_DISPLAY(dev_priv)) {
d7edc4e5 1960 if (intel_crtc_has_type(crtc->config, INTEL_OUTPUT_DSI))
23538ef1
JN
1961 assert_dsi_pll_enabled(dev_priv);
1962 else
1963 assert_pll_enabled(dev_priv, pipe);
09fa8bb9 1964 } else {
6e3c9717 1965 if (crtc->config->has_pch_encoder) {
040484af 1966 /* if driving the PCH, we need FDI enabled */
65f2130c
VS
1967 assert_fdi_rx_pll_enabled(dev_priv,
1968 (enum pipe) intel_crtc_pch_transcoder(crtc));
1a240d4d
DV
1969 assert_fdi_tx_pll_enabled(dev_priv,
1970 (enum pipe) cpu_transcoder);
040484af
JB
1971 }
1972 /* FIXME: assert CPU port conditions for SNB+ */
1973 }
b24e7179 1974
702e7a56 1975 reg = PIPECONF(cpu_transcoder);
b24e7179 1976 val = I915_READ(reg);
7ad25d48 1977 if (val & PIPECONF_ENABLE) {
b6b5d049
VS
1978 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1979 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
00d70b15 1980 return;
7ad25d48 1981 }
00d70b15
CW
1982
1983 I915_WRITE(reg, val | PIPECONF_ENABLE);
851855d8 1984 POSTING_READ(reg);
b7792d8b
VS
1985
1986 /*
1987 * Until the pipe starts DSL will read as 0, which would cause
1988 * an apparent vblank timestamp jump, which messes up also the
1989 * frame count when it's derived from the timestamps. So let's
1990 * wait for the pipe to start properly before we call
1991 * drm_crtc_vblank_on()
1992 */
1993 if (dev->max_vblank_count == 0 &&
1994 wait_for(intel_get_crtc_scanline(crtc) != crtc->scanline_offset, 50))
1995 DRM_ERROR("pipe %c didn't start\n", pipe_name(pipe));
b24e7179
JB
1996}
1997
1998/**
309cfea8 1999 * intel_disable_pipe - disable a pipe, asserting requirements
575f7ab7 2000 * @crtc: crtc whose pipes is to be disabled
b24e7179 2001 *
575f7ab7
VS
2002 * Disable the pipe of @crtc, making sure that various hardware
2003 * specific requirements are met, if applicable, e.g. plane
2004 * disabled, panel fitter off, etc.
b24e7179
JB
2005 *
2006 * Will wait until the pipe has shut down before returning.
2007 */
575f7ab7 2008static void intel_disable_pipe(struct intel_crtc *crtc)
b24e7179 2009{
fac5e23e 2010 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6e3c9717 2011 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 2012 enum pipe pipe = crtc->pipe;
f0f59a00 2013 i915_reg_t reg;
b24e7179
JB
2014 u32 val;
2015
9e2ee2dd
VS
2016 DRM_DEBUG_KMS("disabling pipe %c\n", pipe_name(pipe));
2017
b24e7179
JB
2018 /*
2019 * Make sure planes won't keep trying to pump pixels to us,
2020 * or we might hang the display.
2021 */
2022 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 2023 assert_cursor_disabled(dev_priv, pipe);
19332d7a 2024 assert_sprites_disabled(dev_priv, pipe);
b24e7179 2025
702e7a56 2026 reg = PIPECONF(cpu_transcoder);
b24e7179 2027 val = I915_READ(reg);
00d70b15
CW
2028 if ((val & PIPECONF_ENABLE) == 0)
2029 return;
2030
67adc644
VS
2031 /*
2032 * Double wide has implications for planes
2033 * so best keep it disabled when not needed.
2034 */
6e3c9717 2035 if (crtc->config->double_wide)
67adc644
VS
2036 val &= ~PIPECONF_DOUBLE_WIDE;
2037
2038 /* Don't disable pipe or pipe PLLs if needed */
b6b5d049
VS
2039 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2040 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
67adc644
VS
2041 val &= ~PIPECONF_ENABLE;
2042
2043 I915_WRITE(reg, val);
2044 if ((val & PIPECONF_ENABLE) == 0)
2045 intel_wait_for_pipe_off(crtc);
b24e7179
JB
2046}
2047
832be82f
VS
2048static unsigned int intel_tile_size(const struct drm_i915_private *dev_priv)
2049{
2050 return IS_GEN2(dev_priv) ? 2048 : 4096;
2051}
2052
27ba3910
VS
2053static unsigned int intel_tile_width_bytes(const struct drm_i915_private *dev_priv,
2054 uint64_t fb_modifier, unsigned int cpp)
7b49f948
VS
2055{
2056 switch (fb_modifier) {
2057 case DRM_FORMAT_MOD_NONE:
2058 return cpp;
2059 case I915_FORMAT_MOD_X_TILED:
2060 if (IS_GEN2(dev_priv))
2061 return 128;
2062 else
2063 return 512;
2064 case I915_FORMAT_MOD_Y_TILED:
2065 if (IS_GEN2(dev_priv) || HAS_128_BYTE_Y_TILING(dev_priv))
2066 return 128;
2067 else
2068 return 512;
2069 case I915_FORMAT_MOD_Yf_TILED:
2070 switch (cpp) {
2071 case 1:
2072 return 64;
2073 case 2:
2074 case 4:
2075 return 128;
2076 case 8:
2077 case 16:
2078 return 256;
2079 default:
2080 MISSING_CASE(cpp);
2081 return cpp;
2082 }
2083 break;
2084 default:
2085 MISSING_CASE(fb_modifier);
2086 return cpp;
2087 }
2088}
2089
832be82f
VS
2090unsigned int intel_tile_height(const struct drm_i915_private *dev_priv,
2091 uint64_t fb_modifier, unsigned int cpp)
a57ce0b2 2092{
832be82f
VS
2093 if (fb_modifier == DRM_FORMAT_MOD_NONE)
2094 return 1;
2095 else
2096 return intel_tile_size(dev_priv) /
27ba3910 2097 intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
6761dd31
TU
2098}
2099
8d0deca8
VS
2100/* Return the tile dimensions in pixel units */
2101static void intel_tile_dims(const struct drm_i915_private *dev_priv,
2102 unsigned int *tile_width,
2103 unsigned int *tile_height,
2104 uint64_t fb_modifier,
2105 unsigned int cpp)
2106{
2107 unsigned int tile_width_bytes =
2108 intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
2109
2110 *tile_width = tile_width_bytes / cpp;
2111 *tile_height = intel_tile_size(dev_priv) / tile_width_bytes;
2112}
2113
6761dd31
TU
2114unsigned int
2115intel_fb_align_height(struct drm_device *dev, unsigned int height,
832be82f 2116 uint32_t pixel_format, uint64_t fb_modifier)
6761dd31 2117{
832be82f
VS
2118 unsigned int cpp = drm_format_plane_cpp(pixel_format, 0);
2119 unsigned int tile_height = intel_tile_height(to_i915(dev), fb_modifier, cpp);
2120
2121 return ALIGN(height, tile_height);
a57ce0b2
JB
2122}
2123
1663b9d6
VS
2124unsigned int intel_rotation_info_size(const struct intel_rotation_info *rot_info)
2125{
2126 unsigned int size = 0;
2127 int i;
2128
2129 for (i = 0 ; i < ARRAY_SIZE(rot_info->plane); i++)
2130 size += rot_info->plane[i].width * rot_info->plane[i].height;
2131
2132 return size;
2133}
2134
75c82a53 2135static void
3465c580
VS
2136intel_fill_fb_ggtt_view(struct i915_ggtt_view *view,
2137 const struct drm_framebuffer *fb,
2138 unsigned int rotation)
f64b98cd 2139{
bd2ef25d 2140 if (drm_rotation_90_or_270(rotation)) {
2d7a215f
VS
2141 *view = i915_ggtt_view_rotated;
2142 view->params.rotated = to_intel_framebuffer(fb)->rot_info;
2143 } else {
2144 *view = i915_ggtt_view_normal;
2145 }
2146}
50470bb0 2147
603525d7 2148static unsigned int intel_linear_alignment(const struct drm_i915_private *dev_priv)
4e9a86b6
VS
2149{
2150 if (INTEL_INFO(dev_priv)->gen >= 9)
2151 return 256 * 1024;
985b8bb4 2152 else if (IS_BROADWATER(dev_priv) || IS_CRESTLINE(dev_priv) ||
666a4537 2153 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
4e9a86b6
VS
2154 return 128 * 1024;
2155 else if (INTEL_INFO(dev_priv)->gen >= 4)
2156 return 4 * 1024;
2157 else
44c5905e 2158 return 0;
4e9a86b6
VS
2159}
2160
603525d7
VS
2161static unsigned int intel_surf_alignment(const struct drm_i915_private *dev_priv,
2162 uint64_t fb_modifier)
2163{
2164 switch (fb_modifier) {
2165 case DRM_FORMAT_MOD_NONE:
2166 return intel_linear_alignment(dev_priv);
2167 case I915_FORMAT_MOD_X_TILED:
2168 if (INTEL_INFO(dev_priv)->gen >= 9)
2169 return 256 * 1024;
2170 return 0;
2171 case I915_FORMAT_MOD_Y_TILED:
2172 case I915_FORMAT_MOD_Yf_TILED:
2173 return 1 * 1024 * 1024;
2174 default:
2175 MISSING_CASE(fb_modifier);
2176 return 0;
2177 }
2178}
2179
058d88c4
CW
2180struct i915_vma *
2181intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb, unsigned int rotation)
6b95a207 2182{
850c4cdc 2183 struct drm_device *dev = fb->dev;
fac5e23e 2184 struct drm_i915_private *dev_priv = to_i915(dev);
850c4cdc 2185 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
f64b98cd 2186 struct i915_ggtt_view view;
058d88c4 2187 struct i915_vma *vma;
6b95a207 2188 u32 alignment;
6b95a207 2189
ebcdd39e
MR
2190 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2191
603525d7 2192 alignment = intel_surf_alignment(dev_priv, fb->modifier[0]);
6b95a207 2193
3465c580 2194 intel_fill_fb_ggtt_view(&view, fb, rotation);
f64b98cd 2195
693db184
CW
2196 /* Note that the w/a also requires 64 PTE of padding following the
2197 * bo. We currently fill all unused PTE with the shadow page and so
2198 * we should always have valid PTE following the scanout preventing
2199 * the VT-d warning.
2200 */
48f112fe 2201 if (intel_scanout_needs_vtd_wa(dev_priv) && alignment < 256 * 1024)
693db184
CW
2202 alignment = 256 * 1024;
2203
d6dd6843
PZ
2204 /*
2205 * Global gtt pte registers are special registers which actually forward
2206 * writes to a chunk of system memory. Which means that there is no risk
2207 * that the register values disappear as soon as we call
2208 * intel_runtime_pm_put(), so it is correct to wrap only the
2209 * pin/unpin/fence and not more.
2210 */
2211 intel_runtime_pm_get(dev_priv);
2212
058d88c4 2213 vma = i915_gem_object_pin_to_display_plane(obj, alignment, &view);
49ef5294
CW
2214 if (IS_ERR(vma))
2215 goto err;
6b95a207 2216
05a20d09 2217 if (i915_vma_is_map_and_fenceable(vma)) {
49ef5294
CW
2218 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2219 * fence, whereas 965+ only requires a fence if using
2220 * framebuffer compression. For simplicity, we always, when
2221 * possible, install a fence as the cost is not that onerous.
2222 *
2223 * If we fail to fence the tiled scanout, then either the
2224 * modeset will reject the change (which is highly unlikely as
2225 * the affected systems, all but one, do not have unmappable
2226 * space) or we will not be able to enable full powersaving
2227 * techniques (also likely not to apply due to various limits
2228 * FBC and the like impose on the size of the buffer, which
2229 * presumably we violated anyway with this unmappable buffer).
2230 * Anyway, it is presumably better to stumble onwards with
2231 * something and try to run the system in a "less than optimal"
2232 * mode that matches the user configuration.
2233 */
2234 if (i915_vma_get_fence(vma) == 0)
2235 i915_vma_pin_fence(vma);
9807216f 2236 }
6b95a207 2237
49ef5294 2238err:
d6dd6843 2239 intel_runtime_pm_put(dev_priv);
058d88c4 2240 return vma;
6b95a207
KH
2241}
2242
fb4b8ce1 2243void intel_unpin_fb_obj(struct drm_framebuffer *fb, unsigned int rotation)
1690e1eb 2244{
82bc3b2d 2245 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
f64b98cd 2246 struct i915_ggtt_view view;
058d88c4 2247 struct i915_vma *vma;
82bc3b2d 2248
ebcdd39e
MR
2249 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2250
3465c580 2251 intel_fill_fb_ggtt_view(&view, fb, rotation);
05a20d09 2252 vma = i915_gem_object_to_ggtt(obj, &view);
f64b98cd 2253
49ef5294 2254 i915_vma_unpin_fence(vma);
058d88c4 2255 i915_gem_object_unpin_from_display_plane(vma);
1690e1eb
CW
2256}
2257
ef78ec94
VS
2258static int intel_fb_pitch(const struct drm_framebuffer *fb, int plane,
2259 unsigned int rotation)
2260{
bd2ef25d 2261 if (drm_rotation_90_or_270(rotation))
ef78ec94
VS
2262 return to_intel_framebuffer(fb)->rotated[plane].pitch;
2263 else
2264 return fb->pitches[plane];
2265}
2266
6687c906
VS
2267/*
2268 * Convert the x/y offsets into a linear offset.
2269 * Only valid with 0/180 degree rotation, which is fine since linear
2270 * offset is only used with linear buffers on pre-hsw and tiled buffers
2271 * with gen2/3, and 90/270 degree rotations isn't supported on any of them.
2272 */
2273u32 intel_fb_xy_to_linear(int x, int y,
2949056c
VS
2274 const struct intel_plane_state *state,
2275 int plane)
6687c906 2276{
2949056c 2277 const struct drm_framebuffer *fb = state->base.fb;
6687c906
VS
2278 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
2279 unsigned int pitch = fb->pitches[plane];
2280
2281 return y * pitch + x * cpp;
2282}
2283
2284/*
2285 * Add the x/y offsets derived from fb->offsets[] to the user
2286 * specified plane src x/y offsets. The resulting x/y offsets
2287 * specify the start of scanout from the beginning of the gtt mapping.
2288 */
2289void intel_add_fb_offsets(int *x, int *y,
2949056c
VS
2290 const struct intel_plane_state *state,
2291 int plane)
6687c906
VS
2292
2293{
2949056c
VS
2294 const struct intel_framebuffer *intel_fb = to_intel_framebuffer(state->base.fb);
2295 unsigned int rotation = state->base.rotation;
6687c906 2296
bd2ef25d 2297 if (drm_rotation_90_or_270(rotation)) {
6687c906
VS
2298 *x += intel_fb->rotated[plane].x;
2299 *y += intel_fb->rotated[plane].y;
2300 } else {
2301 *x += intel_fb->normal[plane].x;
2302 *y += intel_fb->normal[plane].y;
2303 }
2304}
2305
29cf9491 2306/*
29cf9491
VS
2307 * Input tile dimensions and pitch must already be
2308 * rotated to match x and y, and in pixel units.
2309 */
66a2d927
VS
2310static u32 _intel_adjust_tile_offset(int *x, int *y,
2311 unsigned int tile_width,
2312 unsigned int tile_height,
2313 unsigned int tile_size,
2314 unsigned int pitch_tiles,
2315 u32 old_offset,
2316 u32 new_offset)
29cf9491 2317{
b9b24038 2318 unsigned int pitch_pixels = pitch_tiles * tile_width;
29cf9491
VS
2319 unsigned int tiles;
2320
2321 WARN_ON(old_offset & (tile_size - 1));
2322 WARN_ON(new_offset & (tile_size - 1));
2323 WARN_ON(new_offset > old_offset);
2324
2325 tiles = (old_offset - new_offset) / tile_size;
2326
2327 *y += tiles / pitch_tiles * tile_height;
2328 *x += tiles % pitch_tiles * tile_width;
2329
b9b24038
VS
2330 /* minimize x in case it got needlessly big */
2331 *y += *x / pitch_pixels * tile_height;
2332 *x %= pitch_pixels;
2333
29cf9491
VS
2334 return new_offset;
2335}
2336
66a2d927
VS
2337/*
2338 * Adjust the tile offset by moving the difference into
2339 * the x/y offsets.
2340 */
2341static u32 intel_adjust_tile_offset(int *x, int *y,
2342 const struct intel_plane_state *state, int plane,
2343 u32 old_offset, u32 new_offset)
2344{
2345 const struct drm_i915_private *dev_priv = to_i915(state->base.plane->dev);
2346 const struct drm_framebuffer *fb = state->base.fb;
2347 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
2348 unsigned int rotation = state->base.rotation;
2349 unsigned int pitch = intel_fb_pitch(fb, plane, rotation);
2350
2351 WARN_ON(new_offset > old_offset);
2352
2353 if (fb->modifier[plane] != DRM_FORMAT_MOD_NONE) {
2354 unsigned int tile_size, tile_width, tile_height;
2355 unsigned int pitch_tiles;
2356
2357 tile_size = intel_tile_size(dev_priv);
2358 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2359 fb->modifier[plane], cpp);
2360
bd2ef25d 2361 if (drm_rotation_90_or_270(rotation)) {
66a2d927
VS
2362 pitch_tiles = pitch / tile_height;
2363 swap(tile_width, tile_height);
2364 } else {
2365 pitch_tiles = pitch / (tile_width * cpp);
2366 }
2367
2368 _intel_adjust_tile_offset(x, y, tile_width, tile_height,
2369 tile_size, pitch_tiles,
2370 old_offset, new_offset);
2371 } else {
2372 old_offset += *y * pitch + *x * cpp;
2373
2374 *y = (old_offset - new_offset) / pitch;
2375 *x = ((old_offset - new_offset) - *y * pitch) / cpp;
2376 }
2377
2378 return new_offset;
2379}
2380
8d0deca8
VS
2381/*
2382 * Computes the linear offset to the base tile and adjusts
2383 * x, y. bytes per pixel is assumed to be a power-of-two.
2384 *
2385 * In the 90/270 rotated case, x and y are assumed
2386 * to be already rotated to match the rotated GTT view, and
2387 * pitch is the tile_height aligned framebuffer height.
6687c906
VS
2388 *
2389 * This function is used when computing the derived information
2390 * under intel_framebuffer, so using any of that information
2391 * here is not allowed. Anything under drm_framebuffer can be
2392 * used. This is why the user has to pass in the pitch since it
2393 * is specified in the rotated orientation.
8d0deca8 2394 */
6687c906
VS
2395static u32 _intel_compute_tile_offset(const struct drm_i915_private *dev_priv,
2396 int *x, int *y,
2397 const struct drm_framebuffer *fb, int plane,
2398 unsigned int pitch,
2399 unsigned int rotation,
2400 u32 alignment)
c2c75131 2401{
4f2d9934
VS
2402 uint64_t fb_modifier = fb->modifier[plane];
2403 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
6687c906 2404 u32 offset, offset_aligned;
29cf9491 2405
29cf9491
VS
2406 if (alignment)
2407 alignment--;
2408
b5c65338 2409 if (fb_modifier != DRM_FORMAT_MOD_NONE) {
8d0deca8
VS
2410 unsigned int tile_size, tile_width, tile_height;
2411 unsigned int tile_rows, tiles, pitch_tiles;
c2c75131 2412
d843310d 2413 tile_size = intel_tile_size(dev_priv);
8d0deca8
VS
2414 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2415 fb_modifier, cpp);
2416
bd2ef25d 2417 if (drm_rotation_90_or_270(rotation)) {
8d0deca8
VS
2418 pitch_tiles = pitch / tile_height;
2419 swap(tile_width, tile_height);
2420 } else {
2421 pitch_tiles = pitch / (tile_width * cpp);
2422 }
d843310d
VS
2423
2424 tile_rows = *y / tile_height;
2425 *y %= tile_height;
c2c75131 2426
8d0deca8
VS
2427 tiles = *x / tile_width;
2428 *x %= tile_width;
bc752862 2429
29cf9491
VS
2430 offset = (tile_rows * pitch_tiles + tiles) * tile_size;
2431 offset_aligned = offset & ~alignment;
bc752862 2432
66a2d927
VS
2433 _intel_adjust_tile_offset(x, y, tile_width, tile_height,
2434 tile_size, pitch_tiles,
2435 offset, offset_aligned);
29cf9491 2436 } else {
bc752862 2437 offset = *y * pitch + *x * cpp;
29cf9491
VS
2438 offset_aligned = offset & ~alignment;
2439
4e9a86b6
VS
2440 *y = (offset & alignment) / pitch;
2441 *x = ((offset & alignment) - *y * pitch) / cpp;
bc752862 2442 }
29cf9491
VS
2443
2444 return offset_aligned;
c2c75131
DV
2445}
2446
6687c906 2447u32 intel_compute_tile_offset(int *x, int *y,
2949056c
VS
2448 const struct intel_plane_state *state,
2449 int plane)
6687c906 2450{
2949056c
VS
2451 const struct drm_i915_private *dev_priv = to_i915(state->base.plane->dev);
2452 const struct drm_framebuffer *fb = state->base.fb;
2453 unsigned int rotation = state->base.rotation;
ef78ec94 2454 int pitch = intel_fb_pitch(fb, plane, rotation);
8d970654
VS
2455 u32 alignment;
2456
2457 /* AUX_DIST needs only 4K alignment */
2458 if (fb->pixel_format == DRM_FORMAT_NV12 && plane == 1)
2459 alignment = 4096;
2460 else
2461 alignment = intel_surf_alignment(dev_priv, fb->modifier[plane]);
6687c906
VS
2462
2463 return _intel_compute_tile_offset(dev_priv, x, y, fb, plane, pitch,
2464 rotation, alignment);
2465}
2466
2467/* Convert the fb->offset[] linear offset into x/y offsets */
2468static void intel_fb_offset_to_xy(int *x, int *y,
2469 const struct drm_framebuffer *fb, int plane)
2470{
2471 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
2472 unsigned int pitch = fb->pitches[plane];
2473 u32 linear_offset = fb->offsets[plane];
2474
2475 *y = linear_offset / pitch;
2476 *x = linear_offset % pitch / cpp;
2477}
2478
72618ebf
VS
2479static unsigned int intel_fb_modifier_to_tiling(uint64_t fb_modifier)
2480{
2481 switch (fb_modifier) {
2482 case I915_FORMAT_MOD_X_TILED:
2483 return I915_TILING_X;
2484 case I915_FORMAT_MOD_Y_TILED:
2485 return I915_TILING_Y;
2486 default:
2487 return I915_TILING_NONE;
2488 }
2489}
2490
6687c906
VS
2491static int
2492intel_fill_fb_info(struct drm_i915_private *dev_priv,
2493 struct drm_framebuffer *fb)
2494{
2495 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
2496 struct intel_rotation_info *rot_info = &intel_fb->rot_info;
2497 u32 gtt_offset_rotated = 0;
2498 unsigned int max_size = 0;
2499 uint32_t format = fb->pixel_format;
2500 int i, num_planes = drm_format_num_planes(format);
2501 unsigned int tile_size = intel_tile_size(dev_priv);
2502
2503 for (i = 0; i < num_planes; i++) {
2504 unsigned int width, height;
2505 unsigned int cpp, size;
2506 u32 offset;
2507 int x, y;
2508
2509 cpp = drm_format_plane_cpp(format, i);
2510 width = drm_format_plane_width(fb->width, format, i);
2511 height = drm_format_plane_height(fb->height, format, i);
2512
2513 intel_fb_offset_to_xy(&x, &y, fb, i);
2514
60d5f2a4
VS
2515 /*
2516 * The fence (if used) is aligned to the start of the object
2517 * so having the framebuffer wrap around across the edge of the
2518 * fenced region doesn't really work. We have no API to configure
2519 * the fence start offset within the object (nor could we probably
2520 * on gen2/3). So it's just easier if we just require that the
2521 * fb layout agrees with the fence layout. We already check that the
2522 * fb stride matches the fence stride elsewhere.
2523 */
2524 if (i915_gem_object_is_tiled(intel_fb->obj) &&
2525 (x + width) * cpp > fb->pitches[i]) {
2526 DRM_DEBUG("bad fb plane %d offset: 0x%x\n",
2527 i, fb->offsets[i]);
2528 return -EINVAL;
2529 }
2530
6687c906
VS
2531 /*
2532 * First pixel of the framebuffer from
2533 * the start of the normal gtt mapping.
2534 */
2535 intel_fb->normal[i].x = x;
2536 intel_fb->normal[i].y = y;
2537
2538 offset = _intel_compute_tile_offset(dev_priv, &x, &y,
2539 fb, 0, fb->pitches[i],
cc926387 2540 DRM_ROTATE_0, tile_size);
6687c906
VS
2541 offset /= tile_size;
2542
2543 if (fb->modifier[i] != DRM_FORMAT_MOD_NONE) {
2544 unsigned int tile_width, tile_height;
2545 unsigned int pitch_tiles;
2546 struct drm_rect r;
2547
2548 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2549 fb->modifier[i], cpp);
2550
2551 rot_info->plane[i].offset = offset;
2552 rot_info->plane[i].stride = DIV_ROUND_UP(fb->pitches[i], tile_width * cpp);
2553 rot_info->plane[i].width = DIV_ROUND_UP(x + width, tile_width);
2554 rot_info->plane[i].height = DIV_ROUND_UP(y + height, tile_height);
2555
2556 intel_fb->rotated[i].pitch =
2557 rot_info->plane[i].height * tile_height;
2558
2559 /* how many tiles does this plane need */
2560 size = rot_info->plane[i].stride * rot_info->plane[i].height;
2561 /*
2562 * If the plane isn't horizontally tile aligned,
2563 * we need one more tile.
2564 */
2565 if (x != 0)
2566 size++;
2567
2568 /* rotate the x/y offsets to match the GTT view */
2569 r.x1 = x;
2570 r.y1 = y;
2571 r.x2 = x + width;
2572 r.y2 = y + height;
2573 drm_rect_rotate(&r,
2574 rot_info->plane[i].width * tile_width,
2575 rot_info->plane[i].height * tile_height,
cc926387 2576 DRM_ROTATE_270);
6687c906
VS
2577 x = r.x1;
2578 y = r.y1;
2579
2580 /* rotate the tile dimensions to match the GTT view */
2581 pitch_tiles = intel_fb->rotated[i].pitch / tile_height;
2582 swap(tile_width, tile_height);
2583
2584 /*
2585 * We only keep the x/y offsets, so push all of the
2586 * gtt offset into the x/y offsets.
2587 */
66a2d927
VS
2588 _intel_adjust_tile_offset(&x, &y, tile_size,
2589 tile_width, tile_height, pitch_tiles,
2590 gtt_offset_rotated * tile_size, 0);
6687c906
VS
2591
2592 gtt_offset_rotated += rot_info->plane[i].width * rot_info->plane[i].height;
2593
2594 /*
2595 * First pixel of the framebuffer from
2596 * the start of the rotated gtt mapping.
2597 */
2598 intel_fb->rotated[i].x = x;
2599 intel_fb->rotated[i].y = y;
2600 } else {
2601 size = DIV_ROUND_UP((y + height) * fb->pitches[i] +
2602 x * cpp, tile_size);
2603 }
2604
2605 /* how many tiles in total needed in the bo */
2606 max_size = max(max_size, offset + size);
2607 }
2608
2609 if (max_size * tile_size > to_intel_framebuffer(fb)->obj->base.size) {
2610 DRM_DEBUG("fb too big for bo (need %u bytes, have %zu bytes)\n",
2611 max_size * tile_size, to_intel_framebuffer(fb)->obj->base.size);
2612 return -EINVAL;
2613 }
2614
2615 return 0;
2616}
2617
b35d63fa 2618static int i9xx_format_to_fourcc(int format)
46f297fb
JB
2619{
2620 switch (format) {
2621 case DISPPLANE_8BPP:
2622 return DRM_FORMAT_C8;
2623 case DISPPLANE_BGRX555:
2624 return DRM_FORMAT_XRGB1555;
2625 case DISPPLANE_BGRX565:
2626 return DRM_FORMAT_RGB565;
2627 default:
2628 case DISPPLANE_BGRX888:
2629 return DRM_FORMAT_XRGB8888;
2630 case DISPPLANE_RGBX888:
2631 return DRM_FORMAT_XBGR8888;
2632 case DISPPLANE_BGRX101010:
2633 return DRM_FORMAT_XRGB2101010;
2634 case DISPPLANE_RGBX101010:
2635 return DRM_FORMAT_XBGR2101010;
2636 }
2637}
2638
bc8d7dff
DL
2639static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2640{
2641 switch (format) {
2642 case PLANE_CTL_FORMAT_RGB_565:
2643 return DRM_FORMAT_RGB565;
2644 default:
2645 case PLANE_CTL_FORMAT_XRGB_8888:
2646 if (rgb_order) {
2647 if (alpha)
2648 return DRM_FORMAT_ABGR8888;
2649 else
2650 return DRM_FORMAT_XBGR8888;
2651 } else {
2652 if (alpha)
2653 return DRM_FORMAT_ARGB8888;
2654 else
2655 return DRM_FORMAT_XRGB8888;
2656 }
2657 case PLANE_CTL_FORMAT_XRGB_2101010:
2658 if (rgb_order)
2659 return DRM_FORMAT_XBGR2101010;
2660 else
2661 return DRM_FORMAT_XRGB2101010;
2662 }
2663}
2664
5724dbd1 2665static bool
f6936e29
DV
2666intel_alloc_initial_plane_obj(struct intel_crtc *crtc,
2667 struct intel_initial_plane_config *plane_config)
46f297fb
JB
2668{
2669 struct drm_device *dev = crtc->base.dev;
3badb49f 2670 struct drm_i915_private *dev_priv = to_i915(dev);
72e96d64 2671 struct i915_ggtt *ggtt = &dev_priv->ggtt;
46f297fb
JB
2672 struct drm_i915_gem_object *obj = NULL;
2673 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2d14030b 2674 struct drm_framebuffer *fb = &plane_config->fb->base;
f37b5c2b
DV
2675 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2676 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2677 PAGE_SIZE);
2678
2679 size_aligned -= base_aligned;
46f297fb 2680
ff2652ea
CW
2681 if (plane_config->size == 0)
2682 return false;
2683
3badb49f
PZ
2684 /* If the FB is too big, just don't use it since fbdev is not very
2685 * important and we should probably use that space with FBC or other
2686 * features. */
72e96d64 2687 if (size_aligned * 2 > ggtt->stolen_usable_size)
3badb49f
PZ
2688 return false;
2689
12c83d99
TU
2690 mutex_lock(&dev->struct_mutex);
2691
f37b5c2b
DV
2692 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2693 base_aligned,
2694 base_aligned,
2695 size_aligned);
12c83d99
TU
2696 if (!obj) {
2697 mutex_unlock(&dev->struct_mutex);
484b41dd 2698 return false;
12c83d99 2699 }
46f297fb 2700
3e510a8e
CW
2701 if (plane_config->tiling == I915_TILING_X)
2702 obj->tiling_and_stride = fb->pitches[0] | I915_TILING_X;
46f297fb 2703
6bf129df
DL
2704 mode_cmd.pixel_format = fb->pixel_format;
2705 mode_cmd.width = fb->width;
2706 mode_cmd.height = fb->height;
2707 mode_cmd.pitches[0] = fb->pitches[0];
18c5247e
DV
2708 mode_cmd.modifier[0] = fb->modifier[0];
2709 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
46f297fb 2710
6bf129df 2711 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
484b41dd 2712 &mode_cmd, obj)) {
46f297fb
JB
2713 DRM_DEBUG_KMS("intel fb init failed\n");
2714 goto out_unref_obj;
2715 }
12c83d99 2716
46f297fb 2717 mutex_unlock(&dev->struct_mutex);
484b41dd 2718
f6936e29 2719 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
484b41dd 2720 return true;
46f297fb
JB
2721
2722out_unref_obj:
f8c417cd 2723 i915_gem_object_put(obj);
46f297fb 2724 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2725 return false;
2726}
2727
5a21b665
DV
2728/* Update plane->state->fb to match plane->fb after driver-internal updates */
2729static void
2730update_state_fb(struct drm_plane *plane)
2731{
2732 if (plane->fb == plane->state->fb)
2733 return;
2734
2735 if (plane->state->fb)
2736 drm_framebuffer_unreference(plane->state->fb);
2737 plane->state->fb = plane->fb;
2738 if (plane->state->fb)
2739 drm_framebuffer_reference(plane->state->fb);
2740}
2741
5724dbd1 2742static void
f6936e29
DV
2743intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2744 struct intel_initial_plane_config *plane_config)
484b41dd
JB
2745{
2746 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 2747 struct drm_i915_private *dev_priv = to_i915(dev);
484b41dd
JB
2748 struct drm_crtc *c;
2749 struct intel_crtc *i;
2ff8fde1 2750 struct drm_i915_gem_object *obj;
88595ac9 2751 struct drm_plane *primary = intel_crtc->base.primary;
be5651f2 2752 struct drm_plane_state *plane_state = primary->state;
200757f5
MR
2753 struct drm_crtc_state *crtc_state = intel_crtc->base.state;
2754 struct intel_plane *intel_plane = to_intel_plane(primary);
0a8d8a86
MR
2755 struct intel_plane_state *intel_state =
2756 to_intel_plane_state(plane_state);
88595ac9 2757 struct drm_framebuffer *fb;
484b41dd 2758
2d14030b 2759 if (!plane_config->fb)
484b41dd
JB
2760 return;
2761
f6936e29 2762 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
88595ac9
DV
2763 fb = &plane_config->fb->base;
2764 goto valid_fb;
f55548b5 2765 }
484b41dd 2766
2d14030b 2767 kfree(plane_config->fb);
484b41dd
JB
2768
2769 /*
2770 * Failed to alloc the obj, check to see if we should share
2771 * an fb with another CRTC instead
2772 */
70e1e0ec 2773 for_each_crtc(dev, c) {
484b41dd
JB
2774 i = to_intel_crtc(c);
2775
2776 if (c == &intel_crtc->base)
2777 continue;
2778
2ff8fde1
MR
2779 if (!i->active)
2780 continue;
2781
88595ac9
DV
2782 fb = c->primary->fb;
2783 if (!fb)
484b41dd
JB
2784 continue;
2785
88595ac9 2786 obj = intel_fb_obj(fb);
058d88c4 2787 if (i915_gem_object_ggtt_offset(obj, NULL) == plane_config->base) {
88595ac9
DV
2788 drm_framebuffer_reference(fb);
2789 goto valid_fb;
484b41dd
JB
2790 }
2791 }
88595ac9 2792
200757f5
MR
2793 /*
2794 * We've failed to reconstruct the BIOS FB. Current display state
2795 * indicates that the primary plane is visible, but has a NULL FB,
2796 * which will lead to problems later if we don't fix it up. The
2797 * simplest solution is to just disable the primary plane now and
2798 * pretend the BIOS never had it enabled.
2799 */
936e71e3 2800 to_intel_plane_state(plane_state)->base.visible = false;
200757f5 2801 crtc_state->plane_mask &= ~(1 << drm_plane_index(primary));
2622a081 2802 intel_pre_disable_primary_noatomic(&intel_crtc->base);
200757f5
MR
2803 intel_plane->disable_plane(primary, &intel_crtc->base);
2804
88595ac9
DV
2805 return;
2806
2807valid_fb:
f44e2659
VS
2808 plane_state->src_x = 0;
2809 plane_state->src_y = 0;
be5651f2
ML
2810 plane_state->src_w = fb->width << 16;
2811 plane_state->src_h = fb->height << 16;
2812
f44e2659
VS
2813 plane_state->crtc_x = 0;
2814 plane_state->crtc_y = 0;
be5651f2
ML
2815 plane_state->crtc_w = fb->width;
2816 plane_state->crtc_h = fb->height;
2817
1638d30c
RC
2818 intel_state->base.src = drm_plane_state_src(plane_state);
2819 intel_state->base.dst = drm_plane_state_dest(plane_state);
0a8d8a86 2820
88595ac9 2821 obj = intel_fb_obj(fb);
3e510a8e 2822 if (i915_gem_object_is_tiled(obj))
88595ac9
DV
2823 dev_priv->preserve_bios_swizzle = true;
2824
be5651f2
ML
2825 drm_framebuffer_reference(fb);
2826 primary->fb = primary->state->fb = fb;
36750f28 2827 primary->crtc = primary->state->crtc = &intel_crtc->base;
36750f28 2828 intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary));
faf5bf0a
CW
2829 atomic_or(to_intel_plane(primary)->frontbuffer_bit,
2830 &obj->frontbuffer_bits);
46f297fb
JB
2831}
2832
b63a16f6
VS
2833static int skl_max_plane_width(const struct drm_framebuffer *fb, int plane,
2834 unsigned int rotation)
2835{
2836 int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
2837
2838 switch (fb->modifier[plane]) {
2839 case DRM_FORMAT_MOD_NONE:
2840 case I915_FORMAT_MOD_X_TILED:
2841 switch (cpp) {
2842 case 8:
2843 return 4096;
2844 case 4:
2845 case 2:
2846 case 1:
2847 return 8192;
2848 default:
2849 MISSING_CASE(cpp);
2850 break;
2851 }
2852 break;
2853 case I915_FORMAT_MOD_Y_TILED:
2854 case I915_FORMAT_MOD_Yf_TILED:
2855 switch (cpp) {
2856 case 8:
2857 return 2048;
2858 case 4:
2859 return 4096;
2860 case 2:
2861 case 1:
2862 return 8192;
2863 default:
2864 MISSING_CASE(cpp);
2865 break;
2866 }
2867 break;
2868 default:
2869 MISSING_CASE(fb->modifier[plane]);
2870 }
2871
2872 return 2048;
2873}
2874
2875static int skl_check_main_surface(struct intel_plane_state *plane_state)
2876{
2877 const struct drm_i915_private *dev_priv = to_i915(plane_state->base.plane->dev);
2878 const struct drm_framebuffer *fb = plane_state->base.fb;
2879 unsigned int rotation = plane_state->base.rotation;
cc926387
DV
2880 int x = plane_state->base.src.x1 >> 16;
2881 int y = plane_state->base.src.y1 >> 16;
2882 int w = drm_rect_width(&plane_state->base.src) >> 16;
2883 int h = drm_rect_height(&plane_state->base.src) >> 16;
b63a16f6
VS
2884 int max_width = skl_max_plane_width(fb, 0, rotation);
2885 int max_height = 4096;
8d970654 2886 u32 alignment, offset, aux_offset = plane_state->aux.offset;
b63a16f6
VS
2887
2888 if (w > max_width || h > max_height) {
2889 DRM_DEBUG_KMS("requested Y/RGB source size %dx%d too big (limit %dx%d)\n",
2890 w, h, max_width, max_height);
2891 return -EINVAL;
2892 }
2893
2894 intel_add_fb_offsets(&x, &y, plane_state, 0);
2895 offset = intel_compute_tile_offset(&x, &y, plane_state, 0);
2896
2897 alignment = intel_surf_alignment(dev_priv, fb->modifier[0]);
2898
8d970654
VS
2899 /*
2900 * AUX surface offset is specified as the distance from the
2901 * main surface offset, and it must be non-negative. Make
2902 * sure that is what we will get.
2903 */
2904 if (offset > aux_offset)
2905 offset = intel_adjust_tile_offset(&x, &y, plane_state, 0,
2906 offset, aux_offset & ~(alignment - 1));
2907
b63a16f6
VS
2908 /*
2909 * When using an X-tiled surface, the plane blows up
2910 * if the x offset + width exceed the stride.
2911 *
2912 * TODO: linear and Y-tiled seem fine, Yf untested,
2913 */
2914 if (fb->modifier[0] == I915_FORMAT_MOD_X_TILED) {
2915 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
2916
2917 while ((x + w) * cpp > fb->pitches[0]) {
2918 if (offset == 0) {
2919 DRM_DEBUG_KMS("Unable to find suitable display surface offset\n");
2920 return -EINVAL;
2921 }
2922
2923 offset = intel_adjust_tile_offset(&x, &y, plane_state, 0,
2924 offset, offset - alignment);
2925 }
2926 }
2927
2928 plane_state->main.offset = offset;
2929 plane_state->main.x = x;
2930 plane_state->main.y = y;
2931
2932 return 0;
2933}
2934
8d970654
VS
2935static int skl_check_nv12_aux_surface(struct intel_plane_state *plane_state)
2936{
2937 const struct drm_framebuffer *fb = plane_state->base.fb;
2938 unsigned int rotation = plane_state->base.rotation;
2939 int max_width = skl_max_plane_width(fb, 1, rotation);
2940 int max_height = 4096;
cc926387
DV
2941 int x = plane_state->base.src.x1 >> 17;
2942 int y = plane_state->base.src.y1 >> 17;
2943 int w = drm_rect_width(&plane_state->base.src) >> 17;
2944 int h = drm_rect_height(&plane_state->base.src) >> 17;
8d970654
VS
2945 u32 offset;
2946
2947 intel_add_fb_offsets(&x, &y, plane_state, 1);
2948 offset = intel_compute_tile_offset(&x, &y, plane_state, 1);
2949
2950 /* FIXME not quite sure how/if these apply to the chroma plane */
2951 if (w > max_width || h > max_height) {
2952 DRM_DEBUG_KMS("CbCr source size %dx%d too big (limit %dx%d)\n",
2953 w, h, max_width, max_height);
2954 return -EINVAL;
2955 }
2956
2957 plane_state->aux.offset = offset;
2958 plane_state->aux.x = x;
2959 plane_state->aux.y = y;
2960
2961 return 0;
2962}
2963
b63a16f6
VS
2964int skl_check_plane_surface(struct intel_plane_state *plane_state)
2965{
2966 const struct drm_framebuffer *fb = plane_state->base.fb;
2967 unsigned int rotation = plane_state->base.rotation;
2968 int ret;
2969
2970 /* Rotate src coordinates to match rotated GTT view */
bd2ef25d 2971 if (drm_rotation_90_or_270(rotation))
cc926387 2972 drm_rect_rotate(&plane_state->base.src,
da064b47
VS
2973 fb->width << 16, fb->height << 16,
2974 DRM_ROTATE_270);
b63a16f6 2975
8d970654
VS
2976 /*
2977 * Handle the AUX surface first since
2978 * the main surface setup depends on it.
2979 */
2980 if (fb->pixel_format == DRM_FORMAT_NV12) {
2981 ret = skl_check_nv12_aux_surface(plane_state);
2982 if (ret)
2983 return ret;
2984 } else {
2985 plane_state->aux.offset = ~0xfff;
2986 plane_state->aux.x = 0;
2987 plane_state->aux.y = 0;
2988 }
2989
b63a16f6
VS
2990 ret = skl_check_main_surface(plane_state);
2991 if (ret)
2992 return ret;
2993
2994 return 0;
2995}
2996
a8d201af
ML
2997static void i9xx_update_primary_plane(struct drm_plane *primary,
2998 const struct intel_crtc_state *crtc_state,
2999 const struct intel_plane_state *plane_state)
81255565 3000{
6315b5d3 3001 struct drm_i915_private *dev_priv = to_i915(primary->dev);
a8d201af
ML
3002 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3003 struct drm_framebuffer *fb = plane_state->base.fb;
81255565 3004 int plane = intel_crtc->plane;
54ea9da8 3005 u32 linear_offset;
81255565 3006 u32 dspcntr;
f0f59a00 3007 i915_reg_t reg = DSPCNTR(plane);
8d0deca8 3008 unsigned int rotation = plane_state->base.rotation;
936e71e3
VS
3009 int x = plane_state->base.src.x1 >> 16;
3010 int y = plane_state->base.src.y1 >> 16;
c9ba6fad 3011
f45651ba
VS
3012 dspcntr = DISPPLANE_GAMMA_ENABLE;
3013
fdd508a6 3014 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba 3015
6315b5d3 3016 if (INTEL_GEN(dev_priv) < 4) {
f45651ba
VS
3017 if (intel_crtc->pipe == PIPE_B)
3018 dspcntr |= DISPPLANE_SEL_PIPE_B;
3019
3020 /* pipesrc and dspsize control the size that is scaled from,
3021 * which should always be the user's requested size.
3022 */
3023 I915_WRITE(DSPSIZE(plane),
a8d201af
ML
3024 ((crtc_state->pipe_src_h - 1) << 16) |
3025 (crtc_state->pipe_src_w - 1));
f45651ba 3026 I915_WRITE(DSPPOS(plane), 0);
920a14b2 3027 } else if (IS_CHERRYVIEW(dev_priv) && plane == PLANE_B) {
c14b0485 3028 I915_WRITE(PRIMSIZE(plane),
a8d201af
ML
3029 ((crtc_state->pipe_src_h - 1) << 16) |
3030 (crtc_state->pipe_src_w - 1));
c14b0485
VS
3031 I915_WRITE(PRIMPOS(plane), 0);
3032 I915_WRITE(PRIMCNSTALPHA(plane), 0);
f45651ba 3033 }
81255565 3034
57779d06
VS
3035 switch (fb->pixel_format) {
3036 case DRM_FORMAT_C8:
81255565
JB
3037 dspcntr |= DISPPLANE_8BPP;
3038 break;
57779d06 3039 case DRM_FORMAT_XRGB1555:
57779d06 3040 dspcntr |= DISPPLANE_BGRX555;
81255565 3041 break;
57779d06
VS
3042 case DRM_FORMAT_RGB565:
3043 dspcntr |= DISPPLANE_BGRX565;
3044 break;
3045 case DRM_FORMAT_XRGB8888:
57779d06
VS
3046 dspcntr |= DISPPLANE_BGRX888;
3047 break;
3048 case DRM_FORMAT_XBGR8888:
57779d06
VS
3049 dspcntr |= DISPPLANE_RGBX888;
3050 break;
3051 case DRM_FORMAT_XRGB2101010:
57779d06
VS
3052 dspcntr |= DISPPLANE_BGRX101010;
3053 break;
3054 case DRM_FORMAT_XBGR2101010:
57779d06 3055 dspcntr |= DISPPLANE_RGBX101010;
81255565
JB
3056 break;
3057 default:
baba133a 3058 BUG();
81255565 3059 }
57779d06 3060
72618ebf
VS
3061 if (INTEL_GEN(dev_priv) >= 4 &&
3062 fb->modifier[0] == I915_FORMAT_MOD_X_TILED)
f45651ba 3063 dspcntr |= DISPPLANE_TILED;
81255565 3064
df0cd455
VS
3065 if (rotation & DRM_ROTATE_180)
3066 dspcntr |= DISPPLANE_ROTATE_180;
3067
4ea7be2b
VS
3068 if (rotation & DRM_REFLECT_X)
3069 dspcntr |= DISPPLANE_MIRROR;
3070
9beb5fea 3071 if (IS_G4X(dev_priv))
de1aa629
VS
3072 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
3073
2949056c 3074 intel_add_fb_offsets(&x, &y, plane_state, 0);
81255565 3075
6315b5d3 3076 if (INTEL_GEN(dev_priv) >= 4)
c2c75131 3077 intel_crtc->dspaddr_offset =
2949056c 3078 intel_compute_tile_offset(&x, &y, plane_state, 0);
e506a0c6 3079
f22aa143 3080 if (rotation & DRM_ROTATE_180) {
df0cd455
VS
3081 x += crtc_state->pipe_src_w - 1;
3082 y += crtc_state->pipe_src_h - 1;
4ea7be2b
VS
3083 } else if (rotation & DRM_REFLECT_X) {
3084 x += crtc_state->pipe_src_w - 1;
48404c1e
SJ
3085 }
3086
2949056c 3087 linear_offset = intel_fb_xy_to_linear(x, y, plane_state, 0);
6687c906 3088
6315b5d3 3089 if (INTEL_GEN(dev_priv) < 4)
6687c906
VS
3090 intel_crtc->dspaddr_offset = linear_offset;
3091
2db3366b
PZ
3092 intel_crtc->adjusted_x = x;
3093 intel_crtc->adjusted_y = y;
3094
48404c1e
SJ
3095 I915_WRITE(reg, dspcntr);
3096
01f2c773 3097 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
6315b5d3 3098 if (INTEL_GEN(dev_priv) >= 4) {
85ba7b7d 3099 I915_WRITE(DSPSURF(plane),
6687c906
VS
3100 intel_fb_gtt_offset(fb, rotation) +
3101 intel_crtc->dspaddr_offset);
5eddb70b 3102 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
e506a0c6 3103 I915_WRITE(DSPLINOFF(plane), linear_offset);
bfb81049
VS
3104 } else {
3105 I915_WRITE(DSPADDR(plane),
3106 intel_fb_gtt_offset(fb, rotation) +
3107 intel_crtc->dspaddr_offset);
3108 }
5eddb70b 3109 POSTING_READ(reg);
17638cd6
JB
3110}
3111
a8d201af
ML
3112static void i9xx_disable_primary_plane(struct drm_plane *primary,
3113 struct drm_crtc *crtc)
17638cd6
JB
3114{
3115 struct drm_device *dev = crtc->dev;
fac5e23e 3116 struct drm_i915_private *dev_priv = to_i915(dev);
17638cd6 3117 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
17638cd6 3118 int plane = intel_crtc->plane;
f45651ba 3119
a8d201af
ML
3120 I915_WRITE(DSPCNTR(plane), 0);
3121 if (INTEL_INFO(dev_priv)->gen >= 4)
fdd508a6 3122 I915_WRITE(DSPSURF(plane), 0);
a8d201af
ML
3123 else
3124 I915_WRITE(DSPADDR(plane), 0);
3125 POSTING_READ(DSPCNTR(plane));
3126}
c9ba6fad 3127
a8d201af
ML
3128static void ironlake_update_primary_plane(struct drm_plane *primary,
3129 const struct intel_crtc_state *crtc_state,
3130 const struct intel_plane_state *plane_state)
3131{
3132 struct drm_device *dev = primary->dev;
fac5e23e 3133 struct drm_i915_private *dev_priv = to_i915(dev);
a8d201af
ML
3134 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3135 struct drm_framebuffer *fb = plane_state->base.fb;
a8d201af 3136 int plane = intel_crtc->plane;
54ea9da8 3137 u32 linear_offset;
a8d201af
ML
3138 u32 dspcntr;
3139 i915_reg_t reg = DSPCNTR(plane);
8d0deca8 3140 unsigned int rotation = plane_state->base.rotation;
936e71e3
VS
3141 int x = plane_state->base.src.x1 >> 16;
3142 int y = plane_state->base.src.y1 >> 16;
c9ba6fad 3143
f45651ba 3144 dspcntr = DISPPLANE_GAMMA_ENABLE;
fdd508a6 3145 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba 3146
8652744b 3147 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
f45651ba 3148 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
17638cd6 3149
57779d06
VS
3150 switch (fb->pixel_format) {
3151 case DRM_FORMAT_C8:
17638cd6
JB
3152 dspcntr |= DISPPLANE_8BPP;
3153 break;
57779d06
VS
3154 case DRM_FORMAT_RGB565:
3155 dspcntr |= DISPPLANE_BGRX565;
17638cd6 3156 break;
57779d06 3157 case DRM_FORMAT_XRGB8888:
57779d06
VS
3158 dspcntr |= DISPPLANE_BGRX888;
3159 break;
3160 case DRM_FORMAT_XBGR8888:
57779d06
VS
3161 dspcntr |= DISPPLANE_RGBX888;
3162 break;
3163 case DRM_FORMAT_XRGB2101010:
57779d06
VS
3164 dspcntr |= DISPPLANE_BGRX101010;
3165 break;
3166 case DRM_FORMAT_XBGR2101010:
57779d06 3167 dspcntr |= DISPPLANE_RGBX101010;
17638cd6
JB
3168 break;
3169 default:
baba133a 3170 BUG();
17638cd6
JB
3171 }
3172
72618ebf 3173 if (fb->modifier[0] == I915_FORMAT_MOD_X_TILED)
17638cd6 3174 dspcntr |= DISPPLANE_TILED;
17638cd6 3175
df0cd455
VS
3176 if (rotation & DRM_ROTATE_180)
3177 dspcntr |= DISPPLANE_ROTATE_180;
3178
8652744b 3179 if (!IS_HASWELL(dev_priv) && !IS_BROADWELL(dev_priv))
1f5d76db 3180 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
17638cd6 3181
2949056c 3182 intel_add_fb_offsets(&x, &y, plane_state, 0);
6687c906 3183
c2c75131 3184 intel_crtc->dspaddr_offset =
2949056c 3185 intel_compute_tile_offset(&x, &y, plane_state, 0);
6687c906 3186
df0cd455
VS
3187 /* HSW+ does this automagically in hardware */
3188 if (!IS_HASWELL(dev_priv) && !IS_BROADWELL(dev_priv) &&
3189 rotation & DRM_ROTATE_180) {
3190 x += crtc_state->pipe_src_w - 1;
3191 y += crtc_state->pipe_src_h - 1;
48404c1e
SJ
3192 }
3193
2949056c 3194 linear_offset = intel_fb_xy_to_linear(x, y, plane_state, 0);
6687c906 3195
2db3366b
PZ
3196 intel_crtc->adjusted_x = x;
3197 intel_crtc->adjusted_y = y;
3198
48404c1e 3199 I915_WRITE(reg, dspcntr);
17638cd6 3200
01f2c773 3201 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
85ba7b7d 3202 I915_WRITE(DSPSURF(plane),
6687c906
VS
3203 intel_fb_gtt_offset(fb, rotation) +
3204 intel_crtc->dspaddr_offset);
8652744b 3205 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
bc1c91eb
DL
3206 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
3207 } else {
3208 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
3209 I915_WRITE(DSPLINOFF(plane), linear_offset);
3210 }
17638cd6 3211 POSTING_READ(reg);
17638cd6
JB
3212}
3213
7b49f948
VS
3214u32 intel_fb_stride_alignment(const struct drm_i915_private *dev_priv,
3215 uint64_t fb_modifier, uint32_t pixel_format)
b321803d 3216{
7b49f948 3217 if (fb_modifier == DRM_FORMAT_MOD_NONE) {
b321803d 3218 return 64;
7b49f948
VS
3219 } else {
3220 int cpp = drm_format_plane_cpp(pixel_format, 0);
3221
27ba3910 3222 return intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
b321803d
DL
3223 }
3224}
3225
6687c906
VS
3226u32 intel_fb_gtt_offset(struct drm_framebuffer *fb,
3227 unsigned int rotation)
121920fa 3228{
6687c906 3229 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
ce7f1728 3230 struct i915_ggtt_view view;
058d88c4 3231 struct i915_vma *vma;
121920fa 3232
6687c906 3233 intel_fill_fb_ggtt_view(&view, fb, rotation);
dedf278c 3234
058d88c4
CW
3235 vma = i915_gem_object_to_ggtt(obj, &view);
3236 if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n",
3237 view.type))
3238 return -1;
3239
bde13ebd 3240 return i915_ggtt_offset(vma);
121920fa
TU
3241}
3242
e435d6e5
ML
3243static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id)
3244{
3245 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 3246 struct drm_i915_private *dev_priv = to_i915(dev);
e435d6e5
ML
3247
3248 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0);
3249 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0);
3250 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0);
e435d6e5
ML
3251}
3252
a1b2278e
CK
3253/*
3254 * This function detaches (aka. unbinds) unused scalers in hardware
3255 */
0583236e 3256static void skl_detach_scalers(struct intel_crtc *intel_crtc)
a1b2278e 3257{
a1b2278e
CK
3258 struct intel_crtc_scaler_state *scaler_state;
3259 int i;
3260
a1b2278e
CK
3261 scaler_state = &intel_crtc->config->scaler_state;
3262
3263 /* loop through and disable scalers that aren't in use */
3264 for (i = 0; i < intel_crtc->num_scalers; i++) {
e435d6e5
ML
3265 if (!scaler_state->scalers[i].in_use)
3266 skl_detach_scaler(intel_crtc, i);
a1b2278e
CK
3267 }
3268}
3269
d2196774
VS
3270u32 skl_plane_stride(const struct drm_framebuffer *fb, int plane,
3271 unsigned int rotation)
3272{
3273 const struct drm_i915_private *dev_priv = to_i915(fb->dev);
3274 u32 stride = intel_fb_pitch(fb, plane, rotation);
3275
3276 /*
3277 * The stride is either expressed as a multiple of 64 bytes chunks for
3278 * linear buffers or in number of tiles for tiled buffers.
3279 */
bd2ef25d 3280 if (drm_rotation_90_or_270(rotation)) {
d2196774
VS
3281 int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
3282
3283 stride /= intel_tile_height(dev_priv, fb->modifier[0], cpp);
3284 } else {
3285 stride /= intel_fb_stride_alignment(dev_priv, fb->modifier[0],
3286 fb->pixel_format);
3287 }
3288
3289 return stride;
3290}
3291
6156a456 3292u32 skl_plane_ctl_format(uint32_t pixel_format)
70d21f0e 3293{
6156a456 3294 switch (pixel_format) {
d161cf7a 3295 case DRM_FORMAT_C8:
c34ce3d1 3296 return PLANE_CTL_FORMAT_INDEXED;
70d21f0e 3297 case DRM_FORMAT_RGB565:
c34ce3d1 3298 return PLANE_CTL_FORMAT_RGB_565;
70d21f0e 3299 case DRM_FORMAT_XBGR8888:
c34ce3d1 3300 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
6156a456 3301 case DRM_FORMAT_XRGB8888:
c34ce3d1 3302 return PLANE_CTL_FORMAT_XRGB_8888;
6156a456
CK
3303 /*
3304 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
3305 * to be already pre-multiplied. We need to add a knob (or a different
3306 * DRM_FORMAT) for user-space to configure that.
3307 */
f75fb42a 3308 case DRM_FORMAT_ABGR8888:
c34ce3d1 3309 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
6156a456 3310 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
6156a456 3311 case DRM_FORMAT_ARGB8888:
c34ce3d1 3312 return PLANE_CTL_FORMAT_XRGB_8888 |
6156a456 3313 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
70d21f0e 3314 case DRM_FORMAT_XRGB2101010:
c34ce3d1 3315 return PLANE_CTL_FORMAT_XRGB_2101010;
70d21f0e 3316 case DRM_FORMAT_XBGR2101010:
c34ce3d1 3317 return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
6156a456 3318 case DRM_FORMAT_YUYV:
c34ce3d1 3319 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
6156a456 3320 case DRM_FORMAT_YVYU:
c34ce3d1 3321 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
6156a456 3322 case DRM_FORMAT_UYVY:
c34ce3d1 3323 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
6156a456 3324 case DRM_FORMAT_VYUY:
c34ce3d1 3325 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
70d21f0e 3326 default:
4249eeef 3327 MISSING_CASE(pixel_format);
70d21f0e 3328 }
8cfcba41 3329
c34ce3d1 3330 return 0;
6156a456 3331}
70d21f0e 3332
6156a456
CK
3333u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
3334{
6156a456 3335 switch (fb_modifier) {
30af77c4 3336 case DRM_FORMAT_MOD_NONE:
70d21f0e 3337 break;
30af77c4 3338 case I915_FORMAT_MOD_X_TILED:
c34ce3d1 3339 return PLANE_CTL_TILED_X;
b321803d 3340 case I915_FORMAT_MOD_Y_TILED:
c34ce3d1 3341 return PLANE_CTL_TILED_Y;
b321803d 3342 case I915_FORMAT_MOD_Yf_TILED:
c34ce3d1 3343 return PLANE_CTL_TILED_YF;
70d21f0e 3344 default:
6156a456 3345 MISSING_CASE(fb_modifier);
70d21f0e 3346 }
8cfcba41 3347
c34ce3d1 3348 return 0;
6156a456 3349}
70d21f0e 3350
6156a456
CK
3351u32 skl_plane_ctl_rotation(unsigned int rotation)
3352{
3b7a5119 3353 switch (rotation) {
31ad61e4 3354 case DRM_ROTATE_0:
6156a456 3355 break;
1e8df167
SJ
3356 /*
3357 * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr
3358 * while i915 HW rotation is clockwise, thats why this swapping.
3359 */
31ad61e4 3360 case DRM_ROTATE_90:
1e8df167 3361 return PLANE_CTL_ROTATE_270;
31ad61e4 3362 case DRM_ROTATE_180:
c34ce3d1 3363 return PLANE_CTL_ROTATE_180;
31ad61e4 3364 case DRM_ROTATE_270:
1e8df167 3365 return PLANE_CTL_ROTATE_90;
6156a456
CK
3366 default:
3367 MISSING_CASE(rotation);
3368 }
3369
c34ce3d1 3370 return 0;
6156a456
CK
3371}
3372
a8d201af
ML
3373static void skylake_update_primary_plane(struct drm_plane *plane,
3374 const struct intel_crtc_state *crtc_state,
3375 const struct intel_plane_state *plane_state)
6156a456 3376{
a8d201af 3377 struct drm_device *dev = plane->dev;
fac5e23e 3378 struct drm_i915_private *dev_priv = to_i915(dev);
a8d201af
ML
3379 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
3380 struct drm_framebuffer *fb = plane_state->base.fb;
6156a456 3381 int pipe = intel_crtc->pipe;
d2196774 3382 u32 plane_ctl;
a8d201af 3383 unsigned int rotation = plane_state->base.rotation;
d2196774 3384 u32 stride = skl_plane_stride(fb, 0, rotation);
b63a16f6 3385 u32 surf_addr = plane_state->main.offset;
a8d201af 3386 int scaler_id = plane_state->scaler_id;
b63a16f6
VS
3387 int src_x = plane_state->main.x;
3388 int src_y = plane_state->main.y;
936e71e3
VS
3389 int src_w = drm_rect_width(&plane_state->base.src) >> 16;
3390 int src_h = drm_rect_height(&plane_state->base.src) >> 16;
3391 int dst_x = plane_state->base.dst.x1;
3392 int dst_y = plane_state->base.dst.y1;
3393 int dst_w = drm_rect_width(&plane_state->base.dst);
3394 int dst_h = drm_rect_height(&plane_state->base.dst);
70d21f0e 3395
6156a456
CK
3396 plane_ctl = PLANE_CTL_ENABLE |
3397 PLANE_CTL_PIPE_GAMMA_ENABLE |
3398 PLANE_CTL_PIPE_CSC_ENABLE;
3399
3400 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3401 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
3402 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
6156a456
CK
3403 plane_ctl |= skl_plane_ctl_rotation(rotation);
3404
6687c906
VS
3405 /* Sizes are 0 based */
3406 src_w--;
3407 src_h--;
3408 dst_w--;
3409 dst_h--;
3410
4c0b8a8b
PZ
3411 intel_crtc->dspaddr_offset = surf_addr;
3412
6687c906
VS
3413 intel_crtc->adjusted_x = src_x;
3414 intel_crtc->adjusted_y = src_y;
2db3366b 3415
70d21f0e 3416 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
6687c906 3417 I915_WRITE(PLANE_OFFSET(pipe, 0), (src_y << 16) | src_x);
ef78ec94 3418 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
6687c906 3419 I915_WRITE(PLANE_SIZE(pipe, 0), (src_h << 16) | src_w);
6156a456
CK
3420
3421 if (scaler_id >= 0) {
3422 uint32_t ps_ctrl = 0;
3423
3424 WARN_ON(!dst_w || !dst_h);
3425 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3426 crtc_state->scaler_state.scalers[scaler_id].mode;
3427 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3428 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3429 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3430 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3431 I915_WRITE(PLANE_POS(pipe, 0), 0);
3432 } else {
3433 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3434 }
3435
6687c906
VS
3436 I915_WRITE(PLANE_SURF(pipe, 0),
3437 intel_fb_gtt_offset(fb, rotation) + surf_addr);
70d21f0e
DL
3438
3439 POSTING_READ(PLANE_SURF(pipe, 0));
3440}
3441
a8d201af
ML
3442static void skylake_disable_primary_plane(struct drm_plane *primary,
3443 struct drm_crtc *crtc)
17638cd6
JB
3444{
3445 struct drm_device *dev = crtc->dev;
fac5e23e 3446 struct drm_i915_private *dev_priv = to_i915(dev);
62e0fb88
L
3447 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3448 int pipe = intel_crtc->pipe;
3449
a8d201af
ML
3450 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3451 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3452 POSTING_READ(PLANE_SURF(pipe, 0));
3453}
29b9bde6 3454
a8d201af
ML
3455/* Assume fb object is pinned & idle & fenced and just update base pointers */
3456static int
3457intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3458 int x, int y, enum mode_set_atomic state)
3459{
3460 /* Support for kgdboc is disabled, this needs a major rework. */
3461 DRM_ERROR("legacy panic handler not supported any more.\n");
3462
3463 return -ENODEV;
81255565
JB
3464}
3465
5a21b665
DV
3466static void intel_complete_page_flips(struct drm_i915_private *dev_priv)
3467{
3468 struct intel_crtc *crtc;
3469
91c8a326 3470 for_each_intel_crtc(&dev_priv->drm, crtc)
5a21b665
DV
3471 intel_finish_page_flip_cs(dev_priv, crtc->pipe);
3472}
3473
7514747d
VS
3474static void intel_update_primary_planes(struct drm_device *dev)
3475{
7514747d 3476 struct drm_crtc *crtc;
96a02917 3477
70e1e0ec 3478 for_each_crtc(dev, crtc) {
11c22da6 3479 struct intel_plane *plane = to_intel_plane(crtc->primary);
73974893
ML
3480 struct intel_plane_state *plane_state =
3481 to_intel_plane_state(plane->base.state);
11c22da6 3482
936e71e3 3483 if (plane_state->base.visible)
a8d201af
ML
3484 plane->update_plane(&plane->base,
3485 to_intel_crtc_state(crtc->state),
3486 plane_state);
73974893
ML
3487 }
3488}
3489
3490static int
3491__intel_display_resume(struct drm_device *dev,
3492 struct drm_atomic_state *state)
3493{
3494 struct drm_crtc_state *crtc_state;
3495 struct drm_crtc *crtc;
3496 int i, ret;
11c22da6 3497
73974893 3498 intel_modeset_setup_hw_state(dev);
29b74b7f 3499 i915_redisable_vga(to_i915(dev));
73974893
ML
3500
3501 if (!state)
3502 return 0;
3503
3504 for_each_crtc_in_state(state, crtc, crtc_state, i) {
3505 /*
3506 * Force recalculation even if we restore
3507 * current state. With fast modeset this may not result
3508 * in a modeset when the state is compatible.
3509 */
3510 crtc_state->mode_changed = true;
96a02917 3511 }
73974893
ML
3512
3513 /* ignore any reset values/BIOS leftovers in the WM registers */
3514 to_intel_atomic_state(state)->skip_intermediate_wm = true;
3515
3516 ret = drm_atomic_commit(state);
3517
3518 WARN_ON(ret == -EDEADLK);
3519 return ret;
96a02917
VS
3520}
3521
4ac2ba2f
VS
3522static bool gpu_reset_clobbers_display(struct drm_i915_private *dev_priv)
3523{
ae98104b
VS
3524 return intel_has_gpu_reset(dev_priv) &&
3525 INTEL_GEN(dev_priv) < 5 && !IS_G4X(dev_priv);
4ac2ba2f
VS
3526}
3527
c033666a 3528void intel_prepare_reset(struct drm_i915_private *dev_priv)
7514747d 3529{
73974893
ML
3530 struct drm_device *dev = &dev_priv->drm;
3531 struct drm_modeset_acquire_ctx *ctx = &dev_priv->reset_ctx;
3532 struct drm_atomic_state *state;
3533 int ret;
3534
73974893
ML
3535 /*
3536 * Need mode_config.mutex so that we don't
3537 * trample ongoing ->detect() and whatnot.
3538 */
3539 mutex_lock(&dev->mode_config.mutex);
3540 drm_modeset_acquire_init(ctx, 0);
3541 while (1) {
3542 ret = drm_modeset_lock_all_ctx(dev, ctx);
3543 if (ret != -EDEADLK)
3544 break;
3545
3546 drm_modeset_backoff(ctx);
3547 }
3548
3549 /* reset doesn't touch the display, but flips might get nuked anyway, */
522a63de 3550 if (!i915.force_reset_modeset_test &&
4ac2ba2f 3551 !gpu_reset_clobbers_display(dev_priv))
7514747d
VS
3552 return;
3553
f98ce92f
VS
3554 /*
3555 * Disabling the crtcs gracefully seems nicer. Also the
3556 * g33 docs say we should at least disable all the planes.
3557 */
73974893
ML
3558 state = drm_atomic_helper_duplicate_state(dev, ctx);
3559 if (IS_ERR(state)) {
3560 ret = PTR_ERR(state);
3561 state = NULL;
3562 DRM_ERROR("Duplicating state failed with %i\n", ret);
3563 goto err;
3564 }
3565
3566 ret = drm_atomic_helper_disable_all(dev, ctx);
3567 if (ret) {
3568 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
3569 goto err;
3570 }
3571
3572 dev_priv->modeset_restore_state = state;
3573 state->acquire_ctx = ctx;
3574 return;
3575
3576err:
0853695c 3577 drm_atomic_state_put(state);
7514747d
VS
3578}
3579
c033666a 3580void intel_finish_reset(struct drm_i915_private *dev_priv)
7514747d 3581{
73974893
ML
3582 struct drm_device *dev = &dev_priv->drm;
3583 struct drm_modeset_acquire_ctx *ctx = &dev_priv->reset_ctx;
3584 struct drm_atomic_state *state = dev_priv->modeset_restore_state;
3585 int ret;
3586
5a21b665
DV
3587 /*
3588 * Flips in the rings will be nuked by the reset,
3589 * so complete all pending flips so that user space
3590 * will get its events and not get stuck.
3591 */
3592 intel_complete_page_flips(dev_priv);
3593
73974893
ML
3594 dev_priv->modeset_restore_state = NULL;
3595
7514747d 3596 /* reset doesn't touch the display */
4ac2ba2f 3597 if (!gpu_reset_clobbers_display(dev_priv)) {
522a63de
ML
3598 if (!state) {
3599 /*
3600 * Flips in the rings have been nuked by the reset,
3601 * so update the base address of all primary
3602 * planes to the the last fb to make sure we're
3603 * showing the correct fb after a reset.
3604 *
3605 * FIXME: Atomic will make this obsolete since we won't schedule
3606 * CS-based flips (which might get lost in gpu resets) any more.
3607 */
3608 intel_update_primary_planes(dev);
3609 } else {
3610 ret = __intel_display_resume(dev, state);
3611 if (ret)
3612 DRM_ERROR("Restoring old state failed with %i\n", ret);
3613 }
73974893
ML
3614 } else {
3615 /*
3616 * The display has been reset as well,
3617 * so need a full re-initialization.
3618 */
3619 intel_runtime_pm_disable_interrupts(dev_priv);
3620 intel_runtime_pm_enable_interrupts(dev_priv);
7514747d 3621
51f59205 3622 intel_pps_unlock_regs_wa(dev_priv);
73974893 3623 intel_modeset_init_hw(dev);
7514747d 3624
73974893
ML
3625 spin_lock_irq(&dev_priv->irq_lock);
3626 if (dev_priv->display.hpd_irq_setup)
3627 dev_priv->display.hpd_irq_setup(dev_priv);
3628 spin_unlock_irq(&dev_priv->irq_lock);
7514747d 3629
73974893
ML
3630 ret = __intel_display_resume(dev, state);
3631 if (ret)
3632 DRM_ERROR("Restoring old state failed with %i\n", ret);
7514747d 3633
73974893
ML
3634 intel_hpd_init(dev_priv);
3635 }
7514747d 3636
0853695c
CW
3637 if (state)
3638 drm_atomic_state_put(state);
73974893
ML
3639 drm_modeset_drop_locks(ctx);
3640 drm_modeset_acquire_fini(ctx);
3641 mutex_unlock(&dev->mode_config.mutex);
7514747d
VS
3642}
3643
8af29b0c
CW
3644static bool abort_flip_on_reset(struct intel_crtc *crtc)
3645{
3646 struct i915_gpu_error *error = &to_i915(crtc->base.dev)->gpu_error;
3647
3648 if (i915_reset_in_progress(error))
3649 return true;
3650
3651 if (crtc->reset_count != i915_reset_count(error))
3652 return true;
3653
3654 return false;
3655}
3656
7d5e3799
CW
3657static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3658{
5a21b665
DV
3659 struct drm_device *dev = crtc->dev;
3660 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5a21b665
DV
3661 bool pending;
3662
8af29b0c 3663 if (abort_flip_on_reset(intel_crtc))
5a21b665
DV
3664 return false;
3665
3666 spin_lock_irq(&dev->event_lock);
3667 pending = to_intel_crtc(crtc)->flip_work != NULL;
3668 spin_unlock_irq(&dev->event_lock);
3669
3670 return pending;
7d5e3799
CW
3671}
3672
bfd16b2a
ML
3673static void intel_update_pipe_config(struct intel_crtc *crtc,
3674 struct intel_crtc_state *old_crtc_state)
e30e8f75 3675{
6315b5d3 3676 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
bfd16b2a
ML
3677 struct intel_crtc_state *pipe_config =
3678 to_intel_crtc_state(crtc->base.state);
e30e8f75 3679
bfd16b2a
ML
3680 /* drm_atomic_helper_update_legacy_modeset_state might not be called. */
3681 crtc->base.mode = crtc->base.state->mode;
3682
3683 DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n",
3684 old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h,
3685 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
e30e8f75
GP
3686
3687 /*
3688 * Update pipe size and adjust fitter if needed: the reason for this is
3689 * that in compute_mode_changes we check the native mode (not the pfit
3690 * mode) to see if we can flip rather than do a full mode set. In the
3691 * fastboot case, we'll flip, but if we don't update the pipesrc and
3692 * pfit state, we'll end up with a big fb scanned out into the wrong
3693 * sized surface.
e30e8f75
GP
3694 */
3695
e30e8f75 3696 I915_WRITE(PIPESRC(crtc->pipe),
bfd16b2a
ML
3697 ((pipe_config->pipe_src_w - 1) << 16) |
3698 (pipe_config->pipe_src_h - 1));
3699
3700 /* on skylake this is done by detaching scalers */
6315b5d3 3701 if (INTEL_GEN(dev_priv) >= 9) {
bfd16b2a
ML
3702 skl_detach_scalers(crtc);
3703
3704 if (pipe_config->pch_pfit.enabled)
3705 skylake_pfit_enable(crtc);
6e266956 3706 } else if (HAS_PCH_SPLIT(dev_priv)) {
bfd16b2a
ML
3707 if (pipe_config->pch_pfit.enabled)
3708 ironlake_pfit_enable(crtc);
3709 else if (old_crtc_state->pch_pfit.enabled)
3710 ironlake_pfit_disable(crtc, true);
e30e8f75 3711 }
e30e8f75
GP
3712}
3713
5e84e1a4
ZW
3714static void intel_fdi_normal_train(struct drm_crtc *crtc)
3715{
3716 struct drm_device *dev = crtc->dev;
fac5e23e 3717 struct drm_i915_private *dev_priv = to_i915(dev);
5e84e1a4
ZW
3718 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3719 int pipe = intel_crtc->pipe;
f0f59a00
VS
3720 i915_reg_t reg;
3721 u32 temp;
5e84e1a4
ZW
3722
3723 /* enable normal train */
3724 reg = FDI_TX_CTL(pipe);
3725 temp = I915_READ(reg);
fd6b8f43 3726 if (IS_IVYBRIDGE(dev_priv)) {
357555c0
JB
3727 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3728 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
61e499bf
KP
3729 } else {
3730 temp &= ~FDI_LINK_TRAIN_NONE;
3731 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
357555c0 3732 }
5e84e1a4
ZW
3733 I915_WRITE(reg, temp);
3734
3735 reg = FDI_RX_CTL(pipe);
3736 temp = I915_READ(reg);
6e266956 3737 if (HAS_PCH_CPT(dev_priv)) {
5e84e1a4
ZW
3738 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3739 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3740 } else {
3741 temp &= ~FDI_LINK_TRAIN_NONE;
3742 temp |= FDI_LINK_TRAIN_NONE;
3743 }
3744 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3745
3746 /* wait one idle pattern time */
3747 POSTING_READ(reg);
3748 udelay(1000);
357555c0
JB
3749
3750 /* IVB wants error correction enabled */
fd6b8f43 3751 if (IS_IVYBRIDGE(dev_priv))
357555c0
JB
3752 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3753 FDI_FE_ERRC_ENABLE);
5e84e1a4
ZW
3754}
3755
8db9d77b
ZW
3756/* The FDI link training functions for ILK/Ibexpeak. */
3757static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3758{
3759 struct drm_device *dev = crtc->dev;
fac5e23e 3760 struct drm_i915_private *dev_priv = to_i915(dev);
8db9d77b
ZW
3761 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3762 int pipe = intel_crtc->pipe;
f0f59a00
VS
3763 i915_reg_t reg;
3764 u32 temp, tries;
8db9d77b 3765
1c8562f6 3766 /* FDI needs bits from pipe first */
0fc932b8 3767 assert_pipe_enabled(dev_priv, pipe);
0fc932b8 3768
e1a44743
AJ
3769 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3770 for train result */
5eddb70b
CW
3771 reg = FDI_RX_IMR(pipe);
3772 temp = I915_READ(reg);
e1a44743
AJ
3773 temp &= ~FDI_RX_SYMBOL_LOCK;
3774 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3775 I915_WRITE(reg, temp);
3776 I915_READ(reg);
e1a44743
AJ
3777 udelay(150);
3778
8db9d77b 3779 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3780 reg = FDI_TX_CTL(pipe);
3781 temp = I915_READ(reg);
627eb5a3 3782 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3783 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3784 temp &= ~FDI_LINK_TRAIN_NONE;
3785 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 3786 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3787
5eddb70b
CW
3788 reg = FDI_RX_CTL(pipe);
3789 temp = I915_READ(reg);
8db9d77b
ZW
3790 temp &= ~FDI_LINK_TRAIN_NONE;
3791 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b
CW
3792 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3793
3794 POSTING_READ(reg);
8db9d77b
ZW
3795 udelay(150);
3796
5b2adf89 3797 /* Ironlake workaround, enable clock pointer after FDI enable*/
8f5718a6
DV
3798 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3799 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3800 FDI_RX_PHASE_SYNC_POINTER_EN);
5b2adf89 3801
5eddb70b 3802 reg = FDI_RX_IIR(pipe);
e1a44743 3803 for (tries = 0; tries < 5; tries++) {
5eddb70b 3804 temp = I915_READ(reg);
8db9d77b
ZW
3805 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3806
3807 if ((temp & FDI_RX_BIT_LOCK)) {
3808 DRM_DEBUG_KMS("FDI train 1 done.\n");
5eddb70b 3809 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
3810 break;
3811 }
8db9d77b 3812 }
e1a44743 3813 if (tries == 5)
5eddb70b 3814 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3815
3816 /* Train 2 */
5eddb70b
CW
3817 reg = FDI_TX_CTL(pipe);
3818 temp = I915_READ(reg);
8db9d77b
ZW
3819 temp &= ~FDI_LINK_TRAIN_NONE;
3820 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3821 I915_WRITE(reg, temp);
8db9d77b 3822
5eddb70b
CW
3823 reg = FDI_RX_CTL(pipe);
3824 temp = I915_READ(reg);
8db9d77b
ZW
3825 temp &= ~FDI_LINK_TRAIN_NONE;
3826 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3827 I915_WRITE(reg, temp);
8db9d77b 3828
5eddb70b
CW
3829 POSTING_READ(reg);
3830 udelay(150);
8db9d77b 3831
5eddb70b 3832 reg = FDI_RX_IIR(pipe);
e1a44743 3833 for (tries = 0; tries < 5; tries++) {
5eddb70b 3834 temp = I915_READ(reg);
8db9d77b
ZW
3835 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3836
3837 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 3838 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
3839 DRM_DEBUG_KMS("FDI train 2 done.\n");
3840 break;
3841 }
8db9d77b 3842 }
e1a44743 3843 if (tries == 5)
5eddb70b 3844 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3845
3846 DRM_DEBUG_KMS("FDI train done\n");
5c5313c8 3847
8db9d77b
ZW
3848}
3849
0206e353 3850static const int snb_b_fdi_train_param[] = {
8db9d77b
ZW
3851 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3852 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3853 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3854 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3855};
3856
3857/* The FDI link training functions for SNB/Cougarpoint. */
3858static void gen6_fdi_link_train(struct drm_crtc *crtc)
3859{
3860 struct drm_device *dev = crtc->dev;
fac5e23e 3861 struct drm_i915_private *dev_priv = to_i915(dev);
8db9d77b
ZW
3862 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3863 int pipe = intel_crtc->pipe;
f0f59a00
VS
3864 i915_reg_t reg;
3865 u32 temp, i, retry;
8db9d77b 3866
e1a44743
AJ
3867 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3868 for train result */
5eddb70b
CW
3869 reg = FDI_RX_IMR(pipe);
3870 temp = I915_READ(reg);
e1a44743
AJ
3871 temp &= ~FDI_RX_SYMBOL_LOCK;
3872 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3873 I915_WRITE(reg, temp);
3874
3875 POSTING_READ(reg);
e1a44743
AJ
3876 udelay(150);
3877
8db9d77b 3878 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3879 reg = FDI_TX_CTL(pipe);
3880 temp = I915_READ(reg);
627eb5a3 3881 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3882 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3883 temp &= ~FDI_LINK_TRAIN_NONE;
3884 temp |= FDI_LINK_TRAIN_PATTERN_1;
3885 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3886 /* SNB-B */
3887 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
5eddb70b 3888 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3889
d74cf324
DV
3890 I915_WRITE(FDI_RX_MISC(pipe),
3891 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3892
5eddb70b
CW
3893 reg = FDI_RX_CTL(pipe);
3894 temp = I915_READ(reg);
6e266956 3895 if (HAS_PCH_CPT(dev_priv)) {
8db9d77b
ZW
3896 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3897 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3898 } else {
3899 temp &= ~FDI_LINK_TRAIN_NONE;
3900 temp |= FDI_LINK_TRAIN_PATTERN_1;
3901 }
5eddb70b
CW
3902 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3903
3904 POSTING_READ(reg);
8db9d77b
ZW
3905 udelay(150);
3906
0206e353 3907 for (i = 0; i < 4; i++) {
5eddb70b
CW
3908 reg = FDI_TX_CTL(pipe);
3909 temp = I915_READ(reg);
8db9d77b
ZW
3910 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3911 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3912 I915_WRITE(reg, temp);
3913
3914 POSTING_READ(reg);
8db9d77b
ZW
3915 udelay(500);
3916
fa37d39e
SP
3917 for (retry = 0; retry < 5; retry++) {
3918 reg = FDI_RX_IIR(pipe);
3919 temp = I915_READ(reg);
3920 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3921 if (temp & FDI_RX_BIT_LOCK) {
3922 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3923 DRM_DEBUG_KMS("FDI train 1 done.\n");
3924 break;
3925 }
3926 udelay(50);
8db9d77b 3927 }
fa37d39e
SP
3928 if (retry < 5)
3929 break;
8db9d77b
ZW
3930 }
3931 if (i == 4)
5eddb70b 3932 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3933
3934 /* Train 2 */
5eddb70b
CW
3935 reg = FDI_TX_CTL(pipe);
3936 temp = I915_READ(reg);
8db9d77b
ZW
3937 temp &= ~FDI_LINK_TRAIN_NONE;
3938 temp |= FDI_LINK_TRAIN_PATTERN_2;
5db94019 3939 if (IS_GEN6(dev_priv)) {
8db9d77b
ZW
3940 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3941 /* SNB-B */
3942 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3943 }
5eddb70b 3944 I915_WRITE(reg, temp);
8db9d77b 3945
5eddb70b
CW
3946 reg = FDI_RX_CTL(pipe);
3947 temp = I915_READ(reg);
6e266956 3948 if (HAS_PCH_CPT(dev_priv)) {
8db9d77b
ZW
3949 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3950 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3951 } else {
3952 temp &= ~FDI_LINK_TRAIN_NONE;
3953 temp |= FDI_LINK_TRAIN_PATTERN_2;
3954 }
5eddb70b
CW
3955 I915_WRITE(reg, temp);
3956
3957 POSTING_READ(reg);
8db9d77b
ZW
3958 udelay(150);
3959
0206e353 3960 for (i = 0; i < 4; i++) {
5eddb70b
CW
3961 reg = FDI_TX_CTL(pipe);
3962 temp = I915_READ(reg);
8db9d77b
ZW
3963 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3964 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3965 I915_WRITE(reg, temp);
3966
3967 POSTING_READ(reg);
8db9d77b
ZW
3968 udelay(500);
3969
fa37d39e
SP
3970 for (retry = 0; retry < 5; retry++) {
3971 reg = FDI_RX_IIR(pipe);
3972 temp = I915_READ(reg);
3973 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3974 if (temp & FDI_RX_SYMBOL_LOCK) {
3975 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3976 DRM_DEBUG_KMS("FDI train 2 done.\n");
3977 break;
3978 }
3979 udelay(50);
8db9d77b 3980 }
fa37d39e
SP
3981 if (retry < 5)
3982 break;
8db9d77b
ZW
3983 }
3984 if (i == 4)
5eddb70b 3985 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3986
3987 DRM_DEBUG_KMS("FDI train done.\n");
3988}
3989
357555c0
JB
3990/* Manual link training for Ivy Bridge A0 parts */
3991static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3992{
3993 struct drm_device *dev = crtc->dev;
fac5e23e 3994 struct drm_i915_private *dev_priv = to_i915(dev);
357555c0
JB
3995 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3996 int pipe = intel_crtc->pipe;
f0f59a00
VS
3997 i915_reg_t reg;
3998 u32 temp, i, j;
357555c0
JB
3999
4000 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
4001 for train result */
4002 reg = FDI_RX_IMR(pipe);
4003 temp = I915_READ(reg);
4004 temp &= ~FDI_RX_SYMBOL_LOCK;
4005 temp &= ~FDI_RX_BIT_LOCK;
4006 I915_WRITE(reg, temp);
4007
4008 POSTING_READ(reg);
4009 udelay(150);
4010
01a415fd
DV
4011 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
4012 I915_READ(FDI_RX_IIR(pipe)));
4013
139ccd3f
JB
4014 /* Try each vswing and preemphasis setting twice before moving on */
4015 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
4016 /* disable first in case we need to retry */
4017 reg = FDI_TX_CTL(pipe);
4018 temp = I915_READ(reg);
4019 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
4020 temp &= ~FDI_TX_ENABLE;
4021 I915_WRITE(reg, temp);
357555c0 4022
139ccd3f
JB
4023 reg = FDI_RX_CTL(pipe);
4024 temp = I915_READ(reg);
4025 temp &= ~FDI_LINK_TRAIN_AUTO;
4026 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
4027 temp &= ~FDI_RX_ENABLE;
4028 I915_WRITE(reg, temp);
357555c0 4029
139ccd3f 4030 /* enable CPU FDI TX and PCH FDI RX */
357555c0
JB
4031 reg = FDI_TX_CTL(pipe);
4032 temp = I915_READ(reg);
139ccd3f 4033 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 4034 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
139ccd3f 4035 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
357555c0 4036 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
139ccd3f
JB
4037 temp |= snb_b_fdi_train_param[j/2];
4038 temp |= FDI_COMPOSITE_SYNC;
4039 I915_WRITE(reg, temp | FDI_TX_ENABLE);
357555c0 4040
139ccd3f
JB
4041 I915_WRITE(FDI_RX_MISC(pipe),
4042 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
357555c0 4043
139ccd3f 4044 reg = FDI_RX_CTL(pipe);
357555c0 4045 temp = I915_READ(reg);
139ccd3f
JB
4046 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
4047 temp |= FDI_COMPOSITE_SYNC;
4048 I915_WRITE(reg, temp | FDI_RX_ENABLE);
357555c0 4049
139ccd3f
JB
4050 POSTING_READ(reg);
4051 udelay(1); /* should be 0.5us */
357555c0 4052
139ccd3f
JB
4053 for (i = 0; i < 4; i++) {
4054 reg = FDI_RX_IIR(pipe);
4055 temp = I915_READ(reg);
4056 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 4057
139ccd3f
JB
4058 if (temp & FDI_RX_BIT_LOCK ||
4059 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
4060 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
4061 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
4062 i);
4063 break;
4064 }
4065 udelay(1); /* should be 0.5us */
4066 }
4067 if (i == 4) {
4068 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
4069 continue;
4070 }
357555c0 4071
139ccd3f 4072 /* Train 2 */
357555c0
JB
4073 reg = FDI_TX_CTL(pipe);
4074 temp = I915_READ(reg);
139ccd3f
JB
4075 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
4076 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
4077 I915_WRITE(reg, temp);
4078
4079 reg = FDI_RX_CTL(pipe);
4080 temp = I915_READ(reg);
4081 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
4082 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
357555c0
JB
4083 I915_WRITE(reg, temp);
4084
4085 POSTING_READ(reg);
139ccd3f 4086 udelay(2); /* should be 1.5us */
357555c0 4087
139ccd3f
JB
4088 for (i = 0; i < 4; i++) {
4089 reg = FDI_RX_IIR(pipe);
4090 temp = I915_READ(reg);
4091 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 4092
139ccd3f
JB
4093 if (temp & FDI_RX_SYMBOL_LOCK ||
4094 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
4095 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
4096 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
4097 i);
4098 goto train_done;
4099 }
4100 udelay(2); /* should be 1.5us */
357555c0 4101 }
139ccd3f
JB
4102 if (i == 4)
4103 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
357555c0 4104 }
357555c0 4105
139ccd3f 4106train_done:
357555c0
JB
4107 DRM_DEBUG_KMS("FDI train done.\n");
4108}
4109
88cefb6c 4110static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
2c07245f 4111{
88cefb6c 4112 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 4113 struct drm_i915_private *dev_priv = to_i915(dev);
2c07245f 4114 int pipe = intel_crtc->pipe;
f0f59a00
VS
4115 i915_reg_t reg;
4116 u32 temp;
c64e311e 4117
c98e9dcf 4118 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
5eddb70b
CW
4119 reg = FDI_RX_CTL(pipe);
4120 temp = I915_READ(reg);
627eb5a3 4121 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
6e3c9717 4122 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
dfd07d72 4123 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
5eddb70b
CW
4124 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
4125
4126 POSTING_READ(reg);
c98e9dcf
JB
4127 udelay(200);
4128
4129 /* Switch from Rawclk to PCDclk */
5eddb70b
CW
4130 temp = I915_READ(reg);
4131 I915_WRITE(reg, temp | FDI_PCDCLK);
4132
4133 POSTING_READ(reg);
c98e9dcf
JB
4134 udelay(200);
4135
20749730
PZ
4136 /* Enable CPU FDI TX PLL, always on for Ironlake */
4137 reg = FDI_TX_CTL(pipe);
4138 temp = I915_READ(reg);
4139 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
4140 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
5eddb70b 4141
20749730
PZ
4142 POSTING_READ(reg);
4143 udelay(100);
6be4a607 4144 }
0e23b99d
JB
4145}
4146
88cefb6c
DV
4147static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
4148{
4149 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 4150 struct drm_i915_private *dev_priv = to_i915(dev);
88cefb6c 4151 int pipe = intel_crtc->pipe;
f0f59a00
VS
4152 i915_reg_t reg;
4153 u32 temp;
88cefb6c
DV
4154
4155 /* Switch from PCDclk to Rawclk */
4156 reg = FDI_RX_CTL(pipe);
4157 temp = I915_READ(reg);
4158 I915_WRITE(reg, temp & ~FDI_PCDCLK);
4159
4160 /* Disable CPU FDI TX PLL */
4161 reg = FDI_TX_CTL(pipe);
4162 temp = I915_READ(reg);
4163 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
4164
4165 POSTING_READ(reg);
4166 udelay(100);
4167
4168 reg = FDI_RX_CTL(pipe);
4169 temp = I915_READ(reg);
4170 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
4171
4172 /* Wait for the clocks to turn off. */
4173 POSTING_READ(reg);
4174 udelay(100);
4175}
4176
0fc932b8
JB
4177static void ironlake_fdi_disable(struct drm_crtc *crtc)
4178{
4179 struct drm_device *dev = crtc->dev;
fac5e23e 4180 struct drm_i915_private *dev_priv = to_i915(dev);
0fc932b8
JB
4181 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4182 int pipe = intel_crtc->pipe;
f0f59a00
VS
4183 i915_reg_t reg;
4184 u32 temp;
0fc932b8
JB
4185
4186 /* disable CPU FDI tx and PCH FDI rx */
4187 reg = FDI_TX_CTL(pipe);
4188 temp = I915_READ(reg);
4189 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
4190 POSTING_READ(reg);
4191
4192 reg = FDI_RX_CTL(pipe);
4193 temp = I915_READ(reg);
4194 temp &= ~(0x7 << 16);
dfd07d72 4195 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
4196 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
4197
4198 POSTING_READ(reg);
4199 udelay(100);
4200
4201 /* Ironlake workaround, disable clock pointer after downing FDI */
6e266956 4202 if (HAS_PCH_IBX(dev_priv))
6f06ce18 4203 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
0fc932b8
JB
4204
4205 /* still set train pattern 1 */
4206 reg = FDI_TX_CTL(pipe);
4207 temp = I915_READ(reg);
4208 temp &= ~FDI_LINK_TRAIN_NONE;
4209 temp |= FDI_LINK_TRAIN_PATTERN_1;
4210 I915_WRITE(reg, temp);
4211
4212 reg = FDI_RX_CTL(pipe);
4213 temp = I915_READ(reg);
6e266956 4214 if (HAS_PCH_CPT(dev_priv)) {
0fc932b8
JB
4215 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
4216 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
4217 } else {
4218 temp &= ~FDI_LINK_TRAIN_NONE;
4219 temp |= FDI_LINK_TRAIN_PATTERN_1;
4220 }
4221 /* BPC in FDI rx is consistent with that in PIPECONF */
4222 temp &= ~(0x07 << 16);
dfd07d72 4223 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
4224 I915_WRITE(reg, temp);
4225
4226 POSTING_READ(reg);
4227 udelay(100);
4228}
4229
5dce5b93
CW
4230bool intel_has_pending_fb_unpin(struct drm_device *dev)
4231{
0f0f74bc 4232 struct drm_i915_private *dev_priv = to_i915(dev);
5dce5b93
CW
4233 struct intel_crtc *crtc;
4234
4235 /* Note that we don't need to be called with mode_config.lock here
4236 * as our list of CRTC objects is static for the lifetime of the
4237 * device and so cannot disappear as we iterate. Similarly, we can
4238 * happily treat the predicates as racy, atomic checks as userspace
4239 * cannot claim and pin a new fb without at least acquring the
4240 * struct_mutex and so serialising with us.
4241 */
d3fcc808 4242 for_each_intel_crtc(dev, crtc) {
5dce5b93
CW
4243 if (atomic_read(&crtc->unpin_work_count) == 0)
4244 continue;
4245
5a21b665 4246 if (crtc->flip_work)
0f0f74bc 4247 intel_wait_for_vblank(dev_priv, crtc->pipe);
5dce5b93
CW
4248
4249 return true;
4250 }
4251
4252 return false;
4253}
4254
5a21b665 4255static void page_flip_completed(struct intel_crtc *intel_crtc)
d6bbafa1
CW
4256{
4257 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
5a21b665
DV
4258 struct intel_flip_work *work = intel_crtc->flip_work;
4259
4260 intel_crtc->flip_work = NULL;
d6bbafa1
CW
4261
4262 if (work->event)
560ce1dc 4263 drm_crtc_send_vblank_event(&intel_crtc->base, work->event);
d6bbafa1
CW
4264
4265 drm_crtc_vblank_put(&intel_crtc->base);
4266
5a21b665 4267 wake_up_all(&dev_priv->pending_flip_queue);
143f73b3 4268 queue_work(dev_priv->wq, &work->unpin_work);
5a21b665
DV
4269
4270 trace_i915_flip_complete(intel_crtc->plane,
4271 work->pending_flip_obj);
d6bbafa1
CW
4272}
4273
5008e874 4274static int intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
e6c3a2a6 4275{
0f91128d 4276 struct drm_device *dev = crtc->dev;
fac5e23e 4277 struct drm_i915_private *dev_priv = to_i915(dev);
5008e874 4278 long ret;
e6c3a2a6 4279
2c10d571 4280 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
5008e874
ML
4281
4282 ret = wait_event_interruptible_timeout(
4283 dev_priv->pending_flip_queue,
4284 !intel_crtc_has_pending_flip(crtc),
4285 60*HZ);
4286
4287 if (ret < 0)
4288 return ret;
4289
5a21b665
DV
4290 if (ret == 0) {
4291 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4292 struct intel_flip_work *work;
4293
4294 spin_lock_irq(&dev->event_lock);
4295 work = intel_crtc->flip_work;
4296 if (work && !is_mmio_work(work)) {
4297 WARN_ONCE(1, "Removing stuck page flip\n");
4298 page_flip_completed(intel_crtc);
4299 }
4300 spin_unlock_irq(&dev->event_lock);
4301 }
5bb61643 4302
5008e874 4303 return 0;
e6c3a2a6
CW
4304}
4305
b7076546 4306void lpt_disable_iclkip(struct drm_i915_private *dev_priv)
060f02d8
VS
4307{
4308 u32 temp;
4309
4310 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
4311
4312 mutex_lock(&dev_priv->sb_lock);
4313
4314 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
4315 temp |= SBI_SSCCTL_DISABLE;
4316 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
4317
4318 mutex_unlock(&dev_priv->sb_lock);
4319}
4320
e615efe4
ED
4321/* Program iCLKIP clock to the desired frequency */
4322static void lpt_program_iclkip(struct drm_crtc *crtc)
4323{
64b46a06 4324 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
6e3c9717 4325 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
e615efe4
ED
4326 u32 divsel, phaseinc, auxdiv, phasedir = 0;
4327 u32 temp;
4328
060f02d8 4329 lpt_disable_iclkip(dev_priv);
e615efe4 4330
64b46a06
VS
4331 /* The iCLK virtual clock root frequency is in MHz,
4332 * but the adjusted_mode->crtc_clock in in KHz. To get the
4333 * divisors, it is necessary to divide one by another, so we
4334 * convert the virtual clock precision to KHz here for higher
4335 * precision.
4336 */
4337 for (auxdiv = 0; auxdiv < 2; auxdiv++) {
e615efe4
ED
4338 u32 iclk_virtual_root_freq = 172800 * 1000;
4339 u32 iclk_pi_range = 64;
64b46a06 4340 u32 desired_divisor;
e615efe4 4341
64b46a06
VS
4342 desired_divisor = DIV_ROUND_CLOSEST(iclk_virtual_root_freq,
4343 clock << auxdiv);
4344 divsel = (desired_divisor / iclk_pi_range) - 2;
4345 phaseinc = desired_divisor % iclk_pi_range;
e615efe4 4346
64b46a06
VS
4347 /*
4348 * Near 20MHz is a corner case which is
4349 * out of range for the 7-bit divisor
4350 */
4351 if (divsel <= 0x7f)
4352 break;
e615efe4
ED
4353 }
4354
4355 /* This should not happen with any sane values */
4356 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
4357 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
4358 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
4359 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
4360
4361 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
12d7ceed 4362 clock,
e615efe4
ED
4363 auxdiv,
4364 divsel,
4365 phasedir,
4366 phaseinc);
4367
060f02d8
VS
4368 mutex_lock(&dev_priv->sb_lock);
4369
e615efe4 4370 /* Program SSCDIVINTPHASE6 */
988d6ee8 4371 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
e615efe4
ED
4372 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
4373 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
4374 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
4375 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
4376 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
4377 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
988d6ee8 4378 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
e615efe4
ED
4379
4380 /* Program SSCAUXDIV */
988d6ee8 4381 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
e615efe4
ED
4382 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
4383 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
988d6ee8 4384 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
e615efe4
ED
4385
4386 /* Enable modulator and associated divider */
988d6ee8 4387 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
e615efe4 4388 temp &= ~SBI_SSCCTL_DISABLE;
988d6ee8 4389 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
e615efe4 4390
060f02d8
VS
4391 mutex_unlock(&dev_priv->sb_lock);
4392
e615efe4
ED
4393 /* Wait for initialization time */
4394 udelay(24);
4395
4396 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
4397}
4398
8802e5b6
VS
4399int lpt_get_iclkip(struct drm_i915_private *dev_priv)
4400{
4401 u32 divsel, phaseinc, auxdiv;
4402 u32 iclk_virtual_root_freq = 172800 * 1000;
4403 u32 iclk_pi_range = 64;
4404 u32 desired_divisor;
4405 u32 temp;
4406
4407 if ((I915_READ(PIXCLK_GATE) & PIXCLK_GATE_UNGATE) == 0)
4408 return 0;
4409
4410 mutex_lock(&dev_priv->sb_lock);
4411
4412 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
4413 if (temp & SBI_SSCCTL_DISABLE) {
4414 mutex_unlock(&dev_priv->sb_lock);
4415 return 0;
4416 }
4417
4418 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
4419 divsel = (temp & SBI_SSCDIVINTPHASE_DIVSEL_MASK) >>
4420 SBI_SSCDIVINTPHASE_DIVSEL_SHIFT;
4421 phaseinc = (temp & SBI_SSCDIVINTPHASE_INCVAL_MASK) >>
4422 SBI_SSCDIVINTPHASE_INCVAL_SHIFT;
4423
4424 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
4425 auxdiv = (temp & SBI_SSCAUXDIV_FINALDIV2SEL_MASK) >>
4426 SBI_SSCAUXDIV_FINALDIV2SEL_SHIFT;
4427
4428 mutex_unlock(&dev_priv->sb_lock);
4429
4430 desired_divisor = (divsel + 2) * iclk_pi_range + phaseinc;
4431
4432 return DIV_ROUND_CLOSEST(iclk_virtual_root_freq,
4433 desired_divisor << auxdiv);
4434}
4435
275f01b2
DV
4436static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
4437 enum pipe pch_transcoder)
4438{
4439 struct drm_device *dev = crtc->base.dev;
fac5e23e 4440 struct drm_i915_private *dev_priv = to_i915(dev);
6e3c9717 4441 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
275f01b2
DV
4442
4443 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
4444 I915_READ(HTOTAL(cpu_transcoder)));
4445 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
4446 I915_READ(HBLANK(cpu_transcoder)));
4447 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
4448 I915_READ(HSYNC(cpu_transcoder)));
4449
4450 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
4451 I915_READ(VTOTAL(cpu_transcoder)));
4452 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
4453 I915_READ(VBLANK(cpu_transcoder)));
4454 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
4455 I915_READ(VSYNC(cpu_transcoder)));
4456 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
4457 I915_READ(VSYNCSHIFT(cpu_transcoder)));
4458}
4459
003632d9 4460static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
1fbc0d78 4461{
fac5e23e 4462 struct drm_i915_private *dev_priv = to_i915(dev);
1fbc0d78
DV
4463 uint32_t temp;
4464
4465 temp = I915_READ(SOUTH_CHICKEN1);
003632d9 4466 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
1fbc0d78
DV
4467 return;
4468
4469 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4470 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4471
003632d9
ACO
4472 temp &= ~FDI_BC_BIFURCATION_SELECT;
4473 if (enable)
4474 temp |= FDI_BC_BIFURCATION_SELECT;
4475
4476 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
1fbc0d78
DV
4477 I915_WRITE(SOUTH_CHICKEN1, temp);
4478 POSTING_READ(SOUTH_CHICKEN1);
4479}
4480
4481static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4482{
4483 struct drm_device *dev = intel_crtc->base.dev;
1fbc0d78
DV
4484
4485 switch (intel_crtc->pipe) {
4486 case PIPE_A:
4487 break;
4488 case PIPE_B:
6e3c9717 4489 if (intel_crtc->config->fdi_lanes > 2)
003632d9 4490 cpt_set_fdi_bc_bifurcation(dev, false);
1fbc0d78 4491 else
003632d9 4492 cpt_set_fdi_bc_bifurcation(dev, true);
1fbc0d78
DV
4493
4494 break;
4495 case PIPE_C:
003632d9 4496 cpt_set_fdi_bc_bifurcation(dev, true);
1fbc0d78
DV
4497
4498 break;
4499 default:
4500 BUG();
4501 }
4502}
4503
c48b5305
VS
4504/* Return which DP Port should be selected for Transcoder DP control */
4505static enum port
4506intel_trans_dp_port_sel(struct drm_crtc *crtc)
4507{
4508 struct drm_device *dev = crtc->dev;
4509 struct intel_encoder *encoder;
4510
4511 for_each_encoder_on_crtc(dev, crtc, encoder) {
cca0502b 4512 if (encoder->type == INTEL_OUTPUT_DP ||
c48b5305
VS
4513 encoder->type == INTEL_OUTPUT_EDP)
4514 return enc_to_dig_port(&encoder->base)->port;
4515 }
4516
4517 return -1;
4518}
4519
f67a559d
JB
4520/*
4521 * Enable PCH resources required for PCH ports:
4522 * - PCH PLLs
4523 * - FDI training & RX/TX
4524 * - update transcoder timings
4525 * - DP transcoding bits
4526 * - transcoder
4527 */
4528static void ironlake_pch_enable(struct drm_crtc *crtc)
0e23b99d
JB
4529{
4530 struct drm_device *dev = crtc->dev;
fac5e23e 4531 struct drm_i915_private *dev_priv = to_i915(dev);
0e23b99d
JB
4532 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4533 int pipe = intel_crtc->pipe;
f0f59a00 4534 u32 temp;
2c07245f 4535
ab9412ba 4536 assert_pch_transcoder_disabled(dev_priv, pipe);
e7e164db 4537
fd6b8f43 4538 if (IS_IVYBRIDGE(dev_priv))
1fbc0d78
DV
4539 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4540
cd986abb
DV
4541 /* Write the TU size bits before fdi link training, so that error
4542 * detection works. */
4543 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4544 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4545
c98e9dcf 4546 /* For PCH output, training FDI link */
674cf967 4547 dev_priv->display.fdi_link_train(crtc);
2c07245f 4548
3ad8a208
DV
4549 /* We need to program the right clock selection before writing the pixel
4550 * mutliplier into the DPLL. */
6e266956 4551 if (HAS_PCH_CPT(dev_priv)) {
ee7b9f93 4552 u32 sel;
4b645f14 4553
c98e9dcf 4554 temp = I915_READ(PCH_DPLL_SEL);
11887397
DV
4555 temp |= TRANS_DPLL_ENABLE(pipe);
4556 sel = TRANS_DPLLB_SEL(pipe);
8106ddbd
ACO
4557 if (intel_crtc->config->shared_dpll ==
4558 intel_get_shared_dpll_by_id(dev_priv, DPLL_ID_PCH_PLL_B))
ee7b9f93
JB
4559 temp |= sel;
4560 else
4561 temp &= ~sel;
c98e9dcf 4562 I915_WRITE(PCH_DPLL_SEL, temp);
c98e9dcf 4563 }
5eddb70b 4564
3ad8a208
DV
4565 /* XXX: pch pll's can be enabled any time before we enable the PCH
4566 * transcoder, and we actually should do this to not upset any PCH
4567 * transcoder that already use the clock when we share it.
4568 *
4569 * Note that enable_shared_dpll tries to do the right thing, but
4570 * get_shared_dpll unconditionally resets the pll - we need that to have
4571 * the right LVDS enable sequence. */
85b3894f 4572 intel_enable_shared_dpll(intel_crtc);
3ad8a208 4573
d9b6cb56
JB
4574 /* set transcoder timing, panel must allow it */
4575 assert_panel_unlocked(dev_priv, pipe);
275f01b2 4576 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
8db9d77b 4577
303b81e0 4578 intel_fdi_normal_train(crtc);
5e84e1a4 4579
c98e9dcf 4580 /* For PCH DP, enable TRANS_DP_CTL */
6e266956
TU
4581 if (HAS_PCH_CPT(dev_priv) &&
4582 intel_crtc_has_dp_encoder(intel_crtc->config)) {
9c4edaee
VS
4583 const struct drm_display_mode *adjusted_mode =
4584 &intel_crtc->config->base.adjusted_mode;
dfd07d72 4585 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
f0f59a00 4586 i915_reg_t reg = TRANS_DP_CTL(pipe);
5eddb70b
CW
4587 temp = I915_READ(reg);
4588 temp &= ~(TRANS_DP_PORT_SEL_MASK |
220cad3c
EA
4589 TRANS_DP_SYNC_MASK |
4590 TRANS_DP_BPC_MASK);
e3ef4479 4591 temp |= TRANS_DP_OUTPUT_ENABLE;
9325c9f0 4592 temp |= bpc << 9; /* same format but at 11:9 */
c98e9dcf 4593
9c4edaee 4594 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
5eddb70b 4595 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
9c4edaee 4596 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
5eddb70b 4597 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
c98e9dcf
JB
4598
4599 switch (intel_trans_dp_port_sel(crtc)) {
c48b5305 4600 case PORT_B:
5eddb70b 4601 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf 4602 break;
c48b5305 4603 case PORT_C:
5eddb70b 4604 temp |= TRANS_DP_PORT_SEL_C;
c98e9dcf 4605 break;
c48b5305 4606 case PORT_D:
5eddb70b 4607 temp |= TRANS_DP_PORT_SEL_D;
c98e9dcf
JB
4608 break;
4609 default:
e95d41e1 4610 BUG();
32f9d658 4611 }
2c07245f 4612
5eddb70b 4613 I915_WRITE(reg, temp);
6be4a607 4614 }
b52eb4dc 4615
b8a4f404 4616 ironlake_enable_pch_transcoder(dev_priv, pipe);
f67a559d
JB
4617}
4618
1507e5bd
PZ
4619static void lpt_pch_enable(struct drm_crtc *crtc)
4620{
4621 struct drm_device *dev = crtc->dev;
fac5e23e 4622 struct drm_i915_private *dev_priv = to_i915(dev);
1507e5bd 4623 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 4624 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
1507e5bd 4625
ab9412ba 4626 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
1507e5bd 4627
8c52b5e8 4628 lpt_program_iclkip(crtc);
1507e5bd 4629
0540e488 4630 /* Set transcoder timing. */
275f01b2 4631 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
1507e5bd 4632
937bb610 4633 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
f67a559d
JB
4634}
4635
a1520318 4636static void cpt_verify_modeset(struct drm_device *dev, int pipe)
d4270e57 4637{
fac5e23e 4638 struct drm_i915_private *dev_priv = to_i915(dev);
f0f59a00 4639 i915_reg_t dslreg = PIPEDSL(pipe);
d4270e57
JB
4640 u32 temp;
4641
4642 temp = I915_READ(dslreg);
4643 udelay(500);
4644 if (wait_for(I915_READ(dslreg) != temp, 5)) {
d4270e57 4645 if (wait_for(I915_READ(dslreg) != temp, 5))
84f44ce7 4646 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
d4270e57
JB
4647 }
4648}
4649
86adf9d7
ML
4650static int
4651skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
4652 unsigned scaler_user, int *scaler_id, unsigned int rotation,
4653 int src_w, int src_h, int dst_w, int dst_h)
a1b2278e 4654{
86adf9d7
ML
4655 struct intel_crtc_scaler_state *scaler_state =
4656 &crtc_state->scaler_state;
4657 struct intel_crtc *intel_crtc =
4658 to_intel_crtc(crtc_state->base.crtc);
a1b2278e 4659 int need_scaling;
6156a456 4660
bd2ef25d 4661 need_scaling = drm_rotation_90_or_270(rotation) ?
6156a456
CK
4662 (src_h != dst_w || src_w != dst_h):
4663 (src_w != dst_w || src_h != dst_h);
a1b2278e
CK
4664
4665 /*
4666 * if plane is being disabled or scaler is no more required or force detach
4667 * - free scaler binded to this plane/crtc
4668 * - in order to do this, update crtc->scaler_usage
4669 *
4670 * Here scaler state in crtc_state is set free so that
4671 * scaler can be assigned to other user. Actual register
4672 * update to free the scaler is done in plane/panel-fit programming.
4673 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4674 */
86adf9d7 4675 if (force_detach || !need_scaling) {
a1b2278e 4676 if (*scaler_id >= 0) {
86adf9d7 4677 scaler_state->scaler_users &= ~(1 << scaler_user);
a1b2278e
CK
4678 scaler_state->scalers[*scaler_id].in_use = 0;
4679
86adf9d7
ML
4680 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4681 "Staged freeing scaler id %d scaler_users = 0x%x\n",
4682 intel_crtc->pipe, scaler_user, *scaler_id,
a1b2278e
CK
4683 scaler_state->scaler_users);
4684 *scaler_id = -1;
4685 }
4686 return 0;
4687 }
4688
4689 /* range checks */
4690 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4691 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4692
4693 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4694 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
86adf9d7 4695 DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u "
a1b2278e 4696 "size is out of scaler range\n",
86adf9d7 4697 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h);
a1b2278e
CK
4698 return -EINVAL;
4699 }
4700
86adf9d7
ML
4701 /* mark this plane as a scaler user in crtc_state */
4702 scaler_state->scaler_users |= (1 << scaler_user);
4703 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4704 "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n",
4705 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h,
4706 scaler_state->scaler_users);
4707
4708 return 0;
4709}
4710
4711/**
4712 * skl_update_scaler_crtc - Stages update to scaler state for a given crtc.
4713 *
4714 * @state: crtc's scaler state
86adf9d7
ML
4715 *
4716 * Return
4717 * 0 - scaler_usage updated successfully
4718 * error - requested scaling cannot be supported or other error condition
4719 */
e435d6e5 4720int skl_update_scaler_crtc(struct intel_crtc_state *state)
86adf9d7 4721{
7c5f93b0 4722 const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode;
86adf9d7 4723
e435d6e5 4724 return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX,
31ad61e4 4725 &state->scaler_state.scaler_id, DRM_ROTATE_0,
86adf9d7 4726 state->pipe_src_w, state->pipe_src_h,
aad941d5 4727 adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay);
86adf9d7
ML
4728}
4729
4730/**
4731 * skl_update_scaler_plane - Stages update to scaler state for a given plane.
4732 *
4733 * @state: crtc's scaler state
86adf9d7
ML
4734 * @plane_state: atomic plane state to update
4735 *
4736 * Return
4737 * 0 - scaler_usage updated successfully
4738 * error - requested scaling cannot be supported or other error condition
4739 */
da20eabd
ML
4740static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
4741 struct intel_plane_state *plane_state)
86adf9d7
ML
4742{
4743
da20eabd
ML
4744 struct intel_plane *intel_plane =
4745 to_intel_plane(plane_state->base.plane);
86adf9d7
ML
4746 struct drm_framebuffer *fb = plane_state->base.fb;
4747 int ret;
4748
936e71e3 4749 bool force_detach = !fb || !plane_state->base.visible;
86adf9d7 4750
86adf9d7
ML
4751 ret = skl_update_scaler(crtc_state, force_detach,
4752 drm_plane_index(&intel_plane->base),
4753 &plane_state->scaler_id,
4754 plane_state->base.rotation,
936e71e3
VS
4755 drm_rect_width(&plane_state->base.src) >> 16,
4756 drm_rect_height(&plane_state->base.src) >> 16,
4757 drm_rect_width(&plane_state->base.dst),
4758 drm_rect_height(&plane_state->base.dst));
86adf9d7
ML
4759
4760 if (ret || plane_state->scaler_id < 0)
4761 return ret;
4762
a1b2278e 4763 /* check colorkey */
818ed961 4764 if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) {
72660ce0
VS
4765 DRM_DEBUG_KMS("[PLANE:%d:%s] scaling with color key not allowed",
4766 intel_plane->base.base.id,
4767 intel_plane->base.name);
a1b2278e
CK
4768 return -EINVAL;
4769 }
4770
4771 /* Check src format */
86adf9d7
ML
4772 switch (fb->pixel_format) {
4773 case DRM_FORMAT_RGB565:
4774 case DRM_FORMAT_XBGR8888:
4775 case DRM_FORMAT_XRGB8888:
4776 case DRM_FORMAT_ABGR8888:
4777 case DRM_FORMAT_ARGB8888:
4778 case DRM_FORMAT_XRGB2101010:
4779 case DRM_FORMAT_XBGR2101010:
4780 case DRM_FORMAT_YUYV:
4781 case DRM_FORMAT_YVYU:
4782 case DRM_FORMAT_UYVY:
4783 case DRM_FORMAT_VYUY:
4784 break;
4785 default:
72660ce0
VS
4786 DRM_DEBUG_KMS("[PLANE:%d:%s] FB:%d unsupported scaling format 0x%x\n",
4787 intel_plane->base.base.id, intel_plane->base.name,
4788 fb->base.id, fb->pixel_format);
86adf9d7 4789 return -EINVAL;
a1b2278e
CK
4790 }
4791
a1b2278e
CK
4792 return 0;
4793}
4794
e435d6e5
ML
4795static void skylake_scaler_disable(struct intel_crtc *crtc)
4796{
4797 int i;
4798
4799 for (i = 0; i < crtc->num_scalers; i++)
4800 skl_detach_scaler(crtc, i);
4801}
4802
4803static void skylake_pfit_enable(struct intel_crtc *crtc)
bd2e244f
JB
4804{
4805 struct drm_device *dev = crtc->base.dev;
fac5e23e 4806 struct drm_i915_private *dev_priv = to_i915(dev);
bd2e244f 4807 int pipe = crtc->pipe;
a1b2278e
CK
4808 struct intel_crtc_scaler_state *scaler_state =
4809 &crtc->config->scaler_state;
4810
4811 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4812
6e3c9717 4813 if (crtc->config->pch_pfit.enabled) {
a1b2278e
CK
4814 int id;
4815
4816 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4817 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4818 return;
4819 }
4820
4821 id = scaler_state->scaler_id;
4822 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4823 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4824 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4825 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4826
4827 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
bd2e244f
JB
4828 }
4829}
4830
b074cec8
JB
4831static void ironlake_pfit_enable(struct intel_crtc *crtc)
4832{
4833 struct drm_device *dev = crtc->base.dev;
fac5e23e 4834 struct drm_i915_private *dev_priv = to_i915(dev);
b074cec8
JB
4835 int pipe = crtc->pipe;
4836
6e3c9717 4837 if (crtc->config->pch_pfit.enabled) {
b074cec8
JB
4838 /* Force use of hard-coded filter coefficients
4839 * as some pre-programmed values are broken,
4840 * e.g. x201.
4841 */
fd6b8f43 4842 if (IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv))
b074cec8
JB
4843 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4844 PF_PIPE_SEL_IVB(pipe));
4845 else
4846 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
6e3c9717
ACO
4847 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4848 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
d4270e57
JB
4849 }
4850}
4851
20bc8673 4852void hsw_enable_ips(struct intel_crtc *crtc)
d77e4531 4853{
cea165c3 4854 struct drm_device *dev = crtc->base.dev;
fac5e23e 4855 struct drm_i915_private *dev_priv = to_i915(dev);
d77e4531 4856
6e3c9717 4857 if (!crtc->config->ips_enabled)
d77e4531
PZ
4858 return;
4859
307e4498
ML
4860 /*
4861 * We can only enable IPS after we enable a plane and wait for a vblank
4862 * This function is called from post_plane_update, which is run after
4863 * a vblank wait.
4864 */
cea165c3 4865
d77e4531 4866 assert_plane_enabled(dev_priv, crtc->plane);
8652744b 4867 if (IS_BROADWELL(dev_priv)) {
2a114cc1
BW
4868 mutex_lock(&dev_priv->rps.hw_lock);
4869 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4870 mutex_unlock(&dev_priv->rps.hw_lock);
4871 /* Quoting Art Runyan: "its not safe to expect any particular
4872 * value in IPS_CTL bit 31 after enabling IPS through the
e59150dc
JB
4873 * mailbox." Moreover, the mailbox may return a bogus state,
4874 * so we need to just enable it and continue on.
2a114cc1
BW
4875 */
4876 } else {
4877 I915_WRITE(IPS_CTL, IPS_ENABLE);
4878 /* The bit only becomes 1 in the next vblank, so this wait here
4879 * is essentially intel_wait_for_vblank. If we don't have this
4880 * and don't wait for vblanks until the end of crtc_enable, then
4881 * the HW state readout code will complain that the expected
4882 * IPS_CTL value is not the one we read. */
2ec9ba3c
CW
4883 if (intel_wait_for_register(dev_priv,
4884 IPS_CTL, IPS_ENABLE, IPS_ENABLE,
4885 50))
2a114cc1
BW
4886 DRM_ERROR("Timed out waiting for IPS enable\n");
4887 }
d77e4531
PZ
4888}
4889
20bc8673 4890void hsw_disable_ips(struct intel_crtc *crtc)
d77e4531
PZ
4891{
4892 struct drm_device *dev = crtc->base.dev;
fac5e23e 4893 struct drm_i915_private *dev_priv = to_i915(dev);
d77e4531 4894
6e3c9717 4895 if (!crtc->config->ips_enabled)
d77e4531
PZ
4896 return;
4897
4898 assert_plane_enabled(dev_priv, crtc->plane);
8652744b 4899 if (IS_BROADWELL(dev_priv)) {
2a114cc1
BW
4900 mutex_lock(&dev_priv->rps.hw_lock);
4901 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4902 mutex_unlock(&dev_priv->rps.hw_lock);
23d0b130 4903 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
b85c1ecf
CW
4904 if (intel_wait_for_register(dev_priv,
4905 IPS_CTL, IPS_ENABLE, 0,
4906 42))
23d0b130 4907 DRM_ERROR("Timed out waiting for IPS disable\n");
e59150dc 4908 } else {
2a114cc1 4909 I915_WRITE(IPS_CTL, 0);
e59150dc
JB
4910 POSTING_READ(IPS_CTL);
4911 }
d77e4531
PZ
4912
4913 /* We need to wait for a vblank before we can disable the plane. */
0f0f74bc 4914 intel_wait_for_vblank(dev_priv, crtc->pipe);
d77e4531
PZ
4915}
4916
7cac945f 4917static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
d3eedb1a 4918{
7cac945f 4919 if (intel_crtc->overlay) {
d3eedb1a 4920 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 4921 struct drm_i915_private *dev_priv = to_i915(dev);
d3eedb1a
VS
4922
4923 mutex_lock(&dev->struct_mutex);
4924 dev_priv->mm.interruptible = false;
4925 (void) intel_overlay_switch_off(intel_crtc->overlay);
4926 dev_priv->mm.interruptible = true;
4927 mutex_unlock(&dev->struct_mutex);
4928 }
4929
4930 /* Let userspace switch the overlay on again. In most cases userspace
4931 * has to recompute where to put it anyway.
4932 */
4933}
4934
87d4300a
ML
4935/**
4936 * intel_post_enable_primary - Perform operations after enabling primary plane
4937 * @crtc: the CRTC whose primary plane was just enabled
4938 *
4939 * Performs potentially sleeping operations that must be done after the primary
4940 * plane is enabled, such as updating FBC and IPS. Note that this may be
4941 * called due to an explicit primary plane update, or due to an implicit
4942 * re-enable that is caused when a sprite plane is updated to no longer
4943 * completely hide the primary plane.
4944 */
4945static void
4946intel_post_enable_primary(struct drm_crtc *crtc)
a5c4d7bc
VS
4947{
4948 struct drm_device *dev = crtc->dev;
fac5e23e 4949 struct drm_i915_private *dev_priv = to_i915(dev);
a5c4d7bc
VS
4950 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4951 int pipe = intel_crtc->pipe;
a5c4d7bc 4952
87d4300a
ML
4953 /*
4954 * FIXME IPS should be fine as long as one plane is
4955 * enabled, but in practice it seems to have problems
4956 * when going from primary only to sprite only and vice
4957 * versa.
4958 */
a5c4d7bc
VS
4959 hsw_enable_ips(intel_crtc);
4960
f99d7069 4961 /*
87d4300a
ML
4962 * Gen2 reports pipe underruns whenever all planes are disabled.
4963 * So don't enable underrun reporting before at least some planes
4964 * are enabled.
4965 * FIXME: Need to fix the logic to work when we turn off all planes
4966 * but leave the pipe running.
f99d7069 4967 */
5db94019 4968 if (IS_GEN2(dev_priv))
87d4300a
ML
4969 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4970
aca7b684
VS
4971 /* Underruns don't always raise interrupts, so check manually. */
4972 intel_check_cpu_fifo_underruns(dev_priv);
4973 intel_check_pch_fifo_underruns(dev_priv);
a5c4d7bc
VS
4974}
4975
2622a081 4976/* FIXME move all this to pre_plane_update() with proper state tracking */
87d4300a
ML
4977static void
4978intel_pre_disable_primary(struct drm_crtc *crtc)
a5c4d7bc
VS
4979{
4980 struct drm_device *dev = crtc->dev;
fac5e23e 4981 struct drm_i915_private *dev_priv = to_i915(dev);
a5c4d7bc
VS
4982 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4983 int pipe = intel_crtc->pipe;
a5c4d7bc 4984
87d4300a
ML
4985 /*
4986 * Gen2 reports pipe underruns whenever all planes are disabled.
4987 * So diasble underrun reporting before all the planes get disabled.
4988 * FIXME: Need to fix the logic to work when we turn off all planes
4989 * but leave the pipe running.
4990 */
5db94019 4991 if (IS_GEN2(dev_priv))
87d4300a 4992 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
a5c4d7bc 4993
2622a081
VS
4994 /*
4995 * FIXME IPS should be fine as long as one plane is
4996 * enabled, but in practice it seems to have problems
4997 * when going from primary only to sprite only and vice
4998 * versa.
4999 */
5000 hsw_disable_ips(intel_crtc);
5001}
5002
5003/* FIXME get rid of this and use pre_plane_update */
5004static void
5005intel_pre_disable_primary_noatomic(struct drm_crtc *crtc)
5006{
5007 struct drm_device *dev = crtc->dev;
fac5e23e 5008 struct drm_i915_private *dev_priv = to_i915(dev);
2622a081
VS
5009 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5010 int pipe = intel_crtc->pipe;
5011
5012 intel_pre_disable_primary(crtc);
5013
87d4300a
ML
5014 /*
5015 * Vblank time updates from the shadow to live plane control register
5016 * are blocked if the memory self-refresh mode is active at that
5017 * moment. So to make sure the plane gets truly disabled, disable
5018 * first the self-refresh mode. The self-refresh enable bit in turn
5019 * will be checked/applied by the HW only at the next frame start
5020 * event which is after the vblank start event, so we need to have a
5021 * wait-for-vblank between disabling the plane and the pipe.
5022 */
49cff963 5023 if (HAS_GMCH_DISPLAY(dev_priv)) {
87d4300a 5024 intel_set_memory_cxsr(dev_priv, false);
262cd2e1 5025 dev_priv->wm.vlv.cxsr = false;
0f0f74bc 5026 intel_wait_for_vblank(dev_priv, pipe);
262cd2e1 5027 }
87d4300a
ML
5028}
5029
5a21b665
DV
5030static void intel_post_plane_update(struct intel_crtc_state *old_crtc_state)
5031{
5032 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
5033 struct drm_atomic_state *old_state = old_crtc_state->base.state;
5034 struct intel_crtc_state *pipe_config =
5035 to_intel_crtc_state(crtc->base.state);
5a21b665
DV
5036 struct drm_plane *primary = crtc->base.primary;
5037 struct drm_plane_state *old_pri_state =
5038 drm_atomic_get_existing_plane_state(old_state, primary);
5039
5748b6a1 5040 intel_frontbuffer_flip(to_i915(crtc->base.dev), pipe_config->fb_bits);
5a21b665
DV
5041
5042 crtc->wm.cxsr_allowed = true;
5043
5044 if (pipe_config->update_wm_post && pipe_config->base.active)
432081bc 5045 intel_update_watermarks(crtc);
5a21b665
DV
5046
5047 if (old_pri_state) {
5048 struct intel_plane_state *primary_state =
5049 to_intel_plane_state(primary->state);
5050 struct intel_plane_state *old_primary_state =
5051 to_intel_plane_state(old_pri_state);
5052
5053 intel_fbc_post_update(crtc);
5054
936e71e3 5055 if (primary_state->base.visible &&
5a21b665 5056 (needs_modeset(&pipe_config->base) ||
936e71e3 5057 !old_primary_state->base.visible))
5a21b665
DV
5058 intel_post_enable_primary(&crtc->base);
5059 }
5060}
5061
5c74cd73 5062static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state)
ac21b225 5063{
5c74cd73 5064 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
ac21b225 5065 struct drm_device *dev = crtc->base.dev;
fac5e23e 5066 struct drm_i915_private *dev_priv = to_i915(dev);
ab1d3a0e
ML
5067 struct intel_crtc_state *pipe_config =
5068 to_intel_crtc_state(crtc->base.state);
5c74cd73
ML
5069 struct drm_atomic_state *old_state = old_crtc_state->base.state;
5070 struct drm_plane *primary = crtc->base.primary;
5071 struct drm_plane_state *old_pri_state =
5072 drm_atomic_get_existing_plane_state(old_state, primary);
5073 bool modeset = needs_modeset(&pipe_config->base);
ccf010fb
ML
5074 struct intel_atomic_state *old_intel_state =
5075 to_intel_atomic_state(old_state);
ac21b225 5076
5c74cd73
ML
5077 if (old_pri_state) {
5078 struct intel_plane_state *primary_state =
5079 to_intel_plane_state(primary->state);
5080 struct intel_plane_state *old_primary_state =
5081 to_intel_plane_state(old_pri_state);
5082
faf68d92 5083 intel_fbc_pre_update(crtc, pipe_config, primary_state);
31ae71fc 5084
936e71e3
VS
5085 if (old_primary_state->base.visible &&
5086 (modeset || !primary_state->base.visible))
5c74cd73
ML
5087 intel_pre_disable_primary(&crtc->base);
5088 }
852eb00d 5089
49cff963 5090 if (pipe_config->disable_cxsr && HAS_GMCH_DISPLAY(dev_priv)) {
852eb00d 5091 crtc->wm.cxsr_allowed = false;
2dfd178d 5092
2622a081
VS
5093 /*
5094 * Vblank time updates from the shadow to live plane control register
5095 * are blocked if the memory self-refresh mode is active at that
5096 * moment. So to make sure the plane gets truly disabled, disable
5097 * first the self-refresh mode. The self-refresh enable bit in turn
5098 * will be checked/applied by the HW only at the next frame start
5099 * event which is after the vblank start event, so we need to have a
5100 * wait-for-vblank between disabling the plane and the pipe.
5101 */
5102 if (old_crtc_state->base.active) {
2dfd178d 5103 intel_set_memory_cxsr(dev_priv, false);
2622a081 5104 dev_priv->wm.vlv.cxsr = false;
0f0f74bc 5105 intel_wait_for_vblank(dev_priv, crtc->pipe);
2622a081 5106 }
852eb00d 5107 }
92826fcd 5108
ed4a6a7c
MR
5109 /*
5110 * IVB workaround: must disable low power watermarks for at least
5111 * one frame before enabling scaling. LP watermarks can be re-enabled
5112 * when scaling is disabled.
5113 *
5114 * WaCxSRDisabledForSpriteScaling:ivb
5115 */
5116 if (pipe_config->disable_lp_wm) {
5117 ilk_disable_lp_wm(dev);
0f0f74bc 5118 intel_wait_for_vblank(dev_priv, crtc->pipe);
ed4a6a7c
MR
5119 }
5120
5121 /*
5122 * If we're doing a modeset, we're done. No need to do any pre-vblank
5123 * watermark programming here.
5124 */
5125 if (needs_modeset(&pipe_config->base))
5126 return;
5127
5128 /*
5129 * For platforms that support atomic watermarks, program the
5130 * 'intermediate' watermarks immediately. On pre-gen9 platforms, these
5131 * will be the intermediate values that are safe for both pre- and
5132 * post- vblank; when vblank happens, the 'active' values will be set
5133 * to the final 'target' values and we'll do this again to get the
5134 * optimal watermarks. For gen9+ platforms, the values we program here
5135 * will be the final target values which will get automatically latched
5136 * at vblank time; no further programming will be necessary.
5137 *
5138 * If a platform hasn't been transitioned to atomic watermarks yet,
5139 * we'll continue to update watermarks the old way, if flags tell
5140 * us to.
5141 */
5142 if (dev_priv->display.initial_watermarks != NULL)
ccf010fb
ML
5143 dev_priv->display.initial_watermarks(old_intel_state,
5144 pipe_config);
caed361d 5145 else if (pipe_config->update_wm_pre)
432081bc 5146 intel_update_watermarks(crtc);
ac21b225
ML
5147}
5148
d032ffa0 5149static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask)
87d4300a
ML
5150{
5151 struct drm_device *dev = crtc->dev;
5152 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
d032ffa0 5153 struct drm_plane *p;
87d4300a
ML
5154 int pipe = intel_crtc->pipe;
5155
7cac945f 5156 intel_crtc_dpms_overlay_disable(intel_crtc);
27321ae8 5157
d032ffa0
ML
5158 drm_for_each_plane_mask(p, dev, plane_mask)
5159 to_intel_plane(p)->disable_plane(p, crtc);
f98551ae 5160
f99d7069
DV
5161 /*
5162 * FIXME: Once we grow proper nuclear flip support out of this we need
5163 * to compute the mask of flip planes precisely. For the time being
5164 * consider this a flip to a NULL plane.
5165 */
5748b6a1 5166 intel_frontbuffer_flip(to_i915(dev), INTEL_FRONTBUFFER_ALL_MASK(pipe));
a5c4d7bc
VS
5167}
5168
fb1c98b1 5169static void intel_encoders_pre_pll_enable(struct drm_crtc *crtc,
fd6bbda9 5170 struct intel_crtc_state *crtc_state,
fb1c98b1
ML
5171 struct drm_atomic_state *old_state)
5172{
5173 struct drm_connector_state *old_conn_state;
5174 struct drm_connector *conn;
5175 int i;
5176
5177 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5178 struct drm_connector_state *conn_state = conn->state;
5179 struct intel_encoder *encoder =
5180 to_intel_encoder(conn_state->best_encoder);
5181
5182 if (conn_state->crtc != crtc)
5183 continue;
5184
5185 if (encoder->pre_pll_enable)
fd6bbda9 5186 encoder->pre_pll_enable(encoder, crtc_state, conn_state);
fb1c98b1
ML
5187 }
5188}
5189
5190static void intel_encoders_pre_enable(struct drm_crtc *crtc,
fd6bbda9 5191 struct intel_crtc_state *crtc_state,
fb1c98b1
ML
5192 struct drm_atomic_state *old_state)
5193{
5194 struct drm_connector_state *old_conn_state;
5195 struct drm_connector *conn;
5196 int i;
5197
5198 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5199 struct drm_connector_state *conn_state = conn->state;
5200 struct intel_encoder *encoder =
5201 to_intel_encoder(conn_state->best_encoder);
5202
5203 if (conn_state->crtc != crtc)
5204 continue;
5205
5206 if (encoder->pre_enable)
fd6bbda9 5207 encoder->pre_enable(encoder, crtc_state, conn_state);
fb1c98b1
ML
5208 }
5209}
5210
5211static void intel_encoders_enable(struct drm_crtc *crtc,
fd6bbda9 5212 struct intel_crtc_state *crtc_state,
fb1c98b1
ML
5213 struct drm_atomic_state *old_state)
5214{
5215 struct drm_connector_state *old_conn_state;
5216 struct drm_connector *conn;
5217 int i;
5218
5219 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5220 struct drm_connector_state *conn_state = conn->state;
5221 struct intel_encoder *encoder =
5222 to_intel_encoder(conn_state->best_encoder);
5223
5224 if (conn_state->crtc != crtc)
5225 continue;
5226
fd6bbda9 5227 encoder->enable(encoder, crtc_state, conn_state);
fb1c98b1
ML
5228 intel_opregion_notify_encoder(encoder, true);
5229 }
5230}
5231
5232static void intel_encoders_disable(struct drm_crtc *crtc,
fd6bbda9 5233 struct intel_crtc_state *old_crtc_state,
fb1c98b1
ML
5234 struct drm_atomic_state *old_state)
5235{
5236 struct drm_connector_state *old_conn_state;
5237 struct drm_connector *conn;
5238 int i;
5239
5240 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5241 struct intel_encoder *encoder =
5242 to_intel_encoder(old_conn_state->best_encoder);
5243
5244 if (old_conn_state->crtc != crtc)
5245 continue;
5246
5247 intel_opregion_notify_encoder(encoder, false);
fd6bbda9 5248 encoder->disable(encoder, old_crtc_state, old_conn_state);
fb1c98b1
ML
5249 }
5250}
5251
5252static void intel_encoders_post_disable(struct drm_crtc *crtc,
fd6bbda9 5253 struct intel_crtc_state *old_crtc_state,
fb1c98b1
ML
5254 struct drm_atomic_state *old_state)
5255{
5256 struct drm_connector_state *old_conn_state;
5257 struct drm_connector *conn;
5258 int i;
5259
5260 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5261 struct intel_encoder *encoder =
5262 to_intel_encoder(old_conn_state->best_encoder);
5263
5264 if (old_conn_state->crtc != crtc)
5265 continue;
5266
5267 if (encoder->post_disable)
fd6bbda9 5268 encoder->post_disable(encoder, old_crtc_state, old_conn_state);
fb1c98b1
ML
5269 }
5270}
5271
5272static void intel_encoders_post_pll_disable(struct drm_crtc *crtc,
fd6bbda9 5273 struct intel_crtc_state *old_crtc_state,
fb1c98b1
ML
5274 struct drm_atomic_state *old_state)
5275{
5276 struct drm_connector_state *old_conn_state;
5277 struct drm_connector *conn;
5278 int i;
5279
5280 for_each_connector_in_state(old_state, conn, old_conn_state, i) {
5281 struct intel_encoder *encoder =
5282 to_intel_encoder(old_conn_state->best_encoder);
5283
5284 if (old_conn_state->crtc != crtc)
5285 continue;
5286
5287 if (encoder->post_pll_disable)
fd6bbda9 5288 encoder->post_pll_disable(encoder, old_crtc_state, old_conn_state);
fb1c98b1
ML
5289 }
5290}
5291
4a806558
ML
5292static void ironlake_crtc_enable(struct intel_crtc_state *pipe_config,
5293 struct drm_atomic_state *old_state)
f67a559d 5294{
4a806558 5295 struct drm_crtc *crtc = pipe_config->base.crtc;
f67a559d 5296 struct drm_device *dev = crtc->dev;
fac5e23e 5297 struct drm_i915_private *dev_priv = to_i915(dev);
f67a559d
JB
5298 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5299 int pipe = intel_crtc->pipe;
ccf010fb
ML
5300 struct intel_atomic_state *old_intel_state =
5301 to_intel_atomic_state(old_state);
f67a559d 5302
53d9f4e9 5303 if (WARN_ON(intel_crtc->active))
f67a559d
JB
5304 return;
5305
b2c0593a
VS
5306 /*
5307 * Sometimes spurious CPU pipe underruns happen during FDI
5308 * training, at least with VGA+HDMI cloning. Suppress them.
5309 *
5310 * On ILK we get an occasional spurious CPU pipe underruns
5311 * between eDP port A enable and vdd enable. Also PCH port
5312 * enable seems to result in the occasional CPU pipe underrun.
5313 *
5314 * Spurious PCH underruns also occur during PCH enabling.
5315 */
5316 if (intel_crtc->config->has_pch_encoder || IS_GEN5(dev_priv))
5317 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
81b088ca
VS
5318 if (intel_crtc->config->has_pch_encoder)
5319 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
5320
6e3c9717 5321 if (intel_crtc->config->has_pch_encoder)
b14b1055
DV
5322 intel_prepare_shared_dpll(intel_crtc);
5323
37a5650b 5324 if (intel_crtc_has_dp_encoder(intel_crtc->config))
fe3cd48d 5325 intel_dp_set_m_n(intel_crtc, M1_N1);
29407aab
DV
5326
5327 intel_set_pipe_timings(intel_crtc);
bc58be60 5328 intel_set_pipe_src_size(intel_crtc);
29407aab 5329
6e3c9717 5330 if (intel_crtc->config->has_pch_encoder) {
29407aab 5331 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 5332 &intel_crtc->config->fdi_m_n, NULL);
29407aab
DV
5333 }
5334
5335 ironlake_set_pipeconf(crtc);
5336
f67a559d 5337 intel_crtc->active = true;
8664281b 5338
fd6bbda9 5339 intel_encoders_pre_enable(crtc, pipe_config, old_state);
f67a559d 5340
6e3c9717 5341 if (intel_crtc->config->has_pch_encoder) {
fff367c7
DV
5342 /* Note: FDI PLL enabling _must_ be done before we enable the
5343 * cpu pipes, hence this is separate from all the other fdi/pch
5344 * enabling. */
88cefb6c 5345 ironlake_fdi_pll_enable(intel_crtc);
46b6f814
DV
5346 } else {
5347 assert_fdi_tx_disabled(dev_priv, pipe);
5348 assert_fdi_rx_disabled(dev_priv, pipe);
5349 }
f67a559d 5350
b074cec8 5351 ironlake_pfit_enable(intel_crtc);
f67a559d 5352
9c54c0dd
JB
5353 /*
5354 * On ILK+ LUT must be loaded before the pipe is running but with
5355 * clocks enabled
5356 */
b95c5321 5357 intel_color_load_luts(&pipe_config->base);
9c54c0dd 5358
1d5bf5d9 5359 if (dev_priv->display.initial_watermarks != NULL)
ccf010fb 5360 dev_priv->display.initial_watermarks(old_intel_state, intel_crtc->config);
e1fdc473 5361 intel_enable_pipe(intel_crtc);
f67a559d 5362
6e3c9717 5363 if (intel_crtc->config->has_pch_encoder)
f67a559d 5364 ironlake_pch_enable(crtc);
c98e9dcf 5365
f9b61ff6
DV
5366 assert_vblank_disabled(crtc);
5367 drm_crtc_vblank_on(crtc);
5368
fd6bbda9 5369 intel_encoders_enable(crtc, pipe_config, old_state);
61b77ddd 5370
6e266956 5371 if (HAS_PCH_CPT(dev_priv))
a1520318 5372 cpt_verify_modeset(dev, intel_crtc->pipe);
37ca8d4c
VS
5373
5374 /* Must wait for vblank to avoid spurious PCH FIFO underruns */
5375 if (intel_crtc->config->has_pch_encoder)
0f0f74bc 5376 intel_wait_for_vblank(dev_priv, pipe);
b2c0593a 5377 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
37ca8d4c 5378 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
6be4a607
JB
5379}
5380
42db64ef
PZ
5381/* IPS only exists on ULT machines and is tied to pipe A. */
5382static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
5383{
50a0bc90 5384 return HAS_IPS(to_i915(crtc->base.dev)) && crtc->pipe == PIPE_A;
42db64ef
PZ
5385}
5386
4a806558
ML
5387static void haswell_crtc_enable(struct intel_crtc_state *pipe_config,
5388 struct drm_atomic_state *old_state)
4f771f10 5389{
4a806558 5390 struct drm_crtc *crtc = pipe_config->base.crtc;
6315b5d3 5391 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
4f771f10 5392 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
99d736a2 5393 int pipe = intel_crtc->pipe, hsw_workaround_pipe;
4d1de975 5394 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
ccf010fb
ML
5395 struct intel_atomic_state *old_intel_state =
5396 to_intel_atomic_state(old_state);
4f771f10 5397
53d9f4e9 5398 if (WARN_ON(intel_crtc->active))
4f771f10
PZ
5399 return;
5400
81b088ca
VS
5401 if (intel_crtc->config->has_pch_encoder)
5402 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5403 false);
5404
fd6bbda9 5405 intel_encoders_pre_pll_enable(crtc, pipe_config, old_state);
95a7a2ae 5406
8106ddbd 5407 if (intel_crtc->config->shared_dpll)
df8ad70c
DV
5408 intel_enable_shared_dpll(intel_crtc);
5409
37a5650b 5410 if (intel_crtc_has_dp_encoder(intel_crtc->config))
fe3cd48d 5411 intel_dp_set_m_n(intel_crtc, M1_N1);
229fca97 5412
d7edc4e5 5413 if (!transcoder_is_dsi(cpu_transcoder))
4d1de975
JN
5414 intel_set_pipe_timings(intel_crtc);
5415
bc58be60 5416 intel_set_pipe_src_size(intel_crtc);
229fca97 5417
4d1de975
JN
5418 if (cpu_transcoder != TRANSCODER_EDP &&
5419 !transcoder_is_dsi(cpu_transcoder)) {
5420 I915_WRITE(PIPE_MULT(cpu_transcoder),
6e3c9717 5421 intel_crtc->config->pixel_multiplier - 1);
ebb69c95
CT
5422 }
5423
6e3c9717 5424 if (intel_crtc->config->has_pch_encoder) {
229fca97 5425 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 5426 &intel_crtc->config->fdi_m_n, NULL);
229fca97
DV
5427 }
5428
d7edc4e5 5429 if (!transcoder_is_dsi(cpu_transcoder))
4d1de975
JN
5430 haswell_set_pipeconf(crtc);
5431
391bf048 5432 haswell_set_pipemisc(crtc);
229fca97 5433
b95c5321 5434 intel_color_set_csc(&pipe_config->base);
229fca97 5435
4f771f10 5436 intel_crtc->active = true;
8664281b 5437
6b698516
DV
5438 if (intel_crtc->config->has_pch_encoder)
5439 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5440 else
5441 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5442
fd6bbda9 5443 intel_encoders_pre_enable(crtc, pipe_config, old_state);
4f771f10 5444
d2d65408 5445 if (intel_crtc->config->has_pch_encoder)
4fe9467d 5446 dev_priv->display.fdi_link_train(crtc);
4fe9467d 5447
d7edc4e5 5448 if (!transcoder_is_dsi(cpu_transcoder))
7d4aefd0 5449 intel_ddi_enable_pipe_clock(intel_crtc);
4f771f10 5450
6315b5d3 5451 if (INTEL_GEN(dev_priv) >= 9)
e435d6e5 5452 skylake_pfit_enable(intel_crtc);
ff6d9f55 5453 else
1c132b44 5454 ironlake_pfit_enable(intel_crtc);
4f771f10
PZ
5455
5456 /*
5457 * On ILK+ LUT must be loaded before the pipe is running but with
5458 * clocks enabled
5459 */
b95c5321 5460 intel_color_load_luts(&pipe_config->base);
4f771f10 5461
1f544388 5462 intel_ddi_set_pipe_settings(crtc);
d7edc4e5 5463 if (!transcoder_is_dsi(cpu_transcoder))
7d4aefd0 5464 intel_ddi_enable_transcoder_func(crtc);
4f771f10 5465
1d5bf5d9 5466 if (dev_priv->display.initial_watermarks != NULL)
ccf010fb
ML
5467 dev_priv->display.initial_watermarks(old_intel_state,
5468 pipe_config);
1d5bf5d9 5469 else
432081bc 5470 intel_update_watermarks(intel_crtc);
4d1de975
JN
5471
5472 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
d7edc4e5 5473 if (!transcoder_is_dsi(cpu_transcoder))
4d1de975 5474 intel_enable_pipe(intel_crtc);
42db64ef 5475
6e3c9717 5476 if (intel_crtc->config->has_pch_encoder)
1507e5bd 5477 lpt_pch_enable(crtc);
4f771f10 5478
0037071d 5479 if (intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_DP_MST))
0e32b39c
DA
5480 intel_ddi_set_vc_payload_alloc(crtc, true);
5481
f9b61ff6
DV
5482 assert_vblank_disabled(crtc);
5483 drm_crtc_vblank_on(crtc);
5484
fd6bbda9 5485 intel_encoders_enable(crtc, pipe_config, old_state);
4f771f10 5486
6b698516 5487 if (intel_crtc->config->has_pch_encoder) {
0f0f74bc
VS
5488 intel_wait_for_vblank(dev_priv, pipe);
5489 intel_wait_for_vblank(dev_priv, pipe);
6b698516 5490 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
d2d65408
VS
5491 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5492 true);
6b698516 5493 }
d2d65408 5494
e4916946
PZ
5495 /* If we change the relative order between pipe/planes enabling, we need
5496 * to change the workaround. */
99d736a2 5497 hsw_workaround_pipe = pipe_config->hsw_workaround_pipe;
772c2a51 5498 if (IS_HASWELL(dev_priv) && hsw_workaround_pipe != INVALID_PIPE) {
0f0f74bc
VS
5499 intel_wait_for_vblank(dev_priv, hsw_workaround_pipe);
5500 intel_wait_for_vblank(dev_priv, hsw_workaround_pipe);
99d736a2 5501 }
4f771f10
PZ
5502}
5503
bfd16b2a 5504static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force)
3f8dce3a
DV
5505{
5506 struct drm_device *dev = crtc->base.dev;
fac5e23e 5507 struct drm_i915_private *dev_priv = to_i915(dev);
3f8dce3a
DV
5508 int pipe = crtc->pipe;
5509
5510 /* To avoid upsetting the power well on haswell only disable the pfit if
5511 * it's in use. The hw state code will make sure we get this right. */
bfd16b2a 5512 if (force || crtc->config->pch_pfit.enabled) {
3f8dce3a
DV
5513 I915_WRITE(PF_CTL(pipe), 0);
5514 I915_WRITE(PF_WIN_POS(pipe), 0);
5515 I915_WRITE(PF_WIN_SZ(pipe), 0);
5516 }
5517}
5518
4a806558
ML
5519static void ironlake_crtc_disable(struct intel_crtc_state *old_crtc_state,
5520 struct drm_atomic_state *old_state)
6be4a607 5521{
4a806558 5522 struct drm_crtc *crtc = old_crtc_state->base.crtc;
6be4a607 5523 struct drm_device *dev = crtc->dev;
fac5e23e 5524 struct drm_i915_private *dev_priv = to_i915(dev);
6be4a607
JB
5525 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5526 int pipe = intel_crtc->pipe;
b52eb4dc 5527
b2c0593a
VS
5528 /*
5529 * Sometimes spurious CPU pipe underruns happen when the
5530 * pipe is already disabled, but FDI RX/TX is still enabled.
5531 * Happens at least with VGA+HDMI cloning. Suppress them.
5532 */
5533 if (intel_crtc->config->has_pch_encoder) {
5534 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
37ca8d4c 5535 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
b2c0593a 5536 }
37ca8d4c 5537
fd6bbda9 5538 intel_encoders_disable(crtc, old_crtc_state, old_state);
ea9d758d 5539
f9b61ff6
DV
5540 drm_crtc_vblank_off(crtc);
5541 assert_vblank_disabled(crtc);
5542
575f7ab7 5543 intel_disable_pipe(intel_crtc);
32f9d658 5544
bfd16b2a 5545 ironlake_pfit_disable(intel_crtc, false);
2c07245f 5546
b2c0593a 5547 if (intel_crtc->config->has_pch_encoder)
5a74f70a
VS
5548 ironlake_fdi_disable(crtc);
5549
fd6bbda9 5550 intel_encoders_post_disable(crtc, old_crtc_state, old_state);
2c07245f 5551
6e3c9717 5552 if (intel_crtc->config->has_pch_encoder) {
d925c59a 5553 ironlake_disable_pch_transcoder(dev_priv, pipe);
6be4a607 5554
6e266956 5555 if (HAS_PCH_CPT(dev_priv)) {
f0f59a00
VS
5556 i915_reg_t reg;
5557 u32 temp;
5558
d925c59a
DV
5559 /* disable TRANS_DP_CTL */
5560 reg = TRANS_DP_CTL(pipe);
5561 temp = I915_READ(reg);
5562 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
5563 TRANS_DP_PORT_SEL_MASK);
5564 temp |= TRANS_DP_PORT_SEL_NONE;
5565 I915_WRITE(reg, temp);
5566
5567 /* disable DPLL_SEL */
5568 temp = I915_READ(PCH_DPLL_SEL);
11887397 5569 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
d925c59a 5570 I915_WRITE(PCH_DPLL_SEL, temp);
9db4a9c7 5571 }
e3421a18 5572
d925c59a
DV
5573 ironlake_fdi_pll_disable(intel_crtc);
5574 }
81b088ca 5575
b2c0593a 5576 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
81b088ca 5577 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
6be4a607 5578}
1b3c7a47 5579
4a806558
ML
5580static void haswell_crtc_disable(struct intel_crtc_state *old_crtc_state,
5581 struct drm_atomic_state *old_state)
ee7b9f93 5582{
4a806558 5583 struct drm_crtc *crtc = old_crtc_state->base.crtc;
6315b5d3 5584 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
ee7b9f93 5585 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 5586 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
ee7b9f93 5587
d2d65408
VS
5588 if (intel_crtc->config->has_pch_encoder)
5589 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5590 false);
5591
fd6bbda9 5592 intel_encoders_disable(crtc, old_crtc_state, old_state);
4f771f10 5593
f9b61ff6
DV
5594 drm_crtc_vblank_off(crtc);
5595 assert_vblank_disabled(crtc);
5596
4d1de975 5597 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
d7edc4e5 5598 if (!transcoder_is_dsi(cpu_transcoder))
4d1de975 5599 intel_disable_pipe(intel_crtc);
4f771f10 5600
0037071d 5601 if (intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_DP_MST))
a4bf214f
VS
5602 intel_ddi_set_vc_payload_alloc(crtc, false);
5603
d7edc4e5 5604 if (!transcoder_is_dsi(cpu_transcoder))
7d4aefd0 5605 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
4f771f10 5606
6315b5d3 5607 if (INTEL_GEN(dev_priv) >= 9)
e435d6e5 5608 skylake_scaler_disable(intel_crtc);
ff6d9f55 5609 else
bfd16b2a 5610 ironlake_pfit_disable(intel_crtc, false);
4f771f10 5611
d7edc4e5 5612 if (!transcoder_is_dsi(cpu_transcoder))
7d4aefd0 5613 intel_ddi_disable_pipe_clock(intel_crtc);
4f771f10 5614
fd6bbda9 5615 intel_encoders_post_disable(crtc, old_crtc_state, old_state);
81b088ca 5616
b7076546 5617 if (old_crtc_state->has_pch_encoder)
81b088ca
VS
5618 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5619 true);
4f771f10
PZ
5620}
5621
2dd24552
JB
5622static void i9xx_pfit_enable(struct intel_crtc *crtc)
5623{
5624 struct drm_device *dev = crtc->base.dev;
fac5e23e 5625 struct drm_i915_private *dev_priv = to_i915(dev);
6e3c9717 5626 struct intel_crtc_state *pipe_config = crtc->config;
2dd24552 5627
681a8504 5628 if (!pipe_config->gmch_pfit.control)
2dd24552
JB
5629 return;
5630
2dd24552 5631 /*
c0b03411
DV
5632 * The panel fitter should only be adjusted whilst the pipe is disabled,
5633 * according to register description and PRM.
2dd24552 5634 */
c0b03411
DV
5635 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5636 assert_pipe_disabled(dev_priv, crtc->pipe);
2dd24552 5637
b074cec8
JB
5638 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5639 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
5a80c45c
DV
5640
5641 /* Border color in case we don't scale up to the full screen. Black by
5642 * default, change to something else for debugging. */
5643 I915_WRITE(BCLRPAT(crtc->pipe), 0);
2dd24552
JB
5644}
5645
d05410f9
DA
5646static enum intel_display_power_domain port_to_power_domain(enum port port)
5647{
5648 switch (port) {
5649 case PORT_A:
6331a704 5650 return POWER_DOMAIN_PORT_DDI_A_LANES;
d05410f9 5651 case PORT_B:
6331a704 5652 return POWER_DOMAIN_PORT_DDI_B_LANES;
d05410f9 5653 case PORT_C:
6331a704 5654 return POWER_DOMAIN_PORT_DDI_C_LANES;
d05410f9 5655 case PORT_D:
6331a704 5656 return POWER_DOMAIN_PORT_DDI_D_LANES;
d8e19f99 5657 case PORT_E:
6331a704 5658 return POWER_DOMAIN_PORT_DDI_E_LANES;
d05410f9 5659 default:
b9fec167 5660 MISSING_CASE(port);
d05410f9
DA
5661 return POWER_DOMAIN_PORT_OTHER;
5662 }
5663}
5664
25f78f58
VS
5665static enum intel_display_power_domain port_to_aux_power_domain(enum port port)
5666{
5667 switch (port) {
5668 case PORT_A:
5669 return POWER_DOMAIN_AUX_A;
5670 case PORT_B:
5671 return POWER_DOMAIN_AUX_B;
5672 case PORT_C:
5673 return POWER_DOMAIN_AUX_C;
5674 case PORT_D:
5675 return POWER_DOMAIN_AUX_D;
5676 case PORT_E:
5677 /* FIXME: Check VBT for actual wiring of PORT E */
5678 return POWER_DOMAIN_AUX_D;
5679 default:
b9fec167 5680 MISSING_CASE(port);
25f78f58
VS
5681 return POWER_DOMAIN_AUX_A;
5682 }
5683}
5684
319be8ae
ID
5685enum intel_display_power_domain
5686intel_display_port_power_domain(struct intel_encoder *intel_encoder)
5687{
4f8036a2 5688 struct drm_i915_private *dev_priv = to_i915(intel_encoder->base.dev);
319be8ae
ID
5689 struct intel_digital_port *intel_dig_port;
5690
5691 switch (intel_encoder->type) {
5692 case INTEL_OUTPUT_UNKNOWN:
5693 /* Only DDI platforms should ever use this output type */
4f8036a2 5694 WARN_ON_ONCE(!HAS_DDI(dev_priv));
cca0502b 5695 case INTEL_OUTPUT_DP:
319be8ae
ID
5696 case INTEL_OUTPUT_HDMI:
5697 case INTEL_OUTPUT_EDP:
5698 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
d05410f9 5699 return port_to_power_domain(intel_dig_port->port);
0e32b39c
DA
5700 case INTEL_OUTPUT_DP_MST:
5701 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5702 return port_to_power_domain(intel_dig_port->port);
319be8ae
ID
5703 case INTEL_OUTPUT_ANALOG:
5704 return POWER_DOMAIN_PORT_CRT;
5705 case INTEL_OUTPUT_DSI:
5706 return POWER_DOMAIN_PORT_DSI;
5707 default:
5708 return POWER_DOMAIN_PORT_OTHER;
5709 }
5710}
5711
25f78f58
VS
5712enum intel_display_power_domain
5713intel_display_port_aux_power_domain(struct intel_encoder *intel_encoder)
5714{
4f8036a2 5715 struct drm_i915_private *dev_priv = to_i915(intel_encoder->base.dev);
25f78f58
VS
5716 struct intel_digital_port *intel_dig_port;
5717
5718 switch (intel_encoder->type) {
5719 case INTEL_OUTPUT_UNKNOWN:
651174a4
ID
5720 case INTEL_OUTPUT_HDMI:
5721 /*
5722 * Only DDI platforms should ever use these output types.
5723 * We can get here after the HDMI detect code has already set
5724 * the type of the shared encoder. Since we can't be sure
5725 * what's the status of the given connectors, play safe and
5726 * run the DP detection too.
5727 */
4f8036a2 5728 WARN_ON_ONCE(!HAS_DDI(dev_priv));
cca0502b 5729 case INTEL_OUTPUT_DP:
25f78f58
VS
5730 case INTEL_OUTPUT_EDP:
5731 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
5732 return port_to_aux_power_domain(intel_dig_port->port);
5733 case INTEL_OUTPUT_DP_MST:
5734 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5735 return port_to_aux_power_domain(intel_dig_port->port);
5736 default:
b9fec167 5737 MISSING_CASE(intel_encoder->type);
25f78f58
VS
5738 return POWER_DOMAIN_AUX_A;
5739 }
5740}
5741
74bff5f9
ML
5742static unsigned long get_crtc_power_domains(struct drm_crtc *crtc,
5743 struct intel_crtc_state *crtc_state)
77d22dca 5744{
319be8ae 5745 struct drm_device *dev = crtc->dev;
74bff5f9 5746 struct drm_encoder *encoder;
319be8ae
ID
5747 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5748 enum pipe pipe = intel_crtc->pipe;
77d22dca 5749 unsigned long mask;
74bff5f9 5750 enum transcoder transcoder = crtc_state->cpu_transcoder;
77d22dca 5751
74bff5f9 5752 if (!crtc_state->base.active)
292b990e
ML
5753 return 0;
5754
77d22dca
ID
5755 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5756 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
74bff5f9
ML
5757 if (crtc_state->pch_pfit.enabled ||
5758 crtc_state->pch_pfit.force_thru)
77d22dca
ID
5759 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5760
74bff5f9
ML
5761 drm_for_each_encoder_mask(encoder, dev, crtc_state->base.encoder_mask) {
5762 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
5763
319be8ae 5764 mask |= BIT(intel_display_port_power_domain(intel_encoder));
74bff5f9 5765 }
319be8ae 5766
15e7ec29
ML
5767 if (crtc_state->shared_dpll)
5768 mask |= BIT(POWER_DOMAIN_PLLS);
5769
77d22dca
ID
5770 return mask;
5771}
5772
74bff5f9
ML
5773static unsigned long
5774modeset_get_crtc_power_domains(struct drm_crtc *crtc,
5775 struct intel_crtc_state *crtc_state)
77d22dca 5776{
fac5e23e 5777 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
292b990e
ML
5778 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5779 enum intel_display_power_domain domain;
5a21b665 5780 unsigned long domains, new_domains, old_domains;
77d22dca 5781
292b990e 5782 old_domains = intel_crtc->enabled_power_domains;
74bff5f9
ML
5783 intel_crtc->enabled_power_domains = new_domains =
5784 get_crtc_power_domains(crtc, crtc_state);
77d22dca 5785
5a21b665 5786 domains = new_domains & ~old_domains;
292b990e
ML
5787
5788 for_each_power_domain(domain, domains)
5789 intel_display_power_get(dev_priv, domain);
5790
5a21b665 5791 return old_domains & ~new_domains;
292b990e
ML
5792}
5793
5794static void modeset_put_power_domains(struct drm_i915_private *dev_priv,
5795 unsigned long domains)
5796{
5797 enum intel_display_power_domain domain;
5798
5799 for_each_power_domain(domain, domains)
5800 intel_display_power_put(dev_priv, domain);
5801}
77d22dca 5802
adafdc6f
MK
5803static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv)
5804{
5805 int max_cdclk_freq = dev_priv->max_cdclk_freq;
5806
5807 if (INTEL_INFO(dev_priv)->gen >= 9 ||
5808 IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
5809 return max_cdclk_freq;
5810 else if (IS_CHERRYVIEW(dev_priv))
5811 return max_cdclk_freq*95/100;
5812 else if (INTEL_INFO(dev_priv)->gen < 4)
5813 return 2*max_cdclk_freq*90/100;
5814 else
5815 return max_cdclk_freq*90/100;
5816}
5817
b2045352
VS
5818static int skl_calc_cdclk(int max_pixclk, int vco);
5819
4c75b940 5820static void intel_update_max_cdclk(struct drm_i915_private *dev_priv)
560a7ae4 5821{
0853723b 5822 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
560a7ae4 5823 u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK;
b2045352
VS
5824 int max_cdclk, vco;
5825
5826 vco = dev_priv->skl_preferred_vco_freq;
63911d72 5827 WARN_ON(vco != 8100000 && vco != 8640000);
560a7ae4 5828
b2045352
VS
5829 /*
5830 * Use the lower (vco 8640) cdclk values as a
5831 * first guess. skl_calc_cdclk() will correct it
5832 * if the preferred vco is 8100 instead.
5833 */
560a7ae4 5834 if (limit == SKL_DFSM_CDCLK_LIMIT_675)
487ed2e4 5835 max_cdclk = 617143;
560a7ae4 5836 else if (limit == SKL_DFSM_CDCLK_LIMIT_540)
b2045352 5837 max_cdclk = 540000;
560a7ae4 5838 else if (limit == SKL_DFSM_CDCLK_LIMIT_450)
b2045352 5839 max_cdclk = 432000;
560a7ae4 5840 else
487ed2e4 5841 max_cdclk = 308571;
b2045352
VS
5842
5843 dev_priv->max_cdclk_freq = skl_calc_cdclk(max_cdclk, vco);
e2d214ae 5844 } else if (IS_BROXTON(dev_priv)) {
281c114f 5845 dev_priv->max_cdclk_freq = 624000;
8652744b 5846 } else if (IS_BROADWELL(dev_priv)) {
560a7ae4
DL
5847 /*
5848 * FIXME with extra cooling we can allow
5849 * 540 MHz for ULX and 675 Mhz for ULT.
5850 * How can we know if extra cooling is
5851 * available? PCI ID, VTB, something else?
5852 */
5853 if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
5854 dev_priv->max_cdclk_freq = 450000;
50a0bc90 5855 else if (IS_BDW_ULX(dev_priv))
560a7ae4 5856 dev_priv->max_cdclk_freq = 450000;
50a0bc90 5857 else if (IS_BDW_ULT(dev_priv))
560a7ae4
DL
5858 dev_priv->max_cdclk_freq = 540000;
5859 else
5860 dev_priv->max_cdclk_freq = 675000;
920a14b2 5861 } else if (IS_CHERRYVIEW(dev_priv)) {
0904deaf 5862 dev_priv->max_cdclk_freq = 320000;
11a914c2 5863 } else if (IS_VALLEYVIEW(dev_priv)) {
560a7ae4
DL
5864 dev_priv->max_cdclk_freq = 400000;
5865 } else {
5866 /* otherwise assume cdclk is fixed */
5867 dev_priv->max_cdclk_freq = dev_priv->cdclk_freq;
5868 }
5869
adafdc6f
MK
5870 dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv);
5871
560a7ae4
DL
5872 DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n",
5873 dev_priv->max_cdclk_freq);
adafdc6f
MK
5874
5875 DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n",
5876 dev_priv->max_dotclk_freq);
560a7ae4
DL
5877}
5878
4c75b940 5879static void intel_update_cdclk(struct drm_i915_private *dev_priv)
560a7ae4 5880{
1353c4fb 5881 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev_priv);
2f2a121a 5882
83d7c81f 5883 if (INTEL_GEN(dev_priv) >= 9)
709e05c3
VS
5884 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz, VCO: %d kHz, ref: %d kHz\n",
5885 dev_priv->cdclk_freq, dev_priv->cdclk_pll.vco,
5886 dev_priv->cdclk_pll.ref);
2f2a121a
VS
5887 else
5888 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
5889 dev_priv->cdclk_freq);
560a7ae4
DL
5890
5891 /*
b5d99ff9
VS
5892 * 9:0 CMBUS [sic] CDCLK frequency (cdfreq):
5893 * Programmng [sic] note: bit[9:2] should be programmed to the number
5894 * of cdclk that generates 4MHz reference clock freq which is used to
5895 * generate GMBus clock. This will vary with the cdclk freq.
560a7ae4 5896 */
b5d99ff9 5897 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
560a7ae4 5898 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
560a7ae4
DL
5899}
5900
92891e45
VS
5901/* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5902static int skl_cdclk_decimal(int cdclk)
5903{
5904 return DIV_ROUND_CLOSEST(cdclk - 1000, 500);
5905}
5906
5f199dfa
VS
5907static int bxt_de_pll_vco(struct drm_i915_private *dev_priv, int cdclk)
5908{
5909 int ratio;
5910
5911 if (cdclk == dev_priv->cdclk_pll.ref)
5912 return 0;
5913
5914 switch (cdclk) {
5915 default:
5916 MISSING_CASE(cdclk);
5917 case 144000:
5918 case 288000:
5919 case 384000:
5920 case 576000:
5921 ratio = 60;
5922 break;
5923 case 624000:
5924 ratio = 65;
5925 break;
5926 }
5927
5928 return dev_priv->cdclk_pll.ref * ratio;
5929}
5930
2b73001e
VS
5931static void bxt_de_pll_disable(struct drm_i915_private *dev_priv)
5932{
5933 I915_WRITE(BXT_DE_PLL_ENABLE, 0);
5934
5935 /* Timeout 200us */
95cac283
CW
5936 if (intel_wait_for_register(dev_priv,
5937 BXT_DE_PLL_ENABLE, BXT_DE_PLL_LOCK, 0,
5938 1))
2b73001e 5939 DRM_ERROR("timeout waiting for DE PLL unlock\n");
83d7c81f
VS
5940
5941 dev_priv->cdclk_pll.vco = 0;
2b73001e
VS
5942}
5943
5f199dfa 5944static void bxt_de_pll_enable(struct drm_i915_private *dev_priv, int vco)
2b73001e 5945{
5f199dfa 5946 int ratio = DIV_ROUND_CLOSEST(vco, dev_priv->cdclk_pll.ref);
2b73001e
VS
5947 u32 val;
5948
5949 val = I915_READ(BXT_DE_PLL_CTL);
5950 val &= ~BXT_DE_PLL_RATIO_MASK;
5f199dfa 5951 val |= BXT_DE_PLL_RATIO(ratio);
2b73001e
VS
5952 I915_WRITE(BXT_DE_PLL_CTL, val);
5953
5954 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5955
5956 /* Timeout 200us */
e084e1b9
CW
5957 if (intel_wait_for_register(dev_priv,
5958 BXT_DE_PLL_ENABLE,
5959 BXT_DE_PLL_LOCK,
5960 BXT_DE_PLL_LOCK,
5961 1))
2b73001e 5962 DRM_ERROR("timeout waiting for DE PLL lock\n");
83d7c81f 5963
5f199dfa 5964 dev_priv->cdclk_pll.vco = vco;
2b73001e
VS
5965}
5966
324513c0 5967static void bxt_set_cdclk(struct drm_i915_private *dev_priv, int cdclk)
f8437dd1 5968{
5f199dfa
VS
5969 u32 val, divider;
5970 int vco, ret;
f8437dd1 5971
5f199dfa
VS
5972 vco = bxt_de_pll_vco(dev_priv, cdclk);
5973
5974 DRM_DEBUG_DRIVER("Changing CDCLK to %d kHz (VCO %d kHz)\n", cdclk, vco);
5975
5976 /* cdclk = vco / 2 / div{1,1.5,2,4} */
5977 switch (DIV_ROUND_CLOSEST(vco, cdclk)) {
5978 case 8:
f8437dd1 5979 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
f8437dd1 5980 break;
5f199dfa 5981 case 4:
f8437dd1 5982 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
f8437dd1 5983 break;
5f199dfa 5984 case 3:
f8437dd1 5985 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
f8437dd1 5986 break;
5f199dfa 5987 case 2:
f8437dd1 5988 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
f8437dd1
VK
5989 break;
5990 default:
5f199dfa
VS
5991 WARN_ON(cdclk != dev_priv->cdclk_pll.ref);
5992 WARN_ON(vco != 0);
f8437dd1 5993
5f199dfa
VS
5994 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5995 break;
f8437dd1
VK
5996 }
5997
f8437dd1 5998 /* Inform power controller of upcoming frequency change */
5f199dfa 5999 mutex_lock(&dev_priv->rps.hw_lock);
f8437dd1
VK
6000 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
6001 0x80000000);
6002 mutex_unlock(&dev_priv->rps.hw_lock);
6003
6004 if (ret) {
6005 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
9ef56154 6006 ret, cdclk);
f8437dd1
VK
6007 return;
6008 }
6009
5f199dfa
VS
6010 if (dev_priv->cdclk_pll.vco != 0 &&
6011 dev_priv->cdclk_pll.vco != vco)
2b73001e 6012 bxt_de_pll_disable(dev_priv);
f8437dd1 6013
5f199dfa
VS
6014 if (dev_priv->cdclk_pll.vco != vco)
6015 bxt_de_pll_enable(dev_priv, vco);
f8437dd1 6016
5f199dfa
VS
6017 val = divider | skl_cdclk_decimal(cdclk);
6018 /*
6019 * FIXME if only the cd2x divider needs changing, it could be done
6020 * without shutting off the pipe (if only one pipe is active).
6021 */
6022 val |= BXT_CDCLK_CD2X_PIPE_NONE;
6023 /*
6024 * Disable SSA Precharge when CD clock frequency < 500 MHz,
6025 * enable otherwise.
6026 */
6027 if (cdclk >= 500000)
6028 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
6029 I915_WRITE(CDCLK_CTL, val);
f8437dd1
VK
6030
6031 mutex_lock(&dev_priv->rps.hw_lock);
6032 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
9ef56154 6033 DIV_ROUND_UP(cdclk, 25000));
f8437dd1
VK
6034 mutex_unlock(&dev_priv->rps.hw_lock);
6035
6036 if (ret) {
6037 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
9ef56154 6038 ret, cdclk);
f8437dd1
VK
6039 return;
6040 }
6041
4c75b940 6042 intel_update_cdclk(dev_priv);
f8437dd1
VK
6043}
6044
d66a2194 6045static void bxt_sanitize_cdclk(struct drm_i915_private *dev_priv)
f8437dd1 6046{
d66a2194
ID
6047 u32 cdctl, expected;
6048
4c75b940 6049 intel_update_cdclk(dev_priv);
f8437dd1 6050
d66a2194
ID
6051 if (dev_priv->cdclk_pll.vco == 0 ||
6052 dev_priv->cdclk_freq == dev_priv->cdclk_pll.ref)
6053 goto sanitize;
6054
6055 /* DPLL okay; verify the cdclock
6056 *
6057 * Some BIOS versions leave an incorrect decimal frequency value and
6058 * set reserved MBZ bits in CDCLK_CTL at least during exiting from S4,
6059 * so sanitize this register.
6060 */
6061 cdctl = I915_READ(CDCLK_CTL);
6062 /*
6063 * Let's ignore the pipe field, since BIOS could have configured the
6064 * dividers both synching to an active pipe, or asynchronously
6065 * (PIPE_NONE).
6066 */
6067 cdctl &= ~BXT_CDCLK_CD2X_PIPE_NONE;
6068
6069 expected = (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) |
6070 skl_cdclk_decimal(dev_priv->cdclk_freq);
6071 /*
6072 * Disable SSA Precharge when CD clock frequency < 500 MHz,
6073 * enable otherwise.
6074 */
6075 if (dev_priv->cdclk_freq >= 500000)
6076 expected |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
6077
6078 if (cdctl == expected)
6079 /* All well; nothing to sanitize */
6080 return;
6081
6082sanitize:
6083 DRM_DEBUG_KMS("Sanitizing cdclk programmed by pre-os\n");
6084
6085 /* force cdclk programming */
6086 dev_priv->cdclk_freq = 0;
6087
6088 /* force full PLL disable + enable */
6089 dev_priv->cdclk_pll.vco = -1;
6090}
6091
324513c0 6092void bxt_init_cdclk(struct drm_i915_private *dev_priv)
d66a2194
ID
6093{
6094 bxt_sanitize_cdclk(dev_priv);
6095
6096 if (dev_priv->cdclk_freq != 0 && dev_priv->cdclk_pll.vco != 0)
089c6fd5 6097 return;
c2e001ef 6098
f8437dd1
VK
6099 /*
6100 * FIXME:
6101 * - The initial CDCLK needs to be read from VBT.
6102 * Need to make this change after VBT has changes for BXT.
f8437dd1 6103 */
324513c0 6104 bxt_set_cdclk(dev_priv, bxt_calc_cdclk(0));
f8437dd1
VK
6105}
6106
324513c0 6107void bxt_uninit_cdclk(struct drm_i915_private *dev_priv)
f8437dd1 6108{
324513c0 6109 bxt_set_cdclk(dev_priv, dev_priv->cdclk_pll.ref);
f8437dd1
VK
6110}
6111
a8ca4934
VS
6112static int skl_calc_cdclk(int max_pixclk, int vco)
6113{
63911d72 6114 if (vco == 8640000) {
a8ca4934 6115 if (max_pixclk > 540000)
487ed2e4 6116 return 617143;
a8ca4934
VS
6117 else if (max_pixclk > 432000)
6118 return 540000;
487ed2e4 6119 else if (max_pixclk > 308571)
a8ca4934
VS
6120 return 432000;
6121 else
487ed2e4 6122 return 308571;
a8ca4934 6123 } else {
a8ca4934
VS
6124 if (max_pixclk > 540000)
6125 return 675000;
6126 else if (max_pixclk > 450000)
6127 return 540000;
6128 else if (max_pixclk > 337500)
6129 return 450000;
6130 else
6131 return 337500;
6132 }
6133}
6134
ea61791e
VS
6135static void
6136skl_dpll0_update(struct drm_i915_private *dev_priv)
5d96d8af 6137{
ea61791e 6138 u32 val;
5d96d8af 6139
709e05c3 6140 dev_priv->cdclk_pll.ref = 24000;
1c3f7700 6141 dev_priv->cdclk_pll.vco = 0;
709e05c3 6142
ea61791e 6143 val = I915_READ(LCPLL1_CTL);
1c3f7700 6144 if ((val & LCPLL_PLL_ENABLE) == 0)
ea61791e 6145 return;
5d96d8af 6146
1c3f7700
ID
6147 if (WARN_ON((val & LCPLL_PLL_LOCK) == 0))
6148 return;
9f7eb31a 6149
ea61791e
VS
6150 val = I915_READ(DPLL_CTRL1);
6151
1c3f7700
ID
6152 if (WARN_ON((val & (DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) |
6153 DPLL_CTRL1_SSC(SKL_DPLL0) |
6154 DPLL_CTRL1_OVERRIDE(SKL_DPLL0))) !=
6155 DPLL_CTRL1_OVERRIDE(SKL_DPLL0)))
6156 return;
9f7eb31a 6157
ea61791e
VS
6158 switch (val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) {
6159 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810, SKL_DPLL0):
6160 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1350, SKL_DPLL0):
6161 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1620, SKL_DPLL0):
6162 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2700, SKL_DPLL0):
63911d72 6163 dev_priv->cdclk_pll.vco = 8100000;
ea61791e
VS
6164 break;
6165 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080, SKL_DPLL0):
6166 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2160, SKL_DPLL0):
63911d72 6167 dev_priv->cdclk_pll.vco = 8640000;
ea61791e
VS
6168 break;
6169 default:
6170 MISSING_CASE(val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
ea61791e
VS
6171 break;
6172 }
5d96d8af
DL
6173}
6174
b2045352
VS
6175void skl_set_preferred_cdclk_vco(struct drm_i915_private *dev_priv, int vco)
6176{
6177 bool changed = dev_priv->skl_preferred_vco_freq != vco;
6178
6179 dev_priv->skl_preferred_vco_freq = vco;
6180
6181 if (changed)
4c75b940 6182 intel_update_max_cdclk(dev_priv);
b2045352
VS
6183}
6184
5d96d8af 6185static void
3861fc60 6186skl_dpll0_enable(struct drm_i915_private *dev_priv, int vco)
5d96d8af 6187{
a8ca4934 6188 int min_cdclk = skl_calc_cdclk(0, vco);
5d96d8af
DL
6189 u32 val;
6190
63911d72 6191 WARN_ON(vco != 8100000 && vco != 8640000);
b2045352 6192
5d96d8af 6193 /* select the minimum CDCLK before enabling DPLL 0 */
9ef56154 6194 val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_cdclk);
5d96d8af
DL
6195 I915_WRITE(CDCLK_CTL, val);
6196 POSTING_READ(CDCLK_CTL);
6197
6198 /*
6199 * We always enable DPLL0 with the lowest link rate possible, but still
6200 * taking into account the VCO required to operate the eDP panel at the
6201 * desired frequency. The usual DP link rates operate with a VCO of
6202 * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640.
6203 * The modeset code is responsible for the selection of the exact link
6204 * rate later on, with the constraint of choosing a frequency that
a8ca4934 6205 * works with vco.
5d96d8af
DL
6206 */
6207 val = I915_READ(DPLL_CTRL1);
6208
6209 val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) |
6210 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
6211 val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
63911d72 6212 if (vco == 8640000)
5d96d8af
DL
6213 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
6214 SKL_DPLL0);
6215 else
6216 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
6217 SKL_DPLL0);
6218
6219 I915_WRITE(DPLL_CTRL1, val);
6220 POSTING_READ(DPLL_CTRL1);
6221
6222 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE);
6223
e24ca054
CW
6224 if (intel_wait_for_register(dev_priv,
6225 LCPLL1_CTL, LCPLL_PLL_LOCK, LCPLL_PLL_LOCK,
6226 5))
5d96d8af 6227 DRM_ERROR("DPLL0 not locked\n");
1cd593e0 6228
63911d72 6229 dev_priv->cdclk_pll.vco = vco;
b2045352
VS
6230
6231 /* We'll want to keep using the current vco from now on. */
6232 skl_set_preferred_cdclk_vco(dev_priv, vco);
5d96d8af
DL
6233}
6234
430e05de
VS
6235static void
6236skl_dpll0_disable(struct drm_i915_private *dev_priv)
6237{
6238 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE);
8ad32a05
CW
6239 if (intel_wait_for_register(dev_priv,
6240 LCPLL1_CTL, LCPLL_PLL_LOCK, 0,
6241 1))
430e05de 6242 DRM_ERROR("Couldn't disable DPLL0\n");
1cd593e0 6243
63911d72 6244 dev_priv->cdclk_pll.vco = 0;
430e05de
VS
6245}
6246
5d96d8af
DL
6247static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv)
6248{
6249 int ret;
6250 u32 val;
6251
6252 /* inform PCU we want to change CDCLK */
6253 val = SKL_CDCLK_PREPARE_FOR_CHANGE;
6254 mutex_lock(&dev_priv->rps.hw_lock);
6255 ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val);
6256 mutex_unlock(&dev_priv->rps.hw_lock);
6257
6258 return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE);
6259}
6260
6261static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv)
6262{
848496e5 6263 return _wait_for(skl_cdclk_pcu_ready(dev_priv), 3000, 10) == 0;
5d96d8af
DL
6264}
6265
1cd593e0 6266static void skl_set_cdclk(struct drm_i915_private *dev_priv, int cdclk, int vco)
5d96d8af
DL
6267{
6268 u32 freq_select, pcu_ack;
6269
1cd593e0
VS
6270 WARN_ON((cdclk == 24000) != (vco == 0));
6271
63911d72 6272 DRM_DEBUG_DRIVER("Changing CDCLK to %d kHz (VCO %d kHz)\n", cdclk, vco);
5d96d8af
DL
6273
6274 if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) {
6275 DRM_ERROR("failed to inform PCU about cdclk change\n");
6276 return;
6277 }
6278
6279 /* set CDCLK_CTL */
9ef56154 6280 switch (cdclk) {
5d96d8af
DL
6281 case 450000:
6282 case 432000:
6283 freq_select = CDCLK_FREQ_450_432;
6284 pcu_ack = 1;
6285 break;
6286 case 540000:
6287 freq_select = CDCLK_FREQ_540;
6288 pcu_ack = 2;
6289 break;
487ed2e4 6290 case 308571:
5d96d8af
DL
6291 case 337500:
6292 default:
6293 freq_select = CDCLK_FREQ_337_308;
6294 pcu_ack = 0;
6295 break;
487ed2e4 6296 case 617143:
5d96d8af
DL
6297 case 675000:
6298 freq_select = CDCLK_FREQ_675_617;
6299 pcu_ack = 3;
6300 break;
6301 }
6302
63911d72
VS
6303 if (dev_priv->cdclk_pll.vco != 0 &&
6304 dev_priv->cdclk_pll.vco != vco)
1cd593e0
VS
6305 skl_dpll0_disable(dev_priv);
6306
63911d72 6307 if (dev_priv->cdclk_pll.vco != vco)
1cd593e0
VS
6308 skl_dpll0_enable(dev_priv, vco);
6309
9ef56154 6310 I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(cdclk));
5d96d8af
DL
6311 POSTING_READ(CDCLK_CTL);
6312
6313 /* inform PCU of the change */
6314 mutex_lock(&dev_priv->rps.hw_lock);
6315 sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack);
6316 mutex_unlock(&dev_priv->rps.hw_lock);
560a7ae4 6317
4c75b940 6318 intel_update_cdclk(dev_priv);
5d96d8af
DL
6319}
6320
9f7eb31a
VS
6321static void skl_sanitize_cdclk(struct drm_i915_private *dev_priv);
6322
5d96d8af
DL
6323void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
6324{
709e05c3 6325 skl_set_cdclk(dev_priv, dev_priv->cdclk_pll.ref, 0);
5d96d8af
DL
6326}
6327
6328void skl_init_cdclk(struct drm_i915_private *dev_priv)
6329{
9f7eb31a
VS
6330 int cdclk, vco;
6331
6332 skl_sanitize_cdclk(dev_priv);
5d96d8af 6333
63911d72 6334 if (dev_priv->cdclk_freq != 0 && dev_priv->cdclk_pll.vco != 0) {
9f7eb31a
VS
6335 /*
6336 * Use the current vco as our initial
6337 * guess as to what the preferred vco is.
6338 */
6339 if (dev_priv->skl_preferred_vco_freq == 0)
6340 skl_set_preferred_cdclk_vco(dev_priv,
63911d72 6341 dev_priv->cdclk_pll.vco);
70c2c184 6342 return;
1cd593e0 6343 }
5d96d8af 6344
70c2c184
VS
6345 vco = dev_priv->skl_preferred_vco_freq;
6346 if (vco == 0)
63911d72 6347 vco = 8100000;
70c2c184 6348 cdclk = skl_calc_cdclk(0, vco);
5d96d8af 6349
70c2c184 6350 skl_set_cdclk(dev_priv, cdclk, vco);
5d96d8af
DL
6351}
6352
9f7eb31a 6353static void skl_sanitize_cdclk(struct drm_i915_private *dev_priv)
c73666f3 6354{
09492498 6355 uint32_t cdctl, expected;
c73666f3 6356
f1b391a5
SK
6357 /*
6358 * check if the pre-os intialized the display
6359 * There is SWF18 scratchpad register defined which is set by the
6360 * pre-os which can be used by the OS drivers to check the status
6361 */
6362 if ((I915_READ(SWF_ILK(0x18)) & 0x00FFFFFF) == 0)
6363 goto sanitize;
6364
4c75b940 6365 intel_update_cdclk(dev_priv);
c73666f3 6366 /* Is PLL enabled and locked ? */
1c3f7700
ID
6367 if (dev_priv->cdclk_pll.vco == 0 ||
6368 dev_priv->cdclk_freq == dev_priv->cdclk_pll.ref)
c73666f3
SK
6369 goto sanitize;
6370
6371 /* DPLL okay; verify the cdclock
6372 *
6373 * Noticed in some instances that the freq selection is correct but
6374 * decimal part is programmed wrong from BIOS where pre-os does not
6375 * enable display. Verify the same as well.
6376 */
09492498
VS
6377 cdctl = I915_READ(CDCLK_CTL);
6378 expected = (cdctl & CDCLK_FREQ_SEL_MASK) |
6379 skl_cdclk_decimal(dev_priv->cdclk_freq);
6380 if (cdctl == expected)
c73666f3 6381 /* All well; nothing to sanitize */
9f7eb31a 6382 return;
c89e39f3 6383
9f7eb31a
VS
6384sanitize:
6385 DRM_DEBUG_KMS("Sanitizing cdclk programmed by pre-os\n");
c73666f3 6386
9f7eb31a
VS
6387 /* force cdclk programming */
6388 dev_priv->cdclk_freq = 0;
6389 /* force full PLL disable + enable */
63911d72 6390 dev_priv->cdclk_pll.vco = -1;
c73666f3
SK
6391}
6392
30a970c6
JB
6393/* Adjust CDclk dividers to allow high res or save power if possible */
6394static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
6395{
fac5e23e 6396 struct drm_i915_private *dev_priv = to_i915(dev);
30a970c6
JB
6397 u32 val, cmd;
6398
1353c4fb 6399 WARN_ON(dev_priv->display.get_display_clock_speed(dev_priv)
164dfd28 6400 != dev_priv->cdclk_freq);
d60c4473 6401
dfcab17e 6402 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
30a970c6 6403 cmd = 2;
dfcab17e 6404 else if (cdclk == 266667)
30a970c6
JB
6405 cmd = 1;
6406 else
6407 cmd = 0;
6408
6409 mutex_lock(&dev_priv->rps.hw_lock);
6410 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
6411 val &= ~DSPFREQGUAR_MASK;
6412 val |= (cmd << DSPFREQGUAR_SHIFT);
6413 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
6414 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
6415 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
6416 50)) {
6417 DRM_ERROR("timed out waiting for CDclk change\n");
6418 }
6419 mutex_unlock(&dev_priv->rps.hw_lock);
6420
54433e91
VS
6421 mutex_lock(&dev_priv->sb_lock);
6422
dfcab17e 6423 if (cdclk == 400000) {
6bcda4f0 6424 u32 divider;
30a970c6 6425
6bcda4f0 6426 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
30a970c6 6427
30a970c6
JB
6428 /* adjust cdclk divider */
6429 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
87d5d259 6430 val &= ~CCK_FREQUENCY_VALUES;
30a970c6
JB
6431 val |= divider;
6432 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
a877e801
VS
6433
6434 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
87d5d259 6435 CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
a877e801
VS
6436 50))
6437 DRM_ERROR("timed out waiting for CDclk change\n");
30a970c6
JB
6438 }
6439
30a970c6
JB
6440 /* adjust self-refresh exit latency value */
6441 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
6442 val &= ~0x7f;
6443
6444 /*
6445 * For high bandwidth configs, we set a higher latency in the bunit
6446 * so that the core display fetch happens in time to avoid underruns.
6447 */
dfcab17e 6448 if (cdclk == 400000)
30a970c6
JB
6449 val |= 4500 / 250; /* 4.5 usec */
6450 else
6451 val |= 3000 / 250; /* 3.0 usec */
6452 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
54433e91 6453
a580516d 6454 mutex_unlock(&dev_priv->sb_lock);
30a970c6 6455
4c75b940 6456 intel_update_cdclk(dev_priv);
30a970c6
JB
6457}
6458
383c5a6a
VS
6459static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
6460{
fac5e23e 6461 struct drm_i915_private *dev_priv = to_i915(dev);
383c5a6a
VS
6462 u32 val, cmd;
6463
1353c4fb 6464 WARN_ON(dev_priv->display.get_display_clock_speed(dev_priv)
164dfd28 6465 != dev_priv->cdclk_freq);
383c5a6a
VS
6466
6467 switch (cdclk) {
383c5a6a
VS
6468 case 333333:
6469 case 320000:
383c5a6a 6470 case 266667:
383c5a6a 6471 case 200000:
383c5a6a
VS
6472 break;
6473 default:
5f77eeb0 6474 MISSING_CASE(cdclk);
383c5a6a
VS
6475 return;
6476 }
6477
9d0d3fda
VS
6478 /*
6479 * Specs are full of misinformation, but testing on actual
6480 * hardware has shown that we just need to write the desired
6481 * CCK divider into the Punit register.
6482 */
6483 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
6484
383c5a6a
VS
6485 mutex_lock(&dev_priv->rps.hw_lock);
6486 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
6487 val &= ~DSPFREQGUAR_MASK_CHV;
6488 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
6489 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
6490 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
6491 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
6492 50)) {
6493 DRM_ERROR("timed out waiting for CDclk change\n");
6494 }
6495 mutex_unlock(&dev_priv->rps.hw_lock);
6496
4c75b940 6497 intel_update_cdclk(dev_priv);
383c5a6a
VS
6498}
6499
30a970c6
JB
6500static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
6501 int max_pixclk)
6502{
6bcda4f0 6503 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
6cca3195 6504 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
29dc7ef3 6505
30a970c6
JB
6506 /*
6507 * Really only a few cases to deal with, as only 4 CDclks are supported:
6508 * 200MHz
6509 * 267MHz
29dc7ef3 6510 * 320/333MHz (depends on HPLL freq)
6cca3195
VS
6511 * 400MHz (VLV only)
6512 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
6513 * of the lower bin and adjust if needed.
e37c67a1
VS
6514 *
6515 * We seem to get an unstable or solid color picture at 200MHz.
6516 * Not sure what's wrong. For now use 200MHz only when all pipes
6517 * are off.
30a970c6 6518 */
6cca3195
VS
6519 if (!IS_CHERRYVIEW(dev_priv) &&
6520 max_pixclk > freq_320*limit/100)
dfcab17e 6521 return 400000;
6cca3195 6522 else if (max_pixclk > 266667*limit/100)
29dc7ef3 6523 return freq_320;
e37c67a1 6524 else if (max_pixclk > 0)
dfcab17e 6525 return 266667;
e37c67a1
VS
6526 else
6527 return 200000;
30a970c6
JB
6528}
6529
324513c0 6530static int bxt_calc_cdclk(int max_pixclk)
f8437dd1 6531{
760e1477 6532 if (max_pixclk > 576000)
f8437dd1 6533 return 624000;
760e1477 6534 else if (max_pixclk > 384000)
f8437dd1 6535 return 576000;
760e1477 6536 else if (max_pixclk > 288000)
f8437dd1 6537 return 384000;
760e1477 6538 else if (max_pixclk > 144000)
f8437dd1
VK
6539 return 288000;
6540 else
6541 return 144000;
6542}
6543
e8788cbc 6544/* Compute the max pixel clock for new configuration. */
a821fc46
ACO
6545static int intel_mode_max_pixclk(struct drm_device *dev,
6546 struct drm_atomic_state *state)
30a970c6 6547{
565602d7 6548 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fac5e23e 6549 struct drm_i915_private *dev_priv = to_i915(dev);
565602d7
ML
6550 struct drm_crtc *crtc;
6551 struct drm_crtc_state *crtc_state;
6552 unsigned max_pixclk = 0, i;
6553 enum pipe pipe;
30a970c6 6554
565602d7
ML
6555 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
6556 sizeof(intel_state->min_pixclk));
304603f4 6557
565602d7
ML
6558 for_each_crtc_in_state(state, crtc, crtc_state, i) {
6559 int pixclk = 0;
6560
6561 if (crtc_state->enable)
6562 pixclk = crtc_state->adjusted_mode.crtc_clock;
304603f4 6563
565602d7 6564 intel_state->min_pixclk[i] = pixclk;
30a970c6
JB
6565 }
6566
565602d7
ML
6567 for_each_pipe(dev_priv, pipe)
6568 max_pixclk = max(intel_state->min_pixclk[pipe], max_pixclk);
6569
30a970c6
JB
6570 return max_pixclk;
6571}
6572
27c329ed 6573static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state)
30a970c6 6574{
27c329ed 6575 struct drm_device *dev = state->dev;
fac5e23e 6576 struct drm_i915_private *dev_priv = to_i915(dev);
27c329ed 6577 int max_pixclk = intel_mode_max_pixclk(dev, state);
1a617b77
ML
6578 struct intel_atomic_state *intel_state =
6579 to_intel_atomic_state(state);
30a970c6 6580
1a617b77 6581 intel_state->cdclk = intel_state->dev_cdclk =
27c329ed 6582 valleyview_calc_cdclk(dev_priv, max_pixclk);
0a9ab303 6583
1a617b77
ML
6584 if (!intel_state->active_crtcs)
6585 intel_state->dev_cdclk = valleyview_calc_cdclk(dev_priv, 0);
6586
27c329ed
ML
6587 return 0;
6588}
304603f4 6589
324513c0 6590static int bxt_modeset_calc_cdclk(struct drm_atomic_state *state)
27c329ed 6591{
4e5ca60f 6592 int max_pixclk = ilk_max_pixel_rate(state);
1a617b77
ML
6593 struct intel_atomic_state *intel_state =
6594 to_intel_atomic_state(state);
85a96e7a 6595
1a617b77 6596 intel_state->cdclk = intel_state->dev_cdclk =
324513c0 6597 bxt_calc_cdclk(max_pixclk);
85a96e7a 6598
1a617b77 6599 if (!intel_state->active_crtcs)
324513c0 6600 intel_state->dev_cdclk = bxt_calc_cdclk(0);
1a617b77 6601
27c329ed 6602 return 0;
30a970c6
JB
6603}
6604
1e69cd74
VS
6605static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
6606{
6607 unsigned int credits, default_credits;
6608
6609 if (IS_CHERRYVIEW(dev_priv))
6610 default_credits = PFI_CREDIT(12);
6611 else
6612 default_credits = PFI_CREDIT(8);
6613
bfa7df01 6614 if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) {
1e69cd74
VS
6615 /* CHV suggested value is 31 or 63 */
6616 if (IS_CHERRYVIEW(dev_priv))
fcc0008f 6617 credits = PFI_CREDIT_63;
1e69cd74
VS
6618 else
6619 credits = PFI_CREDIT(15);
6620 } else {
6621 credits = default_credits;
6622 }
6623
6624 /*
6625 * WA - write default credits before re-programming
6626 * FIXME: should we also set the resend bit here?
6627 */
6628 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6629 default_credits);
6630
6631 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6632 credits | PFI_CREDIT_RESEND);
6633
6634 /*
6635 * FIXME is this guaranteed to clear
6636 * immediately or should we poll for it?
6637 */
6638 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
6639}
6640
27c329ed 6641static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state)
30a970c6 6642{
a821fc46 6643 struct drm_device *dev = old_state->dev;
fac5e23e 6644 struct drm_i915_private *dev_priv = to_i915(dev);
1a617b77
ML
6645 struct intel_atomic_state *old_intel_state =
6646 to_intel_atomic_state(old_state);
6647 unsigned req_cdclk = old_intel_state->dev_cdclk;
30a970c6 6648
27c329ed
ML
6649 /*
6650 * FIXME: We can end up here with all power domains off, yet
6651 * with a CDCLK frequency other than the minimum. To account
6652 * for this take the PIPE-A power domain, which covers the HW
6653 * blocks needed for the following programming. This can be
6654 * removed once it's guaranteed that we get here either with
6655 * the minimum CDCLK set, or the required power domains
6656 * enabled.
6657 */
6658 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
738c05c0 6659
920a14b2 6660 if (IS_CHERRYVIEW(dev_priv))
27c329ed
ML
6661 cherryview_set_cdclk(dev, req_cdclk);
6662 else
6663 valleyview_set_cdclk(dev, req_cdclk);
738c05c0 6664
27c329ed 6665 vlv_program_pfi_credits(dev_priv);
1e69cd74 6666
27c329ed 6667 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
30a970c6
JB
6668}
6669
4a806558
ML
6670static void valleyview_crtc_enable(struct intel_crtc_state *pipe_config,
6671 struct drm_atomic_state *old_state)
89b667f8 6672{
4a806558 6673 struct drm_crtc *crtc = pipe_config->base.crtc;
89b667f8 6674 struct drm_device *dev = crtc->dev;
a72e4c9f 6675 struct drm_i915_private *dev_priv = to_i915(dev);
89b667f8 6676 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
89b667f8 6677 int pipe = intel_crtc->pipe;
89b667f8 6678
53d9f4e9 6679 if (WARN_ON(intel_crtc->active))
89b667f8
JB
6680 return;
6681
37a5650b 6682 if (intel_crtc_has_dp_encoder(intel_crtc->config))
fe3cd48d 6683 intel_dp_set_m_n(intel_crtc, M1_N1);
5b18e57c
DV
6684
6685 intel_set_pipe_timings(intel_crtc);
bc58be60 6686 intel_set_pipe_src_size(intel_crtc);
5b18e57c 6687
920a14b2 6688 if (IS_CHERRYVIEW(dev_priv) && pipe == PIPE_B) {
fac5e23e 6689 struct drm_i915_private *dev_priv = to_i915(dev);
c14b0485
VS
6690
6691 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
6692 I915_WRITE(CHV_CANVAS(pipe), 0);
6693 }
6694
5b18e57c
DV
6695 i9xx_set_pipeconf(intel_crtc);
6696
89b667f8 6697 intel_crtc->active = true;
89b667f8 6698
a72e4c9f 6699 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 6700
fd6bbda9 6701 intel_encoders_pre_pll_enable(crtc, pipe_config, old_state);
89b667f8 6702
920a14b2 6703 if (IS_CHERRYVIEW(dev_priv)) {
cd2d34d9
VS
6704 chv_prepare_pll(intel_crtc, intel_crtc->config);
6705 chv_enable_pll(intel_crtc, intel_crtc->config);
6706 } else {
6707 vlv_prepare_pll(intel_crtc, intel_crtc->config);
6708 vlv_enable_pll(intel_crtc, intel_crtc->config);
9d556c99 6709 }
89b667f8 6710
fd6bbda9 6711 intel_encoders_pre_enable(crtc, pipe_config, old_state);
89b667f8 6712
2dd24552
JB
6713 i9xx_pfit_enable(intel_crtc);
6714
b95c5321 6715 intel_color_load_luts(&pipe_config->base);
63cbb074 6716
432081bc 6717 intel_update_watermarks(intel_crtc);
e1fdc473 6718 intel_enable_pipe(intel_crtc);
be6a6f8e 6719
4b3a9526
VS
6720 assert_vblank_disabled(crtc);
6721 drm_crtc_vblank_on(crtc);
6722
fd6bbda9 6723 intel_encoders_enable(crtc, pipe_config, old_state);
89b667f8
JB
6724}
6725
f13c2ef3
DV
6726static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
6727{
6728 struct drm_device *dev = crtc->base.dev;
fac5e23e 6729 struct drm_i915_private *dev_priv = to_i915(dev);
f13c2ef3 6730
6e3c9717
ACO
6731 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
6732 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
f13c2ef3
DV
6733}
6734
4a806558
ML
6735static void i9xx_crtc_enable(struct intel_crtc_state *pipe_config,
6736 struct drm_atomic_state *old_state)
79e53945 6737{
4a806558 6738 struct drm_crtc *crtc = pipe_config->base.crtc;
79e53945 6739 struct drm_device *dev = crtc->dev;
a72e4c9f 6740 struct drm_i915_private *dev_priv = to_i915(dev);
79e53945 6741 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cd2d34d9 6742 enum pipe pipe = intel_crtc->pipe;
79e53945 6743
53d9f4e9 6744 if (WARN_ON(intel_crtc->active))
f7abfe8b
CW
6745 return;
6746
f13c2ef3
DV
6747 i9xx_set_pll_dividers(intel_crtc);
6748
37a5650b 6749 if (intel_crtc_has_dp_encoder(intel_crtc->config))
fe3cd48d 6750 intel_dp_set_m_n(intel_crtc, M1_N1);
5b18e57c
DV
6751
6752 intel_set_pipe_timings(intel_crtc);
bc58be60 6753 intel_set_pipe_src_size(intel_crtc);
5b18e57c 6754
5b18e57c
DV
6755 i9xx_set_pipeconf(intel_crtc);
6756
f7abfe8b 6757 intel_crtc->active = true;
6b383a7f 6758
5db94019 6759 if (!IS_GEN2(dev_priv))
a72e4c9f 6760 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 6761
fd6bbda9 6762 intel_encoders_pre_enable(crtc, pipe_config, old_state);
9d6d9f19 6763
f6736a1a
DV
6764 i9xx_enable_pll(intel_crtc);
6765
2dd24552
JB
6766 i9xx_pfit_enable(intel_crtc);
6767
b95c5321 6768 intel_color_load_luts(&pipe_config->base);
63cbb074 6769
432081bc 6770 intel_update_watermarks(intel_crtc);
e1fdc473 6771 intel_enable_pipe(intel_crtc);
be6a6f8e 6772
4b3a9526
VS
6773 assert_vblank_disabled(crtc);
6774 drm_crtc_vblank_on(crtc);
6775
fd6bbda9 6776 intel_encoders_enable(crtc, pipe_config, old_state);
0b8765c6 6777}
79e53945 6778
87476d63
DV
6779static void i9xx_pfit_disable(struct intel_crtc *crtc)
6780{
6781 struct drm_device *dev = crtc->base.dev;
fac5e23e 6782 struct drm_i915_private *dev_priv = to_i915(dev);
87476d63 6783
6e3c9717 6784 if (!crtc->config->gmch_pfit.control)
328d8e82 6785 return;
87476d63 6786
328d8e82 6787 assert_pipe_disabled(dev_priv, crtc->pipe);
87476d63 6788
328d8e82
DV
6789 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6790 I915_READ(PFIT_CONTROL));
6791 I915_WRITE(PFIT_CONTROL, 0);
87476d63
DV
6792}
6793
4a806558
ML
6794static void i9xx_crtc_disable(struct intel_crtc_state *old_crtc_state,
6795 struct drm_atomic_state *old_state)
0b8765c6 6796{
4a806558 6797 struct drm_crtc *crtc = old_crtc_state->base.crtc;
0b8765c6 6798 struct drm_device *dev = crtc->dev;
fac5e23e 6799 struct drm_i915_private *dev_priv = to_i915(dev);
0b8765c6
JB
6800 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6801 int pipe = intel_crtc->pipe;
ef9c3aee 6802
6304cd91
VS
6803 /*
6804 * On gen2 planes are double buffered but the pipe isn't, so we must
6805 * wait for planes to fully turn off before disabling the pipe.
6806 */
5db94019 6807 if (IS_GEN2(dev_priv))
0f0f74bc 6808 intel_wait_for_vblank(dev_priv, pipe);
6304cd91 6809
fd6bbda9 6810 intel_encoders_disable(crtc, old_crtc_state, old_state);
4b3a9526 6811
f9b61ff6
DV
6812 drm_crtc_vblank_off(crtc);
6813 assert_vblank_disabled(crtc);
6814
575f7ab7 6815 intel_disable_pipe(intel_crtc);
24a1f16d 6816
87476d63 6817 i9xx_pfit_disable(intel_crtc);
24a1f16d 6818
fd6bbda9 6819 intel_encoders_post_disable(crtc, old_crtc_state, old_state);
89b667f8 6820
d7edc4e5 6821 if (!intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_DSI)) {
920a14b2 6822 if (IS_CHERRYVIEW(dev_priv))
076ed3b2 6823 chv_disable_pll(dev_priv, pipe);
11a914c2 6824 else if (IS_VALLEYVIEW(dev_priv))
076ed3b2
CML
6825 vlv_disable_pll(dev_priv, pipe);
6826 else
1c4e0274 6827 i9xx_disable_pll(intel_crtc);
076ed3b2 6828 }
0b8765c6 6829
fd6bbda9 6830 intel_encoders_post_pll_disable(crtc, old_crtc_state, old_state);
d6db995f 6831
5db94019 6832 if (!IS_GEN2(dev_priv))
a72e4c9f 6833 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
0b8765c6
JB
6834}
6835
b17d48e2
ML
6836static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
6837{
842e0307 6838 struct intel_encoder *encoder;
b17d48e2
ML
6839 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6840 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
6841 enum intel_display_power_domain domain;
6842 unsigned long domains;
4a806558
ML
6843 struct drm_atomic_state *state;
6844 struct intel_crtc_state *crtc_state;
6845 int ret;
b17d48e2
ML
6846
6847 if (!intel_crtc->active)
6848 return;
6849
936e71e3 6850 if (to_intel_plane_state(crtc->primary->state)->base.visible) {
5a21b665 6851 WARN_ON(intel_crtc->flip_work);
fc32b1fd 6852
2622a081 6853 intel_pre_disable_primary_noatomic(crtc);
54a41961
ML
6854
6855 intel_crtc_disable_planes(crtc, 1 << drm_plane_index(crtc->primary));
936e71e3 6856 to_intel_plane_state(crtc->primary->state)->base.visible = false;
a539205a
ML
6857 }
6858
4a806558
ML
6859 state = drm_atomic_state_alloc(crtc->dev);
6860 state->acquire_ctx = crtc->dev->mode_config.acquire_ctx;
6861
6862 /* Everything's already locked, -EDEADLK can't happen. */
6863 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
6864 ret = drm_atomic_add_affected_connectors(state, crtc);
6865
6866 WARN_ON(IS_ERR(crtc_state) || ret);
6867
6868 dev_priv->display.crtc_disable(crtc_state, state);
6869
0853695c 6870 drm_atomic_state_put(state);
842e0307 6871
78108b7c
VS
6872 DRM_DEBUG_KMS("[CRTC:%d:%s] hw state adjusted, was enabled, now disabled\n",
6873 crtc->base.id, crtc->name);
842e0307
ML
6874
6875 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->state, NULL) < 0);
6876 crtc->state->active = false;
37d9078b 6877 intel_crtc->active = false;
842e0307
ML
6878 crtc->enabled = false;
6879 crtc->state->connector_mask = 0;
6880 crtc->state->encoder_mask = 0;
6881
6882 for_each_encoder_on_crtc(crtc->dev, crtc, encoder)
6883 encoder->base.crtc = NULL;
6884
58f9c0bc 6885 intel_fbc_disable(intel_crtc);
432081bc 6886 intel_update_watermarks(intel_crtc);
1f7457b1 6887 intel_disable_shared_dpll(intel_crtc);
b17d48e2
ML
6888
6889 domains = intel_crtc->enabled_power_domains;
6890 for_each_power_domain(domain, domains)
6891 intel_display_power_put(dev_priv, domain);
6892 intel_crtc->enabled_power_domains = 0;
565602d7
ML
6893
6894 dev_priv->active_crtcs &= ~(1 << intel_crtc->pipe);
6895 dev_priv->min_pixclk[intel_crtc->pipe] = 0;
b17d48e2
ML
6896}
6897
6b72d486
ML
6898/*
6899 * turn all crtc's off, but do not adjust state
6900 * This has to be paired with a call to intel_modeset_setup_hw_state.
6901 */
70e0bd74 6902int intel_display_suspend(struct drm_device *dev)
ee7b9f93 6903{
e2c8b870 6904 struct drm_i915_private *dev_priv = to_i915(dev);
70e0bd74 6905 struct drm_atomic_state *state;
e2c8b870 6906 int ret;
70e0bd74 6907
e2c8b870
ML
6908 state = drm_atomic_helper_suspend(dev);
6909 ret = PTR_ERR_OR_ZERO(state);
70e0bd74
ML
6910 if (ret)
6911 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
e2c8b870
ML
6912 else
6913 dev_priv->modeset_restore_state = state;
70e0bd74 6914 return ret;
ee7b9f93
JB
6915}
6916
ea5b213a 6917void intel_encoder_destroy(struct drm_encoder *encoder)
7e7d76c3 6918{
4ef69c7a 6919 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
ea5b213a 6920
ea5b213a
CW
6921 drm_encoder_cleanup(encoder);
6922 kfree(intel_encoder);
7e7d76c3
JB
6923}
6924
0a91ca29
DV
6925/* Cross check the actual hw state with our own modeset state tracking (and it's
6926 * internal consistency). */
5a21b665 6927static void intel_connector_verify_state(struct intel_connector *connector)
79e53945 6928{
5a21b665 6929 struct drm_crtc *crtc = connector->base.state->crtc;
35dd3c64
ML
6930
6931 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6932 connector->base.base.id,
6933 connector->base.name);
6934
0a91ca29 6935 if (connector->get_hw_state(connector)) {
e85376cb 6936 struct intel_encoder *encoder = connector->encoder;
5a21b665 6937 struct drm_connector_state *conn_state = connector->base.state;
0a91ca29 6938
35dd3c64
ML
6939 I915_STATE_WARN(!crtc,
6940 "connector enabled without attached crtc\n");
0a91ca29 6941
35dd3c64
ML
6942 if (!crtc)
6943 return;
6944
6945 I915_STATE_WARN(!crtc->state->active,
6946 "connector is active, but attached crtc isn't\n");
6947
e85376cb 6948 if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST)
35dd3c64
ML
6949 return;
6950
e85376cb 6951 I915_STATE_WARN(conn_state->best_encoder != &encoder->base,
35dd3c64
ML
6952 "atomic encoder doesn't match attached encoder\n");
6953
e85376cb 6954 I915_STATE_WARN(conn_state->crtc != encoder->base.crtc,
35dd3c64
ML
6955 "attached encoder crtc differs from connector crtc\n");
6956 } else {
4d688a2a
ML
6957 I915_STATE_WARN(crtc && crtc->state->active,
6958 "attached crtc is active, but connector isn't\n");
5a21b665 6959 I915_STATE_WARN(!crtc && connector->base.state->best_encoder,
35dd3c64 6960 "best encoder set without crtc!\n");
0a91ca29 6961 }
79e53945
JB
6962}
6963
08d9bc92
ACO
6964int intel_connector_init(struct intel_connector *connector)
6965{
5350a031 6966 drm_atomic_helper_connector_reset(&connector->base);
08d9bc92 6967
5350a031 6968 if (!connector->base.state)
08d9bc92
ACO
6969 return -ENOMEM;
6970
08d9bc92
ACO
6971 return 0;
6972}
6973
6974struct intel_connector *intel_connector_alloc(void)
6975{
6976 struct intel_connector *connector;
6977
6978 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6979 if (!connector)
6980 return NULL;
6981
6982 if (intel_connector_init(connector) < 0) {
6983 kfree(connector);
6984 return NULL;
6985 }
6986
6987 return connector;
6988}
6989
f0947c37
DV
6990/* Simple connector->get_hw_state implementation for encoders that support only
6991 * one connector and no cloning and hence the encoder state determines the state
6992 * of the connector. */
6993bool intel_connector_get_hw_state(struct intel_connector *connector)
ea5b213a 6994{
24929352 6995 enum pipe pipe = 0;
f0947c37 6996 struct intel_encoder *encoder = connector->encoder;
ea5b213a 6997
f0947c37 6998 return encoder->get_hw_state(encoder, &pipe);
ea5b213a
CW
6999}
7000
6d293983 7001static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
d272ddfa 7002{
6d293983
ACO
7003 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
7004 return crtc_state->fdi_lanes;
d272ddfa
VS
7005
7006 return 0;
7007}
7008
6d293983 7009static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
5cec258b 7010 struct intel_crtc_state *pipe_config)
1857e1da 7011{
8652744b 7012 struct drm_i915_private *dev_priv = to_i915(dev);
6d293983
ACO
7013 struct drm_atomic_state *state = pipe_config->base.state;
7014 struct intel_crtc *other_crtc;
7015 struct intel_crtc_state *other_crtc_state;
7016
1857e1da
DV
7017 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
7018 pipe_name(pipe), pipe_config->fdi_lanes);
7019 if (pipe_config->fdi_lanes > 4) {
7020 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
7021 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 7022 return -EINVAL;
1857e1da
DV
7023 }
7024
8652744b 7025 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
1857e1da
DV
7026 if (pipe_config->fdi_lanes > 2) {
7027 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
7028 pipe_config->fdi_lanes);
6d293983 7029 return -EINVAL;
1857e1da 7030 } else {
6d293983 7031 return 0;
1857e1da
DV
7032 }
7033 }
7034
b7f05d4a 7035 if (INTEL_INFO(dev_priv)->num_pipes == 2)
6d293983 7036 return 0;
1857e1da
DV
7037
7038 /* Ivybridge 3 pipe is really complicated */
7039 switch (pipe) {
7040 case PIPE_A:
6d293983 7041 return 0;
1857e1da 7042 case PIPE_B:
6d293983
ACO
7043 if (pipe_config->fdi_lanes <= 2)
7044 return 0;
7045
b91eb5cc 7046 other_crtc = intel_get_crtc_for_pipe(dev_priv, PIPE_C);
6d293983
ACO
7047 other_crtc_state =
7048 intel_atomic_get_crtc_state(state, other_crtc);
7049 if (IS_ERR(other_crtc_state))
7050 return PTR_ERR(other_crtc_state);
7051
7052 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
1857e1da
DV
7053 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
7054 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 7055 return -EINVAL;
1857e1da 7056 }
6d293983 7057 return 0;
1857e1da 7058 case PIPE_C:
251cc67c
VS
7059 if (pipe_config->fdi_lanes > 2) {
7060 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
7061 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 7062 return -EINVAL;
251cc67c 7063 }
6d293983 7064
b91eb5cc 7065 other_crtc = intel_get_crtc_for_pipe(dev_priv, PIPE_B);
6d293983
ACO
7066 other_crtc_state =
7067 intel_atomic_get_crtc_state(state, other_crtc);
7068 if (IS_ERR(other_crtc_state))
7069 return PTR_ERR(other_crtc_state);
7070
7071 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
1857e1da 7072 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
6d293983 7073 return -EINVAL;
1857e1da 7074 }
6d293983 7075 return 0;
1857e1da
DV
7076 default:
7077 BUG();
7078 }
7079}
7080
e29c22c0
DV
7081#define RETRY 1
7082static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5cec258b 7083 struct intel_crtc_state *pipe_config)
877d48d5 7084{
1857e1da 7085 struct drm_device *dev = intel_crtc->base.dev;
7c5f93b0 7086 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
6d293983
ACO
7087 int lane, link_bw, fdi_dotclock, ret;
7088 bool needs_recompute = false;
877d48d5 7089
e29c22c0 7090retry:
877d48d5
DV
7091 /* FDI is a binary signal running at ~2.7GHz, encoding
7092 * each output octet as 10 bits. The actual frequency
7093 * is stored as a divider into a 100MHz clock, and the
7094 * mode pixel clock is stored in units of 1KHz.
7095 * Hence the bw of each lane in terms of the mode signal
7096 * is:
7097 */
21a727b3 7098 link_bw = intel_fdi_link_freq(to_i915(dev), pipe_config);
877d48d5 7099
241bfc38 7100 fdi_dotclock = adjusted_mode->crtc_clock;
877d48d5 7101
2bd89a07 7102 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
877d48d5
DV
7103 pipe_config->pipe_bpp);
7104
7105 pipe_config->fdi_lanes = lane;
7106
2bd89a07 7107 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
877d48d5 7108 link_bw, &pipe_config->fdi_m_n);
1857e1da 7109
e3b247da 7110 ret = ironlake_check_fdi_lanes(dev, intel_crtc->pipe, pipe_config);
6d293983 7111 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
e29c22c0
DV
7112 pipe_config->pipe_bpp -= 2*3;
7113 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
7114 pipe_config->pipe_bpp);
7115 needs_recompute = true;
7116 pipe_config->bw_constrained = true;
7117
7118 goto retry;
7119 }
7120
7121 if (needs_recompute)
7122 return RETRY;
7123
6d293983 7124 return ret;
877d48d5
DV
7125}
7126
8cfb3407
VS
7127static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv,
7128 struct intel_crtc_state *pipe_config)
7129{
7130 if (pipe_config->pipe_bpp > 24)
7131 return false;
7132
7133 /* HSW can handle pixel rate up to cdclk? */
2d1fe073 7134 if (IS_HASWELL(dev_priv))
8cfb3407
VS
7135 return true;
7136
7137 /*
b432e5cf
VS
7138 * We compare against max which means we must take
7139 * the increased cdclk requirement into account when
7140 * calculating the new cdclk.
7141 *
7142 * Should measure whether using a lower cdclk w/o IPS
8cfb3407
VS
7143 */
7144 return ilk_pipe_pixel_rate(pipe_config) <=
7145 dev_priv->max_cdclk_freq * 95 / 100;
7146}
7147
42db64ef 7148static void hsw_compute_ips_config(struct intel_crtc *crtc,
5cec258b 7149 struct intel_crtc_state *pipe_config)
42db64ef 7150{
8cfb3407 7151 struct drm_device *dev = crtc->base.dev;
fac5e23e 7152 struct drm_i915_private *dev_priv = to_i915(dev);
8cfb3407 7153
d330a953 7154 pipe_config->ips_enabled = i915.enable_ips &&
8cfb3407
VS
7155 hsw_crtc_supports_ips(crtc) &&
7156 pipe_config_supports_ips(dev_priv, pipe_config);
42db64ef
PZ
7157}
7158
39acb4aa
VS
7159static bool intel_crtc_supports_double_wide(const struct intel_crtc *crtc)
7160{
7161 const struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
7162
7163 /* GDG double wide on either pipe, otherwise pipe A only */
7164 return INTEL_INFO(dev_priv)->gen < 4 &&
7165 (crtc->pipe == PIPE_A || IS_I915G(dev_priv));
7166}
7167
a43f6e0f 7168static int intel_crtc_compute_config(struct intel_crtc *crtc,
5cec258b 7169 struct intel_crtc_state *pipe_config)
79e53945 7170{
a43f6e0f 7171 struct drm_device *dev = crtc->base.dev;
fac5e23e 7172 struct drm_i915_private *dev_priv = to_i915(dev);
7c5f93b0 7173 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
f3261156 7174 int clock_limit = dev_priv->max_dotclk_freq;
89749350 7175
6315b5d3 7176 if (INTEL_GEN(dev_priv) < 4) {
f3261156 7177 clock_limit = dev_priv->max_cdclk_freq * 9 / 10;
cf532bb2
VS
7178
7179 /*
39acb4aa 7180 * Enable double wide mode when the dot clock
cf532bb2 7181 * is > 90% of the (display) core speed.
cf532bb2 7182 */
39acb4aa
VS
7183 if (intel_crtc_supports_double_wide(crtc) &&
7184 adjusted_mode->crtc_clock > clock_limit) {
f3261156 7185 clock_limit = dev_priv->max_dotclk_freq;
cf532bb2 7186 pipe_config->double_wide = true;
ad3a4479 7187 }
f3261156 7188 }
ad3a4479 7189
f3261156
VS
7190 if (adjusted_mode->crtc_clock > clock_limit) {
7191 DRM_DEBUG_KMS("requested pixel clock (%d kHz) too high (max: %d kHz, double wide: %s)\n",
7192 adjusted_mode->crtc_clock, clock_limit,
7193 yesno(pipe_config->double_wide));
7194 return -EINVAL;
2c07245f 7195 }
89749350 7196
1d1d0e27
VS
7197 /*
7198 * Pipe horizontal size must be even in:
7199 * - DVO ganged mode
7200 * - LVDS dual channel mode
7201 * - Double wide pipe
7202 */
2d84d2b3 7203 if ((intel_crtc_has_type(pipe_config, INTEL_OUTPUT_LVDS) &&
1d1d0e27
VS
7204 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
7205 pipe_config->pipe_src_w &= ~1;
7206
8693a824
DL
7207 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
7208 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
44f46b42 7209 */
9beb5fea 7210 if ((INTEL_GEN(dev_priv) > 4 || IS_G4X(dev_priv)) &&
aad941d5 7211 adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay)
e29c22c0 7212 return -EINVAL;
44f46b42 7213
50a0bc90 7214 if (HAS_IPS(dev_priv))
a43f6e0f
DV
7215 hsw_compute_ips_config(crtc, pipe_config);
7216
877d48d5 7217 if (pipe_config->has_pch_encoder)
a43f6e0f 7218 return ironlake_fdi_compute_config(crtc, pipe_config);
877d48d5 7219
cf5a15be 7220 return 0;
79e53945
JB
7221}
7222
1353c4fb 7223static int skylake_get_display_clock_speed(struct drm_i915_private *dev_priv)
1652d19e 7224{
1353c4fb 7225 u32 cdctl;
1652d19e 7226
ea61791e 7227 skl_dpll0_update(dev_priv);
1652d19e 7228
63911d72 7229 if (dev_priv->cdclk_pll.vco == 0)
709e05c3 7230 return dev_priv->cdclk_pll.ref;
1652d19e 7231
ea61791e 7232 cdctl = I915_READ(CDCLK_CTL);
1652d19e 7233
63911d72 7234 if (dev_priv->cdclk_pll.vco == 8640000) {
1652d19e
VS
7235 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
7236 case CDCLK_FREQ_450_432:
7237 return 432000;
7238 case CDCLK_FREQ_337_308:
487ed2e4 7239 return 308571;
ea61791e
VS
7240 case CDCLK_FREQ_540:
7241 return 540000;
1652d19e 7242 case CDCLK_FREQ_675_617:
487ed2e4 7243 return 617143;
1652d19e 7244 default:
ea61791e 7245 MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK);
1652d19e
VS
7246 }
7247 } else {
1652d19e
VS
7248 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
7249 case CDCLK_FREQ_450_432:
7250 return 450000;
7251 case CDCLK_FREQ_337_308:
7252 return 337500;
ea61791e
VS
7253 case CDCLK_FREQ_540:
7254 return 540000;
1652d19e
VS
7255 case CDCLK_FREQ_675_617:
7256 return 675000;
7257 default:
ea61791e 7258 MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK);
1652d19e
VS
7259 }
7260 }
7261
709e05c3 7262 return dev_priv->cdclk_pll.ref;
1652d19e
VS
7263}
7264
83d7c81f
VS
7265static void bxt_de_pll_update(struct drm_i915_private *dev_priv)
7266{
7267 u32 val;
7268
7269 dev_priv->cdclk_pll.ref = 19200;
1c3f7700 7270 dev_priv->cdclk_pll.vco = 0;
83d7c81f
VS
7271
7272 val = I915_READ(BXT_DE_PLL_ENABLE);
1c3f7700 7273 if ((val & BXT_DE_PLL_PLL_ENABLE) == 0)
83d7c81f 7274 return;
83d7c81f 7275
1c3f7700
ID
7276 if (WARN_ON((val & BXT_DE_PLL_LOCK) == 0))
7277 return;
83d7c81f
VS
7278
7279 val = I915_READ(BXT_DE_PLL_CTL);
7280 dev_priv->cdclk_pll.vco = (val & BXT_DE_PLL_RATIO_MASK) *
7281 dev_priv->cdclk_pll.ref;
7282}
7283
1353c4fb 7284static int broxton_get_display_clock_speed(struct drm_i915_private *dev_priv)
acd3f3d3 7285{
f5986242
VS
7286 u32 divider;
7287 int div, vco;
acd3f3d3 7288
83d7c81f
VS
7289 bxt_de_pll_update(dev_priv);
7290
f5986242
VS
7291 vco = dev_priv->cdclk_pll.vco;
7292 if (vco == 0)
7293 return dev_priv->cdclk_pll.ref;
acd3f3d3 7294
f5986242 7295 divider = I915_READ(CDCLK_CTL) & BXT_CDCLK_CD2X_DIV_SEL_MASK;
acd3f3d3 7296
f5986242 7297 switch (divider) {
acd3f3d3 7298 case BXT_CDCLK_CD2X_DIV_SEL_1:
f5986242
VS
7299 div = 2;
7300 break;
acd3f3d3 7301 case BXT_CDCLK_CD2X_DIV_SEL_1_5:
f5986242
VS
7302 div = 3;
7303 break;
acd3f3d3 7304 case BXT_CDCLK_CD2X_DIV_SEL_2:
f5986242
VS
7305 div = 4;
7306 break;
acd3f3d3 7307 case BXT_CDCLK_CD2X_DIV_SEL_4:
f5986242
VS
7308 div = 8;
7309 break;
7310 default:
7311 MISSING_CASE(divider);
7312 return dev_priv->cdclk_pll.ref;
acd3f3d3
BP
7313 }
7314
f5986242 7315 return DIV_ROUND_CLOSEST(vco, div);
acd3f3d3
BP
7316}
7317
1353c4fb 7318static int broadwell_get_display_clock_speed(struct drm_i915_private *dev_priv)
1652d19e 7319{
1652d19e
VS
7320 uint32_t lcpll = I915_READ(LCPLL_CTL);
7321 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
7322
7323 if (lcpll & LCPLL_CD_SOURCE_FCLK)
7324 return 800000;
7325 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
7326 return 450000;
7327 else if (freq == LCPLL_CLK_FREQ_450)
7328 return 450000;
7329 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
7330 return 540000;
7331 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
7332 return 337500;
7333 else
7334 return 675000;
7335}
7336
1353c4fb 7337static int haswell_get_display_clock_speed(struct drm_i915_private *dev_priv)
1652d19e 7338{
1652d19e
VS
7339 uint32_t lcpll = I915_READ(LCPLL_CTL);
7340 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
7341
7342 if (lcpll & LCPLL_CD_SOURCE_FCLK)
7343 return 800000;
7344 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
7345 return 450000;
7346 else if (freq == LCPLL_CLK_FREQ_450)
7347 return 450000;
50a0bc90 7348 else if (IS_HSW_ULT(dev_priv))
1652d19e
VS
7349 return 337500;
7350 else
7351 return 540000;
79e53945
JB
7352}
7353
1353c4fb 7354static int valleyview_get_display_clock_speed(struct drm_i915_private *dev_priv)
25eb05fc 7355{
1353c4fb 7356 return vlv_get_cck_clock_hpll(dev_priv, "cdclk",
bfa7df01 7357 CCK_DISPLAY_CLOCK_CONTROL);
25eb05fc
JB
7358}
7359
1353c4fb 7360static int ilk_get_display_clock_speed(struct drm_i915_private *dev_priv)
b37a6434
VS
7361{
7362 return 450000;
7363}
7364
1353c4fb 7365static int i945_get_display_clock_speed(struct drm_i915_private *dev_priv)
e70236a8
JB
7366{
7367 return 400000;
7368}
79e53945 7369
1353c4fb 7370static int i915_get_display_clock_speed(struct drm_i915_private *dev_priv)
79e53945 7371{
e907f170 7372 return 333333;
e70236a8 7373}
79e53945 7374
1353c4fb 7375static int i9xx_misc_get_display_clock_speed(struct drm_i915_private *dev_priv)
e70236a8
JB
7376{
7377 return 200000;
7378}
79e53945 7379
1353c4fb 7380static int pnv_get_display_clock_speed(struct drm_i915_private *dev_priv)
257a7ffc 7381{
1353c4fb 7382 struct pci_dev *pdev = dev_priv->drm.pdev;
257a7ffc
DV
7383 u16 gcfgc = 0;
7384
52a05c30 7385 pci_read_config_word(pdev, GCFGC, &gcfgc);
257a7ffc
DV
7386
7387 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
7388 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
e907f170 7389 return 266667;
257a7ffc 7390 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
e907f170 7391 return 333333;
257a7ffc 7392 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
e907f170 7393 return 444444;
257a7ffc
DV
7394 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
7395 return 200000;
7396 default:
7397 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
7398 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
e907f170 7399 return 133333;
257a7ffc 7400 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
e907f170 7401 return 166667;
257a7ffc
DV
7402 }
7403}
7404
1353c4fb 7405static int i915gm_get_display_clock_speed(struct drm_i915_private *dev_priv)
e70236a8 7406{
1353c4fb 7407 struct pci_dev *pdev = dev_priv->drm.pdev;
e70236a8 7408 u16 gcfgc = 0;
79e53945 7409
52a05c30 7410 pci_read_config_word(pdev, GCFGC, &gcfgc);
e70236a8
JB
7411
7412 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
e907f170 7413 return 133333;
e70236a8
JB
7414 else {
7415 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
7416 case GC_DISPLAY_CLOCK_333_MHZ:
e907f170 7417 return 333333;
e70236a8
JB
7418 default:
7419 case GC_DISPLAY_CLOCK_190_200_MHZ:
7420 return 190000;
79e53945 7421 }
e70236a8
JB
7422 }
7423}
7424
1353c4fb 7425static int i865_get_display_clock_speed(struct drm_i915_private *dev_priv)
e70236a8 7426{
e907f170 7427 return 266667;
e70236a8
JB
7428}
7429
1353c4fb 7430static int i85x_get_display_clock_speed(struct drm_i915_private *dev_priv)
e70236a8 7431{
1353c4fb 7432 struct pci_dev *pdev = dev_priv->drm.pdev;
e70236a8 7433 u16 hpllcc = 0;
1b1d2716 7434
65cd2b3f
VS
7435 /*
7436 * 852GM/852GMV only supports 133 MHz and the HPLLCC
7437 * encoding is different :(
7438 * FIXME is this the right way to detect 852GM/852GMV?
7439 */
52a05c30 7440 if (pdev->revision == 0x1)
65cd2b3f
VS
7441 return 133333;
7442
52a05c30 7443 pci_bus_read_config_word(pdev->bus,
1b1d2716
VS
7444 PCI_DEVFN(0, 3), HPLLCC, &hpllcc);
7445
e70236a8
JB
7446 /* Assume that the hardware is in the high speed state. This
7447 * should be the default.
7448 */
7449 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
7450 case GC_CLOCK_133_200:
1b1d2716 7451 case GC_CLOCK_133_200_2:
e70236a8
JB
7452 case GC_CLOCK_100_200:
7453 return 200000;
7454 case GC_CLOCK_166_250:
7455 return 250000;
7456 case GC_CLOCK_100_133:
e907f170 7457 return 133333;
1b1d2716
VS
7458 case GC_CLOCK_133_266:
7459 case GC_CLOCK_133_266_2:
7460 case GC_CLOCK_166_266:
7461 return 266667;
e70236a8 7462 }
79e53945 7463
e70236a8
JB
7464 /* Shouldn't happen */
7465 return 0;
7466}
79e53945 7467
1353c4fb 7468static int i830_get_display_clock_speed(struct drm_i915_private *dev_priv)
e70236a8 7469{
e907f170 7470 return 133333;
79e53945
JB
7471}
7472
1353c4fb 7473static unsigned int intel_hpll_vco(struct drm_i915_private *dev_priv)
34edce2f 7474{
34edce2f
VS
7475 static const unsigned int blb_vco[8] = {
7476 [0] = 3200000,
7477 [1] = 4000000,
7478 [2] = 5333333,
7479 [3] = 4800000,
7480 [4] = 6400000,
7481 };
7482 static const unsigned int pnv_vco[8] = {
7483 [0] = 3200000,
7484 [1] = 4000000,
7485 [2] = 5333333,
7486 [3] = 4800000,
7487 [4] = 2666667,
7488 };
7489 static const unsigned int cl_vco[8] = {
7490 [0] = 3200000,
7491 [1] = 4000000,
7492 [2] = 5333333,
7493 [3] = 6400000,
7494 [4] = 3333333,
7495 [5] = 3566667,
7496 [6] = 4266667,
7497 };
7498 static const unsigned int elk_vco[8] = {
7499 [0] = 3200000,
7500 [1] = 4000000,
7501 [2] = 5333333,
7502 [3] = 4800000,
7503 };
7504 static const unsigned int ctg_vco[8] = {
7505 [0] = 3200000,
7506 [1] = 4000000,
7507 [2] = 5333333,
7508 [3] = 6400000,
7509 [4] = 2666667,
7510 [5] = 4266667,
7511 };
7512 const unsigned int *vco_table;
7513 unsigned int vco;
7514 uint8_t tmp = 0;
7515
7516 /* FIXME other chipsets? */
50a0bc90 7517 if (IS_GM45(dev_priv))
34edce2f 7518 vco_table = ctg_vco;
9beb5fea 7519 else if (IS_G4X(dev_priv))
34edce2f 7520 vco_table = elk_vco;
1353c4fb 7521 else if (IS_CRESTLINE(dev_priv))
34edce2f 7522 vco_table = cl_vco;
1353c4fb 7523 else if (IS_PINEVIEW(dev_priv))
34edce2f 7524 vco_table = pnv_vco;
1353c4fb 7525 else if (IS_G33(dev_priv))
34edce2f
VS
7526 vco_table = blb_vco;
7527 else
7528 return 0;
7529
1353c4fb 7530 tmp = I915_READ(IS_MOBILE(dev_priv) ? HPLLVCO_MOBILE : HPLLVCO);
34edce2f
VS
7531
7532 vco = vco_table[tmp & 0x7];
7533 if (vco == 0)
7534 DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp);
7535 else
7536 DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco);
7537
7538 return vco;
7539}
7540
1353c4fb 7541static int gm45_get_display_clock_speed(struct drm_i915_private *dev_priv)
34edce2f 7542{
1353c4fb
VS
7543 struct pci_dev *pdev = dev_priv->drm.pdev;
7544 unsigned int cdclk_sel, vco = intel_hpll_vco(dev_priv);
34edce2f
VS
7545 uint16_t tmp = 0;
7546
52a05c30 7547 pci_read_config_word(pdev, GCFGC, &tmp);
34edce2f
VS
7548
7549 cdclk_sel = (tmp >> 12) & 0x1;
7550
7551 switch (vco) {
7552 case 2666667:
7553 case 4000000:
7554 case 5333333:
7555 return cdclk_sel ? 333333 : 222222;
7556 case 3200000:
7557 return cdclk_sel ? 320000 : 228571;
7558 default:
7559 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp);
7560 return 222222;
7561 }
7562}
7563
1353c4fb 7564static int i965gm_get_display_clock_speed(struct drm_i915_private *dev_priv)
34edce2f 7565{
1353c4fb 7566 struct pci_dev *pdev = dev_priv->drm.pdev;
34edce2f
VS
7567 static const uint8_t div_3200[] = { 16, 10, 8 };
7568 static const uint8_t div_4000[] = { 20, 12, 10 };
7569 static const uint8_t div_5333[] = { 24, 16, 14 };
7570 const uint8_t *div_table;
1353c4fb 7571 unsigned int cdclk_sel, vco = intel_hpll_vco(dev_priv);
34edce2f
VS
7572 uint16_t tmp = 0;
7573
52a05c30 7574 pci_read_config_word(pdev, GCFGC, &tmp);
34edce2f
VS
7575
7576 cdclk_sel = ((tmp >> 8) & 0x1f) - 1;
7577
7578 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7579 goto fail;
7580
7581 switch (vco) {
7582 case 3200000:
7583 div_table = div_3200;
7584 break;
7585 case 4000000:
7586 div_table = div_4000;
7587 break;
7588 case 5333333:
7589 div_table = div_5333;
7590 break;
7591 default:
7592 goto fail;
7593 }
7594
7595 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7596
caf4e252 7597fail:
34edce2f
VS
7598 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp);
7599 return 200000;
7600}
7601
1353c4fb 7602static int g33_get_display_clock_speed(struct drm_i915_private *dev_priv)
34edce2f 7603{
1353c4fb 7604 struct pci_dev *pdev = dev_priv->drm.pdev;
34edce2f
VS
7605 static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 };
7606 static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 };
7607 static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 };
7608 static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 };
7609 const uint8_t *div_table;
1353c4fb 7610 unsigned int cdclk_sel, vco = intel_hpll_vco(dev_priv);
34edce2f
VS
7611 uint16_t tmp = 0;
7612
52a05c30 7613 pci_read_config_word(pdev, GCFGC, &tmp);
34edce2f
VS
7614
7615 cdclk_sel = (tmp >> 4) & 0x7;
7616
7617 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7618 goto fail;
7619
7620 switch (vco) {
7621 case 3200000:
7622 div_table = div_3200;
7623 break;
7624 case 4000000:
7625 div_table = div_4000;
7626 break;
7627 case 4800000:
7628 div_table = div_4800;
7629 break;
7630 case 5333333:
7631 div_table = div_5333;
7632 break;
7633 default:
7634 goto fail;
7635 }
7636
7637 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7638
caf4e252 7639fail:
34edce2f
VS
7640 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp);
7641 return 190476;
7642}
7643
2c07245f 7644static void
a65851af 7645intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
2c07245f 7646{
a65851af
VS
7647 while (*num > DATA_LINK_M_N_MASK ||
7648 *den > DATA_LINK_M_N_MASK) {
2c07245f
ZW
7649 *num >>= 1;
7650 *den >>= 1;
7651 }
7652}
7653
a65851af
VS
7654static void compute_m_n(unsigned int m, unsigned int n,
7655 uint32_t *ret_m, uint32_t *ret_n)
7656{
7657 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
7658 *ret_m = div_u64((uint64_t) m * *ret_n, n);
7659 intel_reduce_m_n_ratio(ret_m, ret_n);
7660}
7661
e69d0bc1
DV
7662void
7663intel_link_compute_m_n(int bits_per_pixel, int nlanes,
7664 int pixel_clock, int link_clock,
7665 struct intel_link_m_n *m_n)
2c07245f 7666{
e69d0bc1 7667 m_n->tu = 64;
a65851af
VS
7668
7669 compute_m_n(bits_per_pixel * pixel_clock,
7670 link_clock * nlanes * 8,
7671 &m_n->gmch_m, &m_n->gmch_n);
7672
7673 compute_m_n(pixel_clock, link_clock,
7674 &m_n->link_m, &m_n->link_n);
2c07245f
ZW
7675}
7676
a7615030
CW
7677static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
7678{
d330a953
JN
7679 if (i915.panel_use_ssc >= 0)
7680 return i915.panel_use_ssc != 0;
41aa3448 7681 return dev_priv->vbt.lvds_use_ssc
435793df 7682 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
a7615030
CW
7683}
7684
7429e9d4 7685static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
c65d77d8 7686{
7df00d7a 7687 return (1 << dpll->n) << 16 | dpll->m2;
7429e9d4 7688}
f47709a9 7689
7429e9d4
DV
7690static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
7691{
7692 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
c65d77d8
JB
7693}
7694
f47709a9 7695static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
190f68c5 7696 struct intel_crtc_state *crtc_state,
9e2c8475 7697 struct dpll *reduced_clock)
a7516a05 7698{
9b1e14f4 7699 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
a7516a05
JB
7700 u32 fp, fp2 = 0;
7701
9b1e14f4 7702 if (IS_PINEVIEW(dev_priv)) {
190f68c5 7703 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
a7516a05 7704 if (reduced_clock)
7429e9d4 7705 fp2 = pnv_dpll_compute_fp(reduced_clock);
a7516a05 7706 } else {
190f68c5 7707 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
a7516a05 7708 if (reduced_clock)
7429e9d4 7709 fp2 = i9xx_dpll_compute_fp(reduced_clock);
a7516a05
JB
7710 }
7711
190f68c5 7712 crtc_state->dpll_hw_state.fp0 = fp;
a7516a05 7713
f47709a9 7714 crtc->lowfreq_avail = false;
2d84d2b3 7715 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ab585dea 7716 reduced_clock) {
190f68c5 7717 crtc_state->dpll_hw_state.fp1 = fp2;
f47709a9 7718 crtc->lowfreq_avail = true;
a7516a05 7719 } else {
190f68c5 7720 crtc_state->dpll_hw_state.fp1 = fp;
a7516a05
JB
7721 }
7722}
7723
5e69f97f
CML
7724static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
7725 pipe)
89b667f8
JB
7726{
7727 u32 reg_val;
7728
7729 /*
7730 * PLLB opamp always calibrates to max value of 0x3f, force enable it
7731 * and set it to a reasonable value instead.
7732 */
ab3c759a 7733 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8
JB
7734 reg_val &= 0xffffff00;
7735 reg_val |= 0x00000030;
ab3c759a 7736 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 7737
ab3c759a 7738 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
7739 reg_val &= 0x8cffffff;
7740 reg_val = 0x8c000000;
ab3c759a 7741 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8 7742
ab3c759a 7743 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8 7744 reg_val &= 0xffffff00;
ab3c759a 7745 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 7746
ab3c759a 7747 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
7748 reg_val &= 0x00ffffff;
7749 reg_val |= 0xb0000000;
ab3c759a 7750 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8
JB
7751}
7752
b551842d
DV
7753static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
7754 struct intel_link_m_n *m_n)
7755{
7756 struct drm_device *dev = crtc->base.dev;
fac5e23e 7757 struct drm_i915_private *dev_priv = to_i915(dev);
b551842d
DV
7758 int pipe = crtc->pipe;
7759
e3b95f1e
DV
7760 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7761 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
7762 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
7763 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
b551842d
DV
7764}
7765
7766static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
f769cd24
VK
7767 struct intel_link_m_n *m_n,
7768 struct intel_link_m_n *m2_n2)
b551842d 7769{
6315b5d3 7770 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
b551842d 7771 int pipe = crtc->pipe;
6e3c9717 7772 enum transcoder transcoder = crtc->config->cpu_transcoder;
b551842d 7773
6315b5d3 7774 if (INTEL_GEN(dev_priv) >= 5) {
b551842d
DV
7775 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
7776 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
7777 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
7778 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
f769cd24
VK
7779 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
7780 * for gen < 8) and if DRRS is supported (to make sure the
7781 * registers are not unnecessarily accessed).
7782 */
920a14b2
TU
7783 if (m2_n2 && (IS_CHERRYVIEW(dev_priv) ||
7784 INTEL_GEN(dev_priv) < 8) && crtc->config->has_drrs) {
f769cd24
VK
7785 I915_WRITE(PIPE_DATA_M2(transcoder),
7786 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
7787 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
7788 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
7789 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
7790 }
b551842d 7791 } else {
e3b95f1e
DV
7792 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7793 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
7794 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
7795 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
b551842d
DV
7796 }
7797}
7798
fe3cd48d 7799void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
03afc4a2 7800{
fe3cd48d
R
7801 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
7802
7803 if (m_n == M1_N1) {
7804 dp_m_n = &crtc->config->dp_m_n;
7805 dp_m2_n2 = &crtc->config->dp_m2_n2;
7806 } else if (m_n == M2_N2) {
7807
7808 /*
7809 * M2_N2 registers are not supported. Hence m2_n2 divider value
7810 * needs to be programmed into M1_N1.
7811 */
7812 dp_m_n = &crtc->config->dp_m2_n2;
7813 } else {
7814 DRM_ERROR("Unsupported divider value\n");
7815 return;
7816 }
7817
6e3c9717
ACO
7818 if (crtc->config->has_pch_encoder)
7819 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
03afc4a2 7820 else
fe3cd48d 7821 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
03afc4a2
DV
7822}
7823
251ac862
DV
7824static void vlv_compute_dpll(struct intel_crtc *crtc,
7825 struct intel_crtc_state *pipe_config)
bdd4b6a6 7826{
03ed5cbf 7827 pipe_config->dpll_hw_state.dpll = DPLL_INTEGRATED_REF_CLK_VLV |
cd2d34d9 7828 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
03ed5cbf
VS
7829 if (crtc->pipe != PIPE_A)
7830 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
bdd4b6a6 7831
cd2d34d9 7832 /* DPLL not used with DSI, but still need the rest set up */
d7edc4e5 7833 if (!intel_crtc_has_type(pipe_config, INTEL_OUTPUT_DSI))
cd2d34d9
VS
7834 pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE |
7835 DPLL_EXT_BUFFER_ENABLE_VLV;
7836
03ed5cbf
VS
7837 pipe_config->dpll_hw_state.dpll_md =
7838 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
7839}
bdd4b6a6 7840
03ed5cbf
VS
7841static void chv_compute_dpll(struct intel_crtc *crtc,
7842 struct intel_crtc_state *pipe_config)
7843{
7844 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV |
cd2d34d9 7845 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
03ed5cbf
VS
7846 if (crtc->pipe != PIPE_A)
7847 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7848
cd2d34d9 7849 /* DPLL not used with DSI, but still need the rest set up */
d7edc4e5 7850 if (!intel_crtc_has_type(pipe_config, INTEL_OUTPUT_DSI))
cd2d34d9
VS
7851 pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE;
7852
03ed5cbf
VS
7853 pipe_config->dpll_hw_state.dpll_md =
7854 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
bdd4b6a6
DV
7855}
7856
d288f65f 7857static void vlv_prepare_pll(struct intel_crtc *crtc,
5cec258b 7858 const struct intel_crtc_state *pipe_config)
a0c4da24 7859{
f47709a9 7860 struct drm_device *dev = crtc->base.dev;
fac5e23e 7861 struct drm_i915_private *dev_priv = to_i915(dev);
cd2d34d9 7862 enum pipe pipe = crtc->pipe;
bdd4b6a6 7863 u32 mdiv;
a0c4da24 7864 u32 bestn, bestm1, bestm2, bestp1, bestp2;
bdd4b6a6 7865 u32 coreclk, reg_val;
a0c4da24 7866
cd2d34d9
VS
7867 /* Enable Refclk */
7868 I915_WRITE(DPLL(pipe),
7869 pipe_config->dpll_hw_state.dpll &
7870 ~(DPLL_VCO_ENABLE | DPLL_EXT_BUFFER_ENABLE_VLV));
7871
7872 /* No need to actually set up the DPLL with DSI */
7873 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
7874 return;
7875
a580516d 7876 mutex_lock(&dev_priv->sb_lock);
09153000 7877
d288f65f
VS
7878 bestn = pipe_config->dpll.n;
7879 bestm1 = pipe_config->dpll.m1;
7880 bestm2 = pipe_config->dpll.m2;
7881 bestp1 = pipe_config->dpll.p1;
7882 bestp2 = pipe_config->dpll.p2;
a0c4da24 7883
89b667f8
JB
7884 /* See eDP HDMI DPIO driver vbios notes doc */
7885
7886 /* PLL B needs special handling */
bdd4b6a6 7887 if (pipe == PIPE_B)
5e69f97f 7888 vlv_pllb_recal_opamp(dev_priv, pipe);
89b667f8
JB
7889
7890 /* Set up Tx target for periodic Rcomp update */
ab3c759a 7891 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
89b667f8
JB
7892
7893 /* Disable target IRef on PLL */
ab3c759a 7894 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
89b667f8 7895 reg_val &= 0x00ffffff;
ab3c759a 7896 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
89b667f8
JB
7897
7898 /* Disable fast lock */
ab3c759a 7899 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
89b667f8
JB
7900
7901 /* Set idtafcrecal before PLL is enabled */
a0c4da24
JB
7902 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
7903 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
7904 mdiv |= ((bestn << DPIO_N_SHIFT));
a0c4da24 7905 mdiv |= (1 << DPIO_K_SHIFT);
7df5080b
JB
7906
7907 /*
7908 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
7909 * but we don't support that).
7910 * Note: don't use the DAC post divider as it seems unstable.
7911 */
7912 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
ab3c759a 7913 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 7914
a0c4da24 7915 mdiv |= DPIO_ENABLE_CALIBRATION;
ab3c759a 7916 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 7917
89b667f8 7918 /* Set HBR and RBR LPF coefficients */
d288f65f 7919 if (pipe_config->port_clock == 162000 ||
2d84d2b3
VS
7920 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_ANALOG) ||
7921 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_HDMI))
ab3c759a 7922 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
885b0120 7923 0x009f0003);
89b667f8 7924 else
ab3c759a 7925 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
89b667f8
JB
7926 0x00d0000f);
7927
37a5650b 7928 if (intel_crtc_has_dp_encoder(pipe_config)) {
89b667f8 7929 /* Use SSC source */
bdd4b6a6 7930 if (pipe == PIPE_A)
ab3c759a 7931 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7932 0x0df40000);
7933 else
ab3c759a 7934 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7935 0x0df70000);
7936 } else { /* HDMI or VGA */
7937 /* Use bend source */
bdd4b6a6 7938 if (pipe == PIPE_A)
ab3c759a 7939 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7940 0x0df70000);
7941 else
ab3c759a 7942 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7943 0x0df40000);
7944 }
a0c4da24 7945
ab3c759a 7946 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
89b667f8 7947 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
2210ce7f 7948 if (intel_crtc_has_dp_encoder(crtc->config))
89b667f8 7949 coreclk |= 0x01000000;
ab3c759a 7950 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
a0c4da24 7951
ab3c759a 7952 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
a580516d 7953 mutex_unlock(&dev_priv->sb_lock);
a0c4da24
JB
7954}
7955
d288f65f 7956static void chv_prepare_pll(struct intel_crtc *crtc,
5cec258b 7957 const struct intel_crtc_state *pipe_config)
9d556c99
CML
7958{
7959 struct drm_device *dev = crtc->base.dev;
fac5e23e 7960 struct drm_i915_private *dev_priv = to_i915(dev);
cd2d34d9 7961 enum pipe pipe = crtc->pipe;
9d556c99 7962 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9cbe40c1 7963 u32 loopfilter, tribuf_calcntr;
9d556c99 7964 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
a945ce7e 7965 u32 dpio_val;
9cbe40c1 7966 int vco;
9d556c99 7967
cd2d34d9
VS
7968 /* Enable Refclk and SSC */
7969 I915_WRITE(DPLL(pipe),
7970 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
7971
7972 /* No need to actually set up the DPLL with DSI */
7973 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
7974 return;
7975
d288f65f
VS
7976 bestn = pipe_config->dpll.n;
7977 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7978 bestm1 = pipe_config->dpll.m1;
7979 bestm2 = pipe_config->dpll.m2 >> 22;
7980 bestp1 = pipe_config->dpll.p1;
7981 bestp2 = pipe_config->dpll.p2;
9cbe40c1 7982 vco = pipe_config->dpll.vco;
a945ce7e 7983 dpio_val = 0;
9cbe40c1 7984 loopfilter = 0;
9d556c99 7985
a580516d 7986 mutex_lock(&dev_priv->sb_lock);
9d556c99 7987
9d556c99
CML
7988 /* p1 and p2 divider */
7989 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
7990 5 << DPIO_CHV_S1_DIV_SHIFT |
7991 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
7992 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
7993 1 << DPIO_CHV_K_DIV_SHIFT);
7994
7995 /* Feedback post-divider - m2 */
7996 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
7997
7998 /* Feedback refclk divider - n and m1 */
7999 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
8000 DPIO_CHV_M1_DIV_BY_2 |
8001 1 << DPIO_CHV_N_DIV_SHIFT);
8002
8003 /* M2 fraction division */
25a25dfc 8004 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
9d556c99
CML
8005
8006 /* M2 fraction division enable */
a945ce7e
VP
8007 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
8008 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
8009 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
8010 if (bestm2_frac)
8011 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
8012 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
9d556c99 8013
de3a0fde
VP
8014 /* Program digital lock detect threshold */
8015 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
8016 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
8017 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
8018 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
8019 if (!bestm2_frac)
8020 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
8021 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
8022
9d556c99 8023 /* Loop filter */
9cbe40c1
VP
8024 if (vco == 5400000) {
8025 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
8026 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
8027 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
8028 tribuf_calcntr = 0x9;
8029 } else if (vco <= 6200000) {
8030 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
8031 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
8032 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
8033 tribuf_calcntr = 0x9;
8034 } else if (vco <= 6480000) {
8035 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
8036 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
8037 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
8038 tribuf_calcntr = 0x8;
8039 } else {
8040 /* Not supported. Apply the same limits as in the max case */
8041 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
8042 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
8043 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
8044 tribuf_calcntr = 0;
8045 }
9d556c99
CML
8046 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
8047
968040b2 8048 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
9cbe40c1
VP
8049 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
8050 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
8051 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
8052
9d556c99
CML
8053 /* AFC Recal */
8054 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
8055 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
8056 DPIO_AFC_RECAL);
8057
a580516d 8058 mutex_unlock(&dev_priv->sb_lock);
9d556c99
CML
8059}
8060
d288f65f
VS
8061/**
8062 * vlv_force_pll_on - forcibly enable just the PLL
8063 * @dev_priv: i915 private structure
8064 * @pipe: pipe PLL to enable
8065 * @dpll: PLL configuration
8066 *
8067 * Enable the PLL for @pipe using the supplied @dpll config. To be used
8068 * in cases where we need the PLL enabled even when @pipe is not going to
8069 * be enabled.
8070 */
30ad9814 8071int vlv_force_pll_on(struct drm_i915_private *dev_priv, enum pipe pipe,
3f36b937 8072 const struct dpll *dpll)
d288f65f 8073{
b91eb5cc 8074 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
3f36b937
TU
8075 struct intel_crtc_state *pipe_config;
8076
8077 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
8078 if (!pipe_config)
8079 return -ENOMEM;
8080
8081 pipe_config->base.crtc = &crtc->base;
8082 pipe_config->pixel_multiplier = 1;
8083 pipe_config->dpll = *dpll;
d288f65f 8084
30ad9814 8085 if (IS_CHERRYVIEW(dev_priv)) {
3f36b937
TU
8086 chv_compute_dpll(crtc, pipe_config);
8087 chv_prepare_pll(crtc, pipe_config);
8088 chv_enable_pll(crtc, pipe_config);
d288f65f 8089 } else {
3f36b937
TU
8090 vlv_compute_dpll(crtc, pipe_config);
8091 vlv_prepare_pll(crtc, pipe_config);
8092 vlv_enable_pll(crtc, pipe_config);
d288f65f 8093 }
3f36b937
TU
8094
8095 kfree(pipe_config);
8096
8097 return 0;
d288f65f
VS
8098}
8099
8100/**
8101 * vlv_force_pll_off - forcibly disable just the PLL
8102 * @dev_priv: i915 private structure
8103 * @pipe: pipe PLL to disable
8104 *
8105 * Disable the PLL for @pipe. To be used in cases where we need
8106 * the PLL enabled even when @pipe is not going to be enabled.
8107 */
30ad9814 8108void vlv_force_pll_off(struct drm_i915_private *dev_priv, enum pipe pipe)
d288f65f 8109{
30ad9814
VS
8110 if (IS_CHERRYVIEW(dev_priv))
8111 chv_disable_pll(dev_priv, pipe);
d288f65f 8112 else
30ad9814 8113 vlv_disable_pll(dev_priv, pipe);
d288f65f
VS
8114}
8115
251ac862
DV
8116static void i9xx_compute_dpll(struct intel_crtc *crtc,
8117 struct intel_crtc_state *crtc_state,
9e2c8475 8118 struct dpll *reduced_clock)
eb1cbe48 8119{
9b1e14f4 8120 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
eb1cbe48 8121 u32 dpll;
190f68c5 8122 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 8123
190f68c5 8124 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 8125
eb1cbe48
DV
8126 dpll = DPLL_VGA_MODE_DIS;
8127
2d84d2b3 8128 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS))
eb1cbe48
DV
8129 dpll |= DPLLB_MODE_LVDS;
8130 else
8131 dpll |= DPLLB_MODE_DAC_SERIAL;
6cc5f341 8132
50a0bc90 8133 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv) || IS_G33(dev_priv)) {
190f68c5 8134 dpll |= (crtc_state->pixel_multiplier - 1)
198a037f 8135 << SDVO_MULTIPLIER_SHIFT_HIRES;
eb1cbe48 8136 }
198a037f 8137
3d6e9ee0
VS
8138 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_SDVO) ||
8139 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI))
4a33e48d 8140 dpll |= DPLL_SDVO_HIGH_SPEED;
198a037f 8141
37a5650b 8142 if (intel_crtc_has_dp_encoder(crtc_state))
4a33e48d 8143 dpll |= DPLL_SDVO_HIGH_SPEED;
eb1cbe48
DV
8144
8145 /* compute bitmask from p1 value */
9b1e14f4 8146 if (IS_PINEVIEW(dev_priv))
eb1cbe48
DV
8147 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
8148 else {
8149 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
9beb5fea 8150 if (IS_G4X(dev_priv) && reduced_clock)
eb1cbe48
DV
8151 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
8152 }
8153 switch (clock->p2) {
8154 case 5:
8155 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
8156 break;
8157 case 7:
8158 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
8159 break;
8160 case 10:
8161 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
8162 break;
8163 case 14:
8164 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
8165 break;
8166 }
9b1e14f4 8167 if (INTEL_GEN(dev_priv) >= 4)
eb1cbe48
DV
8168 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
8169
190f68c5 8170 if (crtc_state->sdvo_tv_clock)
eb1cbe48 8171 dpll |= PLL_REF_INPUT_TVCLKINBC;
2d84d2b3 8172 else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ceb41007 8173 intel_panel_use_ssc(dev_priv))
eb1cbe48
DV
8174 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
8175 else
8176 dpll |= PLL_REF_INPUT_DREFCLK;
8177
8178 dpll |= DPLL_VCO_ENABLE;
190f68c5 8179 crtc_state->dpll_hw_state.dpll = dpll;
8bcc2795 8180
9b1e14f4 8181 if (INTEL_GEN(dev_priv) >= 4) {
190f68c5 8182 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
ef1b460d 8183 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
190f68c5 8184 crtc_state->dpll_hw_state.dpll_md = dpll_md;
eb1cbe48
DV
8185 }
8186}
8187
251ac862
DV
8188static void i8xx_compute_dpll(struct intel_crtc *crtc,
8189 struct intel_crtc_state *crtc_state,
9e2c8475 8190 struct dpll *reduced_clock)
eb1cbe48 8191{
f47709a9 8192 struct drm_device *dev = crtc->base.dev;
fac5e23e 8193 struct drm_i915_private *dev_priv = to_i915(dev);
eb1cbe48 8194 u32 dpll;
190f68c5 8195 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 8196
190f68c5 8197 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 8198
eb1cbe48
DV
8199 dpll = DPLL_VGA_MODE_DIS;
8200
2d84d2b3 8201 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
eb1cbe48
DV
8202 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
8203 } else {
8204 if (clock->p1 == 2)
8205 dpll |= PLL_P1_DIVIDE_BY_TWO;
8206 else
8207 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
8208 if (clock->p2 == 4)
8209 dpll |= PLL_P2_DIVIDE_BY_4;
8210 }
8211
50a0bc90
TU
8212 if (!IS_I830(dev_priv) &&
8213 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DVO))
4a33e48d
DV
8214 dpll |= DPLL_DVO_2X_MODE;
8215
2d84d2b3 8216 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ceb41007 8217 intel_panel_use_ssc(dev_priv))
eb1cbe48
DV
8218 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
8219 else
8220 dpll |= PLL_REF_INPUT_DREFCLK;
8221
8222 dpll |= DPLL_VCO_ENABLE;
190f68c5 8223 crtc_state->dpll_hw_state.dpll = dpll;
eb1cbe48
DV
8224}
8225
8a654f3b 8226static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
b0e77b9c 8227{
6315b5d3 8228 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
b0e77b9c 8229 enum pipe pipe = intel_crtc->pipe;
6e3c9717 8230 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
7c5f93b0 8231 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
1caea6e9
VS
8232 uint32_t crtc_vtotal, crtc_vblank_end;
8233 int vsyncshift = 0;
4d8a62ea
DV
8234
8235 /* We need to be careful not to changed the adjusted mode, for otherwise
8236 * the hw state checker will get angry at the mismatch. */
8237 crtc_vtotal = adjusted_mode->crtc_vtotal;
8238 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
b0e77b9c 8239
609aeaca 8240 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
b0e77b9c 8241 /* the chip adds 2 halflines automatically */
4d8a62ea
DV
8242 crtc_vtotal -= 1;
8243 crtc_vblank_end -= 1;
609aeaca 8244
2d84d2b3 8245 if (intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_SDVO))
609aeaca
VS
8246 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
8247 else
8248 vsyncshift = adjusted_mode->crtc_hsync_start -
8249 adjusted_mode->crtc_htotal / 2;
1caea6e9
VS
8250 if (vsyncshift < 0)
8251 vsyncshift += adjusted_mode->crtc_htotal;
b0e77b9c
PZ
8252 }
8253
6315b5d3 8254 if (INTEL_GEN(dev_priv) > 3)
fe2b8f9d 8255 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
b0e77b9c 8256
fe2b8f9d 8257 I915_WRITE(HTOTAL(cpu_transcoder),
b0e77b9c
PZ
8258 (adjusted_mode->crtc_hdisplay - 1) |
8259 ((adjusted_mode->crtc_htotal - 1) << 16));
fe2b8f9d 8260 I915_WRITE(HBLANK(cpu_transcoder),
b0e77b9c
PZ
8261 (adjusted_mode->crtc_hblank_start - 1) |
8262 ((adjusted_mode->crtc_hblank_end - 1) << 16));
fe2b8f9d 8263 I915_WRITE(HSYNC(cpu_transcoder),
b0e77b9c
PZ
8264 (adjusted_mode->crtc_hsync_start - 1) |
8265 ((adjusted_mode->crtc_hsync_end - 1) << 16));
8266
fe2b8f9d 8267 I915_WRITE(VTOTAL(cpu_transcoder),
b0e77b9c 8268 (adjusted_mode->crtc_vdisplay - 1) |
4d8a62ea 8269 ((crtc_vtotal - 1) << 16));
fe2b8f9d 8270 I915_WRITE(VBLANK(cpu_transcoder),
b0e77b9c 8271 (adjusted_mode->crtc_vblank_start - 1) |
4d8a62ea 8272 ((crtc_vblank_end - 1) << 16));
fe2b8f9d 8273 I915_WRITE(VSYNC(cpu_transcoder),
b0e77b9c
PZ
8274 (adjusted_mode->crtc_vsync_start - 1) |
8275 ((adjusted_mode->crtc_vsync_end - 1) << 16));
8276
b5e508d4
PZ
8277 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
8278 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
8279 * documented on the DDI_FUNC_CTL register description, EDP Input Select
8280 * bits. */
772c2a51 8281 if (IS_HASWELL(dev_priv) && cpu_transcoder == TRANSCODER_EDP &&
b5e508d4
PZ
8282 (pipe == PIPE_B || pipe == PIPE_C))
8283 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
8284
bc58be60
JN
8285}
8286
8287static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc)
8288{
8289 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 8290 struct drm_i915_private *dev_priv = to_i915(dev);
bc58be60
JN
8291 enum pipe pipe = intel_crtc->pipe;
8292
b0e77b9c
PZ
8293 /* pipesrc controls the size that is scaled from, which should
8294 * always be the user's requested size.
8295 */
8296 I915_WRITE(PIPESRC(pipe),
6e3c9717
ACO
8297 ((intel_crtc->config->pipe_src_w - 1) << 16) |
8298 (intel_crtc->config->pipe_src_h - 1));
b0e77b9c
PZ
8299}
8300
1bd1bd80 8301static void intel_get_pipe_timings(struct intel_crtc *crtc,
5cec258b 8302 struct intel_crtc_state *pipe_config)
1bd1bd80
DV
8303{
8304 struct drm_device *dev = crtc->base.dev;
fac5e23e 8305 struct drm_i915_private *dev_priv = to_i915(dev);
1bd1bd80
DV
8306 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
8307 uint32_t tmp;
8308
8309 tmp = I915_READ(HTOTAL(cpu_transcoder));
2d112de7
ACO
8310 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
8311 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 8312 tmp = I915_READ(HBLANK(cpu_transcoder));
2d112de7
ACO
8313 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
8314 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 8315 tmp = I915_READ(HSYNC(cpu_transcoder));
2d112de7
ACO
8316 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
8317 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
8318
8319 tmp = I915_READ(VTOTAL(cpu_transcoder));
2d112de7
ACO
8320 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
8321 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 8322 tmp = I915_READ(VBLANK(cpu_transcoder));
2d112de7
ACO
8323 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
8324 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 8325 tmp = I915_READ(VSYNC(cpu_transcoder));
2d112de7
ACO
8326 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
8327 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
8328
8329 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
2d112de7
ACO
8330 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
8331 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
8332 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
1bd1bd80 8333 }
bc58be60
JN
8334}
8335
8336static void intel_get_pipe_src_size(struct intel_crtc *crtc,
8337 struct intel_crtc_state *pipe_config)
8338{
8339 struct drm_device *dev = crtc->base.dev;
fac5e23e 8340 struct drm_i915_private *dev_priv = to_i915(dev);
bc58be60 8341 u32 tmp;
1bd1bd80
DV
8342
8343 tmp = I915_READ(PIPESRC(crtc->pipe));
37327abd
VS
8344 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
8345 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
8346
2d112de7
ACO
8347 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
8348 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
1bd1bd80
DV
8349}
8350
f6a83288 8351void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5cec258b 8352 struct intel_crtc_state *pipe_config)
babea61d 8353{
2d112de7
ACO
8354 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
8355 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
8356 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
8357 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
babea61d 8358
2d112de7
ACO
8359 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
8360 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
8361 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
8362 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
babea61d 8363
2d112de7 8364 mode->flags = pipe_config->base.adjusted_mode.flags;
cd13f5ab 8365 mode->type = DRM_MODE_TYPE_DRIVER;
babea61d 8366
2d112de7
ACO
8367 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
8368 mode->flags |= pipe_config->base.adjusted_mode.flags;
cd13f5ab
ML
8369
8370 mode->hsync = drm_mode_hsync(mode);
8371 mode->vrefresh = drm_mode_vrefresh(mode);
8372 drm_mode_set_name(mode);
babea61d
JB
8373}
8374
84b046f3
DV
8375static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
8376{
6315b5d3 8377 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
84b046f3
DV
8378 uint32_t pipeconf;
8379
9f11a9e4 8380 pipeconf = 0;
84b046f3 8381
b6b5d049
VS
8382 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
8383 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
8384 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
67c72a12 8385
6e3c9717 8386 if (intel_crtc->config->double_wide)
cf532bb2 8387 pipeconf |= PIPECONF_DOUBLE_WIDE;
84b046f3 8388
ff9ce46e 8389 /* only g4x and later have fancy bpc/dither controls */
9beb5fea
TU
8390 if (IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
8391 IS_CHERRYVIEW(dev_priv)) {
ff9ce46e 8392 /* Bspec claims that we can't use dithering for 30bpp pipes. */
6e3c9717 8393 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
ff9ce46e 8394 pipeconf |= PIPECONF_DITHER_EN |
84b046f3 8395 PIPECONF_DITHER_TYPE_SP;
84b046f3 8396
6e3c9717 8397 switch (intel_crtc->config->pipe_bpp) {
ff9ce46e
DV
8398 case 18:
8399 pipeconf |= PIPECONF_6BPC;
8400 break;
8401 case 24:
8402 pipeconf |= PIPECONF_8BPC;
8403 break;
8404 case 30:
8405 pipeconf |= PIPECONF_10BPC;
8406 break;
8407 default:
8408 /* Case prevented by intel_choose_pipe_bpp_dither. */
8409 BUG();
84b046f3
DV
8410 }
8411 }
8412
56b857a5 8413 if (HAS_PIPE_CXSR(dev_priv)) {
84b046f3
DV
8414 if (intel_crtc->lowfreq_avail) {
8415 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
8416 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
8417 } else {
8418 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
84b046f3
DV
8419 }
8420 }
8421
6e3c9717 8422 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
6315b5d3 8423 if (INTEL_GEN(dev_priv) < 4 ||
2d84d2b3 8424 intel_crtc_has_type(intel_crtc->config, INTEL_OUTPUT_SDVO))
efc2cfff
VS
8425 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
8426 else
8427 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
8428 } else
84b046f3
DV
8429 pipeconf |= PIPECONF_PROGRESSIVE;
8430
920a14b2 8431 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
666a4537 8432 intel_crtc->config->limited_color_range)
9f11a9e4 8433 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
9c8e09b7 8434
84b046f3
DV
8435 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
8436 POSTING_READ(PIPECONF(intel_crtc->pipe));
8437}
8438
81c97f52
ACO
8439static int i8xx_crtc_compute_clock(struct intel_crtc *crtc,
8440 struct intel_crtc_state *crtc_state)
8441{
8442 struct drm_device *dev = crtc->base.dev;
fac5e23e 8443 struct drm_i915_private *dev_priv = to_i915(dev);
1b6f4958 8444 const struct intel_limit *limit;
81c97f52
ACO
8445 int refclk = 48000;
8446
8447 memset(&crtc_state->dpll_hw_state, 0,
8448 sizeof(crtc_state->dpll_hw_state));
8449
2d84d2b3 8450 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
81c97f52
ACO
8451 if (intel_panel_use_ssc(dev_priv)) {
8452 refclk = dev_priv->vbt.lvds_ssc_freq;
8453 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
8454 }
8455
8456 limit = &intel_limits_i8xx_lvds;
2d84d2b3 8457 } else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DVO)) {
81c97f52
ACO
8458 limit = &intel_limits_i8xx_dvo;
8459 } else {
8460 limit = &intel_limits_i8xx_dac;
8461 }
8462
8463 if (!crtc_state->clock_set &&
8464 !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8465 refclk, NULL, &crtc_state->dpll)) {
8466 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8467 return -EINVAL;
8468 }
8469
8470 i8xx_compute_dpll(crtc, crtc_state, NULL);
8471
8472 return 0;
8473}
8474
19ec6693
ACO
8475static int g4x_crtc_compute_clock(struct intel_crtc *crtc,
8476 struct intel_crtc_state *crtc_state)
8477{
8478 struct drm_device *dev = crtc->base.dev;
fac5e23e 8479 struct drm_i915_private *dev_priv = to_i915(dev);
1b6f4958 8480 const struct intel_limit *limit;
19ec6693
ACO
8481 int refclk = 96000;
8482
8483 memset(&crtc_state->dpll_hw_state, 0,
8484 sizeof(crtc_state->dpll_hw_state));
8485
2d84d2b3 8486 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
19ec6693
ACO
8487 if (intel_panel_use_ssc(dev_priv)) {
8488 refclk = dev_priv->vbt.lvds_ssc_freq;
8489 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
8490 }
8491
8492 if (intel_is_dual_link_lvds(dev))
8493 limit = &intel_limits_g4x_dual_channel_lvds;
8494 else
8495 limit = &intel_limits_g4x_single_channel_lvds;
2d84d2b3
VS
8496 } else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI) ||
8497 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_ANALOG)) {
19ec6693 8498 limit = &intel_limits_g4x_hdmi;
2d84d2b3 8499 } else if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_SDVO)) {
19ec6693
ACO
8500 limit = &intel_limits_g4x_sdvo;
8501 } else {
8502 /* The option is for other outputs */
8503 limit = &intel_limits_i9xx_sdvo;
8504 }
8505
8506 if (!crtc_state->clock_set &&
8507 !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8508 refclk, NULL, &crtc_state->dpll)) {
8509 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8510 return -EINVAL;
8511 }
8512
8513 i9xx_compute_dpll(crtc, crtc_state, NULL);
8514
8515 return 0;
8516}
8517
70e8aa21
ACO
8518static int pnv_crtc_compute_clock(struct intel_crtc *crtc,
8519 struct intel_crtc_state *crtc_state)
8520{
8521 struct drm_device *dev = crtc->base.dev;
fac5e23e 8522 struct drm_i915_private *dev_priv = to_i915(dev);
1b6f4958 8523 const struct intel_limit *limit;
70e8aa21
ACO
8524 int refclk = 96000;
8525
8526 memset(&crtc_state->dpll_hw_state, 0,
8527 sizeof(crtc_state->dpll_hw_state));
8528
2d84d2b3 8529 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
70e8aa21
ACO
8530 if (intel_panel_use_ssc(dev_priv)) {
8531 refclk = dev_priv->vbt.lvds_ssc_freq;
8532 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
8533 }
8534
8535 limit = &intel_limits_pineview_lvds;
8536 } else {
8537 limit = &intel_limits_pineview_sdvo;
8538 }
8539
8540 if (!crtc_state->clock_set &&
8541 !pnv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8542 refclk, NULL, &crtc_state->dpll)) {
8543 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8544 return -EINVAL;
8545 }
8546
8547 i9xx_compute_dpll(crtc, crtc_state, NULL);
8548
8549 return 0;
8550}
8551
190f68c5
ACO
8552static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
8553 struct intel_crtc_state *crtc_state)
79e53945 8554{
c7653199 8555 struct drm_device *dev = crtc->base.dev;
fac5e23e 8556 struct drm_i915_private *dev_priv = to_i915(dev);
1b6f4958 8557 const struct intel_limit *limit;
81c97f52 8558 int refclk = 96000;
79e53945 8559
dd3cd74a
ACO
8560 memset(&crtc_state->dpll_hw_state, 0,
8561 sizeof(crtc_state->dpll_hw_state));
8562
2d84d2b3 8563 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
70e8aa21
ACO
8564 if (intel_panel_use_ssc(dev_priv)) {
8565 refclk = dev_priv->vbt.lvds_ssc_freq;
8566 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
8567 }
43565a06 8568
70e8aa21
ACO
8569 limit = &intel_limits_i9xx_lvds;
8570 } else {
8571 limit = &intel_limits_i9xx_sdvo;
81c97f52 8572 }
79e53945 8573
70e8aa21
ACO
8574 if (!crtc_state->clock_set &&
8575 !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8576 refclk, NULL, &crtc_state->dpll)) {
8577 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8578 return -EINVAL;
f47709a9 8579 }
7026d4ac 8580
81c97f52 8581 i9xx_compute_dpll(crtc, crtc_state, NULL);
79e53945 8582
c8f7a0db 8583 return 0;
f564048e
EA
8584}
8585
65b3d6a9
ACO
8586static int chv_crtc_compute_clock(struct intel_crtc *crtc,
8587 struct intel_crtc_state *crtc_state)
8588{
8589 int refclk = 100000;
1b6f4958 8590 const struct intel_limit *limit = &intel_limits_chv;
65b3d6a9
ACO
8591
8592 memset(&crtc_state->dpll_hw_state, 0,
8593 sizeof(crtc_state->dpll_hw_state));
8594
65b3d6a9
ACO
8595 if (!crtc_state->clock_set &&
8596 !chv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8597 refclk, NULL, &crtc_state->dpll)) {
8598 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8599 return -EINVAL;
8600 }
8601
8602 chv_compute_dpll(crtc, crtc_state);
8603
8604 return 0;
8605}
8606
8607static int vlv_crtc_compute_clock(struct intel_crtc *crtc,
8608 struct intel_crtc_state *crtc_state)
8609{
8610 int refclk = 100000;
1b6f4958 8611 const struct intel_limit *limit = &intel_limits_vlv;
65b3d6a9
ACO
8612
8613 memset(&crtc_state->dpll_hw_state, 0,
8614 sizeof(crtc_state->dpll_hw_state));
8615
65b3d6a9
ACO
8616 if (!crtc_state->clock_set &&
8617 !vlv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8618 refclk, NULL, &crtc_state->dpll)) {
8619 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8620 return -EINVAL;
8621 }
8622
8623 vlv_compute_dpll(crtc, crtc_state);
8624
8625 return 0;
8626}
8627
2fa2fe9a 8628static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5cec258b 8629 struct intel_crtc_state *pipe_config)
2fa2fe9a 8630{
6315b5d3 8631 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
2fa2fe9a
DV
8632 uint32_t tmp;
8633
50a0bc90
TU
8634 if (INTEL_GEN(dev_priv) <= 3 &&
8635 (IS_I830(dev_priv) || !IS_MOBILE(dev_priv)))
dc9e7dec
VS
8636 return;
8637
2fa2fe9a 8638 tmp = I915_READ(PFIT_CONTROL);
06922821
DV
8639 if (!(tmp & PFIT_ENABLE))
8640 return;
2fa2fe9a 8641
06922821 8642 /* Check whether the pfit is attached to our pipe. */
6315b5d3 8643 if (INTEL_GEN(dev_priv) < 4) {
2fa2fe9a
DV
8644 if (crtc->pipe != PIPE_B)
8645 return;
2fa2fe9a
DV
8646 } else {
8647 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
8648 return;
8649 }
8650
06922821 8651 pipe_config->gmch_pfit.control = tmp;
2fa2fe9a 8652 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
2fa2fe9a
DV
8653}
8654
acbec814 8655static void vlv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8656 struct intel_crtc_state *pipe_config)
acbec814
JB
8657{
8658 struct drm_device *dev = crtc->base.dev;
fac5e23e 8659 struct drm_i915_private *dev_priv = to_i915(dev);
acbec814 8660 int pipe = pipe_config->cpu_transcoder;
9e2c8475 8661 struct dpll clock;
acbec814 8662 u32 mdiv;
662c6ecb 8663 int refclk = 100000;
acbec814 8664
b521973b
VS
8665 /* In case of DSI, DPLL will not be used */
8666 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
f573de5a
SK
8667 return;
8668
a580516d 8669 mutex_lock(&dev_priv->sb_lock);
ab3c759a 8670 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
a580516d 8671 mutex_unlock(&dev_priv->sb_lock);
acbec814
JB
8672
8673 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
8674 clock.m2 = mdiv & DPIO_M2DIV_MASK;
8675 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
8676 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
8677 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
8678
dccbea3b 8679 pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock);
acbec814
JB
8680}
8681
5724dbd1
DL
8682static void
8683i9xx_get_initial_plane_config(struct intel_crtc *crtc,
8684 struct intel_initial_plane_config *plane_config)
1ad292b5
JB
8685{
8686 struct drm_device *dev = crtc->base.dev;
fac5e23e 8687 struct drm_i915_private *dev_priv = to_i915(dev);
1ad292b5
JB
8688 u32 val, base, offset;
8689 int pipe = crtc->pipe, plane = crtc->plane;
8690 int fourcc, pixel_format;
6761dd31 8691 unsigned int aligned_height;
b113d5ee 8692 struct drm_framebuffer *fb;
1b842c89 8693 struct intel_framebuffer *intel_fb;
1ad292b5 8694
42a7b088
DL
8695 val = I915_READ(DSPCNTR(plane));
8696 if (!(val & DISPLAY_PLANE_ENABLE))
8697 return;
8698
d9806c9f 8699 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 8700 if (!intel_fb) {
1ad292b5
JB
8701 DRM_DEBUG_KMS("failed to alloc fb\n");
8702 return;
8703 }
8704
1b842c89
DL
8705 fb = &intel_fb->base;
8706
6315b5d3 8707 if (INTEL_GEN(dev_priv) >= 4) {
18c5247e 8708 if (val & DISPPLANE_TILED) {
49af449b 8709 plane_config->tiling = I915_TILING_X;
18c5247e
DV
8710 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8711 }
8712 }
1ad292b5
JB
8713
8714 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 8715 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
8716 fb->pixel_format = fourcc;
8717 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
1ad292b5 8718
6315b5d3 8719 if (INTEL_GEN(dev_priv) >= 4) {
49af449b 8720 if (plane_config->tiling)
1ad292b5
JB
8721 offset = I915_READ(DSPTILEOFF(plane));
8722 else
8723 offset = I915_READ(DSPLINOFF(plane));
8724 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
8725 } else {
8726 base = I915_READ(DSPADDR(plane));
8727 }
8728 plane_config->base = base;
8729
8730 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
8731 fb->width = ((val >> 16) & 0xfff) + 1;
8732 fb->height = ((val >> 0) & 0xfff) + 1;
1ad292b5
JB
8733
8734 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 8735 fb->pitches[0] = val & 0xffffffc0;
1ad292b5 8736
b113d5ee 8737 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
8738 fb->pixel_format,
8739 fb->modifier[0]);
1ad292b5 8740
f37b5c2b 8741 plane_config->size = fb->pitches[0] * aligned_height;
1ad292b5 8742
2844a921
DL
8743 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8744 pipe_name(pipe), plane, fb->width, fb->height,
8745 fb->bits_per_pixel, base, fb->pitches[0],
8746 plane_config->size);
1ad292b5 8747
2d14030b 8748 plane_config->fb = intel_fb;
1ad292b5
JB
8749}
8750
70b23a98 8751static void chv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8752 struct intel_crtc_state *pipe_config)
70b23a98
VS
8753{
8754 struct drm_device *dev = crtc->base.dev;
fac5e23e 8755 struct drm_i915_private *dev_priv = to_i915(dev);
70b23a98
VS
8756 int pipe = pipe_config->cpu_transcoder;
8757 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9e2c8475 8758 struct dpll clock;
0d7b6b11 8759 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3;
70b23a98
VS
8760 int refclk = 100000;
8761
b521973b
VS
8762 /* In case of DSI, DPLL will not be used */
8763 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
8764 return;
8765
a580516d 8766 mutex_lock(&dev_priv->sb_lock);
70b23a98
VS
8767 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
8768 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
8769 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
8770 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
0d7b6b11 8771 pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
a580516d 8772 mutex_unlock(&dev_priv->sb_lock);
70b23a98
VS
8773
8774 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
0d7b6b11
ID
8775 clock.m2 = (pll_dw0 & 0xff) << 22;
8776 if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN)
8777 clock.m2 |= pll_dw2 & 0x3fffff;
70b23a98
VS
8778 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
8779 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
8780 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
8781
dccbea3b 8782 pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock);
70b23a98
VS
8783}
8784
0e8ffe1b 8785static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
5cec258b 8786 struct intel_crtc_state *pipe_config)
0e8ffe1b 8787{
6315b5d3 8788 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1729050e 8789 enum intel_display_power_domain power_domain;
0e8ffe1b 8790 uint32_t tmp;
1729050e 8791 bool ret;
0e8ffe1b 8792
1729050e
ID
8793 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
8794 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
b5482bd0
ID
8795 return false;
8796
e143a21c 8797 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
8106ddbd 8798 pipe_config->shared_dpll = NULL;
eccb140b 8799
1729050e
ID
8800 ret = false;
8801
0e8ffe1b
DV
8802 tmp = I915_READ(PIPECONF(crtc->pipe));
8803 if (!(tmp & PIPECONF_ENABLE))
1729050e 8804 goto out;
0e8ffe1b 8805
9beb5fea
TU
8806 if (IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
8807 IS_CHERRYVIEW(dev_priv)) {
42571aef
VS
8808 switch (tmp & PIPECONF_BPC_MASK) {
8809 case PIPECONF_6BPC:
8810 pipe_config->pipe_bpp = 18;
8811 break;
8812 case PIPECONF_8BPC:
8813 pipe_config->pipe_bpp = 24;
8814 break;
8815 case PIPECONF_10BPC:
8816 pipe_config->pipe_bpp = 30;
8817 break;
8818 default:
8819 break;
8820 }
8821 }
8822
920a14b2 8823 if ((IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
666a4537 8824 (tmp & PIPECONF_COLOR_RANGE_SELECT))
b5a9fa09
DV
8825 pipe_config->limited_color_range = true;
8826
6315b5d3 8827 if (INTEL_GEN(dev_priv) < 4)
282740f7
VS
8828 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
8829
1bd1bd80 8830 intel_get_pipe_timings(crtc, pipe_config);
bc58be60 8831 intel_get_pipe_src_size(crtc, pipe_config);
1bd1bd80 8832
2fa2fe9a
DV
8833 i9xx_get_pfit_config(crtc, pipe_config);
8834
6315b5d3 8835 if (INTEL_GEN(dev_priv) >= 4) {
c231775c 8836 /* No way to read it out on pipes B and C */
920a14b2 8837 if (IS_CHERRYVIEW(dev_priv) && crtc->pipe != PIPE_A)
c231775c
VS
8838 tmp = dev_priv->chv_dpll_md[crtc->pipe];
8839 else
8840 tmp = I915_READ(DPLL_MD(crtc->pipe));
6c49f241
DV
8841 pipe_config->pixel_multiplier =
8842 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
8843 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
8bcc2795 8844 pipe_config->dpll_hw_state.dpll_md = tmp;
50a0bc90
TU
8845 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv) ||
8846 IS_G33(dev_priv)) {
6c49f241
DV
8847 tmp = I915_READ(DPLL(crtc->pipe));
8848 pipe_config->pixel_multiplier =
8849 ((tmp & SDVO_MULTIPLIER_MASK)
8850 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
8851 } else {
8852 /* Note that on i915G/GM the pixel multiplier is in the sdvo
8853 * port and will be fixed up in the encoder->get_config
8854 * function. */
8855 pipe_config->pixel_multiplier = 1;
8856 }
8bcc2795 8857 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
920a14b2 8858 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv)) {
1c4e0274
VS
8859 /*
8860 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
8861 * on 830. Filter it out here so that we don't
8862 * report errors due to that.
8863 */
50a0bc90 8864 if (IS_I830(dev_priv))
1c4e0274
VS
8865 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
8866
8bcc2795
DV
8867 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
8868 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
165e901c
VS
8869 } else {
8870 /* Mask out read-only status bits. */
8871 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
8872 DPLL_PORTC_READY_MASK |
8873 DPLL_PORTB_READY_MASK);
8bcc2795 8874 }
6c49f241 8875
920a14b2 8876 if (IS_CHERRYVIEW(dev_priv))
70b23a98 8877 chv_crtc_clock_get(crtc, pipe_config);
11a914c2 8878 else if (IS_VALLEYVIEW(dev_priv))
acbec814
JB
8879 vlv_crtc_clock_get(crtc, pipe_config);
8880 else
8881 i9xx_crtc_clock_get(crtc, pipe_config);
18442d08 8882
0f64614d
VS
8883 /*
8884 * Normally the dotclock is filled in by the encoder .get_config()
8885 * but in case the pipe is enabled w/o any ports we need a sane
8886 * default.
8887 */
8888 pipe_config->base.adjusted_mode.crtc_clock =
8889 pipe_config->port_clock / pipe_config->pixel_multiplier;
8890
1729050e
ID
8891 ret = true;
8892
8893out:
8894 intel_display_power_put(dev_priv, power_domain);
8895
8896 return ret;
0e8ffe1b
DV
8897}
8898
dde86e2d 8899static void ironlake_init_pch_refclk(struct drm_device *dev)
13d83a67 8900{
fac5e23e 8901 struct drm_i915_private *dev_priv = to_i915(dev);
13d83a67 8902 struct intel_encoder *encoder;
1c1a24d2 8903 int i;
74cfd7ac 8904 u32 val, final;
13d83a67 8905 bool has_lvds = false;
199e5d79 8906 bool has_cpu_edp = false;
199e5d79 8907 bool has_panel = false;
99eb6a01
KP
8908 bool has_ck505 = false;
8909 bool can_ssc = false;
1c1a24d2 8910 bool using_ssc_source = false;
13d83a67
JB
8911
8912 /* We need to take the global config into account */
b2784e15 8913 for_each_intel_encoder(dev, encoder) {
199e5d79
KP
8914 switch (encoder->type) {
8915 case INTEL_OUTPUT_LVDS:
8916 has_panel = true;
8917 has_lvds = true;
8918 break;
8919 case INTEL_OUTPUT_EDP:
8920 has_panel = true;
2de6905f 8921 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
199e5d79
KP
8922 has_cpu_edp = true;
8923 break;
6847d71b
PZ
8924 default:
8925 break;
13d83a67
JB
8926 }
8927 }
8928
6e266956 8929 if (HAS_PCH_IBX(dev_priv)) {
41aa3448 8930 has_ck505 = dev_priv->vbt.display_clock_mode;
99eb6a01
KP
8931 can_ssc = has_ck505;
8932 } else {
8933 has_ck505 = false;
8934 can_ssc = true;
8935 }
8936
1c1a24d2
L
8937 /* Check if any DPLLs are using the SSC source */
8938 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
8939 u32 temp = I915_READ(PCH_DPLL(i));
8940
8941 if (!(temp & DPLL_VCO_ENABLE))
8942 continue;
8943
8944 if ((temp & PLL_REF_INPUT_MASK) ==
8945 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
8946 using_ssc_source = true;
8947 break;
8948 }
8949 }
8950
8951 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d using_ssc_source %d\n",
8952 has_panel, has_lvds, has_ck505, using_ssc_source);
13d83a67
JB
8953
8954 /* Ironlake: try to setup display ref clock before DPLL
8955 * enabling. This is only under driver's control after
8956 * PCH B stepping, previous chipset stepping should be
8957 * ignoring this setting.
8958 */
74cfd7ac
CW
8959 val = I915_READ(PCH_DREF_CONTROL);
8960
8961 /* As we must carefully and slowly disable/enable each source in turn,
8962 * compute the final state we want first and check if we need to
8963 * make any changes at all.
8964 */
8965 final = val;
8966 final &= ~DREF_NONSPREAD_SOURCE_MASK;
8967 if (has_ck505)
8968 final |= DREF_NONSPREAD_CK505_ENABLE;
8969 else
8970 final |= DREF_NONSPREAD_SOURCE_ENABLE;
8971
8c07eb68 8972 final &= ~DREF_SSC_SOURCE_MASK;
74cfd7ac 8973 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
8c07eb68 8974 final &= ~DREF_SSC1_ENABLE;
74cfd7ac
CW
8975
8976 if (has_panel) {
8977 final |= DREF_SSC_SOURCE_ENABLE;
8978
8979 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8980 final |= DREF_SSC1_ENABLE;
8981
8982 if (has_cpu_edp) {
8983 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8984 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
8985 else
8986 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
8987 } else
8988 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
1c1a24d2
L
8989 } else if (using_ssc_source) {
8990 final |= DREF_SSC_SOURCE_ENABLE;
8991 final |= DREF_SSC1_ENABLE;
74cfd7ac
CW
8992 }
8993
8994 if (final == val)
8995 return;
8996
13d83a67 8997 /* Always enable nonspread source */
74cfd7ac 8998 val &= ~DREF_NONSPREAD_SOURCE_MASK;
13d83a67 8999
99eb6a01 9000 if (has_ck505)
74cfd7ac 9001 val |= DREF_NONSPREAD_CK505_ENABLE;
99eb6a01 9002 else
74cfd7ac 9003 val |= DREF_NONSPREAD_SOURCE_ENABLE;
13d83a67 9004
199e5d79 9005 if (has_panel) {
74cfd7ac
CW
9006 val &= ~DREF_SSC_SOURCE_MASK;
9007 val |= DREF_SSC_SOURCE_ENABLE;
13d83a67 9008
199e5d79 9009 /* SSC must be turned on before enabling the CPU output */
99eb6a01 9010 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 9011 DRM_DEBUG_KMS("Using SSC on panel\n");
74cfd7ac 9012 val |= DREF_SSC1_ENABLE;
e77166b5 9013 } else
74cfd7ac 9014 val &= ~DREF_SSC1_ENABLE;
199e5d79
KP
9015
9016 /* Get SSC going before enabling the outputs */
74cfd7ac 9017 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
9018 POSTING_READ(PCH_DREF_CONTROL);
9019 udelay(200);
9020
74cfd7ac 9021 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
13d83a67
JB
9022
9023 /* Enable CPU source on CPU attached eDP */
199e5d79 9024 if (has_cpu_edp) {
99eb6a01 9025 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 9026 DRM_DEBUG_KMS("Using SSC on eDP\n");
74cfd7ac 9027 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
eba905b2 9028 } else
74cfd7ac 9029 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
199e5d79 9030 } else
74cfd7ac 9031 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 9032
74cfd7ac 9033 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
9034 POSTING_READ(PCH_DREF_CONTROL);
9035 udelay(200);
9036 } else {
1c1a24d2 9037 DRM_DEBUG_KMS("Disabling CPU source output\n");
199e5d79 9038
74cfd7ac 9039 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
199e5d79
KP
9040
9041 /* Turn off CPU output */
74cfd7ac 9042 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 9043
74cfd7ac 9044 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
9045 POSTING_READ(PCH_DREF_CONTROL);
9046 udelay(200);
9047
1c1a24d2
L
9048 if (!using_ssc_source) {
9049 DRM_DEBUG_KMS("Disabling SSC source\n");
199e5d79 9050
1c1a24d2
L
9051 /* Turn off the SSC source */
9052 val &= ~DREF_SSC_SOURCE_MASK;
9053 val |= DREF_SSC_SOURCE_DISABLE;
f165d283 9054
1c1a24d2
L
9055 /* Turn off SSC1 */
9056 val &= ~DREF_SSC1_ENABLE;
9057
9058 I915_WRITE(PCH_DREF_CONTROL, val);
9059 POSTING_READ(PCH_DREF_CONTROL);
9060 udelay(200);
9061 }
13d83a67 9062 }
74cfd7ac
CW
9063
9064 BUG_ON(val != final);
13d83a67
JB
9065}
9066
f31f2d55 9067static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
dde86e2d 9068{
f31f2d55 9069 uint32_t tmp;
dde86e2d 9070
0ff066a9
PZ
9071 tmp = I915_READ(SOUTH_CHICKEN2);
9072 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
9073 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 9074
cf3598c2
ID
9075 if (wait_for_us(I915_READ(SOUTH_CHICKEN2) &
9076 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
0ff066a9 9077 DRM_ERROR("FDI mPHY reset assert timeout\n");
dde86e2d 9078
0ff066a9
PZ
9079 tmp = I915_READ(SOUTH_CHICKEN2);
9080 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
9081 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 9082
cf3598c2
ID
9083 if (wait_for_us((I915_READ(SOUTH_CHICKEN2) &
9084 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
0ff066a9 9085 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
f31f2d55
PZ
9086}
9087
9088/* WaMPhyProgramming:hsw */
9089static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
9090{
9091 uint32_t tmp;
dde86e2d
PZ
9092
9093 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
9094 tmp &= ~(0xFF << 24);
9095 tmp |= (0x12 << 24);
9096 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
9097
dde86e2d
PZ
9098 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
9099 tmp |= (1 << 11);
9100 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
9101
9102 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
9103 tmp |= (1 << 11);
9104 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
9105
dde86e2d
PZ
9106 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
9107 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
9108 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
9109
9110 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
9111 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
9112 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
9113
0ff066a9
PZ
9114 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
9115 tmp &= ~(7 << 13);
9116 tmp |= (5 << 13);
9117 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
dde86e2d 9118
0ff066a9
PZ
9119 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
9120 tmp &= ~(7 << 13);
9121 tmp |= (5 << 13);
9122 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
dde86e2d
PZ
9123
9124 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
9125 tmp &= ~0xFF;
9126 tmp |= 0x1C;
9127 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
9128
9129 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
9130 tmp &= ~0xFF;
9131 tmp |= 0x1C;
9132 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
9133
9134 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
9135 tmp &= ~(0xFF << 16);
9136 tmp |= (0x1C << 16);
9137 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
9138
9139 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
9140 tmp &= ~(0xFF << 16);
9141 tmp |= (0x1C << 16);
9142 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
9143
0ff066a9
PZ
9144 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
9145 tmp |= (1 << 27);
9146 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
dde86e2d 9147
0ff066a9
PZ
9148 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
9149 tmp |= (1 << 27);
9150 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
dde86e2d 9151
0ff066a9
PZ
9152 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
9153 tmp &= ~(0xF << 28);
9154 tmp |= (4 << 28);
9155 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
dde86e2d 9156
0ff066a9
PZ
9157 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
9158 tmp &= ~(0xF << 28);
9159 tmp |= (4 << 28);
9160 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
f31f2d55
PZ
9161}
9162
2fa86a1f
PZ
9163/* Implements 3 different sequences from BSpec chapter "Display iCLK
9164 * Programming" based on the parameters passed:
9165 * - Sequence to enable CLKOUT_DP
9166 * - Sequence to enable CLKOUT_DP without spread
9167 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
9168 */
9169static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
9170 bool with_fdi)
f31f2d55 9171{
fac5e23e 9172 struct drm_i915_private *dev_priv = to_i915(dev);
2fa86a1f
PZ
9173 uint32_t reg, tmp;
9174
9175 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
9176 with_spread = true;
4f8036a2
TU
9177 if (WARN(HAS_PCH_LPT_LP(dev_priv) &&
9178 with_fdi, "LP PCH doesn't have FDI\n"))
2fa86a1f 9179 with_fdi = false;
f31f2d55 9180
a580516d 9181 mutex_lock(&dev_priv->sb_lock);
f31f2d55
PZ
9182
9183 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
9184 tmp &= ~SBI_SSCCTL_DISABLE;
9185 tmp |= SBI_SSCCTL_PATHALT;
9186 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
9187
9188 udelay(24);
9189
2fa86a1f
PZ
9190 if (with_spread) {
9191 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
9192 tmp &= ~SBI_SSCCTL_PATHALT;
9193 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
f31f2d55 9194
2fa86a1f
PZ
9195 if (with_fdi) {
9196 lpt_reset_fdi_mphy(dev_priv);
9197 lpt_program_fdi_mphy(dev_priv);
9198 }
9199 }
dde86e2d 9200
4f8036a2 9201 reg = HAS_PCH_LPT_LP(dev_priv) ? SBI_GEN0 : SBI_DBUFF0;
2fa86a1f
PZ
9202 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
9203 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
9204 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
c00db246 9205
a580516d 9206 mutex_unlock(&dev_priv->sb_lock);
dde86e2d
PZ
9207}
9208
47701c3b
PZ
9209/* Sequence to disable CLKOUT_DP */
9210static void lpt_disable_clkout_dp(struct drm_device *dev)
9211{
fac5e23e 9212 struct drm_i915_private *dev_priv = to_i915(dev);
47701c3b
PZ
9213 uint32_t reg, tmp;
9214
a580516d 9215 mutex_lock(&dev_priv->sb_lock);
47701c3b 9216
4f8036a2 9217 reg = HAS_PCH_LPT_LP(dev_priv) ? SBI_GEN0 : SBI_DBUFF0;
47701c3b
PZ
9218 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
9219 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
9220 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
9221
9222 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
9223 if (!(tmp & SBI_SSCCTL_DISABLE)) {
9224 if (!(tmp & SBI_SSCCTL_PATHALT)) {
9225 tmp |= SBI_SSCCTL_PATHALT;
9226 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
9227 udelay(32);
9228 }
9229 tmp |= SBI_SSCCTL_DISABLE;
9230 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
9231 }
9232
a580516d 9233 mutex_unlock(&dev_priv->sb_lock);
47701c3b
PZ
9234}
9235
f7be2c21
VS
9236#define BEND_IDX(steps) ((50 + (steps)) / 5)
9237
9238static const uint16_t sscdivintphase[] = {
9239 [BEND_IDX( 50)] = 0x3B23,
9240 [BEND_IDX( 45)] = 0x3B23,
9241 [BEND_IDX( 40)] = 0x3C23,
9242 [BEND_IDX( 35)] = 0x3C23,
9243 [BEND_IDX( 30)] = 0x3D23,
9244 [BEND_IDX( 25)] = 0x3D23,
9245 [BEND_IDX( 20)] = 0x3E23,
9246 [BEND_IDX( 15)] = 0x3E23,
9247 [BEND_IDX( 10)] = 0x3F23,
9248 [BEND_IDX( 5)] = 0x3F23,
9249 [BEND_IDX( 0)] = 0x0025,
9250 [BEND_IDX( -5)] = 0x0025,
9251 [BEND_IDX(-10)] = 0x0125,
9252 [BEND_IDX(-15)] = 0x0125,
9253 [BEND_IDX(-20)] = 0x0225,
9254 [BEND_IDX(-25)] = 0x0225,
9255 [BEND_IDX(-30)] = 0x0325,
9256 [BEND_IDX(-35)] = 0x0325,
9257 [BEND_IDX(-40)] = 0x0425,
9258 [BEND_IDX(-45)] = 0x0425,
9259 [BEND_IDX(-50)] = 0x0525,
9260};
9261
9262/*
9263 * Bend CLKOUT_DP
9264 * steps -50 to 50 inclusive, in steps of 5
9265 * < 0 slow down the clock, > 0 speed up the clock, 0 == no bend (135MHz)
9266 * change in clock period = -(steps / 10) * 5.787 ps
9267 */
9268static void lpt_bend_clkout_dp(struct drm_i915_private *dev_priv, int steps)
9269{
9270 uint32_t tmp;
9271 int idx = BEND_IDX(steps);
9272
9273 if (WARN_ON(steps % 5 != 0))
9274 return;
9275
9276 if (WARN_ON(idx >= ARRAY_SIZE(sscdivintphase)))
9277 return;
9278
9279 mutex_lock(&dev_priv->sb_lock);
9280
9281 if (steps % 10 != 0)
9282 tmp = 0xAAAAAAAB;
9283 else
9284 tmp = 0x00000000;
9285 intel_sbi_write(dev_priv, SBI_SSCDITHPHASE, tmp, SBI_ICLK);
9286
9287 tmp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE, SBI_ICLK);
9288 tmp &= 0xffff0000;
9289 tmp |= sscdivintphase[idx];
9290 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE, tmp, SBI_ICLK);
9291
9292 mutex_unlock(&dev_priv->sb_lock);
9293}
9294
9295#undef BEND_IDX
9296
bf8fa3d3
PZ
9297static void lpt_init_pch_refclk(struct drm_device *dev)
9298{
bf8fa3d3
PZ
9299 struct intel_encoder *encoder;
9300 bool has_vga = false;
9301
b2784e15 9302 for_each_intel_encoder(dev, encoder) {
bf8fa3d3
PZ
9303 switch (encoder->type) {
9304 case INTEL_OUTPUT_ANALOG:
9305 has_vga = true;
9306 break;
6847d71b
PZ
9307 default:
9308 break;
bf8fa3d3
PZ
9309 }
9310 }
9311
f7be2c21
VS
9312 if (has_vga) {
9313 lpt_bend_clkout_dp(to_i915(dev), 0);
47701c3b 9314 lpt_enable_clkout_dp(dev, true, true);
f7be2c21 9315 } else {
47701c3b 9316 lpt_disable_clkout_dp(dev);
f7be2c21 9317 }
bf8fa3d3
PZ
9318}
9319
dde86e2d
PZ
9320/*
9321 * Initialize reference clocks when the driver loads
9322 */
9323void intel_init_pch_refclk(struct drm_device *dev)
9324{
6e266956
TU
9325 struct drm_i915_private *dev_priv = to_i915(dev);
9326
9327 if (HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv))
dde86e2d 9328 ironlake_init_pch_refclk(dev);
6e266956 9329 else if (HAS_PCH_LPT(dev_priv))
dde86e2d
PZ
9330 lpt_init_pch_refclk(dev);
9331}
9332
6ff93609 9333static void ironlake_set_pipeconf(struct drm_crtc *crtc)
79e53945 9334{
fac5e23e 9335 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
79e53945
JB
9336 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9337 int pipe = intel_crtc->pipe;
c8203565
PZ
9338 uint32_t val;
9339
78114071 9340 val = 0;
c8203565 9341
6e3c9717 9342 switch (intel_crtc->config->pipe_bpp) {
c8203565 9343 case 18:
dfd07d72 9344 val |= PIPECONF_6BPC;
c8203565
PZ
9345 break;
9346 case 24:
dfd07d72 9347 val |= PIPECONF_8BPC;
c8203565
PZ
9348 break;
9349 case 30:
dfd07d72 9350 val |= PIPECONF_10BPC;
c8203565
PZ
9351 break;
9352 case 36:
dfd07d72 9353 val |= PIPECONF_12BPC;
c8203565
PZ
9354 break;
9355 default:
cc769b62
PZ
9356 /* Case prevented by intel_choose_pipe_bpp_dither. */
9357 BUG();
c8203565
PZ
9358 }
9359
6e3c9717 9360 if (intel_crtc->config->dither)
c8203565
PZ
9361 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
9362
6e3c9717 9363 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
c8203565
PZ
9364 val |= PIPECONF_INTERLACED_ILK;
9365 else
9366 val |= PIPECONF_PROGRESSIVE;
9367
6e3c9717 9368 if (intel_crtc->config->limited_color_range)
3685a8f3 9369 val |= PIPECONF_COLOR_RANGE_SELECT;
3685a8f3 9370
c8203565
PZ
9371 I915_WRITE(PIPECONF(pipe), val);
9372 POSTING_READ(PIPECONF(pipe));
9373}
9374
6ff93609 9375static void haswell_set_pipeconf(struct drm_crtc *crtc)
ee2b0b38 9376{
fac5e23e 9377 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
ee2b0b38 9378 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 9379 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
391bf048 9380 u32 val = 0;
ee2b0b38 9381
391bf048 9382 if (IS_HASWELL(dev_priv) && intel_crtc->config->dither)
ee2b0b38
PZ
9383 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
9384
6e3c9717 9385 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
ee2b0b38
PZ
9386 val |= PIPECONF_INTERLACED_ILK;
9387 else
9388 val |= PIPECONF_PROGRESSIVE;
9389
702e7a56
PZ
9390 I915_WRITE(PIPECONF(cpu_transcoder), val);
9391 POSTING_READ(PIPECONF(cpu_transcoder));
391bf048
JN
9392}
9393
391bf048
JN
9394static void haswell_set_pipemisc(struct drm_crtc *crtc)
9395{
fac5e23e 9396 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
391bf048 9397 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
756f85cf 9398
391bf048
JN
9399 if (IS_BROADWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 9) {
9400 u32 val = 0;
756f85cf 9401
6e3c9717 9402 switch (intel_crtc->config->pipe_bpp) {
756f85cf
PZ
9403 case 18:
9404 val |= PIPEMISC_DITHER_6_BPC;
9405 break;
9406 case 24:
9407 val |= PIPEMISC_DITHER_8_BPC;
9408 break;
9409 case 30:
9410 val |= PIPEMISC_DITHER_10_BPC;
9411 break;
9412 case 36:
9413 val |= PIPEMISC_DITHER_12_BPC;
9414 break;
9415 default:
9416 /* Case prevented by pipe_config_set_bpp. */
9417 BUG();
9418 }
9419
6e3c9717 9420 if (intel_crtc->config->dither)
756f85cf
PZ
9421 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
9422
391bf048 9423 I915_WRITE(PIPEMISC(intel_crtc->pipe), val);
756f85cf 9424 }
ee2b0b38
PZ
9425}
9426
d4b1931c
PZ
9427int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
9428{
9429 /*
9430 * Account for spread spectrum to avoid
9431 * oversubscribing the link. Max center spread
9432 * is 2.5%; use 5% for safety's sake.
9433 */
9434 u32 bps = target_clock * bpp * 21 / 20;
619d4d04 9435 return DIV_ROUND_UP(bps, link_bw * 8);
d4b1931c
PZ
9436}
9437
7429e9d4 9438static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
6cf86a5e 9439{
7429e9d4 9440 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
f48d8f23
PZ
9441}
9442
b75ca6f6
ACO
9443static void ironlake_compute_dpll(struct intel_crtc *intel_crtc,
9444 struct intel_crtc_state *crtc_state,
9e2c8475 9445 struct dpll *reduced_clock)
79e53945 9446{
de13a2e3 9447 struct drm_crtc *crtc = &intel_crtc->base;
79e53945 9448 struct drm_device *dev = crtc->dev;
fac5e23e 9449 struct drm_i915_private *dev_priv = to_i915(dev);
b75ca6f6 9450 u32 dpll, fp, fp2;
3d6e9ee0 9451 int factor;
79e53945 9452
c1858123 9453 /* Enable autotuning of the PLL clock (if permissible) */
8febb297 9454 factor = 21;
3d6e9ee0 9455 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
8febb297 9456 if ((intel_panel_use_ssc(dev_priv) &&
e91e941b 9457 dev_priv->vbt.lvds_ssc_freq == 100000) ||
6e266956 9458 (HAS_PCH_IBX(dev_priv) && intel_is_dual_link_lvds(dev)))
8febb297 9459 factor = 25;
190f68c5 9460 } else if (crtc_state->sdvo_tv_clock)
8febb297 9461 factor = 20;
c1858123 9462
b75ca6f6
ACO
9463 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
9464
190f68c5 9465 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
b75ca6f6
ACO
9466 fp |= FP_CB_TUNE;
9467
9468 if (reduced_clock) {
9469 fp2 = i9xx_dpll_compute_fp(reduced_clock);
2c07245f 9470
b75ca6f6
ACO
9471 if (reduced_clock->m < factor * reduced_clock->n)
9472 fp2 |= FP_CB_TUNE;
9473 } else {
9474 fp2 = fp;
9475 }
9a7c7890 9476
5eddb70b 9477 dpll = 0;
2c07245f 9478
3d6e9ee0 9479 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS))
a07d6787
EA
9480 dpll |= DPLLB_MODE_LVDS;
9481 else
9482 dpll |= DPLLB_MODE_DAC_SERIAL;
198a037f 9483
190f68c5 9484 dpll |= (crtc_state->pixel_multiplier - 1)
ef1b460d 9485 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
198a037f 9486
3d6e9ee0
VS
9487 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_SDVO) ||
9488 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_HDMI))
4a33e48d 9489 dpll |= DPLL_SDVO_HIGH_SPEED;
3d6e9ee0 9490
37a5650b 9491 if (intel_crtc_has_dp_encoder(crtc_state))
4a33e48d 9492 dpll |= DPLL_SDVO_HIGH_SPEED;
79e53945 9493
7d7f8633
VS
9494 /*
9495 * The high speed IO clock is only really required for
9496 * SDVO/HDMI/DP, but we also enable it for CRT to make it
9497 * possible to share the DPLL between CRT and HDMI. Enabling
9498 * the clock needlessly does no real harm, except use up a
9499 * bit of power potentially.
9500 *
9501 * We'll limit this to IVB with 3 pipes, since it has only two
9502 * DPLLs and so DPLL sharing is the only way to get three pipes
9503 * driving PCH ports at the same time. On SNB we could do this,
9504 * and potentially avoid enabling the second DPLL, but it's not
9505 * clear if it''s a win or loss power wise. No point in doing
9506 * this on ILK at all since it has a fixed DPLL<->pipe mapping.
9507 */
9508 if (INTEL_INFO(dev_priv)->num_pipes == 3 &&
9509 intel_crtc_has_type(crtc_state, INTEL_OUTPUT_ANALOG))
9510 dpll |= DPLL_SDVO_HIGH_SPEED;
9511
a07d6787 9512 /* compute bitmask from p1 value */
190f68c5 9513 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
a07d6787 9514 /* also FPA1 */
190f68c5 9515 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
a07d6787 9516
190f68c5 9517 switch (crtc_state->dpll.p2) {
a07d6787
EA
9518 case 5:
9519 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
9520 break;
9521 case 7:
9522 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
9523 break;
9524 case 10:
9525 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
9526 break;
9527 case 14:
9528 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
9529 break;
79e53945
JB
9530 }
9531
3d6e9ee0
VS
9532 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
9533 intel_panel_use_ssc(dev_priv))
43565a06 9534 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
79e53945
JB
9535 else
9536 dpll |= PLL_REF_INPUT_DREFCLK;
9537
b75ca6f6
ACO
9538 dpll |= DPLL_VCO_ENABLE;
9539
9540 crtc_state->dpll_hw_state.dpll = dpll;
9541 crtc_state->dpll_hw_state.fp0 = fp;
9542 crtc_state->dpll_hw_state.fp1 = fp2;
de13a2e3
PZ
9543}
9544
190f68c5
ACO
9545static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
9546 struct intel_crtc_state *crtc_state)
de13a2e3 9547{
997c030c 9548 struct drm_device *dev = crtc->base.dev;
fac5e23e 9549 struct drm_i915_private *dev_priv = to_i915(dev);
9e2c8475 9550 struct dpll reduced_clock;
7ed9f894 9551 bool has_reduced_clock = false;
e2b78267 9552 struct intel_shared_dpll *pll;
1b6f4958 9553 const struct intel_limit *limit;
997c030c 9554 int refclk = 120000;
de13a2e3 9555
dd3cd74a
ACO
9556 memset(&crtc_state->dpll_hw_state, 0,
9557 sizeof(crtc_state->dpll_hw_state));
9558
ded220e2
ACO
9559 crtc->lowfreq_avail = false;
9560
9561 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
9562 if (!crtc_state->has_pch_encoder)
9563 return 0;
79e53945 9564
2d84d2b3 9565 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS)) {
997c030c
ACO
9566 if (intel_panel_use_ssc(dev_priv)) {
9567 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
9568 dev_priv->vbt.lvds_ssc_freq);
9569 refclk = dev_priv->vbt.lvds_ssc_freq;
9570 }
9571
9572 if (intel_is_dual_link_lvds(dev)) {
9573 if (refclk == 100000)
9574 limit = &intel_limits_ironlake_dual_lvds_100m;
9575 else
9576 limit = &intel_limits_ironlake_dual_lvds;
9577 } else {
9578 if (refclk == 100000)
9579 limit = &intel_limits_ironlake_single_lvds_100m;
9580 else
9581 limit = &intel_limits_ironlake_single_lvds;
9582 }
9583 } else {
9584 limit = &intel_limits_ironlake_dac;
9585 }
9586
364ee29d 9587 if (!crtc_state->clock_set &&
997c030c
ACO
9588 !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
9589 refclk, NULL, &crtc_state->dpll)) {
364ee29d
ACO
9590 DRM_ERROR("Couldn't find PLL settings for mode!\n");
9591 return -EINVAL;
f47709a9 9592 }
79e53945 9593
b75ca6f6
ACO
9594 ironlake_compute_dpll(crtc, crtc_state,
9595 has_reduced_clock ? &reduced_clock : NULL);
66e985c0 9596
ded220e2
ACO
9597 pll = intel_get_shared_dpll(crtc, crtc_state, NULL);
9598 if (pll == NULL) {
9599 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
9600 pipe_name(crtc->pipe));
9601 return -EINVAL;
3fb37703 9602 }
79e53945 9603
2d84d2b3 9604 if (intel_crtc_has_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ded220e2 9605 has_reduced_clock)
c7653199 9606 crtc->lowfreq_avail = true;
e2b78267 9607
c8f7a0db 9608 return 0;
79e53945
JB
9609}
9610
eb14cb74
VS
9611static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
9612 struct intel_link_m_n *m_n)
9613{
9614 struct drm_device *dev = crtc->base.dev;
fac5e23e 9615 struct drm_i915_private *dev_priv = to_i915(dev);
eb14cb74
VS
9616 enum pipe pipe = crtc->pipe;
9617
9618 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
9619 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
9620 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
9621 & ~TU_SIZE_MASK;
9622 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
9623 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
9624 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9625}
9626
9627static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
9628 enum transcoder transcoder,
b95af8be
VK
9629 struct intel_link_m_n *m_n,
9630 struct intel_link_m_n *m2_n2)
72419203 9631{
6315b5d3 9632 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
eb14cb74 9633 enum pipe pipe = crtc->pipe;
72419203 9634
6315b5d3 9635 if (INTEL_GEN(dev_priv) >= 5) {
eb14cb74
VS
9636 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
9637 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
9638 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
9639 & ~TU_SIZE_MASK;
9640 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
9641 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
9642 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
b95af8be
VK
9643 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
9644 * gen < 8) and if DRRS is supported (to make sure the
9645 * registers are not unnecessarily read).
9646 */
6315b5d3 9647 if (m2_n2 && INTEL_GEN(dev_priv) < 8 &&
6e3c9717 9648 crtc->config->has_drrs) {
b95af8be
VK
9649 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
9650 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
9651 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
9652 & ~TU_SIZE_MASK;
9653 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
9654 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
9655 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9656 }
eb14cb74
VS
9657 } else {
9658 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
9659 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
9660 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
9661 & ~TU_SIZE_MASK;
9662 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
9663 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
9664 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9665 }
9666}
9667
9668void intel_dp_get_m_n(struct intel_crtc *crtc,
5cec258b 9669 struct intel_crtc_state *pipe_config)
eb14cb74 9670{
681a8504 9671 if (pipe_config->has_pch_encoder)
eb14cb74
VS
9672 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
9673 else
9674 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be
VK
9675 &pipe_config->dp_m_n,
9676 &pipe_config->dp_m2_n2);
eb14cb74 9677}
72419203 9678
eb14cb74 9679static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
5cec258b 9680 struct intel_crtc_state *pipe_config)
eb14cb74
VS
9681{
9682 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be 9683 &pipe_config->fdi_m_n, NULL);
72419203
DV
9684}
9685
bd2e244f 9686static void skylake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 9687 struct intel_crtc_state *pipe_config)
bd2e244f
JB
9688{
9689 struct drm_device *dev = crtc->base.dev;
fac5e23e 9690 struct drm_i915_private *dev_priv = to_i915(dev);
a1b2278e
CK
9691 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
9692 uint32_t ps_ctrl = 0;
9693 int id = -1;
9694 int i;
bd2e244f 9695
a1b2278e
CK
9696 /* find scaler attached to this pipe */
9697 for (i = 0; i < crtc->num_scalers; i++) {
9698 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
9699 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
9700 id = i;
9701 pipe_config->pch_pfit.enabled = true;
9702 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
9703 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
9704 break;
9705 }
9706 }
bd2e244f 9707
a1b2278e
CK
9708 scaler_state->scaler_id = id;
9709 if (id >= 0) {
9710 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
9711 } else {
9712 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
bd2e244f
JB
9713 }
9714}
9715
5724dbd1
DL
9716static void
9717skylake_get_initial_plane_config(struct intel_crtc *crtc,
9718 struct intel_initial_plane_config *plane_config)
bc8d7dff
DL
9719{
9720 struct drm_device *dev = crtc->base.dev;
fac5e23e 9721 struct drm_i915_private *dev_priv = to_i915(dev);
40f46283 9722 u32 val, base, offset, stride_mult, tiling;
bc8d7dff
DL
9723 int pipe = crtc->pipe;
9724 int fourcc, pixel_format;
6761dd31 9725 unsigned int aligned_height;
bc8d7dff 9726 struct drm_framebuffer *fb;
1b842c89 9727 struct intel_framebuffer *intel_fb;
bc8d7dff 9728
d9806c9f 9729 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 9730 if (!intel_fb) {
bc8d7dff
DL
9731 DRM_DEBUG_KMS("failed to alloc fb\n");
9732 return;
9733 }
9734
1b842c89
DL
9735 fb = &intel_fb->base;
9736
bc8d7dff 9737 val = I915_READ(PLANE_CTL(pipe, 0));
42a7b088
DL
9738 if (!(val & PLANE_CTL_ENABLE))
9739 goto error;
9740
bc8d7dff
DL
9741 pixel_format = val & PLANE_CTL_FORMAT_MASK;
9742 fourcc = skl_format_to_fourcc(pixel_format,
9743 val & PLANE_CTL_ORDER_RGBX,
9744 val & PLANE_CTL_ALPHA_MASK);
9745 fb->pixel_format = fourcc;
9746 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9747
40f46283
DL
9748 tiling = val & PLANE_CTL_TILED_MASK;
9749 switch (tiling) {
9750 case PLANE_CTL_TILED_LINEAR:
9751 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
9752 break;
9753 case PLANE_CTL_TILED_X:
9754 plane_config->tiling = I915_TILING_X;
9755 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9756 break;
9757 case PLANE_CTL_TILED_Y:
9758 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
9759 break;
9760 case PLANE_CTL_TILED_YF:
9761 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
9762 break;
9763 default:
9764 MISSING_CASE(tiling);
9765 goto error;
9766 }
9767
bc8d7dff
DL
9768 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
9769 plane_config->base = base;
9770
9771 offset = I915_READ(PLANE_OFFSET(pipe, 0));
9772
9773 val = I915_READ(PLANE_SIZE(pipe, 0));
9774 fb->height = ((val >> 16) & 0xfff) + 1;
9775 fb->width = ((val >> 0) & 0x1fff) + 1;
9776
9777 val = I915_READ(PLANE_STRIDE(pipe, 0));
7b49f948 9778 stride_mult = intel_fb_stride_alignment(dev_priv, fb->modifier[0],
40f46283 9779 fb->pixel_format);
bc8d7dff
DL
9780 fb->pitches[0] = (val & 0x3ff) * stride_mult;
9781
9782 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
9783 fb->pixel_format,
9784 fb->modifier[0]);
bc8d7dff 9785
f37b5c2b 9786 plane_config->size = fb->pitches[0] * aligned_height;
bc8d7dff
DL
9787
9788 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9789 pipe_name(pipe), fb->width, fb->height,
9790 fb->bits_per_pixel, base, fb->pitches[0],
9791 plane_config->size);
9792
2d14030b 9793 plane_config->fb = intel_fb;
bc8d7dff
DL
9794 return;
9795
9796error:
d1a3a036 9797 kfree(intel_fb);
bc8d7dff
DL
9798}
9799
2fa2fe9a 9800static void ironlake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 9801 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
9802{
9803 struct drm_device *dev = crtc->base.dev;
fac5e23e 9804 struct drm_i915_private *dev_priv = to_i915(dev);
2fa2fe9a
DV
9805 uint32_t tmp;
9806
9807 tmp = I915_READ(PF_CTL(crtc->pipe));
9808
9809 if (tmp & PF_ENABLE) {
fd4daa9c 9810 pipe_config->pch_pfit.enabled = true;
2fa2fe9a
DV
9811 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
9812 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
cb8b2a30
DV
9813
9814 /* We currently do not free assignements of panel fitters on
9815 * ivb/hsw (since we don't use the higher upscaling modes which
9816 * differentiates them) so just WARN about this case for now. */
5db94019 9817 if (IS_GEN7(dev_priv)) {
cb8b2a30
DV
9818 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
9819 PF_PIPE_SEL_IVB(crtc->pipe));
9820 }
2fa2fe9a 9821 }
79e53945
JB
9822}
9823
5724dbd1
DL
9824static void
9825ironlake_get_initial_plane_config(struct intel_crtc *crtc,
9826 struct intel_initial_plane_config *plane_config)
4c6baa59
JB
9827{
9828 struct drm_device *dev = crtc->base.dev;
fac5e23e 9829 struct drm_i915_private *dev_priv = to_i915(dev);
4c6baa59 9830 u32 val, base, offset;
aeee5a49 9831 int pipe = crtc->pipe;
4c6baa59 9832 int fourcc, pixel_format;
6761dd31 9833 unsigned int aligned_height;
b113d5ee 9834 struct drm_framebuffer *fb;
1b842c89 9835 struct intel_framebuffer *intel_fb;
4c6baa59 9836
42a7b088
DL
9837 val = I915_READ(DSPCNTR(pipe));
9838 if (!(val & DISPLAY_PLANE_ENABLE))
9839 return;
9840
d9806c9f 9841 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 9842 if (!intel_fb) {
4c6baa59
JB
9843 DRM_DEBUG_KMS("failed to alloc fb\n");
9844 return;
9845 }
9846
1b842c89
DL
9847 fb = &intel_fb->base;
9848
6315b5d3 9849 if (INTEL_GEN(dev_priv) >= 4) {
18c5247e 9850 if (val & DISPPLANE_TILED) {
49af449b 9851 plane_config->tiling = I915_TILING_X;
18c5247e
DV
9852 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9853 }
9854 }
4c6baa59
JB
9855
9856 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 9857 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
9858 fb->pixel_format = fourcc;
9859 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
4c6baa59 9860
aeee5a49 9861 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
8652744b 9862 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
aeee5a49 9863 offset = I915_READ(DSPOFFSET(pipe));
4c6baa59 9864 } else {
49af449b 9865 if (plane_config->tiling)
aeee5a49 9866 offset = I915_READ(DSPTILEOFF(pipe));
4c6baa59 9867 else
aeee5a49 9868 offset = I915_READ(DSPLINOFF(pipe));
4c6baa59
JB
9869 }
9870 plane_config->base = base;
9871
9872 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
9873 fb->width = ((val >> 16) & 0xfff) + 1;
9874 fb->height = ((val >> 0) & 0xfff) + 1;
4c6baa59
JB
9875
9876 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 9877 fb->pitches[0] = val & 0xffffffc0;
4c6baa59 9878
b113d5ee 9879 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
9880 fb->pixel_format,
9881 fb->modifier[0]);
4c6baa59 9882
f37b5c2b 9883 plane_config->size = fb->pitches[0] * aligned_height;
4c6baa59 9884
2844a921
DL
9885 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9886 pipe_name(pipe), fb->width, fb->height,
9887 fb->bits_per_pixel, base, fb->pitches[0],
9888 plane_config->size);
b113d5ee 9889
2d14030b 9890 plane_config->fb = intel_fb;
4c6baa59
JB
9891}
9892
0e8ffe1b 9893static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
5cec258b 9894 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
9895{
9896 struct drm_device *dev = crtc->base.dev;
fac5e23e 9897 struct drm_i915_private *dev_priv = to_i915(dev);
1729050e 9898 enum intel_display_power_domain power_domain;
0e8ffe1b 9899 uint32_t tmp;
1729050e 9900 bool ret;
0e8ffe1b 9901
1729050e
ID
9902 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
9903 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
930e8c9e
PZ
9904 return false;
9905
e143a21c 9906 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
8106ddbd 9907 pipe_config->shared_dpll = NULL;
eccb140b 9908
1729050e 9909 ret = false;
0e8ffe1b
DV
9910 tmp = I915_READ(PIPECONF(crtc->pipe));
9911 if (!(tmp & PIPECONF_ENABLE))
1729050e 9912 goto out;
0e8ffe1b 9913
42571aef
VS
9914 switch (tmp & PIPECONF_BPC_MASK) {
9915 case PIPECONF_6BPC:
9916 pipe_config->pipe_bpp = 18;
9917 break;
9918 case PIPECONF_8BPC:
9919 pipe_config->pipe_bpp = 24;
9920 break;
9921 case PIPECONF_10BPC:
9922 pipe_config->pipe_bpp = 30;
9923 break;
9924 case PIPECONF_12BPC:
9925 pipe_config->pipe_bpp = 36;
9926 break;
9927 default:
9928 break;
9929 }
9930
b5a9fa09
DV
9931 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
9932 pipe_config->limited_color_range = true;
9933
ab9412ba 9934 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
66e985c0 9935 struct intel_shared_dpll *pll;
8106ddbd 9936 enum intel_dpll_id pll_id;
66e985c0 9937
88adfff1
DV
9938 pipe_config->has_pch_encoder = true;
9939
627eb5a3
DV
9940 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
9941 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9942 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
9943
9944 ironlake_get_fdi_m_n_config(crtc, pipe_config);
6c49f241 9945
2d1fe073 9946 if (HAS_PCH_IBX(dev_priv)) {
d9a7bc67
ID
9947 /*
9948 * The pipe->pch transcoder and pch transcoder->pll
9949 * mapping is fixed.
9950 */
8106ddbd 9951 pll_id = (enum intel_dpll_id) crtc->pipe;
c0d43d62
DV
9952 } else {
9953 tmp = I915_READ(PCH_DPLL_SEL);
9954 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
8106ddbd 9955 pll_id = DPLL_ID_PCH_PLL_B;
c0d43d62 9956 else
8106ddbd 9957 pll_id= DPLL_ID_PCH_PLL_A;
c0d43d62 9958 }
66e985c0 9959
8106ddbd
ACO
9960 pipe_config->shared_dpll =
9961 intel_get_shared_dpll_by_id(dev_priv, pll_id);
9962 pll = pipe_config->shared_dpll;
66e985c0 9963
2edd6443
ACO
9964 WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll,
9965 &pipe_config->dpll_hw_state));
c93f54cf
DV
9966
9967 tmp = pipe_config->dpll_hw_state.dpll;
9968 pipe_config->pixel_multiplier =
9969 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
9970 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
18442d08
VS
9971
9972 ironlake_pch_clock_get(crtc, pipe_config);
6c49f241
DV
9973 } else {
9974 pipe_config->pixel_multiplier = 1;
627eb5a3
DV
9975 }
9976
1bd1bd80 9977 intel_get_pipe_timings(crtc, pipe_config);
bc58be60 9978 intel_get_pipe_src_size(crtc, pipe_config);
1bd1bd80 9979
2fa2fe9a
DV
9980 ironlake_get_pfit_config(crtc, pipe_config);
9981
1729050e
ID
9982 ret = true;
9983
9984out:
9985 intel_display_power_put(dev_priv, power_domain);
9986
9987 return ret;
0e8ffe1b
DV
9988}
9989
be256dc7
PZ
9990static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
9991{
91c8a326 9992 struct drm_device *dev = &dev_priv->drm;
be256dc7 9993 struct intel_crtc *crtc;
be256dc7 9994
d3fcc808 9995 for_each_intel_crtc(dev, crtc)
e2c719b7 9996 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
be256dc7
PZ
9997 pipe_name(crtc->pipe));
9998
e2c719b7
RC
9999 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
10000 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
01403de3
VS
10001 I915_STATE_WARN(I915_READ(WRPLL_CTL(0)) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
10002 I915_STATE_WARN(I915_READ(WRPLL_CTL(1)) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
44cb734c 10003 I915_STATE_WARN(I915_READ(PP_STATUS(0)) & PP_ON, "Panel power on\n");
e2c719b7 10004 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
be256dc7 10005 "CPU PWM1 enabled\n");
772c2a51 10006 if (IS_HASWELL(dev_priv))
e2c719b7 10007 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
c5107b87 10008 "CPU PWM2 enabled\n");
e2c719b7 10009 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
be256dc7 10010 "PCH PWM1 enabled\n");
e2c719b7 10011 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
be256dc7 10012 "Utility pin enabled\n");
e2c719b7 10013 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
be256dc7 10014
9926ada1
PZ
10015 /*
10016 * In theory we can still leave IRQs enabled, as long as only the HPD
10017 * interrupts remain enabled. We used to check for that, but since it's
10018 * gen-specific and since we only disable LCPLL after we fully disable
10019 * the interrupts, the check below should be enough.
10020 */
e2c719b7 10021 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
be256dc7
PZ
10022}
10023
9ccd5aeb
PZ
10024static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
10025{
772c2a51 10026 if (IS_HASWELL(dev_priv))
9ccd5aeb
PZ
10027 return I915_READ(D_COMP_HSW);
10028 else
10029 return I915_READ(D_COMP_BDW);
10030}
10031
3c4c9b81
PZ
10032static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
10033{
772c2a51 10034 if (IS_HASWELL(dev_priv)) {
3c4c9b81
PZ
10035 mutex_lock(&dev_priv->rps.hw_lock);
10036 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
10037 val))
79cf219a 10038 DRM_DEBUG_KMS("Failed to write to D_COMP\n");
3c4c9b81
PZ
10039 mutex_unlock(&dev_priv->rps.hw_lock);
10040 } else {
9ccd5aeb
PZ
10041 I915_WRITE(D_COMP_BDW, val);
10042 POSTING_READ(D_COMP_BDW);
3c4c9b81 10043 }
be256dc7
PZ
10044}
10045
10046/*
10047 * This function implements pieces of two sequences from BSpec:
10048 * - Sequence for display software to disable LCPLL
10049 * - Sequence for display software to allow package C8+
10050 * The steps implemented here are just the steps that actually touch the LCPLL
10051 * register. Callers should take care of disabling all the display engine
10052 * functions, doing the mode unset, fixing interrupts, etc.
10053 */
6ff58d53
PZ
10054static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
10055 bool switch_to_fclk, bool allow_power_down)
be256dc7
PZ
10056{
10057 uint32_t val;
10058
10059 assert_can_disable_lcpll(dev_priv);
10060
10061 val = I915_READ(LCPLL_CTL);
10062
10063 if (switch_to_fclk) {
10064 val |= LCPLL_CD_SOURCE_FCLK;
10065 I915_WRITE(LCPLL_CTL, val);
10066
f53dd63f
ID
10067 if (wait_for_us(I915_READ(LCPLL_CTL) &
10068 LCPLL_CD_SOURCE_FCLK_DONE, 1))
be256dc7
PZ
10069 DRM_ERROR("Switching to FCLK failed\n");
10070
10071 val = I915_READ(LCPLL_CTL);
10072 }
10073
10074 val |= LCPLL_PLL_DISABLE;
10075 I915_WRITE(LCPLL_CTL, val);
10076 POSTING_READ(LCPLL_CTL);
10077
24d8441d 10078 if (intel_wait_for_register(dev_priv, LCPLL_CTL, LCPLL_PLL_LOCK, 0, 1))
be256dc7
PZ
10079 DRM_ERROR("LCPLL still locked\n");
10080
9ccd5aeb 10081 val = hsw_read_dcomp(dev_priv);
be256dc7 10082 val |= D_COMP_COMP_DISABLE;
3c4c9b81 10083 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
10084 ndelay(100);
10085
9ccd5aeb
PZ
10086 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
10087 1))
be256dc7
PZ
10088 DRM_ERROR("D_COMP RCOMP still in progress\n");
10089
10090 if (allow_power_down) {
10091 val = I915_READ(LCPLL_CTL);
10092 val |= LCPLL_POWER_DOWN_ALLOW;
10093 I915_WRITE(LCPLL_CTL, val);
10094 POSTING_READ(LCPLL_CTL);
10095 }
10096}
10097
10098/*
10099 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
10100 * source.
10101 */
6ff58d53 10102static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
be256dc7
PZ
10103{
10104 uint32_t val;
10105
10106 val = I915_READ(LCPLL_CTL);
10107
10108 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
10109 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
10110 return;
10111
a8a8bd54
PZ
10112 /*
10113 * Make sure we're not on PC8 state before disabling PC8, otherwise
10114 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
a8a8bd54 10115 */
59bad947 10116 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
215733fa 10117
be256dc7
PZ
10118 if (val & LCPLL_POWER_DOWN_ALLOW) {
10119 val &= ~LCPLL_POWER_DOWN_ALLOW;
10120 I915_WRITE(LCPLL_CTL, val);
35d8f2eb 10121 POSTING_READ(LCPLL_CTL);
be256dc7
PZ
10122 }
10123
9ccd5aeb 10124 val = hsw_read_dcomp(dev_priv);
be256dc7
PZ
10125 val |= D_COMP_COMP_FORCE;
10126 val &= ~D_COMP_COMP_DISABLE;
3c4c9b81 10127 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
10128
10129 val = I915_READ(LCPLL_CTL);
10130 val &= ~LCPLL_PLL_DISABLE;
10131 I915_WRITE(LCPLL_CTL, val);
10132
93220c08
CW
10133 if (intel_wait_for_register(dev_priv,
10134 LCPLL_CTL, LCPLL_PLL_LOCK, LCPLL_PLL_LOCK,
10135 5))
be256dc7
PZ
10136 DRM_ERROR("LCPLL not locked yet\n");
10137
10138 if (val & LCPLL_CD_SOURCE_FCLK) {
10139 val = I915_READ(LCPLL_CTL);
10140 val &= ~LCPLL_CD_SOURCE_FCLK;
10141 I915_WRITE(LCPLL_CTL, val);
10142
f53dd63f
ID
10143 if (wait_for_us((I915_READ(LCPLL_CTL) &
10144 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
be256dc7
PZ
10145 DRM_ERROR("Switching back to LCPLL failed\n");
10146 }
215733fa 10147
59bad947 10148 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
4c75b940 10149 intel_update_cdclk(dev_priv);
be256dc7
PZ
10150}
10151
765dab67
PZ
10152/*
10153 * Package states C8 and deeper are really deep PC states that can only be
10154 * reached when all the devices on the system allow it, so even if the graphics
10155 * device allows PC8+, it doesn't mean the system will actually get to these
10156 * states. Our driver only allows PC8+ when going into runtime PM.
10157 *
10158 * The requirements for PC8+ are that all the outputs are disabled, the power
10159 * well is disabled and most interrupts are disabled, and these are also
10160 * requirements for runtime PM. When these conditions are met, we manually do
10161 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
10162 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
10163 * hang the machine.
10164 *
10165 * When we really reach PC8 or deeper states (not just when we allow it) we lose
10166 * the state of some registers, so when we come back from PC8+ we need to
10167 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
10168 * need to take care of the registers kept by RC6. Notice that this happens even
10169 * if we don't put the device in PCI D3 state (which is what currently happens
10170 * because of the runtime PM support).
10171 *
10172 * For more, read "Display Sequences for Package C8" on the hardware
10173 * documentation.
10174 */
a14cb6fc 10175void hsw_enable_pc8(struct drm_i915_private *dev_priv)
c67a470b 10176{
91c8a326 10177 struct drm_device *dev = &dev_priv->drm;
c67a470b
PZ
10178 uint32_t val;
10179
c67a470b
PZ
10180 DRM_DEBUG_KMS("Enabling package C8+\n");
10181
4f8036a2 10182 if (HAS_PCH_LPT_LP(dev_priv)) {
c67a470b
PZ
10183 val = I915_READ(SOUTH_DSPCLK_GATE_D);
10184 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
10185 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
10186 }
10187
10188 lpt_disable_clkout_dp(dev);
c67a470b
PZ
10189 hsw_disable_lcpll(dev_priv, true, true);
10190}
10191
a14cb6fc 10192void hsw_disable_pc8(struct drm_i915_private *dev_priv)
c67a470b 10193{
91c8a326 10194 struct drm_device *dev = &dev_priv->drm;
c67a470b
PZ
10195 uint32_t val;
10196
c67a470b
PZ
10197 DRM_DEBUG_KMS("Disabling package C8+\n");
10198
10199 hsw_restore_lcpll(dev_priv);
c67a470b
PZ
10200 lpt_init_pch_refclk(dev);
10201
4f8036a2 10202 if (HAS_PCH_LPT_LP(dev_priv)) {
c67a470b
PZ
10203 val = I915_READ(SOUTH_DSPCLK_GATE_D);
10204 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
10205 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
10206 }
c67a470b
PZ
10207}
10208
324513c0 10209static void bxt_modeset_commit_cdclk(struct drm_atomic_state *old_state)
f8437dd1 10210{
a821fc46 10211 struct drm_device *dev = old_state->dev;
1a617b77
ML
10212 struct intel_atomic_state *old_intel_state =
10213 to_intel_atomic_state(old_state);
10214 unsigned int req_cdclk = old_intel_state->dev_cdclk;
f8437dd1 10215
324513c0 10216 bxt_set_cdclk(to_i915(dev), req_cdclk);
f8437dd1
VK
10217}
10218
b30ce9e0
DP
10219static int bdw_adjust_min_pipe_pixel_rate(struct intel_crtc_state *crtc_state,
10220 int pixel_rate)
10221{
9c754024
DP
10222 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
10223
b30ce9e0 10224 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
9c754024 10225 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
b30ce9e0
DP
10226 pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95);
10227
10228 /* BSpec says "Do not use DisplayPort with CDCLK less than
10229 * 432 MHz, audio enabled, port width x4, and link rate
10230 * HBR2 (5.4 GHz), or else there may be audio corruption or
10231 * screen corruption."
10232 */
10233 if (intel_crtc_has_dp_encoder(crtc_state) &&
10234 crtc_state->has_audio &&
10235 crtc_state->port_clock >= 540000 &&
10236 crtc_state->lane_count == 4)
10237 pixel_rate = max(432000, pixel_rate);
10238
10239 return pixel_rate;
10240}
10241
b432e5cf 10242/* compute the max rate for new configuration */
27c329ed 10243static int ilk_max_pixel_rate(struct drm_atomic_state *state)
b432e5cf 10244{
565602d7 10245 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fac5e23e 10246 struct drm_i915_private *dev_priv = to_i915(state->dev);
565602d7
ML
10247 struct drm_crtc *crtc;
10248 struct drm_crtc_state *cstate;
27c329ed 10249 struct intel_crtc_state *crtc_state;
565602d7
ML
10250 unsigned max_pixel_rate = 0, i;
10251 enum pipe pipe;
b432e5cf 10252
565602d7
ML
10253 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
10254 sizeof(intel_state->min_pixclk));
27c329ed 10255
565602d7
ML
10256 for_each_crtc_in_state(state, crtc, cstate, i) {
10257 int pixel_rate;
27c329ed 10258
565602d7
ML
10259 crtc_state = to_intel_crtc_state(cstate);
10260 if (!crtc_state->base.enable) {
10261 intel_state->min_pixclk[i] = 0;
b432e5cf 10262 continue;
565602d7 10263 }
b432e5cf 10264
27c329ed 10265 pixel_rate = ilk_pipe_pixel_rate(crtc_state);
b432e5cf 10266
9c754024 10267 if (IS_BROADWELL(dev_priv) || IS_GEN9(dev_priv))
b30ce9e0
DP
10268 pixel_rate = bdw_adjust_min_pipe_pixel_rate(crtc_state,
10269 pixel_rate);
b432e5cf 10270
565602d7 10271 intel_state->min_pixclk[i] = pixel_rate;
b432e5cf
VS
10272 }
10273
565602d7
ML
10274 for_each_pipe(dev_priv, pipe)
10275 max_pixel_rate = max(intel_state->min_pixclk[pipe], max_pixel_rate);
10276
b432e5cf
VS
10277 return max_pixel_rate;
10278}
10279
10280static void broadwell_set_cdclk(struct drm_device *dev, int cdclk)
10281{
fac5e23e 10282 struct drm_i915_private *dev_priv = to_i915(dev);
b432e5cf
VS
10283 uint32_t val, data;
10284 int ret;
10285
10286 if (WARN((I915_READ(LCPLL_CTL) &
10287 (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK |
10288 LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE |
10289 LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW |
10290 LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK,
10291 "trying to change cdclk frequency with cdclk not enabled\n"))
10292 return;
10293
10294 mutex_lock(&dev_priv->rps.hw_lock);
10295 ret = sandybridge_pcode_write(dev_priv,
10296 BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
10297 mutex_unlock(&dev_priv->rps.hw_lock);
10298 if (ret) {
10299 DRM_ERROR("failed to inform pcode about cdclk change\n");
10300 return;
10301 }
10302
10303 val = I915_READ(LCPLL_CTL);
10304 val |= LCPLL_CD_SOURCE_FCLK;
10305 I915_WRITE(LCPLL_CTL, val);
10306
5ba00178
TU
10307 if (wait_for_us(I915_READ(LCPLL_CTL) &
10308 LCPLL_CD_SOURCE_FCLK_DONE, 1))
b432e5cf
VS
10309 DRM_ERROR("Switching to FCLK failed\n");
10310
10311 val = I915_READ(LCPLL_CTL);
10312 val &= ~LCPLL_CLK_FREQ_MASK;
10313
10314 switch (cdclk) {
10315 case 450000:
10316 val |= LCPLL_CLK_FREQ_450;
10317 data = 0;
10318 break;
10319 case 540000:
10320 val |= LCPLL_CLK_FREQ_54O_BDW;
10321 data = 1;
10322 break;
10323 case 337500:
10324 val |= LCPLL_CLK_FREQ_337_5_BDW;
10325 data = 2;
10326 break;
10327 case 675000:
10328 val |= LCPLL_CLK_FREQ_675_BDW;
10329 data = 3;
10330 break;
10331 default:
10332 WARN(1, "invalid cdclk frequency\n");
10333 return;
10334 }
10335
10336 I915_WRITE(LCPLL_CTL, val);
10337
10338 val = I915_READ(LCPLL_CTL);
10339 val &= ~LCPLL_CD_SOURCE_FCLK;
10340 I915_WRITE(LCPLL_CTL, val);
10341
5ba00178
TU
10342 if (wait_for_us((I915_READ(LCPLL_CTL) &
10343 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
b432e5cf
VS
10344 DRM_ERROR("Switching back to LCPLL failed\n");
10345
10346 mutex_lock(&dev_priv->rps.hw_lock);
10347 sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data);
10348 mutex_unlock(&dev_priv->rps.hw_lock);
10349
7f1052a8
VS
10350 I915_WRITE(CDCLK_FREQ, DIV_ROUND_CLOSEST(cdclk, 1000) - 1);
10351
4c75b940 10352 intel_update_cdclk(dev_priv);
b432e5cf
VS
10353
10354 WARN(cdclk != dev_priv->cdclk_freq,
10355 "cdclk requested %d kHz but got %d kHz\n",
10356 cdclk, dev_priv->cdclk_freq);
10357}
10358
587c7914
VS
10359static int broadwell_calc_cdclk(int max_pixclk)
10360{
10361 if (max_pixclk > 540000)
10362 return 675000;
10363 else if (max_pixclk > 450000)
10364 return 540000;
10365 else if (max_pixclk > 337500)
10366 return 450000;
10367 else
10368 return 337500;
10369}
10370
27c329ed 10371static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state)
b432e5cf 10372{
27c329ed 10373 struct drm_i915_private *dev_priv = to_i915(state->dev);
1a617b77 10374 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
27c329ed 10375 int max_pixclk = ilk_max_pixel_rate(state);
b432e5cf
VS
10376 int cdclk;
10377
10378 /*
10379 * FIXME should also account for plane ratio
10380 * once 64bpp pixel formats are supported.
10381 */
587c7914 10382 cdclk = broadwell_calc_cdclk(max_pixclk);
b432e5cf 10383
b432e5cf 10384 if (cdclk > dev_priv->max_cdclk_freq) {
63ba534e
ML
10385 DRM_DEBUG_KMS("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
10386 cdclk, dev_priv->max_cdclk_freq);
10387 return -EINVAL;
b432e5cf
VS
10388 }
10389
1a617b77
ML
10390 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
10391 if (!intel_state->active_crtcs)
587c7914 10392 intel_state->dev_cdclk = broadwell_calc_cdclk(0);
b432e5cf
VS
10393
10394 return 0;
10395}
10396
27c329ed 10397static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state)
b432e5cf 10398{
27c329ed 10399 struct drm_device *dev = old_state->dev;
1a617b77
ML
10400 struct intel_atomic_state *old_intel_state =
10401 to_intel_atomic_state(old_state);
10402 unsigned req_cdclk = old_intel_state->dev_cdclk;
b432e5cf 10403
27c329ed 10404 broadwell_set_cdclk(dev, req_cdclk);
b432e5cf
VS
10405}
10406
c89e39f3
CT
10407static int skl_modeset_calc_cdclk(struct drm_atomic_state *state)
10408{
10409 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
10410 struct drm_i915_private *dev_priv = to_i915(state->dev);
10411 const int max_pixclk = ilk_max_pixel_rate(state);
a8ca4934 10412 int vco = intel_state->cdclk_pll_vco;
c89e39f3
CT
10413 int cdclk;
10414
10415 /*
10416 * FIXME should also account for plane ratio
10417 * once 64bpp pixel formats are supported.
10418 */
a8ca4934 10419 cdclk = skl_calc_cdclk(max_pixclk, vco);
c89e39f3
CT
10420
10421 /*
10422 * FIXME move the cdclk caclulation to
10423 * compute_config() so we can fail gracegully.
10424 */
10425 if (cdclk > dev_priv->max_cdclk_freq) {
10426 DRM_ERROR("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
10427 cdclk, dev_priv->max_cdclk_freq);
10428 cdclk = dev_priv->max_cdclk_freq;
10429 }
10430
10431 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
10432 if (!intel_state->active_crtcs)
a8ca4934 10433 intel_state->dev_cdclk = skl_calc_cdclk(0, vco);
c89e39f3
CT
10434
10435 return 0;
10436}
10437
10438static void skl_modeset_commit_cdclk(struct drm_atomic_state *old_state)
10439{
1cd593e0
VS
10440 struct drm_i915_private *dev_priv = to_i915(old_state->dev);
10441 struct intel_atomic_state *intel_state = to_intel_atomic_state(old_state);
10442 unsigned int req_cdclk = intel_state->dev_cdclk;
10443 unsigned int req_vco = intel_state->cdclk_pll_vco;
c89e39f3 10444
1cd593e0 10445 skl_set_cdclk(dev_priv, req_cdclk, req_vco);
c89e39f3
CT
10446}
10447
190f68c5
ACO
10448static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
10449 struct intel_crtc_state *crtc_state)
09b4ddf9 10450{
d7edc4e5 10451 if (!intel_crtc_has_type(crtc_state, INTEL_OUTPUT_DSI)) {
af3997b5
MK
10452 if (!intel_ddi_pll_select(crtc, crtc_state))
10453 return -EINVAL;
10454 }
716c2e55 10455
c7653199 10456 crtc->lowfreq_avail = false;
644cef34 10457
c8f7a0db 10458 return 0;
79e53945
JB
10459}
10460
3760b59c
S
10461static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
10462 enum port port,
10463 struct intel_crtc_state *pipe_config)
10464{
8106ddbd
ACO
10465 enum intel_dpll_id id;
10466
3760b59c
S
10467 switch (port) {
10468 case PORT_A:
08250c4b 10469 id = DPLL_ID_SKL_DPLL0;
3760b59c
S
10470 break;
10471 case PORT_B:
08250c4b 10472 id = DPLL_ID_SKL_DPLL1;
3760b59c
S
10473 break;
10474 case PORT_C:
08250c4b 10475 id = DPLL_ID_SKL_DPLL2;
3760b59c
S
10476 break;
10477 default:
10478 DRM_ERROR("Incorrect port type\n");
8106ddbd 10479 return;
3760b59c 10480 }
8106ddbd
ACO
10481
10482 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
3760b59c
S
10483}
10484
96b7dfb7
S
10485static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
10486 enum port port,
5cec258b 10487 struct intel_crtc_state *pipe_config)
96b7dfb7 10488{
8106ddbd 10489 enum intel_dpll_id id;
a3c988ea 10490 u32 temp;
96b7dfb7
S
10491
10492 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
c856052a 10493 id = temp >> (port * 3 + 1);
96b7dfb7 10494
c856052a 10495 if (WARN_ON(id < SKL_DPLL0 || id > SKL_DPLL3))
8106ddbd 10496 return;
8106ddbd
ACO
10497
10498 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
96b7dfb7
S
10499}
10500
7d2c8175
DL
10501static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
10502 enum port port,
5cec258b 10503 struct intel_crtc_state *pipe_config)
7d2c8175 10504{
8106ddbd 10505 enum intel_dpll_id id;
c856052a 10506 uint32_t ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
8106ddbd 10507
c856052a 10508 switch (ddi_pll_sel) {
7d2c8175 10509 case PORT_CLK_SEL_WRPLL1:
8106ddbd 10510 id = DPLL_ID_WRPLL1;
7d2c8175
DL
10511 break;
10512 case PORT_CLK_SEL_WRPLL2:
8106ddbd 10513 id = DPLL_ID_WRPLL2;
7d2c8175 10514 break;
00490c22 10515 case PORT_CLK_SEL_SPLL:
8106ddbd 10516 id = DPLL_ID_SPLL;
79bd23da 10517 break;
9d16da65
ACO
10518 case PORT_CLK_SEL_LCPLL_810:
10519 id = DPLL_ID_LCPLL_810;
10520 break;
10521 case PORT_CLK_SEL_LCPLL_1350:
10522 id = DPLL_ID_LCPLL_1350;
10523 break;
10524 case PORT_CLK_SEL_LCPLL_2700:
10525 id = DPLL_ID_LCPLL_2700;
10526 break;
8106ddbd 10527 default:
c856052a 10528 MISSING_CASE(ddi_pll_sel);
8106ddbd
ACO
10529 /* fall through */
10530 case PORT_CLK_SEL_NONE:
8106ddbd 10531 return;
7d2c8175 10532 }
8106ddbd
ACO
10533
10534 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
7d2c8175
DL
10535}
10536
cf30429e
JN
10537static bool hsw_get_transcoder_state(struct intel_crtc *crtc,
10538 struct intel_crtc_state *pipe_config,
10539 unsigned long *power_domain_mask)
10540{
10541 struct drm_device *dev = crtc->base.dev;
fac5e23e 10542 struct drm_i915_private *dev_priv = to_i915(dev);
cf30429e
JN
10543 enum intel_display_power_domain power_domain;
10544 u32 tmp;
10545
d9a7bc67
ID
10546 /*
10547 * The pipe->transcoder mapping is fixed with the exception of the eDP
10548 * transcoder handled below.
10549 */
cf30429e
JN
10550 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
10551
10552 /*
10553 * XXX: Do intel_display_power_get_if_enabled before reading this (for
10554 * consistency and less surprising code; it's in always on power).
10555 */
10556 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
10557 if (tmp & TRANS_DDI_FUNC_ENABLE) {
10558 enum pipe trans_edp_pipe;
10559 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
10560 default:
10561 WARN(1, "unknown pipe linked to edp transcoder\n");
10562 case TRANS_DDI_EDP_INPUT_A_ONOFF:
10563 case TRANS_DDI_EDP_INPUT_A_ON:
10564 trans_edp_pipe = PIPE_A;
10565 break;
10566 case TRANS_DDI_EDP_INPUT_B_ONOFF:
10567 trans_edp_pipe = PIPE_B;
10568 break;
10569 case TRANS_DDI_EDP_INPUT_C_ONOFF:
10570 trans_edp_pipe = PIPE_C;
10571 break;
10572 }
10573
10574 if (trans_edp_pipe == crtc->pipe)
10575 pipe_config->cpu_transcoder = TRANSCODER_EDP;
10576 }
10577
10578 power_domain = POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder);
10579 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
10580 return false;
10581 *power_domain_mask |= BIT(power_domain);
10582
10583 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
10584
10585 return tmp & PIPECONF_ENABLE;
10586}
10587
4d1de975
JN
10588static bool bxt_get_dsi_transcoder_state(struct intel_crtc *crtc,
10589 struct intel_crtc_state *pipe_config,
10590 unsigned long *power_domain_mask)
10591{
10592 struct drm_device *dev = crtc->base.dev;
fac5e23e 10593 struct drm_i915_private *dev_priv = to_i915(dev);
4d1de975
JN
10594 enum intel_display_power_domain power_domain;
10595 enum port port;
10596 enum transcoder cpu_transcoder;
10597 u32 tmp;
10598
4d1de975
JN
10599 for_each_port_masked(port, BIT(PORT_A) | BIT(PORT_C)) {
10600 if (port == PORT_A)
10601 cpu_transcoder = TRANSCODER_DSI_A;
10602 else
10603 cpu_transcoder = TRANSCODER_DSI_C;
10604
10605 power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
10606 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
10607 continue;
10608 *power_domain_mask |= BIT(power_domain);
10609
db18b6a6
ID
10610 /*
10611 * The PLL needs to be enabled with a valid divider
10612 * configuration, otherwise accessing DSI registers will hang
10613 * the machine. See BSpec North Display Engine
10614 * registers/MIPI[BXT]. We can break out here early, since we
10615 * need the same DSI PLL to be enabled for both DSI ports.
10616 */
10617 if (!intel_dsi_pll_is_enabled(dev_priv))
10618 break;
10619
4d1de975
JN
10620 /* XXX: this works for video mode only */
10621 tmp = I915_READ(BXT_MIPI_PORT_CTRL(port));
10622 if (!(tmp & DPI_ENABLE))
10623 continue;
10624
10625 tmp = I915_READ(MIPI_CTRL(port));
10626 if ((tmp & BXT_PIPE_SELECT_MASK) != BXT_PIPE_SELECT(crtc->pipe))
10627 continue;
10628
10629 pipe_config->cpu_transcoder = cpu_transcoder;
4d1de975
JN
10630 break;
10631 }
10632
d7edc4e5 10633 return transcoder_is_dsi(pipe_config->cpu_transcoder);
4d1de975
JN
10634}
10635
26804afd 10636static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
5cec258b 10637 struct intel_crtc_state *pipe_config)
26804afd 10638{
6315b5d3 10639 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
d452c5b6 10640 struct intel_shared_dpll *pll;
26804afd
DV
10641 enum port port;
10642 uint32_t tmp;
10643
10644 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
10645
10646 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
10647
0853723b 10648 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
96b7dfb7 10649 skylake_get_ddi_pll(dev_priv, port, pipe_config);
e2d214ae 10650 else if (IS_BROXTON(dev_priv))
3760b59c 10651 bxt_get_ddi_pll(dev_priv, port, pipe_config);
96b7dfb7
S
10652 else
10653 haswell_get_ddi_pll(dev_priv, port, pipe_config);
9cd86933 10654
8106ddbd
ACO
10655 pll = pipe_config->shared_dpll;
10656 if (pll) {
2edd6443
ACO
10657 WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll,
10658 &pipe_config->dpll_hw_state));
d452c5b6
DV
10659 }
10660
26804afd
DV
10661 /*
10662 * Haswell has only FDI/PCH transcoder A. It is which is connected to
10663 * DDI E. So just check whether this pipe is wired to DDI E and whether
10664 * the PCH transcoder is on.
10665 */
6315b5d3 10666 if (INTEL_GEN(dev_priv) < 9 &&
ca370455 10667 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
26804afd
DV
10668 pipe_config->has_pch_encoder = true;
10669
10670 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
10671 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
10672 FDI_DP_PORT_WIDTH_SHIFT) + 1;
10673
10674 ironlake_get_fdi_m_n_config(crtc, pipe_config);
10675 }
10676}
10677
0e8ffe1b 10678static bool haswell_get_pipe_config(struct intel_crtc *crtc,
5cec258b 10679 struct intel_crtc_state *pipe_config)
0e8ffe1b 10680{
6315b5d3 10681 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1729050e
ID
10682 enum intel_display_power_domain power_domain;
10683 unsigned long power_domain_mask;
cf30429e 10684 bool active;
0e8ffe1b 10685
1729050e
ID
10686 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
10687 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
b5482bd0 10688 return false;
1729050e
ID
10689 power_domain_mask = BIT(power_domain);
10690
8106ddbd 10691 pipe_config->shared_dpll = NULL;
c0d43d62 10692
cf30429e 10693 active = hsw_get_transcoder_state(crtc, pipe_config, &power_domain_mask);
eccb140b 10694
d7edc4e5
VS
10695 if (IS_BROXTON(dev_priv) &&
10696 bxt_get_dsi_transcoder_state(crtc, pipe_config, &power_domain_mask)) {
10697 WARN_ON(active);
10698 active = true;
4d1de975
JN
10699 }
10700
cf30429e 10701 if (!active)
1729050e 10702 goto out;
0e8ffe1b 10703
d7edc4e5 10704 if (!transcoder_is_dsi(pipe_config->cpu_transcoder)) {
4d1de975
JN
10705 haswell_get_ddi_port_state(crtc, pipe_config);
10706 intel_get_pipe_timings(crtc, pipe_config);
10707 }
627eb5a3 10708
bc58be60 10709 intel_get_pipe_src_size(crtc, pipe_config);
1bd1bd80 10710
05dc698c
LL
10711 pipe_config->gamma_mode =
10712 I915_READ(GAMMA_MODE(crtc->pipe)) & GAMMA_MODE_MODE_MASK;
10713
6315b5d3 10714 if (INTEL_GEN(dev_priv) >= 9) {
65edccce 10715 skl_init_scalers(dev_priv, crtc, pipe_config);
a1b2278e 10716
af99ceda
CK
10717 pipe_config->scaler_state.scaler_id = -1;
10718 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
10719 }
10720
1729050e
ID
10721 power_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
10722 if (intel_display_power_get_if_enabled(dev_priv, power_domain)) {
10723 power_domain_mask |= BIT(power_domain);
6315b5d3 10724 if (INTEL_GEN(dev_priv) >= 9)
bd2e244f 10725 skylake_get_pfit_config(crtc, pipe_config);
ff6d9f55 10726 else
1c132b44 10727 ironlake_get_pfit_config(crtc, pipe_config);
bd2e244f 10728 }
88adfff1 10729
772c2a51 10730 if (IS_HASWELL(dev_priv))
e59150dc
JB
10731 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
10732 (I915_READ(IPS_CTL) & IPS_ENABLE);
42db64ef 10733
4d1de975
JN
10734 if (pipe_config->cpu_transcoder != TRANSCODER_EDP &&
10735 !transcoder_is_dsi(pipe_config->cpu_transcoder)) {
ebb69c95
CT
10736 pipe_config->pixel_multiplier =
10737 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
10738 } else {
10739 pipe_config->pixel_multiplier = 1;
10740 }
6c49f241 10741
1729050e
ID
10742out:
10743 for_each_power_domain(power_domain, power_domain_mask)
10744 intel_display_power_put(dev_priv, power_domain);
10745
cf30429e 10746 return active;
0e8ffe1b
DV
10747}
10748
55a08b3f
ML
10749static void i845_update_cursor(struct drm_crtc *crtc, u32 base,
10750 const struct intel_plane_state *plane_state)
560b85bb
CW
10751{
10752 struct drm_device *dev = crtc->dev;
fac5e23e 10753 struct drm_i915_private *dev_priv = to_i915(dev);
560b85bb 10754 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
dc41c154 10755 uint32_t cntl = 0, size = 0;
560b85bb 10756
936e71e3 10757 if (plane_state && plane_state->base.visible) {
55a08b3f
ML
10758 unsigned int width = plane_state->base.crtc_w;
10759 unsigned int height = plane_state->base.crtc_h;
dc41c154
VS
10760 unsigned int stride = roundup_pow_of_two(width) * 4;
10761
10762 switch (stride) {
10763 default:
10764 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
10765 width, stride);
10766 stride = 256;
10767 /* fallthrough */
10768 case 256:
10769 case 512:
10770 case 1024:
10771 case 2048:
10772 break;
4b0e333e
CW
10773 }
10774
dc41c154
VS
10775 cntl |= CURSOR_ENABLE |
10776 CURSOR_GAMMA_ENABLE |
10777 CURSOR_FORMAT_ARGB |
10778 CURSOR_STRIDE(stride);
10779
10780 size = (height << 12) | width;
4b0e333e 10781 }
560b85bb 10782
dc41c154
VS
10783 if (intel_crtc->cursor_cntl != 0 &&
10784 (intel_crtc->cursor_base != base ||
10785 intel_crtc->cursor_size != size ||
10786 intel_crtc->cursor_cntl != cntl)) {
10787 /* On these chipsets we can only modify the base/size/stride
10788 * whilst the cursor is disabled.
10789 */
0b87c24e
VS
10790 I915_WRITE(CURCNTR(PIPE_A), 0);
10791 POSTING_READ(CURCNTR(PIPE_A));
dc41c154 10792 intel_crtc->cursor_cntl = 0;
4b0e333e 10793 }
560b85bb 10794
99d1f387 10795 if (intel_crtc->cursor_base != base) {
0b87c24e 10796 I915_WRITE(CURBASE(PIPE_A), base);
99d1f387
VS
10797 intel_crtc->cursor_base = base;
10798 }
4726e0b0 10799
dc41c154
VS
10800 if (intel_crtc->cursor_size != size) {
10801 I915_WRITE(CURSIZE, size);
10802 intel_crtc->cursor_size = size;
4b0e333e 10803 }
560b85bb 10804
4b0e333e 10805 if (intel_crtc->cursor_cntl != cntl) {
0b87c24e
VS
10806 I915_WRITE(CURCNTR(PIPE_A), cntl);
10807 POSTING_READ(CURCNTR(PIPE_A));
4b0e333e 10808 intel_crtc->cursor_cntl = cntl;
560b85bb 10809 }
560b85bb
CW
10810}
10811
55a08b3f
ML
10812static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base,
10813 const struct intel_plane_state *plane_state)
65a21cd6
JB
10814{
10815 struct drm_device *dev = crtc->dev;
fac5e23e 10816 struct drm_i915_private *dev_priv = to_i915(dev);
65a21cd6
JB
10817 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10818 int pipe = intel_crtc->pipe;
663f3122 10819 uint32_t cntl = 0;
4b0e333e 10820
936e71e3 10821 if (plane_state && plane_state->base.visible) {
4b0e333e 10822 cntl = MCURSOR_GAMMA_ENABLE;
55a08b3f 10823 switch (plane_state->base.crtc_w) {
4726e0b0
SK
10824 case 64:
10825 cntl |= CURSOR_MODE_64_ARGB_AX;
10826 break;
10827 case 128:
10828 cntl |= CURSOR_MODE_128_ARGB_AX;
10829 break;
10830 case 256:
10831 cntl |= CURSOR_MODE_256_ARGB_AX;
10832 break;
10833 default:
55a08b3f 10834 MISSING_CASE(plane_state->base.crtc_w);
4726e0b0 10835 return;
65a21cd6 10836 }
4b0e333e 10837 cntl |= pipe << 28; /* Connect to correct pipe */
47bf17a7 10838
4f8036a2 10839 if (HAS_DDI(dev_priv))
47bf17a7 10840 cntl |= CURSOR_PIPE_CSC_ENABLE;
65a21cd6 10841
f22aa143 10842 if (plane_state->base.rotation & DRM_ROTATE_180)
55a08b3f
ML
10843 cntl |= CURSOR_ROTATE_180;
10844 }
4398ad45 10845
4b0e333e
CW
10846 if (intel_crtc->cursor_cntl != cntl) {
10847 I915_WRITE(CURCNTR(pipe), cntl);
10848 POSTING_READ(CURCNTR(pipe));
10849 intel_crtc->cursor_cntl = cntl;
65a21cd6 10850 }
4b0e333e 10851
65a21cd6 10852 /* and commit changes on next vblank */
5efb3e28
VS
10853 I915_WRITE(CURBASE(pipe), base);
10854 POSTING_READ(CURBASE(pipe));
99d1f387
VS
10855
10856 intel_crtc->cursor_base = base;
65a21cd6
JB
10857}
10858
cda4b7d3 10859/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6b383a7f 10860static void intel_crtc_update_cursor(struct drm_crtc *crtc,
55a08b3f 10861 const struct intel_plane_state *plane_state)
cda4b7d3
CW
10862{
10863 struct drm_device *dev = crtc->dev;
fac5e23e 10864 struct drm_i915_private *dev_priv = to_i915(dev);
cda4b7d3
CW
10865 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10866 int pipe = intel_crtc->pipe;
55a08b3f
ML
10867 u32 base = intel_crtc->cursor_addr;
10868 u32 pos = 0;
cda4b7d3 10869
55a08b3f
ML
10870 if (plane_state) {
10871 int x = plane_state->base.crtc_x;
10872 int y = plane_state->base.crtc_y;
cda4b7d3 10873
55a08b3f
ML
10874 if (x < 0) {
10875 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
10876 x = -x;
10877 }
10878 pos |= x << CURSOR_X_SHIFT;
cda4b7d3 10879
55a08b3f
ML
10880 if (y < 0) {
10881 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
10882 y = -y;
10883 }
10884 pos |= y << CURSOR_Y_SHIFT;
10885
10886 /* ILK+ do this automagically */
49cff963 10887 if (HAS_GMCH_DISPLAY(dev_priv) &&
f22aa143 10888 plane_state->base.rotation & DRM_ROTATE_180) {
55a08b3f
ML
10889 base += (plane_state->base.crtc_h *
10890 plane_state->base.crtc_w - 1) * 4;
10891 }
cda4b7d3 10892 }
cda4b7d3 10893
5efb3e28
VS
10894 I915_WRITE(CURPOS(pipe), pos);
10895
50a0bc90 10896 if (IS_845G(dev_priv) || IS_I865G(dev_priv))
55a08b3f 10897 i845_update_cursor(crtc, base, plane_state);
5efb3e28 10898 else
55a08b3f 10899 i9xx_update_cursor(crtc, base, plane_state);
cda4b7d3
CW
10900}
10901
50a0bc90 10902static bool cursor_size_ok(struct drm_i915_private *dev_priv,
dc41c154
VS
10903 uint32_t width, uint32_t height)
10904{
10905 if (width == 0 || height == 0)
10906 return false;
10907
10908 /*
10909 * 845g/865g are special in that they are only limited by
10910 * the width of their cursors, the height is arbitrary up to
10911 * the precision of the register. Everything else requires
10912 * square cursors, limited to a few power-of-two sizes.
10913 */
50a0bc90 10914 if (IS_845G(dev_priv) || IS_I865G(dev_priv)) {
dc41c154
VS
10915 if ((width & 63) != 0)
10916 return false;
10917
50a0bc90 10918 if (width > (IS_845G(dev_priv) ? 64 : 512))
dc41c154
VS
10919 return false;
10920
10921 if (height > 1023)
10922 return false;
10923 } else {
10924 switch (width | height) {
10925 case 256:
10926 case 128:
50a0bc90 10927 if (IS_GEN2(dev_priv))
dc41c154
VS
10928 return false;
10929 case 64:
10930 break;
10931 default:
10932 return false;
10933 }
10934 }
10935
10936 return true;
10937}
10938
79e53945
JB
10939/* VESA 640x480x72Hz mode to set on the pipe */
10940static struct drm_display_mode load_detect_mode = {
10941 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
10942 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
10943};
10944
a8bb6818
DV
10945struct drm_framebuffer *
10946__intel_framebuffer_create(struct drm_device *dev,
10947 struct drm_mode_fb_cmd2 *mode_cmd,
10948 struct drm_i915_gem_object *obj)
d2dff872
CW
10949{
10950 struct intel_framebuffer *intel_fb;
10951 int ret;
10952
10953 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
dcb1394e 10954 if (!intel_fb)
d2dff872 10955 return ERR_PTR(-ENOMEM);
d2dff872
CW
10956
10957 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
dd4916c5
DV
10958 if (ret)
10959 goto err;
d2dff872
CW
10960
10961 return &intel_fb->base;
dcb1394e 10962
dd4916c5 10963err:
dd4916c5 10964 kfree(intel_fb);
dd4916c5 10965 return ERR_PTR(ret);
d2dff872
CW
10966}
10967
b5ea642a 10968static struct drm_framebuffer *
a8bb6818
DV
10969intel_framebuffer_create(struct drm_device *dev,
10970 struct drm_mode_fb_cmd2 *mode_cmd,
10971 struct drm_i915_gem_object *obj)
10972{
10973 struct drm_framebuffer *fb;
10974 int ret;
10975
10976 ret = i915_mutex_lock_interruptible(dev);
10977 if (ret)
10978 return ERR_PTR(ret);
10979 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
10980 mutex_unlock(&dev->struct_mutex);
10981
10982 return fb;
10983}
10984
d2dff872
CW
10985static u32
10986intel_framebuffer_pitch_for_width(int width, int bpp)
10987{
10988 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
10989 return ALIGN(pitch, 64);
10990}
10991
10992static u32
10993intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
10994{
10995 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
1267a26b 10996 return PAGE_ALIGN(pitch * mode->vdisplay);
d2dff872
CW
10997}
10998
10999static struct drm_framebuffer *
11000intel_framebuffer_create_for_mode(struct drm_device *dev,
11001 struct drm_display_mode *mode,
11002 int depth, int bpp)
11003{
dcb1394e 11004 struct drm_framebuffer *fb;
d2dff872 11005 struct drm_i915_gem_object *obj;
0fed39bd 11006 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
d2dff872 11007
d37cd8a8 11008 obj = i915_gem_object_create(dev,
d2dff872 11009 intel_framebuffer_size_for_mode(mode, bpp));
fe3db79b
CW
11010 if (IS_ERR(obj))
11011 return ERR_CAST(obj);
d2dff872
CW
11012
11013 mode_cmd.width = mode->hdisplay;
11014 mode_cmd.height = mode->vdisplay;
308e5bcb
JB
11015 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
11016 bpp);
5ca0c34a 11017 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
d2dff872 11018
dcb1394e
LW
11019 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
11020 if (IS_ERR(fb))
f0cd5182 11021 i915_gem_object_put(obj);
dcb1394e
LW
11022
11023 return fb;
d2dff872
CW
11024}
11025
11026static struct drm_framebuffer *
11027mode_fits_in_fbdev(struct drm_device *dev,
11028 struct drm_display_mode *mode)
11029{
0695726e 11030#ifdef CONFIG_DRM_FBDEV_EMULATION
fac5e23e 11031 struct drm_i915_private *dev_priv = to_i915(dev);
d2dff872
CW
11032 struct drm_i915_gem_object *obj;
11033 struct drm_framebuffer *fb;
11034
4c0e5528 11035 if (!dev_priv->fbdev)
d2dff872
CW
11036 return NULL;
11037
4c0e5528 11038 if (!dev_priv->fbdev->fb)
d2dff872
CW
11039 return NULL;
11040
4c0e5528
DV
11041 obj = dev_priv->fbdev->fb->obj;
11042 BUG_ON(!obj);
11043
8bcd4553 11044 fb = &dev_priv->fbdev->fb->base;
01f2c773
VS
11045 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
11046 fb->bits_per_pixel))
d2dff872
CW
11047 return NULL;
11048
01f2c773 11049 if (obj->base.size < mode->vdisplay * fb->pitches[0])
d2dff872
CW
11050 return NULL;
11051
edde3617 11052 drm_framebuffer_reference(fb);
d2dff872 11053 return fb;
4520f53a
DV
11054#else
11055 return NULL;
11056#endif
d2dff872
CW
11057}
11058
d3a40d1b
ACO
11059static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
11060 struct drm_crtc *crtc,
11061 struct drm_display_mode *mode,
11062 struct drm_framebuffer *fb,
11063 int x, int y)
11064{
11065 struct drm_plane_state *plane_state;
11066 int hdisplay, vdisplay;
11067 int ret;
11068
11069 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
11070 if (IS_ERR(plane_state))
11071 return PTR_ERR(plane_state);
11072
11073 if (mode)
11074 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
11075 else
11076 hdisplay = vdisplay = 0;
11077
11078 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
11079 if (ret)
11080 return ret;
11081 drm_atomic_set_fb_for_plane(plane_state, fb);
11082 plane_state->crtc_x = 0;
11083 plane_state->crtc_y = 0;
11084 plane_state->crtc_w = hdisplay;
11085 plane_state->crtc_h = vdisplay;
11086 plane_state->src_x = x << 16;
11087 plane_state->src_y = y << 16;
11088 plane_state->src_w = hdisplay << 16;
11089 plane_state->src_h = vdisplay << 16;
11090
11091 return 0;
11092}
11093
d2434ab7 11094bool intel_get_load_detect_pipe(struct drm_connector *connector,
7173188d 11095 struct drm_display_mode *mode,
51fd371b
RC
11096 struct intel_load_detect_pipe *old,
11097 struct drm_modeset_acquire_ctx *ctx)
79e53945
JB
11098{
11099 struct intel_crtc *intel_crtc;
d2434ab7
DV
11100 struct intel_encoder *intel_encoder =
11101 intel_attached_encoder(connector);
79e53945 11102 struct drm_crtc *possible_crtc;
4ef69c7a 11103 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
11104 struct drm_crtc *crtc = NULL;
11105 struct drm_device *dev = encoder->dev;
0f0f74bc 11106 struct drm_i915_private *dev_priv = to_i915(dev);
94352cf9 11107 struct drm_framebuffer *fb;
51fd371b 11108 struct drm_mode_config *config = &dev->mode_config;
edde3617 11109 struct drm_atomic_state *state = NULL, *restore_state = NULL;
944b0c76 11110 struct drm_connector_state *connector_state;
4be07317 11111 struct intel_crtc_state *crtc_state;
51fd371b 11112 int ret, i = -1;
79e53945 11113
d2dff872 11114 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 11115 connector->base.id, connector->name,
8e329a03 11116 encoder->base.id, encoder->name);
d2dff872 11117
edde3617
ML
11118 old->restore_state = NULL;
11119
51fd371b
RC
11120retry:
11121 ret = drm_modeset_lock(&config->connection_mutex, ctx);
11122 if (ret)
ad3c558f 11123 goto fail;
6e9f798d 11124
79e53945
JB
11125 /*
11126 * Algorithm gets a little messy:
7a5e4805 11127 *
79e53945
JB
11128 * - if the connector already has an assigned crtc, use it (but make
11129 * sure it's on first)
7a5e4805 11130 *
79e53945
JB
11131 * - try to find the first unused crtc that can drive this connector,
11132 * and use that if we find one
79e53945
JB
11133 */
11134
11135 /* See if we already have a CRTC for this connector */
edde3617
ML
11136 if (connector->state->crtc) {
11137 crtc = connector->state->crtc;
8261b191 11138
51fd371b 11139 ret = drm_modeset_lock(&crtc->mutex, ctx);
4d02e2de 11140 if (ret)
ad3c558f 11141 goto fail;
8261b191
CW
11142
11143 /* Make sure the crtc and connector are running */
edde3617 11144 goto found;
79e53945
JB
11145 }
11146
11147 /* Find an unused one (if possible) */
70e1e0ec 11148 for_each_crtc(dev, possible_crtc) {
79e53945
JB
11149 i++;
11150 if (!(encoder->possible_crtcs & (1 << i)))
11151 continue;
edde3617
ML
11152
11153 ret = drm_modeset_lock(&possible_crtc->mutex, ctx);
11154 if (ret)
11155 goto fail;
11156
11157 if (possible_crtc->state->enable) {
11158 drm_modeset_unlock(&possible_crtc->mutex);
a459249c 11159 continue;
edde3617 11160 }
a459249c
VS
11161
11162 crtc = possible_crtc;
11163 break;
79e53945
JB
11164 }
11165
11166 /*
11167 * If we didn't find an unused CRTC, don't use any.
11168 */
11169 if (!crtc) {
7173188d 11170 DRM_DEBUG_KMS("no pipe available for load-detect\n");
ad3c558f 11171 goto fail;
79e53945
JB
11172 }
11173
edde3617
ML
11174found:
11175 intel_crtc = to_intel_crtc(crtc);
11176
4d02e2de
DV
11177 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
11178 if (ret)
ad3c558f 11179 goto fail;
79e53945 11180
83a57153 11181 state = drm_atomic_state_alloc(dev);
edde3617
ML
11182 restore_state = drm_atomic_state_alloc(dev);
11183 if (!state || !restore_state) {
11184 ret = -ENOMEM;
11185 goto fail;
11186 }
83a57153
ACO
11187
11188 state->acquire_ctx = ctx;
edde3617 11189 restore_state->acquire_ctx = ctx;
83a57153 11190
944b0c76
ACO
11191 connector_state = drm_atomic_get_connector_state(state, connector);
11192 if (IS_ERR(connector_state)) {
11193 ret = PTR_ERR(connector_state);
11194 goto fail;
11195 }
11196
edde3617
ML
11197 ret = drm_atomic_set_crtc_for_connector(connector_state, crtc);
11198 if (ret)
11199 goto fail;
944b0c76 11200
4be07317
ACO
11201 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
11202 if (IS_ERR(crtc_state)) {
11203 ret = PTR_ERR(crtc_state);
11204 goto fail;
11205 }
11206
49d6fa21 11207 crtc_state->base.active = crtc_state->base.enable = true;
4be07317 11208
6492711d
CW
11209 if (!mode)
11210 mode = &load_detect_mode;
79e53945 11211
d2dff872
CW
11212 /* We need a framebuffer large enough to accommodate all accesses
11213 * that the plane may generate whilst we perform load detection.
11214 * We can not rely on the fbcon either being present (we get called
11215 * during its initialisation to detect all boot displays, or it may
11216 * not even exist) or that it is large enough to satisfy the
11217 * requested mode.
11218 */
94352cf9
DV
11219 fb = mode_fits_in_fbdev(dev, mode);
11220 if (fb == NULL) {
d2dff872 11221 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
94352cf9 11222 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
d2dff872
CW
11223 } else
11224 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
94352cf9 11225 if (IS_ERR(fb)) {
d2dff872 11226 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
412b61d8 11227 goto fail;
79e53945 11228 }
79e53945 11229
d3a40d1b
ACO
11230 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
11231 if (ret)
11232 goto fail;
11233
edde3617
ML
11234 drm_framebuffer_unreference(fb);
11235
11236 ret = drm_atomic_set_mode_for_crtc(&crtc_state->base, mode);
11237 if (ret)
11238 goto fail;
11239
11240 ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(restore_state, connector));
11241 if (!ret)
11242 ret = PTR_ERR_OR_ZERO(drm_atomic_get_crtc_state(restore_state, crtc));
11243 if (!ret)
11244 ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(restore_state, crtc->primary));
11245 if (ret) {
11246 DRM_DEBUG_KMS("Failed to create a copy of old state to restore: %i\n", ret);
11247 goto fail;
11248 }
8c7b5ccb 11249
3ba86073
ML
11250 ret = drm_atomic_commit(state);
11251 if (ret) {
6492711d 11252 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
412b61d8 11253 goto fail;
79e53945 11254 }
edde3617
ML
11255
11256 old->restore_state = restore_state;
7173188d 11257
79e53945 11258 /* let the connector get through one full cycle before testing */
0f0f74bc 11259 intel_wait_for_vblank(dev_priv, intel_crtc->pipe);
7173188d 11260 return true;
412b61d8 11261
ad3c558f 11262fail:
7fb71c8f
CW
11263 if (state) {
11264 drm_atomic_state_put(state);
11265 state = NULL;
11266 }
11267 if (restore_state) {
11268 drm_atomic_state_put(restore_state);
11269 restore_state = NULL;
11270 }
83a57153 11271
51fd371b
RC
11272 if (ret == -EDEADLK) {
11273 drm_modeset_backoff(ctx);
11274 goto retry;
11275 }
11276
412b61d8 11277 return false;
79e53945
JB
11278}
11279
d2434ab7 11280void intel_release_load_detect_pipe(struct drm_connector *connector,
49172fee
ACO
11281 struct intel_load_detect_pipe *old,
11282 struct drm_modeset_acquire_ctx *ctx)
79e53945 11283{
d2434ab7
DV
11284 struct intel_encoder *intel_encoder =
11285 intel_attached_encoder(connector);
4ef69c7a 11286 struct drm_encoder *encoder = &intel_encoder->base;
edde3617 11287 struct drm_atomic_state *state = old->restore_state;
d3a40d1b 11288 int ret;
79e53945 11289
d2dff872 11290 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 11291 connector->base.id, connector->name,
8e329a03 11292 encoder->base.id, encoder->name);
d2dff872 11293
edde3617 11294 if (!state)
0622a53c 11295 return;
79e53945 11296
edde3617 11297 ret = drm_atomic_commit(state);
0853695c 11298 if (ret)
edde3617 11299 DRM_DEBUG_KMS("Couldn't release load detect pipe: %i\n", ret);
0853695c 11300 drm_atomic_state_put(state);
79e53945
JB
11301}
11302
da4a1efa 11303static int i9xx_pll_refclk(struct drm_device *dev,
5cec258b 11304 const struct intel_crtc_state *pipe_config)
da4a1efa 11305{
fac5e23e 11306 struct drm_i915_private *dev_priv = to_i915(dev);
da4a1efa
VS
11307 u32 dpll = pipe_config->dpll_hw_state.dpll;
11308
11309 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
e91e941b 11310 return dev_priv->vbt.lvds_ssc_freq;
6e266956 11311 else if (HAS_PCH_SPLIT(dev_priv))
da4a1efa 11312 return 120000;
5db94019 11313 else if (!IS_GEN2(dev_priv))
da4a1efa
VS
11314 return 96000;
11315 else
11316 return 48000;
11317}
11318
79e53945 11319/* Returns the clock of the currently programmed mode of the given pipe. */
f1f644dc 11320static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 11321 struct intel_crtc_state *pipe_config)
79e53945 11322{
f1f644dc 11323 struct drm_device *dev = crtc->base.dev;
fac5e23e 11324 struct drm_i915_private *dev_priv = to_i915(dev);
f1f644dc 11325 int pipe = pipe_config->cpu_transcoder;
293623f7 11326 u32 dpll = pipe_config->dpll_hw_state.dpll;
79e53945 11327 u32 fp;
9e2c8475 11328 struct dpll clock;
dccbea3b 11329 int port_clock;
da4a1efa 11330 int refclk = i9xx_pll_refclk(dev, pipe_config);
79e53945
JB
11331
11332 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
293623f7 11333 fp = pipe_config->dpll_hw_state.fp0;
79e53945 11334 else
293623f7 11335 fp = pipe_config->dpll_hw_state.fp1;
79e53945
JB
11336
11337 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
9b1e14f4 11338 if (IS_PINEVIEW(dev_priv)) {
f2b115e6
AJ
11339 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
11340 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
2177832f
SL
11341 } else {
11342 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
11343 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
11344 }
11345
5db94019 11346 if (!IS_GEN2(dev_priv)) {
9b1e14f4 11347 if (IS_PINEVIEW(dev_priv))
f2b115e6
AJ
11348 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
11349 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
2177832f
SL
11350 else
11351 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
79e53945
JB
11352 DPLL_FPA01_P1_POST_DIV_SHIFT);
11353
11354 switch (dpll & DPLL_MODE_MASK) {
11355 case DPLLB_MODE_DAC_SERIAL:
11356 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
11357 5 : 10;
11358 break;
11359 case DPLLB_MODE_LVDS:
11360 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
11361 7 : 14;
11362 break;
11363 default:
28c97730 11364 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
79e53945 11365 "mode\n", (int)(dpll & DPLL_MODE_MASK));
f1f644dc 11366 return;
79e53945
JB
11367 }
11368
9b1e14f4 11369 if (IS_PINEVIEW(dev_priv))
dccbea3b 11370 port_clock = pnv_calc_dpll_params(refclk, &clock);
ac58c3f0 11371 else
dccbea3b 11372 port_clock = i9xx_calc_dpll_params(refclk, &clock);
79e53945 11373 } else {
50a0bc90 11374 u32 lvds = IS_I830(dev_priv) ? 0 : I915_READ(LVDS);
b1c560d1 11375 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
79e53945
JB
11376
11377 if (is_lvds) {
11378 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
11379 DPLL_FPA01_P1_POST_DIV_SHIFT);
b1c560d1
VS
11380
11381 if (lvds & LVDS_CLKB_POWER_UP)
11382 clock.p2 = 7;
11383 else
11384 clock.p2 = 14;
79e53945
JB
11385 } else {
11386 if (dpll & PLL_P1_DIVIDE_BY_TWO)
11387 clock.p1 = 2;
11388 else {
11389 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
11390 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
11391 }
11392 if (dpll & PLL_P2_DIVIDE_BY_4)
11393 clock.p2 = 4;
11394 else
11395 clock.p2 = 2;
79e53945 11396 }
da4a1efa 11397
dccbea3b 11398 port_clock = i9xx_calc_dpll_params(refclk, &clock);
79e53945
JB
11399 }
11400
18442d08
VS
11401 /*
11402 * This value includes pixel_multiplier. We will use
241bfc38 11403 * port_clock to compute adjusted_mode.crtc_clock in the
18442d08
VS
11404 * encoder's get_config() function.
11405 */
dccbea3b 11406 pipe_config->port_clock = port_clock;
f1f644dc
JB
11407}
11408
6878da05
VS
11409int intel_dotclock_calculate(int link_freq,
11410 const struct intel_link_m_n *m_n)
f1f644dc 11411{
f1f644dc
JB
11412 /*
11413 * The calculation for the data clock is:
1041a02f 11414 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
f1f644dc 11415 * But we want to avoid losing precison if possible, so:
1041a02f 11416 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
f1f644dc
JB
11417 *
11418 * and the link clock is simpler:
1041a02f 11419 * link_clock = (m * link_clock) / n
f1f644dc
JB
11420 */
11421
6878da05
VS
11422 if (!m_n->link_n)
11423 return 0;
f1f644dc 11424
6878da05
VS
11425 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
11426}
f1f644dc 11427
18442d08 11428static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 11429 struct intel_crtc_state *pipe_config)
6878da05 11430{
e3b247da 11431 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
79e53945 11432
18442d08
VS
11433 /* read out port_clock from the DPLL */
11434 i9xx_crtc_clock_get(crtc, pipe_config);
f1f644dc 11435
f1f644dc 11436 /*
e3b247da
VS
11437 * In case there is an active pipe without active ports,
11438 * we may need some idea for the dotclock anyway.
11439 * Calculate one based on the FDI configuration.
79e53945 11440 */
2d112de7 11441 pipe_config->base.adjusted_mode.crtc_clock =
21a727b3 11442 intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config),
18442d08 11443 &pipe_config->fdi_m_n);
79e53945
JB
11444}
11445
11446/** Returns the currently programmed mode of the given pipe. */
11447struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
11448 struct drm_crtc *crtc)
11449{
fac5e23e 11450 struct drm_i915_private *dev_priv = to_i915(dev);
79e53945 11451 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 11452 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
79e53945 11453 struct drm_display_mode *mode;
3f36b937 11454 struct intel_crtc_state *pipe_config;
fe2b8f9d
PZ
11455 int htot = I915_READ(HTOTAL(cpu_transcoder));
11456 int hsync = I915_READ(HSYNC(cpu_transcoder));
11457 int vtot = I915_READ(VTOTAL(cpu_transcoder));
11458 int vsync = I915_READ(VSYNC(cpu_transcoder));
293623f7 11459 enum pipe pipe = intel_crtc->pipe;
79e53945
JB
11460
11461 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
11462 if (!mode)
11463 return NULL;
11464
3f36b937
TU
11465 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
11466 if (!pipe_config) {
11467 kfree(mode);
11468 return NULL;
11469 }
11470
f1f644dc
JB
11471 /*
11472 * Construct a pipe_config sufficient for getting the clock info
11473 * back out of crtc_clock_get.
11474 *
11475 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
11476 * to use a real value here instead.
11477 */
3f36b937
TU
11478 pipe_config->cpu_transcoder = (enum transcoder) pipe;
11479 pipe_config->pixel_multiplier = 1;
11480 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(pipe));
11481 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(pipe));
11482 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(pipe));
11483 i9xx_crtc_clock_get(intel_crtc, pipe_config);
11484
11485 mode->clock = pipe_config->port_clock / pipe_config->pixel_multiplier;
79e53945
JB
11486 mode->hdisplay = (htot & 0xffff) + 1;
11487 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
11488 mode->hsync_start = (hsync & 0xffff) + 1;
11489 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
11490 mode->vdisplay = (vtot & 0xffff) + 1;
11491 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
11492 mode->vsync_start = (vsync & 0xffff) + 1;
11493 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
11494
11495 drm_mode_set_name(mode);
79e53945 11496
3f36b937
TU
11497 kfree(pipe_config);
11498
79e53945
JB
11499 return mode;
11500}
11501
11502static void intel_crtc_destroy(struct drm_crtc *crtc)
11503{
11504 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
67e77c5a 11505 struct drm_device *dev = crtc->dev;
51cbaf01 11506 struct intel_flip_work *work;
67e77c5a 11507
5e2d7afc 11508 spin_lock_irq(&dev->event_lock);
5a21b665
DV
11509 work = intel_crtc->flip_work;
11510 intel_crtc->flip_work = NULL;
11511 spin_unlock_irq(&dev->event_lock);
67e77c5a 11512
5a21b665 11513 if (work) {
51cbaf01
ML
11514 cancel_work_sync(&work->mmio_work);
11515 cancel_work_sync(&work->unpin_work);
5a21b665 11516 kfree(work);
67e77c5a 11517 }
79e53945
JB
11518
11519 drm_crtc_cleanup(crtc);
67e77c5a 11520
79e53945
JB
11521 kfree(intel_crtc);
11522}
11523
6b95a207
KH
11524static void intel_unpin_work_fn(struct work_struct *__work)
11525{
51cbaf01
ML
11526 struct intel_flip_work *work =
11527 container_of(__work, struct intel_flip_work, unpin_work);
5a21b665
DV
11528 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
11529 struct drm_device *dev = crtc->base.dev;
11530 struct drm_plane *primary = crtc->base.primary;
03f476e1 11531
5a21b665
DV
11532 if (is_mmio_work(work))
11533 flush_work(&work->mmio_work);
03f476e1 11534
5a21b665
DV
11535 mutex_lock(&dev->struct_mutex);
11536 intel_unpin_fb_obj(work->old_fb, primary->state->rotation);
f8c417cd 11537 i915_gem_object_put(work->pending_flip_obj);
5a21b665 11538 mutex_unlock(&dev->struct_mutex);
143f73b3 11539
e8a261ea
CW
11540 i915_gem_request_put(work->flip_queued_req);
11541
5748b6a1
CW
11542 intel_frontbuffer_flip_complete(to_i915(dev),
11543 to_intel_plane(primary)->frontbuffer_bit);
5a21b665
DV
11544 intel_fbc_post_update(crtc);
11545 drm_framebuffer_unreference(work->old_fb);
143f73b3 11546
5a21b665
DV
11547 BUG_ON(atomic_read(&crtc->unpin_work_count) == 0);
11548 atomic_dec(&crtc->unpin_work_count);
a6747b73 11549
5a21b665
DV
11550 kfree(work);
11551}
d9e86c0e 11552
5a21b665
DV
11553/* Is 'a' after or equal to 'b'? */
11554static bool g4x_flip_count_after_eq(u32 a, u32 b)
11555{
11556 return !((a - b) & 0x80000000);
11557}
143f73b3 11558
5a21b665
DV
11559static bool __pageflip_finished_cs(struct intel_crtc *crtc,
11560 struct intel_flip_work *work)
11561{
11562 struct drm_device *dev = crtc->base.dev;
fac5e23e 11563 struct drm_i915_private *dev_priv = to_i915(dev);
143f73b3 11564
8af29b0c 11565 if (abort_flip_on_reset(crtc))
5a21b665 11566 return true;
143f73b3 11567
5a21b665
DV
11568 /*
11569 * The relevant registers doen't exist on pre-ctg.
11570 * As the flip done interrupt doesn't trigger for mmio
11571 * flips on gmch platforms, a flip count check isn't
11572 * really needed there. But since ctg has the registers,
11573 * include it in the check anyway.
11574 */
9beb5fea 11575 if (INTEL_GEN(dev_priv) < 5 && !IS_G4X(dev_priv))
5a21b665 11576 return true;
b4a98e57 11577
5a21b665
DV
11578 /*
11579 * BDW signals flip done immediately if the plane
11580 * is disabled, even if the plane enable is already
11581 * armed to occur at the next vblank :(
11582 */
f99d7069 11583
5a21b665
DV
11584 /*
11585 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
11586 * used the same base address. In that case the mmio flip might
11587 * have completed, but the CS hasn't even executed the flip yet.
11588 *
11589 * A flip count check isn't enough as the CS might have updated
11590 * the base address just after start of vblank, but before we
11591 * managed to process the interrupt. This means we'd complete the
11592 * CS flip too soon.
11593 *
11594 * Combining both checks should get us a good enough result. It may
11595 * still happen that the CS flip has been executed, but has not
11596 * yet actually completed. But in case the base address is the same
11597 * anyway, we don't really care.
11598 */
11599 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
11600 crtc->flip_work->gtt_offset &&
11601 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_G4X(crtc->pipe)),
11602 crtc->flip_work->flip_count);
11603}
b4a98e57 11604
5a21b665
DV
11605static bool
11606__pageflip_finished_mmio(struct intel_crtc *crtc,
11607 struct intel_flip_work *work)
11608{
11609 /*
11610 * MMIO work completes when vblank is different from
11611 * flip_queued_vblank.
11612 *
11613 * Reset counter value doesn't matter, this is handled by
11614 * i915_wait_request finishing early, so no need to handle
11615 * reset here.
11616 */
11617 return intel_crtc_get_vblank_counter(crtc) != work->flip_queued_vblank;
6b95a207
KH
11618}
11619
51cbaf01
ML
11620
11621static bool pageflip_finished(struct intel_crtc *crtc,
11622 struct intel_flip_work *work)
11623{
11624 if (!atomic_read(&work->pending))
11625 return false;
11626
11627 smp_rmb();
11628
5a21b665
DV
11629 if (is_mmio_work(work))
11630 return __pageflip_finished_mmio(crtc, work);
11631 else
11632 return __pageflip_finished_cs(crtc, work);
11633}
11634
11635void intel_finish_page_flip_cs(struct drm_i915_private *dev_priv, int pipe)
11636{
91c8a326 11637 struct drm_device *dev = &dev_priv->drm;
98187836 11638 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
5a21b665
DV
11639 struct intel_flip_work *work;
11640 unsigned long flags;
11641
11642 /* Ignore early vblank irqs */
11643 if (!crtc)
11644 return;
11645
51cbaf01 11646 /*
5a21b665
DV
11647 * This is called both by irq handlers and the reset code (to complete
11648 * lost pageflips) so needs the full irqsave spinlocks.
51cbaf01 11649 */
5a21b665 11650 spin_lock_irqsave(&dev->event_lock, flags);
e2af48c6 11651 work = crtc->flip_work;
5a21b665
DV
11652
11653 if (work != NULL &&
11654 !is_mmio_work(work) &&
e2af48c6
VS
11655 pageflip_finished(crtc, work))
11656 page_flip_completed(crtc);
5a21b665
DV
11657
11658 spin_unlock_irqrestore(&dev->event_lock, flags);
75f7f3ec
VS
11659}
11660
51cbaf01 11661void intel_finish_page_flip_mmio(struct drm_i915_private *dev_priv, int pipe)
6b95a207 11662{
91c8a326 11663 struct drm_device *dev = &dev_priv->drm;
98187836 11664 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
51cbaf01 11665 struct intel_flip_work *work;
6b95a207
KH
11666 unsigned long flags;
11667
5251f04e
ML
11668 /* Ignore early vblank irqs */
11669 if (!crtc)
11670 return;
f326038a
DV
11671
11672 /*
11673 * This is called both by irq handlers and the reset code (to complete
11674 * lost pageflips) so needs the full irqsave spinlocks.
e7d841ca 11675 */
6b95a207 11676 spin_lock_irqsave(&dev->event_lock, flags);
e2af48c6 11677 work = crtc->flip_work;
5251f04e 11678
5a21b665
DV
11679 if (work != NULL &&
11680 is_mmio_work(work) &&
e2af48c6
VS
11681 pageflip_finished(crtc, work))
11682 page_flip_completed(crtc);
5251f04e 11683
6b95a207
KH
11684 spin_unlock_irqrestore(&dev->event_lock, flags);
11685}
11686
5a21b665
DV
11687static inline void intel_mark_page_flip_active(struct intel_crtc *crtc,
11688 struct intel_flip_work *work)
84c33a64 11689{
5a21b665 11690 work->flip_queued_vblank = intel_crtc_get_vblank_counter(crtc);
84c33a64 11691
5a21b665
DV
11692 /* Ensure that the work item is consistent when activating it ... */
11693 smp_mb__before_atomic();
11694 atomic_set(&work->pending, 1);
11695}
a6747b73 11696
5a21b665
DV
11697static int intel_gen2_queue_flip(struct drm_device *dev,
11698 struct drm_crtc *crtc,
11699 struct drm_framebuffer *fb,
11700 struct drm_i915_gem_object *obj,
11701 struct drm_i915_gem_request *req,
11702 uint32_t flags)
11703{
7e37f889 11704 struct intel_ring *ring = req->ring;
5a21b665
DV
11705 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11706 u32 flip_mask;
11707 int ret;
143f73b3 11708
5a21b665
DV
11709 ret = intel_ring_begin(req, 6);
11710 if (ret)
11711 return ret;
143f73b3 11712
5a21b665
DV
11713 /* Can't queue multiple flips, so wait for the previous
11714 * one to finish before executing the next.
11715 */
11716 if (intel_crtc->plane)
11717 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11718 else
11719 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
b5321f30
CW
11720 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11721 intel_ring_emit(ring, MI_NOOP);
11722 intel_ring_emit(ring, MI_DISPLAY_FLIP |
5a21b665 11723 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
b5321f30
CW
11724 intel_ring_emit(ring, fb->pitches[0]);
11725 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset);
11726 intel_ring_emit(ring, 0); /* aux display base address, unused */
143f73b3 11727
5a21b665
DV
11728 return 0;
11729}
84c33a64 11730
5a21b665
DV
11731static int intel_gen3_queue_flip(struct drm_device *dev,
11732 struct drm_crtc *crtc,
11733 struct drm_framebuffer *fb,
11734 struct drm_i915_gem_object *obj,
11735 struct drm_i915_gem_request *req,
11736 uint32_t flags)
11737{
7e37f889 11738 struct intel_ring *ring = req->ring;
5a21b665
DV
11739 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11740 u32 flip_mask;
11741 int ret;
d55dbd06 11742
5a21b665
DV
11743 ret = intel_ring_begin(req, 6);
11744 if (ret)
11745 return ret;
d55dbd06 11746
5a21b665
DV
11747 if (intel_crtc->plane)
11748 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11749 else
11750 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
b5321f30
CW
11751 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11752 intel_ring_emit(ring, MI_NOOP);
11753 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
5a21b665 11754 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
b5321f30
CW
11755 intel_ring_emit(ring, fb->pitches[0]);
11756 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset);
11757 intel_ring_emit(ring, MI_NOOP);
fd8e058a 11758
5a21b665
DV
11759 return 0;
11760}
84c33a64 11761
5a21b665
DV
11762static int intel_gen4_queue_flip(struct drm_device *dev,
11763 struct drm_crtc *crtc,
11764 struct drm_framebuffer *fb,
11765 struct drm_i915_gem_object *obj,
11766 struct drm_i915_gem_request *req,
11767 uint32_t flags)
11768{
7e37f889 11769 struct intel_ring *ring = req->ring;
fac5e23e 11770 struct drm_i915_private *dev_priv = to_i915(dev);
5a21b665
DV
11771 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11772 uint32_t pf, pipesrc;
11773 int ret;
143f73b3 11774
5a21b665
DV
11775 ret = intel_ring_begin(req, 4);
11776 if (ret)
11777 return ret;
143f73b3 11778
5a21b665
DV
11779 /* i965+ uses the linear or tiled offsets from the
11780 * Display Registers (which do not change across a page-flip)
11781 * so we need only reprogram the base address.
11782 */
b5321f30 11783 intel_ring_emit(ring, MI_DISPLAY_FLIP |
5a21b665 11784 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
b5321f30
CW
11785 intel_ring_emit(ring, fb->pitches[0]);
11786 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset |
72618ebf 11787 intel_fb_modifier_to_tiling(fb->modifier[0]));
5a21b665
DV
11788
11789 /* XXX Enabling the panel-fitter across page-flip is so far
11790 * untested on non-native modes, so ignore it for now.
11791 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
11792 */
11793 pf = 0;
11794 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
b5321f30 11795 intel_ring_emit(ring, pf | pipesrc);
143f73b3 11796
5a21b665 11797 return 0;
8c9f3aaf
JB
11798}
11799
5a21b665
DV
11800static int intel_gen6_queue_flip(struct drm_device *dev,
11801 struct drm_crtc *crtc,
11802 struct drm_framebuffer *fb,
11803 struct drm_i915_gem_object *obj,
11804 struct drm_i915_gem_request *req,
11805 uint32_t flags)
da20eabd 11806{
7e37f889 11807 struct intel_ring *ring = req->ring;
fac5e23e 11808 struct drm_i915_private *dev_priv = to_i915(dev);
5a21b665
DV
11809 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11810 uint32_t pf, pipesrc;
11811 int ret;
d21fbe87 11812
5a21b665
DV
11813 ret = intel_ring_begin(req, 4);
11814 if (ret)
11815 return ret;
92826fcd 11816
b5321f30 11817 intel_ring_emit(ring, MI_DISPLAY_FLIP |
5a21b665 11818 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
72618ebf
VS
11819 intel_ring_emit(ring, fb->pitches[0] |
11820 intel_fb_modifier_to_tiling(fb->modifier[0]));
b5321f30 11821 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset);
92826fcd 11822
5a21b665
DV
11823 /* Contrary to the suggestions in the documentation,
11824 * "Enable Panel Fitter" does not seem to be required when page
11825 * flipping with a non-native mode, and worse causes a normal
11826 * modeset to fail.
11827 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
11828 */
11829 pf = 0;
11830 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
b5321f30 11831 intel_ring_emit(ring, pf | pipesrc);
7809e5ae 11832
5a21b665 11833 return 0;
7809e5ae
MR
11834}
11835
5a21b665
DV
11836static int intel_gen7_queue_flip(struct drm_device *dev,
11837 struct drm_crtc *crtc,
11838 struct drm_framebuffer *fb,
11839 struct drm_i915_gem_object *obj,
11840 struct drm_i915_gem_request *req,
11841 uint32_t flags)
d21fbe87 11842{
5db94019 11843 struct drm_i915_private *dev_priv = to_i915(dev);
7e37f889 11844 struct intel_ring *ring = req->ring;
5a21b665
DV
11845 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11846 uint32_t plane_bit = 0;
11847 int len, ret;
d21fbe87 11848
5a21b665
DV
11849 switch (intel_crtc->plane) {
11850 case PLANE_A:
11851 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
11852 break;
11853 case PLANE_B:
11854 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
11855 break;
11856 case PLANE_C:
11857 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
11858 break;
11859 default:
11860 WARN_ONCE(1, "unknown plane in flip command\n");
11861 return -ENODEV;
11862 }
11863
11864 len = 4;
b5321f30 11865 if (req->engine->id == RCS) {
5a21b665
DV
11866 len += 6;
11867 /*
11868 * On Gen 8, SRM is now taking an extra dword to accommodate
11869 * 48bits addresses, and we need a NOOP for the batch size to
11870 * stay even.
11871 */
5db94019 11872 if (IS_GEN8(dev_priv))
5a21b665
DV
11873 len += 2;
11874 }
11875
11876 /*
11877 * BSpec MI_DISPLAY_FLIP for IVB:
11878 * "The full packet must be contained within the same cache line."
11879 *
11880 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
11881 * cacheline, if we ever start emitting more commands before
11882 * the MI_DISPLAY_FLIP we may need to first emit everything else,
11883 * then do the cacheline alignment, and finally emit the
11884 * MI_DISPLAY_FLIP.
11885 */
11886 ret = intel_ring_cacheline_align(req);
11887 if (ret)
11888 return ret;
11889
11890 ret = intel_ring_begin(req, len);
11891 if (ret)
11892 return ret;
11893
11894 /* Unmask the flip-done completion message. Note that the bspec says that
11895 * we should do this for both the BCS and RCS, and that we must not unmask
11896 * more than one flip event at any time (or ensure that one flip message
11897 * can be sent by waiting for flip-done prior to queueing new flips).
11898 * Experimentation says that BCS works despite DERRMR masking all
11899 * flip-done completion events and that unmasking all planes at once
11900 * for the RCS also doesn't appear to drop events. Setting the DERRMR
11901 * to zero does lead to lockups within MI_DISPLAY_FLIP.
11902 */
b5321f30
CW
11903 if (req->engine->id == RCS) {
11904 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
11905 intel_ring_emit_reg(ring, DERRMR);
11906 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
5a21b665
DV
11907 DERRMR_PIPEB_PRI_FLIP_DONE |
11908 DERRMR_PIPEC_PRI_FLIP_DONE));
5db94019 11909 if (IS_GEN8(dev_priv))
b5321f30 11910 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8 |
5a21b665
DV
11911 MI_SRM_LRM_GLOBAL_GTT);
11912 else
b5321f30 11913 intel_ring_emit(ring, MI_STORE_REGISTER_MEM |
5a21b665 11914 MI_SRM_LRM_GLOBAL_GTT);
b5321f30 11915 intel_ring_emit_reg(ring, DERRMR);
bde13ebd
CW
11916 intel_ring_emit(ring,
11917 i915_ggtt_offset(req->engine->scratch) + 256);
5db94019 11918 if (IS_GEN8(dev_priv)) {
b5321f30
CW
11919 intel_ring_emit(ring, 0);
11920 intel_ring_emit(ring, MI_NOOP);
5a21b665
DV
11921 }
11922 }
11923
b5321f30 11924 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
72618ebf
VS
11925 intel_ring_emit(ring, fb->pitches[0] |
11926 intel_fb_modifier_to_tiling(fb->modifier[0]));
b5321f30
CW
11927 intel_ring_emit(ring, intel_crtc->flip_work->gtt_offset);
11928 intel_ring_emit(ring, (MI_NOOP));
5a21b665
DV
11929
11930 return 0;
11931}
11932
11933static bool use_mmio_flip(struct intel_engine_cs *engine,
11934 struct drm_i915_gem_object *obj)
11935{
11936 /*
11937 * This is not being used for older platforms, because
11938 * non-availability of flip done interrupt forces us to use
11939 * CS flips. Older platforms derive flip done using some clever
11940 * tricks involving the flip_pending status bits and vblank irqs.
11941 * So using MMIO flips there would disrupt this mechanism.
11942 */
11943
11944 if (engine == NULL)
11945 return true;
11946
11947 if (INTEL_GEN(engine->i915) < 5)
11948 return false;
11949
11950 if (i915.use_mmio_flip < 0)
11951 return false;
11952 else if (i915.use_mmio_flip > 0)
11953 return true;
11954 else if (i915.enable_execlists)
11955 return true;
c37efb99 11956
d07f0e59 11957 return engine != i915_gem_object_last_write_engine(obj);
5a21b665
DV
11958}
11959
11960static void skl_do_mmio_flip(struct intel_crtc *intel_crtc,
11961 unsigned int rotation,
11962 struct intel_flip_work *work)
11963{
11964 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 11965 struct drm_i915_private *dev_priv = to_i915(dev);
5a21b665
DV
11966 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
11967 const enum pipe pipe = intel_crtc->pipe;
d2196774 11968 u32 ctl, stride = skl_plane_stride(fb, 0, rotation);
5a21b665
DV
11969
11970 ctl = I915_READ(PLANE_CTL(pipe, 0));
11971 ctl &= ~PLANE_CTL_TILED_MASK;
11972 switch (fb->modifier[0]) {
11973 case DRM_FORMAT_MOD_NONE:
11974 break;
11975 case I915_FORMAT_MOD_X_TILED:
11976 ctl |= PLANE_CTL_TILED_X;
11977 break;
11978 case I915_FORMAT_MOD_Y_TILED:
11979 ctl |= PLANE_CTL_TILED_Y;
11980 break;
11981 case I915_FORMAT_MOD_Yf_TILED:
11982 ctl |= PLANE_CTL_TILED_YF;
11983 break;
11984 default:
11985 MISSING_CASE(fb->modifier[0]);
11986 }
11987
5a21b665
DV
11988 /*
11989 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
11990 * PLANE_SURF updates, the update is then guaranteed to be atomic.
11991 */
11992 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
11993 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
11994
11995 I915_WRITE(PLANE_SURF(pipe, 0), work->gtt_offset);
11996 POSTING_READ(PLANE_SURF(pipe, 0));
11997}
11998
11999static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc,
12000 struct intel_flip_work *work)
12001{
12002 struct drm_device *dev = intel_crtc->base.dev;
fac5e23e 12003 struct drm_i915_private *dev_priv = to_i915(dev);
72618ebf 12004 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
5a21b665
DV
12005 i915_reg_t reg = DSPCNTR(intel_crtc->plane);
12006 u32 dspcntr;
12007
12008 dspcntr = I915_READ(reg);
12009
72618ebf 12010 if (fb->modifier[0] == I915_FORMAT_MOD_X_TILED)
5a21b665
DV
12011 dspcntr |= DISPPLANE_TILED;
12012 else
12013 dspcntr &= ~DISPPLANE_TILED;
12014
12015 I915_WRITE(reg, dspcntr);
12016
12017 I915_WRITE(DSPSURF(intel_crtc->plane), work->gtt_offset);
12018 POSTING_READ(DSPSURF(intel_crtc->plane));
12019}
12020
12021static void intel_mmio_flip_work_func(struct work_struct *w)
12022{
12023 struct intel_flip_work *work =
12024 container_of(w, struct intel_flip_work, mmio_work);
12025 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
12026 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
12027 struct intel_framebuffer *intel_fb =
12028 to_intel_framebuffer(crtc->base.primary->fb);
12029 struct drm_i915_gem_object *obj = intel_fb->obj;
12030
9a151987 12031 i915_gem_object_wait_priority(obj, 0, I915_PRIORITY_DISPLAY);
d07f0e59 12032 WARN_ON(i915_gem_object_wait(obj, 0, MAX_SCHEDULE_TIMEOUT, NULL) < 0);
5a21b665
DV
12033
12034 intel_pipe_update_start(crtc);
12035
12036 if (INTEL_GEN(dev_priv) >= 9)
12037 skl_do_mmio_flip(crtc, work->rotation, work);
12038 else
12039 /* use_mmio_flip() retricts MMIO flips to ilk+ */
12040 ilk_do_mmio_flip(crtc, work);
12041
12042 intel_pipe_update_end(crtc, work);
12043}
12044
12045static int intel_default_queue_flip(struct drm_device *dev,
12046 struct drm_crtc *crtc,
12047 struct drm_framebuffer *fb,
12048 struct drm_i915_gem_object *obj,
12049 struct drm_i915_gem_request *req,
12050 uint32_t flags)
12051{
12052 return -ENODEV;
12053}
12054
12055static bool __pageflip_stall_check_cs(struct drm_i915_private *dev_priv,
12056 struct intel_crtc *intel_crtc,
12057 struct intel_flip_work *work)
12058{
12059 u32 addr, vblank;
12060
12061 if (!atomic_read(&work->pending))
12062 return false;
12063
12064 smp_rmb();
12065
12066 vblank = intel_crtc_get_vblank_counter(intel_crtc);
12067 if (work->flip_ready_vblank == 0) {
12068 if (work->flip_queued_req &&
f69a02c9 12069 !i915_gem_request_completed(work->flip_queued_req))
5a21b665
DV
12070 return false;
12071
12072 work->flip_ready_vblank = vblank;
12073 }
12074
12075 if (vblank - work->flip_ready_vblank < 3)
12076 return false;
12077
12078 /* Potential stall - if we see that the flip has happened,
12079 * assume a missed interrupt. */
12080 if (INTEL_GEN(dev_priv) >= 4)
12081 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
12082 else
12083 addr = I915_READ(DSPADDR(intel_crtc->plane));
12084
12085 /* There is a potential issue here with a false positive after a flip
12086 * to the same address. We could address this by checking for a
12087 * non-incrementing frame counter.
12088 */
12089 return addr == work->gtt_offset;
12090}
12091
12092void intel_check_page_flip(struct drm_i915_private *dev_priv, int pipe)
12093{
91c8a326 12094 struct drm_device *dev = &dev_priv->drm;
98187836 12095 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
5a21b665
DV
12096 struct intel_flip_work *work;
12097
12098 WARN_ON(!in_interrupt());
12099
12100 if (crtc == NULL)
12101 return;
12102
12103 spin_lock(&dev->event_lock);
e2af48c6 12104 work = crtc->flip_work;
5a21b665
DV
12105
12106 if (work != NULL && !is_mmio_work(work) &&
e2af48c6 12107 __pageflip_stall_check_cs(dev_priv, crtc, work)) {
5a21b665
DV
12108 WARN_ONCE(1,
12109 "Kicking stuck page flip: queued at %d, now %d\n",
e2af48c6
VS
12110 work->flip_queued_vblank, intel_crtc_get_vblank_counter(crtc));
12111 page_flip_completed(crtc);
5a21b665
DV
12112 work = NULL;
12113 }
12114
12115 if (work != NULL && !is_mmio_work(work) &&
e2af48c6 12116 intel_crtc_get_vblank_counter(crtc) - work->flip_queued_vblank > 1)
5a21b665
DV
12117 intel_queue_rps_boost_for_request(work->flip_queued_req);
12118 spin_unlock(&dev->event_lock);
12119}
12120
12121static int intel_crtc_page_flip(struct drm_crtc *crtc,
12122 struct drm_framebuffer *fb,
12123 struct drm_pending_vblank_event *event,
12124 uint32_t page_flip_flags)
12125{
12126 struct drm_device *dev = crtc->dev;
fac5e23e 12127 struct drm_i915_private *dev_priv = to_i915(dev);
5a21b665
DV
12128 struct drm_framebuffer *old_fb = crtc->primary->fb;
12129 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
12130 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12131 struct drm_plane *primary = crtc->primary;
12132 enum pipe pipe = intel_crtc->pipe;
12133 struct intel_flip_work *work;
12134 struct intel_engine_cs *engine;
12135 bool mmio_flip;
8e637178 12136 struct drm_i915_gem_request *request;
058d88c4 12137 struct i915_vma *vma;
5a21b665
DV
12138 int ret;
12139
12140 /*
12141 * drm_mode_page_flip_ioctl() should already catch this, but double
12142 * check to be safe. In the future we may enable pageflipping from
12143 * a disabled primary plane.
12144 */
12145 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
12146 return -EBUSY;
12147
12148 /* Can't change pixel format via MI display flips. */
12149 if (fb->pixel_format != crtc->primary->fb->pixel_format)
12150 return -EINVAL;
12151
12152 /*
12153 * TILEOFF/LINOFF registers can't be changed via MI display flips.
12154 * Note that pitch changes could also affect these register.
12155 */
6315b5d3 12156 if (INTEL_GEN(dev_priv) > 3 &&
5a21b665
DV
12157 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
12158 fb->pitches[0] != crtc->primary->fb->pitches[0]))
12159 return -EINVAL;
12160
12161 if (i915_terminally_wedged(&dev_priv->gpu_error))
12162 goto out_hang;
12163
12164 work = kzalloc(sizeof(*work), GFP_KERNEL);
12165 if (work == NULL)
12166 return -ENOMEM;
12167
12168 work->event = event;
12169 work->crtc = crtc;
12170 work->old_fb = old_fb;
12171 INIT_WORK(&work->unpin_work, intel_unpin_work_fn);
12172
12173 ret = drm_crtc_vblank_get(crtc);
12174 if (ret)
12175 goto free_work;
12176
12177 /* We borrow the event spin lock for protecting flip_work */
12178 spin_lock_irq(&dev->event_lock);
12179 if (intel_crtc->flip_work) {
12180 /* Before declaring the flip queue wedged, check if
12181 * the hardware completed the operation behind our backs.
12182 */
12183 if (pageflip_finished(intel_crtc, intel_crtc->flip_work)) {
12184 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
12185 page_flip_completed(intel_crtc);
12186 } else {
12187 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
12188 spin_unlock_irq(&dev->event_lock);
12189
12190 drm_crtc_vblank_put(crtc);
12191 kfree(work);
12192 return -EBUSY;
12193 }
12194 }
12195 intel_crtc->flip_work = work;
12196 spin_unlock_irq(&dev->event_lock);
12197
12198 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
12199 flush_workqueue(dev_priv->wq);
12200
12201 /* Reference the objects for the scheduled work. */
12202 drm_framebuffer_reference(work->old_fb);
5a21b665
DV
12203
12204 crtc->primary->fb = fb;
12205 update_state_fb(crtc->primary);
faf68d92 12206
25dc556a 12207 work->pending_flip_obj = i915_gem_object_get(obj);
5a21b665
DV
12208
12209 ret = i915_mutex_lock_interruptible(dev);
12210 if (ret)
12211 goto cleanup;
12212
8af29b0c
CW
12213 intel_crtc->reset_count = i915_reset_count(&dev_priv->gpu_error);
12214 if (i915_reset_in_progress_or_wedged(&dev_priv->gpu_error)) {
5a21b665
DV
12215 ret = -EIO;
12216 goto cleanup;
12217 }
12218
12219 atomic_inc(&intel_crtc->unpin_work_count);
12220
9beb5fea 12221 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
5a21b665
DV
12222 work->flip_count = I915_READ(PIPE_FLIPCOUNT_G4X(pipe)) + 1;
12223
920a14b2 12224 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
3b3f1650 12225 engine = dev_priv->engine[BCS];
72618ebf 12226 if (fb->modifier[0] != old_fb->modifier[0])
5a21b665
DV
12227 /* vlv: DISPLAY_FLIP fails to change tiling */
12228 engine = NULL;
fd6b8f43 12229 } else if (IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
3b3f1650 12230 engine = dev_priv->engine[BCS];
6315b5d3 12231 } else if (INTEL_GEN(dev_priv) >= 7) {
d07f0e59 12232 engine = i915_gem_object_last_write_engine(obj);
5a21b665 12233 if (engine == NULL || engine->id != RCS)
3b3f1650 12234 engine = dev_priv->engine[BCS];
5a21b665 12235 } else {
3b3f1650 12236 engine = dev_priv->engine[RCS];
5a21b665
DV
12237 }
12238
12239 mmio_flip = use_mmio_flip(engine, obj);
12240
058d88c4
CW
12241 vma = intel_pin_and_fence_fb_obj(fb, primary->state->rotation);
12242 if (IS_ERR(vma)) {
12243 ret = PTR_ERR(vma);
5a21b665 12244 goto cleanup_pending;
058d88c4 12245 }
5a21b665 12246
6687c906 12247 work->gtt_offset = intel_fb_gtt_offset(fb, primary->state->rotation);
5a21b665
DV
12248 work->gtt_offset += intel_crtc->dspaddr_offset;
12249 work->rotation = crtc->primary->state->rotation;
12250
1f061316
PZ
12251 /*
12252 * There's the potential that the next frame will not be compatible with
12253 * FBC, so we want to call pre_update() before the actual page flip.
12254 * The problem is that pre_update() caches some information about the fb
12255 * object, so we want to do this only after the object is pinned. Let's
12256 * be on the safe side and do this immediately before scheduling the
12257 * flip.
12258 */
12259 intel_fbc_pre_update(intel_crtc, intel_crtc->config,
12260 to_intel_plane_state(primary->state));
12261
5a21b665
DV
12262 if (mmio_flip) {
12263 INIT_WORK(&work->mmio_work, intel_mmio_flip_work_func);
6277c8d0 12264 queue_work(system_unbound_wq, &work->mmio_work);
5a21b665 12265 } else {
8e637178
CW
12266 request = i915_gem_request_alloc(engine, engine->last_context);
12267 if (IS_ERR(request)) {
12268 ret = PTR_ERR(request);
12269 goto cleanup_unpin;
12270 }
12271
a2bc4695 12272 ret = i915_gem_request_await_object(request, obj, false);
8e637178
CW
12273 if (ret)
12274 goto cleanup_request;
12275
5a21b665
DV
12276 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, request,
12277 page_flip_flags);
12278 if (ret)
8e637178 12279 goto cleanup_request;
5a21b665
DV
12280
12281 intel_mark_page_flip_active(intel_crtc, work);
12282
8e637178 12283 work->flip_queued_req = i915_gem_request_get(request);
5a21b665
DV
12284 i915_add_request_no_flush(request);
12285 }
12286
12287 i915_gem_track_fb(intel_fb_obj(old_fb), obj,
12288 to_intel_plane(primary)->frontbuffer_bit);
12289 mutex_unlock(&dev->struct_mutex);
12290
5748b6a1 12291 intel_frontbuffer_flip_prepare(to_i915(dev),
5a21b665
DV
12292 to_intel_plane(primary)->frontbuffer_bit);
12293
12294 trace_i915_flip_request(intel_crtc->plane, obj);
12295
12296 return 0;
12297
8e637178
CW
12298cleanup_request:
12299 i915_add_request_no_flush(request);
5a21b665
DV
12300cleanup_unpin:
12301 intel_unpin_fb_obj(fb, crtc->primary->state->rotation);
12302cleanup_pending:
5a21b665
DV
12303 atomic_dec(&intel_crtc->unpin_work_count);
12304 mutex_unlock(&dev->struct_mutex);
12305cleanup:
12306 crtc->primary->fb = old_fb;
12307 update_state_fb(crtc->primary);
12308
f0cd5182 12309 i915_gem_object_put(obj);
5a21b665
DV
12310 drm_framebuffer_unreference(work->old_fb);
12311
12312 spin_lock_irq(&dev->event_lock);
12313 intel_crtc->flip_work = NULL;
12314 spin_unlock_irq(&dev->event_lock);
12315
12316 drm_crtc_vblank_put(crtc);
12317free_work:
12318 kfree(work);
12319
12320 if (ret == -EIO) {
12321 struct drm_atomic_state *state;
12322 struct drm_plane_state *plane_state;
12323
12324out_hang:
12325 state = drm_atomic_state_alloc(dev);
12326 if (!state)
12327 return -ENOMEM;
12328 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
12329
12330retry:
12331 plane_state = drm_atomic_get_plane_state(state, primary);
12332 ret = PTR_ERR_OR_ZERO(plane_state);
12333 if (!ret) {
12334 drm_atomic_set_fb_for_plane(plane_state, fb);
12335
12336 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
12337 if (!ret)
12338 ret = drm_atomic_commit(state);
12339 }
12340
12341 if (ret == -EDEADLK) {
12342 drm_modeset_backoff(state->acquire_ctx);
12343 drm_atomic_state_clear(state);
12344 goto retry;
12345 }
12346
0853695c 12347 drm_atomic_state_put(state);
5a21b665
DV
12348
12349 if (ret == 0 && event) {
12350 spin_lock_irq(&dev->event_lock);
12351 drm_crtc_send_vblank_event(crtc, event);
12352 spin_unlock_irq(&dev->event_lock);
12353 }
12354 }
12355 return ret;
12356}
12357
12358
12359/**
12360 * intel_wm_need_update - Check whether watermarks need updating
12361 * @plane: drm plane
12362 * @state: new plane state
12363 *
12364 * Check current plane state versus the new one to determine whether
12365 * watermarks need to be recalculated.
12366 *
12367 * Returns true or false.
12368 */
12369static bool intel_wm_need_update(struct drm_plane *plane,
12370 struct drm_plane_state *state)
12371{
12372 struct intel_plane_state *new = to_intel_plane_state(state);
12373 struct intel_plane_state *cur = to_intel_plane_state(plane->state);
12374
12375 /* Update watermarks on tiling or size changes. */
936e71e3 12376 if (new->base.visible != cur->base.visible)
5a21b665
DV
12377 return true;
12378
12379 if (!cur->base.fb || !new->base.fb)
12380 return false;
12381
12382 if (cur->base.fb->modifier[0] != new->base.fb->modifier[0] ||
12383 cur->base.rotation != new->base.rotation ||
936e71e3
VS
12384 drm_rect_width(&new->base.src) != drm_rect_width(&cur->base.src) ||
12385 drm_rect_height(&new->base.src) != drm_rect_height(&cur->base.src) ||
12386 drm_rect_width(&new->base.dst) != drm_rect_width(&cur->base.dst) ||
12387 drm_rect_height(&new->base.dst) != drm_rect_height(&cur->base.dst))
5a21b665
DV
12388 return true;
12389
12390 return false;
12391}
12392
12393static bool needs_scaling(struct intel_plane_state *state)
12394{
936e71e3
VS
12395 int src_w = drm_rect_width(&state->base.src) >> 16;
12396 int src_h = drm_rect_height(&state->base.src) >> 16;
12397 int dst_w = drm_rect_width(&state->base.dst);
12398 int dst_h = drm_rect_height(&state->base.dst);
5a21b665
DV
12399
12400 return (src_w != dst_w || src_h != dst_h);
12401}
d21fbe87 12402
da20eabd
ML
12403int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
12404 struct drm_plane_state *plane_state)
12405{
ab1d3a0e 12406 struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc_state);
da20eabd
ML
12407 struct drm_crtc *crtc = crtc_state->crtc;
12408 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12409 struct drm_plane *plane = plane_state->plane;
12410 struct drm_device *dev = crtc->dev;
ed4a6a7c 12411 struct drm_i915_private *dev_priv = to_i915(dev);
da20eabd
ML
12412 struct intel_plane_state *old_plane_state =
12413 to_intel_plane_state(plane->state);
da20eabd
ML
12414 bool mode_changed = needs_modeset(crtc_state);
12415 bool was_crtc_enabled = crtc->state->active;
12416 bool is_crtc_enabled = crtc_state->active;
da20eabd
ML
12417 bool turn_off, turn_on, visible, was_visible;
12418 struct drm_framebuffer *fb = plane_state->fb;
78108b7c 12419 int ret;
da20eabd 12420
55b8f2a7 12421 if (INTEL_GEN(dev_priv) >= 9 && plane->type != DRM_PLANE_TYPE_CURSOR) {
da20eabd
ML
12422 ret = skl_update_scaler_plane(
12423 to_intel_crtc_state(crtc_state),
12424 to_intel_plane_state(plane_state));
12425 if (ret)
12426 return ret;
12427 }
12428
936e71e3
VS
12429 was_visible = old_plane_state->base.visible;
12430 visible = to_intel_plane_state(plane_state)->base.visible;
da20eabd
ML
12431
12432 if (!was_crtc_enabled && WARN_ON(was_visible))
12433 was_visible = false;
12434
35c08f43
ML
12435 /*
12436 * Visibility is calculated as if the crtc was on, but
12437 * after scaler setup everything depends on it being off
12438 * when the crtc isn't active.
f818ffea
VS
12439 *
12440 * FIXME this is wrong for watermarks. Watermarks should also
12441 * be computed as if the pipe would be active. Perhaps move
12442 * per-plane wm computation to the .check_plane() hook, and
12443 * only combine the results from all planes in the current place?
35c08f43
ML
12444 */
12445 if (!is_crtc_enabled)
936e71e3 12446 to_intel_plane_state(plane_state)->base.visible = visible = false;
da20eabd
ML
12447
12448 if (!was_visible && !visible)
12449 return 0;
12450
e8861675
ML
12451 if (fb != old_plane_state->base.fb)
12452 pipe_config->fb_changed = true;
12453
da20eabd
ML
12454 turn_off = was_visible && (!visible || mode_changed);
12455 turn_on = visible && (!was_visible || mode_changed);
12456
72660ce0 12457 DRM_DEBUG_ATOMIC("[CRTC:%d:%s] has [PLANE:%d:%s] with fb %i\n",
78108b7c
VS
12458 intel_crtc->base.base.id,
12459 intel_crtc->base.name,
72660ce0
VS
12460 plane->base.id, plane->name,
12461 fb ? fb->base.id : -1);
da20eabd 12462
72660ce0
VS
12463 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] visible %i -> %i, off %i, on %i, ms %i\n",
12464 plane->base.id, plane->name,
12465 was_visible, visible,
da20eabd
ML
12466 turn_off, turn_on, mode_changed);
12467
caed361d
VS
12468 if (turn_on) {
12469 pipe_config->update_wm_pre = true;
12470
12471 /* must disable cxsr around plane enable/disable */
12472 if (plane->type != DRM_PLANE_TYPE_CURSOR)
12473 pipe_config->disable_cxsr = true;
12474 } else if (turn_off) {
12475 pipe_config->update_wm_post = true;
92826fcd 12476
852eb00d 12477 /* must disable cxsr around plane enable/disable */
e8861675 12478 if (plane->type != DRM_PLANE_TYPE_CURSOR)
ab1d3a0e 12479 pipe_config->disable_cxsr = true;
852eb00d 12480 } else if (intel_wm_need_update(plane, plane_state)) {
caed361d
VS
12481 /* FIXME bollocks */
12482 pipe_config->update_wm_pre = true;
12483 pipe_config->update_wm_post = true;
852eb00d 12484 }
da20eabd 12485
ed4a6a7c 12486 /* Pre-gen9 platforms need two-step watermark updates */
caed361d 12487 if ((pipe_config->update_wm_pre || pipe_config->update_wm_post) &&
6315b5d3 12488 INTEL_GEN(dev_priv) < 9 && dev_priv->display.optimize_watermarks)
ed4a6a7c
MR
12489 to_intel_crtc_state(crtc_state)->wm.need_postvbl_update = true;
12490
8be6ca85 12491 if (visible || was_visible)
cd202f69 12492 pipe_config->fb_bits |= to_intel_plane(plane)->frontbuffer_bit;
a9ff8714 12493
31ae71fc
ML
12494 /*
12495 * WaCxSRDisabledForSpriteScaling:ivb
12496 *
12497 * cstate->update_wm was already set above, so this flag will
12498 * take effect when we commit and program watermarks.
12499 */
fd6b8f43 12500 if (plane->type == DRM_PLANE_TYPE_OVERLAY && IS_IVYBRIDGE(dev_priv) &&
31ae71fc
ML
12501 needs_scaling(to_intel_plane_state(plane_state)) &&
12502 !needs_scaling(old_plane_state))
12503 pipe_config->disable_lp_wm = true;
d21fbe87 12504
da20eabd
ML
12505 return 0;
12506}
12507
6d3a1ce7
ML
12508static bool encoders_cloneable(const struct intel_encoder *a,
12509 const struct intel_encoder *b)
12510{
12511 /* masks could be asymmetric, so check both ways */
12512 return a == b || (a->cloneable & (1 << b->type) &&
12513 b->cloneable & (1 << a->type));
12514}
12515
12516static bool check_single_encoder_cloning(struct drm_atomic_state *state,
12517 struct intel_crtc *crtc,
12518 struct intel_encoder *encoder)
12519{
12520 struct intel_encoder *source_encoder;
12521 struct drm_connector *connector;
12522 struct drm_connector_state *connector_state;
12523 int i;
12524
12525 for_each_connector_in_state(state, connector, connector_state, i) {
12526 if (connector_state->crtc != &crtc->base)
12527 continue;
12528
12529 source_encoder =
12530 to_intel_encoder(connector_state->best_encoder);
12531 if (!encoders_cloneable(encoder, source_encoder))
12532 return false;
12533 }
12534
12535 return true;
12536}
12537
6d3a1ce7
ML
12538static int intel_crtc_atomic_check(struct drm_crtc *crtc,
12539 struct drm_crtc_state *crtc_state)
12540{
cf5a15be 12541 struct drm_device *dev = crtc->dev;
fac5e23e 12542 struct drm_i915_private *dev_priv = to_i915(dev);
6d3a1ce7 12543 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cf5a15be
ML
12544 struct intel_crtc_state *pipe_config =
12545 to_intel_crtc_state(crtc_state);
6d3a1ce7 12546 struct drm_atomic_state *state = crtc_state->state;
4d20cd86 12547 int ret;
6d3a1ce7
ML
12548 bool mode_changed = needs_modeset(crtc_state);
12549
852eb00d 12550 if (mode_changed && !crtc_state->active)
caed361d 12551 pipe_config->update_wm_post = true;
eddfcbcd 12552
ad421372
ML
12553 if (mode_changed && crtc_state->enable &&
12554 dev_priv->display.crtc_compute_clock &&
8106ddbd 12555 !WARN_ON(pipe_config->shared_dpll)) {
ad421372
ML
12556 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
12557 pipe_config);
12558 if (ret)
12559 return ret;
12560 }
12561
82cf435b
LL
12562 if (crtc_state->color_mgmt_changed) {
12563 ret = intel_color_check(crtc, crtc_state);
12564 if (ret)
12565 return ret;
e7852a4b
LL
12566
12567 /*
12568 * Changing color management on Intel hardware is
12569 * handled as part of planes update.
12570 */
12571 crtc_state->planes_changed = true;
82cf435b
LL
12572 }
12573
e435d6e5 12574 ret = 0;
86c8bbbe 12575 if (dev_priv->display.compute_pipe_wm) {
e3bddded 12576 ret = dev_priv->display.compute_pipe_wm(pipe_config);
ed4a6a7c
MR
12577 if (ret) {
12578 DRM_DEBUG_KMS("Target pipe watermarks are invalid\n");
12579 return ret;
12580 }
12581 }
12582
12583 if (dev_priv->display.compute_intermediate_wm &&
12584 !to_intel_atomic_state(state)->skip_intermediate_wm) {
12585 if (WARN_ON(!dev_priv->display.compute_pipe_wm))
12586 return 0;
12587
12588 /*
12589 * Calculate 'intermediate' watermarks that satisfy both the
12590 * old state and the new state. We can program these
12591 * immediately.
12592 */
6315b5d3 12593 ret = dev_priv->display.compute_intermediate_wm(dev,
ed4a6a7c
MR
12594 intel_crtc,
12595 pipe_config);
12596 if (ret) {
12597 DRM_DEBUG_KMS("No valid intermediate pipe watermarks are possible\n");
86c8bbbe 12598 return ret;
ed4a6a7c 12599 }
e3d5457c
VS
12600 } else if (dev_priv->display.compute_intermediate_wm) {
12601 if (HAS_PCH_SPLIT(dev_priv) && INTEL_GEN(dev_priv) < 9)
12602 pipe_config->wm.ilk.intermediate = pipe_config->wm.ilk.optimal;
86c8bbbe
MR
12603 }
12604
6315b5d3 12605 if (INTEL_GEN(dev_priv) >= 9) {
e435d6e5
ML
12606 if (mode_changed)
12607 ret = skl_update_scaler_crtc(pipe_config);
12608
12609 if (!ret)
12610 ret = intel_atomic_setup_scalers(dev, intel_crtc,
12611 pipe_config);
12612 }
12613
12614 return ret;
6d3a1ce7
ML
12615}
12616
65b38e0d 12617static const struct drm_crtc_helper_funcs intel_helper_funcs = {
f6e5b160 12618 .mode_set_base_atomic = intel_pipe_set_base_atomic,
5a21b665
DV
12619 .atomic_begin = intel_begin_crtc_commit,
12620 .atomic_flush = intel_finish_crtc_commit,
6d3a1ce7 12621 .atomic_check = intel_crtc_atomic_check,
f6e5b160
CW
12622};
12623
d29b2f9d
ACO
12624static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
12625{
12626 struct intel_connector *connector;
12627
12628 for_each_intel_connector(dev, connector) {
8863dc7f
DV
12629 if (connector->base.state->crtc)
12630 drm_connector_unreference(&connector->base);
12631
d29b2f9d
ACO
12632 if (connector->base.encoder) {
12633 connector->base.state->best_encoder =
12634 connector->base.encoder;
12635 connector->base.state->crtc =
12636 connector->base.encoder->crtc;
8863dc7f
DV
12637
12638 drm_connector_reference(&connector->base);
d29b2f9d
ACO
12639 } else {
12640 connector->base.state->best_encoder = NULL;
12641 connector->base.state->crtc = NULL;
12642 }
12643 }
12644}
12645
050f7aeb 12646static void
eba905b2 12647connected_sink_compute_bpp(struct intel_connector *connector,
5cec258b 12648 struct intel_crtc_state *pipe_config)
050f7aeb 12649{
6a2a5c5d 12650 const struct drm_display_info *info = &connector->base.display_info;
050f7aeb
DV
12651 int bpp = pipe_config->pipe_bpp;
12652
12653 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
6a2a5c5d
VS
12654 connector->base.base.id,
12655 connector->base.name);
050f7aeb
DV
12656
12657 /* Don't use an invalid EDID bpc value */
6a2a5c5d 12658 if (info->bpc != 0 && info->bpc * 3 < bpp) {
050f7aeb 12659 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
6a2a5c5d
VS
12660 bpp, info->bpc * 3);
12661 pipe_config->pipe_bpp = info->bpc * 3;
050f7aeb
DV
12662 }
12663
196f954e 12664 /* Clamp bpp to 8 on screens without EDID 1.4 */
6a2a5c5d 12665 if (info->bpc == 0 && bpp > 24) {
196f954e
MK
12666 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
12667 bpp);
12668 pipe_config->pipe_bpp = 24;
050f7aeb
DV
12669 }
12670}
12671
4e53c2e0 12672static int
050f7aeb 12673compute_baseline_pipe_bpp(struct intel_crtc *crtc,
5cec258b 12674 struct intel_crtc_state *pipe_config)
4e53c2e0 12675{
9beb5fea 12676 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1486017f 12677 struct drm_atomic_state *state;
da3ced29
ACO
12678 struct drm_connector *connector;
12679 struct drm_connector_state *connector_state;
1486017f 12680 int bpp, i;
4e53c2e0 12681
9beb5fea
TU
12682 if ((IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
12683 IS_CHERRYVIEW(dev_priv)))
4e53c2e0 12684 bpp = 10*3;
9beb5fea 12685 else if (INTEL_GEN(dev_priv) >= 5)
d328c9d7
DV
12686 bpp = 12*3;
12687 else
12688 bpp = 8*3;
12689
4e53c2e0 12690
4e53c2e0
DV
12691 pipe_config->pipe_bpp = bpp;
12692
1486017f
ACO
12693 state = pipe_config->base.state;
12694
4e53c2e0 12695 /* Clamp display bpp to EDID value */
da3ced29
ACO
12696 for_each_connector_in_state(state, connector, connector_state, i) {
12697 if (connector_state->crtc != &crtc->base)
4e53c2e0
DV
12698 continue;
12699
da3ced29
ACO
12700 connected_sink_compute_bpp(to_intel_connector(connector),
12701 pipe_config);
4e53c2e0
DV
12702 }
12703
12704 return bpp;
12705}
12706
644db711
DV
12707static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
12708{
12709 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
12710 "type: 0x%x flags: 0x%x\n",
1342830c 12711 mode->crtc_clock,
644db711
DV
12712 mode->crtc_hdisplay, mode->crtc_hsync_start,
12713 mode->crtc_hsync_end, mode->crtc_htotal,
12714 mode->crtc_vdisplay, mode->crtc_vsync_start,
12715 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
12716}
12717
f6982332
TU
12718static inline void
12719intel_dump_m_n_config(struct intel_crtc_state *pipe_config, char *id,
a4309657 12720 unsigned int lane_count, struct intel_link_m_n *m_n)
f6982332 12721{
a4309657
TU
12722 DRM_DEBUG_KMS("%s: lanes: %i; gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
12723 id, lane_count,
f6982332
TU
12724 m_n->gmch_m, m_n->gmch_n,
12725 m_n->link_m, m_n->link_n, m_n->tu);
12726}
12727
c0b03411 12728static void intel_dump_pipe_config(struct intel_crtc *crtc,
5cec258b 12729 struct intel_crtc_state *pipe_config,
c0b03411
DV
12730 const char *context)
12731{
6a60cd87 12732 struct drm_device *dev = crtc->base.dev;
4f8036a2 12733 struct drm_i915_private *dev_priv = to_i915(dev);
6a60cd87
CK
12734 struct drm_plane *plane;
12735 struct intel_plane *intel_plane;
12736 struct intel_plane_state *state;
12737 struct drm_framebuffer *fb;
12738
66766e4f
TU
12739 DRM_DEBUG_KMS("[CRTC:%d:%s]%s\n",
12740 crtc->base.base.id, crtc->base.name, context);
c0b03411 12741
2c89429e
TU
12742 DRM_DEBUG_KMS("cpu_transcoder: %s, pipe bpp: %i, dithering: %i\n",
12743 transcoder_name(pipe_config->cpu_transcoder),
c0b03411 12744 pipe_config->pipe_bpp, pipe_config->dither);
a4309657
TU
12745
12746 if (pipe_config->has_pch_encoder)
12747 intel_dump_m_n_config(pipe_config, "fdi",
12748 pipe_config->fdi_lanes,
12749 &pipe_config->fdi_m_n);
f6982332
TU
12750
12751 if (intel_crtc_has_dp_encoder(pipe_config)) {
a4309657
TU
12752 intel_dump_m_n_config(pipe_config, "dp m_n",
12753 pipe_config->lane_count, &pipe_config->dp_m_n);
d806e682
TU
12754 if (pipe_config->has_drrs)
12755 intel_dump_m_n_config(pipe_config, "dp m2_n2",
12756 pipe_config->lane_count,
12757 &pipe_config->dp_m2_n2);
f6982332 12758 }
b95af8be 12759
55072d19 12760 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
2c89429e 12761 pipe_config->has_audio, pipe_config->has_infoframe);
55072d19 12762
c0b03411 12763 DRM_DEBUG_KMS("requested mode:\n");
2d112de7 12764 drm_mode_debug_printmodeline(&pipe_config->base.mode);
c0b03411 12765 DRM_DEBUG_KMS("adjusted mode:\n");
2d112de7
ACO
12766 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
12767 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
2c89429e
TU
12768 DRM_DEBUG_KMS("port clock: %d, pipe src size: %dx%d\n",
12769 pipe_config->port_clock,
37327abd 12770 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
dd2f616d
TU
12771
12772 if (INTEL_GEN(dev_priv) >= 9)
12773 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
12774 crtc->num_scalers,
12775 pipe_config->scaler_state.scaler_users,
12776 pipe_config->scaler_state.scaler_id);
a74f8375
TU
12777
12778 if (HAS_GMCH_DISPLAY(dev_priv))
12779 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
12780 pipe_config->gmch_pfit.control,
12781 pipe_config->gmch_pfit.pgm_ratios,
12782 pipe_config->gmch_pfit.lvds_border_bits);
12783 else
12784 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
12785 pipe_config->pch_pfit.pos,
12786 pipe_config->pch_pfit.size,
08c4d7fc 12787 enableddisabled(pipe_config->pch_pfit.enabled));
a74f8375 12788
2c89429e
TU
12789 DRM_DEBUG_KMS("ips: %i, double wide: %i\n",
12790 pipe_config->ips_enabled, pipe_config->double_wide);
6a60cd87 12791
e2d214ae 12792 if (IS_BROXTON(dev_priv)) {
c856052a 12793 DRM_DEBUG_KMS("dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x,"
415ff0f6 12794 "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
c8453338 12795 "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n",
415ff0f6 12796 pipe_config->dpll_hw_state.ebb0,
05712c15 12797 pipe_config->dpll_hw_state.ebb4,
415ff0f6
TU
12798 pipe_config->dpll_hw_state.pll0,
12799 pipe_config->dpll_hw_state.pll1,
12800 pipe_config->dpll_hw_state.pll2,
12801 pipe_config->dpll_hw_state.pll3,
12802 pipe_config->dpll_hw_state.pll6,
12803 pipe_config->dpll_hw_state.pll8,
05712c15 12804 pipe_config->dpll_hw_state.pll9,
c8453338 12805 pipe_config->dpll_hw_state.pll10,
415ff0f6 12806 pipe_config->dpll_hw_state.pcsdw12);
0853723b 12807 } else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
c856052a 12808 DRM_DEBUG_KMS("dpll_hw_state: "
415ff0f6 12809 "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
415ff0f6
TU
12810 pipe_config->dpll_hw_state.ctrl1,
12811 pipe_config->dpll_hw_state.cfgcr1,
12812 pipe_config->dpll_hw_state.cfgcr2);
4f8036a2 12813 } else if (HAS_DDI(dev_priv)) {
c856052a 12814 DRM_DEBUG_KMS("dpll_hw_state: wrpll: 0x%x spll: 0x%x\n",
00490c22
ML
12815 pipe_config->dpll_hw_state.wrpll,
12816 pipe_config->dpll_hw_state.spll);
415ff0f6
TU
12817 } else {
12818 DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
12819 "fp0: 0x%x, fp1: 0x%x\n",
12820 pipe_config->dpll_hw_state.dpll,
12821 pipe_config->dpll_hw_state.dpll_md,
12822 pipe_config->dpll_hw_state.fp0,
12823 pipe_config->dpll_hw_state.fp1);
12824 }
12825
6a60cd87
CK
12826 DRM_DEBUG_KMS("planes on this crtc\n");
12827 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
b3c11ac2 12828 struct drm_format_name_buf format_name;
6a60cd87
CK
12829 intel_plane = to_intel_plane(plane);
12830 if (intel_plane->pipe != crtc->pipe)
12831 continue;
12832
12833 state = to_intel_plane_state(plane->state);
12834 fb = state->base.fb;
12835 if (!fb) {
1d577e02
VS
12836 DRM_DEBUG_KMS("[PLANE:%d:%s] disabled, scaler_id = %d\n",
12837 plane->base.id, plane->name, state->scaler_id);
6a60cd87
CK
12838 continue;
12839 }
12840
dd2f616d
TU
12841 DRM_DEBUG_KMS("[PLANE:%d:%s] FB:%d, fb = %ux%u format = %s\n",
12842 plane->base.id, plane->name,
b3c11ac2
EE
12843 fb->base.id, fb->width, fb->height,
12844 drm_get_format_name(fb->pixel_format, &format_name));
dd2f616d
TU
12845 if (INTEL_GEN(dev_priv) >= 9)
12846 DRM_DEBUG_KMS("\tscaler:%d src %dx%d+%d+%d dst %dx%d+%d+%d\n",
12847 state->scaler_id,
12848 state->base.src.x1 >> 16,
12849 state->base.src.y1 >> 16,
12850 drm_rect_width(&state->base.src) >> 16,
12851 drm_rect_height(&state->base.src) >> 16,
12852 state->base.dst.x1, state->base.dst.y1,
12853 drm_rect_width(&state->base.dst),
12854 drm_rect_height(&state->base.dst));
6a60cd87 12855 }
c0b03411
DV
12856}
12857
5448a00d 12858static bool check_digital_port_conflicts(struct drm_atomic_state *state)
00f0b378 12859{
5448a00d 12860 struct drm_device *dev = state->dev;
da3ced29 12861 struct drm_connector *connector;
00f0b378 12862 unsigned int used_ports = 0;
477321e0 12863 unsigned int used_mst_ports = 0;
00f0b378
VS
12864
12865 /*
12866 * Walk the connector list instead of the encoder
12867 * list to detect the problem on ddi platforms
12868 * where there's just one encoder per digital port.
12869 */
0bff4858
VS
12870 drm_for_each_connector(connector, dev) {
12871 struct drm_connector_state *connector_state;
12872 struct intel_encoder *encoder;
12873
12874 connector_state = drm_atomic_get_existing_connector_state(state, connector);
12875 if (!connector_state)
12876 connector_state = connector->state;
12877
5448a00d 12878 if (!connector_state->best_encoder)
00f0b378
VS
12879 continue;
12880
5448a00d
ACO
12881 encoder = to_intel_encoder(connector_state->best_encoder);
12882
12883 WARN_ON(!connector_state->crtc);
00f0b378
VS
12884
12885 switch (encoder->type) {
12886 unsigned int port_mask;
12887 case INTEL_OUTPUT_UNKNOWN:
4f8036a2 12888 if (WARN_ON(!HAS_DDI(to_i915(dev))))
00f0b378 12889 break;
cca0502b 12890 case INTEL_OUTPUT_DP:
00f0b378
VS
12891 case INTEL_OUTPUT_HDMI:
12892 case INTEL_OUTPUT_EDP:
12893 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
12894
12895 /* the same port mustn't appear more than once */
12896 if (used_ports & port_mask)
12897 return false;
12898
12899 used_ports |= port_mask;
477321e0
VS
12900 break;
12901 case INTEL_OUTPUT_DP_MST:
12902 used_mst_ports |=
12903 1 << enc_to_mst(&encoder->base)->primary->port;
12904 break;
00f0b378
VS
12905 default:
12906 break;
12907 }
12908 }
12909
477321e0
VS
12910 /* can't mix MST and SST/HDMI on the same port */
12911 if (used_ports & used_mst_ports)
12912 return false;
12913
00f0b378
VS
12914 return true;
12915}
12916
83a57153
ACO
12917static void
12918clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
12919{
12920 struct drm_crtc_state tmp_state;
663a3640 12921 struct intel_crtc_scaler_state scaler_state;
4978cc93 12922 struct intel_dpll_hw_state dpll_hw_state;
8106ddbd 12923 struct intel_shared_dpll *shared_dpll;
c4e2d043 12924 bool force_thru;
83a57153 12925
7546a384
ACO
12926 /* FIXME: before the switch to atomic started, a new pipe_config was
12927 * kzalloc'd. Code that depends on any field being zero should be
12928 * fixed, so that the crtc_state can be safely duplicated. For now,
12929 * only fields that are know to not cause problems are preserved. */
12930
83a57153 12931 tmp_state = crtc_state->base;
663a3640 12932 scaler_state = crtc_state->scaler_state;
4978cc93
ACO
12933 shared_dpll = crtc_state->shared_dpll;
12934 dpll_hw_state = crtc_state->dpll_hw_state;
c4e2d043 12935 force_thru = crtc_state->pch_pfit.force_thru;
4978cc93 12936
83a57153 12937 memset(crtc_state, 0, sizeof *crtc_state);
4978cc93 12938
83a57153 12939 crtc_state->base = tmp_state;
663a3640 12940 crtc_state->scaler_state = scaler_state;
4978cc93
ACO
12941 crtc_state->shared_dpll = shared_dpll;
12942 crtc_state->dpll_hw_state = dpll_hw_state;
c4e2d043 12943 crtc_state->pch_pfit.force_thru = force_thru;
83a57153
ACO
12944}
12945
548ee15b 12946static int
b8cecdf5 12947intel_modeset_pipe_config(struct drm_crtc *crtc,
b359283a 12948 struct intel_crtc_state *pipe_config)
ee7b9f93 12949{
b359283a 12950 struct drm_atomic_state *state = pipe_config->base.state;
7758a113 12951 struct intel_encoder *encoder;
da3ced29 12952 struct drm_connector *connector;
0b901879 12953 struct drm_connector_state *connector_state;
d328c9d7 12954 int base_bpp, ret = -EINVAL;
0b901879 12955 int i;
e29c22c0 12956 bool retry = true;
ee7b9f93 12957
83a57153 12958 clear_intel_crtc_state(pipe_config);
7758a113 12959
e143a21c
DV
12960 pipe_config->cpu_transcoder =
12961 (enum transcoder) to_intel_crtc(crtc)->pipe;
b8cecdf5 12962
2960bc9c
ID
12963 /*
12964 * Sanitize sync polarity flags based on requested ones. If neither
12965 * positive or negative polarity is requested, treat this as meaning
12966 * negative polarity.
12967 */
2d112de7 12968 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 12969 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
2d112de7 12970 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
2960bc9c 12971
2d112de7 12972 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 12973 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
2d112de7 12974 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
2960bc9c 12975
d328c9d7
DV
12976 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
12977 pipe_config);
12978 if (base_bpp < 0)
4e53c2e0
DV
12979 goto fail;
12980
e41a56be
VS
12981 /*
12982 * Determine the real pipe dimensions. Note that stereo modes can
12983 * increase the actual pipe size due to the frame doubling and
12984 * insertion of additional space for blanks between the frame. This
12985 * is stored in the crtc timings. We use the requested mode to do this
12986 * computation to clearly distinguish it from the adjusted mode, which
12987 * can be changed by the connectors in the below retry loop.
12988 */
2d112de7 12989 drm_crtc_get_hv_timing(&pipe_config->base.mode,
ecb7e16b
GP
12990 &pipe_config->pipe_src_w,
12991 &pipe_config->pipe_src_h);
e41a56be 12992
253c84c8
VS
12993 for_each_connector_in_state(state, connector, connector_state, i) {
12994 if (connector_state->crtc != crtc)
12995 continue;
12996
12997 encoder = to_intel_encoder(connector_state->best_encoder);
12998
e25148d0
VS
12999 if (!check_single_encoder_cloning(state, to_intel_crtc(crtc), encoder)) {
13000 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
13001 goto fail;
13002 }
13003
253c84c8
VS
13004 /*
13005 * Determine output_types before calling the .compute_config()
13006 * hooks so that the hooks can use this information safely.
13007 */
13008 pipe_config->output_types |= 1 << encoder->type;
13009 }
13010
e29c22c0 13011encoder_retry:
ef1b460d 13012 /* Ensure the port clock defaults are reset when retrying. */
ff9a6750 13013 pipe_config->port_clock = 0;
ef1b460d 13014 pipe_config->pixel_multiplier = 1;
ff9a6750 13015
135c81b8 13016 /* Fill in default crtc timings, allow encoders to overwrite them. */
2d112de7
ACO
13017 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
13018 CRTC_STEREO_DOUBLE);
135c81b8 13019
7758a113
DV
13020 /* Pass our mode to the connectors and the CRTC to give them a chance to
13021 * adjust it according to limitations or connector properties, and also
13022 * a chance to reject the mode entirely.
47f1c6c9 13023 */
da3ced29 13024 for_each_connector_in_state(state, connector, connector_state, i) {
0b901879 13025 if (connector_state->crtc != crtc)
7758a113 13026 continue;
7ae89233 13027
0b901879
ACO
13028 encoder = to_intel_encoder(connector_state->best_encoder);
13029
0a478c27 13030 if (!(encoder->compute_config(encoder, pipe_config, connector_state))) {
efea6e8e 13031 DRM_DEBUG_KMS("Encoder config failure\n");
7758a113
DV
13032 goto fail;
13033 }
ee7b9f93 13034 }
47f1c6c9 13035
ff9a6750
DV
13036 /* Set default port clock if not overwritten by the encoder. Needs to be
13037 * done afterwards in case the encoder adjusts the mode. */
13038 if (!pipe_config->port_clock)
2d112de7 13039 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
241bfc38 13040 * pipe_config->pixel_multiplier;
ff9a6750 13041
a43f6e0f 13042 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
e29c22c0 13043 if (ret < 0) {
7758a113
DV
13044 DRM_DEBUG_KMS("CRTC fixup failed\n");
13045 goto fail;
ee7b9f93 13046 }
e29c22c0
DV
13047
13048 if (ret == RETRY) {
13049 if (WARN(!retry, "loop in pipe configuration computation\n")) {
13050 ret = -EINVAL;
13051 goto fail;
13052 }
13053
13054 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
13055 retry = false;
13056 goto encoder_retry;
13057 }
13058
e8fa4270
DV
13059 /* Dithering seems to not pass-through bits correctly when it should, so
13060 * only enable it on 6bpc panels. */
13061 pipe_config->dither = pipe_config->pipe_bpp == 6*3;
62f0ace5 13062 DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n",
d328c9d7 13063 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
4e53c2e0 13064
7758a113 13065fail:
548ee15b 13066 return ret;
ee7b9f93 13067}
47f1c6c9 13068
ea9d758d 13069static void
4740b0f2 13070intel_modeset_update_crtc_state(struct drm_atomic_state *state)
ea9d758d 13071{
0a9ab303
ACO
13072 struct drm_crtc *crtc;
13073 struct drm_crtc_state *crtc_state;
8a75d157 13074 int i;
ea9d758d 13075
7668851f 13076 /* Double check state. */
8a75d157 13077 for_each_crtc_in_state(state, crtc, crtc_state, i) {
3cb480bc 13078 to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state);
fc467a22
ML
13079
13080 /* Update hwmode for vblank functions */
13081 if (crtc->state->active)
13082 crtc->hwmode = crtc->state->adjusted_mode;
13083 else
13084 crtc->hwmode.crtc_clock = 0;
61067a5e
ML
13085
13086 /*
13087 * Update legacy state to satisfy fbc code. This can
13088 * be removed when fbc uses the atomic state.
13089 */
13090 if (drm_atomic_get_existing_plane_state(state, crtc->primary)) {
13091 struct drm_plane_state *plane_state = crtc->primary->state;
13092
13093 crtc->primary->fb = plane_state->fb;
13094 crtc->x = plane_state->src_x >> 16;
13095 crtc->y = plane_state->src_y >> 16;
13096 }
ea9d758d 13097 }
ea9d758d
DV
13098}
13099
3bd26263 13100static bool intel_fuzzy_clock_check(int clock1, int clock2)
f1f644dc 13101{
3bd26263 13102 int diff;
f1f644dc
JB
13103
13104 if (clock1 == clock2)
13105 return true;
13106
13107 if (!clock1 || !clock2)
13108 return false;
13109
13110 diff = abs(clock1 - clock2);
13111
13112 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
13113 return true;
13114
13115 return false;
13116}
13117
cfb23ed6
ML
13118static bool
13119intel_compare_m_n(unsigned int m, unsigned int n,
13120 unsigned int m2, unsigned int n2,
13121 bool exact)
13122{
13123 if (m == m2 && n == n2)
13124 return true;
13125
13126 if (exact || !m || !n || !m2 || !n2)
13127 return false;
13128
13129 BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX);
13130
31d10b57
ML
13131 if (n > n2) {
13132 while (n > n2) {
cfb23ed6
ML
13133 m2 <<= 1;
13134 n2 <<= 1;
13135 }
31d10b57
ML
13136 } else if (n < n2) {
13137 while (n < n2) {
cfb23ed6
ML
13138 m <<= 1;
13139 n <<= 1;
13140 }
13141 }
13142
31d10b57
ML
13143 if (n != n2)
13144 return false;
13145
13146 return intel_fuzzy_clock_check(m, m2);
cfb23ed6
ML
13147}
13148
13149static bool
13150intel_compare_link_m_n(const struct intel_link_m_n *m_n,
13151 struct intel_link_m_n *m2_n2,
13152 bool adjust)
13153{
13154 if (m_n->tu == m2_n2->tu &&
13155 intel_compare_m_n(m_n->gmch_m, m_n->gmch_n,
13156 m2_n2->gmch_m, m2_n2->gmch_n, !adjust) &&
13157 intel_compare_m_n(m_n->link_m, m_n->link_n,
13158 m2_n2->link_m, m2_n2->link_n, !adjust)) {
13159 if (adjust)
13160 *m2_n2 = *m_n;
13161
13162 return true;
13163 }
13164
13165 return false;
13166}
13167
0e8ffe1b 13168static bool
6315b5d3 13169intel_pipe_config_compare(struct drm_i915_private *dev_priv,
5cec258b 13170 struct intel_crtc_state *current_config,
cfb23ed6
ML
13171 struct intel_crtc_state *pipe_config,
13172 bool adjust)
0e8ffe1b 13173{
cfb23ed6
ML
13174 bool ret = true;
13175
13176#define INTEL_ERR_OR_DBG_KMS(fmt, ...) \
13177 do { \
13178 if (!adjust) \
13179 DRM_ERROR(fmt, ##__VA_ARGS__); \
13180 else \
13181 DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \
13182 } while (0)
13183
66e985c0
DV
13184#define PIPE_CONF_CHECK_X(name) \
13185 if (current_config->name != pipe_config->name) { \
cfb23ed6 13186 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
66e985c0
DV
13187 "(expected 0x%08x, found 0x%08x)\n", \
13188 current_config->name, \
13189 pipe_config->name); \
cfb23ed6 13190 ret = false; \
66e985c0
DV
13191 }
13192
08a24034
DV
13193#define PIPE_CONF_CHECK_I(name) \
13194 if (current_config->name != pipe_config->name) { \
cfb23ed6 13195 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
08a24034
DV
13196 "(expected %i, found %i)\n", \
13197 current_config->name, \
13198 pipe_config->name); \
cfb23ed6
ML
13199 ret = false; \
13200 }
13201
8106ddbd
ACO
13202#define PIPE_CONF_CHECK_P(name) \
13203 if (current_config->name != pipe_config->name) { \
13204 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
13205 "(expected %p, found %p)\n", \
13206 current_config->name, \
13207 pipe_config->name); \
13208 ret = false; \
13209 }
13210
cfb23ed6
ML
13211#define PIPE_CONF_CHECK_M_N(name) \
13212 if (!intel_compare_link_m_n(&current_config->name, \
13213 &pipe_config->name,\
13214 adjust)) { \
13215 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
13216 "(expected tu %i gmch %i/%i link %i/%i, " \
13217 "found tu %i, gmch %i/%i link %i/%i)\n", \
13218 current_config->name.tu, \
13219 current_config->name.gmch_m, \
13220 current_config->name.gmch_n, \
13221 current_config->name.link_m, \
13222 current_config->name.link_n, \
13223 pipe_config->name.tu, \
13224 pipe_config->name.gmch_m, \
13225 pipe_config->name.gmch_n, \
13226 pipe_config->name.link_m, \
13227 pipe_config->name.link_n); \
13228 ret = false; \
13229 }
13230
55c561a7
DV
13231/* This is required for BDW+ where there is only one set of registers for
13232 * switching between high and low RR.
13233 * This macro can be used whenever a comparison has to be made between one
13234 * hw state and multiple sw state variables.
13235 */
cfb23ed6
ML
13236#define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \
13237 if (!intel_compare_link_m_n(&current_config->name, \
13238 &pipe_config->name, adjust) && \
13239 !intel_compare_link_m_n(&current_config->alt_name, \
13240 &pipe_config->name, adjust)) { \
13241 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
13242 "(expected tu %i gmch %i/%i link %i/%i, " \
13243 "or tu %i gmch %i/%i link %i/%i, " \
13244 "found tu %i, gmch %i/%i link %i/%i)\n", \
13245 current_config->name.tu, \
13246 current_config->name.gmch_m, \
13247 current_config->name.gmch_n, \
13248 current_config->name.link_m, \
13249 current_config->name.link_n, \
13250 current_config->alt_name.tu, \
13251 current_config->alt_name.gmch_m, \
13252 current_config->alt_name.gmch_n, \
13253 current_config->alt_name.link_m, \
13254 current_config->alt_name.link_n, \
13255 pipe_config->name.tu, \
13256 pipe_config->name.gmch_m, \
13257 pipe_config->name.gmch_n, \
13258 pipe_config->name.link_m, \
13259 pipe_config->name.link_n); \
13260 ret = false; \
88adfff1
DV
13261 }
13262
1bd1bd80
DV
13263#define PIPE_CONF_CHECK_FLAGS(name, mask) \
13264 if ((current_config->name ^ pipe_config->name) & (mask)) { \
cfb23ed6 13265 INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \
1bd1bd80
DV
13266 "(expected %i, found %i)\n", \
13267 current_config->name & (mask), \
13268 pipe_config->name & (mask)); \
cfb23ed6 13269 ret = false; \
1bd1bd80
DV
13270 }
13271
5e550656
VS
13272#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
13273 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
cfb23ed6 13274 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
5e550656
VS
13275 "(expected %i, found %i)\n", \
13276 current_config->name, \
13277 pipe_config->name); \
cfb23ed6 13278 ret = false; \
5e550656
VS
13279 }
13280
bb760063
DV
13281#define PIPE_CONF_QUIRK(quirk) \
13282 ((current_config->quirks | pipe_config->quirks) & (quirk))
13283
eccb140b
DV
13284 PIPE_CONF_CHECK_I(cpu_transcoder);
13285
08a24034
DV
13286 PIPE_CONF_CHECK_I(has_pch_encoder);
13287 PIPE_CONF_CHECK_I(fdi_lanes);
cfb23ed6 13288 PIPE_CONF_CHECK_M_N(fdi_m_n);
08a24034 13289
90a6b7b0 13290 PIPE_CONF_CHECK_I(lane_count);
95a7a2ae 13291 PIPE_CONF_CHECK_X(lane_lat_optim_mask);
b95af8be 13292
6315b5d3 13293 if (INTEL_GEN(dev_priv) < 8) {
cfb23ed6
ML
13294 PIPE_CONF_CHECK_M_N(dp_m_n);
13295
cfb23ed6
ML
13296 if (current_config->has_drrs)
13297 PIPE_CONF_CHECK_M_N(dp_m2_n2);
13298 } else
13299 PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2);
eb14cb74 13300
253c84c8 13301 PIPE_CONF_CHECK_X(output_types);
a65347ba 13302
2d112de7
ACO
13303 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
13304 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
13305 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
13306 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
13307 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
13308 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
1bd1bd80 13309
2d112de7
ACO
13310 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
13311 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
13312 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
13313 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
13314 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
13315 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
1bd1bd80 13316
c93f54cf 13317 PIPE_CONF_CHECK_I(pixel_multiplier);
6897b4b5 13318 PIPE_CONF_CHECK_I(has_hdmi_sink);
772c2a51 13319 if ((INTEL_GEN(dev_priv) < 8 && !IS_HASWELL(dev_priv)) ||
920a14b2 13320 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
b5a9fa09 13321 PIPE_CONF_CHECK_I(limited_color_range);
e43823ec 13322 PIPE_CONF_CHECK_I(has_infoframe);
6c49f241 13323
9ed109a7
DV
13324 PIPE_CONF_CHECK_I(has_audio);
13325
2d112de7 13326 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
1bd1bd80
DV
13327 DRM_MODE_FLAG_INTERLACE);
13328
bb760063 13329 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
2d112de7 13330 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 13331 DRM_MODE_FLAG_PHSYNC);
2d112de7 13332 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 13333 DRM_MODE_FLAG_NHSYNC);
2d112de7 13334 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 13335 DRM_MODE_FLAG_PVSYNC);
2d112de7 13336 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063
DV
13337 DRM_MODE_FLAG_NVSYNC);
13338 }
045ac3b5 13339
333b8ca8 13340 PIPE_CONF_CHECK_X(gmch_pfit.control);
e2ff2d4a 13341 /* pfit ratios are autocomputed by the hw on gen4+ */
6315b5d3 13342 if (INTEL_GEN(dev_priv) < 4)
7f7d8dd6 13343 PIPE_CONF_CHECK_X(gmch_pfit.pgm_ratios);
333b8ca8 13344 PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits);
9953599b 13345
bfd16b2a
ML
13346 if (!adjust) {
13347 PIPE_CONF_CHECK_I(pipe_src_w);
13348 PIPE_CONF_CHECK_I(pipe_src_h);
13349
13350 PIPE_CONF_CHECK_I(pch_pfit.enabled);
13351 if (current_config->pch_pfit.enabled) {
13352 PIPE_CONF_CHECK_X(pch_pfit.pos);
13353 PIPE_CONF_CHECK_X(pch_pfit.size);
13354 }
2fa2fe9a 13355
7aefe2b5
ML
13356 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
13357 }
a1b2278e 13358
e59150dc 13359 /* BDW+ don't expose a synchronous way to read the state */
772c2a51 13360 if (IS_HASWELL(dev_priv))
e59150dc 13361 PIPE_CONF_CHECK_I(ips_enabled);
42db64ef 13362
282740f7
VS
13363 PIPE_CONF_CHECK_I(double_wide);
13364
8106ddbd 13365 PIPE_CONF_CHECK_P(shared_dpll);
66e985c0 13366 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
8bcc2795 13367 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
66e985c0
DV
13368 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
13369 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
d452c5b6 13370 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
00490c22 13371 PIPE_CONF_CHECK_X(dpll_hw_state.spll);
3f4cd19f
DL
13372 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
13373 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
13374 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
c0d43d62 13375
47eacbab
VS
13376 PIPE_CONF_CHECK_X(dsi_pll.ctrl);
13377 PIPE_CONF_CHECK_X(dsi_pll.div);
13378
9beb5fea 13379 if (IS_G4X(dev_priv) || INTEL_GEN(dev_priv) >= 5)
42571aef
VS
13380 PIPE_CONF_CHECK_I(pipe_bpp);
13381
2d112de7 13382 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
a9a7e98a 13383 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
5e550656 13384
66e985c0 13385#undef PIPE_CONF_CHECK_X
08a24034 13386#undef PIPE_CONF_CHECK_I
8106ddbd 13387#undef PIPE_CONF_CHECK_P
1bd1bd80 13388#undef PIPE_CONF_CHECK_FLAGS
5e550656 13389#undef PIPE_CONF_CHECK_CLOCK_FUZZY
bb760063 13390#undef PIPE_CONF_QUIRK
cfb23ed6 13391#undef INTEL_ERR_OR_DBG_KMS
88adfff1 13392
cfb23ed6 13393 return ret;
0e8ffe1b
DV
13394}
13395
e3b247da
VS
13396static void intel_pipe_config_sanity_check(struct drm_i915_private *dev_priv,
13397 const struct intel_crtc_state *pipe_config)
13398{
13399 if (pipe_config->has_pch_encoder) {
21a727b3 13400 int fdi_dotclock = intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config),
e3b247da
VS
13401 &pipe_config->fdi_m_n);
13402 int dotclock = pipe_config->base.adjusted_mode.crtc_clock;
13403
13404 /*
13405 * FDI already provided one idea for the dotclock.
13406 * Yell if the encoder disagrees.
13407 */
13408 WARN(!intel_fuzzy_clock_check(fdi_dotclock, dotclock),
13409 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
13410 fdi_dotclock, dotclock);
13411 }
13412}
13413
c0ead703
ML
13414static void verify_wm_state(struct drm_crtc *crtc,
13415 struct drm_crtc_state *new_state)
08db6652 13416{
6315b5d3 13417 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
08db6652 13418 struct skl_ddb_allocation hw_ddb, *sw_ddb;
3de8a14c 13419 struct skl_pipe_wm hw_wm, *sw_wm;
13420 struct skl_plane_wm *hw_plane_wm, *sw_plane_wm;
13421 struct skl_ddb_entry *hw_ddb_entry, *sw_ddb_entry;
e7c84544
ML
13422 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13423 const enum pipe pipe = intel_crtc->pipe;
3de8a14c 13424 int plane, level, max_level = ilk_wm_max_level(dev_priv);
08db6652 13425
6315b5d3 13426 if (INTEL_GEN(dev_priv) < 9 || !new_state->active)
08db6652
DL
13427 return;
13428
3de8a14c 13429 skl_pipe_wm_get_hw_state(crtc, &hw_wm);
03af79e0 13430 sw_wm = &to_intel_crtc_state(new_state)->wm.skl.optimal;
3de8a14c 13431
08db6652
DL
13432 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
13433 sw_ddb = &dev_priv->wm.skl_hw.ddb;
13434
e7c84544 13435 /* planes */
8b364b41 13436 for_each_universal_plane(dev_priv, pipe, plane) {
3de8a14c 13437 hw_plane_wm = &hw_wm.planes[plane];
13438 sw_plane_wm = &sw_wm->planes[plane];
08db6652 13439
3de8a14c 13440 /* Watermarks */
13441 for (level = 0; level <= max_level; level++) {
13442 if (skl_wm_level_equals(&hw_plane_wm->wm[level],
13443 &sw_plane_wm->wm[level]))
13444 continue;
13445
13446 DRM_ERROR("mismatch in WM pipe %c plane %d level %d (expected e=%d b=%u l=%u, got e=%d b=%u l=%u)\n",
13447 pipe_name(pipe), plane + 1, level,
13448 sw_plane_wm->wm[level].plane_en,
13449 sw_plane_wm->wm[level].plane_res_b,
13450 sw_plane_wm->wm[level].plane_res_l,
13451 hw_plane_wm->wm[level].plane_en,
13452 hw_plane_wm->wm[level].plane_res_b,
13453 hw_plane_wm->wm[level].plane_res_l);
13454 }
08db6652 13455
3de8a14c 13456 if (!skl_wm_level_equals(&hw_plane_wm->trans_wm,
13457 &sw_plane_wm->trans_wm)) {
13458 DRM_ERROR("mismatch in trans WM pipe %c plane %d (expected e=%d b=%u l=%u, got e=%d b=%u l=%u)\n",
13459 pipe_name(pipe), plane + 1,
13460 sw_plane_wm->trans_wm.plane_en,
13461 sw_plane_wm->trans_wm.plane_res_b,
13462 sw_plane_wm->trans_wm.plane_res_l,
13463 hw_plane_wm->trans_wm.plane_en,
13464 hw_plane_wm->trans_wm.plane_res_b,
13465 hw_plane_wm->trans_wm.plane_res_l);
13466 }
13467
13468 /* DDB */
13469 hw_ddb_entry = &hw_ddb.plane[pipe][plane];
13470 sw_ddb_entry = &sw_ddb->plane[pipe][plane];
13471
13472 if (!skl_ddb_entry_equal(hw_ddb_entry, sw_ddb_entry)) {
faccd994 13473 DRM_ERROR("mismatch in DDB state pipe %c plane %d (expected (%u,%u), found (%u,%u))\n",
3de8a14c 13474 pipe_name(pipe), plane + 1,
13475 sw_ddb_entry->start, sw_ddb_entry->end,
13476 hw_ddb_entry->start, hw_ddb_entry->end);
13477 }
e7c84544 13478 }
08db6652 13479
27082493
L
13480 /*
13481 * cursor
13482 * If the cursor plane isn't active, we may not have updated it's ddb
13483 * allocation. In that case since the ddb allocation will be updated
13484 * once the plane becomes visible, we can skip this check
13485 */
13486 if (intel_crtc->cursor_addr) {
3de8a14c 13487 hw_plane_wm = &hw_wm.planes[PLANE_CURSOR];
13488 sw_plane_wm = &sw_wm->planes[PLANE_CURSOR];
13489
13490 /* Watermarks */
13491 for (level = 0; level <= max_level; level++) {
13492 if (skl_wm_level_equals(&hw_plane_wm->wm[level],
13493 &sw_plane_wm->wm[level]))
13494 continue;
13495
13496 DRM_ERROR("mismatch in WM pipe %c cursor level %d (expected e=%d b=%u l=%u, got e=%d b=%u l=%u)\n",
13497 pipe_name(pipe), level,
13498 sw_plane_wm->wm[level].plane_en,
13499 sw_plane_wm->wm[level].plane_res_b,
13500 sw_plane_wm->wm[level].plane_res_l,
13501 hw_plane_wm->wm[level].plane_en,
13502 hw_plane_wm->wm[level].plane_res_b,
13503 hw_plane_wm->wm[level].plane_res_l);
13504 }
13505
13506 if (!skl_wm_level_equals(&hw_plane_wm->trans_wm,
13507 &sw_plane_wm->trans_wm)) {
13508 DRM_ERROR("mismatch in trans WM pipe %c cursor (expected e=%d b=%u l=%u, got e=%d b=%u l=%u)\n",
13509 pipe_name(pipe),
13510 sw_plane_wm->trans_wm.plane_en,
13511 sw_plane_wm->trans_wm.plane_res_b,
13512 sw_plane_wm->trans_wm.plane_res_l,
13513 hw_plane_wm->trans_wm.plane_en,
13514 hw_plane_wm->trans_wm.plane_res_b,
13515 hw_plane_wm->trans_wm.plane_res_l);
13516 }
13517
13518 /* DDB */
13519 hw_ddb_entry = &hw_ddb.plane[pipe][PLANE_CURSOR];
13520 sw_ddb_entry = &sw_ddb->plane[pipe][PLANE_CURSOR];
27082493 13521
3de8a14c 13522 if (!skl_ddb_entry_equal(hw_ddb_entry, sw_ddb_entry)) {
faccd994 13523 DRM_ERROR("mismatch in DDB state pipe %c cursor (expected (%u,%u), found (%u,%u))\n",
27082493 13524 pipe_name(pipe),
3de8a14c 13525 sw_ddb_entry->start, sw_ddb_entry->end,
13526 hw_ddb_entry->start, hw_ddb_entry->end);
27082493 13527 }
08db6652
DL
13528 }
13529}
13530
91d1b4bd 13531static void
677100ce
ML
13532verify_connector_state(struct drm_device *dev,
13533 struct drm_atomic_state *state,
13534 struct drm_crtc *crtc)
8af6cf88 13535{
35dd3c64 13536 struct drm_connector *connector;
677100ce
ML
13537 struct drm_connector_state *old_conn_state;
13538 int i;
8af6cf88 13539
677100ce 13540 for_each_connector_in_state(state, connector, old_conn_state, i) {
35dd3c64
ML
13541 struct drm_encoder *encoder = connector->encoder;
13542 struct drm_connector_state *state = connector->state;
ad3c558f 13543
e7c84544
ML
13544 if (state->crtc != crtc)
13545 continue;
13546
5a21b665 13547 intel_connector_verify_state(to_intel_connector(connector));
8af6cf88 13548
ad3c558f 13549 I915_STATE_WARN(state->best_encoder != encoder,
35dd3c64 13550 "connector's atomic encoder doesn't match legacy encoder\n");
8af6cf88 13551 }
91d1b4bd
DV
13552}
13553
13554static void
c0ead703 13555verify_encoder_state(struct drm_device *dev)
91d1b4bd
DV
13556{
13557 struct intel_encoder *encoder;
13558 struct intel_connector *connector;
8af6cf88 13559
b2784e15 13560 for_each_intel_encoder(dev, encoder) {
8af6cf88 13561 bool enabled = false;
4d20cd86 13562 enum pipe pipe;
8af6cf88
DV
13563
13564 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
13565 encoder->base.base.id,
8e329a03 13566 encoder->base.name);
8af6cf88 13567
3a3371ff 13568 for_each_intel_connector(dev, connector) {
4d20cd86 13569 if (connector->base.state->best_encoder != &encoder->base)
8af6cf88
DV
13570 continue;
13571 enabled = true;
ad3c558f
ML
13572
13573 I915_STATE_WARN(connector->base.state->crtc !=
13574 encoder->base.crtc,
13575 "connector's crtc doesn't match encoder crtc\n");
8af6cf88 13576 }
0e32b39c 13577
e2c719b7 13578 I915_STATE_WARN(!!encoder->base.crtc != enabled,
8af6cf88
DV
13579 "encoder's enabled state mismatch "
13580 "(expected %i, found %i)\n",
13581 !!encoder->base.crtc, enabled);
7c60d198
ML
13582
13583 if (!encoder->base.crtc) {
4d20cd86 13584 bool active;
7c60d198 13585
4d20cd86
ML
13586 active = encoder->get_hw_state(encoder, &pipe);
13587 I915_STATE_WARN(active,
13588 "encoder detached but still enabled on pipe %c.\n",
13589 pipe_name(pipe));
7c60d198 13590 }
8af6cf88 13591 }
91d1b4bd
DV
13592}
13593
13594static void
c0ead703
ML
13595verify_crtc_state(struct drm_crtc *crtc,
13596 struct drm_crtc_state *old_crtc_state,
13597 struct drm_crtc_state *new_crtc_state)
91d1b4bd 13598{
e7c84544 13599 struct drm_device *dev = crtc->dev;
fac5e23e 13600 struct drm_i915_private *dev_priv = to_i915(dev);
91d1b4bd 13601 struct intel_encoder *encoder;
e7c84544
ML
13602 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13603 struct intel_crtc_state *pipe_config, *sw_config;
13604 struct drm_atomic_state *old_state;
13605 bool active;
045ac3b5 13606
e7c84544 13607 old_state = old_crtc_state->state;
ec2dc6a0 13608 __drm_atomic_helper_crtc_destroy_state(old_crtc_state);
e7c84544
ML
13609 pipe_config = to_intel_crtc_state(old_crtc_state);
13610 memset(pipe_config, 0, sizeof(*pipe_config));
13611 pipe_config->base.crtc = crtc;
13612 pipe_config->base.state = old_state;
8af6cf88 13613
78108b7c 13614 DRM_DEBUG_KMS("[CRTC:%d:%s]\n", crtc->base.id, crtc->name);
8af6cf88 13615
e7c84544 13616 active = dev_priv->display.get_pipe_config(intel_crtc, pipe_config);
d62cf62a 13617
e7c84544
ML
13618 /* hw state is inconsistent with the pipe quirk */
13619 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
13620 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
13621 active = new_crtc_state->active;
6c49f241 13622
e7c84544
ML
13623 I915_STATE_WARN(new_crtc_state->active != active,
13624 "crtc active state doesn't match with hw state "
13625 "(expected %i, found %i)\n", new_crtc_state->active, active);
0e8ffe1b 13626
e7c84544
ML
13627 I915_STATE_WARN(intel_crtc->active != new_crtc_state->active,
13628 "transitional active state does not match atomic hw state "
13629 "(expected %i, found %i)\n", new_crtc_state->active, intel_crtc->active);
4d20cd86 13630
e7c84544
ML
13631 for_each_encoder_on_crtc(dev, crtc, encoder) {
13632 enum pipe pipe;
4d20cd86 13633
e7c84544
ML
13634 active = encoder->get_hw_state(encoder, &pipe);
13635 I915_STATE_WARN(active != new_crtc_state->active,
13636 "[ENCODER:%i] active %i with crtc active %i\n",
13637 encoder->base.base.id, active, new_crtc_state->active);
4d20cd86 13638
e7c84544
ML
13639 I915_STATE_WARN(active && intel_crtc->pipe != pipe,
13640 "Encoder connected to wrong pipe %c\n",
13641 pipe_name(pipe));
4d20cd86 13642
253c84c8
VS
13643 if (active) {
13644 pipe_config->output_types |= 1 << encoder->type;
e7c84544 13645 encoder->get_config(encoder, pipe_config);
253c84c8 13646 }
e7c84544 13647 }
53d9f4e9 13648
e7c84544
ML
13649 if (!new_crtc_state->active)
13650 return;
cfb23ed6 13651
e7c84544 13652 intel_pipe_config_sanity_check(dev_priv, pipe_config);
e3b247da 13653
e7c84544 13654 sw_config = to_intel_crtc_state(crtc->state);
6315b5d3 13655 if (!intel_pipe_config_compare(dev_priv, sw_config,
e7c84544
ML
13656 pipe_config, false)) {
13657 I915_STATE_WARN(1, "pipe state doesn't match!\n");
13658 intel_dump_pipe_config(intel_crtc, pipe_config,
13659 "[hw state]");
13660 intel_dump_pipe_config(intel_crtc, sw_config,
13661 "[sw state]");
8af6cf88
DV
13662 }
13663}
13664
91d1b4bd 13665static void
c0ead703
ML
13666verify_single_dpll_state(struct drm_i915_private *dev_priv,
13667 struct intel_shared_dpll *pll,
13668 struct drm_crtc *crtc,
13669 struct drm_crtc_state *new_state)
91d1b4bd 13670{
91d1b4bd 13671 struct intel_dpll_hw_state dpll_hw_state;
e7c84544
ML
13672 unsigned crtc_mask;
13673 bool active;
5358901f 13674
e7c84544 13675 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
5358901f 13676
e7c84544 13677 DRM_DEBUG_KMS("%s\n", pll->name);
5358901f 13678
e7c84544 13679 active = pll->funcs.get_hw_state(dev_priv, pll, &dpll_hw_state);
5358901f 13680
e7c84544
ML
13681 if (!(pll->flags & INTEL_DPLL_ALWAYS_ON)) {
13682 I915_STATE_WARN(!pll->on && pll->active_mask,
13683 "pll in active use but not on in sw tracking\n");
13684 I915_STATE_WARN(pll->on && !pll->active_mask,
13685 "pll is on but not used by any active crtc\n");
13686 I915_STATE_WARN(pll->on != active,
13687 "pll on state mismatch (expected %i, found %i)\n",
13688 pll->on, active);
13689 }
5358901f 13690
e7c84544 13691 if (!crtc) {
2dd66ebd 13692 I915_STATE_WARN(pll->active_mask & ~pll->config.crtc_mask,
e7c84544
ML
13693 "more active pll users than references: %x vs %x\n",
13694 pll->active_mask, pll->config.crtc_mask);
5358901f 13695
e7c84544
ML
13696 return;
13697 }
13698
13699 crtc_mask = 1 << drm_crtc_index(crtc);
13700
13701 if (new_state->active)
13702 I915_STATE_WARN(!(pll->active_mask & crtc_mask),
13703 "pll active mismatch (expected pipe %c in active mask 0x%02x)\n",
13704 pipe_name(drm_crtc_index(crtc)), pll->active_mask);
13705 else
13706 I915_STATE_WARN(pll->active_mask & crtc_mask,
13707 "pll active mismatch (didn't expect pipe %c in active mask 0x%02x)\n",
13708 pipe_name(drm_crtc_index(crtc)), pll->active_mask);
2dd66ebd 13709
e7c84544
ML
13710 I915_STATE_WARN(!(pll->config.crtc_mask & crtc_mask),
13711 "pll enabled crtcs mismatch (expected 0x%x in 0x%02x)\n",
13712 crtc_mask, pll->config.crtc_mask);
66e985c0 13713
e7c84544
ML
13714 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state,
13715 &dpll_hw_state,
13716 sizeof(dpll_hw_state)),
13717 "pll hw state mismatch\n");
13718}
13719
13720static void
c0ead703
ML
13721verify_shared_dpll_state(struct drm_device *dev, struct drm_crtc *crtc,
13722 struct drm_crtc_state *old_crtc_state,
13723 struct drm_crtc_state *new_crtc_state)
e7c84544 13724{
fac5e23e 13725 struct drm_i915_private *dev_priv = to_i915(dev);
e7c84544
ML
13726 struct intel_crtc_state *old_state = to_intel_crtc_state(old_crtc_state);
13727 struct intel_crtc_state *new_state = to_intel_crtc_state(new_crtc_state);
13728
13729 if (new_state->shared_dpll)
c0ead703 13730 verify_single_dpll_state(dev_priv, new_state->shared_dpll, crtc, new_crtc_state);
e7c84544
ML
13731
13732 if (old_state->shared_dpll &&
13733 old_state->shared_dpll != new_state->shared_dpll) {
13734 unsigned crtc_mask = 1 << drm_crtc_index(crtc);
13735 struct intel_shared_dpll *pll = old_state->shared_dpll;
13736
13737 I915_STATE_WARN(pll->active_mask & crtc_mask,
13738 "pll active mismatch (didn't expect pipe %c in active mask)\n",
13739 pipe_name(drm_crtc_index(crtc)));
13740 I915_STATE_WARN(pll->config.crtc_mask & crtc_mask,
13741 "pll enabled crtcs mismatch (found %x in enabled mask)\n",
13742 pipe_name(drm_crtc_index(crtc)));
5358901f 13743 }
8af6cf88
DV
13744}
13745
e7c84544 13746static void
c0ead703 13747intel_modeset_verify_crtc(struct drm_crtc *crtc,
677100ce
ML
13748 struct drm_atomic_state *state,
13749 struct drm_crtc_state *old_state,
13750 struct drm_crtc_state *new_state)
e7c84544 13751{
5a21b665
DV
13752 if (!needs_modeset(new_state) &&
13753 !to_intel_crtc_state(new_state)->update_pipe)
13754 return;
13755
c0ead703 13756 verify_wm_state(crtc, new_state);
677100ce 13757 verify_connector_state(crtc->dev, state, crtc);
c0ead703
ML
13758 verify_crtc_state(crtc, old_state, new_state);
13759 verify_shared_dpll_state(crtc->dev, crtc, old_state, new_state);
e7c84544
ML
13760}
13761
13762static void
c0ead703 13763verify_disabled_dpll_state(struct drm_device *dev)
e7c84544 13764{
fac5e23e 13765 struct drm_i915_private *dev_priv = to_i915(dev);
e7c84544
ML
13766 int i;
13767
13768 for (i = 0; i < dev_priv->num_shared_dpll; i++)
c0ead703 13769 verify_single_dpll_state(dev_priv, &dev_priv->shared_dplls[i], NULL, NULL);
e7c84544
ML
13770}
13771
13772static void
677100ce
ML
13773intel_modeset_verify_disabled(struct drm_device *dev,
13774 struct drm_atomic_state *state)
e7c84544 13775{
c0ead703 13776 verify_encoder_state(dev);
677100ce 13777 verify_connector_state(dev, state, NULL);
c0ead703 13778 verify_disabled_dpll_state(dev);
e7c84544
ML
13779}
13780
80715b2f
VS
13781static void update_scanline_offset(struct intel_crtc *crtc)
13782{
4f8036a2 13783 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
80715b2f
VS
13784
13785 /*
13786 * The scanline counter increments at the leading edge of hsync.
13787 *
13788 * On most platforms it starts counting from vtotal-1 on the
13789 * first active line. That means the scanline counter value is
13790 * always one less than what we would expect. Ie. just after
13791 * start of vblank, which also occurs at start of hsync (on the
13792 * last active line), the scanline counter will read vblank_start-1.
13793 *
13794 * On gen2 the scanline counter starts counting from 1 instead
13795 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
13796 * to keep the value positive), instead of adding one.
13797 *
13798 * On HSW+ the behaviour of the scanline counter depends on the output
13799 * type. For DP ports it behaves like most other platforms, but on HDMI
13800 * there's an extra 1 line difference. So we need to add two instead of
13801 * one to the value.
13802 */
4f8036a2 13803 if (IS_GEN2(dev_priv)) {
124abe07 13804 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
80715b2f
VS
13805 int vtotal;
13806
124abe07
VS
13807 vtotal = adjusted_mode->crtc_vtotal;
13808 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
80715b2f
VS
13809 vtotal /= 2;
13810
13811 crtc->scanline_offset = vtotal - 1;
4f8036a2 13812 } else if (HAS_DDI(dev_priv) &&
2d84d2b3 13813 intel_crtc_has_type(crtc->config, INTEL_OUTPUT_HDMI)) {
80715b2f
VS
13814 crtc->scanline_offset = 2;
13815 } else
13816 crtc->scanline_offset = 1;
13817}
13818
ad421372 13819static void intel_modeset_clear_plls(struct drm_atomic_state *state)
ed6739ef 13820{
225da59b 13821 struct drm_device *dev = state->dev;
ed6739ef 13822 struct drm_i915_private *dev_priv = to_i915(dev);
ad421372 13823 struct intel_shared_dpll_config *shared_dpll = NULL;
0a9ab303
ACO
13824 struct drm_crtc *crtc;
13825 struct drm_crtc_state *crtc_state;
0a9ab303 13826 int i;
ed6739ef
ACO
13827
13828 if (!dev_priv->display.crtc_compute_clock)
ad421372 13829 return;
ed6739ef 13830
0a9ab303 13831 for_each_crtc_in_state(state, crtc, crtc_state, i) {
fb1a38a9 13832 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8106ddbd
ACO
13833 struct intel_shared_dpll *old_dpll =
13834 to_intel_crtc_state(crtc->state)->shared_dpll;
0a9ab303 13835
fb1a38a9 13836 if (!needs_modeset(crtc_state))
225da59b
ACO
13837 continue;
13838
8106ddbd 13839 to_intel_crtc_state(crtc_state)->shared_dpll = NULL;
fb1a38a9 13840
8106ddbd 13841 if (!old_dpll)
fb1a38a9 13842 continue;
0a9ab303 13843
ad421372
ML
13844 if (!shared_dpll)
13845 shared_dpll = intel_atomic_get_shared_dpll_state(state);
ed6739ef 13846
8106ddbd 13847 intel_shared_dpll_config_put(shared_dpll, old_dpll, intel_crtc);
ad421372 13848 }
ed6739ef
ACO
13849}
13850
99d736a2
ML
13851/*
13852 * This implements the workaround described in the "notes" section of the mode
13853 * set sequence documentation. When going from no pipes or single pipe to
13854 * multiple pipes, and planes are enabled after the pipe, we need to wait at
13855 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
13856 */
13857static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state)
13858{
13859 struct drm_crtc_state *crtc_state;
13860 struct intel_crtc *intel_crtc;
13861 struct drm_crtc *crtc;
13862 struct intel_crtc_state *first_crtc_state = NULL;
13863 struct intel_crtc_state *other_crtc_state = NULL;
13864 enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE;
13865 int i;
13866
13867 /* look at all crtc's that are going to be enabled in during modeset */
13868 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13869 intel_crtc = to_intel_crtc(crtc);
13870
13871 if (!crtc_state->active || !needs_modeset(crtc_state))
13872 continue;
13873
13874 if (first_crtc_state) {
13875 other_crtc_state = to_intel_crtc_state(crtc_state);
13876 break;
13877 } else {
13878 first_crtc_state = to_intel_crtc_state(crtc_state);
13879 first_pipe = intel_crtc->pipe;
13880 }
13881 }
13882
13883 /* No workaround needed? */
13884 if (!first_crtc_state)
13885 return 0;
13886
13887 /* w/a possibly needed, check how many crtc's are already enabled. */
13888 for_each_intel_crtc(state->dev, intel_crtc) {
13889 struct intel_crtc_state *pipe_config;
13890
13891 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
13892 if (IS_ERR(pipe_config))
13893 return PTR_ERR(pipe_config);
13894
13895 pipe_config->hsw_workaround_pipe = INVALID_PIPE;
13896
13897 if (!pipe_config->base.active ||
13898 needs_modeset(&pipe_config->base))
13899 continue;
13900
13901 /* 2 or more enabled crtcs means no need for w/a */
13902 if (enabled_pipe != INVALID_PIPE)
13903 return 0;
13904
13905 enabled_pipe = intel_crtc->pipe;
13906 }
13907
13908 if (enabled_pipe != INVALID_PIPE)
13909 first_crtc_state->hsw_workaround_pipe = enabled_pipe;
13910 else if (other_crtc_state)
13911 other_crtc_state->hsw_workaround_pipe = first_pipe;
13912
13913 return 0;
13914}
13915
27c329ed
ML
13916static int intel_modeset_all_pipes(struct drm_atomic_state *state)
13917{
13918 struct drm_crtc *crtc;
13919 struct drm_crtc_state *crtc_state;
13920 int ret = 0;
13921
13922 /* add all active pipes to the state */
13923 for_each_crtc(state->dev, crtc) {
13924 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13925 if (IS_ERR(crtc_state))
13926 return PTR_ERR(crtc_state);
13927
13928 if (!crtc_state->active || needs_modeset(crtc_state))
13929 continue;
13930
13931 crtc_state->mode_changed = true;
13932
13933 ret = drm_atomic_add_affected_connectors(state, crtc);
13934 if (ret)
13935 break;
13936
13937 ret = drm_atomic_add_affected_planes(state, crtc);
13938 if (ret)
13939 break;
13940 }
13941
13942 return ret;
13943}
13944
c347a676 13945static int intel_modeset_checks(struct drm_atomic_state *state)
054518dd 13946{
565602d7 13947 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fac5e23e 13948 struct drm_i915_private *dev_priv = to_i915(state->dev);
565602d7
ML
13949 struct drm_crtc *crtc;
13950 struct drm_crtc_state *crtc_state;
13951 int ret = 0, i;
054518dd 13952
b359283a
ML
13953 if (!check_digital_port_conflicts(state)) {
13954 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
13955 return -EINVAL;
13956 }
13957
565602d7
ML
13958 intel_state->modeset = true;
13959 intel_state->active_crtcs = dev_priv->active_crtcs;
13960
13961 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13962 if (crtc_state->active)
13963 intel_state->active_crtcs |= 1 << i;
13964 else
13965 intel_state->active_crtcs &= ~(1 << i);
8b4a7d05
MR
13966
13967 if (crtc_state->active != crtc->state->active)
13968 intel_state->active_pipe_changes |= drm_crtc_mask(crtc);
565602d7
ML
13969 }
13970
054518dd
ACO
13971 /*
13972 * See if the config requires any additional preparation, e.g.
13973 * to adjust global state with pipes off. We need to do this
13974 * here so we can get the modeset_pipe updated config for the new
13975 * mode set on this crtc. For other crtcs we need to use the
13976 * adjusted_mode bits in the crtc directly.
13977 */
27c329ed 13978 if (dev_priv->display.modeset_calc_cdclk) {
c89e39f3 13979 if (!intel_state->cdclk_pll_vco)
63911d72 13980 intel_state->cdclk_pll_vco = dev_priv->cdclk_pll.vco;
b2045352
VS
13981 if (!intel_state->cdclk_pll_vco)
13982 intel_state->cdclk_pll_vco = dev_priv->skl_preferred_vco_freq;
c89e39f3 13983
27c329ed 13984 ret = dev_priv->display.modeset_calc_cdclk(state);
c89e39f3
CT
13985 if (ret < 0)
13986 return ret;
27c329ed 13987
c89e39f3 13988 if (intel_state->dev_cdclk != dev_priv->cdclk_freq ||
63911d72 13989 intel_state->cdclk_pll_vco != dev_priv->cdclk_pll.vco)
27c329ed
ML
13990 ret = intel_modeset_all_pipes(state);
13991
13992 if (ret < 0)
054518dd 13993 return ret;
e8788cbc
ML
13994
13995 DRM_DEBUG_KMS("New cdclk calculated to be atomic %u, actual %u\n",
13996 intel_state->cdclk, intel_state->dev_cdclk);
27c329ed 13997 } else
1a617b77 13998 to_intel_atomic_state(state)->cdclk = dev_priv->atomic_cdclk_freq;
054518dd 13999
ad421372 14000 intel_modeset_clear_plls(state);
054518dd 14001
565602d7 14002 if (IS_HASWELL(dev_priv))
ad421372 14003 return haswell_mode_set_planes_workaround(state);
99d736a2 14004
ad421372 14005 return 0;
c347a676
ACO
14006}
14007
aa363136
MR
14008/*
14009 * Handle calculation of various watermark data at the end of the atomic check
14010 * phase. The code here should be run after the per-crtc and per-plane 'check'
14011 * handlers to ensure that all derived state has been updated.
14012 */
55994c2c 14013static int calc_watermark_data(struct drm_atomic_state *state)
aa363136
MR
14014{
14015 struct drm_device *dev = state->dev;
98d39494 14016 struct drm_i915_private *dev_priv = to_i915(dev);
98d39494
MR
14017
14018 /* Is there platform-specific watermark information to calculate? */
14019 if (dev_priv->display.compute_global_watermarks)
55994c2c
MR
14020 return dev_priv->display.compute_global_watermarks(state);
14021
14022 return 0;
aa363136
MR
14023}
14024
74c090b1
ML
14025/**
14026 * intel_atomic_check - validate state object
14027 * @dev: drm device
14028 * @state: state to validate
14029 */
14030static int intel_atomic_check(struct drm_device *dev,
14031 struct drm_atomic_state *state)
c347a676 14032{
dd8b3bdb 14033 struct drm_i915_private *dev_priv = to_i915(dev);
aa363136 14034 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
c347a676
ACO
14035 struct drm_crtc *crtc;
14036 struct drm_crtc_state *crtc_state;
14037 int ret, i;
61333b60 14038 bool any_ms = false;
c347a676 14039
74c090b1 14040 ret = drm_atomic_helper_check_modeset(dev, state);
054518dd
ACO
14041 if (ret)
14042 return ret;
14043
c347a676 14044 for_each_crtc_in_state(state, crtc, crtc_state, i) {
cfb23ed6
ML
14045 struct intel_crtc_state *pipe_config =
14046 to_intel_crtc_state(crtc_state);
1ed51de9
DV
14047
14048 /* Catch I915_MODE_FLAG_INHERITED */
14049 if (crtc_state->mode.private_flags != crtc->state->mode.private_flags)
14050 crtc_state->mode_changed = true;
cfb23ed6 14051
af4a879e 14052 if (!needs_modeset(crtc_state))
c347a676
ACO
14053 continue;
14054
af4a879e
DV
14055 if (!crtc_state->enable) {
14056 any_ms = true;
cfb23ed6 14057 continue;
af4a879e 14058 }
cfb23ed6 14059
26495481
DV
14060 /* FIXME: For only active_changed we shouldn't need to do any
14061 * state recomputation at all. */
14062
1ed51de9
DV
14063 ret = drm_atomic_add_affected_connectors(state, crtc);
14064 if (ret)
14065 return ret;
b359283a 14066
cfb23ed6 14067 ret = intel_modeset_pipe_config(crtc, pipe_config);
25aa1c39
ML
14068 if (ret) {
14069 intel_dump_pipe_config(to_intel_crtc(crtc),
14070 pipe_config, "[failed]");
c347a676 14071 return ret;
25aa1c39 14072 }
c347a676 14073
73831236 14074 if (i915.fastboot &&
6315b5d3 14075 intel_pipe_config_compare(dev_priv,
cfb23ed6 14076 to_intel_crtc_state(crtc->state),
1ed51de9 14077 pipe_config, true)) {
26495481 14078 crtc_state->mode_changed = false;
bfd16b2a 14079 to_intel_crtc_state(crtc_state)->update_pipe = true;
26495481
DV
14080 }
14081
af4a879e 14082 if (needs_modeset(crtc_state))
26495481 14083 any_ms = true;
cfb23ed6 14084
af4a879e
DV
14085 ret = drm_atomic_add_affected_planes(state, crtc);
14086 if (ret)
14087 return ret;
61333b60 14088
26495481
DV
14089 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
14090 needs_modeset(crtc_state) ?
14091 "[modeset]" : "[fastset]");
c347a676
ACO
14092 }
14093
61333b60
ML
14094 if (any_ms) {
14095 ret = intel_modeset_checks(state);
14096
14097 if (ret)
14098 return ret;
27c329ed 14099 } else
dd8b3bdb 14100 intel_state->cdclk = dev_priv->cdclk_freq;
76305b1a 14101
dd8b3bdb 14102 ret = drm_atomic_helper_check_planes(dev, state);
aa363136
MR
14103 if (ret)
14104 return ret;
14105
f51be2e0 14106 intel_fbc_choose_crtc(dev_priv, state);
55994c2c 14107 return calc_watermark_data(state);
054518dd
ACO
14108}
14109
5008e874 14110static int intel_atomic_prepare_commit(struct drm_device *dev,
d07f0e59 14111 struct drm_atomic_state *state)
5008e874 14112{
fac5e23e 14113 struct drm_i915_private *dev_priv = to_i915(dev);
5008e874
ML
14114 struct drm_crtc_state *crtc_state;
14115 struct drm_crtc *crtc;
14116 int i, ret;
14117
5a21b665
DV
14118 for_each_crtc_in_state(state, crtc, crtc_state, i) {
14119 if (state->legacy_cursor_update)
a6747b73
ML
14120 continue;
14121
5a21b665
DV
14122 ret = intel_crtc_wait_for_pending_flips(crtc);
14123 if (ret)
14124 return ret;
5008e874 14125
5a21b665
DV
14126 if (atomic_read(&to_intel_crtc(crtc)->unpin_work_count) >= 2)
14127 flush_workqueue(dev_priv->wq);
d55dbd06
ML
14128 }
14129
f935675f
ML
14130 ret = mutex_lock_interruptible(&dev->struct_mutex);
14131 if (ret)
14132 return ret;
14133
5008e874 14134 ret = drm_atomic_helper_prepare_planes(dev, state);
f7e5838b 14135 mutex_unlock(&dev->struct_mutex);
7580d774 14136
5008e874
ML
14137 return ret;
14138}
14139
a2991414
ML
14140u32 intel_crtc_get_vblank_counter(struct intel_crtc *crtc)
14141{
14142 struct drm_device *dev = crtc->base.dev;
14143
14144 if (!dev->max_vblank_count)
14145 return drm_accurate_vblank_count(&crtc->base);
14146
14147 return dev->driver->get_vblank_counter(dev, crtc->pipe);
14148}
14149
5a21b665
DV
14150static void intel_atomic_wait_for_vblanks(struct drm_device *dev,
14151 struct drm_i915_private *dev_priv,
14152 unsigned crtc_mask)
e8861675 14153{
5a21b665
DV
14154 unsigned last_vblank_count[I915_MAX_PIPES];
14155 enum pipe pipe;
14156 int ret;
e8861675 14157
5a21b665
DV
14158 if (!crtc_mask)
14159 return;
e8861675 14160
5a21b665 14161 for_each_pipe(dev_priv, pipe) {
98187836
VS
14162 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv,
14163 pipe);
e8861675 14164
5a21b665 14165 if (!((1 << pipe) & crtc_mask))
e8861675
ML
14166 continue;
14167
e2af48c6 14168 ret = drm_crtc_vblank_get(&crtc->base);
5a21b665
DV
14169 if (WARN_ON(ret != 0)) {
14170 crtc_mask &= ~(1 << pipe);
14171 continue;
e8861675
ML
14172 }
14173
e2af48c6 14174 last_vblank_count[pipe] = drm_crtc_vblank_count(&crtc->base);
e8861675
ML
14175 }
14176
5a21b665 14177 for_each_pipe(dev_priv, pipe) {
98187836
VS
14178 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv,
14179 pipe);
5a21b665 14180 long lret;
e8861675 14181
5a21b665
DV
14182 if (!((1 << pipe) & crtc_mask))
14183 continue;
d55dbd06 14184
5a21b665
DV
14185 lret = wait_event_timeout(dev->vblank[pipe].queue,
14186 last_vblank_count[pipe] !=
e2af48c6 14187 drm_crtc_vblank_count(&crtc->base),
5a21b665 14188 msecs_to_jiffies(50));
d55dbd06 14189
5a21b665 14190 WARN(!lret, "pipe %c vblank wait timed out\n", pipe_name(pipe));
d55dbd06 14191
e2af48c6 14192 drm_crtc_vblank_put(&crtc->base);
d55dbd06
ML
14193 }
14194}
14195
5a21b665 14196static bool needs_vblank_wait(struct intel_crtc_state *crtc_state)
a6747b73 14197{
5a21b665
DV
14198 /* fb updated, need to unpin old fb */
14199 if (crtc_state->fb_changed)
14200 return true;
a6747b73 14201
5a21b665
DV
14202 /* wm changes, need vblank before final wm's */
14203 if (crtc_state->update_wm_post)
14204 return true;
a6747b73 14205
5a21b665
DV
14206 /*
14207 * cxsr is re-enabled after vblank.
14208 * This is already handled by crtc_state->update_wm_post,
14209 * but added for clarity.
14210 */
14211 if (crtc_state->disable_cxsr)
14212 return true;
a6747b73 14213
5a21b665 14214 return false;
e8861675
ML
14215}
14216
896e5bb0
L
14217static void intel_update_crtc(struct drm_crtc *crtc,
14218 struct drm_atomic_state *state,
14219 struct drm_crtc_state *old_crtc_state,
14220 unsigned int *crtc_vblank_mask)
14221{
14222 struct drm_device *dev = crtc->dev;
14223 struct drm_i915_private *dev_priv = to_i915(dev);
14224 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14225 struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc->state);
14226 bool modeset = needs_modeset(crtc->state);
14227
14228 if (modeset) {
14229 update_scanline_offset(intel_crtc);
14230 dev_priv->display.crtc_enable(pipe_config, state);
14231 } else {
14232 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state));
14233 }
14234
14235 if (drm_atomic_get_existing_plane_state(state, crtc->primary)) {
14236 intel_fbc_enable(
14237 intel_crtc, pipe_config,
14238 to_intel_plane_state(crtc->primary->state));
14239 }
14240
14241 drm_atomic_helper_commit_planes_on_crtc(old_crtc_state);
14242
14243 if (needs_vblank_wait(pipe_config))
14244 *crtc_vblank_mask |= drm_crtc_mask(crtc);
14245}
14246
14247static void intel_update_crtcs(struct drm_atomic_state *state,
14248 unsigned int *crtc_vblank_mask)
14249{
14250 struct drm_crtc *crtc;
14251 struct drm_crtc_state *old_crtc_state;
14252 int i;
14253
14254 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14255 if (!crtc->state->active)
14256 continue;
14257
14258 intel_update_crtc(crtc, state, old_crtc_state,
14259 crtc_vblank_mask);
14260 }
14261}
14262
27082493
L
14263static void skl_update_crtcs(struct drm_atomic_state *state,
14264 unsigned int *crtc_vblank_mask)
14265{
0f0f74bc 14266 struct drm_i915_private *dev_priv = to_i915(state->dev);
27082493
L
14267 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
14268 struct drm_crtc *crtc;
ce0ba283 14269 struct intel_crtc *intel_crtc;
27082493 14270 struct drm_crtc_state *old_crtc_state;
ce0ba283 14271 struct intel_crtc_state *cstate;
27082493
L
14272 unsigned int updated = 0;
14273 bool progress;
14274 enum pipe pipe;
5eff503b
ML
14275 int i;
14276
14277 const struct skl_ddb_entry *entries[I915_MAX_PIPES] = {};
14278
14279 for_each_crtc_in_state(state, crtc, old_crtc_state, i)
14280 /* ignore allocations for crtc's that have been turned off. */
14281 if (crtc->state->active)
14282 entries[i] = &to_intel_crtc_state(old_crtc_state)->wm.skl.ddb;
27082493
L
14283
14284 /*
14285 * Whenever the number of active pipes changes, we need to make sure we
14286 * update the pipes in the right order so that their ddb allocations
14287 * never overlap with eachother inbetween CRTC updates. Otherwise we'll
14288 * cause pipe underruns and other bad stuff.
14289 */
14290 do {
27082493
L
14291 progress = false;
14292
14293 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14294 bool vbl_wait = false;
14295 unsigned int cmask = drm_crtc_mask(crtc);
ce0ba283
L
14296
14297 intel_crtc = to_intel_crtc(crtc);
14298 cstate = to_intel_crtc_state(crtc->state);
14299 pipe = intel_crtc->pipe;
27082493 14300
5eff503b 14301 if (updated & cmask || !cstate->base.active)
27082493 14302 continue;
5eff503b
ML
14303
14304 if (skl_ddb_allocation_overlaps(entries, &cstate->wm.skl.ddb, i))
27082493
L
14305 continue;
14306
14307 updated |= cmask;
5eff503b 14308 entries[i] = &cstate->wm.skl.ddb;
27082493
L
14309
14310 /*
14311 * If this is an already active pipe, it's DDB changed,
14312 * and this isn't the last pipe that needs updating
14313 * then we need to wait for a vblank to pass for the
14314 * new ddb allocation to take effect.
14315 */
ce0ba283 14316 if (!skl_ddb_entry_equal(&cstate->wm.skl.ddb,
512b5527 14317 &to_intel_crtc_state(old_crtc_state)->wm.skl.ddb) &&
27082493
L
14318 !crtc->state->active_changed &&
14319 intel_state->wm_results.dirty_pipes != updated)
14320 vbl_wait = true;
14321
14322 intel_update_crtc(crtc, state, old_crtc_state,
14323 crtc_vblank_mask);
14324
14325 if (vbl_wait)
0f0f74bc 14326 intel_wait_for_vblank(dev_priv, pipe);
27082493
L
14327
14328 progress = true;
14329 }
14330 } while (progress);
14331}
14332
94f05024 14333static void intel_atomic_commit_tail(struct drm_atomic_state *state)
a6778b3c 14334{
94f05024 14335 struct drm_device *dev = state->dev;
565602d7 14336 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fac5e23e 14337 struct drm_i915_private *dev_priv = to_i915(dev);
29ceb0e6 14338 struct drm_crtc_state *old_crtc_state;
7580d774 14339 struct drm_crtc *crtc;
5a21b665 14340 struct intel_crtc_state *intel_cstate;
5a21b665
DV
14341 bool hw_check = intel_state->modeset;
14342 unsigned long put_domains[I915_MAX_PIPES] = {};
14343 unsigned crtc_vblank_mask = 0;
e95433c7 14344 int i;
a6778b3c 14345
ea0000f0
DV
14346 drm_atomic_helper_wait_for_dependencies(state);
14347
c3b32658 14348 if (intel_state->modeset)
5a21b665 14349 intel_display_power_get(dev_priv, POWER_DOMAIN_MODESET);
565602d7 14350
29ceb0e6 14351 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
a539205a
ML
14352 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14353
5a21b665
DV
14354 if (needs_modeset(crtc->state) ||
14355 to_intel_crtc_state(crtc->state)->update_pipe) {
14356 hw_check = true;
14357
14358 put_domains[to_intel_crtc(crtc)->pipe] =
14359 modeset_get_crtc_power_domains(crtc,
14360 to_intel_crtc_state(crtc->state));
14361 }
14362
61333b60
ML
14363 if (!needs_modeset(crtc->state))
14364 continue;
14365
29ceb0e6 14366 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state));
460da916 14367
29ceb0e6
VS
14368 if (old_crtc_state->active) {
14369 intel_crtc_disable_planes(crtc, old_crtc_state->plane_mask);
4a806558 14370 dev_priv->display.crtc_disable(to_intel_crtc_state(old_crtc_state), state);
eddfcbcd 14371 intel_crtc->active = false;
58f9c0bc 14372 intel_fbc_disable(intel_crtc);
eddfcbcd 14373 intel_disable_shared_dpll(intel_crtc);
9bbc8258
VS
14374
14375 /*
14376 * Underruns don't always raise
14377 * interrupts, so check manually.
14378 */
14379 intel_check_cpu_fifo_underruns(dev_priv);
14380 intel_check_pch_fifo_underruns(dev_priv);
b9001114 14381
e62929b3
ML
14382 if (!crtc->state->active) {
14383 /*
14384 * Make sure we don't call initial_watermarks
14385 * for ILK-style watermark updates.
14386 */
14387 if (dev_priv->display.atomic_update_watermarks)
14388 dev_priv->display.initial_watermarks(intel_state,
14389 to_intel_crtc_state(crtc->state));
14390 else
14391 intel_update_watermarks(intel_crtc);
14392 }
a539205a 14393 }
b8cecdf5 14394 }
7758a113 14395
ea9d758d
DV
14396 /* Only after disabling all output pipelines that will be changed can we
14397 * update the the output configuration. */
4740b0f2 14398 intel_modeset_update_crtc_state(state);
f6e5b160 14399
565602d7 14400 if (intel_state->modeset) {
4740b0f2 14401 drm_atomic_helper_update_legacy_modeset_state(state->dev, state);
33c8df89
ML
14402
14403 if (dev_priv->display.modeset_commit_cdclk &&
c89e39f3 14404 (intel_state->dev_cdclk != dev_priv->cdclk_freq ||
63911d72 14405 intel_state->cdclk_pll_vco != dev_priv->cdclk_pll.vco))
33c8df89 14406 dev_priv->display.modeset_commit_cdclk(state);
f6d1973d 14407
656d1b89
L
14408 /*
14409 * SKL workaround: bspec recommends we disable the SAGV when we
14410 * have more then one pipe enabled
14411 */
56feca91 14412 if (!intel_can_enable_sagv(state))
16dcdc4e 14413 intel_disable_sagv(dev_priv);
656d1b89 14414
677100ce 14415 intel_modeset_verify_disabled(dev, state);
4740b0f2 14416 }
47fab737 14417
896e5bb0 14418 /* Complete the events for pipes that have now been disabled */
29ceb0e6 14419 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
f6ac4b2a 14420 bool modeset = needs_modeset(crtc->state);
80715b2f 14421
1f7528c4
DV
14422 /* Complete events for now disable pipes here. */
14423 if (modeset && !crtc->state->active && crtc->state->event) {
14424 spin_lock_irq(&dev->event_lock);
14425 drm_crtc_send_vblank_event(crtc, crtc->state->event);
14426 spin_unlock_irq(&dev->event_lock);
14427
14428 crtc->state->event = NULL;
14429 }
177246a8
MR
14430 }
14431
896e5bb0
L
14432 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
14433 dev_priv->display.update_crtcs(state, &crtc_vblank_mask);
14434
94f05024
DV
14435 /* FIXME: We should call drm_atomic_helper_commit_hw_done() here
14436 * already, but still need the state for the delayed optimization. To
14437 * fix this:
14438 * - wrap the optimization/post_plane_update stuff into a per-crtc work.
14439 * - schedule that vblank worker _before_ calling hw_done
14440 * - at the start of commit_tail, cancel it _synchrously
14441 * - switch over to the vblank wait helper in the core after that since
14442 * we don't need out special handling any more.
14443 */
5a21b665
DV
14444 if (!state->legacy_cursor_update)
14445 intel_atomic_wait_for_vblanks(dev, dev_priv, crtc_vblank_mask);
14446
14447 /*
14448 * Now that the vblank has passed, we can go ahead and program the
14449 * optimal watermarks on platforms that need two-step watermark
14450 * programming.
14451 *
14452 * TODO: Move this (and other cleanup) to an async worker eventually.
14453 */
14454 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14455 intel_cstate = to_intel_crtc_state(crtc->state);
14456
14457 if (dev_priv->display.optimize_watermarks)
ccf010fb
ML
14458 dev_priv->display.optimize_watermarks(intel_state,
14459 intel_cstate);
5a21b665
DV
14460 }
14461
14462 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
14463 intel_post_plane_update(to_intel_crtc_state(old_crtc_state));
14464
14465 if (put_domains[i])
14466 modeset_put_power_domains(dev_priv, put_domains[i]);
14467
677100ce 14468 intel_modeset_verify_crtc(crtc, state, old_crtc_state, crtc->state);
5a21b665
DV
14469 }
14470
56feca91 14471 if (intel_state->modeset && intel_can_enable_sagv(state))
16dcdc4e 14472 intel_enable_sagv(dev_priv);
656d1b89 14473
94f05024
DV
14474 drm_atomic_helper_commit_hw_done(state);
14475
5a21b665
DV
14476 if (intel_state->modeset)
14477 intel_display_power_put(dev_priv, POWER_DOMAIN_MODESET);
14478
14479 mutex_lock(&dev->struct_mutex);
14480 drm_atomic_helper_cleanup_planes(dev, state);
14481 mutex_unlock(&dev->struct_mutex);
14482
ea0000f0
DV
14483 drm_atomic_helper_commit_cleanup_done(state);
14484
0853695c 14485 drm_atomic_state_put(state);
f30da187 14486
75714940
MK
14487 /* As one of the primary mmio accessors, KMS has a high likelihood
14488 * of triggering bugs in unclaimed access. After we finish
14489 * modesetting, see if an error has been flagged, and if so
14490 * enable debugging for the next modeset - and hope we catch
14491 * the culprit.
14492 *
14493 * XXX note that we assume display power is on at this point.
14494 * This might hold true now but we need to add pm helper to check
14495 * unclaimed only when the hardware is on, as atomic commits
14496 * can happen also when the device is completely off.
14497 */
14498 intel_uncore_arm_unclaimed_mmio_detection(dev_priv);
94f05024
DV
14499}
14500
14501static void intel_atomic_commit_work(struct work_struct *work)
14502{
c004a90b
CW
14503 struct drm_atomic_state *state =
14504 container_of(work, struct drm_atomic_state, commit_work);
14505
94f05024
DV
14506 intel_atomic_commit_tail(state);
14507}
14508
c004a90b
CW
14509static int __i915_sw_fence_call
14510intel_atomic_commit_ready(struct i915_sw_fence *fence,
14511 enum i915_sw_fence_notify notify)
14512{
14513 struct intel_atomic_state *state =
14514 container_of(fence, struct intel_atomic_state, commit_ready);
14515
14516 switch (notify) {
14517 case FENCE_COMPLETE:
14518 if (state->base.commit_work.func)
14519 queue_work(system_unbound_wq, &state->base.commit_work);
14520 break;
14521
14522 case FENCE_FREE:
14523 drm_atomic_state_put(&state->base);
14524 break;
14525 }
14526
14527 return NOTIFY_DONE;
14528}
14529
6c9c1b38
DV
14530static void intel_atomic_track_fbs(struct drm_atomic_state *state)
14531{
14532 struct drm_plane_state *old_plane_state;
14533 struct drm_plane *plane;
6c9c1b38
DV
14534 int i;
14535
faf5bf0a
CW
14536 for_each_plane_in_state(state, plane, old_plane_state, i)
14537 i915_gem_track_fb(intel_fb_obj(old_plane_state->fb),
14538 intel_fb_obj(plane->state->fb),
14539 to_intel_plane(plane)->frontbuffer_bit);
6c9c1b38
DV
14540}
14541
94f05024
DV
14542/**
14543 * intel_atomic_commit - commit validated state object
14544 * @dev: DRM device
14545 * @state: the top-level driver state object
14546 * @nonblock: nonblocking commit
14547 *
14548 * This function commits a top-level state object that has been validated
14549 * with drm_atomic_helper_check().
14550 *
14551 * FIXME: Atomic modeset support for i915 is not yet complete. At the moment
14552 * nonblocking commits are only safe for pure plane updates. Everything else
14553 * should work though.
14554 *
14555 * RETURNS
14556 * Zero for success or -errno.
14557 */
14558static int intel_atomic_commit(struct drm_device *dev,
14559 struct drm_atomic_state *state,
14560 bool nonblock)
14561{
14562 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fac5e23e 14563 struct drm_i915_private *dev_priv = to_i915(dev);
94f05024
DV
14564 int ret = 0;
14565
14566 if (intel_state->modeset && nonblock) {
14567 DRM_DEBUG_KMS("nonblocking commit for modeset not yet implemented.\n");
14568 return -EINVAL;
14569 }
14570
14571 ret = drm_atomic_helper_setup_commit(state, nonblock);
14572 if (ret)
14573 return ret;
14574
c004a90b
CW
14575 drm_atomic_state_get(state);
14576 i915_sw_fence_init(&intel_state->commit_ready,
14577 intel_atomic_commit_ready);
94f05024 14578
d07f0e59 14579 ret = intel_atomic_prepare_commit(dev, state);
94f05024
DV
14580 if (ret) {
14581 DRM_DEBUG_ATOMIC("Preparing state failed with %i\n", ret);
c004a90b 14582 i915_sw_fence_commit(&intel_state->commit_ready);
94f05024
DV
14583 return ret;
14584 }
14585
14586 drm_atomic_helper_swap_state(state, true);
14587 dev_priv->wm.distrust_bios_wm = false;
94f05024 14588 intel_shared_dpll_commit(state);
6c9c1b38 14589 intel_atomic_track_fbs(state);
94f05024 14590
c3b32658
ML
14591 if (intel_state->modeset) {
14592 memcpy(dev_priv->min_pixclk, intel_state->min_pixclk,
14593 sizeof(intel_state->min_pixclk));
14594 dev_priv->active_crtcs = intel_state->active_crtcs;
14595 dev_priv->atomic_cdclk_freq = intel_state->cdclk;
14596 }
14597
0853695c 14598 drm_atomic_state_get(state);
c004a90b
CW
14599 INIT_WORK(&state->commit_work,
14600 nonblock ? intel_atomic_commit_work : NULL);
14601
14602 i915_sw_fence_commit(&intel_state->commit_ready);
14603 if (!nonblock) {
14604 i915_sw_fence_wait(&intel_state->commit_ready);
94f05024 14605 intel_atomic_commit_tail(state);
c004a90b 14606 }
75714940 14607
74c090b1 14608 return 0;
7f27126e
JB
14609}
14610
c0c36b94
CW
14611void intel_crtc_restore_mode(struct drm_crtc *crtc)
14612{
83a57153
ACO
14613 struct drm_device *dev = crtc->dev;
14614 struct drm_atomic_state *state;
e694eb02 14615 struct drm_crtc_state *crtc_state;
2bfb4627 14616 int ret;
83a57153
ACO
14617
14618 state = drm_atomic_state_alloc(dev);
14619 if (!state) {
78108b7c
VS
14620 DRM_DEBUG_KMS("[CRTC:%d:%s] crtc restore failed, out of memory",
14621 crtc->base.id, crtc->name);
83a57153
ACO
14622 return;
14623 }
14624
e694eb02 14625 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
83a57153 14626
e694eb02
ML
14627retry:
14628 crtc_state = drm_atomic_get_crtc_state(state, crtc);
14629 ret = PTR_ERR_OR_ZERO(crtc_state);
14630 if (!ret) {
14631 if (!crtc_state->active)
14632 goto out;
83a57153 14633
e694eb02 14634 crtc_state->mode_changed = true;
74c090b1 14635 ret = drm_atomic_commit(state);
83a57153
ACO
14636 }
14637
e694eb02
ML
14638 if (ret == -EDEADLK) {
14639 drm_atomic_state_clear(state);
14640 drm_modeset_backoff(state->acquire_ctx);
14641 goto retry;
4ed9fb37 14642 }
4be07317 14643
e694eb02 14644out:
0853695c 14645 drm_atomic_state_put(state);
c0c36b94
CW
14646}
14647
a8784875
BP
14648/*
14649 * FIXME: Remove this once i915 is fully DRIVER_ATOMIC by calling
14650 * drm_atomic_helper_legacy_gamma_set() directly.
14651 */
14652static int intel_atomic_legacy_gamma_set(struct drm_crtc *crtc,
14653 u16 *red, u16 *green, u16 *blue,
14654 uint32_t size)
14655{
14656 struct drm_device *dev = crtc->dev;
14657 struct drm_mode_config *config = &dev->mode_config;
14658 struct drm_crtc_state *state;
14659 int ret;
14660
14661 ret = drm_atomic_helper_legacy_gamma_set(crtc, red, green, blue, size);
14662 if (ret)
14663 return ret;
14664
14665 /*
14666 * Make sure we update the legacy properties so this works when
14667 * atomic is not enabled.
14668 */
14669
14670 state = crtc->state;
14671
14672 drm_object_property_set_value(&crtc->base,
14673 config->degamma_lut_property,
14674 (state->degamma_lut) ?
14675 state->degamma_lut->base.id : 0);
14676
14677 drm_object_property_set_value(&crtc->base,
14678 config->ctm_property,
14679 (state->ctm) ?
14680 state->ctm->base.id : 0);
14681
14682 drm_object_property_set_value(&crtc->base,
14683 config->gamma_lut_property,
14684 (state->gamma_lut) ?
14685 state->gamma_lut->base.id : 0);
14686
14687 return 0;
14688}
14689
f6e5b160 14690static const struct drm_crtc_funcs intel_crtc_funcs = {
a8784875 14691 .gamma_set = intel_atomic_legacy_gamma_set,
74c090b1 14692 .set_config = drm_atomic_helper_set_config,
82cf435b 14693 .set_property = drm_atomic_helper_crtc_set_property,
f6e5b160 14694 .destroy = intel_crtc_destroy,
527b6abe 14695 .page_flip = intel_crtc_page_flip,
1356837e
MR
14696 .atomic_duplicate_state = intel_crtc_duplicate_state,
14697 .atomic_destroy_state = intel_crtc_destroy_state,
f6e5b160
CW
14698};
14699
6beb8c23
MR
14700/**
14701 * intel_prepare_plane_fb - Prepare fb for usage on plane
14702 * @plane: drm plane to prepare for
14703 * @fb: framebuffer to prepare for presentation
14704 *
14705 * Prepares a framebuffer for usage on a display plane. Generally this
14706 * involves pinning the underlying object and updating the frontbuffer tracking
14707 * bits. Some older platforms need special physical address handling for
14708 * cursor planes.
14709 *
f935675f
ML
14710 * Must be called with struct_mutex held.
14711 *
6beb8c23
MR
14712 * Returns 0 on success, negative error code on failure.
14713 */
14714int
14715intel_prepare_plane_fb(struct drm_plane *plane,
1832040d 14716 struct drm_plane_state *new_state)
465c120c 14717{
c004a90b
CW
14718 struct intel_atomic_state *intel_state =
14719 to_intel_atomic_state(new_state->state);
b7f05d4a 14720 struct drm_i915_private *dev_priv = to_i915(plane->dev);
844f9111 14721 struct drm_framebuffer *fb = new_state->fb;
6beb8c23 14722 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
1ee49399 14723 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->state->fb);
c004a90b 14724 int ret;
465c120c 14725
1ee49399 14726 if (!obj && !old_obj)
465c120c
MR
14727 return 0;
14728
5008e874
ML
14729 if (old_obj) {
14730 struct drm_crtc_state *crtc_state =
c004a90b
CW
14731 drm_atomic_get_existing_crtc_state(new_state->state,
14732 plane->state->crtc);
5008e874
ML
14733
14734 /* Big Hammer, we also need to ensure that any pending
14735 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
14736 * current scanout is retired before unpinning the old
14737 * framebuffer. Note that we rely on userspace rendering
14738 * into the buffer attached to the pipe they are waiting
14739 * on. If not, userspace generates a GPU hang with IPEHR
14740 * point to the MI_WAIT_FOR_EVENT.
14741 *
14742 * This should only fail upon a hung GPU, in which case we
14743 * can safely continue.
14744 */
c004a90b
CW
14745 if (needs_modeset(crtc_state)) {
14746 ret = i915_sw_fence_await_reservation(&intel_state->commit_ready,
14747 old_obj->resv, NULL,
14748 false, 0,
14749 GFP_KERNEL);
14750 if (ret < 0)
14751 return ret;
f4457ae7 14752 }
5008e874
ML
14753 }
14754
c004a90b
CW
14755 if (new_state->fence) { /* explicit fencing */
14756 ret = i915_sw_fence_await_dma_fence(&intel_state->commit_ready,
14757 new_state->fence,
14758 I915_FENCE_TIMEOUT,
14759 GFP_KERNEL);
14760 if (ret < 0)
14761 return ret;
14762 }
14763
c37efb99
CW
14764 if (!obj)
14765 return 0;
14766
c004a90b
CW
14767 if (!new_state->fence) { /* implicit fencing */
14768 ret = i915_sw_fence_await_reservation(&intel_state->commit_ready,
14769 obj->resv, NULL,
14770 false, I915_FENCE_TIMEOUT,
14771 GFP_KERNEL);
14772 if (ret < 0)
14773 return ret;
6b5e90f5
CW
14774
14775 i915_gem_object_wait_priority(obj, 0, I915_PRIORITY_DISPLAY);
c004a90b 14776 }
5a21b665 14777
c37efb99 14778 if (plane->type == DRM_PLANE_TYPE_CURSOR &&
b7f05d4a 14779 INTEL_INFO(dev_priv)->cursor_needs_physical) {
50a0bc90 14780 int align = IS_I830(dev_priv) ? 16 * 1024 : 256;
6beb8c23 14781 ret = i915_gem_object_attach_phys(obj, align);
d07f0e59 14782 if (ret) {
6beb8c23 14783 DRM_DEBUG_KMS("failed to attach phys object\n");
d07f0e59
CW
14784 return ret;
14785 }
6beb8c23 14786 } else {
058d88c4
CW
14787 struct i915_vma *vma;
14788
14789 vma = intel_pin_and_fence_fb_obj(fb, new_state->rotation);
d07f0e59
CW
14790 if (IS_ERR(vma)) {
14791 DRM_DEBUG_KMS("failed to pin object\n");
14792 return PTR_ERR(vma);
14793 }
7580d774 14794 }
fdd508a6 14795
d07f0e59 14796 return 0;
6beb8c23
MR
14797}
14798
38f3ce3a
MR
14799/**
14800 * intel_cleanup_plane_fb - Cleans up an fb after plane use
14801 * @plane: drm plane to clean up for
14802 * @fb: old framebuffer that was on plane
14803 *
14804 * Cleans up a framebuffer that has just been removed from a plane.
f935675f
ML
14805 *
14806 * Must be called with struct_mutex held.
38f3ce3a
MR
14807 */
14808void
14809intel_cleanup_plane_fb(struct drm_plane *plane,
1832040d 14810 struct drm_plane_state *old_state)
38f3ce3a 14811{
b7f05d4a 14812 struct drm_i915_private *dev_priv = to_i915(plane->dev);
7580d774 14813 struct intel_plane_state *old_intel_state;
1ee49399
ML
14814 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_state->fb);
14815 struct drm_i915_gem_object *obj = intel_fb_obj(plane->state->fb);
38f3ce3a 14816
7580d774
ML
14817 old_intel_state = to_intel_plane_state(old_state);
14818
1ee49399 14819 if (!obj && !old_obj)
38f3ce3a
MR
14820 return;
14821
1ee49399 14822 if (old_obj && (plane->type != DRM_PLANE_TYPE_CURSOR ||
b7f05d4a 14823 !INTEL_INFO(dev_priv)->cursor_needs_physical))
3465c580 14824 intel_unpin_fb_obj(old_state->fb, old_state->rotation);
465c120c
MR
14825}
14826
6156a456
CK
14827int
14828skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
14829{
14830 int max_scale;
6156a456
CK
14831 int crtc_clock, cdclk;
14832
bf8a0af0 14833 if (!intel_crtc || !crtc_state->base.enable)
6156a456
CK
14834 return DRM_PLANE_HELPER_NO_SCALING;
14835
6156a456 14836 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
27c329ed 14837 cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk;
6156a456 14838
54bf1ce6 14839 if (WARN_ON_ONCE(!crtc_clock || cdclk < crtc_clock))
6156a456
CK
14840 return DRM_PLANE_HELPER_NO_SCALING;
14841
14842 /*
14843 * skl max scale is lower of:
14844 * close to 3 but not 3, -1 is for that purpose
14845 * or
14846 * cdclk/crtc_clock
14847 */
14848 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
14849
14850 return max_scale;
14851}
14852
465c120c 14853static int
3c692a41 14854intel_check_primary_plane(struct drm_plane *plane,
061e4b8d 14855 struct intel_crtc_state *crtc_state,
3c692a41
GP
14856 struct intel_plane_state *state)
14857{
b63a16f6 14858 struct drm_i915_private *dev_priv = to_i915(plane->dev);
2b875c22 14859 struct drm_crtc *crtc = state->base.crtc;
6156a456 14860 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
061e4b8d
ML
14861 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
14862 bool can_position = false;
b63a16f6 14863 int ret;
465c120c 14864
b63a16f6 14865 if (INTEL_GEN(dev_priv) >= 9) {
693bdc28
VS
14866 /* use scaler when colorkey is not required */
14867 if (state->ckey.flags == I915_SET_COLORKEY_NONE) {
14868 min_scale = 1;
14869 max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state);
14870 }
d8106366 14871 can_position = true;
6156a456 14872 }
d8106366 14873
cc926387
DV
14874 ret = drm_plane_helper_check_state(&state->base,
14875 &state->clip,
14876 min_scale, max_scale,
14877 can_position, true);
b63a16f6
VS
14878 if (ret)
14879 return ret;
14880
cc926387 14881 if (!state->base.fb)
b63a16f6
VS
14882 return 0;
14883
14884 if (INTEL_GEN(dev_priv) >= 9) {
14885 ret = skl_check_plane_surface(state);
14886 if (ret)
14887 return ret;
14888 }
14889
14890 return 0;
14af293f
GP
14891}
14892
5a21b665
DV
14893static void intel_begin_crtc_commit(struct drm_crtc *crtc,
14894 struct drm_crtc_state *old_crtc_state)
14895{
14896 struct drm_device *dev = crtc->dev;
62e0fb88 14897 struct drm_i915_private *dev_priv = to_i915(dev);
5a21b665 14898 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
b707aa50
L
14899 struct intel_crtc_state *intel_cstate =
14900 to_intel_crtc_state(crtc->state);
ccf010fb 14901 struct intel_crtc_state *old_intel_cstate =
5a21b665 14902 to_intel_crtc_state(old_crtc_state);
ccf010fb
ML
14903 struct intel_atomic_state *old_intel_state =
14904 to_intel_atomic_state(old_crtc_state->state);
5a21b665
DV
14905 bool modeset = needs_modeset(crtc->state);
14906
14907 /* Perform vblank evasion around commit operation */
14908 intel_pipe_update_start(intel_crtc);
14909
14910 if (modeset)
e62929b3 14911 goto out;
5a21b665
DV
14912
14913 if (crtc->state->color_mgmt_changed || to_intel_crtc_state(crtc->state)->update_pipe) {
14914 intel_color_set_csc(crtc->state);
14915 intel_color_load_luts(crtc->state);
14916 }
14917
ccf010fb
ML
14918 if (intel_cstate->update_pipe)
14919 intel_update_pipe_config(intel_crtc, old_intel_cstate);
14920 else if (INTEL_GEN(dev_priv) >= 9)
5a21b665 14921 skl_detach_scalers(intel_crtc);
62e0fb88 14922
e62929b3 14923out:
ccf010fb
ML
14924 if (dev_priv->display.atomic_update_watermarks)
14925 dev_priv->display.atomic_update_watermarks(old_intel_state,
14926 intel_cstate);
5a21b665
DV
14927}
14928
14929static void intel_finish_crtc_commit(struct drm_crtc *crtc,
14930 struct drm_crtc_state *old_crtc_state)
14931{
14932 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
14933
14934 intel_pipe_update_end(intel_crtc, NULL);
14935}
14936
cf4c7c12 14937/**
4a3b8769
MR
14938 * intel_plane_destroy - destroy a plane
14939 * @plane: plane to destroy
cf4c7c12 14940 *
4a3b8769
MR
14941 * Common destruction function for all types of planes (primary, cursor,
14942 * sprite).
cf4c7c12 14943 */
4a3b8769 14944void intel_plane_destroy(struct drm_plane *plane)
465c120c 14945{
465c120c 14946 drm_plane_cleanup(plane);
69ae561f 14947 kfree(to_intel_plane(plane));
465c120c
MR
14948}
14949
65a3fea0 14950const struct drm_plane_funcs intel_plane_funcs = {
70a101f8
MR
14951 .update_plane = drm_atomic_helper_update_plane,
14952 .disable_plane = drm_atomic_helper_disable_plane,
3d7d6510 14953 .destroy = intel_plane_destroy,
c196e1d6 14954 .set_property = drm_atomic_helper_plane_set_property,
a98b3431
MR
14955 .atomic_get_property = intel_plane_atomic_get_property,
14956 .atomic_set_property = intel_plane_atomic_set_property,
ea2c67bb
MR
14957 .atomic_duplicate_state = intel_plane_duplicate_state,
14958 .atomic_destroy_state = intel_plane_destroy_state,
465c120c
MR
14959};
14960
b079bd17 14961static struct intel_plane *
580503c7 14962intel_primary_plane_create(struct drm_i915_private *dev_priv, enum pipe pipe)
465c120c 14963{
fca0ce2a
VS
14964 struct intel_plane *primary = NULL;
14965 struct intel_plane_state *state = NULL;
465c120c 14966 const uint32_t *intel_primary_formats;
93ca7e00 14967 unsigned int supported_rotations;
45e3743a 14968 unsigned int num_formats;
fca0ce2a 14969 int ret;
465c120c
MR
14970
14971 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
b079bd17
VS
14972 if (!primary) {
14973 ret = -ENOMEM;
fca0ce2a 14974 goto fail;
b079bd17 14975 }
465c120c 14976
8e7d688b 14977 state = intel_create_plane_state(&primary->base);
b079bd17
VS
14978 if (!state) {
14979 ret = -ENOMEM;
fca0ce2a 14980 goto fail;
b079bd17
VS
14981 }
14982
8e7d688b 14983 primary->base.state = &state->base;
ea2c67bb 14984
465c120c
MR
14985 primary->can_scale = false;
14986 primary->max_downscale = 1;
580503c7 14987 if (INTEL_GEN(dev_priv) >= 9) {
6156a456 14988 primary->can_scale = true;
af99ceda 14989 state->scaler_id = -1;
6156a456 14990 }
465c120c 14991 primary->pipe = pipe;
e3c566df
VS
14992 /*
14993 * On gen2/3 only plane A can do FBC, but the panel fitter and LVDS
14994 * port is hooked to pipe B. Hence we want plane A feeding pipe B.
14995 */
14996 if (HAS_FBC(dev_priv) && INTEL_GEN(dev_priv) < 4)
14997 primary->plane = (enum plane) !pipe;
14998 else
14999 primary->plane = (enum plane) pipe;
a9ff8714 15000 primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe);
c59cb179 15001 primary->check_plane = intel_check_primary_plane;
465c120c 15002
580503c7 15003 if (INTEL_GEN(dev_priv) >= 9) {
6c0fd451
DL
15004 intel_primary_formats = skl_primary_formats;
15005 num_formats = ARRAY_SIZE(skl_primary_formats);
a8d201af
ML
15006
15007 primary->update_plane = skylake_update_primary_plane;
15008 primary->disable_plane = skylake_disable_primary_plane;
6e266956 15009 } else if (HAS_PCH_SPLIT(dev_priv)) {
a8d201af
ML
15010 intel_primary_formats = i965_primary_formats;
15011 num_formats = ARRAY_SIZE(i965_primary_formats);
15012
15013 primary->update_plane = ironlake_update_primary_plane;
15014 primary->disable_plane = i9xx_disable_primary_plane;
580503c7 15015 } else if (INTEL_GEN(dev_priv) >= 4) {
568db4f2
DL
15016 intel_primary_formats = i965_primary_formats;
15017 num_formats = ARRAY_SIZE(i965_primary_formats);
a8d201af
ML
15018
15019 primary->update_plane = i9xx_update_primary_plane;
15020 primary->disable_plane = i9xx_disable_primary_plane;
6c0fd451
DL
15021 } else {
15022 intel_primary_formats = i8xx_primary_formats;
15023 num_formats = ARRAY_SIZE(i8xx_primary_formats);
a8d201af
ML
15024
15025 primary->update_plane = i9xx_update_primary_plane;
15026 primary->disable_plane = i9xx_disable_primary_plane;
465c120c
MR
15027 }
15028
580503c7
VS
15029 if (INTEL_GEN(dev_priv) >= 9)
15030 ret = drm_universal_plane_init(&dev_priv->drm, &primary->base,
15031 0, &intel_plane_funcs,
38573dc1
VS
15032 intel_primary_formats, num_formats,
15033 DRM_PLANE_TYPE_PRIMARY,
15034 "plane 1%c", pipe_name(pipe));
9beb5fea 15035 else if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
580503c7
VS
15036 ret = drm_universal_plane_init(&dev_priv->drm, &primary->base,
15037 0, &intel_plane_funcs,
38573dc1
VS
15038 intel_primary_formats, num_formats,
15039 DRM_PLANE_TYPE_PRIMARY,
15040 "primary %c", pipe_name(pipe));
15041 else
580503c7
VS
15042 ret = drm_universal_plane_init(&dev_priv->drm, &primary->base,
15043 0, &intel_plane_funcs,
38573dc1
VS
15044 intel_primary_formats, num_formats,
15045 DRM_PLANE_TYPE_PRIMARY,
15046 "plane %c", plane_name(primary->plane));
fca0ce2a
VS
15047 if (ret)
15048 goto fail;
48404c1e 15049
5481e27f 15050 if (INTEL_GEN(dev_priv) >= 9) {
93ca7e00
VS
15051 supported_rotations =
15052 DRM_ROTATE_0 | DRM_ROTATE_90 |
15053 DRM_ROTATE_180 | DRM_ROTATE_270;
4ea7be2b
VS
15054 } else if (IS_CHERRYVIEW(dev_priv) && pipe == PIPE_B) {
15055 supported_rotations =
15056 DRM_ROTATE_0 | DRM_ROTATE_180 |
15057 DRM_REFLECT_X;
5481e27f 15058 } else if (INTEL_GEN(dev_priv) >= 4) {
93ca7e00
VS
15059 supported_rotations =
15060 DRM_ROTATE_0 | DRM_ROTATE_180;
15061 } else {
15062 supported_rotations = DRM_ROTATE_0;
15063 }
15064
5481e27f 15065 if (INTEL_GEN(dev_priv) >= 4)
93ca7e00
VS
15066 drm_plane_create_rotation_property(&primary->base,
15067 DRM_ROTATE_0,
15068 supported_rotations);
48404c1e 15069
ea2c67bb
MR
15070 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
15071
b079bd17 15072 return primary;
fca0ce2a
VS
15073
15074fail:
15075 kfree(state);
15076 kfree(primary);
15077
b079bd17 15078 return ERR_PTR(ret);
465c120c
MR
15079}
15080
3d7d6510 15081static int
852e787c 15082intel_check_cursor_plane(struct drm_plane *plane,
061e4b8d 15083 struct intel_crtc_state *crtc_state,
852e787c 15084 struct intel_plane_state *state)
3d7d6510 15085{
2b875c22 15086 struct drm_framebuffer *fb = state->base.fb;
757f9a3e 15087 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
b29ec92c 15088 enum pipe pipe = to_intel_plane(plane)->pipe;
757f9a3e
GP
15089 unsigned stride;
15090 int ret;
3d7d6510 15091
f8856a44
VS
15092 ret = drm_plane_helper_check_state(&state->base,
15093 &state->clip,
15094 DRM_PLANE_HELPER_NO_SCALING,
15095 DRM_PLANE_HELPER_NO_SCALING,
15096 true, true);
757f9a3e
GP
15097 if (ret)
15098 return ret;
15099
757f9a3e
GP
15100 /* if we want to turn off the cursor ignore width and height */
15101 if (!obj)
da20eabd 15102 return 0;
757f9a3e 15103
757f9a3e 15104 /* Check for which cursor types we support */
50a0bc90
TU
15105 if (!cursor_size_ok(to_i915(plane->dev), state->base.crtc_w,
15106 state->base.crtc_h)) {
ea2c67bb
MR
15107 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
15108 state->base.crtc_w, state->base.crtc_h);
757f9a3e
GP
15109 return -EINVAL;
15110 }
15111
ea2c67bb
MR
15112 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
15113 if (obj->base.size < stride * state->base.crtc_h) {
757f9a3e
GP
15114 DRM_DEBUG_KMS("buffer is too small\n");
15115 return -ENOMEM;
15116 }
15117
3a656b54 15118 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
757f9a3e 15119 DRM_DEBUG_KMS("cursor cannot be tiled\n");
da20eabd 15120 return -EINVAL;
32b7eeec
MR
15121 }
15122
b29ec92c
VS
15123 /*
15124 * There's something wrong with the cursor on CHV pipe C.
15125 * If it straddles the left edge of the screen then
15126 * moving it away from the edge or disabling it often
15127 * results in a pipe underrun, and often that can lead to
15128 * dead pipe (constant underrun reported, and it scans
15129 * out just a solid color). To recover from that, the
15130 * display power well must be turned off and on again.
15131 * Refuse the put the cursor into that compromised position.
15132 */
920a14b2 15133 if (IS_CHERRYVIEW(to_i915(plane->dev)) && pipe == PIPE_C &&
936e71e3 15134 state->base.visible && state->base.crtc_x < 0) {
b29ec92c
VS
15135 DRM_DEBUG_KMS("CHV cursor C not allowed to straddle the left screen edge\n");
15136 return -EINVAL;
15137 }
15138
da20eabd 15139 return 0;
852e787c 15140}
3d7d6510 15141
a8ad0d8e
ML
15142static void
15143intel_disable_cursor_plane(struct drm_plane *plane,
7fabf5ef 15144 struct drm_crtc *crtc)
a8ad0d8e 15145{
f2858021
ML
15146 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
15147
15148 intel_crtc->cursor_addr = 0;
55a08b3f 15149 intel_crtc_update_cursor(crtc, NULL);
a8ad0d8e
ML
15150}
15151
f4a2cf29 15152static void
55a08b3f
ML
15153intel_update_cursor_plane(struct drm_plane *plane,
15154 const struct intel_crtc_state *crtc_state,
15155 const struct intel_plane_state *state)
852e787c 15156{
55a08b3f
ML
15157 struct drm_crtc *crtc = crtc_state->base.crtc;
15158 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
b7f05d4a 15159 struct drm_i915_private *dev_priv = to_i915(plane->dev);
2b875c22 15160 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
a912f12f 15161 uint32_t addr;
852e787c 15162
f4a2cf29 15163 if (!obj)
a912f12f 15164 addr = 0;
b7f05d4a 15165 else if (!INTEL_INFO(dev_priv)->cursor_needs_physical)
058d88c4 15166 addr = i915_gem_object_ggtt_offset(obj, NULL);
f4a2cf29 15167 else
a912f12f 15168 addr = obj->phys_handle->busaddr;
852e787c 15169
a912f12f 15170 intel_crtc->cursor_addr = addr;
55a08b3f 15171 intel_crtc_update_cursor(crtc, state);
852e787c
GP
15172}
15173
b079bd17 15174static struct intel_plane *
580503c7 15175intel_cursor_plane_create(struct drm_i915_private *dev_priv, enum pipe pipe)
3d7d6510 15176{
fca0ce2a
VS
15177 struct intel_plane *cursor = NULL;
15178 struct intel_plane_state *state = NULL;
15179 int ret;
3d7d6510
MR
15180
15181 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
b079bd17
VS
15182 if (!cursor) {
15183 ret = -ENOMEM;
fca0ce2a 15184 goto fail;
b079bd17 15185 }
3d7d6510 15186
8e7d688b 15187 state = intel_create_plane_state(&cursor->base);
b079bd17
VS
15188 if (!state) {
15189 ret = -ENOMEM;
fca0ce2a 15190 goto fail;
b079bd17
VS
15191 }
15192
8e7d688b 15193 cursor->base.state = &state->base;
ea2c67bb 15194
3d7d6510
MR
15195 cursor->can_scale = false;
15196 cursor->max_downscale = 1;
15197 cursor->pipe = pipe;
15198 cursor->plane = pipe;
a9ff8714 15199 cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe);
c59cb179 15200 cursor->check_plane = intel_check_cursor_plane;
55a08b3f 15201 cursor->update_plane = intel_update_cursor_plane;
a8ad0d8e 15202 cursor->disable_plane = intel_disable_cursor_plane;
3d7d6510 15203
580503c7
VS
15204 ret = drm_universal_plane_init(&dev_priv->drm, &cursor->base,
15205 0, &intel_plane_funcs,
fca0ce2a
VS
15206 intel_cursor_formats,
15207 ARRAY_SIZE(intel_cursor_formats),
38573dc1
VS
15208 DRM_PLANE_TYPE_CURSOR,
15209 "cursor %c", pipe_name(pipe));
fca0ce2a
VS
15210 if (ret)
15211 goto fail;
4398ad45 15212
5481e27f 15213 if (INTEL_GEN(dev_priv) >= 4)
93ca7e00
VS
15214 drm_plane_create_rotation_property(&cursor->base,
15215 DRM_ROTATE_0,
15216 DRM_ROTATE_0 |
15217 DRM_ROTATE_180);
4398ad45 15218
580503c7 15219 if (INTEL_GEN(dev_priv) >= 9)
af99ceda
CK
15220 state->scaler_id = -1;
15221
ea2c67bb
MR
15222 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
15223
b079bd17 15224 return cursor;
fca0ce2a
VS
15225
15226fail:
15227 kfree(state);
15228 kfree(cursor);
15229
b079bd17 15230 return ERR_PTR(ret);
3d7d6510
MR
15231}
15232
65edccce
VS
15233static void skl_init_scalers(struct drm_i915_private *dev_priv,
15234 struct intel_crtc *crtc,
15235 struct intel_crtc_state *crtc_state)
549e2bfb 15236{
65edccce
VS
15237 struct intel_crtc_scaler_state *scaler_state =
15238 &crtc_state->scaler_state;
549e2bfb 15239 int i;
549e2bfb 15240
65edccce
VS
15241 for (i = 0; i < crtc->num_scalers; i++) {
15242 struct intel_scaler *scaler = &scaler_state->scalers[i];
15243
15244 scaler->in_use = 0;
15245 scaler->mode = PS_SCALER_MODE_DYN;
549e2bfb
CK
15246 }
15247
15248 scaler_state->scaler_id = -1;
15249}
15250
5ab0d85b 15251static int intel_crtc_init(struct drm_i915_private *dev_priv, enum pipe pipe)
79e53945
JB
15252{
15253 struct intel_crtc *intel_crtc;
f5de6e07 15254 struct intel_crtc_state *crtc_state = NULL;
b079bd17
VS
15255 struct intel_plane *primary = NULL;
15256 struct intel_plane *cursor = NULL;
a81d6fa0 15257 int sprite, ret;
79e53945 15258
955382f3 15259 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
b079bd17
VS
15260 if (!intel_crtc)
15261 return -ENOMEM;
79e53945 15262
f5de6e07 15263 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
b079bd17
VS
15264 if (!crtc_state) {
15265 ret = -ENOMEM;
f5de6e07 15266 goto fail;
b079bd17 15267 }
550acefd
ACO
15268 intel_crtc->config = crtc_state;
15269 intel_crtc->base.state = &crtc_state->base;
07878248 15270 crtc_state->base.crtc = &intel_crtc->base;
f5de6e07 15271
549e2bfb 15272 /* initialize shared scalers */
5ab0d85b 15273 if (INTEL_GEN(dev_priv) >= 9) {
549e2bfb
CK
15274 if (pipe == PIPE_C)
15275 intel_crtc->num_scalers = 1;
15276 else
15277 intel_crtc->num_scalers = SKL_NUM_SCALERS;
15278
65edccce 15279 skl_init_scalers(dev_priv, intel_crtc, crtc_state);
549e2bfb
CK
15280 }
15281
580503c7 15282 primary = intel_primary_plane_create(dev_priv, pipe);
b079bd17
VS
15283 if (IS_ERR(primary)) {
15284 ret = PTR_ERR(primary);
3d7d6510 15285 goto fail;
b079bd17 15286 }
3d7d6510 15287
a81d6fa0 15288 for_each_sprite(dev_priv, pipe, sprite) {
b079bd17
VS
15289 struct intel_plane *plane;
15290
580503c7 15291 plane = intel_sprite_plane_create(dev_priv, pipe, sprite);
d2b2cbce 15292 if (IS_ERR(plane)) {
b079bd17
VS
15293 ret = PTR_ERR(plane);
15294 goto fail;
15295 }
a81d6fa0
VS
15296 }
15297
580503c7 15298 cursor = intel_cursor_plane_create(dev_priv, pipe);
d2b2cbce 15299 if (IS_ERR(cursor)) {
b079bd17 15300 ret = PTR_ERR(cursor);
3d7d6510 15301 goto fail;
b079bd17 15302 }
3d7d6510 15303
5ab0d85b 15304 ret = drm_crtc_init_with_planes(&dev_priv->drm, &intel_crtc->base,
b079bd17
VS
15305 &primary->base, &cursor->base,
15306 &intel_crtc_funcs,
4d5d72b7 15307 "pipe %c", pipe_name(pipe));
3d7d6510
MR
15308 if (ret)
15309 goto fail;
79e53945 15310
80824003 15311 intel_crtc->pipe = pipe;
e3c566df 15312 intel_crtc->plane = primary->plane;
80824003 15313
4b0e333e
CW
15314 intel_crtc->cursor_base = ~0;
15315 intel_crtc->cursor_cntl = ~0;
dc41c154 15316 intel_crtc->cursor_size = ~0;
8d7849db 15317
852eb00d
VS
15318 intel_crtc->wm.cxsr_allowed = true;
15319
22fd0fab
JB
15320 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
15321 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
e2af48c6
VS
15322 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = intel_crtc;
15323 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = intel_crtc;
22fd0fab 15324
79e53945 15325 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
87b6b101 15326
8563b1e8
LL
15327 intel_color_init(&intel_crtc->base);
15328
87b6b101 15329 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
b079bd17
VS
15330
15331 return 0;
3d7d6510
MR
15332
15333fail:
b079bd17
VS
15334 /*
15335 * drm_mode_config_cleanup() will free up any
15336 * crtcs/planes already initialized.
15337 */
f5de6e07 15338 kfree(crtc_state);
3d7d6510 15339 kfree(intel_crtc);
b079bd17
VS
15340
15341 return ret;
79e53945
JB
15342}
15343
752aa88a
JB
15344enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
15345{
15346 struct drm_encoder *encoder = connector->base.encoder;
6e9f798d 15347 struct drm_device *dev = connector->base.dev;
752aa88a 15348
51fd371b 15349 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
752aa88a 15350
d3babd3f 15351 if (!encoder || WARN_ON(!encoder->crtc))
752aa88a
JB
15352 return INVALID_PIPE;
15353
15354 return to_intel_crtc(encoder->crtc)->pipe;
15355}
15356
08d7b3d1 15357int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
05394f39 15358 struct drm_file *file)
08d7b3d1 15359{
08d7b3d1 15360 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
7707e653 15361 struct drm_crtc *drmmode_crtc;
c05422d5 15362 struct intel_crtc *crtc;
08d7b3d1 15363
7707e653 15364 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
71240ed2 15365 if (!drmmode_crtc)
3f2c2057 15366 return -ENOENT;
08d7b3d1 15367
7707e653 15368 crtc = to_intel_crtc(drmmode_crtc);
c05422d5 15369 pipe_from_crtc_id->pipe = crtc->pipe;
08d7b3d1 15370
c05422d5 15371 return 0;
08d7b3d1
CW
15372}
15373
66a9278e 15374static int intel_encoder_clones(struct intel_encoder *encoder)
79e53945 15375{
66a9278e
DV
15376 struct drm_device *dev = encoder->base.dev;
15377 struct intel_encoder *source_encoder;
79e53945 15378 int index_mask = 0;
79e53945
JB
15379 int entry = 0;
15380
b2784e15 15381 for_each_intel_encoder(dev, source_encoder) {
bc079e8b 15382 if (encoders_cloneable(encoder, source_encoder))
66a9278e
DV
15383 index_mask |= (1 << entry);
15384
79e53945
JB
15385 entry++;
15386 }
4ef69c7a 15387
79e53945
JB
15388 return index_mask;
15389}
15390
646d5772 15391static bool has_edp_a(struct drm_i915_private *dev_priv)
4d302442 15392{
646d5772 15393 if (!IS_MOBILE(dev_priv))
4d302442
CW
15394 return false;
15395
15396 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
15397 return false;
15398
5db94019 15399 if (IS_GEN5(dev_priv) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
4d302442
CW
15400 return false;
15401
15402 return true;
15403}
15404
6315b5d3 15405static bool intel_crt_present(struct drm_i915_private *dev_priv)
84b4e042 15406{
6315b5d3 15407 if (INTEL_GEN(dev_priv) >= 9)
884497ed
DL
15408 return false;
15409
50a0bc90 15410 if (IS_HSW_ULT(dev_priv) || IS_BDW_ULT(dev_priv))
84b4e042
JB
15411 return false;
15412
920a14b2 15413 if (IS_CHERRYVIEW(dev_priv))
84b4e042
JB
15414 return false;
15415
4f8036a2
TU
15416 if (HAS_PCH_LPT_H(dev_priv) &&
15417 I915_READ(SFUSE_STRAP) & SFUSE_STRAP_CRT_DISABLED)
65e472e4
VS
15418 return false;
15419
70ac54d0 15420 /* DDI E can't be used if DDI A requires 4 lanes */
4f8036a2 15421 if (HAS_DDI(dev_priv) && I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES)
70ac54d0
VS
15422 return false;
15423
e4abb733 15424 if (!dev_priv->vbt.int_crt_support)
84b4e042
JB
15425 return false;
15426
15427 return true;
15428}
15429
8090ba8c
ID
15430void intel_pps_unlock_regs_wa(struct drm_i915_private *dev_priv)
15431{
15432 int pps_num;
15433 int pps_idx;
15434
15435 if (HAS_DDI(dev_priv))
15436 return;
15437 /*
15438 * This w/a is needed at least on CPT/PPT, but to be sure apply it
15439 * everywhere where registers can be write protected.
15440 */
15441 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
15442 pps_num = 2;
15443 else
15444 pps_num = 1;
15445
15446 for (pps_idx = 0; pps_idx < pps_num; pps_idx++) {
15447 u32 val = I915_READ(PP_CONTROL(pps_idx));
15448
15449 val = (val & ~PANEL_UNLOCK_MASK) | PANEL_UNLOCK_REGS;
15450 I915_WRITE(PP_CONTROL(pps_idx), val);
15451 }
15452}
15453
44cb734c
ID
15454static void intel_pps_init(struct drm_i915_private *dev_priv)
15455{
15456 if (HAS_PCH_SPLIT(dev_priv) || IS_BROXTON(dev_priv))
15457 dev_priv->pps_mmio_base = PCH_PPS_BASE;
15458 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
15459 dev_priv->pps_mmio_base = VLV_PPS_BASE;
15460 else
15461 dev_priv->pps_mmio_base = PPS_BASE;
8090ba8c
ID
15462
15463 intel_pps_unlock_regs_wa(dev_priv);
44cb734c
ID
15464}
15465
79e53945
JB
15466static void intel_setup_outputs(struct drm_device *dev)
15467{
fac5e23e 15468 struct drm_i915_private *dev_priv = to_i915(dev);
4ef69c7a 15469 struct intel_encoder *encoder;
cb0953d7 15470 bool dpd_is_edp = false;
79e53945 15471
44cb734c
ID
15472 intel_pps_init(dev_priv);
15473
97a824e1
ID
15474 /*
15475 * intel_edp_init_connector() depends on this completing first, to
15476 * prevent the registeration of both eDP and LVDS and the incorrect
15477 * sharing of the PPS.
15478 */
c9093354 15479 intel_lvds_init(dev);
79e53945 15480
6315b5d3 15481 if (intel_crt_present(dev_priv))
79935fca 15482 intel_crt_init(dev);
cb0953d7 15483
e2d214ae 15484 if (IS_BROXTON(dev_priv)) {
c776eb2e
VK
15485 /*
15486 * FIXME: Broxton doesn't support port detection via the
15487 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
15488 * detect the ports.
15489 */
15490 intel_ddi_init(dev, PORT_A);
15491 intel_ddi_init(dev, PORT_B);
15492 intel_ddi_init(dev, PORT_C);
c6c794a2
SS
15493
15494 intel_dsi_init(dev);
4f8036a2 15495 } else if (HAS_DDI(dev_priv)) {
0e72a5b5
ED
15496 int found;
15497
de31facd
JB
15498 /*
15499 * Haswell uses DDI functions to detect digital outputs.
15500 * On SKL pre-D0 the strap isn't connected, so we assume
15501 * it's there.
15502 */
77179400 15503 found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED;
de31facd 15504 /* WaIgnoreDDIAStrap: skl */
0853723b 15505 if (found || IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
0e72a5b5
ED
15506 intel_ddi_init(dev, PORT_A);
15507
15508 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
15509 * register */
15510 found = I915_READ(SFUSE_STRAP);
15511
15512 if (found & SFUSE_STRAP_DDIB_DETECTED)
15513 intel_ddi_init(dev, PORT_B);
15514 if (found & SFUSE_STRAP_DDIC_DETECTED)
15515 intel_ddi_init(dev, PORT_C);
15516 if (found & SFUSE_STRAP_DDID_DETECTED)
15517 intel_ddi_init(dev, PORT_D);
2800e4c2
RV
15518 /*
15519 * On SKL we don't have a way to detect DDI-E so we rely on VBT.
15520 */
0853723b 15521 if ((IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) &&
2800e4c2
RV
15522 (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp ||
15523 dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi ||
15524 dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi))
15525 intel_ddi_init(dev, PORT_E);
15526
6e266956 15527 } else if (HAS_PCH_SPLIT(dev_priv)) {
cb0953d7 15528 int found;
dd11bc10 15529 dpd_is_edp = intel_dp_is_edp(dev_priv, PORT_D);
270b3042 15530
646d5772 15531 if (has_edp_a(dev_priv))
270b3042 15532 intel_dp_init(dev, DP_A, PORT_A);
cb0953d7 15533
dc0fa718 15534 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
461ed3ca 15535 /* PCH SDVOB multiplex with HDMIB */
2a5c0832 15536 found = intel_sdvo_init(dev, PCH_SDVOB, PORT_B);
30ad48b7 15537 if (!found)
e2debe91 15538 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
5eb08b69 15539 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
ab9d7c30 15540 intel_dp_init(dev, PCH_DP_B, PORT_B);
30ad48b7
ZW
15541 }
15542
dc0fa718 15543 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
e2debe91 15544 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
30ad48b7 15545
dc0fa718 15546 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
e2debe91 15547 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
30ad48b7 15548
5eb08b69 15549 if (I915_READ(PCH_DP_C) & DP_DETECTED)
ab9d7c30 15550 intel_dp_init(dev, PCH_DP_C, PORT_C);
5eb08b69 15551
270b3042 15552 if (I915_READ(PCH_DP_D) & DP_DETECTED)
ab9d7c30 15553 intel_dp_init(dev, PCH_DP_D, PORT_D);
920a14b2 15554 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
22f35042 15555 bool has_edp, has_port;
457c52d8 15556
e17ac6db
VS
15557 /*
15558 * The DP_DETECTED bit is the latched state of the DDC
15559 * SDA pin at boot. However since eDP doesn't require DDC
15560 * (no way to plug in a DP->HDMI dongle) the DDC pins for
15561 * eDP ports may have been muxed to an alternate function.
15562 * Thus we can't rely on the DP_DETECTED bit alone to detect
15563 * eDP ports. Consult the VBT as well as DP_DETECTED to
15564 * detect eDP ports.
22f35042
VS
15565 *
15566 * Sadly the straps seem to be missing sometimes even for HDMI
15567 * ports (eg. on Voyo V3 - CHT x7-Z8700), so check both strap
15568 * and VBT for the presence of the port. Additionally we can't
15569 * trust the port type the VBT declares as we've seen at least
15570 * HDMI ports that the VBT claim are DP or eDP.
e17ac6db 15571 */
dd11bc10 15572 has_edp = intel_dp_is_edp(dev_priv, PORT_B);
22f35042
VS
15573 has_port = intel_bios_is_port_present(dev_priv, PORT_B);
15574 if (I915_READ(VLV_DP_B) & DP_DETECTED || has_port)
457c52d8 15575 has_edp &= intel_dp_init(dev, VLV_DP_B, PORT_B);
22f35042 15576 if ((I915_READ(VLV_HDMIB) & SDVO_DETECTED || has_port) && !has_edp)
e66eb81d 15577 intel_hdmi_init(dev, VLV_HDMIB, PORT_B);
585a94b8 15578
dd11bc10 15579 has_edp = intel_dp_is_edp(dev_priv, PORT_C);
22f35042
VS
15580 has_port = intel_bios_is_port_present(dev_priv, PORT_C);
15581 if (I915_READ(VLV_DP_C) & DP_DETECTED || has_port)
457c52d8 15582 has_edp &= intel_dp_init(dev, VLV_DP_C, PORT_C);
22f35042 15583 if ((I915_READ(VLV_HDMIC) & SDVO_DETECTED || has_port) && !has_edp)
e66eb81d 15584 intel_hdmi_init(dev, VLV_HDMIC, PORT_C);
19c03924 15585
920a14b2 15586 if (IS_CHERRYVIEW(dev_priv)) {
22f35042
VS
15587 /*
15588 * eDP not supported on port D,
15589 * so no need to worry about it
15590 */
15591 has_port = intel_bios_is_port_present(dev_priv, PORT_D);
15592 if (I915_READ(CHV_DP_D) & DP_DETECTED || has_port)
e66eb81d 15593 intel_dp_init(dev, CHV_DP_D, PORT_D);
22f35042
VS
15594 if (I915_READ(CHV_HDMID) & SDVO_DETECTED || has_port)
15595 intel_hdmi_init(dev, CHV_HDMID, PORT_D);
9418c1f1
VS
15596 }
15597
3cfca973 15598 intel_dsi_init(dev);
5db94019 15599 } else if (!IS_GEN2(dev_priv) && !IS_PINEVIEW(dev_priv)) {
27185ae1 15600 bool found = false;
7d57382e 15601
e2debe91 15602 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 15603 DRM_DEBUG_KMS("probing SDVOB\n");
2a5c0832 15604 found = intel_sdvo_init(dev, GEN3_SDVOB, PORT_B);
9beb5fea 15605 if (!found && IS_G4X(dev_priv)) {
b01f2c3a 15606 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
e2debe91 15607 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
b01f2c3a 15608 }
27185ae1 15609
9beb5fea 15610 if (!found && IS_G4X(dev_priv))
ab9d7c30 15611 intel_dp_init(dev, DP_B, PORT_B);
725e30ad 15612 }
13520b05
KH
15613
15614 /* Before G4X SDVOC doesn't have its own detect register */
13520b05 15615
e2debe91 15616 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 15617 DRM_DEBUG_KMS("probing SDVOC\n");
2a5c0832 15618 found = intel_sdvo_init(dev, GEN3_SDVOC, PORT_C);
b01f2c3a 15619 }
27185ae1 15620
e2debe91 15621 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
27185ae1 15622
9beb5fea 15623 if (IS_G4X(dev_priv)) {
b01f2c3a 15624 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
e2debe91 15625 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
b01f2c3a 15626 }
9beb5fea 15627 if (IS_G4X(dev_priv))
ab9d7c30 15628 intel_dp_init(dev, DP_C, PORT_C);
725e30ad 15629 }
27185ae1 15630
9beb5fea 15631 if (IS_G4X(dev_priv) && (I915_READ(DP_D) & DP_DETECTED))
ab9d7c30 15632 intel_dp_init(dev, DP_D, PORT_D);
5db94019 15633 } else if (IS_GEN2(dev_priv))
79e53945
JB
15634 intel_dvo_init(dev);
15635
56b857a5 15636 if (SUPPORTS_TV(dev_priv))
79e53945
JB
15637 intel_tv_init(dev);
15638
0bc12bcb 15639 intel_psr_init(dev);
7c8f8a70 15640
b2784e15 15641 for_each_intel_encoder(dev, encoder) {
4ef69c7a
CW
15642 encoder->base.possible_crtcs = encoder->crtc_mask;
15643 encoder->base.possible_clones =
66a9278e 15644 intel_encoder_clones(encoder);
79e53945 15645 }
47356eb6 15646
dde86e2d 15647 intel_init_pch_refclk(dev);
270b3042
DV
15648
15649 drm_helper_move_panel_connectors_to_head(dev);
79e53945
JB
15650}
15651
15652static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
15653{
60a5ca01 15654 struct drm_device *dev = fb->dev;
79e53945 15655 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
79e53945 15656
ef2d633e 15657 drm_framebuffer_cleanup(fb);
60a5ca01 15658 mutex_lock(&dev->struct_mutex);
ef2d633e 15659 WARN_ON(!intel_fb->obj->framebuffer_references--);
f8c417cd 15660 i915_gem_object_put(intel_fb->obj);
60a5ca01 15661 mutex_unlock(&dev->struct_mutex);
79e53945
JB
15662 kfree(intel_fb);
15663}
15664
15665static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
05394f39 15666 struct drm_file *file,
79e53945
JB
15667 unsigned int *handle)
15668{
15669 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 15670 struct drm_i915_gem_object *obj = intel_fb->obj;
79e53945 15671
cc917ab4
CW
15672 if (obj->userptr.mm) {
15673 DRM_DEBUG("attempting to use a userptr for a framebuffer, denied\n");
15674 return -EINVAL;
15675 }
15676
05394f39 15677 return drm_gem_handle_create(file, &obj->base, handle);
79e53945
JB
15678}
15679
86c98588
RV
15680static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb,
15681 struct drm_file *file,
15682 unsigned flags, unsigned color,
15683 struct drm_clip_rect *clips,
15684 unsigned num_clips)
15685{
15686 struct drm_device *dev = fb->dev;
15687 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
15688 struct drm_i915_gem_object *obj = intel_fb->obj;
15689
15690 mutex_lock(&dev->struct_mutex);
74b4ea1e 15691 intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB);
86c98588
RV
15692 mutex_unlock(&dev->struct_mutex);
15693
15694 return 0;
15695}
15696
79e53945
JB
15697static const struct drm_framebuffer_funcs intel_fb_funcs = {
15698 .destroy = intel_user_framebuffer_destroy,
15699 .create_handle = intel_user_framebuffer_create_handle,
86c98588 15700 .dirty = intel_user_framebuffer_dirty,
79e53945
JB
15701};
15702
b321803d 15703static
920a14b2
TU
15704u32 intel_fb_pitch_limit(struct drm_i915_private *dev_priv,
15705 uint64_t fb_modifier, uint32_t pixel_format)
b321803d 15706{
920a14b2 15707 u32 gen = INTEL_INFO(dev_priv)->gen;
b321803d
DL
15708
15709 if (gen >= 9) {
ac484963
VS
15710 int cpp = drm_format_plane_cpp(pixel_format, 0);
15711
b321803d
DL
15712 /* "The stride in bytes must not exceed the of the size of 8K
15713 * pixels and 32K bytes."
15714 */
ac484963 15715 return min(8192 * cpp, 32768);
920a14b2
TU
15716 } else if (gen >= 5 && !IS_VALLEYVIEW(dev_priv) &&
15717 !IS_CHERRYVIEW(dev_priv)) {
b321803d
DL
15718 return 32*1024;
15719 } else if (gen >= 4) {
15720 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
15721 return 16*1024;
15722 else
15723 return 32*1024;
15724 } else if (gen >= 3) {
15725 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
15726 return 8*1024;
15727 else
15728 return 16*1024;
15729 } else {
15730 /* XXX DSPC is limited to 4k tiled */
15731 return 8*1024;
15732 }
15733}
15734
b5ea642a
DV
15735static int intel_framebuffer_init(struct drm_device *dev,
15736 struct intel_framebuffer *intel_fb,
15737 struct drm_mode_fb_cmd2 *mode_cmd,
15738 struct drm_i915_gem_object *obj)
79e53945 15739{
7b49f948 15740 struct drm_i915_private *dev_priv = to_i915(dev);
c2ff7370 15741 unsigned int tiling = i915_gem_object_get_tiling(obj);
79e53945 15742 int ret;
b321803d 15743 u32 pitch_limit, stride_alignment;
b3c11ac2 15744 struct drm_format_name_buf format_name;
79e53945 15745
dd4916c5
DV
15746 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
15747
2a80eada 15748 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
c2ff7370
VS
15749 /*
15750 * If there's a fence, enforce that
15751 * the fb modifier and tiling mode match.
15752 */
15753 if (tiling != I915_TILING_NONE &&
15754 tiling != intel_fb_modifier_to_tiling(mode_cmd->modifier[0])) {
2a80eada
DV
15755 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
15756 return -EINVAL;
15757 }
15758 } else {
c2ff7370 15759 if (tiling == I915_TILING_X) {
2a80eada 15760 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
c2ff7370 15761 } else if (tiling == I915_TILING_Y) {
2a80eada
DV
15762 DRM_DEBUG("No Y tiling for legacy addfb\n");
15763 return -EINVAL;
15764 }
15765 }
15766
9a8f0a12
TU
15767 /* Passed in modifier sanity checking. */
15768 switch (mode_cmd->modifier[0]) {
15769 case I915_FORMAT_MOD_Y_TILED:
15770 case I915_FORMAT_MOD_Yf_TILED:
6315b5d3 15771 if (INTEL_GEN(dev_priv) < 9) {
9a8f0a12
TU
15772 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
15773 mode_cmd->modifier[0]);
15774 return -EINVAL;
15775 }
15776 case DRM_FORMAT_MOD_NONE:
15777 case I915_FORMAT_MOD_X_TILED:
15778 break;
15779 default:
c0f40428
JB
15780 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
15781 mode_cmd->modifier[0]);
57cd6508 15782 return -EINVAL;
c16ed4be 15783 }
57cd6508 15784
c2ff7370
VS
15785 /*
15786 * gen2/3 display engine uses the fence if present,
15787 * so the tiling mode must match the fb modifier exactly.
15788 */
15789 if (INTEL_INFO(dev_priv)->gen < 4 &&
15790 tiling != intel_fb_modifier_to_tiling(mode_cmd->modifier[0])) {
15791 DRM_DEBUG("tiling_mode must match fb modifier exactly on gen2/3\n");
15792 return -EINVAL;
15793 }
15794
7b49f948
VS
15795 stride_alignment = intel_fb_stride_alignment(dev_priv,
15796 mode_cmd->modifier[0],
b321803d
DL
15797 mode_cmd->pixel_format);
15798 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
15799 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
15800 mode_cmd->pitches[0], stride_alignment);
57cd6508 15801 return -EINVAL;
c16ed4be 15802 }
57cd6508 15803
920a14b2 15804 pitch_limit = intel_fb_pitch_limit(dev_priv, mode_cmd->modifier[0],
b321803d 15805 mode_cmd->pixel_format);
a35cdaa0 15806 if (mode_cmd->pitches[0] > pitch_limit) {
b321803d
DL
15807 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
15808 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
2a80eada 15809 "tiled" : "linear",
a35cdaa0 15810 mode_cmd->pitches[0], pitch_limit);
5d7bd705 15811 return -EINVAL;
c16ed4be 15812 }
5d7bd705 15813
c2ff7370
VS
15814 /*
15815 * If there's a fence, enforce that
15816 * the fb pitch and fence stride match.
15817 */
15818 if (tiling != I915_TILING_NONE &&
3e510a8e 15819 mode_cmd->pitches[0] != i915_gem_object_get_stride(obj)) {
c16ed4be 15820 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
3e510a8e
CW
15821 mode_cmd->pitches[0],
15822 i915_gem_object_get_stride(obj));
5d7bd705 15823 return -EINVAL;
c16ed4be 15824 }
5d7bd705 15825
57779d06 15826 /* Reject formats not supported by any plane early. */
308e5bcb 15827 switch (mode_cmd->pixel_format) {
57779d06 15828 case DRM_FORMAT_C8:
04b3924d
VS
15829 case DRM_FORMAT_RGB565:
15830 case DRM_FORMAT_XRGB8888:
15831 case DRM_FORMAT_ARGB8888:
57779d06
VS
15832 break;
15833 case DRM_FORMAT_XRGB1555:
6315b5d3 15834 if (INTEL_GEN(dev_priv) > 3) {
b3c11ac2
EE
15835 DRM_DEBUG("unsupported pixel format: %s\n",
15836 drm_get_format_name(mode_cmd->pixel_format, &format_name));
57779d06 15837 return -EINVAL;
c16ed4be 15838 }
57779d06 15839 break;
57779d06 15840 case DRM_FORMAT_ABGR8888:
920a14b2 15841 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv) &&
6315b5d3 15842 INTEL_GEN(dev_priv) < 9) {
b3c11ac2
EE
15843 DRM_DEBUG("unsupported pixel format: %s\n",
15844 drm_get_format_name(mode_cmd->pixel_format, &format_name));
6c0fd451
DL
15845 return -EINVAL;
15846 }
15847 break;
15848 case DRM_FORMAT_XBGR8888:
04b3924d 15849 case DRM_FORMAT_XRGB2101010:
57779d06 15850 case DRM_FORMAT_XBGR2101010:
6315b5d3 15851 if (INTEL_GEN(dev_priv) < 4) {
b3c11ac2
EE
15852 DRM_DEBUG("unsupported pixel format: %s\n",
15853 drm_get_format_name(mode_cmd->pixel_format, &format_name));
57779d06 15854 return -EINVAL;
c16ed4be 15855 }
b5626747 15856 break;
7531208b 15857 case DRM_FORMAT_ABGR2101010:
920a14b2 15858 if (!IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv)) {
b3c11ac2
EE
15859 DRM_DEBUG("unsupported pixel format: %s\n",
15860 drm_get_format_name(mode_cmd->pixel_format, &format_name));
7531208b
DL
15861 return -EINVAL;
15862 }
15863 break;
04b3924d
VS
15864 case DRM_FORMAT_YUYV:
15865 case DRM_FORMAT_UYVY:
15866 case DRM_FORMAT_YVYU:
15867 case DRM_FORMAT_VYUY:
6315b5d3 15868 if (INTEL_GEN(dev_priv) < 5) {
b3c11ac2
EE
15869 DRM_DEBUG("unsupported pixel format: %s\n",
15870 drm_get_format_name(mode_cmd->pixel_format, &format_name));
57779d06 15871 return -EINVAL;
c16ed4be 15872 }
57cd6508
CW
15873 break;
15874 default:
b3c11ac2
EE
15875 DRM_DEBUG("unsupported pixel format: %s\n",
15876 drm_get_format_name(mode_cmd->pixel_format, &format_name));
57cd6508
CW
15877 return -EINVAL;
15878 }
15879
90f9a336
VS
15880 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
15881 if (mode_cmd->offsets[0] != 0)
15882 return -EINVAL;
15883
c7d73f6a
DV
15884 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
15885 intel_fb->obj = obj;
15886
6687c906
VS
15887 ret = intel_fill_fb_info(dev_priv, &intel_fb->base);
15888 if (ret)
15889 return ret;
2d7a215f 15890
79e53945
JB
15891 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
15892 if (ret) {
15893 DRM_ERROR("framebuffer init failed %d\n", ret);
15894 return ret;
15895 }
15896
0b05e1e0
VS
15897 intel_fb->obj->framebuffer_references++;
15898
79e53945
JB
15899 return 0;
15900}
15901
79e53945
JB
15902static struct drm_framebuffer *
15903intel_user_framebuffer_create(struct drm_device *dev,
15904 struct drm_file *filp,
1eb83451 15905 const struct drm_mode_fb_cmd2 *user_mode_cmd)
79e53945 15906{
dcb1394e 15907 struct drm_framebuffer *fb;
05394f39 15908 struct drm_i915_gem_object *obj;
76dc3769 15909 struct drm_mode_fb_cmd2 mode_cmd = *user_mode_cmd;
79e53945 15910
03ac0642
CW
15911 obj = i915_gem_object_lookup(filp, mode_cmd.handles[0]);
15912 if (!obj)
cce13ff7 15913 return ERR_PTR(-ENOENT);
79e53945 15914
92907cbb 15915 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
dcb1394e 15916 if (IS_ERR(fb))
f0cd5182 15917 i915_gem_object_put(obj);
dcb1394e
LW
15918
15919 return fb;
79e53945
JB
15920}
15921
79e53945 15922static const struct drm_mode_config_funcs intel_mode_funcs = {
79e53945 15923 .fb_create = intel_user_framebuffer_create,
0632fef6 15924 .output_poll_changed = intel_fbdev_output_poll_changed,
5ee67f1c
MR
15925 .atomic_check = intel_atomic_check,
15926 .atomic_commit = intel_atomic_commit,
de419ab6
ML
15927 .atomic_state_alloc = intel_atomic_state_alloc,
15928 .atomic_state_clear = intel_atomic_state_clear,
79e53945
JB
15929};
15930
88212941
ID
15931/**
15932 * intel_init_display_hooks - initialize the display modesetting hooks
15933 * @dev_priv: device private
15934 */
15935void intel_init_display_hooks(struct drm_i915_private *dev_priv)
e70236a8 15936{
88212941 15937 if (INTEL_INFO(dev_priv)->gen >= 9) {
bc8d7dff 15938 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
15939 dev_priv->display.get_initial_plane_config =
15940 skylake_get_initial_plane_config;
bc8d7dff
DL
15941 dev_priv->display.crtc_compute_clock =
15942 haswell_crtc_compute_clock;
15943 dev_priv->display.crtc_enable = haswell_crtc_enable;
15944 dev_priv->display.crtc_disable = haswell_crtc_disable;
88212941 15945 } else if (HAS_DDI(dev_priv)) {
0e8ffe1b 15946 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
15947 dev_priv->display.get_initial_plane_config =
15948 ironlake_get_initial_plane_config;
797d0259
ACO
15949 dev_priv->display.crtc_compute_clock =
15950 haswell_crtc_compute_clock;
4f771f10
PZ
15951 dev_priv->display.crtc_enable = haswell_crtc_enable;
15952 dev_priv->display.crtc_disable = haswell_crtc_disable;
88212941 15953 } else if (HAS_PCH_SPLIT(dev_priv)) {
0e8ffe1b 15954 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
5724dbd1
DL
15955 dev_priv->display.get_initial_plane_config =
15956 ironlake_get_initial_plane_config;
3fb37703
ACO
15957 dev_priv->display.crtc_compute_clock =
15958 ironlake_crtc_compute_clock;
76e5a89c
DV
15959 dev_priv->display.crtc_enable = ironlake_crtc_enable;
15960 dev_priv->display.crtc_disable = ironlake_crtc_disable;
65b3d6a9 15961 } else if (IS_CHERRYVIEW(dev_priv)) {
89b667f8 15962 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
15963 dev_priv->display.get_initial_plane_config =
15964 i9xx_get_initial_plane_config;
65b3d6a9
ACO
15965 dev_priv->display.crtc_compute_clock = chv_crtc_compute_clock;
15966 dev_priv->display.crtc_enable = valleyview_crtc_enable;
15967 dev_priv->display.crtc_disable = i9xx_crtc_disable;
15968 } else if (IS_VALLEYVIEW(dev_priv)) {
15969 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15970 dev_priv->display.get_initial_plane_config =
15971 i9xx_get_initial_plane_config;
15972 dev_priv->display.crtc_compute_clock = vlv_crtc_compute_clock;
89b667f8
JB
15973 dev_priv->display.crtc_enable = valleyview_crtc_enable;
15974 dev_priv->display.crtc_disable = i9xx_crtc_disable;
19ec6693
ACO
15975 } else if (IS_G4X(dev_priv)) {
15976 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15977 dev_priv->display.get_initial_plane_config =
15978 i9xx_get_initial_plane_config;
15979 dev_priv->display.crtc_compute_clock = g4x_crtc_compute_clock;
15980 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15981 dev_priv->display.crtc_disable = i9xx_crtc_disable;
70e8aa21
ACO
15982 } else if (IS_PINEVIEW(dev_priv)) {
15983 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15984 dev_priv->display.get_initial_plane_config =
15985 i9xx_get_initial_plane_config;
15986 dev_priv->display.crtc_compute_clock = pnv_crtc_compute_clock;
15987 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15988 dev_priv->display.crtc_disable = i9xx_crtc_disable;
81c97f52 15989 } else if (!IS_GEN2(dev_priv)) {
0e8ffe1b 15990 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
15991 dev_priv->display.get_initial_plane_config =
15992 i9xx_get_initial_plane_config;
d6dfee7a 15993 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
76e5a89c
DV
15994 dev_priv->display.crtc_enable = i9xx_crtc_enable;
15995 dev_priv->display.crtc_disable = i9xx_crtc_disable;
81c97f52
ACO
15996 } else {
15997 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
15998 dev_priv->display.get_initial_plane_config =
15999 i9xx_get_initial_plane_config;
16000 dev_priv->display.crtc_compute_clock = i8xx_crtc_compute_clock;
16001 dev_priv->display.crtc_enable = i9xx_crtc_enable;
16002 dev_priv->display.crtc_disable = i9xx_crtc_disable;
f564048e 16003 }
e70236a8 16004
e70236a8 16005 /* Returns the core display clock speed */
88212941 16006 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
1652d19e
VS
16007 dev_priv->display.get_display_clock_speed =
16008 skylake_get_display_clock_speed;
88212941 16009 else if (IS_BROXTON(dev_priv))
acd3f3d3
BP
16010 dev_priv->display.get_display_clock_speed =
16011 broxton_get_display_clock_speed;
88212941 16012 else if (IS_BROADWELL(dev_priv))
1652d19e
VS
16013 dev_priv->display.get_display_clock_speed =
16014 broadwell_get_display_clock_speed;
88212941 16015 else if (IS_HASWELL(dev_priv))
1652d19e
VS
16016 dev_priv->display.get_display_clock_speed =
16017 haswell_get_display_clock_speed;
88212941 16018 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
25eb05fc
JB
16019 dev_priv->display.get_display_clock_speed =
16020 valleyview_get_display_clock_speed;
88212941 16021 else if (IS_GEN5(dev_priv))
b37a6434
VS
16022 dev_priv->display.get_display_clock_speed =
16023 ilk_get_display_clock_speed;
88212941
ID
16024 else if (IS_I945G(dev_priv) || IS_BROADWATER(dev_priv) ||
16025 IS_GEN6(dev_priv) || IS_IVYBRIDGE(dev_priv))
e70236a8
JB
16026 dev_priv->display.get_display_clock_speed =
16027 i945_get_display_clock_speed;
88212941 16028 else if (IS_GM45(dev_priv))
34edce2f
VS
16029 dev_priv->display.get_display_clock_speed =
16030 gm45_get_display_clock_speed;
88212941 16031 else if (IS_CRESTLINE(dev_priv))
34edce2f
VS
16032 dev_priv->display.get_display_clock_speed =
16033 i965gm_get_display_clock_speed;
88212941 16034 else if (IS_PINEVIEW(dev_priv))
34edce2f
VS
16035 dev_priv->display.get_display_clock_speed =
16036 pnv_get_display_clock_speed;
88212941 16037 else if (IS_G33(dev_priv) || IS_G4X(dev_priv))
34edce2f
VS
16038 dev_priv->display.get_display_clock_speed =
16039 g33_get_display_clock_speed;
88212941 16040 else if (IS_I915G(dev_priv))
e70236a8
JB
16041 dev_priv->display.get_display_clock_speed =
16042 i915_get_display_clock_speed;
88212941 16043 else if (IS_I945GM(dev_priv) || IS_845G(dev_priv))
e70236a8
JB
16044 dev_priv->display.get_display_clock_speed =
16045 i9xx_misc_get_display_clock_speed;
88212941 16046 else if (IS_I915GM(dev_priv))
e70236a8
JB
16047 dev_priv->display.get_display_clock_speed =
16048 i915gm_get_display_clock_speed;
88212941 16049 else if (IS_I865G(dev_priv))
e70236a8
JB
16050 dev_priv->display.get_display_clock_speed =
16051 i865_get_display_clock_speed;
88212941 16052 else if (IS_I85X(dev_priv))
e70236a8 16053 dev_priv->display.get_display_clock_speed =
1b1d2716 16054 i85x_get_display_clock_speed;
623e01e5 16055 else { /* 830 */
88212941 16056 WARN(!IS_I830(dev_priv), "Unknown platform. Assuming 133 MHz CDCLK\n");
e70236a8
JB
16057 dev_priv->display.get_display_clock_speed =
16058 i830_get_display_clock_speed;
623e01e5 16059 }
e70236a8 16060
88212941 16061 if (IS_GEN5(dev_priv)) {
3bb11b53 16062 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
88212941 16063 } else if (IS_GEN6(dev_priv)) {
3bb11b53 16064 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
88212941 16065 } else if (IS_IVYBRIDGE(dev_priv)) {
3bb11b53
SJ
16066 /* FIXME: detect B0+ stepping and use auto training */
16067 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
88212941 16068 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
3bb11b53 16069 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
445e780b
VS
16070 }
16071
16072 if (IS_BROADWELL(dev_priv)) {
16073 dev_priv->display.modeset_commit_cdclk =
16074 broadwell_modeset_commit_cdclk;
16075 dev_priv->display.modeset_calc_cdclk =
16076 broadwell_modeset_calc_cdclk;
88212941 16077 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
27c329ed
ML
16078 dev_priv->display.modeset_commit_cdclk =
16079 valleyview_modeset_commit_cdclk;
16080 dev_priv->display.modeset_calc_cdclk =
16081 valleyview_modeset_calc_cdclk;
88212941 16082 } else if (IS_BROXTON(dev_priv)) {
27c329ed 16083 dev_priv->display.modeset_commit_cdclk =
324513c0 16084 bxt_modeset_commit_cdclk;
27c329ed 16085 dev_priv->display.modeset_calc_cdclk =
324513c0 16086 bxt_modeset_calc_cdclk;
c89e39f3
CT
16087 } else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
16088 dev_priv->display.modeset_commit_cdclk =
16089 skl_modeset_commit_cdclk;
16090 dev_priv->display.modeset_calc_cdclk =
16091 skl_modeset_calc_cdclk;
e70236a8 16092 }
5a21b665 16093
27082493
L
16094 if (dev_priv->info.gen >= 9)
16095 dev_priv->display.update_crtcs = skl_update_crtcs;
16096 else
16097 dev_priv->display.update_crtcs = intel_update_crtcs;
16098
5a21b665
DV
16099 switch (INTEL_INFO(dev_priv)->gen) {
16100 case 2:
16101 dev_priv->display.queue_flip = intel_gen2_queue_flip;
16102 break;
16103
16104 case 3:
16105 dev_priv->display.queue_flip = intel_gen3_queue_flip;
16106 break;
16107
16108 case 4:
16109 case 5:
16110 dev_priv->display.queue_flip = intel_gen4_queue_flip;
16111 break;
16112
16113 case 6:
16114 dev_priv->display.queue_flip = intel_gen6_queue_flip;
16115 break;
16116 case 7:
16117 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
16118 dev_priv->display.queue_flip = intel_gen7_queue_flip;
16119 break;
16120 case 9:
16121 /* Drop through - unsupported since execlist only. */
16122 default:
16123 /* Default just returns -ENODEV to indicate unsupported */
16124 dev_priv->display.queue_flip = intel_default_queue_flip;
16125 }
e70236a8
JB
16126}
16127
b690e96c
JB
16128/*
16129 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
16130 * resume, or other times. This quirk makes sure that's the case for
16131 * affected systems.
16132 */
0206e353 16133static void quirk_pipea_force(struct drm_device *dev)
b690e96c 16134{
fac5e23e 16135 struct drm_i915_private *dev_priv = to_i915(dev);
b690e96c
JB
16136
16137 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
bc0daf48 16138 DRM_INFO("applying pipe a force quirk\n");
b690e96c
JB
16139}
16140
b6b5d049
VS
16141static void quirk_pipeb_force(struct drm_device *dev)
16142{
fac5e23e 16143 struct drm_i915_private *dev_priv = to_i915(dev);
b6b5d049
VS
16144
16145 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
16146 DRM_INFO("applying pipe b force quirk\n");
16147}
16148
435793df
KP
16149/*
16150 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
16151 */
16152static void quirk_ssc_force_disable(struct drm_device *dev)
16153{
fac5e23e 16154 struct drm_i915_private *dev_priv = to_i915(dev);
435793df 16155 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
bc0daf48 16156 DRM_INFO("applying lvds SSC disable quirk\n");
435793df
KP
16157}
16158
4dca20ef 16159/*
5a15ab5b
CE
16160 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
16161 * brightness value
4dca20ef
CE
16162 */
16163static void quirk_invert_brightness(struct drm_device *dev)
16164{
fac5e23e 16165 struct drm_i915_private *dev_priv = to_i915(dev);
4dca20ef 16166 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
bc0daf48 16167 DRM_INFO("applying inverted panel brightness quirk\n");
435793df
KP
16168}
16169
9c72cc6f
SD
16170/* Some VBT's incorrectly indicate no backlight is present */
16171static void quirk_backlight_present(struct drm_device *dev)
16172{
fac5e23e 16173 struct drm_i915_private *dev_priv = to_i915(dev);
9c72cc6f
SD
16174 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
16175 DRM_INFO("applying backlight present quirk\n");
16176}
16177
b690e96c
JB
16178struct intel_quirk {
16179 int device;
16180 int subsystem_vendor;
16181 int subsystem_device;
16182 void (*hook)(struct drm_device *dev);
16183};
16184
5f85f176
EE
16185/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
16186struct intel_dmi_quirk {
16187 void (*hook)(struct drm_device *dev);
16188 const struct dmi_system_id (*dmi_id_list)[];
16189};
16190
16191static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
16192{
16193 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
16194 return 1;
16195}
16196
16197static const struct intel_dmi_quirk intel_dmi_quirks[] = {
16198 {
16199 .dmi_id_list = &(const struct dmi_system_id[]) {
16200 {
16201 .callback = intel_dmi_reverse_brightness,
16202 .ident = "NCR Corporation",
16203 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
16204 DMI_MATCH(DMI_PRODUCT_NAME, ""),
16205 },
16206 },
16207 { } /* terminating entry */
16208 },
16209 .hook = quirk_invert_brightness,
16210 },
16211};
16212
c43b5634 16213static struct intel_quirk intel_quirks[] = {
b690e96c
JB
16214 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
16215 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
16216
b690e96c
JB
16217 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
16218 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
16219
5f080c0f
VS
16220 /* 830 needs to leave pipe A & dpll A up */
16221 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
16222
b6b5d049
VS
16223 /* 830 needs to leave pipe B & dpll B up */
16224 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
16225
435793df
KP
16226 /* Lenovo U160 cannot use SSC on LVDS */
16227 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
070d329a
MAS
16228
16229 /* Sony Vaio Y cannot use SSC on LVDS */
16230 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
5a15ab5b 16231
be505f64
AH
16232 /* Acer Aspire 5734Z must invert backlight brightness */
16233 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
16234
16235 /* Acer/eMachines G725 */
16236 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
16237
16238 /* Acer/eMachines e725 */
16239 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
16240
16241 /* Acer/Packard Bell NCL20 */
16242 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
16243
16244 /* Acer Aspire 4736Z */
16245 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
0f540c3a
JN
16246
16247 /* Acer Aspire 5336 */
16248 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
2e93a1aa
SD
16249
16250 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
16251 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
d4967d8c 16252
dfb3d47b
SD
16253 /* Acer C720 Chromebook (Core i3 4005U) */
16254 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
16255
b2a9601c 16256 /* Apple Macbook 2,1 (Core 2 T7400) */
16257 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
16258
1b9448b0
JN
16259 /* Apple Macbook 4,1 */
16260 { 0x2a02, 0x106b, 0x00a1, quirk_backlight_present },
16261
d4967d8c
SD
16262 /* Toshiba CB35 Chromebook (Celeron 2955U) */
16263 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
724cb06f
SD
16264
16265 /* HP Chromebook 14 (Celeron 2955U) */
16266 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
cf6f0af9
JN
16267
16268 /* Dell Chromebook 11 */
16269 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
9be64eee
JN
16270
16271 /* Dell Chromebook 11 (2015 version) */
16272 { 0x0a16, 0x1028, 0x0a35, quirk_backlight_present },
b690e96c
JB
16273};
16274
16275static void intel_init_quirks(struct drm_device *dev)
16276{
16277 struct pci_dev *d = dev->pdev;
16278 int i;
16279
16280 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
16281 struct intel_quirk *q = &intel_quirks[i];
16282
16283 if (d->device == q->device &&
16284 (d->subsystem_vendor == q->subsystem_vendor ||
16285 q->subsystem_vendor == PCI_ANY_ID) &&
16286 (d->subsystem_device == q->subsystem_device ||
16287 q->subsystem_device == PCI_ANY_ID))
16288 q->hook(dev);
16289 }
5f85f176
EE
16290 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
16291 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
16292 intel_dmi_quirks[i].hook(dev);
16293 }
b690e96c
JB
16294}
16295
9cce37f4 16296/* Disable the VGA plane that we never use */
29b74b7f 16297static void i915_disable_vga(struct drm_i915_private *dev_priv)
9cce37f4 16298{
52a05c30 16299 struct pci_dev *pdev = dev_priv->drm.pdev;
9cce37f4 16300 u8 sr1;
920a14b2 16301 i915_reg_t vga_reg = i915_vgacntrl_reg(dev_priv);
9cce37f4 16302
2b37c616 16303 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
52a05c30 16304 vga_get_uninterruptible(pdev, VGA_RSRC_LEGACY_IO);
3fdcf431 16305 outb(SR01, VGA_SR_INDEX);
9cce37f4
JB
16306 sr1 = inb(VGA_SR_DATA);
16307 outb(sr1 | 1<<5, VGA_SR_DATA);
52a05c30 16308 vga_put(pdev, VGA_RSRC_LEGACY_IO);
9cce37f4
JB
16309 udelay(300);
16310
01f5a626 16311 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
9cce37f4
JB
16312 POSTING_READ(vga_reg);
16313}
16314
f817586c
DV
16315void intel_modeset_init_hw(struct drm_device *dev)
16316{
fac5e23e 16317 struct drm_i915_private *dev_priv = to_i915(dev);
1a617b77 16318
4c75b940 16319 intel_update_cdclk(dev_priv);
1a617b77
ML
16320
16321 dev_priv->atomic_cdclk_freq = dev_priv->cdclk_freq;
16322
46f16e63 16323 intel_init_clock_gating(dev_priv);
f817586c
DV
16324}
16325
d93c0372
MR
16326/*
16327 * Calculate what we think the watermarks should be for the state we've read
16328 * out of the hardware and then immediately program those watermarks so that
16329 * we ensure the hardware settings match our internal state.
16330 *
16331 * We can calculate what we think WM's should be by creating a duplicate of the
16332 * current state (which was constructed during hardware readout) and running it
16333 * through the atomic check code to calculate new watermark values in the
16334 * state object.
16335 */
16336static void sanitize_watermarks(struct drm_device *dev)
16337{
16338 struct drm_i915_private *dev_priv = to_i915(dev);
16339 struct drm_atomic_state *state;
ccf010fb 16340 struct intel_atomic_state *intel_state;
d93c0372
MR
16341 struct drm_crtc *crtc;
16342 struct drm_crtc_state *cstate;
16343 struct drm_modeset_acquire_ctx ctx;
16344 int ret;
16345 int i;
16346
16347 /* Only supported on platforms that use atomic watermark design */
ed4a6a7c 16348 if (!dev_priv->display.optimize_watermarks)
d93c0372
MR
16349 return;
16350
16351 /*
16352 * We need to hold connection_mutex before calling duplicate_state so
16353 * that the connector loop is protected.
16354 */
16355 drm_modeset_acquire_init(&ctx, 0);
16356retry:
0cd1262d 16357 ret = drm_modeset_lock_all_ctx(dev, &ctx);
d93c0372
MR
16358 if (ret == -EDEADLK) {
16359 drm_modeset_backoff(&ctx);
16360 goto retry;
16361 } else if (WARN_ON(ret)) {
0cd1262d 16362 goto fail;
d93c0372
MR
16363 }
16364
16365 state = drm_atomic_helper_duplicate_state(dev, &ctx);
16366 if (WARN_ON(IS_ERR(state)))
0cd1262d 16367 goto fail;
d93c0372 16368
ccf010fb
ML
16369 intel_state = to_intel_atomic_state(state);
16370
ed4a6a7c
MR
16371 /*
16372 * Hardware readout is the only time we don't want to calculate
16373 * intermediate watermarks (since we don't trust the current
16374 * watermarks).
16375 */
ccf010fb 16376 intel_state->skip_intermediate_wm = true;
ed4a6a7c 16377
d93c0372
MR
16378 ret = intel_atomic_check(dev, state);
16379 if (ret) {
16380 /*
16381 * If we fail here, it means that the hardware appears to be
16382 * programmed in a way that shouldn't be possible, given our
16383 * understanding of watermark requirements. This might mean a
16384 * mistake in the hardware readout code or a mistake in the
16385 * watermark calculations for a given platform. Raise a WARN
16386 * so that this is noticeable.
16387 *
16388 * If this actually happens, we'll have to just leave the
16389 * BIOS-programmed watermarks untouched and hope for the best.
16390 */
16391 WARN(true, "Could not determine valid watermarks for inherited state\n");
b9a1b717 16392 goto put_state;
d93c0372
MR
16393 }
16394
16395 /* Write calculated watermark values back */
d93c0372
MR
16396 for_each_crtc_in_state(state, crtc, cstate, i) {
16397 struct intel_crtc_state *cs = to_intel_crtc_state(cstate);
16398
ed4a6a7c 16399 cs->wm.need_postvbl_update = true;
ccf010fb 16400 dev_priv->display.optimize_watermarks(intel_state, cs);
d93c0372
MR
16401 }
16402
b9a1b717 16403put_state:
0853695c 16404 drm_atomic_state_put(state);
0cd1262d 16405fail:
d93c0372
MR
16406 drm_modeset_drop_locks(&ctx);
16407 drm_modeset_acquire_fini(&ctx);
16408}
16409
b079bd17 16410int intel_modeset_init(struct drm_device *dev)
79e53945 16411{
72e96d64
JL
16412 struct drm_i915_private *dev_priv = to_i915(dev);
16413 struct i915_ggtt *ggtt = &dev_priv->ggtt;
8cc87b75 16414 enum pipe pipe;
46f297fb 16415 struct intel_crtc *crtc;
79e53945
JB
16416
16417 drm_mode_config_init(dev);
16418
16419 dev->mode_config.min_width = 0;
16420 dev->mode_config.min_height = 0;
16421
019d96cb
DA
16422 dev->mode_config.preferred_depth = 24;
16423 dev->mode_config.prefer_shadow = 1;
16424
25bab385
TU
16425 dev->mode_config.allow_fb_modifiers = true;
16426
e6ecefaa 16427 dev->mode_config.funcs = &intel_mode_funcs;
79e53945 16428
b690e96c
JB
16429 intel_init_quirks(dev);
16430
62d75df7 16431 intel_init_pm(dev_priv);
1fa61106 16432
b7f05d4a 16433 if (INTEL_INFO(dev_priv)->num_pipes == 0)
b079bd17 16434 return 0;
e3c74757 16435
69f92f67
LW
16436 /*
16437 * There may be no VBT; and if the BIOS enabled SSC we can
16438 * just keep using it to avoid unnecessary flicker. Whereas if the
16439 * BIOS isn't using it, don't assume it will work even if the VBT
16440 * indicates as much.
16441 */
6e266956 16442 if (HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv)) {
69f92f67
LW
16443 bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
16444 DREF_SSC1_ENABLE);
16445
16446 if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) {
16447 DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n",
16448 bios_lvds_use_ssc ? "en" : "dis",
16449 dev_priv->vbt.lvds_use_ssc ? "en" : "dis");
16450 dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc;
16451 }
16452 }
16453
5db94019 16454 if (IS_GEN2(dev_priv)) {
a6c45cf0
CW
16455 dev->mode_config.max_width = 2048;
16456 dev->mode_config.max_height = 2048;
5db94019 16457 } else if (IS_GEN3(dev_priv)) {
5e4d6fa7
KP
16458 dev->mode_config.max_width = 4096;
16459 dev->mode_config.max_height = 4096;
79e53945 16460 } else {
a6c45cf0
CW
16461 dev->mode_config.max_width = 8192;
16462 dev->mode_config.max_height = 8192;
79e53945 16463 }
068be561 16464
50a0bc90
TU
16465 if (IS_845G(dev_priv) || IS_I865G(dev_priv)) {
16466 dev->mode_config.cursor_width = IS_845G(dev_priv) ? 64 : 512;
dc41c154 16467 dev->mode_config.cursor_height = 1023;
5db94019 16468 } else if (IS_GEN2(dev_priv)) {
068be561
DL
16469 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
16470 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
16471 } else {
16472 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
16473 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
16474 }
16475
72e96d64 16476 dev->mode_config.fb_base = ggtt->mappable_base;
79e53945 16477
28c97730 16478 DRM_DEBUG_KMS("%d display pipe%s available.\n",
b7f05d4a
TU
16479 INTEL_INFO(dev_priv)->num_pipes,
16480 INTEL_INFO(dev_priv)->num_pipes > 1 ? "s" : "");
79e53945 16481
055e393f 16482 for_each_pipe(dev_priv, pipe) {
b079bd17
VS
16483 int ret;
16484
5ab0d85b 16485 ret = intel_crtc_init(dev_priv, pipe);
b079bd17
VS
16486 if (ret) {
16487 drm_mode_config_cleanup(dev);
16488 return ret;
16489 }
79e53945
JB
16490 }
16491
bfa7df01 16492 intel_update_czclk(dev_priv);
4c75b940 16493 intel_update_cdclk(dev_priv);
bfa7df01 16494
e72f9fbf 16495 intel_shared_dpll_init(dev);
ee7b9f93 16496
b2045352 16497 if (dev_priv->max_cdclk_freq == 0)
4c75b940 16498 intel_update_max_cdclk(dev_priv);
b2045352 16499
9cce37f4 16500 /* Just disable it once at startup */
29b74b7f 16501 i915_disable_vga(dev_priv);
79e53945 16502 intel_setup_outputs(dev);
11be49eb 16503
6e9f798d 16504 drm_modeset_lock_all(dev);
043e9bda 16505 intel_modeset_setup_hw_state(dev);
6e9f798d 16506 drm_modeset_unlock_all(dev);
46f297fb 16507
d3fcc808 16508 for_each_intel_crtc(dev, crtc) {
eeebeac5
ML
16509 struct intel_initial_plane_config plane_config = {};
16510
46f297fb
JB
16511 if (!crtc->active)
16512 continue;
16513
46f297fb 16514 /*
46f297fb
JB
16515 * Note that reserving the BIOS fb up front prevents us
16516 * from stuffing other stolen allocations like the ring
16517 * on top. This prevents some ugliness at boot time, and
16518 * can even allow for smooth boot transitions if the BIOS
16519 * fb is large enough for the active pipe configuration.
16520 */
eeebeac5
ML
16521 dev_priv->display.get_initial_plane_config(crtc,
16522 &plane_config);
16523
16524 /*
16525 * If the fb is shared between multiple heads, we'll
16526 * just get the first one.
16527 */
16528 intel_find_initial_plane_obj(crtc, &plane_config);
46f297fb 16529 }
d93c0372
MR
16530
16531 /*
16532 * Make sure hardware watermarks really match the state we read out.
16533 * Note that we need to do this after reconstructing the BIOS fb's
16534 * since the watermark calculation done here will use pstate->fb.
16535 */
16536 sanitize_watermarks(dev);
b079bd17
VS
16537
16538 return 0;
2c7111db
CW
16539}
16540
7fad798e
DV
16541static void intel_enable_pipe_a(struct drm_device *dev)
16542{
16543 struct intel_connector *connector;
16544 struct drm_connector *crt = NULL;
16545 struct intel_load_detect_pipe load_detect_temp;
208bf9fd 16546 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
7fad798e
DV
16547
16548 /* We can't just switch on the pipe A, we need to set things up with a
16549 * proper mode and output configuration. As a gross hack, enable pipe A
16550 * by enabling the load detect pipe once. */
3a3371ff 16551 for_each_intel_connector(dev, connector) {
7fad798e
DV
16552 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
16553 crt = &connector->base;
16554 break;
16555 }
16556 }
16557
16558 if (!crt)
16559 return;
16560
208bf9fd 16561 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
49172fee 16562 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
7fad798e
DV
16563}
16564
fa555837
DV
16565static bool
16566intel_check_plane_mapping(struct intel_crtc *crtc)
16567{
b7f05d4a 16568 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
649636ef 16569 u32 val;
fa555837 16570
b7f05d4a 16571 if (INTEL_INFO(dev_priv)->num_pipes == 1)
fa555837
DV
16572 return true;
16573
649636ef 16574 val = I915_READ(DSPCNTR(!crtc->plane));
fa555837
DV
16575
16576 if ((val & DISPLAY_PLANE_ENABLE) &&
16577 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
16578 return false;
16579
16580 return true;
16581}
16582
02e93c35
VS
16583static bool intel_crtc_has_encoders(struct intel_crtc *crtc)
16584{
16585 struct drm_device *dev = crtc->base.dev;
16586 struct intel_encoder *encoder;
16587
16588 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
16589 return true;
16590
16591 return false;
16592}
16593
496b0fc3
ML
16594static struct intel_connector *intel_encoder_find_connector(struct intel_encoder *encoder)
16595{
16596 struct drm_device *dev = encoder->base.dev;
16597 struct intel_connector *connector;
16598
16599 for_each_connector_on_encoder(dev, &encoder->base, connector)
16600 return connector;
16601
16602 return NULL;
16603}
16604
a168f5b3
VS
16605static bool has_pch_trancoder(struct drm_i915_private *dev_priv,
16606 enum transcoder pch_transcoder)
16607{
16608 return HAS_PCH_IBX(dev_priv) || HAS_PCH_CPT(dev_priv) ||
16609 (HAS_PCH_LPT_H(dev_priv) && pch_transcoder == TRANSCODER_A);
16610}
16611
24929352
DV
16612static void intel_sanitize_crtc(struct intel_crtc *crtc)
16613{
16614 struct drm_device *dev = crtc->base.dev;
fac5e23e 16615 struct drm_i915_private *dev_priv = to_i915(dev);
4d1de975 16616 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
24929352 16617
24929352 16618 /* Clear any frame start delays used for debugging left by the BIOS */
4d1de975
JN
16619 if (!transcoder_is_dsi(cpu_transcoder)) {
16620 i915_reg_t reg = PIPECONF(cpu_transcoder);
16621
16622 I915_WRITE(reg,
16623 I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
16624 }
24929352 16625
d3eaf884 16626 /* restore vblank interrupts to correct state */
9625604c 16627 drm_crtc_vblank_reset(&crtc->base);
d297e103 16628 if (crtc->active) {
f9cd7b88
VS
16629 struct intel_plane *plane;
16630
9625604c 16631 drm_crtc_vblank_on(&crtc->base);
f9cd7b88
VS
16632
16633 /* Disable everything but the primary plane */
16634 for_each_intel_plane_on_crtc(dev, crtc, plane) {
16635 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
16636 continue;
16637
16638 plane->disable_plane(&plane->base, &crtc->base);
16639 }
9625604c 16640 }
d3eaf884 16641
24929352 16642 /* We need to sanitize the plane -> pipe mapping first because this will
fa555837
DV
16643 * disable the crtc (and hence change the state) if it is wrong. Note
16644 * that gen4+ has a fixed plane -> pipe mapping. */
6315b5d3 16645 if (INTEL_GEN(dev_priv) < 4 && !intel_check_plane_mapping(crtc)) {
24929352
DV
16646 bool plane;
16647
78108b7c
VS
16648 DRM_DEBUG_KMS("[CRTC:%d:%s] wrong plane connection detected!\n",
16649 crtc->base.base.id, crtc->base.name);
24929352
DV
16650
16651 /* Pipe has the wrong plane attached and the plane is active.
16652 * Temporarily change the plane mapping and disable everything
16653 * ... */
16654 plane = crtc->plane;
936e71e3 16655 to_intel_plane_state(crtc->base.primary->state)->base.visible = true;
24929352 16656 crtc->plane = !plane;
b17d48e2 16657 intel_crtc_disable_noatomic(&crtc->base);
24929352 16658 crtc->plane = plane;
24929352 16659 }
24929352 16660
7fad798e
DV
16661 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
16662 crtc->pipe == PIPE_A && !crtc->active) {
16663 /* BIOS forgot to enable pipe A, this mostly happens after
16664 * resume. Force-enable the pipe to fix this, the update_dpms
16665 * call below we restore the pipe to the right state, but leave
16666 * the required bits on. */
16667 intel_enable_pipe_a(dev);
16668 }
16669
24929352
DV
16670 /* Adjust the state of the output pipe according to whether we
16671 * have active connectors/encoders. */
842e0307 16672 if (crtc->active && !intel_crtc_has_encoders(crtc))
b17d48e2 16673 intel_crtc_disable_noatomic(&crtc->base);
24929352 16674
49cff963 16675 if (crtc->active || HAS_GMCH_DISPLAY(dev_priv)) {
4cc31489
DV
16676 /*
16677 * We start out with underrun reporting disabled to avoid races.
16678 * For correct bookkeeping mark this on active crtcs.
16679 *
c5ab3bc0
DV
16680 * Also on gmch platforms we dont have any hardware bits to
16681 * disable the underrun reporting. Which means we need to start
16682 * out with underrun reporting disabled also on inactive pipes,
16683 * since otherwise we'll complain about the garbage we read when
16684 * e.g. coming up after runtime pm.
16685 *
4cc31489
DV
16686 * No protection against concurrent access is required - at
16687 * worst a fifo underrun happens which also sets this to false.
16688 */
16689 crtc->cpu_fifo_underrun_disabled = true;
a168f5b3
VS
16690 /*
16691 * We track the PCH trancoder underrun reporting state
16692 * within the crtc. With crtc for pipe A housing the underrun
16693 * reporting state for PCH transcoder A, crtc for pipe B housing
16694 * it for PCH transcoder B, etc. LPT-H has only PCH transcoder A,
16695 * and marking underrun reporting as disabled for the non-existing
16696 * PCH transcoders B and C would prevent enabling the south
16697 * error interrupt (see cpt_can_enable_serr_int()).
16698 */
16699 if (has_pch_trancoder(dev_priv, (enum transcoder)crtc->pipe))
16700 crtc->pch_fifo_underrun_disabled = true;
4cc31489 16701 }
24929352
DV
16702}
16703
16704static void intel_sanitize_encoder(struct intel_encoder *encoder)
16705{
16706 struct intel_connector *connector;
24929352
DV
16707
16708 /* We need to check both for a crtc link (meaning that the
16709 * encoder is active and trying to read from a pipe) and the
16710 * pipe itself being active. */
16711 bool has_active_crtc = encoder->base.crtc &&
16712 to_intel_crtc(encoder->base.crtc)->active;
16713
496b0fc3
ML
16714 connector = intel_encoder_find_connector(encoder);
16715 if (connector && !has_active_crtc) {
24929352
DV
16716 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
16717 encoder->base.base.id,
8e329a03 16718 encoder->base.name);
24929352
DV
16719
16720 /* Connector is active, but has no active pipe. This is
16721 * fallout from our resume register restoring. Disable
16722 * the encoder manually again. */
16723 if (encoder->base.crtc) {
fd6bbda9
ML
16724 struct drm_crtc_state *crtc_state = encoder->base.crtc->state;
16725
24929352
DV
16726 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
16727 encoder->base.base.id,
8e329a03 16728 encoder->base.name);
fd6bbda9 16729 encoder->disable(encoder, to_intel_crtc_state(crtc_state), connector->base.state);
a62d1497 16730 if (encoder->post_disable)
fd6bbda9 16731 encoder->post_disable(encoder, to_intel_crtc_state(crtc_state), connector->base.state);
24929352 16732 }
7f1950fb 16733 encoder->base.crtc = NULL;
24929352
DV
16734
16735 /* Inconsistent output/port/pipe state happens presumably due to
16736 * a bug in one of the get_hw_state functions. Or someplace else
16737 * in our code, like the register restore mess on resume. Clamp
16738 * things to off as a safer default. */
fd6bbda9
ML
16739
16740 connector->base.dpms = DRM_MODE_DPMS_OFF;
16741 connector->base.encoder = NULL;
24929352
DV
16742 }
16743 /* Enabled encoders without active connectors will be fixed in
16744 * the crtc fixup. */
16745}
16746
29b74b7f 16747void i915_redisable_vga_power_on(struct drm_i915_private *dev_priv)
0fde901f 16748{
920a14b2 16749 i915_reg_t vga_reg = i915_vgacntrl_reg(dev_priv);
0fde901f 16750
04098753
ID
16751 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
16752 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
29b74b7f 16753 i915_disable_vga(dev_priv);
04098753
ID
16754 }
16755}
16756
29b74b7f 16757void i915_redisable_vga(struct drm_i915_private *dev_priv)
04098753 16758{
8dc8a27c
PZ
16759 /* This function can be called both from intel_modeset_setup_hw_state or
16760 * at a very early point in our resume sequence, where the power well
16761 * structures are not yet restored. Since this function is at a very
16762 * paranoid "someone might have enabled VGA while we were not looking"
16763 * level, just check if the power well is enabled instead of trying to
16764 * follow the "don't touch the power well if we don't need it" policy
16765 * the rest of the driver uses. */
6392f847 16766 if (!intel_display_power_get_if_enabled(dev_priv, POWER_DOMAIN_VGA))
8dc8a27c
PZ
16767 return;
16768
29b74b7f 16769 i915_redisable_vga_power_on(dev_priv);
6392f847
ID
16770
16771 intel_display_power_put(dev_priv, POWER_DOMAIN_VGA);
0fde901f
KM
16772}
16773
f9cd7b88 16774static bool primary_get_hw_state(struct intel_plane *plane)
98ec7739 16775{
f9cd7b88 16776 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
98ec7739 16777
f9cd7b88 16778 return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE;
d032ffa0
ML
16779}
16780
f9cd7b88
VS
16781/* FIXME read out full plane state for all planes */
16782static void readout_plane_state(struct intel_crtc *crtc)
d032ffa0 16783{
b26d3ea3 16784 struct drm_plane *primary = crtc->base.primary;
f9cd7b88 16785 struct intel_plane_state *plane_state =
b26d3ea3 16786 to_intel_plane_state(primary->state);
d032ffa0 16787
936e71e3 16788 plane_state->base.visible = crtc->active &&
b26d3ea3
ML
16789 primary_get_hw_state(to_intel_plane(primary));
16790
936e71e3 16791 if (plane_state->base.visible)
b26d3ea3 16792 crtc->base.state->plane_mask |= 1 << drm_plane_index(primary);
98ec7739
VS
16793}
16794
30e984df 16795static void intel_modeset_readout_hw_state(struct drm_device *dev)
24929352 16796{
fac5e23e 16797 struct drm_i915_private *dev_priv = to_i915(dev);
24929352 16798 enum pipe pipe;
24929352
DV
16799 struct intel_crtc *crtc;
16800 struct intel_encoder *encoder;
16801 struct intel_connector *connector;
5358901f 16802 int i;
24929352 16803
565602d7
ML
16804 dev_priv->active_crtcs = 0;
16805
d3fcc808 16806 for_each_intel_crtc(dev, crtc) {
565602d7
ML
16807 struct intel_crtc_state *crtc_state = crtc->config;
16808 int pixclk = 0;
3b117c8f 16809
ec2dc6a0 16810 __drm_atomic_helper_crtc_destroy_state(&crtc_state->base);
565602d7
ML
16811 memset(crtc_state, 0, sizeof(*crtc_state));
16812 crtc_state->base.crtc = &crtc->base;
24929352 16813
565602d7
ML
16814 crtc_state->base.active = crtc_state->base.enable =
16815 dev_priv->display.get_pipe_config(crtc, crtc_state);
16816
16817 crtc->base.enabled = crtc_state->base.enable;
16818 crtc->active = crtc_state->base.active;
16819
16820 if (crtc_state->base.active) {
16821 dev_priv->active_crtcs |= 1 << crtc->pipe;
16822
c89e39f3 16823 if (INTEL_GEN(dev_priv) >= 9 || IS_BROADWELL(dev_priv))
565602d7 16824 pixclk = ilk_pipe_pixel_rate(crtc_state);
9558d15d 16825 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
565602d7
ML
16826 pixclk = crtc_state->base.adjusted_mode.crtc_clock;
16827 else
16828 WARN_ON(dev_priv->display.modeset_calc_cdclk);
9558d15d
VS
16829
16830 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
16831 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
16832 pixclk = DIV_ROUND_UP(pixclk * 100, 95);
565602d7
ML
16833 }
16834
16835 dev_priv->min_pixclk[crtc->pipe] = pixclk;
b70709a6 16836
f9cd7b88 16837 readout_plane_state(crtc);
24929352 16838
78108b7c
VS
16839 DRM_DEBUG_KMS("[CRTC:%d:%s] hw state readout: %s\n",
16840 crtc->base.base.id, crtc->base.name,
08c4d7fc 16841 enableddisabled(crtc->active));
24929352
DV
16842 }
16843
5358901f
DV
16844 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
16845 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
16846
2edd6443
ACO
16847 pll->on = pll->funcs.get_hw_state(dev_priv, pll,
16848 &pll->config.hw_state);
3e369b76 16849 pll->config.crtc_mask = 0;
d3fcc808 16850 for_each_intel_crtc(dev, crtc) {
2dd66ebd 16851 if (crtc->active && crtc->config->shared_dpll == pll)
3e369b76 16852 pll->config.crtc_mask |= 1 << crtc->pipe;
5358901f 16853 }
2dd66ebd 16854 pll->active_mask = pll->config.crtc_mask;
5358901f 16855
1e6f2ddc 16856 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
3e369b76 16857 pll->name, pll->config.crtc_mask, pll->on);
5358901f
DV
16858 }
16859
b2784e15 16860 for_each_intel_encoder(dev, encoder) {
24929352
DV
16861 pipe = 0;
16862
16863 if (encoder->get_hw_state(encoder, &pipe)) {
98187836 16864 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
e2af48c6 16865
045ac3b5 16866 encoder->base.crtc = &crtc->base;
253c84c8 16867 crtc->config->output_types |= 1 << encoder->type;
6e3c9717 16868 encoder->get_config(encoder, crtc->config);
24929352
DV
16869 } else {
16870 encoder->base.crtc = NULL;
16871 }
16872
6f2bcceb 16873 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
08c4d7fc
TU
16874 encoder->base.base.id, encoder->base.name,
16875 enableddisabled(encoder->base.crtc),
6f2bcceb 16876 pipe_name(pipe));
24929352
DV
16877 }
16878
3a3371ff 16879 for_each_intel_connector(dev, connector) {
24929352
DV
16880 if (connector->get_hw_state(connector)) {
16881 connector->base.dpms = DRM_MODE_DPMS_ON;
2aa974c9
ML
16882
16883 encoder = connector->encoder;
16884 connector->base.encoder = &encoder->base;
16885
16886 if (encoder->base.crtc &&
16887 encoder->base.crtc->state->active) {
16888 /*
16889 * This has to be done during hardware readout
16890 * because anything calling .crtc_disable may
16891 * rely on the connector_mask being accurate.
16892 */
16893 encoder->base.crtc->state->connector_mask |=
16894 1 << drm_connector_index(&connector->base);
e87a52b3
ML
16895 encoder->base.crtc->state->encoder_mask |=
16896 1 << drm_encoder_index(&encoder->base);
2aa974c9
ML
16897 }
16898
24929352
DV
16899 } else {
16900 connector->base.dpms = DRM_MODE_DPMS_OFF;
16901 connector->base.encoder = NULL;
16902 }
16903 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
08c4d7fc
TU
16904 connector->base.base.id, connector->base.name,
16905 enableddisabled(connector->base.encoder));
24929352 16906 }
7f4c6284
VS
16907
16908 for_each_intel_crtc(dev, crtc) {
16909 crtc->base.hwmode = crtc->config->base.adjusted_mode;
16910
16911 memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
16912 if (crtc->base.state->active) {
16913 intel_mode_from_pipe_config(&crtc->base.mode, crtc->config);
16914 intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config);
16915 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode));
16916
16917 /*
16918 * The initial mode needs to be set in order to keep
16919 * the atomic core happy. It wants a valid mode if the
16920 * crtc's enabled, so we do the above call.
16921 *
16922 * At this point some state updated by the connectors
16923 * in their ->detect() callback has not run yet, so
16924 * no recalculation can be done yet.
16925 *
16926 * Even if we could do a recalculation and modeset
16927 * right now it would cause a double modeset if
16928 * fbdev or userspace chooses a different initial mode.
16929 *
16930 * If that happens, someone indicated they wanted a
16931 * mode change, which means it's safe to do a full
16932 * recalculation.
16933 */
16934 crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;
9eca6832
VS
16935
16936 drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
16937 update_scanline_offset(crtc);
7f4c6284 16938 }
e3b247da
VS
16939
16940 intel_pipe_config_sanity_check(dev_priv, crtc->config);
7f4c6284 16941 }
30e984df
DV
16942}
16943
043e9bda
ML
16944/* Scan out the current hw modeset state,
16945 * and sanitizes it to the current state
16946 */
16947static void
16948intel_modeset_setup_hw_state(struct drm_device *dev)
30e984df 16949{
fac5e23e 16950 struct drm_i915_private *dev_priv = to_i915(dev);
30e984df 16951 enum pipe pipe;
30e984df
DV
16952 struct intel_crtc *crtc;
16953 struct intel_encoder *encoder;
35c95375 16954 int i;
30e984df
DV
16955
16956 intel_modeset_readout_hw_state(dev);
24929352
DV
16957
16958 /* HW state is read out, now we need to sanitize this mess. */
b2784e15 16959 for_each_intel_encoder(dev, encoder) {
24929352
DV
16960 intel_sanitize_encoder(encoder);
16961 }
16962
055e393f 16963 for_each_pipe(dev_priv, pipe) {
98187836 16964 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
e2af48c6 16965
24929352 16966 intel_sanitize_crtc(crtc);
6e3c9717
ACO
16967 intel_dump_pipe_config(crtc, crtc->config,
16968 "[setup_hw_state]");
24929352 16969 }
9a935856 16970
d29b2f9d
ACO
16971 intel_modeset_update_connector_atomic_state(dev);
16972
35c95375
DV
16973 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
16974 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
16975
2dd66ebd 16976 if (!pll->on || pll->active_mask)
35c95375
DV
16977 continue;
16978
16979 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
16980
2edd6443 16981 pll->funcs.disable(dev_priv, pll);
35c95375
DV
16982 pll->on = false;
16983 }
16984
920a14b2 16985 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
6eb1a681 16986 vlv_wm_get_hw_state(dev);
5db94019 16987 else if (IS_GEN9(dev_priv))
3078999f 16988 skl_wm_get_hw_state(dev);
6e266956 16989 else if (HAS_PCH_SPLIT(dev_priv))
243e6a44 16990 ilk_wm_get_hw_state(dev);
292b990e
ML
16991
16992 for_each_intel_crtc(dev, crtc) {
16993 unsigned long put_domains;
16994
74bff5f9 16995 put_domains = modeset_get_crtc_power_domains(&crtc->base, crtc->config);
292b990e
ML
16996 if (WARN_ON(put_domains))
16997 modeset_put_power_domains(dev_priv, put_domains);
16998 }
16999 intel_display_set_init_power(dev_priv, false);
010cf73d
PZ
17000
17001 intel_fbc_init_pipe_state(dev_priv);
043e9bda 17002}
7d0bc1ea 17003
043e9bda
ML
17004void intel_display_resume(struct drm_device *dev)
17005{
e2c8b870
ML
17006 struct drm_i915_private *dev_priv = to_i915(dev);
17007 struct drm_atomic_state *state = dev_priv->modeset_restore_state;
17008 struct drm_modeset_acquire_ctx ctx;
043e9bda 17009 int ret;
f30da187 17010
e2c8b870 17011 dev_priv->modeset_restore_state = NULL;
73974893
ML
17012 if (state)
17013 state->acquire_ctx = &ctx;
043e9bda 17014
ea49c9ac
ML
17015 /*
17016 * This is a cludge because with real atomic modeset mode_config.mutex
17017 * won't be taken. Unfortunately some probed state like
17018 * audio_codec_enable is still protected by mode_config.mutex, so lock
17019 * it here for now.
17020 */
17021 mutex_lock(&dev->mode_config.mutex);
e2c8b870 17022 drm_modeset_acquire_init(&ctx, 0);
043e9bda 17023
73974893
ML
17024 while (1) {
17025 ret = drm_modeset_lock_all_ctx(dev, &ctx);
17026 if (ret != -EDEADLK)
17027 break;
043e9bda 17028
e2c8b870 17029 drm_modeset_backoff(&ctx);
e2c8b870 17030 }
043e9bda 17031
73974893
ML
17032 if (!ret)
17033 ret = __intel_display_resume(dev, state);
17034
e2c8b870
ML
17035 drm_modeset_drop_locks(&ctx);
17036 drm_modeset_acquire_fini(&ctx);
ea49c9ac 17037 mutex_unlock(&dev->mode_config.mutex);
043e9bda 17038
0853695c 17039 if (ret)
e2c8b870 17040 DRM_ERROR("Restoring old state failed with %i\n", ret);
0853695c 17041 drm_atomic_state_put(state);
2c7111db
CW
17042}
17043
17044void intel_modeset_gem_init(struct drm_device *dev)
17045{
dc97997a 17046 struct drm_i915_private *dev_priv = to_i915(dev);
484b41dd 17047 struct drm_crtc *c;
2ff8fde1 17048 struct drm_i915_gem_object *obj;
484b41dd 17049
dc97997a 17050 intel_init_gt_powersave(dev_priv);
ae48434c 17051
1833b134 17052 intel_modeset_init_hw(dev);
02e792fb 17053
1ee8da6d 17054 intel_setup_overlay(dev_priv);
484b41dd
JB
17055
17056 /*
17057 * Make sure any fbs we allocated at startup are properly
17058 * pinned & fenced. When we do the allocation it's too early
17059 * for this.
17060 */
70e1e0ec 17061 for_each_crtc(dev, c) {
058d88c4
CW
17062 struct i915_vma *vma;
17063
2ff8fde1
MR
17064 obj = intel_fb_obj(c->primary->fb);
17065 if (obj == NULL)
484b41dd
JB
17066 continue;
17067
e0d6149b 17068 mutex_lock(&dev->struct_mutex);
058d88c4 17069 vma = intel_pin_and_fence_fb_obj(c->primary->fb,
3465c580 17070 c->primary->state->rotation);
e0d6149b 17071 mutex_unlock(&dev->struct_mutex);
058d88c4 17072 if (IS_ERR(vma)) {
484b41dd
JB
17073 DRM_ERROR("failed to pin boot fb on pipe %d\n",
17074 to_intel_crtc(c)->pipe);
66e514c1 17075 drm_framebuffer_unreference(c->primary->fb);
5a21b665 17076 c->primary->fb = NULL;
36750f28 17077 c->primary->crtc = c->primary->state->crtc = NULL;
5a21b665 17078 update_state_fb(c->primary);
36750f28 17079 c->state->plane_mask &= ~(1 << drm_plane_index(c->primary));
484b41dd
JB
17080 }
17081 }
1ebaa0b9
CW
17082}
17083
17084int intel_connector_register(struct drm_connector *connector)
17085{
17086 struct intel_connector *intel_connector = to_intel_connector(connector);
17087 int ret;
17088
17089 ret = intel_backlight_device_register(intel_connector);
17090 if (ret)
17091 goto err;
17092
17093 return 0;
0962c3c9 17094
1ebaa0b9
CW
17095err:
17096 return ret;
79e53945
JB
17097}
17098
c191eca1 17099void intel_connector_unregister(struct drm_connector *connector)
4932e2c3 17100{
e63d87c0 17101 struct intel_connector *intel_connector = to_intel_connector(connector);
4932e2c3 17102
e63d87c0 17103 intel_backlight_device_unregister(intel_connector);
4932e2c3 17104 intel_panel_destroy_backlight(connector);
4932e2c3
ID
17105}
17106
79e53945
JB
17107void intel_modeset_cleanup(struct drm_device *dev)
17108{
fac5e23e 17109 struct drm_i915_private *dev_priv = to_i915(dev);
652c393a 17110
dc97997a 17111 intel_disable_gt_powersave(dev_priv);
2eb5252e 17112
fd0c0642
DV
17113 /*
17114 * Interrupts and polling as the first thing to avoid creating havoc.
2eb5252e 17115 * Too much stuff here (turning of connectors, ...) would
fd0c0642
DV
17116 * experience fancy races otherwise.
17117 */
2aeb7d3a 17118 intel_irq_uninstall(dev_priv);
eb21b92b 17119
fd0c0642
DV
17120 /*
17121 * Due to the hpd irq storm handling the hotplug work can re-arm the
17122 * poll handlers. Hence disable polling after hpd handling is shut down.
17123 */
f87ea761 17124 drm_kms_helper_poll_fini(dev);
fd0c0642 17125
723bfd70
JB
17126 intel_unregister_dsm_handler();
17127
c937ab3e 17128 intel_fbc_global_disable(dev_priv);
69341a5e 17129
1630fe75
CW
17130 /* flush any delayed tasks or pending work */
17131 flush_scheduled_work();
17132
79e53945 17133 drm_mode_config_cleanup(dev);
4d7bb011 17134
1ee8da6d 17135 intel_cleanup_overlay(dev_priv);
ae48434c 17136
dc97997a 17137 intel_cleanup_gt_powersave(dev_priv);
f5949141
DV
17138
17139 intel_teardown_gmbus(dev);
79e53945
JB
17140}
17141
df0e9248
CW
17142void intel_connector_attach_encoder(struct intel_connector *connector,
17143 struct intel_encoder *encoder)
17144{
17145 connector->encoder = encoder;
17146 drm_mode_connector_attach_encoder(&connector->base,
17147 &encoder->base);
79e53945 17148}
28d52043
DA
17149
17150/*
17151 * set vga decode state - true == enable VGA decode
17152 */
6315b5d3 17153int intel_modeset_vga_set_state(struct drm_i915_private *dev_priv, bool state)
28d52043 17154{
6315b5d3 17155 unsigned reg = INTEL_GEN(dev_priv) >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
28d52043
DA
17156 u16 gmch_ctrl;
17157
75fa041d
CW
17158 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
17159 DRM_ERROR("failed to read control word\n");
17160 return -EIO;
17161 }
17162
c0cc8a55
CW
17163 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
17164 return 0;
17165
28d52043
DA
17166 if (state)
17167 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
17168 else
17169 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
75fa041d
CW
17170
17171 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
17172 DRM_ERROR("failed to write control word\n");
17173 return -EIO;
17174 }
17175
28d52043
DA
17176 return 0;
17177}
c4a1d9e4 17178
98a2f411
CW
17179#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
17180
c4a1d9e4 17181struct intel_display_error_state {
ff57f1b0
PZ
17182
17183 u32 power_well_driver;
17184
63b66e5b
CW
17185 int num_transcoders;
17186
c4a1d9e4
CW
17187 struct intel_cursor_error_state {
17188 u32 control;
17189 u32 position;
17190 u32 base;
17191 u32 size;
52331309 17192 } cursor[I915_MAX_PIPES];
c4a1d9e4
CW
17193
17194 struct intel_pipe_error_state {
ddf9c536 17195 bool power_domain_on;
c4a1d9e4 17196 u32 source;
f301b1e1 17197 u32 stat;
52331309 17198 } pipe[I915_MAX_PIPES];
c4a1d9e4
CW
17199
17200 struct intel_plane_error_state {
17201 u32 control;
17202 u32 stride;
17203 u32 size;
17204 u32 pos;
17205 u32 addr;
17206 u32 surface;
17207 u32 tile_offset;
52331309 17208 } plane[I915_MAX_PIPES];
63b66e5b
CW
17209
17210 struct intel_transcoder_error_state {
ddf9c536 17211 bool power_domain_on;
63b66e5b
CW
17212 enum transcoder cpu_transcoder;
17213
17214 u32 conf;
17215
17216 u32 htotal;
17217 u32 hblank;
17218 u32 hsync;
17219 u32 vtotal;
17220 u32 vblank;
17221 u32 vsync;
17222 } transcoder[4];
c4a1d9e4
CW
17223};
17224
17225struct intel_display_error_state *
c033666a 17226intel_display_capture_error_state(struct drm_i915_private *dev_priv)
c4a1d9e4 17227{
c4a1d9e4 17228 struct intel_display_error_state *error;
63b66e5b
CW
17229 int transcoders[] = {
17230 TRANSCODER_A,
17231 TRANSCODER_B,
17232 TRANSCODER_C,
17233 TRANSCODER_EDP,
17234 };
c4a1d9e4
CW
17235 int i;
17236
c033666a 17237 if (INTEL_INFO(dev_priv)->num_pipes == 0)
63b66e5b
CW
17238 return NULL;
17239
9d1cb914 17240 error = kzalloc(sizeof(*error), GFP_ATOMIC);
c4a1d9e4
CW
17241 if (error == NULL)
17242 return NULL;
17243
c033666a 17244 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
ff57f1b0
PZ
17245 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
17246
055e393f 17247 for_each_pipe(dev_priv, i) {
ddf9c536 17248 error->pipe[i].power_domain_on =
f458ebbc
DV
17249 __intel_display_power_is_enabled(dev_priv,
17250 POWER_DOMAIN_PIPE(i));
ddf9c536 17251 if (!error->pipe[i].power_domain_on)
9d1cb914
PZ
17252 continue;
17253
5efb3e28
VS
17254 error->cursor[i].control = I915_READ(CURCNTR(i));
17255 error->cursor[i].position = I915_READ(CURPOS(i));
17256 error->cursor[i].base = I915_READ(CURBASE(i));
c4a1d9e4
CW
17257
17258 error->plane[i].control = I915_READ(DSPCNTR(i));
17259 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
c033666a 17260 if (INTEL_GEN(dev_priv) <= 3) {
51889b35 17261 error->plane[i].size = I915_READ(DSPSIZE(i));
80ca378b
PZ
17262 error->plane[i].pos = I915_READ(DSPPOS(i));
17263 }
c033666a 17264 if (INTEL_GEN(dev_priv) <= 7 && !IS_HASWELL(dev_priv))
ca291363 17265 error->plane[i].addr = I915_READ(DSPADDR(i));
c033666a 17266 if (INTEL_GEN(dev_priv) >= 4) {
c4a1d9e4
CW
17267 error->plane[i].surface = I915_READ(DSPSURF(i));
17268 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
17269 }
17270
c4a1d9e4 17271 error->pipe[i].source = I915_READ(PIPESRC(i));
f301b1e1 17272
c033666a 17273 if (HAS_GMCH_DISPLAY(dev_priv))
f301b1e1 17274 error->pipe[i].stat = I915_READ(PIPESTAT(i));
63b66e5b
CW
17275 }
17276
4d1de975 17277 /* Note: this does not include DSI transcoders. */
c033666a 17278 error->num_transcoders = INTEL_INFO(dev_priv)->num_pipes;
2d1fe073 17279 if (HAS_DDI(dev_priv))
63b66e5b
CW
17280 error->num_transcoders++; /* Account for eDP. */
17281
17282 for (i = 0; i < error->num_transcoders; i++) {
17283 enum transcoder cpu_transcoder = transcoders[i];
17284
ddf9c536 17285 error->transcoder[i].power_domain_on =
f458ebbc 17286 __intel_display_power_is_enabled(dev_priv,
38cc1daf 17287 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
ddf9c536 17288 if (!error->transcoder[i].power_domain_on)
9d1cb914
PZ
17289 continue;
17290
63b66e5b
CW
17291 error->transcoder[i].cpu_transcoder = cpu_transcoder;
17292
17293 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
17294 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
17295 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
17296 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
17297 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
17298 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
17299 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
c4a1d9e4
CW
17300 }
17301
17302 return error;
17303}
17304
edc3d884
MK
17305#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
17306
c4a1d9e4 17307void
edc3d884 17308intel_display_print_error_state(struct drm_i915_error_state_buf *m,
5f56d5f9 17309 struct drm_i915_private *dev_priv,
c4a1d9e4
CW
17310 struct intel_display_error_state *error)
17311{
17312 int i;
17313
63b66e5b
CW
17314 if (!error)
17315 return;
17316
b7f05d4a 17317 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev_priv)->num_pipes);
8652744b 17318 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
edc3d884 17319 err_printf(m, "PWR_WELL_CTL2: %08x\n",
ff57f1b0 17320 error->power_well_driver);
055e393f 17321 for_each_pipe(dev_priv, i) {
edc3d884 17322 err_printf(m, "Pipe [%d]:\n", i);
ddf9c536 17323 err_printf(m, " Power: %s\n",
87ad3212 17324 onoff(error->pipe[i].power_domain_on));
edc3d884 17325 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
f301b1e1 17326 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
edc3d884
MK
17327
17328 err_printf(m, "Plane [%d]:\n", i);
17329 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
17330 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
5f56d5f9 17331 if (INTEL_GEN(dev_priv) <= 3) {
edc3d884
MK
17332 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
17333 err_printf(m, " POS: %08x\n", error->plane[i].pos);
80ca378b 17334 }
772c2a51 17335 if (INTEL_GEN(dev_priv) <= 7 && !IS_HASWELL(dev_priv))
edc3d884 17336 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
5f56d5f9 17337 if (INTEL_GEN(dev_priv) >= 4) {
edc3d884
MK
17338 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
17339 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
c4a1d9e4
CW
17340 }
17341
edc3d884
MK
17342 err_printf(m, "Cursor [%d]:\n", i);
17343 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
17344 err_printf(m, " POS: %08x\n", error->cursor[i].position);
17345 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
c4a1d9e4 17346 }
63b66e5b
CW
17347
17348 for (i = 0; i < error->num_transcoders; i++) {
da205630 17349 err_printf(m, "CPU transcoder: %s\n",
63b66e5b 17350 transcoder_name(error->transcoder[i].cpu_transcoder));
ddf9c536 17351 err_printf(m, " Power: %s\n",
87ad3212 17352 onoff(error->transcoder[i].power_domain_on));
63b66e5b
CW
17353 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
17354 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
17355 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
17356 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
17357 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
17358 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
17359 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
17360 }
c4a1d9e4 17361}
98a2f411
CW
17362
17363#endif