drm/i915: Beef up skl_sanitize_cdclk() a bit
[linux-2.6-block.git] / drivers / gpu / drm / i915 / intel_display.c
CommitLineData
79e53945
JB
1/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
618563e3 27#include <linux/dmi.h>
c1c7af60
JB
28#include <linux/module.h>
29#include <linux/input.h>
79e53945 30#include <linux/i2c.h>
7662c8bd 31#include <linux/kernel.h>
5a0e3ad6 32#include <linux/slab.h>
9cce37f4 33#include <linux/vgaarb.h>
e0dac65e 34#include <drm/drm_edid.h>
760285e7 35#include <drm/drmP.h>
79e53945 36#include "intel_drv.h"
760285e7 37#include <drm/i915_drm.h>
79e53945 38#include "i915_drv.h"
db18b6a6 39#include "intel_dsi.h"
e5510fac 40#include "i915_trace.h"
319c1d42 41#include <drm/drm_atomic.h>
c196e1d6 42#include <drm/drm_atomic_helper.h>
760285e7
DH
43#include <drm/drm_dp_helper.h>
44#include <drm/drm_crtc_helper.h>
465c120c
MR
45#include <drm/drm_plane_helper.h>
46#include <drm/drm_rect.h>
c0f372b3 47#include <linux/dma_remapping.h>
fd8e058a
AG
48#include <linux/reservation.h>
49#include <linux/dma-buf.h>
79e53945 50
465c120c 51/* Primary plane formats for gen <= 3 */
568db4f2 52static const uint32_t i8xx_primary_formats[] = {
67fe7dc5
DL
53 DRM_FORMAT_C8,
54 DRM_FORMAT_RGB565,
465c120c 55 DRM_FORMAT_XRGB1555,
67fe7dc5 56 DRM_FORMAT_XRGB8888,
465c120c
MR
57};
58
59/* Primary plane formats for gen >= 4 */
568db4f2 60static const uint32_t i965_primary_formats[] = {
6c0fd451
DL
61 DRM_FORMAT_C8,
62 DRM_FORMAT_RGB565,
63 DRM_FORMAT_XRGB8888,
64 DRM_FORMAT_XBGR8888,
65 DRM_FORMAT_XRGB2101010,
66 DRM_FORMAT_XBGR2101010,
67};
68
69static const uint32_t skl_primary_formats[] = {
67fe7dc5
DL
70 DRM_FORMAT_C8,
71 DRM_FORMAT_RGB565,
72 DRM_FORMAT_XRGB8888,
465c120c 73 DRM_FORMAT_XBGR8888,
67fe7dc5 74 DRM_FORMAT_ARGB8888,
465c120c
MR
75 DRM_FORMAT_ABGR8888,
76 DRM_FORMAT_XRGB2101010,
465c120c 77 DRM_FORMAT_XBGR2101010,
ea916ea0
KM
78 DRM_FORMAT_YUYV,
79 DRM_FORMAT_YVYU,
80 DRM_FORMAT_UYVY,
81 DRM_FORMAT_VYUY,
465c120c
MR
82};
83
3d7d6510
MR
84/* Cursor formats */
85static const uint32_t intel_cursor_formats[] = {
86 DRM_FORMAT_ARGB8888,
87};
88
f1f644dc 89static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 90 struct intel_crtc_state *pipe_config);
18442d08 91static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 92 struct intel_crtc_state *pipe_config);
f1f644dc 93
eb1bfe80
JB
94static int intel_framebuffer_init(struct drm_device *dev,
95 struct intel_framebuffer *ifb,
96 struct drm_mode_fb_cmd2 *mode_cmd,
97 struct drm_i915_gem_object *obj);
5b18e57c
DV
98static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
99static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
bc58be60 100static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc);
29407aab 101static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
f769cd24
VK
102 struct intel_link_m_n *m_n,
103 struct intel_link_m_n *m2_n2);
29407aab 104static void ironlake_set_pipeconf(struct drm_crtc *crtc);
229fca97 105static void haswell_set_pipeconf(struct drm_crtc *crtc);
391bf048 106static void haswell_set_pipemisc(struct drm_crtc *crtc);
d288f65f 107static void vlv_prepare_pll(struct intel_crtc *crtc,
5cec258b 108 const struct intel_crtc_state *pipe_config);
d288f65f 109static void chv_prepare_pll(struct intel_crtc *crtc,
5cec258b 110 const struct intel_crtc_state *pipe_config);
549e2bfb
CK
111static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
112 struct intel_crtc_state *crtc_state);
bfd16b2a
ML
113static void skylake_pfit_enable(struct intel_crtc *crtc);
114static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force);
115static void ironlake_pfit_enable(struct intel_crtc *crtc);
043e9bda 116static void intel_modeset_setup_hw_state(struct drm_device *dev);
2622a081 117static void intel_pre_disable_primary_noatomic(struct drm_crtc *crtc);
4e5ca60f 118static int ilk_max_pixel_rate(struct drm_atomic_state *state);
143f73b3
ML
119static void intel_modeset_verify_crtc(struct drm_crtc *crtc,
120 struct drm_crtc_state *old_state,
121 struct drm_crtc_state *new_state);
e7457a9a 122
d4906093 123struct intel_limit {
4c5def93
ACO
124 struct {
125 int min, max;
126 } dot, vco, n, m, m1, m2, p, p1;
127
128 struct {
129 int dot_limit;
130 int p2_slow, p2_fast;
131 } p2;
d4906093 132};
79e53945 133
bfa7df01
VS
134/* returns HPLL frequency in kHz */
135static int valleyview_get_vco(struct drm_i915_private *dev_priv)
136{
137 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
138
139 /* Obtain SKU information */
140 mutex_lock(&dev_priv->sb_lock);
141 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
142 CCK_FUSE_HPLL_FREQ_MASK;
143 mutex_unlock(&dev_priv->sb_lock);
144
145 return vco_freq[hpll_freq] * 1000;
146}
147
c30fec65
VS
148int vlv_get_cck_clock(struct drm_i915_private *dev_priv,
149 const char *name, u32 reg, int ref_freq)
bfa7df01
VS
150{
151 u32 val;
152 int divider;
153
bfa7df01
VS
154 mutex_lock(&dev_priv->sb_lock);
155 val = vlv_cck_read(dev_priv, reg);
156 mutex_unlock(&dev_priv->sb_lock);
157
158 divider = val & CCK_FREQUENCY_VALUES;
159
160 WARN((val & CCK_FREQUENCY_STATUS) !=
161 (divider << CCK_FREQUENCY_STATUS_SHIFT),
162 "%s change in progress\n", name);
163
c30fec65
VS
164 return DIV_ROUND_CLOSEST(ref_freq << 1, divider + 1);
165}
166
167static int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
168 const char *name, u32 reg)
169{
170 if (dev_priv->hpll_freq == 0)
171 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
172
173 return vlv_get_cck_clock(dev_priv, name, reg,
174 dev_priv->hpll_freq);
bfa7df01
VS
175}
176
e7dc33f3
VS
177static int
178intel_pch_rawclk(struct drm_i915_private *dev_priv)
d2acd215 179{
e7dc33f3
VS
180 return (I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK) * 1000;
181}
d2acd215 182
e7dc33f3
VS
183static int
184intel_vlv_hrawclk(struct drm_i915_private *dev_priv)
185{
19ab4ed3 186 /* RAWCLK_FREQ_VLV register updated from power well code */
35d38d1f
VS
187 return vlv_get_cck_clock_hpll(dev_priv, "hrawclk",
188 CCK_DISPLAY_REF_CLOCK_CONTROL);
d2acd215
DV
189}
190
e7dc33f3
VS
191static int
192intel_g4x_hrawclk(struct drm_i915_private *dev_priv)
79e50a4f 193{
79e50a4f
JN
194 uint32_t clkcfg;
195
e7dc33f3 196 /* hrawclock is 1/4 the FSB frequency */
79e50a4f
JN
197 clkcfg = I915_READ(CLKCFG);
198 switch (clkcfg & CLKCFG_FSB_MASK) {
199 case CLKCFG_FSB_400:
e7dc33f3 200 return 100000;
79e50a4f 201 case CLKCFG_FSB_533:
e7dc33f3 202 return 133333;
79e50a4f 203 case CLKCFG_FSB_667:
e7dc33f3 204 return 166667;
79e50a4f 205 case CLKCFG_FSB_800:
e7dc33f3 206 return 200000;
79e50a4f 207 case CLKCFG_FSB_1067:
e7dc33f3 208 return 266667;
79e50a4f 209 case CLKCFG_FSB_1333:
e7dc33f3 210 return 333333;
79e50a4f
JN
211 /* these two are just a guess; one of them might be right */
212 case CLKCFG_FSB_1600:
213 case CLKCFG_FSB_1600_ALT:
e7dc33f3 214 return 400000;
79e50a4f 215 default:
e7dc33f3 216 return 133333;
79e50a4f
JN
217 }
218}
219
19ab4ed3 220void intel_update_rawclk(struct drm_i915_private *dev_priv)
e7dc33f3
VS
221{
222 if (HAS_PCH_SPLIT(dev_priv))
223 dev_priv->rawclk_freq = intel_pch_rawclk(dev_priv);
224 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
225 dev_priv->rawclk_freq = intel_vlv_hrawclk(dev_priv);
226 else if (IS_G4X(dev_priv) || IS_PINEVIEW(dev_priv))
227 dev_priv->rawclk_freq = intel_g4x_hrawclk(dev_priv);
228 else
229 return; /* no rawclk on other platforms, or no need to know it */
230
231 DRM_DEBUG_DRIVER("rawclk rate: %d kHz\n", dev_priv->rawclk_freq);
232}
233
bfa7df01
VS
234static void intel_update_czclk(struct drm_i915_private *dev_priv)
235{
666a4537 236 if (!(IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)))
bfa7df01
VS
237 return;
238
239 dev_priv->czclk_freq = vlv_get_cck_clock_hpll(dev_priv, "czclk",
240 CCK_CZ_CLOCK_CONTROL);
241
242 DRM_DEBUG_DRIVER("CZ clock rate: %d kHz\n", dev_priv->czclk_freq);
243}
244
021357ac 245static inline u32 /* units of 100MHz */
21a727b3
VS
246intel_fdi_link_freq(struct drm_i915_private *dev_priv,
247 const struct intel_crtc_state *pipe_config)
021357ac 248{
21a727b3
VS
249 if (HAS_DDI(dev_priv))
250 return pipe_config->port_clock; /* SPLL */
251 else if (IS_GEN5(dev_priv))
252 return ((I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2) * 10000;
e3b247da 253 else
21a727b3 254 return 270000;
021357ac
CW
255}
256
1b6f4958 257static const struct intel_limit intel_limits_i8xx_dac = {
0206e353 258 .dot = { .min = 25000, .max = 350000 },
9c333719 259 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 260 .n = { .min = 2, .max = 16 },
0206e353
AJ
261 .m = { .min = 96, .max = 140 },
262 .m1 = { .min = 18, .max = 26 },
263 .m2 = { .min = 6, .max = 16 },
264 .p = { .min = 4, .max = 128 },
265 .p1 = { .min = 2, .max = 33 },
273e27ca
EA
266 .p2 = { .dot_limit = 165000,
267 .p2_slow = 4, .p2_fast = 2 },
e4b36699
KP
268};
269
1b6f4958 270static const struct intel_limit intel_limits_i8xx_dvo = {
5d536e28 271 .dot = { .min = 25000, .max = 350000 },
9c333719 272 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 273 .n = { .min = 2, .max = 16 },
5d536e28
DV
274 .m = { .min = 96, .max = 140 },
275 .m1 = { .min = 18, .max = 26 },
276 .m2 = { .min = 6, .max = 16 },
277 .p = { .min = 4, .max = 128 },
278 .p1 = { .min = 2, .max = 33 },
279 .p2 = { .dot_limit = 165000,
280 .p2_slow = 4, .p2_fast = 4 },
281};
282
1b6f4958 283static const struct intel_limit intel_limits_i8xx_lvds = {
0206e353 284 .dot = { .min = 25000, .max = 350000 },
9c333719 285 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 286 .n = { .min = 2, .max = 16 },
0206e353
AJ
287 .m = { .min = 96, .max = 140 },
288 .m1 = { .min = 18, .max = 26 },
289 .m2 = { .min = 6, .max = 16 },
290 .p = { .min = 4, .max = 128 },
291 .p1 = { .min = 1, .max = 6 },
273e27ca
EA
292 .p2 = { .dot_limit = 165000,
293 .p2_slow = 14, .p2_fast = 7 },
e4b36699 294};
273e27ca 295
1b6f4958 296static const struct intel_limit intel_limits_i9xx_sdvo = {
0206e353
AJ
297 .dot = { .min = 20000, .max = 400000 },
298 .vco = { .min = 1400000, .max = 2800000 },
299 .n = { .min = 1, .max = 6 },
300 .m = { .min = 70, .max = 120 },
4f7dfb67
PJ
301 .m1 = { .min = 8, .max = 18 },
302 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
303 .p = { .min = 5, .max = 80 },
304 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
305 .p2 = { .dot_limit = 200000,
306 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
307};
308
1b6f4958 309static const struct intel_limit intel_limits_i9xx_lvds = {
0206e353
AJ
310 .dot = { .min = 20000, .max = 400000 },
311 .vco = { .min = 1400000, .max = 2800000 },
312 .n = { .min = 1, .max = 6 },
313 .m = { .min = 70, .max = 120 },
53a7d2d1
PJ
314 .m1 = { .min = 8, .max = 18 },
315 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
316 .p = { .min = 7, .max = 98 },
317 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
318 .p2 = { .dot_limit = 112000,
319 .p2_slow = 14, .p2_fast = 7 },
e4b36699
KP
320};
321
273e27ca 322
1b6f4958 323static const struct intel_limit intel_limits_g4x_sdvo = {
273e27ca
EA
324 .dot = { .min = 25000, .max = 270000 },
325 .vco = { .min = 1750000, .max = 3500000},
326 .n = { .min = 1, .max = 4 },
327 .m = { .min = 104, .max = 138 },
328 .m1 = { .min = 17, .max = 23 },
329 .m2 = { .min = 5, .max = 11 },
330 .p = { .min = 10, .max = 30 },
331 .p1 = { .min = 1, .max = 3},
332 .p2 = { .dot_limit = 270000,
333 .p2_slow = 10,
334 .p2_fast = 10
044c7c41 335 },
e4b36699
KP
336};
337
1b6f4958 338static const struct intel_limit intel_limits_g4x_hdmi = {
273e27ca
EA
339 .dot = { .min = 22000, .max = 400000 },
340 .vco = { .min = 1750000, .max = 3500000},
341 .n = { .min = 1, .max = 4 },
342 .m = { .min = 104, .max = 138 },
343 .m1 = { .min = 16, .max = 23 },
344 .m2 = { .min = 5, .max = 11 },
345 .p = { .min = 5, .max = 80 },
346 .p1 = { .min = 1, .max = 8},
347 .p2 = { .dot_limit = 165000,
348 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
349};
350
1b6f4958 351static const struct intel_limit intel_limits_g4x_single_channel_lvds = {
273e27ca
EA
352 .dot = { .min = 20000, .max = 115000 },
353 .vco = { .min = 1750000, .max = 3500000 },
354 .n = { .min = 1, .max = 3 },
355 .m = { .min = 104, .max = 138 },
356 .m1 = { .min = 17, .max = 23 },
357 .m2 = { .min = 5, .max = 11 },
358 .p = { .min = 28, .max = 112 },
359 .p1 = { .min = 2, .max = 8 },
360 .p2 = { .dot_limit = 0,
361 .p2_slow = 14, .p2_fast = 14
044c7c41 362 },
e4b36699
KP
363};
364
1b6f4958 365static const struct intel_limit intel_limits_g4x_dual_channel_lvds = {
273e27ca
EA
366 .dot = { .min = 80000, .max = 224000 },
367 .vco = { .min = 1750000, .max = 3500000 },
368 .n = { .min = 1, .max = 3 },
369 .m = { .min = 104, .max = 138 },
370 .m1 = { .min = 17, .max = 23 },
371 .m2 = { .min = 5, .max = 11 },
372 .p = { .min = 14, .max = 42 },
373 .p1 = { .min = 2, .max = 6 },
374 .p2 = { .dot_limit = 0,
375 .p2_slow = 7, .p2_fast = 7
044c7c41 376 },
e4b36699
KP
377};
378
1b6f4958 379static const struct intel_limit intel_limits_pineview_sdvo = {
0206e353
AJ
380 .dot = { .min = 20000, .max = 400000},
381 .vco = { .min = 1700000, .max = 3500000 },
273e27ca 382 /* Pineview's Ncounter is a ring counter */
0206e353
AJ
383 .n = { .min = 3, .max = 6 },
384 .m = { .min = 2, .max = 256 },
273e27ca 385 /* Pineview only has one combined m divider, which we treat as m2. */
0206e353
AJ
386 .m1 = { .min = 0, .max = 0 },
387 .m2 = { .min = 0, .max = 254 },
388 .p = { .min = 5, .max = 80 },
389 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
390 .p2 = { .dot_limit = 200000,
391 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
392};
393
1b6f4958 394static const struct intel_limit intel_limits_pineview_lvds = {
0206e353
AJ
395 .dot = { .min = 20000, .max = 400000 },
396 .vco = { .min = 1700000, .max = 3500000 },
397 .n = { .min = 3, .max = 6 },
398 .m = { .min = 2, .max = 256 },
399 .m1 = { .min = 0, .max = 0 },
400 .m2 = { .min = 0, .max = 254 },
401 .p = { .min = 7, .max = 112 },
402 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
403 .p2 = { .dot_limit = 112000,
404 .p2_slow = 14, .p2_fast = 14 },
e4b36699
KP
405};
406
273e27ca
EA
407/* Ironlake / Sandybridge
408 *
409 * We calculate clock using (register_value + 2) for N/M1/M2, so here
410 * the range value for them is (actual_value - 2).
411 */
1b6f4958 412static const struct intel_limit intel_limits_ironlake_dac = {
273e27ca
EA
413 .dot = { .min = 25000, .max = 350000 },
414 .vco = { .min = 1760000, .max = 3510000 },
415 .n = { .min = 1, .max = 5 },
416 .m = { .min = 79, .max = 127 },
417 .m1 = { .min = 12, .max = 22 },
418 .m2 = { .min = 5, .max = 9 },
419 .p = { .min = 5, .max = 80 },
420 .p1 = { .min = 1, .max = 8 },
421 .p2 = { .dot_limit = 225000,
422 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
423};
424
1b6f4958 425static const struct intel_limit intel_limits_ironlake_single_lvds = {
273e27ca
EA
426 .dot = { .min = 25000, .max = 350000 },
427 .vco = { .min = 1760000, .max = 3510000 },
428 .n = { .min = 1, .max = 3 },
429 .m = { .min = 79, .max = 118 },
430 .m1 = { .min = 12, .max = 22 },
431 .m2 = { .min = 5, .max = 9 },
432 .p = { .min = 28, .max = 112 },
433 .p1 = { .min = 2, .max = 8 },
434 .p2 = { .dot_limit = 225000,
435 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
436};
437
1b6f4958 438static const struct intel_limit intel_limits_ironlake_dual_lvds = {
273e27ca
EA
439 .dot = { .min = 25000, .max = 350000 },
440 .vco = { .min = 1760000, .max = 3510000 },
441 .n = { .min = 1, .max = 3 },
442 .m = { .min = 79, .max = 127 },
443 .m1 = { .min = 12, .max = 22 },
444 .m2 = { .min = 5, .max = 9 },
445 .p = { .min = 14, .max = 56 },
446 .p1 = { .min = 2, .max = 8 },
447 .p2 = { .dot_limit = 225000,
448 .p2_slow = 7, .p2_fast = 7 },
b91ad0ec
ZW
449};
450
273e27ca 451/* LVDS 100mhz refclk limits. */
1b6f4958 452static const struct intel_limit intel_limits_ironlake_single_lvds_100m = {
273e27ca
EA
453 .dot = { .min = 25000, .max = 350000 },
454 .vco = { .min = 1760000, .max = 3510000 },
455 .n = { .min = 1, .max = 2 },
456 .m = { .min = 79, .max = 126 },
457 .m1 = { .min = 12, .max = 22 },
458 .m2 = { .min = 5, .max = 9 },
459 .p = { .min = 28, .max = 112 },
0206e353 460 .p1 = { .min = 2, .max = 8 },
273e27ca
EA
461 .p2 = { .dot_limit = 225000,
462 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
463};
464
1b6f4958 465static const struct intel_limit intel_limits_ironlake_dual_lvds_100m = {
273e27ca
EA
466 .dot = { .min = 25000, .max = 350000 },
467 .vco = { .min = 1760000, .max = 3510000 },
468 .n = { .min = 1, .max = 3 },
469 .m = { .min = 79, .max = 126 },
470 .m1 = { .min = 12, .max = 22 },
471 .m2 = { .min = 5, .max = 9 },
472 .p = { .min = 14, .max = 42 },
0206e353 473 .p1 = { .min = 2, .max = 6 },
273e27ca
EA
474 .p2 = { .dot_limit = 225000,
475 .p2_slow = 7, .p2_fast = 7 },
4547668a
ZY
476};
477
1b6f4958 478static const struct intel_limit intel_limits_vlv = {
f01b7962
VS
479 /*
480 * These are the data rate limits (measured in fast clocks)
481 * since those are the strictest limits we have. The fast
482 * clock and actual rate limits are more relaxed, so checking
483 * them would make no difference.
484 */
485 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
75e53986 486 .vco = { .min = 4000000, .max = 6000000 },
a0c4da24 487 .n = { .min = 1, .max = 7 },
a0c4da24
JB
488 .m1 = { .min = 2, .max = 3 },
489 .m2 = { .min = 11, .max = 156 },
b99ab663 490 .p1 = { .min = 2, .max = 3 },
5fdc9c49 491 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
a0c4da24
JB
492};
493
1b6f4958 494static const struct intel_limit intel_limits_chv = {
ef9348c8
CML
495 /*
496 * These are the data rate limits (measured in fast clocks)
497 * since those are the strictest limits we have. The fast
498 * clock and actual rate limits are more relaxed, so checking
499 * them would make no difference.
500 */
501 .dot = { .min = 25000 * 5, .max = 540000 * 5},
17fe1021 502 .vco = { .min = 4800000, .max = 6480000 },
ef9348c8
CML
503 .n = { .min = 1, .max = 1 },
504 .m1 = { .min = 2, .max = 2 },
505 .m2 = { .min = 24 << 22, .max = 175 << 22 },
506 .p1 = { .min = 2, .max = 4 },
507 .p2 = { .p2_slow = 1, .p2_fast = 14 },
508};
509
1b6f4958 510static const struct intel_limit intel_limits_bxt = {
5ab7b0b7
ID
511 /* FIXME: find real dot limits */
512 .dot = { .min = 0, .max = INT_MAX },
e6292556 513 .vco = { .min = 4800000, .max = 6700000 },
5ab7b0b7
ID
514 .n = { .min = 1, .max = 1 },
515 .m1 = { .min = 2, .max = 2 },
516 /* FIXME: find real m2 limits */
517 .m2 = { .min = 2 << 22, .max = 255 << 22 },
518 .p1 = { .min = 2, .max = 4 },
519 .p2 = { .p2_slow = 1, .p2_fast = 20 },
520};
521
cdba954e
ACO
522static bool
523needs_modeset(struct drm_crtc_state *state)
524{
fc596660 525 return drm_atomic_crtc_needs_modeset(state);
cdba954e
ACO
526}
527
e0638cdf
PZ
528/**
529 * Returns whether any output on the specified pipe is of the specified type
530 */
4093561b 531bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
e0638cdf 532{
409ee761 533 struct drm_device *dev = crtc->base.dev;
e0638cdf
PZ
534 struct intel_encoder *encoder;
535
409ee761 536 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
e0638cdf
PZ
537 if (encoder->type == type)
538 return true;
539
540 return false;
541}
542
d0737e1d
ACO
543/**
544 * Returns whether any output on the specified pipe will have the specified
545 * type after a staged modeset is complete, i.e., the same as
546 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
547 * encoder->crtc.
548 */
a93e255f
ACO
549static bool intel_pipe_will_have_type(const struct intel_crtc_state *crtc_state,
550 int type)
d0737e1d 551{
a93e255f 552 struct drm_atomic_state *state = crtc_state->base.state;
da3ced29 553 struct drm_connector *connector;
a93e255f 554 struct drm_connector_state *connector_state;
d0737e1d 555 struct intel_encoder *encoder;
a93e255f
ACO
556 int i, num_connectors = 0;
557
da3ced29 558 for_each_connector_in_state(state, connector, connector_state, i) {
a93e255f
ACO
559 if (connector_state->crtc != crtc_state->base.crtc)
560 continue;
561
562 num_connectors++;
d0737e1d 563
a93e255f
ACO
564 encoder = to_intel_encoder(connector_state->best_encoder);
565 if (encoder->type == type)
d0737e1d 566 return true;
a93e255f
ACO
567 }
568
569 WARN_ON(num_connectors == 0);
d0737e1d
ACO
570
571 return false;
572}
573
dccbea3b
ID
574/*
575 * Platform specific helpers to calculate the port PLL loopback- (clock.m),
576 * and post-divider (clock.p) values, pre- (clock.vco) and post-divided fast
577 * (clock.dot) clock rates. This fast dot clock is fed to the port's IO logic.
578 * The helpers' return value is the rate of the clock that is fed to the
579 * display engine's pipe which can be the above fast dot clock rate or a
580 * divided-down version of it.
581 */
f2b115e6 582/* m1 is reserved as 0 in Pineview, n is a ring counter */
9e2c8475 583static int pnv_calc_dpll_params(int refclk, struct dpll *clock)
79e53945 584{
2177832f
SL
585 clock->m = clock->m2 + 2;
586 clock->p = clock->p1 * clock->p2;
ed5ca77e 587 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 588 return 0;
fb03ac01
VS
589 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
590 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
591
592 return clock->dot;
2177832f
SL
593}
594
7429e9d4
DV
595static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
596{
597 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
598}
599
9e2c8475 600static int i9xx_calc_dpll_params(int refclk, struct dpll *clock)
2177832f 601{
7429e9d4 602 clock->m = i9xx_dpll_compute_m(clock);
79e53945 603 clock->p = clock->p1 * clock->p2;
ed5ca77e 604 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
dccbea3b 605 return 0;
fb03ac01
VS
606 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
607 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
608
609 return clock->dot;
79e53945
JB
610}
611
9e2c8475 612static int vlv_calc_dpll_params(int refclk, struct dpll *clock)
589eca67
ID
613{
614 clock->m = clock->m1 * clock->m2;
615 clock->p = clock->p1 * clock->p2;
616 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 617 return 0;
589eca67
ID
618 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
619 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
620
621 return clock->dot / 5;
589eca67
ID
622}
623
9e2c8475 624int chv_calc_dpll_params(int refclk, struct dpll *clock)
ef9348c8
CML
625{
626 clock->m = clock->m1 * clock->m2;
627 clock->p = clock->p1 * clock->p2;
628 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 629 return 0;
ef9348c8
CML
630 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
631 clock->n << 22);
632 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
633
634 return clock->dot / 5;
ef9348c8
CML
635}
636
7c04d1d9 637#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
79e53945
JB
638/**
639 * Returns whether the given set of divisors are valid for a given refclk with
640 * the given connectors.
641 */
642
1b894b59 643static bool intel_PLL_is_valid(struct drm_device *dev,
1b6f4958 644 const struct intel_limit *limit,
9e2c8475 645 const struct dpll *clock)
79e53945 646{
f01b7962
VS
647 if (clock->n < limit->n.min || limit->n.max < clock->n)
648 INTELPllInvalid("n out of range\n");
79e53945 649 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
0206e353 650 INTELPllInvalid("p1 out of range\n");
79e53945 651 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
0206e353 652 INTELPllInvalid("m2 out of range\n");
79e53945 653 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
0206e353 654 INTELPllInvalid("m1 out of range\n");
f01b7962 655
666a4537
WB
656 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev) &&
657 !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev))
f01b7962
VS
658 if (clock->m1 <= clock->m2)
659 INTELPllInvalid("m1 <= m2\n");
660
666a4537 661 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev)) {
f01b7962
VS
662 if (clock->p < limit->p.min || limit->p.max < clock->p)
663 INTELPllInvalid("p out of range\n");
664 if (clock->m < limit->m.min || limit->m.max < clock->m)
665 INTELPllInvalid("m out of range\n");
666 }
667
79e53945 668 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
0206e353 669 INTELPllInvalid("vco out of range\n");
79e53945
JB
670 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
671 * connector, etc., rather than just a single range.
672 */
673 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
0206e353 674 INTELPllInvalid("dot out of range\n");
79e53945
JB
675
676 return true;
677}
678
3b1429d9 679static int
1b6f4958 680i9xx_select_p2_div(const struct intel_limit *limit,
3b1429d9
VS
681 const struct intel_crtc_state *crtc_state,
682 int target)
79e53945 683{
3b1429d9 684 struct drm_device *dev = crtc_state->base.crtc->dev;
79e53945 685
a93e255f 686 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
79e53945 687 /*
a210b028
DV
688 * For LVDS just rely on its current settings for dual-channel.
689 * We haven't figured out how to reliably set up different
690 * single/dual channel state, if we even can.
79e53945 691 */
1974cad0 692 if (intel_is_dual_link_lvds(dev))
3b1429d9 693 return limit->p2.p2_fast;
79e53945 694 else
3b1429d9 695 return limit->p2.p2_slow;
79e53945
JB
696 } else {
697 if (target < limit->p2.dot_limit)
3b1429d9 698 return limit->p2.p2_slow;
79e53945 699 else
3b1429d9 700 return limit->p2.p2_fast;
79e53945 701 }
3b1429d9
VS
702}
703
70e8aa21
ACO
704/*
705 * Returns a set of divisors for the desired target clock with the given
706 * refclk, or FALSE. The returned values represent the clock equation:
707 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
708 *
709 * Target and reference clocks are specified in kHz.
710 *
711 * If match_clock is provided, then best_clock P divider must match the P
712 * divider from @match_clock used for LVDS downclocking.
713 */
3b1429d9 714static bool
1b6f4958 715i9xx_find_best_dpll(const struct intel_limit *limit,
3b1429d9 716 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
717 int target, int refclk, struct dpll *match_clock,
718 struct dpll *best_clock)
3b1429d9
VS
719{
720 struct drm_device *dev = crtc_state->base.crtc->dev;
9e2c8475 721 struct dpll clock;
3b1429d9 722 int err = target;
79e53945 723
0206e353 724 memset(best_clock, 0, sizeof(*best_clock));
79e53945 725
3b1429d9
VS
726 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
727
42158660
ZY
728 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
729 clock.m1++) {
730 for (clock.m2 = limit->m2.min;
731 clock.m2 <= limit->m2.max; clock.m2++) {
c0efc387 732 if (clock.m2 >= clock.m1)
42158660
ZY
733 break;
734 for (clock.n = limit->n.min;
735 clock.n <= limit->n.max; clock.n++) {
736 for (clock.p1 = limit->p1.min;
737 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
738 int this_err;
739
dccbea3b 740 i9xx_calc_dpll_params(refclk, &clock);
ac58c3f0
DV
741 if (!intel_PLL_is_valid(dev, limit,
742 &clock))
743 continue;
744 if (match_clock &&
745 clock.p != match_clock->p)
746 continue;
747
748 this_err = abs(clock.dot - target);
749 if (this_err < err) {
750 *best_clock = clock;
751 err = this_err;
752 }
753 }
754 }
755 }
756 }
757
758 return (err != target);
759}
760
70e8aa21
ACO
761/*
762 * Returns a set of divisors for the desired target clock with the given
763 * refclk, or FALSE. The returned values represent the clock equation:
764 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
765 *
766 * Target and reference clocks are specified in kHz.
767 *
768 * If match_clock is provided, then best_clock P divider must match the P
769 * divider from @match_clock used for LVDS downclocking.
770 */
ac58c3f0 771static bool
1b6f4958 772pnv_find_best_dpll(const struct intel_limit *limit,
a93e255f 773 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
774 int target, int refclk, struct dpll *match_clock,
775 struct dpll *best_clock)
79e53945 776{
3b1429d9 777 struct drm_device *dev = crtc_state->base.crtc->dev;
9e2c8475 778 struct dpll clock;
79e53945
JB
779 int err = target;
780
0206e353 781 memset(best_clock, 0, sizeof(*best_clock));
79e53945 782
3b1429d9
VS
783 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
784
42158660
ZY
785 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
786 clock.m1++) {
787 for (clock.m2 = limit->m2.min;
788 clock.m2 <= limit->m2.max; clock.m2++) {
42158660
ZY
789 for (clock.n = limit->n.min;
790 clock.n <= limit->n.max; clock.n++) {
791 for (clock.p1 = limit->p1.min;
792 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
793 int this_err;
794
dccbea3b 795 pnv_calc_dpll_params(refclk, &clock);
1b894b59
CW
796 if (!intel_PLL_is_valid(dev, limit,
797 &clock))
79e53945 798 continue;
cec2f356
SP
799 if (match_clock &&
800 clock.p != match_clock->p)
801 continue;
79e53945
JB
802
803 this_err = abs(clock.dot - target);
804 if (this_err < err) {
805 *best_clock = clock;
806 err = this_err;
807 }
808 }
809 }
810 }
811 }
812
813 return (err != target);
814}
815
997c030c
ACO
816/*
817 * Returns a set of divisors for the desired target clock with the given
818 * refclk, or FALSE. The returned values represent the clock equation:
819 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
70e8aa21
ACO
820 *
821 * Target and reference clocks are specified in kHz.
822 *
823 * If match_clock is provided, then best_clock P divider must match the P
824 * divider from @match_clock used for LVDS downclocking.
997c030c 825 */
d4906093 826static bool
1b6f4958 827g4x_find_best_dpll(const struct intel_limit *limit,
a93e255f 828 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
829 int target, int refclk, struct dpll *match_clock,
830 struct dpll *best_clock)
d4906093 831{
3b1429d9 832 struct drm_device *dev = crtc_state->base.crtc->dev;
9e2c8475 833 struct dpll clock;
d4906093 834 int max_n;
3b1429d9 835 bool found = false;
6ba770dc
AJ
836 /* approximately equals target * 0.00585 */
837 int err_most = (target >> 8) + (target >> 9);
d4906093
ML
838
839 memset(best_clock, 0, sizeof(*best_clock));
3b1429d9
VS
840
841 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
842
d4906093 843 max_n = limit->n.max;
f77f13e2 844 /* based on hardware requirement, prefer smaller n to precision */
d4906093 845 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
f77f13e2 846 /* based on hardware requirement, prefere larger m1,m2 */
d4906093
ML
847 for (clock.m1 = limit->m1.max;
848 clock.m1 >= limit->m1.min; clock.m1--) {
849 for (clock.m2 = limit->m2.max;
850 clock.m2 >= limit->m2.min; clock.m2--) {
851 for (clock.p1 = limit->p1.max;
852 clock.p1 >= limit->p1.min; clock.p1--) {
853 int this_err;
854
dccbea3b 855 i9xx_calc_dpll_params(refclk, &clock);
1b894b59
CW
856 if (!intel_PLL_is_valid(dev, limit,
857 &clock))
d4906093 858 continue;
1b894b59
CW
859
860 this_err = abs(clock.dot - target);
d4906093
ML
861 if (this_err < err_most) {
862 *best_clock = clock;
863 err_most = this_err;
864 max_n = clock.n;
865 found = true;
866 }
867 }
868 }
869 }
870 }
2c07245f
ZW
871 return found;
872}
873
d5dd62bd
ID
874/*
875 * Check if the calculated PLL configuration is more optimal compared to the
876 * best configuration and error found so far. Return the calculated error.
877 */
878static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq,
9e2c8475
ACO
879 const struct dpll *calculated_clock,
880 const struct dpll *best_clock,
d5dd62bd
ID
881 unsigned int best_error_ppm,
882 unsigned int *error_ppm)
883{
9ca3ba01
ID
884 /*
885 * For CHV ignore the error and consider only the P value.
886 * Prefer a bigger P value based on HW requirements.
887 */
888 if (IS_CHERRYVIEW(dev)) {
889 *error_ppm = 0;
890
891 return calculated_clock->p > best_clock->p;
892 }
893
24be4e46
ID
894 if (WARN_ON_ONCE(!target_freq))
895 return false;
896
d5dd62bd
ID
897 *error_ppm = div_u64(1000000ULL *
898 abs(target_freq - calculated_clock->dot),
899 target_freq);
900 /*
901 * Prefer a better P value over a better (smaller) error if the error
902 * is small. Ensure this preference for future configurations too by
903 * setting the error to 0.
904 */
905 if (*error_ppm < 100 && calculated_clock->p > best_clock->p) {
906 *error_ppm = 0;
907
908 return true;
909 }
910
911 return *error_ppm + 10 < best_error_ppm;
912}
913
65b3d6a9
ACO
914/*
915 * Returns a set of divisors for the desired target clock with the given
916 * refclk, or FALSE. The returned values represent the clock equation:
917 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
918 */
a0c4da24 919static bool
1b6f4958 920vlv_find_best_dpll(const struct intel_limit *limit,
a93e255f 921 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
922 int target, int refclk, struct dpll *match_clock,
923 struct dpll *best_clock)
a0c4da24 924{
a93e255f 925 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
a919ff14 926 struct drm_device *dev = crtc->base.dev;
9e2c8475 927 struct dpll clock;
69e4f900 928 unsigned int bestppm = 1000000;
27e639bf
VS
929 /* min update 19.2 MHz */
930 int max_n = min(limit->n.max, refclk / 19200);
49e497ef 931 bool found = false;
a0c4da24 932
6b4bf1c4
VS
933 target *= 5; /* fast clock */
934
935 memset(best_clock, 0, sizeof(*best_clock));
a0c4da24
JB
936
937 /* based on hardware requirement, prefer smaller n to precision */
27e639bf 938 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
811bbf05 939 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
889059d8 940 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
c1a9ae43 941 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
6b4bf1c4 942 clock.p = clock.p1 * clock.p2;
a0c4da24 943 /* based on hardware requirement, prefer bigger m1,m2 values */
6b4bf1c4 944 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
d5dd62bd 945 unsigned int ppm;
69e4f900 946
6b4bf1c4
VS
947 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
948 refclk * clock.m1);
949
dccbea3b 950 vlv_calc_dpll_params(refclk, &clock);
43b0ac53 951
f01b7962
VS
952 if (!intel_PLL_is_valid(dev, limit,
953 &clock))
43b0ac53
VS
954 continue;
955
d5dd62bd
ID
956 if (!vlv_PLL_is_optimal(dev, target,
957 &clock,
958 best_clock,
959 bestppm, &ppm))
960 continue;
6b4bf1c4 961
d5dd62bd
ID
962 *best_clock = clock;
963 bestppm = ppm;
964 found = true;
a0c4da24
JB
965 }
966 }
967 }
968 }
a0c4da24 969
49e497ef 970 return found;
a0c4da24 971}
a4fc5ed6 972
65b3d6a9
ACO
973/*
974 * Returns a set of divisors for the desired target clock with the given
975 * refclk, or FALSE. The returned values represent the clock equation:
976 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
977 */
ef9348c8 978static bool
1b6f4958 979chv_find_best_dpll(const struct intel_limit *limit,
a93e255f 980 struct intel_crtc_state *crtc_state,
9e2c8475
ACO
981 int target, int refclk, struct dpll *match_clock,
982 struct dpll *best_clock)
ef9348c8 983{
a93e255f 984 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
a919ff14 985 struct drm_device *dev = crtc->base.dev;
9ca3ba01 986 unsigned int best_error_ppm;
9e2c8475 987 struct dpll clock;
ef9348c8
CML
988 uint64_t m2;
989 int found = false;
990
991 memset(best_clock, 0, sizeof(*best_clock));
9ca3ba01 992 best_error_ppm = 1000000;
ef9348c8
CML
993
994 /*
995 * Based on hardware doc, the n always set to 1, and m1 always
996 * set to 2. If requires to support 200Mhz refclk, we need to
997 * revisit this because n may not 1 anymore.
998 */
999 clock.n = 1, clock.m1 = 2;
1000 target *= 5; /* fast clock */
1001
1002 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
1003 for (clock.p2 = limit->p2.p2_fast;
1004 clock.p2 >= limit->p2.p2_slow;
1005 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
9ca3ba01 1006 unsigned int error_ppm;
ef9348c8
CML
1007
1008 clock.p = clock.p1 * clock.p2;
1009
1010 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
1011 clock.n) << 22, refclk * clock.m1);
1012
1013 if (m2 > INT_MAX/clock.m1)
1014 continue;
1015
1016 clock.m2 = m2;
1017
dccbea3b 1018 chv_calc_dpll_params(refclk, &clock);
ef9348c8
CML
1019
1020 if (!intel_PLL_is_valid(dev, limit, &clock))
1021 continue;
1022
9ca3ba01
ID
1023 if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock,
1024 best_error_ppm, &error_ppm))
1025 continue;
1026
1027 *best_clock = clock;
1028 best_error_ppm = error_ppm;
1029 found = true;
ef9348c8
CML
1030 }
1031 }
1032
1033 return found;
1034}
1035
5ab7b0b7 1036bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
9e2c8475 1037 struct dpll *best_clock)
5ab7b0b7 1038{
65b3d6a9 1039 int refclk = 100000;
1b6f4958 1040 const struct intel_limit *limit = &intel_limits_bxt;
5ab7b0b7 1041
65b3d6a9 1042 return chv_find_best_dpll(limit, crtc_state,
5ab7b0b7
ID
1043 target_clock, refclk, NULL, best_clock);
1044}
1045
20ddf665
VS
1046bool intel_crtc_active(struct drm_crtc *crtc)
1047{
1048 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1049
1050 /* Be paranoid as we can arrive here with only partial
1051 * state retrieved from the hardware during setup.
1052 *
241bfc38 1053 * We can ditch the adjusted_mode.crtc_clock check as soon
20ddf665
VS
1054 * as Haswell has gained clock readout/fastboot support.
1055 *
66e514c1 1056 * We can ditch the crtc->primary->fb check as soon as we can
20ddf665 1057 * properly reconstruct framebuffers.
c3d1f436
MR
1058 *
1059 * FIXME: The intel_crtc->active here should be switched to
1060 * crtc->state->active once we have proper CRTC states wired up
1061 * for atomic.
20ddf665 1062 */
c3d1f436 1063 return intel_crtc->active && crtc->primary->state->fb &&
6e3c9717 1064 intel_crtc->config->base.adjusted_mode.crtc_clock;
20ddf665
VS
1065}
1066
a5c961d1
PZ
1067enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1068 enum pipe pipe)
1069{
1070 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1071 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1072
6e3c9717 1073 return intel_crtc->config->cpu_transcoder;
a5c961d1
PZ
1074}
1075
fbf49ea2
VS
1076static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
1077{
1078 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 1079 i915_reg_t reg = PIPEDSL(pipe);
fbf49ea2
VS
1080 u32 line1, line2;
1081 u32 line_mask;
1082
1083 if (IS_GEN2(dev))
1084 line_mask = DSL_LINEMASK_GEN2;
1085 else
1086 line_mask = DSL_LINEMASK_GEN3;
1087
1088 line1 = I915_READ(reg) & line_mask;
6adfb1ef 1089 msleep(5);
fbf49ea2
VS
1090 line2 = I915_READ(reg) & line_mask;
1091
1092 return line1 == line2;
1093}
1094
ab7ad7f6
KP
1095/*
1096 * intel_wait_for_pipe_off - wait for pipe to turn off
575f7ab7 1097 * @crtc: crtc whose pipe to wait for
9d0498a2
JB
1098 *
1099 * After disabling a pipe, we can't wait for vblank in the usual way,
1100 * spinning on the vblank interrupt status bit, since we won't actually
1101 * see an interrupt when the pipe is disabled.
1102 *
ab7ad7f6
KP
1103 * On Gen4 and above:
1104 * wait for the pipe register state bit to turn off
1105 *
1106 * Otherwise:
1107 * wait for the display line value to settle (it usually
1108 * ends up stopping at the start of the next frame).
58e10eb9 1109 *
9d0498a2 1110 */
575f7ab7 1111static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
9d0498a2 1112{
575f7ab7 1113 struct drm_device *dev = crtc->base.dev;
9d0498a2 1114 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 1115 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 1116 enum pipe pipe = crtc->pipe;
ab7ad7f6
KP
1117
1118 if (INTEL_INFO(dev)->gen >= 4) {
f0f59a00 1119 i915_reg_t reg = PIPECONF(cpu_transcoder);
ab7ad7f6
KP
1120
1121 /* Wait for the Pipe State to go off */
58e10eb9
CW
1122 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
1123 100))
284637d9 1124 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 1125 } else {
ab7ad7f6 1126 /* Wait for the display line to settle */
fbf49ea2 1127 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
284637d9 1128 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 1129 }
79e53945
JB
1130}
1131
b24e7179 1132/* Only for pre-ILK configs */
55607e8a
DV
1133void assert_pll(struct drm_i915_private *dev_priv,
1134 enum pipe pipe, bool state)
b24e7179 1135{
b24e7179
JB
1136 u32 val;
1137 bool cur_state;
1138
649636ef 1139 val = I915_READ(DPLL(pipe));
b24e7179 1140 cur_state = !!(val & DPLL_VCO_ENABLE);
e2c719b7 1141 I915_STATE_WARN(cur_state != state,
b24e7179 1142 "PLL state assertion failure (expected %s, current %s)\n",
87ad3212 1143 onoff(state), onoff(cur_state));
b24e7179 1144}
b24e7179 1145
23538ef1 1146/* XXX: the dsi pll is shared between MIPI DSI ports */
8563b1e8 1147void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
23538ef1
JN
1148{
1149 u32 val;
1150 bool cur_state;
1151
a580516d 1152 mutex_lock(&dev_priv->sb_lock);
23538ef1 1153 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
a580516d 1154 mutex_unlock(&dev_priv->sb_lock);
23538ef1
JN
1155
1156 cur_state = val & DSI_PLL_VCO_EN;
e2c719b7 1157 I915_STATE_WARN(cur_state != state,
23538ef1 1158 "DSI PLL state assertion failure (expected %s, current %s)\n",
87ad3212 1159 onoff(state), onoff(cur_state));
23538ef1 1160}
23538ef1 1161
040484af
JB
1162static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1163 enum pipe pipe, bool state)
1164{
040484af 1165 bool cur_state;
ad80a810
PZ
1166 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1167 pipe);
040484af 1168
2d1fe073 1169 if (HAS_DDI(dev_priv)) {
affa9354 1170 /* DDI does not have a specific FDI_TX register */
649636ef 1171 u32 val = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
ad80a810 1172 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
bf507ef7 1173 } else {
649636ef 1174 u32 val = I915_READ(FDI_TX_CTL(pipe));
bf507ef7
ED
1175 cur_state = !!(val & FDI_TX_ENABLE);
1176 }
e2c719b7 1177 I915_STATE_WARN(cur_state != state,
040484af 1178 "FDI TX state assertion failure (expected %s, current %s)\n",
87ad3212 1179 onoff(state), onoff(cur_state));
040484af
JB
1180}
1181#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1182#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1183
1184static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1185 enum pipe pipe, bool state)
1186{
040484af
JB
1187 u32 val;
1188 bool cur_state;
1189
649636ef 1190 val = I915_READ(FDI_RX_CTL(pipe));
d63fa0dc 1191 cur_state = !!(val & FDI_RX_ENABLE);
e2c719b7 1192 I915_STATE_WARN(cur_state != state,
040484af 1193 "FDI RX state assertion failure (expected %s, current %s)\n",
87ad3212 1194 onoff(state), onoff(cur_state));
040484af
JB
1195}
1196#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1197#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1198
1199static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1200 enum pipe pipe)
1201{
040484af
JB
1202 u32 val;
1203
1204 /* ILK FDI PLL is always enabled */
7e22dbbb 1205 if (IS_GEN5(dev_priv))
040484af
JB
1206 return;
1207
bf507ef7 1208 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
2d1fe073 1209 if (HAS_DDI(dev_priv))
bf507ef7
ED
1210 return;
1211
649636ef 1212 val = I915_READ(FDI_TX_CTL(pipe));
e2c719b7 1213 I915_STATE_WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
040484af
JB
1214}
1215
55607e8a
DV
1216void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1217 enum pipe pipe, bool state)
040484af 1218{
040484af 1219 u32 val;
55607e8a 1220 bool cur_state;
040484af 1221
649636ef 1222 val = I915_READ(FDI_RX_CTL(pipe));
55607e8a 1223 cur_state = !!(val & FDI_RX_PLL_ENABLE);
e2c719b7 1224 I915_STATE_WARN(cur_state != state,
55607e8a 1225 "FDI RX PLL assertion failure (expected %s, current %s)\n",
87ad3212 1226 onoff(state), onoff(cur_state));
040484af
JB
1227}
1228
b680c37a
DV
1229void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1230 enum pipe pipe)
ea0760cf 1231{
bedd4dba 1232 struct drm_device *dev = dev_priv->dev;
f0f59a00 1233 i915_reg_t pp_reg;
ea0760cf
JB
1234 u32 val;
1235 enum pipe panel_pipe = PIPE_A;
0de3b485 1236 bool locked = true;
ea0760cf 1237
bedd4dba
JN
1238 if (WARN_ON(HAS_DDI(dev)))
1239 return;
1240
1241 if (HAS_PCH_SPLIT(dev)) {
1242 u32 port_sel;
1243
ea0760cf 1244 pp_reg = PCH_PP_CONTROL;
bedd4dba
JN
1245 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1246
1247 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1248 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1249 panel_pipe = PIPE_B;
1250 /* XXX: else fix for eDP */
666a4537 1251 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
bedd4dba
JN
1252 /* presumably write lock depends on pipe, not port select */
1253 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1254 panel_pipe = pipe;
ea0760cf
JB
1255 } else {
1256 pp_reg = PP_CONTROL;
bedd4dba
JN
1257 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1258 panel_pipe = PIPE_B;
ea0760cf
JB
1259 }
1260
1261 val = I915_READ(pp_reg);
1262 if (!(val & PANEL_POWER_ON) ||
ec49ba2d 1263 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
ea0760cf
JB
1264 locked = false;
1265
e2c719b7 1266 I915_STATE_WARN(panel_pipe == pipe && locked,
ea0760cf 1267 "panel assertion failure, pipe %c regs locked\n",
9db4a9c7 1268 pipe_name(pipe));
ea0760cf
JB
1269}
1270
93ce0ba6
JN
1271static void assert_cursor(struct drm_i915_private *dev_priv,
1272 enum pipe pipe, bool state)
1273{
1274 struct drm_device *dev = dev_priv->dev;
1275 bool cur_state;
1276
d9d82081 1277 if (IS_845G(dev) || IS_I865G(dev))
0b87c24e 1278 cur_state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE;
d9d82081 1279 else
5efb3e28 1280 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
93ce0ba6 1281
e2c719b7 1282 I915_STATE_WARN(cur_state != state,
93ce0ba6 1283 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
87ad3212 1284 pipe_name(pipe), onoff(state), onoff(cur_state));
93ce0ba6
JN
1285}
1286#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1287#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1288
b840d907
JB
1289void assert_pipe(struct drm_i915_private *dev_priv,
1290 enum pipe pipe, bool state)
b24e7179 1291{
63d7bbe9 1292 bool cur_state;
702e7a56
PZ
1293 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1294 pipe);
4feed0eb 1295 enum intel_display_power_domain power_domain;
b24e7179 1296
b6b5d049
VS
1297 /* if we need the pipe quirk it must be always on */
1298 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1299 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
8e636784
DV
1300 state = true;
1301
4feed0eb
ID
1302 power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
1303 if (intel_display_power_get_if_enabled(dev_priv, power_domain)) {
649636ef 1304 u32 val = I915_READ(PIPECONF(cpu_transcoder));
69310161 1305 cur_state = !!(val & PIPECONF_ENABLE);
4feed0eb
ID
1306
1307 intel_display_power_put(dev_priv, power_domain);
1308 } else {
1309 cur_state = false;
69310161
PZ
1310 }
1311
e2c719b7 1312 I915_STATE_WARN(cur_state != state,
63d7bbe9 1313 "pipe %c assertion failure (expected %s, current %s)\n",
87ad3212 1314 pipe_name(pipe), onoff(state), onoff(cur_state));
b24e7179
JB
1315}
1316
931872fc
CW
1317static void assert_plane(struct drm_i915_private *dev_priv,
1318 enum plane plane, bool state)
b24e7179 1319{
b24e7179 1320 u32 val;
931872fc 1321 bool cur_state;
b24e7179 1322
649636ef 1323 val = I915_READ(DSPCNTR(plane));
931872fc 1324 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
e2c719b7 1325 I915_STATE_WARN(cur_state != state,
931872fc 1326 "plane %c assertion failure (expected %s, current %s)\n",
87ad3212 1327 plane_name(plane), onoff(state), onoff(cur_state));
b24e7179
JB
1328}
1329
931872fc
CW
1330#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1331#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1332
b24e7179
JB
1333static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1334 enum pipe pipe)
1335{
653e1026 1336 struct drm_device *dev = dev_priv->dev;
649636ef 1337 int i;
b24e7179 1338
653e1026
VS
1339 /* Primary planes are fixed to pipes on gen4+ */
1340 if (INTEL_INFO(dev)->gen >= 4) {
649636ef 1341 u32 val = I915_READ(DSPCNTR(pipe));
e2c719b7 1342 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
28c05794
AJ
1343 "plane %c assertion failure, should be disabled but not\n",
1344 plane_name(pipe));
19ec1358 1345 return;
28c05794 1346 }
19ec1358 1347
b24e7179 1348 /* Need to check both planes against the pipe */
055e393f 1349 for_each_pipe(dev_priv, i) {
649636ef
VS
1350 u32 val = I915_READ(DSPCNTR(i));
1351 enum pipe cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
b24e7179 1352 DISPPLANE_SEL_PIPE_SHIFT;
e2c719b7 1353 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
9db4a9c7
JB
1354 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1355 plane_name(i), pipe_name(pipe));
b24e7179
JB
1356 }
1357}
1358
19332d7a
JB
1359static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1360 enum pipe pipe)
1361{
20674eef 1362 struct drm_device *dev = dev_priv->dev;
649636ef 1363 int sprite;
19332d7a 1364
7feb8b88 1365 if (INTEL_INFO(dev)->gen >= 9) {
3bdcfc0c 1366 for_each_sprite(dev_priv, pipe, sprite) {
649636ef 1367 u32 val = I915_READ(PLANE_CTL(pipe, sprite));
e2c719b7 1368 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
7feb8b88
DL
1369 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1370 sprite, pipe_name(pipe));
1371 }
666a4537 1372 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
3bdcfc0c 1373 for_each_sprite(dev_priv, pipe, sprite) {
649636ef 1374 u32 val = I915_READ(SPCNTR(pipe, sprite));
e2c719b7 1375 I915_STATE_WARN(val & SP_ENABLE,
20674eef 1376 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1fe47785 1377 sprite_name(pipe, sprite), pipe_name(pipe));
20674eef
VS
1378 }
1379 } else if (INTEL_INFO(dev)->gen >= 7) {
649636ef 1380 u32 val = I915_READ(SPRCTL(pipe));
e2c719b7 1381 I915_STATE_WARN(val & SPRITE_ENABLE,
06da8da2 1382 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef
VS
1383 plane_name(pipe), pipe_name(pipe));
1384 } else if (INTEL_INFO(dev)->gen >= 5) {
649636ef 1385 u32 val = I915_READ(DVSCNTR(pipe));
e2c719b7 1386 I915_STATE_WARN(val & DVS_ENABLE,
06da8da2 1387 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef 1388 plane_name(pipe), pipe_name(pipe));
19332d7a
JB
1389 }
1390}
1391
08c71e5e
VS
1392static void assert_vblank_disabled(struct drm_crtc *crtc)
1393{
e2c719b7 1394 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
08c71e5e
VS
1395 drm_crtc_vblank_put(crtc);
1396}
1397
7abd4b35
ACO
1398void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1399 enum pipe pipe)
92f2584a 1400{
92f2584a
JB
1401 u32 val;
1402 bool enabled;
1403
649636ef 1404 val = I915_READ(PCH_TRANSCONF(pipe));
92f2584a 1405 enabled = !!(val & TRANS_ENABLE);
e2c719b7 1406 I915_STATE_WARN(enabled,
9db4a9c7
JB
1407 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1408 pipe_name(pipe));
92f2584a
JB
1409}
1410
4e634389
KP
1411static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1412 enum pipe pipe, u32 port_sel, u32 val)
f0575e92
KP
1413{
1414 if ((val & DP_PORT_EN) == 0)
1415 return false;
1416
2d1fe073 1417 if (HAS_PCH_CPT(dev_priv)) {
f0f59a00 1418 u32 trans_dp_ctl = I915_READ(TRANS_DP_CTL(pipe));
f0575e92
KP
1419 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1420 return false;
2d1fe073 1421 } else if (IS_CHERRYVIEW(dev_priv)) {
44f37d1f
CML
1422 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1423 return false;
f0575e92
KP
1424 } else {
1425 if ((val & DP_PIPE_MASK) != (pipe << 30))
1426 return false;
1427 }
1428 return true;
1429}
1430
1519b995
KP
1431static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1432 enum pipe pipe, u32 val)
1433{
dc0fa718 1434 if ((val & SDVO_ENABLE) == 0)
1519b995
KP
1435 return false;
1436
2d1fe073 1437 if (HAS_PCH_CPT(dev_priv)) {
dc0fa718 1438 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
1519b995 1439 return false;
2d1fe073 1440 } else if (IS_CHERRYVIEW(dev_priv)) {
44f37d1f
CML
1441 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1442 return false;
1519b995 1443 } else {
dc0fa718 1444 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
1519b995
KP
1445 return false;
1446 }
1447 return true;
1448}
1449
1450static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1451 enum pipe pipe, u32 val)
1452{
1453 if ((val & LVDS_PORT_EN) == 0)
1454 return false;
1455
2d1fe073 1456 if (HAS_PCH_CPT(dev_priv)) {
1519b995
KP
1457 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1458 return false;
1459 } else {
1460 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1461 return false;
1462 }
1463 return true;
1464}
1465
1466static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1467 enum pipe pipe, u32 val)
1468{
1469 if ((val & ADPA_DAC_ENABLE) == 0)
1470 return false;
2d1fe073 1471 if (HAS_PCH_CPT(dev_priv)) {
1519b995
KP
1472 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1473 return false;
1474 } else {
1475 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1476 return false;
1477 }
1478 return true;
1479}
1480
291906f1 1481static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
f0f59a00
VS
1482 enum pipe pipe, i915_reg_t reg,
1483 u32 port_sel)
291906f1 1484{
47a05eca 1485 u32 val = I915_READ(reg);
e2c719b7 1486 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
291906f1 1487 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
f0f59a00 1488 i915_mmio_reg_offset(reg), pipe_name(pipe));
de9a35ab 1489
2d1fe073 1490 I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & DP_PORT_EN) == 0
75c5da27 1491 && (val & DP_PIPEB_SELECT),
de9a35ab 1492 "IBX PCH dp port still using transcoder B\n");
291906f1
JB
1493}
1494
1495static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
f0f59a00 1496 enum pipe pipe, i915_reg_t reg)
291906f1 1497{
47a05eca 1498 u32 val = I915_READ(reg);
e2c719b7 1499 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
23c99e77 1500 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
f0f59a00 1501 i915_mmio_reg_offset(reg), pipe_name(pipe));
de9a35ab 1502
2d1fe073 1503 I915_STATE_WARN(HAS_PCH_IBX(dev_priv) && (val & SDVO_ENABLE) == 0
75c5da27 1504 && (val & SDVO_PIPE_B_SELECT),
de9a35ab 1505 "IBX PCH hdmi port still using transcoder B\n");
291906f1
JB
1506}
1507
1508static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1509 enum pipe pipe)
1510{
291906f1 1511 u32 val;
291906f1 1512
f0575e92
KP
1513 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1514 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1515 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
291906f1 1516
649636ef 1517 val = I915_READ(PCH_ADPA);
e2c719b7 1518 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
291906f1 1519 "PCH VGA enabled on transcoder %c, should be disabled\n",
9db4a9c7 1520 pipe_name(pipe));
291906f1 1521
649636ef 1522 val = I915_READ(PCH_LVDS);
e2c719b7 1523 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
291906f1 1524 "PCH LVDS enabled on transcoder %c, should be disabled\n",
9db4a9c7 1525 pipe_name(pipe));
291906f1 1526
e2debe91
PZ
1527 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1528 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1529 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
291906f1
JB
1530}
1531
cd2d34d9
VS
1532static void _vlv_enable_pll(struct intel_crtc *crtc,
1533 const struct intel_crtc_state *pipe_config)
1534{
1535 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1536 enum pipe pipe = crtc->pipe;
1537
1538 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
1539 POSTING_READ(DPLL(pipe));
1540 udelay(150);
1541
1542 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1543 DRM_ERROR("DPLL %d failed to lock\n", pipe);
1544}
1545
d288f65f 1546static void vlv_enable_pll(struct intel_crtc *crtc,
5cec258b 1547 const struct intel_crtc_state *pipe_config)
87442f73 1548{
cd2d34d9 1549 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
8bd3f301 1550 enum pipe pipe = crtc->pipe;
87442f73 1551
8bd3f301 1552 assert_pipe_disabled(dev_priv, pipe);
87442f73 1553
87442f73 1554 /* PLL is protected by panel, make sure we can write it */
7d1a83cb 1555 assert_panel_unlocked(dev_priv, pipe);
87442f73 1556
cd2d34d9
VS
1557 if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE)
1558 _vlv_enable_pll(crtc, pipe_config);
426115cf 1559
8bd3f301
VS
1560 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
1561 POSTING_READ(DPLL_MD(pipe));
87442f73
DV
1562}
1563
cd2d34d9
VS
1564
1565static void _chv_enable_pll(struct intel_crtc *crtc,
1566 const struct intel_crtc_state *pipe_config)
9d556c99 1567{
cd2d34d9 1568 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
8bd3f301 1569 enum pipe pipe = crtc->pipe;
9d556c99 1570 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9d556c99
CML
1571 u32 tmp;
1572
a580516d 1573 mutex_lock(&dev_priv->sb_lock);
9d556c99
CML
1574
1575 /* Enable back the 10bit clock to display controller */
1576 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1577 tmp |= DPIO_DCLKP_EN;
1578 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1579
54433e91
VS
1580 mutex_unlock(&dev_priv->sb_lock);
1581
9d556c99
CML
1582 /*
1583 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1584 */
1585 udelay(1);
1586
1587 /* Enable PLL */
d288f65f 1588 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
9d556c99
CML
1589
1590 /* Check PLL is locked */
a11b0703 1591 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
9d556c99 1592 DRM_ERROR("PLL %d failed to lock\n", pipe);
cd2d34d9
VS
1593}
1594
1595static void chv_enable_pll(struct intel_crtc *crtc,
1596 const struct intel_crtc_state *pipe_config)
1597{
1598 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1599 enum pipe pipe = crtc->pipe;
1600
1601 assert_pipe_disabled(dev_priv, pipe);
1602
1603 /* PLL is protected by panel, make sure we can write it */
1604 assert_panel_unlocked(dev_priv, pipe);
1605
1606 if (pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE)
1607 _chv_enable_pll(crtc, pipe_config);
9d556c99 1608
c231775c
VS
1609 if (pipe != PIPE_A) {
1610 /*
1611 * WaPixelRepeatModeFixForC0:chv
1612 *
1613 * DPLLCMD is AWOL. Use chicken bits to propagate
1614 * the value from DPLLBMD to either pipe B or C.
1615 */
1616 I915_WRITE(CBR4_VLV, pipe == PIPE_B ? CBR_DPLLBMD_PIPE_B : CBR_DPLLBMD_PIPE_C);
1617 I915_WRITE(DPLL_MD(PIPE_B), pipe_config->dpll_hw_state.dpll_md);
1618 I915_WRITE(CBR4_VLV, 0);
1619 dev_priv->chv_dpll_md[pipe] = pipe_config->dpll_hw_state.dpll_md;
1620
1621 /*
1622 * DPLLB VGA mode also seems to cause problems.
1623 * We should always have it disabled.
1624 */
1625 WARN_ON((I915_READ(DPLL(PIPE_B)) & DPLL_VGA_MODE_DIS) == 0);
1626 } else {
1627 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
1628 POSTING_READ(DPLL_MD(pipe));
1629 }
9d556c99
CML
1630}
1631
1c4e0274
VS
1632static int intel_num_dvo_pipes(struct drm_device *dev)
1633{
1634 struct intel_crtc *crtc;
1635 int count = 0;
1636
1637 for_each_intel_crtc(dev, crtc)
3538b9df 1638 count += crtc->base.state->active &&
409ee761 1639 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
1c4e0274
VS
1640
1641 return count;
1642}
1643
66e3d5c0 1644static void i9xx_enable_pll(struct intel_crtc *crtc)
63d7bbe9 1645{
66e3d5c0
DV
1646 struct drm_device *dev = crtc->base.dev;
1647 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 1648 i915_reg_t reg = DPLL(crtc->pipe);
6e3c9717 1649 u32 dpll = crtc->config->dpll_hw_state.dpll;
63d7bbe9 1650
66e3d5c0 1651 assert_pipe_disabled(dev_priv, crtc->pipe);
58c6eaa2 1652
63d7bbe9 1653 /* PLL is protected by panel, make sure we can write it */
66e3d5c0
DV
1654 if (IS_MOBILE(dev) && !IS_I830(dev))
1655 assert_panel_unlocked(dev_priv, crtc->pipe);
63d7bbe9 1656
1c4e0274
VS
1657 /* Enable DVO 2x clock on both PLLs if necessary */
1658 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1659 /*
1660 * It appears to be important that we don't enable this
1661 * for the current pipe before otherwise configuring the
1662 * PLL. No idea how this should be handled if multiple
1663 * DVO outputs are enabled simultaneosly.
1664 */
1665 dpll |= DPLL_DVO_2X_MODE;
1666 I915_WRITE(DPLL(!crtc->pipe),
1667 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1668 }
66e3d5c0 1669
c2b63374
VS
1670 /*
1671 * Apparently we need to have VGA mode enabled prior to changing
1672 * the P1/P2 dividers. Otherwise the DPLL will keep using the old
1673 * dividers, even though the register value does change.
1674 */
1675 I915_WRITE(reg, 0);
1676
8e7a65aa
VS
1677 I915_WRITE(reg, dpll);
1678
66e3d5c0
DV
1679 /* Wait for the clocks to stabilize. */
1680 POSTING_READ(reg);
1681 udelay(150);
1682
1683 if (INTEL_INFO(dev)->gen >= 4) {
1684 I915_WRITE(DPLL_MD(crtc->pipe),
6e3c9717 1685 crtc->config->dpll_hw_state.dpll_md);
66e3d5c0
DV
1686 } else {
1687 /* The pixel multiplier can only be updated once the
1688 * DPLL is enabled and the clocks are stable.
1689 *
1690 * So write it again.
1691 */
1692 I915_WRITE(reg, dpll);
1693 }
63d7bbe9
JB
1694
1695 /* We do this three times for luck */
66e3d5c0 1696 I915_WRITE(reg, dpll);
63d7bbe9
JB
1697 POSTING_READ(reg);
1698 udelay(150); /* wait for warmup */
66e3d5c0 1699 I915_WRITE(reg, dpll);
63d7bbe9
JB
1700 POSTING_READ(reg);
1701 udelay(150); /* wait for warmup */
66e3d5c0 1702 I915_WRITE(reg, dpll);
63d7bbe9
JB
1703 POSTING_READ(reg);
1704 udelay(150); /* wait for warmup */
1705}
1706
1707/**
50b44a44 1708 * i9xx_disable_pll - disable a PLL
63d7bbe9
JB
1709 * @dev_priv: i915 private structure
1710 * @pipe: pipe PLL to disable
1711 *
1712 * Disable the PLL for @pipe, making sure the pipe is off first.
1713 *
1714 * Note! This is for pre-ILK only.
1715 */
1c4e0274 1716static void i9xx_disable_pll(struct intel_crtc *crtc)
63d7bbe9 1717{
1c4e0274
VS
1718 struct drm_device *dev = crtc->base.dev;
1719 struct drm_i915_private *dev_priv = dev->dev_private;
1720 enum pipe pipe = crtc->pipe;
1721
1722 /* Disable DVO 2x clock on both PLLs if necessary */
1723 if (IS_I830(dev) &&
409ee761 1724 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
3538b9df 1725 !intel_num_dvo_pipes(dev)) {
1c4e0274
VS
1726 I915_WRITE(DPLL(PIPE_B),
1727 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1728 I915_WRITE(DPLL(PIPE_A),
1729 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1730 }
1731
b6b5d049
VS
1732 /* Don't disable pipe or pipe PLLs if needed */
1733 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1734 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
63d7bbe9
JB
1735 return;
1736
1737 /* Make sure the pipe isn't still relying on us */
1738 assert_pipe_disabled(dev_priv, pipe);
1739
b8afb911 1740 I915_WRITE(DPLL(pipe), DPLL_VGA_MODE_DIS);
50b44a44 1741 POSTING_READ(DPLL(pipe));
63d7bbe9
JB
1742}
1743
f6071166
JB
1744static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1745{
b8afb911 1746 u32 val;
f6071166
JB
1747
1748 /* Make sure the pipe isn't still relying on us */
1749 assert_pipe_disabled(dev_priv, pipe);
1750
03ed5cbf
VS
1751 val = DPLL_INTEGRATED_REF_CLK_VLV |
1752 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
1753 if (pipe != PIPE_A)
1754 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1755
f6071166
JB
1756 I915_WRITE(DPLL(pipe), val);
1757 POSTING_READ(DPLL(pipe));
076ed3b2
CML
1758}
1759
1760static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1761{
d752048d 1762 enum dpio_channel port = vlv_pipe_to_channel(pipe);
076ed3b2
CML
1763 u32 val;
1764
a11b0703
VS
1765 /* Make sure the pipe isn't still relying on us */
1766 assert_pipe_disabled(dev_priv, pipe);
076ed3b2 1767
60bfe44f
VS
1768 val = DPLL_SSC_REF_CLK_CHV |
1769 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
a11b0703
VS
1770 if (pipe != PIPE_A)
1771 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
03ed5cbf 1772
a11b0703
VS
1773 I915_WRITE(DPLL(pipe), val);
1774 POSTING_READ(DPLL(pipe));
d752048d 1775
a580516d 1776 mutex_lock(&dev_priv->sb_lock);
d752048d
VS
1777
1778 /* Disable 10bit clock to display controller */
1779 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1780 val &= ~DPIO_DCLKP_EN;
1781 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1782
a580516d 1783 mutex_unlock(&dev_priv->sb_lock);
f6071166
JB
1784}
1785
e4607fcf 1786void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
9b6de0a1
VS
1787 struct intel_digital_port *dport,
1788 unsigned int expected_mask)
89b667f8
JB
1789{
1790 u32 port_mask;
f0f59a00 1791 i915_reg_t dpll_reg;
89b667f8 1792
e4607fcf
CML
1793 switch (dport->port) {
1794 case PORT_B:
89b667f8 1795 port_mask = DPLL_PORTB_READY_MASK;
00fc31b7 1796 dpll_reg = DPLL(0);
e4607fcf
CML
1797 break;
1798 case PORT_C:
89b667f8 1799 port_mask = DPLL_PORTC_READY_MASK;
00fc31b7 1800 dpll_reg = DPLL(0);
9b6de0a1 1801 expected_mask <<= 4;
00fc31b7
CML
1802 break;
1803 case PORT_D:
1804 port_mask = DPLL_PORTD_READY_MASK;
1805 dpll_reg = DPIO_PHY_STATUS;
e4607fcf
CML
1806 break;
1807 default:
1808 BUG();
1809 }
89b667f8 1810
9b6de0a1
VS
1811 if (wait_for((I915_READ(dpll_reg) & port_mask) == expected_mask, 1000))
1812 WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n",
1813 port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask);
89b667f8
JB
1814}
1815
b8a4f404
PZ
1816static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1817 enum pipe pipe)
040484af 1818{
23670b32 1819 struct drm_device *dev = dev_priv->dev;
7c26e5c6 1820 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
e2b78267 1821 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
f0f59a00
VS
1822 i915_reg_t reg;
1823 uint32_t val, pipeconf_val;
040484af 1824
040484af 1825 /* Make sure PCH DPLL is enabled */
8106ddbd 1826 assert_shared_dpll_enabled(dev_priv, intel_crtc->config->shared_dpll);
040484af
JB
1827
1828 /* FDI must be feeding us bits for PCH ports */
1829 assert_fdi_tx_enabled(dev_priv, pipe);
1830 assert_fdi_rx_enabled(dev_priv, pipe);
1831
23670b32
DV
1832 if (HAS_PCH_CPT(dev)) {
1833 /* Workaround: Set the timing override bit before enabling the
1834 * pch transcoder. */
1835 reg = TRANS_CHICKEN2(pipe);
1836 val = I915_READ(reg);
1837 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1838 I915_WRITE(reg, val);
59c859d6 1839 }
23670b32 1840
ab9412ba 1841 reg = PCH_TRANSCONF(pipe);
040484af 1842 val = I915_READ(reg);
5f7f726d 1843 pipeconf_val = I915_READ(PIPECONF(pipe));
e9bcff5c 1844
2d1fe073 1845 if (HAS_PCH_IBX(dev_priv)) {
e9bcff5c 1846 /*
c5de7c6f
VS
1847 * Make the BPC in transcoder be consistent with
1848 * that in pipeconf reg. For HDMI we must use 8bpc
1849 * here for both 8bpc and 12bpc.
e9bcff5c 1850 */
dfd07d72 1851 val &= ~PIPECONF_BPC_MASK;
c5de7c6f
VS
1852 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_HDMI))
1853 val |= PIPECONF_8BPC;
1854 else
1855 val |= pipeconf_val & PIPECONF_BPC_MASK;
e9bcff5c 1856 }
5f7f726d
PZ
1857
1858 val &= ~TRANS_INTERLACE_MASK;
1859 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
2d1fe073 1860 if (HAS_PCH_IBX(dev_priv) &&
409ee761 1861 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
7c26e5c6
PZ
1862 val |= TRANS_LEGACY_INTERLACED_ILK;
1863 else
1864 val |= TRANS_INTERLACED;
5f7f726d
PZ
1865 else
1866 val |= TRANS_PROGRESSIVE;
1867
040484af
JB
1868 I915_WRITE(reg, val | TRANS_ENABLE);
1869 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
4bb6f1f3 1870 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
040484af
JB
1871}
1872
8fb033d7 1873static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
937bb610 1874 enum transcoder cpu_transcoder)
040484af 1875{
8fb033d7 1876 u32 val, pipeconf_val;
8fb033d7 1877
8fb033d7 1878 /* FDI must be feeding us bits for PCH ports */
1a240d4d 1879 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
937bb610 1880 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
8fb033d7 1881
223a6fdf 1882 /* Workaround: set timing override bit. */
36c0d0cf 1883 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
23670b32 1884 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
36c0d0cf 1885 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
223a6fdf 1886
25f3ef11 1887 val = TRANS_ENABLE;
937bb610 1888 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
8fb033d7 1889
9a76b1c6
PZ
1890 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1891 PIPECONF_INTERLACED_ILK)
a35f2679 1892 val |= TRANS_INTERLACED;
8fb033d7
PZ
1893 else
1894 val |= TRANS_PROGRESSIVE;
1895
ab9412ba
DV
1896 I915_WRITE(LPT_TRANSCONF, val);
1897 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
937bb610 1898 DRM_ERROR("Failed to enable PCH transcoder\n");
8fb033d7
PZ
1899}
1900
b8a4f404
PZ
1901static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1902 enum pipe pipe)
040484af 1903{
23670b32 1904 struct drm_device *dev = dev_priv->dev;
f0f59a00
VS
1905 i915_reg_t reg;
1906 uint32_t val;
040484af
JB
1907
1908 /* FDI relies on the transcoder */
1909 assert_fdi_tx_disabled(dev_priv, pipe);
1910 assert_fdi_rx_disabled(dev_priv, pipe);
1911
291906f1
JB
1912 /* Ports must be off as well */
1913 assert_pch_ports_disabled(dev_priv, pipe);
1914
ab9412ba 1915 reg = PCH_TRANSCONF(pipe);
040484af
JB
1916 val = I915_READ(reg);
1917 val &= ~TRANS_ENABLE;
1918 I915_WRITE(reg, val);
1919 /* wait for PCH transcoder off, transcoder state */
1920 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
4bb6f1f3 1921 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
23670b32 1922
c465613b 1923 if (HAS_PCH_CPT(dev)) {
23670b32
DV
1924 /* Workaround: Clear the timing override chicken bit again. */
1925 reg = TRANS_CHICKEN2(pipe);
1926 val = I915_READ(reg);
1927 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1928 I915_WRITE(reg, val);
1929 }
040484af
JB
1930}
1931
ab4d966c 1932static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
8fb033d7 1933{
8fb033d7
PZ
1934 u32 val;
1935
ab9412ba 1936 val = I915_READ(LPT_TRANSCONF);
8fb033d7 1937 val &= ~TRANS_ENABLE;
ab9412ba 1938 I915_WRITE(LPT_TRANSCONF, val);
8fb033d7 1939 /* wait for PCH transcoder off, transcoder state */
ab9412ba 1940 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
8a52fd9f 1941 DRM_ERROR("Failed to disable PCH transcoder\n");
223a6fdf
PZ
1942
1943 /* Workaround: clear timing override bit. */
36c0d0cf 1944 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
23670b32 1945 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
36c0d0cf 1946 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
040484af
JB
1947}
1948
b24e7179 1949/**
309cfea8 1950 * intel_enable_pipe - enable a pipe, asserting requirements
0372264a 1951 * @crtc: crtc responsible for the pipe
b24e7179 1952 *
0372264a 1953 * Enable @crtc's pipe, making sure that various hardware specific requirements
b24e7179 1954 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
b24e7179 1955 */
e1fdc473 1956static void intel_enable_pipe(struct intel_crtc *crtc)
b24e7179 1957{
0372264a
PZ
1958 struct drm_device *dev = crtc->base.dev;
1959 struct drm_i915_private *dev_priv = dev->dev_private;
1960 enum pipe pipe = crtc->pipe;
1a70a728 1961 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
1a240d4d 1962 enum pipe pch_transcoder;
f0f59a00 1963 i915_reg_t reg;
b24e7179
JB
1964 u32 val;
1965
9e2ee2dd
VS
1966 DRM_DEBUG_KMS("enabling pipe %c\n", pipe_name(pipe));
1967
58c6eaa2 1968 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 1969 assert_cursor_disabled(dev_priv, pipe);
58c6eaa2
DV
1970 assert_sprites_disabled(dev_priv, pipe);
1971
2d1fe073 1972 if (HAS_PCH_LPT(dev_priv))
cc391bbb
PZ
1973 pch_transcoder = TRANSCODER_A;
1974 else
1975 pch_transcoder = pipe;
1976
b24e7179
JB
1977 /*
1978 * A pipe without a PLL won't actually be able to drive bits from
1979 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1980 * need the check.
1981 */
2d1fe073 1982 if (HAS_GMCH_DISPLAY(dev_priv))
a65347ba 1983 if (crtc->config->has_dsi_encoder)
23538ef1
JN
1984 assert_dsi_pll_enabled(dev_priv);
1985 else
1986 assert_pll_enabled(dev_priv, pipe);
040484af 1987 else {
6e3c9717 1988 if (crtc->config->has_pch_encoder) {
040484af 1989 /* if driving the PCH, we need FDI enabled */
cc391bbb 1990 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
1a240d4d
DV
1991 assert_fdi_tx_pll_enabled(dev_priv,
1992 (enum pipe) cpu_transcoder);
040484af
JB
1993 }
1994 /* FIXME: assert CPU port conditions for SNB+ */
1995 }
b24e7179 1996
702e7a56 1997 reg = PIPECONF(cpu_transcoder);
b24e7179 1998 val = I915_READ(reg);
7ad25d48 1999 if (val & PIPECONF_ENABLE) {
b6b5d049
VS
2000 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2001 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
00d70b15 2002 return;
7ad25d48 2003 }
00d70b15
CW
2004
2005 I915_WRITE(reg, val | PIPECONF_ENABLE);
851855d8 2006 POSTING_READ(reg);
b7792d8b
VS
2007
2008 /*
2009 * Until the pipe starts DSL will read as 0, which would cause
2010 * an apparent vblank timestamp jump, which messes up also the
2011 * frame count when it's derived from the timestamps. So let's
2012 * wait for the pipe to start properly before we call
2013 * drm_crtc_vblank_on()
2014 */
2015 if (dev->max_vblank_count == 0 &&
2016 wait_for(intel_get_crtc_scanline(crtc) != crtc->scanline_offset, 50))
2017 DRM_ERROR("pipe %c didn't start\n", pipe_name(pipe));
b24e7179
JB
2018}
2019
2020/**
309cfea8 2021 * intel_disable_pipe - disable a pipe, asserting requirements
575f7ab7 2022 * @crtc: crtc whose pipes is to be disabled
b24e7179 2023 *
575f7ab7
VS
2024 * Disable the pipe of @crtc, making sure that various hardware
2025 * specific requirements are met, if applicable, e.g. plane
2026 * disabled, panel fitter off, etc.
b24e7179
JB
2027 *
2028 * Will wait until the pipe has shut down before returning.
2029 */
575f7ab7 2030static void intel_disable_pipe(struct intel_crtc *crtc)
b24e7179 2031{
575f7ab7 2032 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
6e3c9717 2033 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 2034 enum pipe pipe = crtc->pipe;
f0f59a00 2035 i915_reg_t reg;
b24e7179
JB
2036 u32 val;
2037
9e2ee2dd
VS
2038 DRM_DEBUG_KMS("disabling pipe %c\n", pipe_name(pipe));
2039
b24e7179
JB
2040 /*
2041 * Make sure planes won't keep trying to pump pixels to us,
2042 * or we might hang the display.
2043 */
2044 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 2045 assert_cursor_disabled(dev_priv, pipe);
19332d7a 2046 assert_sprites_disabled(dev_priv, pipe);
b24e7179 2047
702e7a56 2048 reg = PIPECONF(cpu_transcoder);
b24e7179 2049 val = I915_READ(reg);
00d70b15
CW
2050 if ((val & PIPECONF_ENABLE) == 0)
2051 return;
2052
67adc644
VS
2053 /*
2054 * Double wide has implications for planes
2055 * so best keep it disabled when not needed.
2056 */
6e3c9717 2057 if (crtc->config->double_wide)
67adc644
VS
2058 val &= ~PIPECONF_DOUBLE_WIDE;
2059
2060 /* Don't disable pipe or pipe PLLs if needed */
b6b5d049
VS
2061 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2062 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
67adc644
VS
2063 val &= ~PIPECONF_ENABLE;
2064
2065 I915_WRITE(reg, val);
2066 if ((val & PIPECONF_ENABLE) == 0)
2067 intel_wait_for_pipe_off(crtc);
b24e7179
JB
2068}
2069
693db184
CW
2070static bool need_vtd_wa(struct drm_device *dev)
2071{
2072#ifdef CONFIG_INTEL_IOMMU
2073 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2074 return true;
2075#endif
2076 return false;
2077}
2078
832be82f
VS
2079static unsigned int intel_tile_size(const struct drm_i915_private *dev_priv)
2080{
2081 return IS_GEN2(dev_priv) ? 2048 : 4096;
2082}
2083
27ba3910
VS
2084static unsigned int intel_tile_width_bytes(const struct drm_i915_private *dev_priv,
2085 uint64_t fb_modifier, unsigned int cpp)
7b49f948
VS
2086{
2087 switch (fb_modifier) {
2088 case DRM_FORMAT_MOD_NONE:
2089 return cpp;
2090 case I915_FORMAT_MOD_X_TILED:
2091 if (IS_GEN2(dev_priv))
2092 return 128;
2093 else
2094 return 512;
2095 case I915_FORMAT_MOD_Y_TILED:
2096 if (IS_GEN2(dev_priv) || HAS_128_BYTE_Y_TILING(dev_priv))
2097 return 128;
2098 else
2099 return 512;
2100 case I915_FORMAT_MOD_Yf_TILED:
2101 switch (cpp) {
2102 case 1:
2103 return 64;
2104 case 2:
2105 case 4:
2106 return 128;
2107 case 8:
2108 case 16:
2109 return 256;
2110 default:
2111 MISSING_CASE(cpp);
2112 return cpp;
2113 }
2114 break;
2115 default:
2116 MISSING_CASE(fb_modifier);
2117 return cpp;
2118 }
2119}
2120
832be82f
VS
2121unsigned int intel_tile_height(const struct drm_i915_private *dev_priv,
2122 uint64_t fb_modifier, unsigned int cpp)
a57ce0b2 2123{
832be82f
VS
2124 if (fb_modifier == DRM_FORMAT_MOD_NONE)
2125 return 1;
2126 else
2127 return intel_tile_size(dev_priv) /
27ba3910 2128 intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
6761dd31
TU
2129}
2130
8d0deca8
VS
2131/* Return the tile dimensions in pixel units */
2132static void intel_tile_dims(const struct drm_i915_private *dev_priv,
2133 unsigned int *tile_width,
2134 unsigned int *tile_height,
2135 uint64_t fb_modifier,
2136 unsigned int cpp)
2137{
2138 unsigned int tile_width_bytes =
2139 intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
2140
2141 *tile_width = tile_width_bytes / cpp;
2142 *tile_height = intel_tile_size(dev_priv) / tile_width_bytes;
2143}
2144
6761dd31
TU
2145unsigned int
2146intel_fb_align_height(struct drm_device *dev, unsigned int height,
832be82f 2147 uint32_t pixel_format, uint64_t fb_modifier)
6761dd31 2148{
832be82f
VS
2149 unsigned int cpp = drm_format_plane_cpp(pixel_format, 0);
2150 unsigned int tile_height = intel_tile_height(to_i915(dev), fb_modifier, cpp);
2151
2152 return ALIGN(height, tile_height);
a57ce0b2
JB
2153}
2154
1663b9d6
VS
2155unsigned int intel_rotation_info_size(const struct intel_rotation_info *rot_info)
2156{
2157 unsigned int size = 0;
2158 int i;
2159
2160 for (i = 0 ; i < ARRAY_SIZE(rot_info->plane); i++)
2161 size += rot_info->plane[i].width * rot_info->plane[i].height;
2162
2163 return size;
2164}
2165
75c82a53 2166static void
3465c580
VS
2167intel_fill_fb_ggtt_view(struct i915_ggtt_view *view,
2168 const struct drm_framebuffer *fb,
2169 unsigned int rotation)
f64b98cd 2170{
2d7a215f
VS
2171 if (intel_rotation_90_or_270(rotation)) {
2172 *view = i915_ggtt_view_rotated;
2173 view->params.rotated = to_intel_framebuffer(fb)->rot_info;
2174 } else {
2175 *view = i915_ggtt_view_normal;
2176 }
2177}
50470bb0 2178
2d7a215f
VS
2179static void
2180intel_fill_fb_info(struct drm_i915_private *dev_priv,
2181 struct drm_framebuffer *fb)
2182{
2183 struct intel_rotation_info *info = &to_intel_framebuffer(fb)->rot_info;
2184 unsigned int tile_size, tile_width, tile_height, cpp;
50470bb0 2185
d9b3288e
VS
2186 tile_size = intel_tile_size(dev_priv);
2187
2188 cpp = drm_format_plane_cpp(fb->pixel_format, 0);
8d0deca8
VS
2189 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2190 fb->modifier[0], cpp);
d9b3288e 2191
1663b9d6
VS
2192 info->plane[0].width = DIV_ROUND_UP(fb->pitches[0], tile_width * cpp);
2193 info->plane[0].height = DIV_ROUND_UP(fb->height, tile_height);
84fe03f7 2194
89e3e142 2195 if (info->pixel_format == DRM_FORMAT_NV12) {
832be82f 2196 cpp = drm_format_plane_cpp(fb->pixel_format, 1);
8d0deca8
VS
2197 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2198 fb->modifier[1], cpp);
d9b3288e 2199
2d7a215f 2200 info->uv_offset = fb->offsets[1];
1663b9d6
VS
2201 info->plane[1].width = DIV_ROUND_UP(fb->pitches[1], tile_width * cpp);
2202 info->plane[1].height = DIV_ROUND_UP(fb->height / 2, tile_height);
89e3e142 2203 }
f64b98cd
TU
2204}
2205
603525d7 2206static unsigned int intel_linear_alignment(const struct drm_i915_private *dev_priv)
4e9a86b6
VS
2207{
2208 if (INTEL_INFO(dev_priv)->gen >= 9)
2209 return 256 * 1024;
985b8bb4 2210 else if (IS_BROADWATER(dev_priv) || IS_CRESTLINE(dev_priv) ||
666a4537 2211 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
4e9a86b6
VS
2212 return 128 * 1024;
2213 else if (INTEL_INFO(dev_priv)->gen >= 4)
2214 return 4 * 1024;
2215 else
44c5905e 2216 return 0;
4e9a86b6
VS
2217}
2218
603525d7
VS
2219static unsigned int intel_surf_alignment(const struct drm_i915_private *dev_priv,
2220 uint64_t fb_modifier)
2221{
2222 switch (fb_modifier) {
2223 case DRM_FORMAT_MOD_NONE:
2224 return intel_linear_alignment(dev_priv);
2225 case I915_FORMAT_MOD_X_TILED:
2226 if (INTEL_INFO(dev_priv)->gen >= 9)
2227 return 256 * 1024;
2228 return 0;
2229 case I915_FORMAT_MOD_Y_TILED:
2230 case I915_FORMAT_MOD_Yf_TILED:
2231 return 1 * 1024 * 1024;
2232 default:
2233 MISSING_CASE(fb_modifier);
2234 return 0;
2235 }
2236}
2237
127bd2ac 2238int
3465c580
VS
2239intel_pin_and_fence_fb_obj(struct drm_framebuffer *fb,
2240 unsigned int rotation)
6b95a207 2241{
850c4cdc 2242 struct drm_device *dev = fb->dev;
ce453d81 2243 struct drm_i915_private *dev_priv = dev->dev_private;
850c4cdc 2244 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
f64b98cd 2245 struct i915_ggtt_view view;
6b95a207
KH
2246 u32 alignment;
2247 int ret;
2248
ebcdd39e
MR
2249 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2250
603525d7 2251 alignment = intel_surf_alignment(dev_priv, fb->modifier[0]);
6b95a207 2252
3465c580 2253 intel_fill_fb_ggtt_view(&view, fb, rotation);
f64b98cd 2254
693db184
CW
2255 /* Note that the w/a also requires 64 PTE of padding following the
2256 * bo. We currently fill all unused PTE with the shadow page and so
2257 * we should always have valid PTE following the scanout preventing
2258 * the VT-d warning.
2259 */
2260 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2261 alignment = 256 * 1024;
2262
d6dd6843
PZ
2263 /*
2264 * Global gtt pte registers are special registers which actually forward
2265 * writes to a chunk of system memory. Which means that there is no risk
2266 * that the register values disappear as soon as we call
2267 * intel_runtime_pm_put(), so it is correct to wrap only the
2268 * pin/unpin/fence and not more.
2269 */
2270 intel_runtime_pm_get(dev_priv);
2271
7580d774
ML
2272 ret = i915_gem_object_pin_to_display_plane(obj, alignment,
2273 &view);
48b956c5 2274 if (ret)
b26a6b35 2275 goto err_pm;
6b95a207
KH
2276
2277 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2278 * fence, whereas 965+ only requires a fence if using
2279 * framebuffer compression. For simplicity, we always install
2280 * a fence as the cost is not that onerous.
2281 */
9807216f
VK
2282 if (view.type == I915_GGTT_VIEW_NORMAL) {
2283 ret = i915_gem_object_get_fence(obj);
2284 if (ret == -EDEADLK) {
2285 /*
2286 * -EDEADLK means there are no free fences
2287 * no pending flips.
2288 *
2289 * This is propagated to atomic, but it uses
2290 * -EDEADLK to force a locking recovery, so
2291 * change the returned error to -EBUSY.
2292 */
2293 ret = -EBUSY;
2294 goto err_unpin;
2295 } else if (ret)
2296 goto err_unpin;
1690e1eb 2297
9807216f
VK
2298 i915_gem_object_pin_fence(obj);
2299 }
6b95a207 2300
d6dd6843 2301 intel_runtime_pm_put(dev_priv);
6b95a207 2302 return 0;
48b956c5
CW
2303
2304err_unpin:
f64b98cd 2305 i915_gem_object_unpin_from_display_plane(obj, &view);
b26a6b35 2306err_pm:
d6dd6843 2307 intel_runtime_pm_put(dev_priv);
48b956c5 2308 return ret;
6b95a207
KH
2309}
2310
fb4b8ce1 2311void intel_unpin_fb_obj(struct drm_framebuffer *fb, unsigned int rotation)
1690e1eb 2312{
82bc3b2d 2313 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
f64b98cd 2314 struct i915_ggtt_view view;
82bc3b2d 2315
ebcdd39e
MR
2316 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2317
3465c580 2318 intel_fill_fb_ggtt_view(&view, fb, rotation);
f64b98cd 2319
9807216f
VK
2320 if (view.type == I915_GGTT_VIEW_NORMAL)
2321 i915_gem_object_unpin_fence(obj);
2322
f64b98cd 2323 i915_gem_object_unpin_from_display_plane(obj, &view);
1690e1eb
CW
2324}
2325
29cf9491
VS
2326/*
2327 * Adjust the tile offset by moving the difference into
2328 * the x/y offsets.
2329 *
2330 * Input tile dimensions and pitch must already be
2331 * rotated to match x and y, and in pixel units.
2332 */
2333static u32 intel_adjust_tile_offset(int *x, int *y,
2334 unsigned int tile_width,
2335 unsigned int tile_height,
2336 unsigned int tile_size,
2337 unsigned int pitch_tiles,
2338 u32 old_offset,
2339 u32 new_offset)
2340{
2341 unsigned int tiles;
2342
2343 WARN_ON(old_offset & (tile_size - 1));
2344 WARN_ON(new_offset & (tile_size - 1));
2345 WARN_ON(new_offset > old_offset);
2346
2347 tiles = (old_offset - new_offset) / tile_size;
2348
2349 *y += tiles / pitch_tiles * tile_height;
2350 *x += tiles % pitch_tiles * tile_width;
2351
2352 return new_offset;
2353}
2354
8d0deca8
VS
2355/*
2356 * Computes the linear offset to the base tile and adjusts
2357 * x, y. bytes per pixel is assumed to be a power-of-two.
2358 *
2359 * In the 90/270 rotated case, x and y are assumed
2360 * to be already rotated to match the rotated GTT view, and
2361 * pitch is the tile_height aligned framebuffer height.
2362 */
4f2d9934
VS
2363u32 intel_compute_tile_offset(int *x, int *y,
2364 const struct drm_framebuffer *fb, int plane,
8d0deca8
VS
2365 unsigned int pitch,
2366 unsigned int rotation)
c2c75131 2367{
4f2d9934
VS
2368 const struct drm_i915_private *dev_priv = to_i915(fb->dev);
2369 uint64_t fb_modifier = fb->modifier[plane];
2370 unsigned int cpp = drm_format_plane_cpp(fb->pixel_format, plane);
29cf9491
VS
2371 u32 offset, offset_aligned, alignment;
2372
2373 alignment = intel_surf_alignment(dev_priv, fb_modifier);
2374 if (alignment)
2375 alignment--;
2376
b5c65338 2377 if (fb_modifier != DRM_FORMAT_MOD_NONE) {
8d0deca8
VS
2378 unsigned int tile_size, tile_width, tile_height;
2379 unsigned int tile_rows, tiles, pitch_tiles;
c2c75131 2380
d843310d 2381 tile_size = intel_tile_size(dev_priv);
8d0deca8
VS
2382 intel_tile_dims(dev_priv, &tile_width, &tile_height,
2383 fb_modifier, cpp);
2384
2385 if (intel_rotation_90_or_270(rotation)) {
2386 pitch_tiles = pitch / tile_height;
2387 swap(tile_width, tile_height);
2388 } else {
2389 pitch_tiles = pitch / (tile_width * cpp);
2390 }
d843310d
VS
2391
2392 tile_rows = *y / tile_height;
2393 *y %= tile_height;
c2c75131 2394
8d0deca8
VS
2395 tiles = *x / tile_width;
2396 *x %= tile_width;
bc752862 2397
29cf9491
VS
2398 offset = (tile_rows * pitch_tiles + tiles) * tile_size;
2399 offset_aligned = offset & ~alignment;
bc752862 2400
29cf9491
VS
2401 intel_adjust_tile_offset(x, y, tile_width, tile_height,
2402 tile_size, pitch_tiles,
2403 offset, offset_aligned);
2404 } else {
bc752862 2405 offset = *y * pitch + *x * cpp;
29cf9491
VS
2406 offset_aligned = offset & ~alignment;
2407
4e9a86b6
VS
2408 *y = (offset & alignment) / pitch;
2409 *x = ((offset & alignment) - *y * pitch) / cpp;
bc752862 2410 }
29cf9491
VS
2411
2412 return offset_aligned;
c2c75131
DV
2413}
2414
b35d63fa 2415static int i9xx_format_to_fourcc(int format)
46f297fb
JB
2416{
2417 switch (format) {
2418 case DISPPLANE_8BPP:
2419 return DRM_FORMAT_C8;
2420 case DISPPLANE_BGRX555:
2421 return DRM_FORMAT_XRGB1555;
2422 case DISPPLANE_BGRX565:
2423 return DRM_FORMAT_RGB565;
2424 default:
2425 case DISPPLANE_BGRX888:
2426 return DRM_FORMAT_XRGB8888;
2427 case DISPPLANE_RGBX888:
2428 return DRM_FORMAT_XBGR8888;
2429 case DISPPLANE_BGRX101010:
2430 return DRM_FORMAT_XRGB2101010;
2431 case DISPPLANE_RGBX101010:
2432 return DRM_FORMAT_XBGR2101010;
2433 }
2434}
2435
bc8d7dff
DL
2436static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2437{
2438 switch (format) {
2439 case PLANE_CTL_FORMAT_RGB_565:
2440 return DRM_FORMAT_RGB565;
2441 default:
2442 case PLANE_CTL_FORMAT_XRGB_8888:
2443 if (rgb_order) {
2444 if (alpha)
2445 return DRM_FORMAT_ABGR8888;
2446 else
2447 return DRM_FORMAT_XBGR8888;
2448 } else {
2449 if (alpha)
2450 return DRM_FORMAT_ARGB8888;
2451 else
2452 return DRM_FORMAT_XRGB8888;
2453 }
2454 case PLANE_CTL_FORMAT_XRGB_2101010:
2455 if (rgb_order)
2456 return DRM_FORMAT_XBGR2101010;
2457 else
2458 return DRM_FORMAT_XRGB2101010;
2459 }
2460}
2461
5724dbd1 2462static bool
f6936e29
DV
2463intel_alloc_initial_plane_obj(struct intel_crtc *crtc,
2464 struct intel_initial_plane_config *plane_config)
46f297fb
JB
2465{
2466 struct drm_device *dev = crtc->base.dev;
3badb49f 2467 struct drm_i915_private *dev_priv = to_i915(dev);
72e96d64 2468 struct i915_ggtt *ggtt = &dev_priv->ggtt;
46f297fb
JB
2469 struct drm_i915_gem_object *obj = NULL;
2470 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2d14030b 2471 struct drm_framebuffer *fb = &plane_config->fb->base;
f37b5c2b
DV
2472 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2473 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2474 PAGE_SIZE);
2475
2476 size_aligned -= base_aligned;
46f297fb 2477
ff2652ea
CW
2478 if (plane_config->size == 0)
2479 return false;
2480
3badb49f
PZ
2481 /* If the FB is too big, just don't use it since fbdev is not very
2482 * important and we should probably use that space with FBC or other
2483 * features. */
72e96d64 2484 if (size_aligned * 2 > ggtt->stolen_usable_size)
3badb49f
PZ
2485 return false;
2486
12c83d99
TU
2487 mutex_lock(&dev->struct_mutex);
2488
f37b5c2b
DV
2489 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2490 base_aligned,
2491 base_aligned,
2492 size_aligned);
12c83d99
TU
2493 if (!obj) {
2494 mutex_unlock(&dev->struct_mutex);
484b41dd 2495 return false;
12c83d99 2496 }
46f297fb 2497
49af449b
DL
2498 obj->tiling_mode = plane_config->tiling;
2499 if (obj->tiling_mode == I915_TILING_X)
6bf129df 2500 obj->stride = fb->pitches[0];
46f297fb 2501
6bf129df
DL
2502 mode_cmd.pixel_format = fb->pixel_format;
2503 mode_cmd.width = fb->width;
2504 mode_cmd.height = fb->height;
2505 mode_cmd.pitches[0] = fb->pitches[0];
18c5247e
DV
2506 mode_cmd.modifier[0] = fb->modifier[0];
2507 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
46f297fb 2508
6bf129df 2509 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
484b41dd 2510 &mode_cmd, obj)) {
46f297fb
JB
2511 DRM_DEBUG_KMS("intel fb init failed\n");
2512 goto out_unref_obj;
2513 }
12c83d99 2514
46f297fb 2515 mutex_unlock(&dev->struct_mutex);
484b41dd 2516
f6936e29 2517 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
484b41dd 2518 return true;
46f297fb
JB
2519
2520out_unref_obj:
2521 drm_gem_object_unreference(&obj->base);
2522 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2523 return false;
2524}
2525
5724dbd1 2526static void
f6936e29
DV
2527intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2528 struct intel_initial_plane_config *plane_config)
484b41dd
JB
2529{
2530 struct drm_device *dev = intel_crtc->base.dev;
d9ceb816 2531 struct drm_i915_private *dev_priv = dev->dev_private;
484b41dd
JB
2532 struct drm_crtc *c;
2533 struct intel_crtc *i;
2ff8fde1 2534 struct drm_i915_gem_object *obj;
88595ac9 2535 struct drm_plane *primary = intel_crtc->base.primary;
be5651f2 2536 struct drm_plane_state *plane_state = primary->state;
200757f5
MR
2537 struct drm_crtc_state *crtc_state = intel_crtc->base.state;
2538 struct intel_plane *intel_plane = to_intel_plane(primary);
0a8d8a86
MR
2539 struct intel_plane_state *intel_state =
2540 to_intel_plane_state(plane_state);
88595ac9 2541 struct drm_framebuffer *fb;
484b41dd 2542
2d14030b 2543 if (!plane_config->fb)
484b41dd
JB
2544 return;
2545
f6936e29 2546 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
88595ac9
DV
2547 fb = &plane_config->fb->base;
2548 goto valid_fb;
f55548b5 2549 }
484b41dd 2550
2d14030b 2551 kfree(plane_config->fb);
484b41dd
JB
2552
2553 /*
2554 * Failed to alloc the obj, check to see if we should share
2555 * an fb with another CRTC instead
2556 */
70e1e0ec 2557 for_each_crtc(dev, c) {
484b41dd
JB
2558 i = to_intel_crtc(c);
2559
2560 if (c == &intel_crtc->base)
2561 continue;
2562
2ff8fde1
MR
2563 if (!i->active)
2564 continue;
2565
88595ac9
DV
2566 fb = c->primary->fb;
2567 if (!fb)
484b41dd
JB
2568 continue;
2569
88595ac9 2570 obj = intel_fb_obj(fb);
2ff8fde1 2571 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
88595ac9
DV
2572 drm_framebuffer_reference(fb);
2573 goto valid_fb;
484b41dd
JB
2574 }
2575 }
88595ac9 2576
200757f5
MR
2577 /*
2578 * We've failed to reconstruct the BIOS FB. Current display state
2579 * indicates that the primary plane is visible, but has a NULL FB,
2580 * which will lead to problems later if we don't fix it up. The
2581 * simplest solution is to just disable the primary plane now and
2582 * pretend the BIOS never had it enabled.
2583 */
2584 to_intel_plane_state(plane_state)->visible = false;
2585 crtc_state->plane_mask &= ~(1 << drm_plane_index(primary));
2622a081 2586 intel_pre_disable_primary_noatomic(&intel_crtc->base);
200757f5
MR
2587 intel_plane->disable_plane(primary, &intel_crtc->base);
2588
88595ac9
DV
2589 return;
2590
2591valid_fb:
f44e2659
VS
2592 plane_state->src_x = 0;
2593 plane_state->src_y = 0;
be5651f2
ML
2594 plane_state->src_w = fb->width << 16;
2595 plane_state->src_h = fb->height << 16;
2596
f44e2659
VS
2597 plane_state->crtc_x = 0;
2598 plane_state->crtc_y = 0;
be5651f2
ML
2599 plane_state->crtc_w = fb->width;
2600 plane_state->crtc_h = fb->height;
2601
0a8d8a86
MR
2602 intel_state->src.x1 = plane_state->src_x;
2603 intel_state->src.y1 = plane_state->src_y;
2604 intel_state->src.x2 = plane_state->src_x + plane_state->src_w;
2605 intel_state->src.y2 = plane_state->src_y + plane_state->src_h;
2606 intel_state->dst.x1 = plane_state->crtc_x;
2607 intel_state->dst.y1 = plane_state->crtc_y;
2608 intel_state->dst.x2 = plane_state->crtc_x + plane_state->crtc_w;
2609 intel_state->dst.y2 = plane_state->crtc_y + plane_state->crtc_h;
2610
88595ac9
DV
2611 obj = intel_fb_obj(fb);
2612 if (obj->tiling_mode != I915_TILING_NONE)
2613 dev_priv->preserve_bios_swizzle = true;
2614
be5651f2
ML
2615 drm_framebuffer_reference(fb);
2616 primary->fb = primary->state->fb = fb;
36750f28 2617 primary->crtc = primary->state->crtc = &intel_crtc->base;
36750f28 2618 intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary));
a9ff8714 2619 obj->frontbuffer_bits |= to_intel_plane(primary)->frontbuffer_bit;
46f297fb
JB
2620}
2621
a8d201af
ML
2622static void i9xx_update_primary_plane(struct drm_plane *primary,
2623 const struct intel_crtc_state *crtc_state,
2624 const struct intel_plane_state *plane_state)
81255565 2625{
a8d201af 2626 struct drm_device *dev = primary->dev;
81255565 2627 struct drm_i915_private *dev_priv = dev->dev_private;
a8d201af
ML
2628 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2629 struct drm_framebuffer *fb = plane_state->base.fb;
2630 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
81255565 2631 int plane = intel_crtc->plane;
54ea9da8 2632 u32 linear_offset;
81255565 2633 u32 dspcntr;
f0f59a00 2634 i915_reg_t reg = DSPCNTR(plane);
8d0deca8 2635 unsigned int rotation = plane_state->base.rotation;
ac484963 2636 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
54ea9da8
VS
2637 int x = plane_state->src.x1 >> 16;
2638 int y = plane_state->src.y1 >> 16;
c9ba6fad 2639
f45651ba
VS
2640 dspcntr = DISPPLANE_GAMMA_ENABLE;
2641
fdd508a6 2642 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2643
2644 if (INTEL_INFO(dev)->gen < 4) {
2645 if (intel_crtc->pipe == PIPE_B)
2646 dspcntr |= DISPPLANE_SEL_PIPE_B;
2647
2648 /* pipesrc and dspsize control the size that is scaled from,
2649 * which should always be the user's requested size.
2650 */
2651 I915_WRITE(DSPSIZE(plane),
a8d201af
ML
2652 ((crtc_state->pipe_src_h - 1) << 16) |
2653 (crtc_state->pipe_src_w - 1));
f45651ba 2654 I915_WRITE(DSPPOS(plane), 0);
c14b0485
VS
2655 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2656 I915_WRITE(PRIMSIZE(plane),
a8d201af
ML
2657 ((crtc_state->pipe_src_h - 1) << 16) |
2658 (crtc_state->pipe_src_w - 1));
c14b0485
VS
2659 I915_WRITE(PRIMPOS(plane), 0);
2660 I915_WRITE(PRIMCNSTALPHA(plane), 0);
f45651ba 2661 }
81255565 2662
57779d06
VS
2663 switch (fb->pixel_format) {
2664 case DRM_FORMAT_C8:
81255565
JB
2665 dspcntr |= DISPPLANE_8BPP;
2666 break;
57779d06 2667 case DRM_FORMAT_XRGB1555:
57779d06 2668 dspcntr |= DISPPLANE_BGRX555;
81255565 2669 break;
57779d06
VS
2670 case DRM_FORMAT_RGB565:
2671 dspcntr |= DISPPLANE_BGRX565;
2672 break;
2673 case DRM_FORMAT_XRGB8888:
57779d06
VS
2674 dspcntr |= DISPPLANE_BGRX888;
2675 break;
2676 case DRM_FORMAT_XBGR8888:
57779d06
VS
2677 dspcntr |= DISPPLANE_RGBX888;
2678 break;
2679 case DRM_FORMAT_XRGB2101010:
57779d06
VS
2680 dspcntr |= DISPPLANE_BGRX101010;
2681 break;
2682 case DRM_FORMAT_XBGR2101010:
57779d06 2683 dspcntr |= DISPPLANE_RGBX101010;
81255565
JB
2684 break;
2685 default:
baba133a 2686 BUG();
81255565 2687 }
57779d06 2688
f45651ba
VS
2689 if (INTEL_INFO(dev)->gen >= 4 &&
2690 obj->tiling_mode != I915_TILING_NONE)
2691 dspcntr |= DISPPLANE_TILED;
81255565 2692
de1aa629
VS
2693 if (IS_G4X(dev))
2694 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2695
ac484963 2696 linear_offset = y * fb->pitches[0] + x * cpp;
81255565 2697
c2c75131
DV
2698 if (INTEL_INFO(dev)->gen >= 4) {
2699 intel_crtc->dspaddr_offset =
4f2d9934 2700 intel_compute_tile_offset(&x, &y, fb, 0,
8d0deca8 2701 fb->pitches[0], rotation);
c2c75131
DV
2702 linear_offset -= intel_crtc->dspaddr_offset;
2703 } else {
e506a0c6 2704 intel_crtc->dspaddr_offset = linear_offset;
c2c75131 2705 }
e506a0c6 2706
8d0deca8 2707 if (rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2708 dspcntr |= DISPPLANE_ROTATE_180;
2709
a8d201af
ML
2710 x += (crtc_state->pipe_src_w - 1);
2711 y += (crtc_state->pipe_src_h - 1);
48404c1e
SJ
2712
2713 /* Finding the last pixel of the last line of the display
2714 data and adding to linear_offset*/
2715 linear_offset +=
a8d201af 2716 (crtc_state->pipe_src_h - 1) * fb->pitches[0] +
ac484963 2717 (crtc_state->pipe_src_w - 1) * cpp;
48404c1e
SJ
2718 }
2719
2db3366b
PZ
2720 intel_crtc->adjusted_x = x;
2721 intel_crtc->adjusted_y = y;
2722
48404c1e
SJ
2723 I915_WRITE(reg, dspcntr);
2724
01f2c773 2725 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
a6c45cf0 2726 if (INTEL_INFO(dev)->gen >= 4) {
85ba7b7d
DV
2727 I915_WRITE(DSPSURF(plane),
2728 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
5eddb70b 2729 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
e506a0c6 2730 I915_WRITE(DSPLINOFF(plane), linear_offset);
5eddb70b 2731 } else
f343c5f6 2732 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
5eddb70b 2733 POSTING_READ(reg);
17638cd6
JB
2734}
2735
a8d201af
ML
2736static void i9xx_disable_primary_plane(struct drm_plane *primary,
2737 struct drm_crtc *crtc)
17638cd6
JB
2738{
2739 struct drm_device *dev = crtc->dev;
2740 struct drm_i915_private *dev_priv = dev->dev_private;
2741 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
17638cd6 2742 int plane = intel_crtc->plane;
f45651ba 2743
a8d201af
ML
2744 I915_WRITE(DSPCNTR(plane), 0);
2745 if (INTEL_INFO(dev_priv)->gen >= 4)
fdd508a6 2746 I915_WRITE(DSPSURF(plane), 0);
a8d201af
ML
2747 else
2748 I915_WRITE(DSPADDR(plane), 0);
2749 POSTING_READ(DSPCNTR(plane));
2750}
c9ba6fad 2751
a8d201af
ML
2752static void ironlake_update_primary_plane(struct drm_plane *primary,
2753 const struct intel_crtc_state *crtc_state,
2754 const struct intel_plane_state *plane_state)
2755{
2756 struct drm_device *dev = primary->dev;
2757 struct drm_i915_private *dev_priv = dev->dev_private;
2758 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2759 struct drm_framebuffer *fb = plane_state->base.fb;
2760 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
2761 int plane = intel_crtc->plane;
54ea9da8 2762 u32 linear_offset;
a8d201af
ML
2763 u32 dspcntr;
2764 i915_reg_t reg = DSPCNTR(plane);
8d0deca8 2765 unsigned int rotation = plane_state->base.rotation;
ac484963 2766 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
a8d201af
ML
2767 int x = plane_state->src.x1 >> 16;
2768 int y = plane_state->src.y1 >> 16;
c9ba6fad 2769
f45651ba 2770 dspcntr = DISPPLANE_GAMMA_ENABLE;
fdd508a6 2771 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2772
2773 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2774 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
17638cd6 2775
57779d06
VS
2776 switch (fb->pixel_format) {
2777 case DRM_FORMAT_C8:
17638cd6
JB
2778 dspcntr |= DISPPLANE_8BPP;
2779 break;
57779d06
VS
2780 case DRM_FORMAT_RGB565:
2781 dspcntr |= DISPPLANE_BGRX565;
17638cd6 2782 break;
57779d06 2783 case DRM_FORMAT_XRGB8888:
57779d06
VS
2784 dspcntr |= DISPPLANE_BGRX888;
2785 break;
2786 case DRM_FORMAT_XBGR8888:
57779d06
VS
2787 dspcntr |= DISPPLANE_RGBX888;
2788 break;
2789 case DRM_FORMAT_XRGB2101010:
57779d06
VS
2790 dspcntr |= DISPPLANE_BGRX101010;
2791 break;
2792 case DRM_FORMAT_XBGR2101010:
57779d06 2793 dspcntr |= DISPPLANE_RGBX101010;
17638cd6
JB
2794 break;
2795 default:
baba133a 2796 BUG();
17638cd6
JB
2797 }
2798
2799 if (obj->tiling_mode != I915_TILING_NONE)
2800 dspcntr |= DISPPLANE_TILED;
17638cd6 2801
f45651ba 2802 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
1f5d76db 2803 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
17638cd6 2804
ac484963 2805 linear_offset = y * fb->pitches[0] + x * cpp;
c2c75131 2806 intel_crtc->dspaddr_offset =
4f2d9934 2807 intel_compute_tile_offset(&x, &y, fb, 0,
8d0deca8 2808 fb->pitches[0], rotation);
c2c75131 2809 linear_offset -= intel_crtc->dspaddr_offset;
8d0deca8 2810 if (rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2811 dspcntr |= DISPPLANE_ROTATE_180;
2812
2813 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
a8d201af
ML
2814 x += (crtc_state->pipe_src_w - 1);
2815 y += (crtc_state->pipe_src_h - 1);
48404c1e
SJ
2816
2817 /* Finding the last pixel of the last line of the display
2818 data and adding to linear_offset*/
2819 linear_offset +=
a8d201af 2820 (crtc_state->pipe_src_h - 1) * fb->pitches[0] +
ac484963 2821 (crtc_state->pipe_src_w - 1) * cpp;
48404c1e
SJ
2822 }
2823 }
2824
2db3366b
PZ
2825 intel_crtc->adjusted_x = x;
2826 intel_crtc->adjusted_y = y;
2827
48404c1e 2828 I915_WRITE(reg, dspcntr);
17638cd6 2829
01f2c773 2830 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
85ba7b7d
DV
2831 I915_WRITE(DSPSURF(plane),
2832 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
b3dc685e 2833 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
bc1c91eb
DL
2834 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2835 } else {
2836 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2837 I915_WRITE(DSPLINOFF(plane), linear_offset);
2838 }
17638cd6 2839 POSTING_READ(reg);
17638cd6
JB
2840}
2841
7b49f948
VS
2842u32 intel_fb_stride_alignment(const struct drm_i915_private *dev_priv,
2843 uint64_t fb_modifier, uint32_t pixel_format)
b321803d 2844{
7b49f948 2845 if (fb_modifier == DRM_FORMAT_MOD_NONE) {
b321803d 2846 return 64;
7b49f948
VS
2847 } else {
2848 int cpp = drm_format_plane_cpp(pixel_format, 0);
2849
27ba3910 2850 return intel_tile_width_bytes(dev_priv, fb_modifier, cpp);
b321803d
DL
2851 }
2852}
2853
44eb0cb9
MK
2854u32 intel_plane_obj_offset(struct intel_plane *intel_plane,
2855 struct drm_i915_gem_object *obj,
2856 unsigned int plane)
121920fa 2857{
ce7f1728 2858 struct i915_ggtt_view view;
dedf278c 2859 struct i915_vma *vma;
44eb0cb9 2860 u64 offset;
121920fa 2861
e7941294 2862 intel_fill_fb_ggtt_view(&view, intel_plane->base.state->fb,
3465c580 2863 intel_plane->base.state->rotation);
121920fa 2864
ce7f1728 2865 vma = i915_gem_obj_to_ggtt_view(obj, &view);
dedf278c 2866 if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n",
ce7f1728 2867 view.type))
dedf278c
TU
2868 return -1;
2869
44eb0cb9 2870 offset = vma->node.start;
dedf278c
TU
2871
2872 if (plane == 1) {
7723f47d 2873 offset += vma->ggtt_view.params.rotated.uv_start_page *
dedf278c
TU
2874 PAGE_SIZE;
2875 }
2876
44eb0cb9
MK
2877 WARN_ON(upper_32_bits(offset));
2878
2879 return lower_32_bits(offset);
121920fa
TU
2880}
2881
e435d6e5
ML
2882static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id)
2883{
2884 struct drm_device *dev = intel_crtc->base.dev;
2885 struct drm_i915_private *dev_priv = dev->dev_private;
2886
2887 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0);
2888 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0);
2889 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0);
e435d6e5
ML
2890}
2891
a1b2278e
CK
2892/*
2893 * This function detaches (aka. unbinds) unused scalers in hardware
2894 */
0583236e 2895static void skl_detach_scalers(struct intel_crtc *intel_crtc)
a1b2278e 2896{
a1b2278e
CK
2897 struct intel_crtc_scaler_state *scaler_state;
2898 int i;
2899
a1b2278e
CK
2900 scaler_state = &intel_crtc->config->scaler_state;
2901
2902 /* loop through and disable scalers that aren't in use */
2903 for (i = 0; i < intel_crtc->num_scalers; i++) {
e435d6e5
ML
2904 if (!scaler_state->scalers[i].in_use)
2905 skl_detach_scaler(intel_crtc, i);
a1b2278e
CK
2906 }
2907}
2908
6156a456 2909u32 skl_plane_ctl_format(uint32_t pixel_format)
70d21f0e 2910{
6156a456 2911 switch (pixel_format) {
d161cf7a 2912 case DRM_FORMAT_C8:
c34ce3d1 2913 return PLANE_CTL_FORMAT_INDEXED;
70d21f0e 2914 case DRM_FORMAT_RGB565:
c34ce3d1 2915 return PLANE_CTL_FORMAT_RGB_565;
70d21f0e 2916 case DRM_FORMAT_XBGR8888:
c34ce3d1 2917 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
6156a456 2918 case DRM_FORMAT_XRGB8888:
c34ce3d1 2919 return PLANE_CTL_FORMAT_XRGB_8888;
6156a456
CK
2920 /*
2921 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
2922 * to be already pre-multiplied. We need to add a knob (or a different
2923 * DRM_FORMAT) for user-space to configure that.
2924 */
f75fb42a 2925 case DRM_FORMAT_ABGR8888:
c34ce3d1 2926 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
6156a456 2927 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
6156a456 2928 case DRM_FORMAT_ARGB8888:
c34ce3d1 2929 return PLANE_CTL_FORMAT_XRGB_8888 |
6156a456 2930 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
70d21f0e 2931 case DRM_FORMAT_XRGB2101010:
c34ce3d1 2932 return PLANE_CTL_FORMAT_XRGB_2101010;
70d21f0e 2933 case DRM_FORMAT_XBGR2101010:
c34ce3d1 2934 return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
6156a456 2935 case DRM_FORMAT_YUYV:
c34ce3d1 2936 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
6156a456 2937 case DRM_FORMAT_YVYU:
c34ce3d1 2938 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
6156a456 2939 case DRM_FORMAT_UYVY:
c34ce3d1 2940 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
6156a456 2941 case DRM_FORMAT_VYUY:
c34ce3d1 2942 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
70d21f0e 2943 default:
4249eeef 2944 MISSING_CASE(pixel_format);
70d21f0e 2945 }
8cfcba41 2946
c34ce3d1 2947 return 0;
6156a456 2948}
70d21f0e 2949
6156a456
CK
2950u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
2951{
6156a456 2952 switch (fb_modifier) {
30af77c4 2953 case DRM_FORMAT_MOD_NONE:
70d21f0e 2954 break;
30af77c4 2955 case I915_FORMAT_MOD_X_TILED:
c34ce3d1 2956 return PLANE_CTL_TILED_X;
b321803d 2957 case I915_FORMAT_MOD_Y_TILED:
c34ce3d1 2958 return PLANE_CTL_TILED_Y;
b321803d 2959 case I915_FORMAT_MOD_Yf_TILED:
c34ce3d1 2960 return PLANE_CTL_TILED_YF;
70d21f0e 2961 default:
6156a456 2962 MISSING_CASE(fb_modifier);
70d21f0e 2963 }
8cfcba41 2964
c34ce3d1 2965 return 0;
6156a456 2966}
70d21f0e 2967
6156a456
CK
2968u32 skl_plane_ctl_rotation(unsigned int rotation)
2969{
3b7a5119 2970 switch (rotation) {
6156a456
CK
2971 case BIT(DRM_ROTATE_0):
2972 break;
1e8df167
SJ
2973 /*
2974 * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr
2975 * while i915 HW rotation is clockwise, thats why this swapping.
2976 */
3b7a5119 2977 case BIT(DRM_ROTATE_90):
1e8df167 2978 return PLANE_CTL_ROTATE_270;
3b7a5119 2979 case BIT(DRM_ROTATE_180):
c34ce3d1 2980 return PLANE_CTL_ROTATE_180;
3b7a5119 2981 case BIT(DRM_ROTATE_270):
1e8df167 2982 return PLANE_CTL_ROTATE_90;
6156a456
CK
2983 default:
2984 MISSING_CASE(rotation);
2985 }
2986
c34ce3d1 2987 return 0;
6156a456
CK
2988}
2989
a8d201af
ML
2990static void skylake_update_primary_plane(struct drm_plane *plane,
2991 const struct intel_crtc_state *crtc_state,
2992 const struct intel_plane_state *plane_state)
6156a456 2993{
a8d201af 2994 struct drm_device *dev = plane->dev;
6156a456 2995 struct drm_i915_private *dev_priv = dev->dev_private;
a8d201af
ML
2996 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2997 struct drm_framebuffer *fb = plane_state->base.fb;
2998 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
6156a456
CK
2999 int pipe = intel_crtc->pipe;
3000 u32 plane_ctl, stride_div, stride;
3001 u32 tile_height, plane_offset, plane_size;
a8d201af 3002 unsigned int rotation = plane_state->base.rotation;
6156a456 3003 int x_offset, y_offset;
44eb0cb9 3004 u32 surf_addr;
a8d201af
ML
3005 int scaler_id = plane_state->scaler_id;
3006 int src_x = plane_state->src.x1 >> 16;
3007 int src_y = plane_state->src.y1 >> 16;
3008 int src_w = drm_rect_width(&plane_state->src) >> 16;
3009 int src_h = drm_rect_height(&plane_state->src) >> 16;
3010 int dst_x = plane_state->dst.x1;
3011 int dst_y = plane_state->dst.y1;
3012 int dst_w = drm_rect_width(&plane_state->dst);
3013 int dst_h = drm_rect_height(&plane_state->dst);
70d21f0e 3014
6156a456
CK
3015 plane_ctl = PLANE_CTL_ENABLE |
3016 PLANE_CTL_PIPE_GAMMA_ENABLE |
3017 PLANE_CTL_PIPE_CSC_ENABLE;
3018
3019 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3020 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
3021 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
6156a456
CK
3022 plane_ctl |= skl_plane_ctl_rotation(rotation);
3023
7b49f948 3024 stride_div = intel_fb_stride_alignment(dev_priv, fb->modifier[0],
b321803d 3025 fb->pixel_format);
dedf278c 3026 surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj, 0);
3b7a5119 3027
a42e5a23
PZ
3028 WARN_ON(drm_rect_width(&plane_state->src) == 0);
3029
3b7a5119 3030 if (intel_rotation_90_or_270(rotation)) {
832be82f
VS
3031 int cpp = drm_format_plane_cpp(fb->pixel_format, 0);
3032
3b7a5119 3033 /* stride = Surface height in tiles */
832be82f 3034 tile_height = intel_tile_height(dev_priv, fb->modifier[0], cpp);
3b7a5119 3035 stride = DIV_ROUND_UP(fb->height, tile_height);
a8d201af
ML
3036 x_offset = stride * tile_height - src_y - src_h;
3037 y_offset = src_x;
6156a456 3038 plane_size = (src_w - 1) << 16 | (src_h - 1);
3b7a5119
SJ
3039 } else {
3040 stride = fb->pitches[0] / stride_div;
a8d201af
ML
3041 x_offset = src_x;
3042 y_offset = src_y;
6156a456 3043 plane_size = (src_h - 1) << 16 | (src_w - 1);
3b7a5119
SJ
3044 }
3045 plane_offset = y_offset << 16 | x_offset;
b321803d 3046
2db3366b
PZ
3047 intel_crtc->adjusted_x = x_offset;
3048 intel_crtc->adjusted_y = y_offset;
3049
70d21f0e 3050 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
3b7a5119
SJ
3051 I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset);
3052 I915_WRITE(PLANE_SIZE(pipe, 0), plane_size);
3053 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
6156a456
CK
3054
3055 if (scaler_id >= 0) {
3056 uint32_t ps_ctrl = 0;
3057
3058 WARN_ON(!dst_w || !dst_h);
3059 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3060 crtc_state->scaler_state.scalers[scaler_id].mode;
3061 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3062 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3063 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3064 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3065 I915_WRITE(PLANE_POS(pipe, 0), 0);
3066 } else {
3067 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3068 }
3069
121920fa 3070 I915_WRITE(PLANE_SURF(pipe, 0), surf_addr);
70d21f0e
DL
3071
3072 POSTING_READ(PLANE_SURF(pipe, 0));
3073}
3074
a8d201af
ML
3075static void skylake_disable_primary_plane(struct drm_plane *primary,
3076 struct drm_crtc *crtc)
17638cd6
JB
3077{
3078 struct drm_device *dev = crtc->dev;
3079 struct drm_i915_private *dev_priv = dev->dev_private;
a8d201af 3080 int pipe = to_intel_crtc(crtc)->pipe;
17638cd6 3081
a8d201af
ML
3082 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3083 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3084 POSTING_READ(PLANE_SURF(pipe, 0));
3085}
29b9bde6 3086
a8d201af
ML
3087/* Assume fb object is pinned & idle & fenced and just update base pointers */
3088static int
3089intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3090 int x, int y, enum mode_set_atomic state)
3091{
3092 /* Support for kgdboc is disabled, this needs a major rework. */
3093 DRM_ERROR("legacy panic handler not supported any more.\n");
3094
3095 return -ENODEV;
81255565
JB
3096}
3097
7514747d
VS
3098static void intel_update_primary_planes(struct drm_device *dev)
3099{
7514747d 3100 struct drm_crtc *crtc;
96a02917 3101
70e1e0ec 3102 for_each_crtc(dev, crtc) {
11c22da6
ML
3103 struct intel_plane *plane = to_intel_plane(crtc->primary);
3104 struct intel_plane_state *plane_state;
96a02917 3105
11c22da6 3106 drm_modeset_lock_crtc(crtc, &plane->base);
11c22da6
ML
3107 plane_state = to_intel_plane_state(plane->base.state);
3108
a8d201af
ML
3109 if (plane_state->visible)
3110 plane->update_plane(&plane->base,
3111 to_intel_crtc_state(crtc->state),
3112 plane_state);
11c22da6
ML
3113
3114 drm_modeset_unlock_crtc(crtc);
96a02917
VS
3115 }
3116}
3117
c033666a 3118void intel_prepare_reset(struct drm_i915_private *dev_priv)
7514747d
VS
3119{
3120 /* no reset support for gen2 */
c033666a 3121 if (IS_GEN2(dev_priv))
7514747d
VS
3122 return;
3123
3124 /* reset doesn't touch the display */
c033666a 3125 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
7514747d
VS
3126 return;
3127
c033666a 3128 drm_modeset_lock_all(dev_priv->dev);
f98ce92f
VS
3129 /*
3130 * Disabling the crtcs gracefully seems nicer. Also the
3131 * g33 docs say we should at least disable all the planes.
3132 */
c033666a 3133 intel_display_suspend(dev_priv->dev);
7514747d
VS
3134}
3135
c033666a 3136void intel_finish_reset(struct drm_i915_private *dev_priv)
7514747d 3137{
7514747d 3138 /* no reset support for gen2 */
c033666a 3139 if (IS_GEN2(dev_priv))
7514747d
VS
3140 return;
3141
3142 /* reset doesn't touch the display */
c033666a 3143 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv)) {
7514747d
VS
3144 /*
3145 * Flips in the rings have been nuked by the reset,
3146 * so update the base address of all primary
3147 * planes to the the last fb to make sure we're
3148 * showing the correct fb after a reset.
11c22da6
ML
3149 *
3150 * FIXME: Atomic will make this obsolete since we won't schedule
3151 * CS-based flips (which might get lost in gpu resets) any more.
7514747d 3152 */
c033666a 3153 intel_update_primary_planes(dev_priv->dev);
7514747d
VS
3154 return;
3155 }
3156
3157 /*
3158 * The display has been reset as well,
3159 * so need a full re-initialization.
3160 */
3161 intel_runtime_pm_disable_interrupts(dev_priv);
3162 intel_runtime_pm_enable_interrupts(dev_priv);
3163
c033666a 3164 intel_modeset_init_hw(dev_priv->dev);
7514747d
VS
3165
3166 spin_lock_irq(&dev_priv->irq_lock);
3167 if (dev_priv->display.hpd_irq_setup)
91d14251 3168 dev_priv->display.hpd_irq_setup(dev_priv);
7514747d
VS
3169 spin_unlock_irq(&dev_priv->irq_lock);
3170
c033666a 3171 intel_display_resume(dev_priv->dev);
7514747d
VS
3172
3173 intel_hpd_init(dev_priv);
3174
c033666a 3175 drm_modeset_unlock_all(dev_priv->dev);
7514747d
VS
3176}
3177
7d5e3799
CW
3178static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3179{
6885843a 3180 return !list_empty_careful(&to_intel_crtc(crtc)->flip_work);
7d5e3799
CW
3181}
3182
bfd16b2a
ML
3183static void intel_update_pipe_config(struct intel_crtc *crtc,
3184 struct intel_crtc_state *old_crtc_state)
e30e8f75
GP
3185{
3186 struct drm_device *dev = crtc->base.dev;
3187 struct drm_i915_private *dev_priv = dev->dev_private;
bfd16b2a
ML
3188 struct intel_crtc_state *pipe_config =
3189 to_intel_crtc_state(crtc->base.state);
e30e8f75 3190
bfd16b2a
ML
3191 /* drm_atomic_helper_update_legacy_modeset_state might not be called. */
3192 crtc->base.mode = crtc->base.state->mode;
3193
3194 DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n",
3195 old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h,
3196 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
e30e8f75
GP
3197
3198 /*
3199 * Update pipe size and adjust fitter if needed: the reason for this is
3200 * that in compute_mode_changes we check the native mode (not the pfit
3201 * mode) to see if we can flip rather than do a full mode set. In the
3202 * fastboot case, we'll flip, but if we don't update the pipesrc and
3203 * pfit state, we'll end up with a big fb scanned out into the wrong
3204 * sized surface.
e30e8f75
GP
3205 */
3206
e30e8f75 3207 I915_WRITE(PIPESRC(crtc->pipe),
bfd16b2a
ML
3208 ((pipe_config->pipe_src_w - 1) << 16) |
3209 (pipe_config->pipe_src_h - 1));
3210
3211 /* on skylake this is done by detaching scalers */
3212 if (INTEL_INFO(dev)->gen >= 9) {
3213 skl_detach_scalers(crtc);
3214
3215 if (pipe_config->pch_pfit.enabled)
3216 skylake_pfit_enable(crtc);
3217 } else if (HAS_PCH_SPLIT(dev)) {
3218 if (pipe_config->pch_pfit.enabled)
3219 ironlake_pfit_enable(crtc);
3220 else if (old_crtc_state->pch_pfit.enabled)
3221 ironlake_pfit_disable(crtc, true);
e30e8f75 3222 }
e30e8f75
GP
3223}
3224
5e84e1a4
ZW
3225static void intel_fdi_normal_train(struct drm_crtc *crtc)
3226{
3227 struct drm_device *dev = crtc->dev;
3228 struct drm_i915_private *dev_priv = dev->dev_private;
3229 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3230 int pipe = intel_crtc->pipe;
f0f59a00
VS
3231 i915_reg_t reg;
3232 u32 temp;
5e84e1a4
ZW
3233
3234 /* enable normal train */
3235 reg = FDI_TX_CTL(pipe);
3236 temp = I915_READ(reg);
61e499bf 3237 if (IS_IVYBRIDGE(dev)) {
357555c0
JB
3238 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3239 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
61e499bf
KP
3240 } else {
3241 temp &= ~FDI_LINK_TRAIN_NONE;
3242 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
357555c0 3243 }
5e84e1a4
ZW
3244 I915_WRITE(reg, temp);
3245
3246 reg = FDI_RX_CTL(pipe);
3247 temp = I915_READ(reg);
3248 if (HAS_PCH_CPT(dev)) {
3249 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3250 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3251 } else {
3252 temp &= ~FDI_LINK_TRAIN_NONE;
3253 temp |= FDI_LINK_TRAIN_NONE;
3254 }
3255 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3256
3257 /* wait one idle pattern time */
3258 POSTING_READ(reg);
3259 udelay(1000);
357555c0
JB
3260
3261 /* IVB wants error correction enabled */
3262 if (IS_IVYBRIDGE(dev))
3263 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3264 FDI_FE_ERRC_ENABLE);
5e84e1a4
ZW
3265}
3266
8db9d77b
ZW
3267/* The FDI link training functions for ILK/Ibexpeak. */
3268static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3269{
3270 struct drm_device *dev = crtc->dev;
3271 struct drm_i915_private *dev_priv = dev->dev_private;
3272 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3273 int pipe = intel_crtc->pipe;
f0f59a00
VS
3274 i915_reg_t reg;
3275 u32 temp, tries;
8db9d77b 3276
1c8562f6 3277 /* FDI needs bits from pipe first */
0fc932b8 3278 assert_pipe_enabled(dev_priv, pipe);
0fc932b8 3279
e1a44743
AJ
3280 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3281 for train result */
5eddb70b
CW
3282 reg = FDI_RX_IMR(pipe);
3283 temp = I915_READ(reg);
e1a44743
AJ
3284 temp &= ~FDI_RX_SYMBOL_LOCK;
3285 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3286 I915_WRITE(reg, temp);
3287 I915_READ(reg);
e1a44743
AJ
3288 udelay(150);
3289
8db9d77b 3290 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3291 reg = FDI_TX_CTL(pipe);
3292 temp = I915_READ(reg);
627eb5a3 3293 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3294 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3295 temp &= ~FDI_LINK_TRAIN_NONE;
3296 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 3297 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3298
5eddb70b
CW
3299 reg = FDI_RX_CTL(pipe);
3300 temp = I915_READ(reg);
8db9d77b
ZW
3301 temp &= ~FDI_LINK_TRAIN_NONE;
3302 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b
CW
3303 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3304
3305 POSTING_READ(reg);
8db9d77b
ZW
3306 udelay(150);
3307
5b2adf89 3308 /* Ironlake workaround, enable clock pointer after FDI enable*/
8f5718a6
DV
3309 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3310 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3311 FDI_RX_PHASE_SYNC_POINTER_EN);
5b2adf89 3312
5eddb70b 3313 reg = FDI_RX_IIR(pipe);
e1a44743 3314 for (tries = 0; tries < 5; tries++) {
5eddb70b 3315 temp = I915_READ(reg);
8db9d77b
ZW
3316 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3317
3318 if ((temp & FDI_RX_BIT_LOCK)) {
3319 DRM_DEBUG_KMS("FDI train 1 done.\n");
5eddb70b 3320 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
3321 break;
3322 }
8db9d77b 3323 }
e1a44743 3324 if (tries == 5)
5eddb70b 3325 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3326
3327 /* Train 2 */
5eddb70b
CW
3328 reg = FDI_TX_CTL(pipe);
3329 temp = I915_READ(reg);
8db9d77b
ZW
3330 temp &= ~FDI_LINK_TRAIN_NONE;
3331 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3332 I915_WRITE(reg, temp);
8db9d77b 3333
5eddb70b
CW
3334 reg = FDI_RX_CTL(pipe);
3335 temp = I915_READ(reg);
8db9d77b
ZW
3336 temp &= ~FDI_LINK_TRAIN_NONE;
3337 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3338 I915_WRITE(reg, temp);
8db9d77b 3339
5eddb70b
CW
3340 POSTING_READ(reg);
3341 udelay(150);
8db9d77b 3342
5eddb70b 3343 reg = FDI_RX_IIR(pipe);
e1a44743 3344 for (tries = 0; tries < 5; tries++) {
5eddb70b 3345 temp = I915_READ(reg);
8db9d77b
ZW
3346 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3347
3348 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 3349 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
3350 DRM_DEBUG_KMS("FDI train 2 done.\n");
3351 break;
3352 }
8db9d77b 3353 }
e1a44743 3354 if (tries == 5)
5eddb70b 3355 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3356
3357 DRM_DEBUG_KMS("FDI train done\n");
5c5313c8 3358
8db9d77b
ZW
3359}
3360
0206e353 3361static const int snb_b_fdi_train_param[] = {
8db9d77b
ZW
3362 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3363 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3364 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3365 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3366};
3367
3368/* The FDI link training functions for SNB/Cougarpoint. */
3369static void gen6_fdi_link_train(struct drm_crtc *crtc)
3370{
3371 struct drm_device *dev = crtc->dev;
3372 struct drm_i915_private *dev_priv = dev->dev_private;
3373 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3374 int pipe = intel_crtc->pipe;
f0f59a00
VS
3375 i915_reg_t reg;
3376 u32 temp, i, retry;
8db9d77b 3377
e1a44743
AJ
3378 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3379 for train result */
5eddb70b
CW
3380 reg = FDI_RX_IMR(pipe);
3381 temp = I915_READ(reg);
e1a44743
AJ
3382 temp &= ~FDI_RX_SYMBOL_LOCK;
3383 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3384 I915_WRITE(reg, temp);
3385
3386 POSTING_READ(reg);
e1a44743
AJ
3387 udelay(150);
3388
8db9d77b 3389 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3390 reg = FDI_TX_CTL(pipe);
3391 temp = I915_READ(reg);
627eb5a3 3392 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3393 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3394 temp &= ~FDI_LINK_TRAIN_NONE;
3395 temp |= FDI_LINK_TRAIN_PATTERN_1;
3396 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3397 /* SNB-B */
3398 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
5eddb70b 3399 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3400
d74cf324
DV
3401 I915_WRITE(FDI_RX_MISC(pipe),
3402 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3403
5eddb70b
CW
3404 reg = FDI_RX_CTL(pipe);
3405 temp = I915_READ(reg);
8db9d77b
ZW
3406 if (HAS_PCH_CPT(dev)) {
3407 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3408 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3409 } else {
3410 temp &= ~FDI_LINK_TRAIN_NONE;
3411 temp |= FDI_LINK_TRAIN_PATTERN_1;
3412 }
5eddb70b
CW
3413 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3414
3415 POSTING_READ(reg);
8db9d77b
ZW
3416 udelay(150);
3417
0206e353 3418 for (i = 0; i < 4; i++) {
5eddb70b
CW
3419 reg = FDI_TX_CTL(pipe);
3420 temp = I915_READ(reg);
8db9d77b
ZW
3421 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3422 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3423 I915_WRITE(reg, temp);
3424
3425 POSTING_READ(reg);
8db9d77b
ZW
3426 udelay(500);
3427
fa37d39e
SP
3428 for (retry = 0; retry < 5; retry++) {
3429 reg = FDI_RX_IIR(pipe);
3430 temp = I915_READ(reg);
3431 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3432 if (temp & FDI_RX_BIT_LOCK) {
3433 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3434 DRM_DEBUG_KMS("FDI train 1 done.\n");
3435 break;
3436 }
3437 udelay(50);
8db9d77b 3438 }
fa37d39e
SP
3439 if (retry < 5)
3440 break;
8db9d77b
ZW
3441 }
3442 if (i == 4)
5eddb70b 3443 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3444
3445 /* Train 2 */
5eddb70b
CW
3446 reg = FDI_TX_CTL(pipe);
3447 temp = I915_READ(reg);
8db9d77b
ZW
3448 temp &= ~FDI_LINK_TRAIN_NONE;
3449 temp |= FDI_LINK_TRAIN_PATTERN_2;
3450 if (IS_GEN6(dev)) {
3451 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3452 /* SNB-B */
3453 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3454 }
5eddb70b 3455 I915_WRITE(reg, temp);
8db9d77b 3456
5eddb70b
CW
3457 reg = FDI_RX_CTL(pipe);
3458 temp = I915_READ(reg);
8db9d77b
ZW
3459 if (HAS_PCH_CPT(dev)) {
3460 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3461 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3462 } else {
3463 temp &= ~FDI_LINK_TRAIN_NONE;
3464 temp |= FDI_LINK_TRAIN_PATTERN_2;
3465 }
5eddb70b
CW
3466 I915_WRITE(reg, temp);
3467
3468 POSTING_READ(reg);
8db9d77b
ZW
3469 udelay(150);
3470
0206e353 3471 for (i = 0; i < 4; i++) {
5eddb70b
CW
3472 reg = FDI_TX_CTL(pipe);
3473 temp = I915_READ(reg);
8db9d77b
ZW
3474 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3475 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3476 I915_WRITE(reg, temp);
3477
3478 POSTING_READ(reg);
8db9d77b
ZW
3479 udelay(500);
3480
fa37d39e
SP
3481 for (retry = 0; retry < 5; retry++) {
3482 reg = FDI_RX_IIR(pipe);
3483 temp = I915_READ(reg);
3484 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3485 if (temp & FDI_RX_SYMBOL_LOCK) {
3486 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3487 DRM_DEBUG_KMS("FDI train 2 done.\n");
3488 break;
3489 }
3490 udelay(50);
8db9d77b 3491 }
fa37d39e
SP
3492 if (retry < 5)
3493 break;
8db9d77b
ZW
3494 }
3495 if (i == 4)
5eddb70b 3496 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3497
3498 DRM_DEBUG_KMS("FDI train done.\n");
3499}
3500
357555c0
JB
3501/* Manual link training for Ivy Bridge A0 parts */
3502static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3503{
3504 struct drm_device *dev = crtc->dev;
3505 struct drm_i915_private *dev_priv = dev->dev_private;
3506 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3507 int pipe = intel_crtc->pipe;
f0f59a00
VS
3508 i915_reg_t reg;
3509 u32 temp, i, j;
357555c0
JB
3510
3511 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3512 for train result */
3513 reg = FDI_RX_IMR(pipe);
3514 temp = I915_READ(reg);
3515 temp &= ~FDI_RX_SYMBOL_LOCK;
3516 temp &= ~FDI_RX_BIT_LOCK;
3517 I915_WRITE(reg, temp);
3518
3519 POSTING_READ(reg);
3520 udelay(150);
3521
01a415fd
DV
3522 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3523 I915_READ(FDI_RX_IIR(pipe)));
3524
139ccd3f
JB
3525 /* Try each vswing and preemphasis setting twice before moving on */
3526 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3527 /* disable first in case we need to retry */
3528 reg = FDI_TX_CTL(pipe);
3529 temp = I915_READ(reg);
3530 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3531 temp &= ~FDI_TX_ENABLE;
3532 I915_WRITE(reg, temp);
357555c0 3533
139ccd3f
JB
3534 reg = FDI_RX_CTL(pipe);
3535 temp = I915_READ(reg);
3536 temp &= ~FDI_LINK_TRAIN_AUTO;
3537 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3538 temp &= ~FDI_RX_ENABLE;
3539 I915_WRITE(reg, temp);
357555c0 3540
139ccd3f 3541 /* enable CPU FDI TX and PCH FDI RX */
357555c0
JB
3542 reg = FDI_TX_CTL(pipe);
3543 temp = I915_READ(reg);
139ccd3f 3544 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3545 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
139ccd3f 3546 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
357555c0 3547 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
139ccd3f
JB
3548 temp |= snb_b_fdi_train_param[j/2];
3549 temp |= FDI_COMPOSITE_SYNC;
3550 I915_WRITE(reg, temp | FDI_TX_ENABLE);
357555c0 3551
139ccd3f
JB
3552 I915_WRITE(FDI_RX_MISC(pipe),
3553 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
357555c0 3554
139ccd3f 3555 reg = FDI_RX_CTL(pipe);
357555c0 3556 temp = I915_READ(reg);
139ccd3f
JB
3557 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3558 temp |= FDI_COMPOSITE_SYNC;
3559 I915_WRITE(reg, temp | FDI_RX_ENABLE);
357555c0 3560
139ccd3f
JB
3561 POSTING_READ(reg);
3562 udelay(1); /* should be 0.5us */
357555c0 3563
139ccd3f
JB
3564 for (i = 0; i < 4; i++) {
3565 reg = FDI_RX_IIR(pipe);
3566 temp = I915_READ(reg);
3567 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3568
139ccd3f
JB
3569 if (temp & FDI_RX_BIT_LOCK ||
3570 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3571 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3572 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3573 i);
3574 break;
3575 }
3576 udelay(1); /* should be 0.5us */
3577 }
3578 if (i == 4) {
3579 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3580 continue;
3581 }
357555c0 3582
139ccd3f 3583 /* Train 2 */
357555c0
JB
3584 reg = FDI_TX_CTL(pipe);
3585 temp = I915_READ(reg);
139ccd3f
JB
3586 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3587 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3588 I915_WRITE(reg, temp);
3589
3590 reg = FDI_RX_CTL(pipe);
3591 temp = I915_READ(reg);
3592 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3593 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
357555c0
JB
3594 I915_WRITE(reg, temp);
3595
3596 POSTING_READ(reg);
139ccd3f 3597 udelay(2); /* should be 1.5us */
357555c0 3598
139ccd3f
JB
3599 for (i = 0; i < 4; i++) {
3600 reg = FDI_RX_IIR(pipe);
3601 temp = I915_READ(reg);
3602 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3603
139ccd3f
JB
3604 if (temp & FDI_RX_SYMBOL_LOCK ||
3605 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3606 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3607 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3608 i);
3609 goto train_done;
3610 }
3611 udelay(2); /* should be 1.5us */
357555c0 3612 }
139ccd3f
JB
3613 if (i == 4)
3614 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
357555c0 3615 }
357555c0 3616
139ccd3f 3617train_done:
357555c0
JB
3618 DRM_DEBUG_KMS("FDI train done.\n");
3619}
3620
88cefb6c 3621static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
2c07245f 3622{
88cefb6c 3623 struct drm_device *dev = intel_crtc->base.dev;
2c07245f 3624 struct drm_i915_private *dev_priv = dev->dev_private;
2c07245f 3625 int pipe = intel_crtc->pipe;
f0f59a00
VS
3626 i915_reg_t reg;
3627 u32 temp;
c64e311e 3628
c98e9dcf 3629 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
5eddb70b
CW
3630 reg = FDI_RX_CTL(pipe);
3631 temp = I915_READ(reg);
627eb5a3 3632 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
6e3c9717 3633 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
dfd07d72 3634 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
5eddb70b
CW
3635 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3636
3637 POSTING_READ(reg);
c98e9dcf
JB
3638 udelay(200);
3639
3640 /* Switch from Rawclk to PCDclk */
5eddb70b
CW
3641 temp = I915_READ(reg);
3642 I915_WRITE(reg, temp | FDI_PCDCLK);
3643
3644 POSTING_READ(reg);
c98e9dcf
JB
3645 udelay(200);
3646
20749730
PZ
3647 /* Enable CPU FDI TX PLL, always on for Ironlake */
3648 reg = FDI_TX_CTL(pipe);
3649 temp = I915_READ(reg);
3650 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3651 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
5eddb70b 3652
20749730
PZ
3653 POSTING_READ(reg);
3654 udelay(100);
6be4a607 3655 }
0e23b99d
JB
3656}
3657
88cefb6c
DV
3658static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3659{
3660 struct drm_device *dev = intel_crtc->base.dev;
3661 struct drm_i915_private *dev_priv = dev->dev_private;
3662 int pipe = intel_crtc->pipe;
f0f59a00
VS
3663 i915_reg_t reg;
3664 u32 temp;
88cefb6c
DV
3665
3666 /* Switch from PCDclk to Rawclk */
3667 reg = FDI_RX_CTL(pipe);
3668 temp = I915_READ(reg);
3669 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3670
3671 /* Disable CPU FDI TX PLL */
3672 reg = FDI_TX_CTL(pipe);
3673 temp = I915_READ(reg);
3674 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3675
3676 POSTING_READ(reg);
3677 udelay(100);
3678
3679 reg = FDI_RX_CTL(pipe);
3680 temp = I915_READ(reg);
3681 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3682
3683 /* Wait for the clocks to turn off. */
3684 POSTING_READ(reg);
3685 udelay(100);
3686}
3687
0fc932b8
JB
3688static void ironlake_fdi_disable(struct drm_crtc *crtc)
3689{
3690 struct drm_device *dev = crtc->dev;
3691 struct drm_i915_private *dev_priv = dev->dev_private;
3692 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3693 int pipe = intel_crtc->pipe;
f0f59a00
VS
3694 i915_reg_t reg;
3695 u32 temp;
0fc932b8
JB
3696
3697 /* disable CPU FDI tx and PCH FDI rx */
3698 reg = FDI_TX_CTL(pipe);
3699 temp = I915_READ(reg);
3700 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3701 POSTING_READ(reg);
3702
3703 reg = FDI_RX_CTL(pipe);
3704 temp = I915_READ(reg);
3705 temp &= ~(0x7 << 16);
dfd07d72 3706 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3707 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3708
3709 POSTING_READ(reg);
3710 udelay(100);
3711
3712 /* Ironlake workaround, disable clock pointer after downing FDI */
eba905b2 3713 if (HAS_PCH_IBX(dev))
6f06ce18 3714 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
0fc932b8
JB
3715
3716 /* still set train pattern 1 */
3717 reg = FDI_TX_CTL(pipe);
3718 temp = I915_READ(reg);
3719 temp &= ~FDI_LINK_TRAIN_NONE;
3720 temp |= FDI_LINK_TRAIN_PATTERN_1;
3721 I915_WRITE(reg, temp);
3722
3723 reg = FDI_RX_CTL(pipe);
3724 temp = I915_READ(reg);
3725 if (HAS_PCH_CPT(dev)) {
3726 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3727 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3728 } else {
3729 temp &= ~FDI_LINK_TRAIN_NONE;
3730 temp |= FDI_LINK_TRAIN_PATTERN_1;
3731 }
3732 /* BPC in FDI rx is consistent with that in PIPECONF */
3733 temp &= ~(0x07 << 16);
dfd07d72 3734 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3735 I915_WRITE(reg, temp);
3736
3737 POSTING_READ(reg);
3738 udelay(100);
3739}
3740
5dce5b93
CW
3741bool intel_has_pending_fb_unpin(struct drm_device *dev)
3742{
3743 struct intel_crtc *crtc;
3744
3745 /* Note that we don't need to be called with mode_config.lock here
3746 * as our list of CRTC objects is static for the lifetime of the
3747 * device and so cannot disappear as we iterate. Similarly, we can
3748 * happily treat the predicates as racy, atomic checks as userspace
3749 * cannot claim and pin a new fb without at least acquring the
3750 * struct_mutex and so serialising with us.
3751 */
d3fcc808 3752 for_each_intel_crtc(dev, crtc) {
5dce5b93
CW
3753 if (atomic_read(&crtc->unpin_work_count) == 0)
3754 continue;
3755
6885843a 3756 if (!list_empty_careful(&crtc->flip_work))
5dce5b93
CW
3757 intel_wait_for_vblank(dev, crtc->pipe);
3758
3759 return true;
3760 }
3761
3762 return false;
3763}
3764
6885843a 3765static void page_flip_completed(struct intel_crtc *intel_crtc, struct intel_flip_work *work)
d6bbafa1
CW
3766{
3767 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
143f73b3
ML
3768 struct drm_plane_state *new_plane_state;
3769 struct drm_plane *primary = intel_crtc->base.primary;
d6bbafa1
CW
3770
3771 if (work->event)
560ce1dc 3772 drm_crtc_send_vblank_event(&intel_crtc->base, work->event);
d6bbafa1
CW
3773
3774 drm_crtc_vblank_put(&intel_crtc->base);
3775
143f73b3
ML
3776 new_plane_state = &work->old_plane_state[0]->base;
3777 if (work->num_planes >= 1 &&
3778 new_plane_state->plane == primary &&
3779 new_plane_state->fb)
3780 trace_i915_flip_complete(intel_crtc->plane,
3781 intel_fb_obj(new_plane_state->fb));
d6bbafa1 3782
143f73b3
ML
3783 if (work->can_async_unpin) {
3784 list_del_init(&work->head);
3785 wake_up_all(&dev_priv->pending_flip_queue);
3786 }
3787
3788 queue_work(dev_priv->wq, &work->unpin_work);
d6bbafa1
CW
3789}
3790
5008e874 3791static int intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
e6c3a2a6 3792{
0f91128d 3793 struct drm_device *dev = crtc->dev;
5bb61643 3794 struct drm_i915_private *dev_priv = dev->dev_private;
5008e874 3795 long ret;
e6c3a2a6 3796
2c10d571 3797 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
5008e874
ML
3798
3799 ret = wait_event_interruptible_timeout(
3800 dev_priv->pending_flip_queue,
3801 !intel_crtc_has_pending_flip(crtc),
3802 60*HZ);
3803
3804 if (ret < 0)
3805 return ret;
3806
8dd634d9 3807 WARN(ret == 0, "Stuck page flip\n");
5bb61643 3808
5008e874 3809 return 0;
e6c3a2a6
CW
3810}
3811
060f02d8
VS
3812static void lpt_disable_iclkip(struct drm_i915_private *dev_priv)
3813{
3814 u32 temp;
3815
3816 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3817
3818 mutex_lock(&dev_priv->sb_lock);
3819
3820 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
3821 temp |= SBI_SSCCTL_DISABLE;
3822 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
3823
3824 mutex_unlock(&dev_priv->sb_lock);
3825}
3826
e615efe4
ED
3827/* Program iCLKIP clock to the desired frequency */
3828static void lpt_program_iclkip(struct drm_crtc *crtc)
3829{
64b46a06 3830 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
6e3c9717 3831 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
e615efe4
ED
3832 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3833 u32 temp;
3834
060f02d8 3835 lpt_disable_iclkip(dev_priv);
e615efe4 3836
64b46a06
VS
3837 /* The iCLK virtual clock root frequency is in MHz,
3838 * but the adjusted_mode->crtc_clock in in KHz. To get the
3839 * divisors, it is necessary to divide one by another, so we
3840 * convert the virtual clock precision to KHz here for higher
3841 * precision.
3842 */
3843 for (auxdiv = 0; auxdiv < 2; auxdiv++) {
e615efe4
ED
3844 u32 iclk_virtual_root_freq = 172800 * 1000;
3845 u32 iclk_pi_range = 64;
64b46a06 3846 u32 desired_divisor;
e615efe4 3847
64b46a06
VS
3848 desired_divisor = DIV_ROUND_CLOSEST(iclk_virtual_root_freq,
3849 clock << auxdiv);
3850 divsel = (desired_divisor / iclk_pi_range) - 2;
3851 phaseinc = desired_divisor % iclk_pi_range;
e615efe4 3852
64b46a06
VS
3853 /*
3854 * Near 20MHz is a corner case which is
3855 * out of range for the 7-bit divisor
3856 */
3857 if (divsel <= 0x7f)
3858 break;
e615efe4
ED
3859 }
3860
3861 /* This should not happen with any sane values */
3862 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3863 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3864 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3865 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3866
3867 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
12d7ceed 3868 clock,
e615efe4
ED
3869 auxdiv,
3870 divsel,
3871 phasedir,
3872 phaseinc);
3873
060f02d8
VS
3874 mutex_lock(&dev_priv->sb_lock);
3875
e615efe4 3876 /* Program SSCDIVINTPHASE6 */
988d6ee8 3877 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
e615efe4
ED
3878 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3879 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3880 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3881 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3882 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3883 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
988d6ee8 3884 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
e615efe4
ED
3885
3886 /* Program SSCAUXDIV */
988d6ee8 3887 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
e615efe4
ED
3888 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3889 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
988d6ee8 3890 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
e615efe4
ED
3891
3892 /* Enable modulator and associated divider */
988d6ee8 3893 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
e615efe4 3894 temp &= ~SBI_SSCCTL_DISABLE;
988d6ee8 3895 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
e615efe4 3896
060f02d8
VS
3897 mutex_unlock(&dev_priv->sb_lock);
3898
e615efe4
ED
3899 /* Wait for initialization time */
3900 udelay(24);
3901
3902 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
3903}
3904
8802e5b6
VS
3905int lpt_get_iclkip(struct drm_i915_private *dev_priv)
3906{
3907 u32 divsel, phaseinc, auxdiv;
3908 u32 iclk_virtual_root_freq = 172800 * 1000;
3909 u32 iclk_pi_range = 64;
3910 u32 desired_divisor;
3911 u32 temp;
3912
3913 if ((I915_READ(PIXCLK_GATE) & PIXCLK_GATE_UNGATE) == 0)
3914 return 0;
3915
3916 mutex_lock(&dev_priv->sb_lock);
3917
3918 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
3919 if (temp & SBI_SSCCTL_DISABLE) {
3920 mutex_unlock(&dev_priv->sb_lock);
3921 return 0;
3922 }
3923
3924 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
3925 divsel = (temp & SBI_SSCDIVINTPHASE_DIVSEL_MASK) >>
3926 SBI_SSCDIVINTPHASE_DIVSEL_SHIFT;
3927 phaseinc = (temp & SBI_SSCDIVINTPHASE_INCVAL_MASK) >>
3928 SBI_SSCDIVINTPHASE_INCVAL_SHIFT;
3929
3930 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
3931 auxdiv = (temp & SBI_SSCAUXDIV_FINALDIV2SEL_MASK) >>
3932 SBI_SSCAUXDIV_FINALDIV2SEL_SHIFT;
3933
3934 mutex_unlock(&dev_priv->sb_lock);
3935
3936 desired_divisor = (divsel + 2) * iclk_pi_range + phaseinc;
3937
3938 return DIV_ROUND_CLOSEST(iclk_virtual_root_freq,
3939 desired_divisor << auxdiv);
3940}
3941
275f01b2
DV
3942static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3943 enum pipe pch_transcoder)
3944{
3945 struct drm_device *dev = crtc->base.dev;
3946 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 3947 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
275f01b2
DV
3948
3949 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3950 I915_READ(HTOTAL(cpu_transcoder)));
3951 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3952 I915_READ(HBLANK(cpu_transcoder)));
3953 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3954 I915_READ(HSYNC(cpu_transcoder)));
3955
3956 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3957 I915_READ(VTOTAL(cpu_transcoder)));
3958 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3959 I915_READ(VBLANK(cpu_transcoder)));
3960 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3961 I915_READ(VSYNC(cpu_transcoder)));
3962 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3963 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3964}
3965
003632d9 3966static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
1fbc0d78
DV
3967{
3968 struct drm_i915_private *dev_priv = dev->dev_private;
3969 uint32_t temp;
3970
3971 temp = I915_READ(SOUTH_CHICKEN1);
003632d9 3972 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
1fbc0d78
DV
3973 return;
3974
3975 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3976 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3977
003632d9
ACO
3978 temp &= ~FDI_BC_BIFURCATION_SELECT;
3979 if (enable)
3980 temp |= FDI_BC_BIFURCATION_SELECT;
3981
3982 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
1fbc0d78
DV
3983 I915_WRITE(SOUTH_CHICKEN1, temp);
3984 POSTING_READ(SOUTH_CHICKEN1);
3985}
3986
3987static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3988{
3989 struct drm_device *dev = intel_crtc->base.dev;
1fbc0d78
DV
3990
3991 switch (intel_crtc->pipe) {
3992 case PIPE_A:
3993 break;
3994 case PIPE_B:
6e3c9717 3995 if (intel_crtc->config->fdi_lanes > 2)
003632d9 3996 cpt_set_fdi_bc_bifurcation(dev, false);
1fbc0d78 3997 else
003632d9 3998 cpt_set_fdi_bc_bifurcation(dev, true);
1fbc0d78
DV
3999
4000 break;
4001 case PIPE_C:
003632d9 4002 cpt_set_fdi_bc_bifurcation(dev, true);
1fbc0d78
DV
4003
4004 break;
4005 default:
4006 BUG();
4007 }
4008}
4009
c48b5305
VS
4010/* Return which DP Port should be selected for Transcoder DP control */
4011static enum port
4012intel_trans_dp_port_sel(struct drm_crtc *crtc)
4013{
4014 struct drm_device *dev = crtc->dev;
4015 struct intel_encoder *encoder;
4016
4017 for_each_encoder_on_crtc(dev, crtc, encoder) {
4018 if (encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
4019 encoder->type == INTEL_OUTPUT_EDP)
4020 return enc_to_dig_port(&encoder->base)->port;
4021 }
4022
4023 return -1;
4024}
4025
f67a559d
JB
4026/*
4027 * Enable PCH resources required for PCH ports:
4028 * - PCH PLLs
4029 * - FDI training & RX/TX
4030 * - update transcoder timings
4031 * - DP transcoding bits
4032 * - transcoder
4033 */
4034static void ironlake_pch_enable(struct drm_crtc *crtc)
0e23b99d
JB
4035{
4036 struct drm_device *dev = crtc->dev;
4037 struct drm_i915_private *dev_priv = dev->dev_private;
4038 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4039 int pipe = intel_crtc->pipe;
f0f59a00 4040 u32 temp;
2c07245f 4041
ab9412ba 4042 assert_pch_transcoder_disabled(dev_priv, pipe);
e7e164db 4043
1fbc0d78
DV
4044 if (IS_IVYBRIDGE(dev))
4045 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4046
cd986abb
DV
4047 /* Write the TU size bits before fdi link training, so that error
4048 * detection works. */
4049 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4050 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4051
c98e9dcf 4052 /* For PCH output, training FDI link */
674cf967 4053 dev_priv->display.fdi_link_train(crtc);
2c07245f 4054
3ad8a208
DV
4055 /* We need to program the right clock selection before writing the pixel
4056 * mutliplier into the DPLL. */
303b81e0 4057 if (HAS_PCH_CPT(dev)) {
ee7b9f93 4058 u32 sel;
4b645f14 4059
c98e9dcf 4060 temp = I915_READ(PCH_DPLL_SEL);
11887397
DV
4061 temp |= TRANS_DPLL_ENABLE(pipe);
4062 sel = TRANS_DPLLB_SEL(pipe);
8106ddbd
ACO
4063 if (intel_crtc->config->shared_dpll ==
4064 intel_get_shared_dpll_by_id(dev_priv, DPLL_ID_PCH_PLL_B))
ee7b9f93
JB
4065 temp |= sel;
4066 else
4067 temp &= ~sel;
c98e9dcf 4068 I915_WRITE(PCH_DPLL_SEL, temp);
c98e9dcf 4069 }
5eddb70b 4070
3ad8a208
DV
4071 /* XXX: pch pll's can be enabled any time before we enable the PCH
4072 * transcoder, and we actually should do this to not upset any PCH
4073 * transcoder that already use the clock when we share it.
4074 *
4075 * Note that enable_shared_dpll tries to do the right thing, but
4076 * get_shared_dpll unconditionally resets the pll - we need that to have
4077 * the right LVDS enable sequence. */
85b3894f 4078 intel_enable_shared_dpll(intel_crtc);
3ad8a208 4079
d9b6cb56
JB
4080 /* set transcoder timing, panel must allow it */
4081 assert_panel_unlocked(dev_priv, pipe);
275f01b2 4082 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
8db9d77b 4083
303b81e0 4084 intel_fdi_normal_train(crtc);
5e84e1a4 4085
c98e9dcf 4086 /* For PCH DP, enable TRANS_DP_CTL */
6e3c9717 4087 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
9c4edaee
VS
4088 const struct drm_display_mode *adjusted_mode =
4089 &intel_crtc->config->base.adjusted_mode;
dfd07d72 4090 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
f0f59a00 4091 i915_reg_t reg = TRANS_DP_CTL(pipe);
5eddb70b
CW
4092 temp = I915_READ(reg);
4093 temp &= ~(TRANS_DP_PORT_SEL_MASK |
220cad3c
EA
4094 TRANS_DP_SYNC_MASK |
4095 TRANS_DP_BPC_MASK);
e3ef4479 4096 temp |= TRANS_DP_OUTPUT_ENABLE;
9325c9f0 4097 temp |= bpc << 9; /* same format but at 11:9 */
c98e9dcf 4098
9c4edaee 4099 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
5eddb70b 4100 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
9c4edaee 4101 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
5eddb70b 4102 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
c98e9dcf
JB
4103
4104 switch (intel_trans_dp_port_sel(crtc)) {
c48b5305 4105 case PORT_B:
5eddb70b 4106 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf 4107 break;
c48b5305 4108 case PORT_C:
5eddb70b 4109 temp |= TRANS_DP_PORT_SEL_C;
c98e9dcf 4110 break;
c48b5305 4111 case PORT_D:
5eddb70b 4112 temp |= TRANS_DP_PORT_SEL_D;
c98e9dcf
JB
4113 break;
4114 default:
e95d41e1 4115 BUG();
32f9d658 4116 }
2c07245f 4117
5eddb70b 4118 I915_WRITE(reg, temp);
6be4a607 4119 }
b52eb4dc 4120
b8a4f404 4121 ironlake_enable_pch_transcoder(dev_priv, pipe);
f67a559d
JB
4122}
4123
1507e5bd
PZ
4124static void lpt_pch_enable(struct drm_crtc *crtc)
4125{
4126 struct drm_device *dev = crtc->dev;
4127 struct drm_i915_private *dev_priv = dev->dev_private;
4128 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 4129 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
1507e5bd 4130
ab9412ba 4131 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
1507e5bd 4132
8c52b5e8 4133 lpt_program_iclkip(crtc);
1507e5bd 4134
0540e488 4135 /* Set transcoder timing. */
275f01b2 4136 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
1507e5bd 4137
937bb610 4138 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
f67a559d
JB
4139}
4140
a1520318 4141static void cpt_verify_modeset(struct drm_device *dev, int pipe)
d4270e57
JB
4142{
4143 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 4144 i915_reg_t dslreg = PIPEDSL(pipe);
d4270e57
JB
4145 u32 temp;
4146
4147 temp = I915_READ(dslreg);
4148 udelay(500);
4149 if (wait_for(I915_READ(dslreg) != temp, 5)) {
d4270e57 4150 if (wait_for(I915_READ(dslreg) != temp, 5))
84f44ce7 4151 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
d4270e57
JB
4152 }
4153}
4154
86adf9d7
ML
4155static int
4156skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
4157 unsigned scaler_user, int *scaler_id, unsigned int rotation,
4158 int src_w, int src_h, int dst_w, int dst_h)
a1b2278e 4159{
86adf9d7
ML
4160 struct intel_crtc_scaler_state *scaler_state =
4161 &crtc_state->scaler_state;
4162 struct intel_crtc *intel_crtc =
4163 to_intel_crtc(crtc_state->base.crtc);
a1b2278e 4164 int need_scaling;
6156a456
CK
4165
4166 need_scaling = intel_rotation_90_or_270(rotation) ?
4167 (src_h != dst_w || src_w != dst_h):
4168 (src_w != dst_w || src_h != dst_h);
a1b2278e
CK
4169
4170 /*
4171 * if plane is being disabled or scaler is no more required or force detach
4172 * - free scaler binded to this plane/crtc
4173 * - in order to do this, update crtc->scaler_usage
4174 *
4175 * Here scaler state in crtc_state is set free so that
4176 * scaler can be assigned to other user. Actual register
4177 * update to free the scaler is done in plane/panel-fit programming.
4178 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4179 */
86adf9d7 4180 if (force_detach || !need_scaling) {
a1b2278e 4181 if (*scaler_id >= 0) {
86adf9d7 4182 scaler_state->scaler_users &= ~(1 << scaler_user);
a1b2278e
CK
4183 scaler_state->scalers[*scaler_id].in_use = 0;
4184
86adf9d7
ML
4185 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4186 "Staged freeing scaler id %d scaler_users = 0x%x\n",
4187 intel_crtc->pipe, scaler_user, *scaler_id,
a1b2278e
CK
4188 scaler_state->scaler_users);
4189 *scaler_id = -1;
4190 }
4191 return 0;
4192 }
4193
4194 /* range checks */
4195 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4196 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4197
4198 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4199 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
86adf9d7 4200 DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u "
a1b2278e 4201 "size is out of scaler range\n",
86adf9d7 4202 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h);
a1b2278e
CK
4203 return -EINVAL;
4204 }
4205
86adf9d7
ML
4206 /* mark this plane as a scaler user in crtc_state */
4207 scaler_state->scaler_users |= (1 << scaler_user);
4208 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4209 "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n",
4210 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h,
4211 scaler_state->scaler_users);
4212
4213 return 0;
4214}
4215
4216/**
4217 * skl_update_scaler_crtc - Stages update to scaler state for a given crtc.
4218 *
4219 * @state: crtc's scaler state
86adf9d7
ML
4220 *
4221 * Return
4222 * 0 - scaler_usage updated successfully
4223 * error - requested scaling cannot be supported or other error condition
4224 */
e435d6e5 4225int skl_update_scaler_crtc(struct intel_crtc_state *state)
86adf9d7
ML
4226{
4227 struct intel_crtc *intel_crtc = to_intel_crtc(state->base.crtc);
7c5f93b0 4228 const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode;
86adf9d7
ML
4229
4230 DRM_DEBUG_KMS("Updating scaler for [CRTC:%i] scaler_user index %u.%u\n",
4231 intel_crtc->base.base.id, intel_crtc->pipe, SKL_CRTC_INDEX);
4232
e435d6e5 4233 return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX,
fa5a7970 4234 &state->scaler_state.scaler_id, BIT(DRM_ROTATE_0),
86adf9d7 4235 state->pipe_src_w, state->pipe_src_h,
aad941d5 4236 adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay);
86adf9d7
ML
4237}
4238
4239/**
4240 * skl_update_scaler_plane - Stages update to scaler state for a given plane.
4241 *
4242 * @state: crtc's scaler state
86adf9d7
ML
4243 * @plane_state: atomic plane state to update
4244 *
4245 * Return
4246 * 0 - scaler_usage updated successfully
4247 * error - requested scaling cannot be supported or other error condition
4248 */
da20eabd
ML
4249static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
4250 struct intel_plane_state *plane_state)
86adf9d7
ML
4251{
4252
4253 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
da20eabd
ML
4254 struct intel_plane *intel_plane =
4255 to_intel_plane(plane_state->base.plane);
86adf9d7
ML
4256 struct drm_framebuffer *fb = plane_state->base.fb;
4257 int ret;
4258
4259 bool force_detach = !fb || !plane_state->visible;
4260
4261 DRM_DEBUG_KMS("Updating scaler for [PLANE:%d] scaler_user index %u.%u\n",
4262 intel_plane->base.base.id, intel_crtc->pipe,
4263 drm_plane_index(&intel_plane->base));
4264
4265 ret = skl_update_scaler(crtc_state, force_detach,
4266 drm_plane_index(&intel_plane->base),
4267 &plane_state->scaler_id,
4268 plane_state->base.rotation,
4269 drm_rect_width(&plane_state->src) >> 16,
4270 drm_rect_height(&plane_state->src) >> 16,
4271 drm_rect_width(&plane_state->dst),
4272 drm_rect_height(&plane_state->dst));
4273
4274 if (ret || plane_state->scaler_id < 0)
4275 return ret;
4276
a1b2278e 4277 /* check colorkey */
818ed961 4278 if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) {
86adf9d7 4279 DRM_DEBUG_KMS("[PLANE:%d] scaling with color key not allowed",
818ed961 4280 intel_plane->base.base.id);
a1b2278e
CK
4281 return -EINVAL;
4282 }
4283
4284 /* Check src format */
86adf9d7
ML
4285 switch (fb->pixel_format) {
4286 case DRM_FORMAT_RGB565:
4287 case DRM_FORMAT_XBGR8888:
4288 case DRM_FORMAT_XRGB8888:
4289 case DRM_FORMAT_ABGR8888:
4290 case DRM_FORMAT_ARGB8888:
4291 case DRM_FORMAT_XRGB2101010:
4292 case DRM_FORMAT_XBGR2101010:
4293 case DRM_FORMAT_YUYV:
4294 case DRM_FORMAT_YVYU:
4295 case DRM_FORMAT_UYVY:
4296 case DRM_FORMAT_VYUY:
4297 break;
4298 default:
4299 DRM_DEBUG_KMS("[PLANE:%d] FB:%d unsupported scaling format 0x%x\n",
4300 intel_plane->base.base.id, fb->base.id, fb->pixel_format);
4301 return -EINVAL;
a1b2278e
CK
4302 }
4303
a1b2278e
CK
4304 return 0;
4305}
4306
e435d6e5
ML
4307static void skylake_scaler_disable(struct intel_crtc *crtc)
4308{
4309 int i;
4310
4311 for (i = 0; i < crtc->num_scalers; i++)
4312 skl_detach_scaler(crtc, i);
4313}
4314
4315static void skylake_pfit_enable(struct intel_crtc *crtc)
bd2e244f
JB
4316{
4317 struct drm_device *dev = crtc->base.dev;
4318 struct drm_i915_private *dev_priv = dev->dev_private;
4319 int pipe = crtc->pipe;
a1b2278e
CK
4320 struct intel_crtc_scaler_state *scaler_state =
4321 &crtc->config->scaler_state;
4322
4323 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4324
6e3c9717 4325 if (crtc->config->pch_pfit.enabled) {
a1b2278e
CK
4326 int id;
4327
4328 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4329 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4330 return;
4331 }
4332
4333 id = scaler_state->scaler_id;
4334 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4335 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4336 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4337 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4338
4339 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
bd2e244f
JB
4340 }
4341}
4342
b074cec8
JB
4343static void ironlake_pfit_enable(struct intel_crtc *crtc)
4344{
4345 struct drm_device *dev = crtc->base.dev;
4346 struct drm_i915_private *dev_priv = dev->dev_private;
4347 int pipe = crtc->pipe;
4348
6e3c9717 4349 if (crtc->config->pch_pfit.enabled) {
b074cec8
JB
4350 /* Force use of hard-coded filter coefficients
4351 * as some pre-programmed values are broken,
4352 * e.g. x201.
4353 */
4354 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4355 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4356 PF_PIPE_SEL_IVB(pipe));
4357 else
4358 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
6e3c9717
ACO
4359 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4360 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
d4270e57
JB
4361 }
4362}
4363
20bc8673 4364void hsw_enable_ips(struct intel_crtc *crtc)
d77e4531 4365{
cea165c3
VS
4366 struct drm_device *dev = crtc->base.dev;
4367 struct drm_i915_private *dev_priv = dev->dev_private;
d77e4531 4368
6e3c9717 4369 if (!crtc->config->ips_enabled)
d77e4531
PZ
4370 return;
4371
307e4498
ML
4372 /*
4373 * We can only enable IPS after we enable a plane and wait for a vblank
4374 * This function is called from post_plane_update, which is run after
4375 * a vblank wait.
4376 */
cea165c3 4377
d77e4531 4378 assert_plane_enabled(dev_priv, crtc->plane);
cea165c3 4379 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4380 mutex_lock(&dev_priv->rps.hw_lock);
4381 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4382 mutex_unlock(&dev_priv->rps.hw_lock);
4383 /* Quoting Art Runyan: "its not safe to expect any particular
4384 * value in IPS_CTL bit 31 after enabling IPS through the
e59150dc
JB
4385 * mailbox." Moreover, the mailbox may return a bogus state,
4386 * so we need to just enable it and continue on.
2a114cc1
BW
4387 */
4388 } else {
4389 I915_WRITE(IPS_CTL, IPS_ENABLE);
4390 /* The bit only becomes 1 in the next vblank, so this wait here
4391 * is essentially intel_wait_for_vblank. If we don't have this
4392 * and don't wait for vblanks until the end of crtc_enable, then
4393 * the HW state readout code will complain that the expected
4394 * IPS_CTL value is not the one we read. */
4395 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4396 DRM_ERROR("Timed out waiting for IPS enable\n");
4397 }
d77e4531
PZ
4398}
4399
20bc8673 4400void hsw_disable_ips(struct intel_crtc *crtc)
d77e4531
PZ
4401{
4402 struct drm_device *dev = crtc->base.dev;
4403 struct drm_i915_private *dev_priv = dev->dev_private;
4404
6e3c9717 4405 if (!crtc->config->ips_enabled)
d77e4531
PZ
4406 return;
4407
4408 assert_plane_enabled(dev_priv, crtc->plane);
23d0b130 4409 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4410 mutex_lock(&dev_priv->rps.hw_lock);
4411 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4412 mutex_unlock(&dev_priv->rps.hw_lock);
23d0b130
BW
4413 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4414 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4415 DRM_ERROR("Timed out waiting for IPS disable\n");
e59150dc 4416 } else {
2a114cc1 4417 I915_WRITE(IPS_CTL, 0);
e59150dc
JB
4418 POSTING_READ(IPS_CTL);
4419 }
d77e4531
PZ
4420
4421 /* We need to wait for a vblank before we can disable the plane. */
4422 intel_wait_for_vblank(dev, crtc->pipe);
4423}
4424
7cac945f 4425static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
d3eedb1a 4426{
7cac945f 4427 if (intel_crtc->overlay) {
d3eedb1a
VS
4428 struct drm_device *dev = intel_crtc->base.dev;
4429 struct drm_i915_private *dev_priv = dev->dev_private;
4430
4431 mutex_lock(&dev->struct_mutex);
4432 dev_priv->mm.interruptible = false;
4433 (void) intel_overlay_switch_off(intel_crtc->overlay);
4434 dev_priv->mm.interruptible = true;
4435 mutex_unlock(&dev->struct_mutex);
4436 }
4437
4438 /* Let userspace switch the overlay on again. In most cases userspace
4439 * has to recompute where to put it anyway.
4440 */
4441}
4442
87d4300a
ML
4443/**
4444 * intel_post_enable_primary - Perform operations after enabling primary plane
4445 * @crtc: the CRTC whose primary plane was just enabled
4446 *
4447 * Performs potentially sleeping operations that must be done after the primary
4448 * plane is enabled, such as updating FBC and IPS. Note that this may be
4449 * called due to an explicit primary plane update, or due to an implicit
4450 * re-enable that is caused when a sprite plane is updated to no longer
4451 * completely hide the primary plane.
4452 */
4453static void
4454intel_post_enable_primary(struct drm_crtc *crtc)
a5c4d7bc
VS
4455{
4456 struct drm_device *dev = crtc->dev;
87d4300a 4457 struct drm_i915_private *dev_priv = dev->dev_private;
a5c4d7bc
VS
4458 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4459 int pipe = intel_crtc->pipe;
a5c4d7bc 4460
87d4300a
ML
4461 /*
4462 * FIXME IPS should be fine as long as one plane is
4463 * enabled, but in practice it seems to have problems
4464 * when going from primary only to sprite only and vice
4465 * versa.
4466 */
a5c4d7bc
VS
4467 hsw_enable_ips(intel_crtc);
4468
f99d7069 4469 /*
87d4300a
ML
4470 * Gen2 reports pipe underruns whenever all planes are disabled.
4471 * So don't enable underrun reporting before at least some planes
4472 * are enabled.
4473 * FIXME: Need to fix the logic to work when we turn off all planes
4474 * but leave the pipe running.
f99d7069 4475 */
87d4300a
ML
4476 if (IS_GEN2(dev))
4477 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4478
aca7b684
VS
4479 /* Underruns don't always raise interrupts, so check manually. */
4480 intel_check_cpu_fifo_underruns(dev_priv);
4481 intel_check_pch_fifo_underruns(dev_priv);
a5c4d7bc
VS
4482}
4483
2622a081 4484/* FIXME move all this to pre_plane_update() with proper state tracking */
87d4300a
ML
4485static void
4486intel_pre_disable_primary(struct drm_crtc *crtc)
a5c4d7bc
VS
4487{
4488 struct drm_device *dev = crtc->dev;
4489 struct drm_i915_private *dev_priv = dev->dev_private;
4490 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4491 int pipe = intel_crtc->pipe;
a5c4d7bc 4492
87d4300a
ML
4493 /*
4494 * Gen2 reports pipe underruns whenever all planes are disabled.
4495 * So diasble underrun reporting before all the planes get disabled.
4496 * FIXME: Need to fix the logic to work when we turn off all planes
4497 * but leave the pipe running.
4498 */
4499 if (IS_GEN2(dev))
4500 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
a5c4d7bc 4501
2622a081
VS
4502 /*
4503 * FIXME IPS should be fine as long as one plane is
4504 * enabled, but in practice it seems to have problems
4505 * when going from primary only to sprite only and vice
4506 * versa.
4507 */
4508 hsw_disable_ips(intel_crtc);
4509}
4510
4511/* FIXME get rid of this and use pre_plane_update */
4512static void
4513intel_pre_disable_primary_noatomic(struct drm_crtc *crtc)
4514{
4515 struct drm_device *dev = crtc->dev;
4516 struct drm_i915_private *dev_priv = dev->dev_private;
4517 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4518 int pipe = intel_crtc->pipe;
4519
4520 intel_pre_disable_primary(crtc);
4521
87d4300a
ML
4522 /*
4523 * Vblank time updates from the shadow to live plane control register
4524 * are blocked if the memory self-refresh mode is active at that
4525 * moment. So to make sure the plane gets truly disabled, disable
4526 * first the self-refresh mode. The self-refresh enable bit in turn
4527 * will be checked/applied by the HW only at the next frame start
4528 * event which is after the vblank start event, so we need to have a
4529 * wait-for-vblank between disabling the plane and the pipe.
4530 */
262cd2e1 4531 if (HAS_GMCH_DISPLAY(dev)) {
87d4300a 4532 intel_set_memory_cxsr(dev_priv, false);
262cd2e1
VS
4533 dev_priv->wm.vlv.cxsr = false;
4534 intel_wait_for_vblank(dev, pipe);
4535 }
87d4300a
ML
4536}
4537
5c74cd73 4538static void intel_pre_plane_update(struct intel_crtc_state *old_crtc_state)
ac21b225 4539{
5c74cd73 4540 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
ac21b225 4541 struct drm_device *dev = crtc->base.dev;
eddfcbcd 4542 struct drm_i915_private *dev_priv = dev->dev_private;
ab1d3a0e
ML
4543 struct intel_crtc_state *pipe_config =
4544 to_intel_crtc_state(crtc->base.state);
5c74cd73
ML
4545 struct drm_atomic_state *old_state = old_crtc_state->base.state;
4546 struct drm_plane *primary = crtc->base.primary;
4547 struct drm_plane_state *old_pri_state =
4548 drm_atomic_get_existing_plane_state(old_state, primary);
4549 bool modeset = needs_modeset(&pipe_config->base);
ac21b225 4550
5c74cd73
ML
4551 if (old_pri_state) {
4552 struct intel_plane_state *primary_state =
4553 to_intel_plane_state(primary->state);
4554 struct intel_plane_state *old_primary_state =
4555 to_intel_plane_state(old_pri_state);
4556
2099deff 4557 intel_fbc_pre_update(crtc, pipe_config, primary_state);
31ae71fc 4558
5c74cd73
ML
4559 if (old_primary_state->visible &&
4560 (modeset || !primary_state->visible))
4561 intel_pre_disable_primary(&crtc->base);
4562 }
852eb00d 4563
ab1d3a0e 4564 if (pipe_config->disable_cxsr) {
852eb00d 4565 crtc->wm.cxsr_allowed = false;
2dfd178d 4566
2622a081
VS
4567 /*
4568 * Vblank time updates from the shadow to live plane control register
4569 * are blocked if the memory self-refresh mode is active at that
4570 * moment. So to make sure the plane gets truly disabled, disable
4571 * first the self-refresh mode. The self-refresh enable bit in turn
4572 * will be checked/applied by the HW only at the next frame start
4573 * event which is after the vblank start event, so we need to have a
4574 * wait-for-vblank between disabling the plane and the pipe.
4575 */
4576 if (old_crtc_state->base.active) {
2dfd178d 4577 intel_set_memory_cxsr(dev_priv, false);
2622a081
VS
4578 dev_priv->wm.vlv.cxsr = false;
4579 intel_wait_for_vblank(dev, crtc->pipe);
4580 }
852eb00d 4581 }
92826fcd 4582
ed4a6a7c
MR
4583 /*
4584 * IVB workaround: must disable low power watermarks for at least
4585 * one frame before enabling scaling. LP watermarks can be re-enabled
4586 * when scaling is disabled.
4587 *
4588 * WaCxSRDisabledForSpriteScaling:ivb
4589 */
4590 if (pipe_config->disable_lp_wm) {
4591 ilk_disable_lp_wm(dev);
4592 intel_wait_for_vblank(dev, crtc->pipe);
4593 }
4594
4595 /*
4596 * If we're doing a modeset, we're done. No need to do any pre-vblank
4597 * watermark programming here.
4598 */
4599 if (needs_modeset(&pipe_config->base))
4600 return;
4601
4602 /*
4603 * For platforms that support atomic watermarks, program the
4604 * 'intermediate' watermarks immediately. On pre-gen9 platforms, these
4605 * will be the intermediate values that are safe for both pre- and
4606 * post- vblank; when vblank happens, the 'active' values will be set
4607 * to the final 'target' values and we'll do this again to get the
4608 * optimal watermarks. For gen9+ platforms, the values we program here
4609 * will be the final target values which will get automatically latched
4610 * at vblank time; no further programming will be necessary.
4611 *
4612 * If a platform hasn't been transitioned to atomic watermarks yet,
4613 * we'll continue to update watermarks the old way, if flags tell
4614 * us to.
4615 */
4616 if (dev_priv->display.initial_watermarks != NULL)
4617 dev_priv->display.initial_watermarks(pipe_config);
caed361d 4618 else if (pipe_config->update_wm_pre)
92826fcd 4619 intel_update_watermarks(&crtc->base);
ac21b225
ML
4620}
4621
d032ffa0 4622static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask)
87d4300a
ML
4623{
4624 struct drm_device *dev = crtc->dev;
4625 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
d032ffa0 4626 struct drm_plane *p;
87d4300a
ML
4627 int pipe = intel_crtc->pipe;
4628
7cac945f 4629 intel_crtc_dpms_overlay_disable(intel_crtc);
27321ae8 4630
d032ffa0
ML
4631 drm_for_each_plane_mask(p, dev, plane_mask)
4632 to_intel_plane(p)->disable_plane(p, crtc);
f98551ae 4633
f99d7069
DV
4634 /*
4635 * FIXME: Once we grow proper nuclear flip support out of this we need
4636 * to compute the mask of flip planes precisely. For the time being
4637 * consider this a flip to a NULL plane.
4638 */
4639 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
a5c4d7bc
VS
4640}
4641
f67a559d
JB
4642static void ironlake_crtc_enable(struct drm_crtc *crtc)
4643{
4644 struct drm_device *dev = crtc->dev;
4645 struct drm_i915_private *dev_priv = dev->dev_private;
4646 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4647 struct intel_encoder *encoder;
f67a559d 4648 int pipe = intel_crtc->pipe;
b95c5321
ML
4649 struct intel_crtc_state *pipe_config =
4650 to_intel_crtc_state(crtc->state);
f67a559d 4651
53d9f4e9 4652 if (WARN_ON(intel_crtc->active))
f67a559d
JB
4653 return;
4654
b2c0593a
VS
4655 /*
4656 * Sometimes spurious CPU pipe underruns happen during FDI
4657 * training, at least with VGA+HDMI cloning. Suppress them.
4658 *
4659 * On ILK we get an occasional spurious CPU pipe underruns
4660 * between eDP port A enable and vdd enable. Also PCH port
4661 * enable seems to result in the occasional CPU pipe underrun.
4662 *
4663 * Spurious PCH underruns also occur during PCH enabling.
4664 */
4665 if (intel_crtc->config->has_pch_encoder || IS_GEN5(dev_priv))
4666 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
81b088ca
VS
4667 if (intel_crtc->config->has_pch_encoder)
4668 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
4669
6e3c9717 4670 if (intel_crtc->config->has_pch_encoder)
b14b1055
DV
4671 intel_prepare_shared_dpll(intel_crtc);
4672
6e3c9717 4673 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 4674 intel_dp_set_m_n(intel_crtc, M1_N1);
29407aab
DV
4675
4676 intel_set_pipe_timings(intel_crtc);
bc58be60 4677 intel_set_pipe_src_size(intel_crtc);
29407aab 4678
6e3c9717 4679 if (intel_crtc->config->has_pch_encoder) {
29407aab 4680 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 4681 &intel_crtc->config->fdi_m_n, NULL);
29407aab
DV
4682 }
4683
4684 ironlake_set_pipeconf(crtc);
4685
f67a559d 4686 intel_crtc->active = true;
8664281b 4687
f6736a1a 4688 for_each_encoder_on_crtc(dev, crtc, encoder)
952735ee
DV
4689 if (encoder->pre_enable)
4690 encoder->pre_enable(encoder);
f67a559d 4691
6e3c9717 4692 if (intel_crtc->config->has_pch_encoder) {
fff367c7
DV
4693 /* Note: FDI PLL enabling _must_ be done before we enable the
4694 * cpu pipes, hence this is separate from all the other fdi/pch
4695 * enabling. */
88cefb6c 4696 ironlake_fdi_pll_enable(intel_crtc);
46b6f814
DV
4697 } else {
4698 assert_fdi_tx_disabled(dev_priv, pipe);
4699 assert_fdi_rx_disabled(dev_priv, pipe);
4700 }
f67a559d 4701
b074cec8 4702 ironlake_pfit_enable(intel_crtc);
f67a559d 4703
9c54c0dd
JB
4704 /*
4705 * On ILK+ LUT must be loaded before the pipe is running but with
4706 * clocks enabled
4707 */
b95c5321 4708 intel_color_load_luts(&pipe_config->base);
9c54c0dd 4709
1d5bf5d9
ID
4710 if (dev_priv->display.initial_watermarks != NULL)
4711 dev_priv->display.initial_watermarks(intel_crtc->config);
e1fdc473 4712 intel_enable_pipe(intel_crtc);
f67a559d 4713
6e3c9717 4714 if (intel_crtc->config->has_pch_encoder)
f67a559d 4715 ironlake_pch_enable(crtc);
c98e9dcf 4716
f9b61ff6
DV
4717 assert_vblank_disabled(crtc);
4718 drm_crtc_vblank_on(crtc);
4719
fa5c73b1
DV
4720 for_each_encoder_on_crtc(dev, crtc, encoder)
4721 encoder->enable(encoder);
61b77ddd
DV
4722
4723 if (HAS_PCH_CPT(dev))
a1520318 4724 cpt_verify_modeset(dev, intel_crtc->pipe);
37ca8d4c
VS
4725
4726 /* Must wait for vblank to avoid spurious PCH FIFO underruns */
4727 if (intel_crtc->config->has_pch_encoder)
4728 intel_wait_for_vblank(dev, pipe);
b2c0593a 4729 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
37ca8d4c 4730 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
6be4a607
JB
4731}
4732
42db64ef
PZ
4733/* IPS only exists on ULT machines and is tied to pipe A. */
4734static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4735{
f5adf94e 4736 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
42db64ef
PZ
4737}
4738
4f771f10
PZ
4739static void haswell_crtc_enable(struct drm_crtc *crtc)
4740{
4741 struct drm_device *dev = crtc->dev;
4742 struct drm_i915_private *dev_priv = dev->dev_private;
4743 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4744 struct intel_encoder *encoder;
99d736a2 4745 int pipe = intel_crtc->pipe, hsw_workaround_pipe;
4d1de975 4746 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
99d736a2
ML
4747 struct intel_crtc_state *pipe_config =
4748 to_intel_crtc_state(crtc->state);
4f771f10 4749
53d9f4e9 4750 if (WARN_ON(intel_crtc->active))
4f771f10
PZ
4751 return;
4752
81b088ca
VS
4753 if (intel_crtc->config->has_pch_encoder)
4754 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4755 false);
4756
8106ddbd 4757 if (intel_crtc->config->shared_dpll)
df8ad70c
DV
4758 intel_enable_shared_dpll(intel_crtc);
4759
6e3c9717 4760 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 4761 intel_dp_set_m_n(intel_crtc, M1_N1);
229fca97 4762
4d1de975
JN
4763 if (!intel_crtc->config->has_dsi_encoder)
4764 intel_set_pipe_timings(intel_crtc);
4765
bc58be60 4766 intel_set_pipe_src_size(intel_crtc);
229fca97 4767
4d1de975
JN
4768 if (cpu_transcoder != TRANSCODER_EDP &&
4769 !transcoder_is_dsi(cpu_transcoder)) {
4770 I915_WRITE(PIPE_MULT(cpu_transcoder),
6e3c9717 4771 intel_crtc->config->pixel_multiplier - 1);
ebb69c95
CT
4772 }
4773
6e3c9717 4774 if (intel_crtc->config->has_pch_encoder) {
229fca97 4775 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 4776 &intel_crtc->config->fdi_m_n, NULL);
229fca97
DV
4777 }
4778
4d1de975
JN
4779 if (!intel_crtc->config->has_dsi_encoder)
4780 haswell_set_pipeconf(crtc);
4781
391bf048 4782 haswell_set_pipemisc(crtc);
229fca97 4783
b95c5321 4784 intel_color_set_csc(&pipe_config->base);
229fca97 4785
4f771f10 4786 intel_crtc->active = true;
8664281b 4787
6b698516
DV
4788 if (intel_crtc->config->has_pch_encoder)
4789 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4790 else
4791 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4792
7d4aefd0 4793 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10
PZ
4794 if (encoder->pre_enable)
4795 encoder->pre_enable(encoder);
7d4aefd0 4796 }
4f771f10 4797
d2d65408 4798 if (intel_crtc->config->has_pch_encoder)
4fe9467d 4799 dev_priv->display.fdi_link_train(crtc);
4fe9467d 4800
a65347ba 4801 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 4802 intel_ddi_enable_pipe_clock(intel_crtc);
4f771f10 4803
1c132b44 4804 if (INTEL_INFO(dev)->gen >= 9)
e435d6e5 4805 skylake_pfit_enable(intel_crtc);
ff6d9f55 4806 else
1c132b44 4807 ironlake_pfit_enable(intel_crtc);
4f771f10
PZ
4808
4809 /*
4810 * On ILK+ LUT must be loaded before the pipe is running but with
4811 * clocks enabled
4812 */
b95c5321 4813 intel_color_load_luts(&pipe_config->base);
4f771f10 4814
1f544388 4815 intel_ddi_set_pipe_settings(crtc);
a65347ba 4816 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 4817 intel_ddi_enable_transcoder_func(crtc);
4f771f10 4818
1d5bf5d9
ID
4819 if (dev_priv->display.initial_watermarks != NULL)
4820 dev_priv->display.initial_watermarks(pipe_config);
4821 else
4822 intel_update_watermarks(crtc);
4d1de975
JN
4823
4824 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
4825 if (!intel_crtc->config->has_dsi_encoder)
4826 intel_enable_pipe(intel_crtc);
42db64ef 4827
6e3c9717 4828 if (intel_crtc->config->has_pch_encoder)
1507e5bd 4829 lpt_pch_enable(crtc);
4f771f10 4830
a65347ba 4831 if (intel_crtc->config->dp_encoder_is_mst)
0e32b39c
DA
4832 intel_ddi_set_vc_payload_alloc(crtc, true);
4833
f9b61ff6
DV
4834 assert_vblank_disabled(crtc);
4835 drm_crtc_vblank_on(crtc);
4836
8807e55b 4837 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10 4838 encoder->enable(encoder);
8807e55b
JN
4839 intel_opregion_notify_encoder(encoder, true);
4840 }
4f771f10 4841
6b698516
DV
4842 if (intel_crtc->config->has_pch_encoder) {
4843 intel_wait_for_vblank(dev, pipe);
4844 intel_wait_for_vblank(dev, pipe);
4845 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
d2d65408
VS
4846 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4847 true);
6b698516 4848 }
d2d65408 4849
e4916946
PZ
4850 /* If we change the relative order between pipe/planes enabling, we need
4851 * to change the workaround. */
99d736a2
ML
4852 hsw_workaround_pipe = pipe_config->hsw_workaround_pipe;
4853 if (IS_HASWELL(dev) && hsw_workaround_pipe != INVALID_PIPE) {
4854 intel_wait_for_vblank(dev, hsw_workaround_pipe);
4855 intel_wait_for_vblank(dev, hsw_workaround_pipe);
4856 }
4f771f10
PZ
4857}
4858
bfd16b2a 4859static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force)
3f8dce3a
DV
4860{
4861 struct drm_device *dev = crtc->base.dev;
4862 struct drm_i915_private *dev_priv = dev->dev_private;
4863 int pipe = crtc->pipe;
4864
4865 /* To avoid upsetting the power well on haswell only disable the pfit if
4866 * it's in use. The hw state code will make sure we get this right. */
bfd16b2a 4867 if (force || crtc->config->pch_pfit.enabled) {
3f8dce3a
DV
4868 I915_WRITE(PF_CTL(pipe), 0);
4869 I915_WRITE(PF_WIN_POS(pipe), 0);
4870 I915_WRITE(PF_WIN_SZ(pipe), 0);
4871 }
4872}
4873
6be4a607
JB
4874static void ironlake_crtc_disable(struct drm_crtc *crtc)
4875{
4876 struct drm_device *dev = crtc->dev;
4877 struct drm_i915_private *dev_priv = dev->dev_private;
4878 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 4879 struct intel_encoder *encoder;
6be4a607 4880 int pipe = intel_crtc->pipe;
b52eb4dc 4881
b2c0593a
VS
4882 /*
4883 * Sometimes spurious CPU pipe underruns happen when the
4884 * pipe is already disabled, but FDI RX/TX is still enabled.
4885 * Happens at least with VGA+HDMI cloning. Suppress them.
4886 */
4887 if (intel_crtc->config->has_pch_encoder) {
4888 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
37ca8d4c 4889 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
b2c0593a 4890 }
37ca8d4c 4891
ea9d758d
DV
4892 for_each_encoder_on_crtc(dev, crtc, encoder)
4893 encoder->disable(encoder);
4894
f9b61ff6
DV
4895 drm_crtc_vblank_off(crtc);
4896 assert_vblank_disabled(crtc);
4897
575f7ab7 4898 intel_disable_pipe(intel_crtc);
32f9d658 4899
bfd16b2a 4900 ironlake_pfit_disable(intel_crtc, false);
2c07245f 4901
b2c0593a 4902 if (intel_crtc->config->has_pch_encoder)
5a74f70a
VS
4903 ironlake_fdi_disable(crtc);
4904
bf49ec8c
DV
4905 for_each_encoder_on_crtc(dev, crtc, encoder)
4906 if (encoder->post_disable)
4907 encoder->post_disable(encoder);
2c07245f 4908
6e3c9717 4909 if (intel_crtc->config->has_pch_encoder) {
d925c59a 4910 ironlake_disable_pch_transcoder(dev_priv, pipe);
6be4a607 4911
d925c59a 4912 if (HAS_PCH_CPT(dev)) {
f0f59a00
VS
4913 i915_reg_t reg;
4914 u32 temp;
4915
d925c59a
DV
4916 /* disable TRANS_DP_CTL */
4917 reg = TRANS_DP_CTL(pipe);
4918 temp = I915_READ(reg);
4919 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4920 TRANS_DP_PORT_SEL_MASK);
4921 temp |= TRANS_DP_PORT_SEL_NONE;
4922 I915_WRITE(reg, temp);
4923
4924 /* disable DPLL_SEL */
4925 temp = I915_READ(PCH_DPLL_SEL);
11887397 4926 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
d925c59a 4927 I915_WRITE(PCH_DPLL_SEL, temp);
9db4a9c7 4928 }
e3421a18 4929
d925c59a
DV
4930 ironlake_fdi_pll_disable(intel_crtc);
4931 }
81b088ca 4932
b2c0593a 4933 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
81b088ca 4934 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
6be4a607 4935}
1b3c7a47 4936
4f771f10 4937static void haswell_crtc_disable(struct drm_crtc *crtc)
ee7b9f93 4938{
4f771f10
PZ
4939 struct drm_device *dev = crtc->dev;
4940 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93 4941 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4f771f10 4942 struct intel_encoder *encoder;
6e3c9717 4943 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
ee7b9f93 4944
d2d65408
VS
4945 if (intel_crtc->config->has_pch_encoder)
4946 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4947 false);
4948
8807e55b
JN
4949 for_each_encoder_on_crtc(dev, crtc, encoder) {
4950 intel_opregion_notify_encoder(encoder, false);
4f771f10 4951 encoder->disable(encoder);
8807e55b 4952 }
4f771f10 4953
f9b61ff6
DV
4954 drm_crtc_vblank_off(crtc);
4955 assert_vblank_disabled(crtc);
4956
4d1de975
JN
4957 /* XXX: Do the pipe assertions at the right place for BXT DSI. */
4958 if (!intel_crtc->config->has_dsi_encoder)
4959 intel_disable_pipe(intel_crtc);
4f771f10 4960
6e3c9717 4961 if (intel_crtc->config->dp_encoder_is_mst)
a4bf214f
VS
4962 intel_ddi_set_vc_payload_alloc(crtc, false);
4963
a65347ba 4964 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 4965 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
4f771f10 4966
1c132b44 4967 if (INTEL_INFO(dev)->gen >= 9)
e435d6e5 4968 skylake_scaler_disable(intel_crtc);
ff6d9f55 4969 else
bfd16b2a 4970 ironlake_pfit_disable(intel_crtc, false);
4f771f10 4971
a65347ba 4972 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 4973 intel_ddi_disable_pipe_clock(intel_crtc);
4f771f10 4974
97b040aa
ID
4975 for_each_encoder_on_crtc(dev, crtc, encoder)
4976 if (encoder->post_disable)
4977 encoder->post_disable(encoder);
81b088ca 4978
92966a37
VS
4979 if (intel_crtc->config->has_pch_encoder) {
4980 lpt_disable_pch_transcoder(dev_priv);
503a74e9 4981 lpt_disable_iclkip(dev_priv);
92966a37
VS
4982 intel_ddi_fdi_disable(crtc);
4983
81b088ca
VS
4984 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4985 true);
92966a37 4986 }
4f771f10
PZ
4987}
4988
2dd24552
JB
4989static void i9xx_pfit_enable(struct intel_crtc *crtc)
4990{
4991 struct drm_device *dev = crtc->base.dev;
4992 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 4993 struct intel_crtc_state *pipe_config = crtc->config;
2dd24552 4994
681a8504 4995 if (!pipe_config->gmch_pfit.control)
2dd24552
JB
4996 return;
4997
2dd24552 4998 /*
c0b03411
DV
4999 * The panel fitter should only be adjusted whilst the pipe is disabled,
5000 * according to register description and PRM.
2dd24552 5001 */
c0b03411
DV
5002 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5003 assert_pipe_disabled(dev_priv, crtc->pipe);
2dd24552 5004
b074cec8
JB
5005 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5006 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
5a80c45c
DV
5007
5008 /* Border color in case we don't scale up to the full screen. Black by
5009 * default, change to something else for debugging. */
5010 I915_WRITE(BCLRPAT(crtc->pipe), 0);
2dd24552
JB
5011}
5012
d05410f9
DA
5013static enum intel_display_power_domain port_to_power_domain(enum port port)
5014{
5015 switch (port) {
5016 case PORT_A:
6331a704 5017 return POWER_DOMAIN_PORT_DDI_A_LANES;
d05410f9 5018 case PORT_B:
6331a704 5019 return POWER_DOMAIN_PORT_DDI_B_LANES;
d05410f9 5020 case PORT_C:
6331a704 5021 return POWER_DOMAIN_PORT_DDI_C_LANES;
d05410f9 5022 case PORT_D:
6331a704 5023 return POWER_DOMAIN_PORT_DDI_D_LANES;
d8e19f99 5024 case PORT_E:
6331a704 5025 return POWER_DOMAIN_PORT_DDI_E_LANES;
d05410f9 5026 default:
b9fec167 5027 MISSING_CASE(port);
d05410f9
DA
5028 return POWER_DOMAIN_PORT_OTHER;
5029 }
5030}
5031
25f78f58
VS
5032static enum intel_display_power_domain port_to_aux_power_domain(enum port port)
5033{
5034 switch (port) {
5035 case PORT_A:
5036 return POWER_DOMAIN_AUX_A;
5037 case PORT_B:
5038 return POWER_DOMAIN_AUX_B;
5039 case PORT_C:
5040 return POWER_DOMAIN_AUX_C;
5041 case PORT_D:
5042 return POWER_DOMAIN_AUX_D;
5043 case PORT_E:
5044 /* FIXME: Check VBT for actual wiring of PORT E */
5045 return POWER_DOMAIN_AUX_D;
5046 default:
b9fec167 5047 MISSING_CASE(port);
25f78f58
VS
5048 return POWER_DOMAIN_AUX_A;
5049 }
5050}
5051
319be8ae
ID
5052enum intel_display_power_domain
5053intel_display_port_power_domain(struct intel_encoder *intel_encoder)
5054{
5055 struct drm_device *dev = intel_encoder->base.dev;
5056 struct intel_digital_port *intel_dig_port;
5057
5058 switch (intel_encoder->type) {
5059 case INTEL_OUTPUT_UNKNOWN:
5060 /* Only DDI platforms should ever use this output type */
5061 WARN_ON_ONCE(!HAS_DDI(dev));
5062 case INTEL_OUTPUT_DISPLAYPORT:
5063 case INTEL_OUTPUT_HDMI:
5064 case INTEL_OUTPUT_EDP:
5065 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
d05410f9 5066 return port_to_power_domain(intel_dig_port->port);
0e32b39c
DA
5067 case INTEL_OUTPUT_DP_MST:
5068 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5069 return port_to_power_domain(intel_dig_port->port);
319be8ae
ID
5070 case INTEL_OUTPUT_ANALOG:
5071 return POWER_DOMAIN_PORT_CRT;
5072 case INTEL_OUTPUT_DSI:
5073 return POWER_DOMAIN_PORT_DSI;
5074 default:
5075 return POWER_DOMAIN_PORT_OTHER;
5076 }
5077}
5078
25f78f58
VS
5079enum intel_display_power_domain
5080intel_display_port_aux_power_domain(struct intel_encoder *intel_encoder)
5081{
5082 struct drm_device *dev = intel_encoder->base.dev;
5083 struct intel_digital_port *intel_dig_port;
5084
5085 switch (intel_encoder->type) {
5086 case INTEL_OUTPUT_UNKNOWN:
651174a4
ID
5087 case INTEL_OUTPUT_HDMI:
5088 /*
5089 * Only DDI platforms should ever use these output types.
5090 * We can get here after the HDMI detect code has already set
5091 * the type of the shared encoder. Since we can't be sure
5092 * what's the status of the given connectors, play safe and
5093 * run the DP detection too.
5094 */
25f78f58
VS
5095 WARN_ON_ONCE(!HAS_DDI(dev));
5096 case INTEL_OUTPUT_DISPLAYPORT:
5097 case INTEL_OUTPUT_EDP:
5098 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
5099 return port_to_aux_power_domain(intel_dig_port->port);
5100 case INTEL_OUTPUT_DP_MST:
5101 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5102 return port_to_aux_power_domain(intel_dig_port->port);
5103 default:
b9fec167 5104 MISSING_CASE(intel_encoder->type);
25f78f58
VS
5105 return POWER_DOMAIN_AUX_A;
5106 }
5107}
5108
74bff5f9
ML
5109static unsigned long get_crtc_power_domains(struct drm_crtc *crtc,
5110 struct intel_crtc_state *crtc_state)
77d22dca 5111{
319be8ae 5112 struct drm_device *dev = crtc->dev;
74bff5f9 5113 struct drm_encoder *encoder;
319be8ae
ID
5114 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5115 enum pipe pipe = intel_crtc->pipe;
77d22dca 5116 unsigned long mask;
74bff5f9 5117 enum transcoder transcoder = crtc_state->cpu_transcoder;
77d22dca 5118
74bff5f9 5119 if (!crtc_state->base.active)
292b990e
ML
5120 return 0;
5121
77d22dca
ID
5122 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5123 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
74bff5f9
ML
5124 if (crtc_state->pch_pfit.enabled ||
5125 crtc_state->pch_pfit.force_thru)
77d22dca
ID
5126 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5127
74bff5f9
ML
5128 drm_for_each_encoder_mask(encoder, dev, crtc_state->base.encoder_mask) {
5129 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
5130
319be8ae 5131 mask |= BIT(intel_display_port_power_domain(intel_encoder));
74bff5f9 5132 }
319be8ae 5133
15e7ec29
ML
5134 if (crtc_state->shared_dpll)
5135 mask |= BIT(POWER_DOMAIN_PLLS);
5136
77d22dca
ID
5137 return mask;
5138}
5139
74bff5f9
ML
5140static unsigned long
5141modeset_get_crtc_power_domains(struct drm_crtc *crtc,
5142 struct intel_crtc_state *crtc_state)
77d22dca 5143{
292b990e
ML
5144 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5145 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5146 enum intel_display_power_domain domain;
a6747b73 5147 unsigned long domains, new_domains, old_domains, ms_domain = 0;
77d22dca 5148
292b990e 5149 old_domains = intel_crtc->enabled_power_domains;
74bff5f9
ML
5150 intel_crtc->enabled_power_domains = new_domains =
5151 get_crtc_power_domains(crtc, crtc_state);
77d22dca 5152
a6747b73
ML
5153 if (needs_modeset(&crtc_state->base))
5154 ms_domain = BIT(POWER_DOMAIN_MODESET);
5155
5156 domains = (new_domains & ~old_domains) | ms_domain;
292b990e
ML
5157
5158 for_each_power_domain(domain, domains)
5159 intel_display_power_get(dev_priv, domain);
5160
a6747b73 5161 return (old_domains & ~new_domains) | ms_domain;
292b990e
ML
5162}
5163
5164static void modeset_put_power_domains(struct drm_i915_private *dev_priv,
5165 unsigned long domains)
5166{
5167 enum intel_display_power_domain domain;
5168
5169 for_each_power_domain(domain, domains)
5170 intel_display_power_put(dev_priv, domain);
5171}
77d22dca 5172
adafdc6f
MK
5173static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv)
5174{
5175 int max_cdclk_freq = dev_priv->max_cdclk_freq;
5176
5177 if (INTEL_INFO(dev_priv)->gen >= 9 ||
5178 IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
5179 return max_cdclk_freq;
5180 else if (IS_CHERRYVIEW(dev_priv))
5181 return max_cdclk_freq*95/100;
5182 else if (INTEL_INFO(dev_priv)->gen < 4)
5183 return 2*max_cdclk_freq*90/100;
5184 else
5185 return max_cdclk_freq*90/100;
5186}
5187
b2045352
VS
5188static int skl_calc_cdclk(int max_pixclk, int vco);
5189
560a7ae4
DL
5190static void intel_update_max_cdclk(struct drm_device *dev)
5191{
5192 struct drm_i915_private *dev_priv = dev->dev_private;
5193
ef11bdb3 5194 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
560a7ae4 5195 u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK;
b2045352
VS
5196 int max_cdclk, vco;
5197
5198 vco = dev_priv->skl_preferred_vco_freq;
5199 WARN_ON(vco != 8100 && vco != 8640);
560a7ae4 5200
b2045352
VS
5201 /*
5202 * Use the lower (vco 8640) cdclk values as a
5203 * first guess. skl_calc_cdclk() will correct it
5204 * if the preferred vco is 8100 instead.
5205 */
560a7ae4 5206 if (limit == SKL_DFSM_CDCLK_LIMIT_675)
b2045352 5207 max_cdclk = 617140;
560a7ae4 5208 else if (limit == SKL_DFSM_CDCLK_LIMIT_540)
b2045352 5209 max_cdclk = 540000;
560a7ae4 5210 else if (limit == SKL_DFSM_CDCLK_LIMIT_450)
b2045352 5211 max_cdclk = 432000;
560a7ae4 5212 else
b2045352
VS
5213 max_cdclk = 308570;
5214
5215 dev_priv->max_cdclk_freq = skl_calc_cdclk(max_cdclk, vco);
281c114f
MR
5216 } else if (IS_BROXTON(dev)) {
5217 dev_priv->max_cdclk_freq = 624000;
560a7ae4
DL
5218 } else if (IS_BROADWELL(dev)) {
5219 /*
5220 * FIXME with extra cooling we can allow
5221 * 540 MHz for ULX and 675 Mhz for ULT.
5222 * How can we know if extra cooling is
5223 * available? PCI ID, VTB, something else?
5224 */
5225 if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
5226 dev_priv->max_cdclk_freq = 450000;
5227 else if (IS_BDW_ULX(dev))
5228 dev_priv->max_cdclk_freq = 450000;
5229 else if (IS_BDW_ULT(dev))
5230 dev_priv->max_cdclk_freq = 540000;
5231 else
5232 dev_priv->max_cdclk_freq = 675000;
0904deaf
MK
5233 } else if (IS_CHERRYVIEW(dev)) {
5234 dev_priv->max_cdclk_freq = 320000;
560a7ae4
DL
5235 } else if (IS_VALLEYVIEW(dev)) {
5236 dev_priv->max_cdclk_freq = 400000;
5237 } else {
5238 /* otherwise assume cdclk is fixed */
5239 dev_priv->max_cdclk_freq = dev_priv->cdclk_freq;
5240 }
5241
adafdc6f
MK
5242 dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv);
5243
560a7ae4
DL
5244 DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n",
5245 dev_priv->max_cdclk_freq);
adafdc6f
MK
5246
5247 DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n",
5248 dev_priv->max_dotclk_freq);
560a7ae4
DL
5249}
5250
5251static void intel_update_cdclk(struct drm_device *dev)
5252{
5253 struct drm_i915_private *dev_priv = dev->dev_private;
5254
5255 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
2f2a121a
VS
5256
5257 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
5258 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz, VCO: %d MHz\n",
5259 dev_priv->cdclk_freq, dev_priv->skl_vco_freq);
5260 else
5261 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
5262 dev_priv->cdclk_freq);
560a7ae4
DL
5263
5264 /*
b5d99ff9
VS
5265 * 9:0 CMBUS [sic] CDCLK frequency (cdfreq):
5266 * Programmng [sic] note: bit[9:2] should be programmed to the number
5267 * of cdclk that generates 4MHz reference clock freq which is used to
5268 * generate GMBus clock. This will vary with the cdclk freq.
560a7ae4 5269 */
b5d99ff9 5270 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
560a7ae4 5271 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
560a7ae4
DL
5272}
5273
92891e45
VS
5274/* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5275static int skl_cdclk_decimal(int cdclk)
5276{
5277 return DIV_ROUND_CLOSEST(cdclk - 1000, 500);
5278}
5279
9ef56154 5280static void broxton_set_cdclk(struct drm_i915_private *dev_priv, int cdclk)
f8437dd1 5281{
f8437dd1
VK
5282 uint32_t divider;
5283 uint32_t ratio;
9ef56154 5284 uint32_t current_cdclk;
f8437dd1
VK
5285 int ret;
5286
5287 /* frequency = 19.2MHz * ratio / 2 / div{1,1.5,2,4} */
9ef56154 5288 switch (cdclk) {
f8437dd1
VK
5289 case 144000:
5290 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
5291 ratio = BXT_DE_PLL_RATIO(60);
5292 break;
5293 case 288000:
5294 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
5295 ratio = BXT_DE_PLL_RATIO(60);
5296 break;
5297 case 384000:
5298 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
5299 ratio = BXT_DE_PLL_RATIO(60);
5300 break;
5301 case 576000:
5302 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5303 ratio = BXT_DE_PLL_RATIO(60);
5304 break;
5305 case 624000:
5306 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5307 ratio = BXT_DE_PLL_RATIO(65);
5308 break;
5309 case 19200:
5310 /*
5311 * Bypass frequency with DE PLL disabled. Init ratio, divider
5312 * to suppress GCC warning.
5313 */
5314 ratio = 0;
5315 divider = 0;
5316 break;
5317 default:
9ef56154 5318 DRM_ERROR("unsupported CDCLK freq %d", cdclk);
f8437dd1
VK
5319
5320 return;
5321 }
5322
5323 mutex_lock(&dev_priv->rps.hw_lock);
5324 /* Inform power controller of upcoming frequency change */
5325 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5326 0x80000000);
5327 mutex_unlock(&dev_priv->rps.hw_lock);
5328
5329 if (ret) {
5330 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
9ef56154 5331 ret, cdclk);
f8437dd1
VK
5332 return;
5333 }
5334
9ef56154 5335 current_cdclk = I915_READ(CDCLK_CTL) & CDCLK_FREQ_DECIMAL_MASK;
f8437dd1 5336 /* convert from .1 fixpoint MHz with -1MHz offset to kHz */
9ef56154 5337 current_cdclk = current_cdclk * 500 + 1000;
f8437dd1
VK
5338
5339 /*
5340 * DE PLL has to be disabled when
5341 * - setting to 19.2MHz (bypass, PLL isn't used)
5342 * - before setting to 624MHz (PLL needs toggling)
5343 * - before setting to any frequency from 624MHz (PLL needs toggling)
5344 */
9ef56154
VS
5345 if (cdclk == 19200 || cdclk == 624000 ||
5346 current_cdclk == 624000) {
f8437dd1
VK
5347 I915_WRITE(BXT_DE_PLL_ENABLE, ~BXT_DE_PLL_PLL_ENABLE);
5348 /* Timeout 200us */
5349 if (wait_for(!(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK),
5350 1))
5351 DRM_ERROR("timout waiting for DE PLL unlock\n");
5352 }
5353
9ef56154 5354 if (cdclk != 19200) {
f8437dd1
VK
5355 uint32_t val;
5356
5357 val = I915_READ(BXT_DE_PLL_CTL);
5358 val &= ~BXT_DE_PLL_RATIO_MASK;
5359 val |= ratio;
5360 I915_WRITE(BXT_DE_PLL_CTL, val);
5361
5362 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5363 /* Timeout 200us */
5364 if (wait_for(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK, 1))
5365 DRM_ERROR("timeout waiting for DE PLL lock\n");
5366
b8e75705 5367 val = divider | skl_cdclk_decimal(cdclk);
7fe62757
VS
5368 /*
5369 * FIXME if only the cd2x divider needs changing, it could be done
5370 * without shutting off the pipe (if only one pipe is active).
5371 */
5372 val |= BXT_CDCLK_CD2X_PIPE_NONE;
f8437dd1
VK
5373 /*
5374 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5375 * enable otherwise.
5376 */
9ef56154 5377 if (cdclk >= 500000)
f8437dd1 5378 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
f8437dd1
VK
5379 I915_WRITE(CDCLK_CTL, val);
5380 }
5381
5382 mutex_lock(&dev_priv->rps.hw_lock);
5383 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
9ef56154 5384 DIV_ROUND_UP(cdclk, 25000));
f8437dd1
VK
5385 mutex_unlock(&dev_priv->rps.hw_lock);
5386
5387 if (ret) {
5388 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
9ef56154 5389 ret, cdclk);
f8437dd1
VK
5390 return;
5391 }
5392
c6c4696f 5393 intel_update_cdclk(dev_priv->dev);
f8437dd1
VK
5394}
5395
c2e001ef
ID
5396static bool broxton_cdclk_is_enabled(struct drm_i915_private *dev_priv)
5397{
5398 if (!(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_PLL_ENABLE))
5399 return false;
5400
5401 /* TODO: Check for a valid CDCLK rate */
5402
5403 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_REQUEST)) {
5404 DRM_DEBUG_DRIVER("CDCLK enabled, but DBUF power not requested\n");
5405
5406 return false;
5407 }
5408
5409 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE)) {
5410 DRM_DEBUG_DRIVER("CDCLK enabled, but DBUF power hasn't settled\n");
5411
5412 return false;
5413 }
5414
5415 return true;
5416}
5417
adc7f04b
ID
5418bool broxton_cdclk_verify_state(struct drm_i915_private *dev_priv)
5419{
5420 return broxton_cdclk_is_enabled(dev_priv);
5421}
5422
c6c4696f 5423void broxton_init_cdclk(struct drm_i915_private *dev_priv)
f8437dd1 5424{
f8437dd1 5425 /* check if cd clock is enabled */
c2e001ef
ID
5426 if (broxton_cdclk_is_enabled(dev_priv)) {
5427 DRM_DEBUG_KMS("CDCLK already enabled, won't reprogram it\n");
f8437dd1
VK
5428 return;
5429 }
5430
c2e001ef
ID
5431 DRM_DEBUG_KMS("CDCLK not enabled, enabling it\n");
5432
f8437dd1
VK
5433 /*
5434 * FIXME:
5435 * - The initial CDCLK needs to be read from VBT.
5436 * Need to make this change after VBT has changes for BXT.
5437 * - check if setting the max (or any) cdclk freq is really necessary
5438 * here, it belongs to modeset time
5439 */
c6c4696f 5440 broxton_set_cdclk(dev_priv, 624000);
f8437dd1
VK
5441
5442 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
22e02c0b
VS
5443 POSTING_READ(DBUF_CTL);
5444
f8437dd1
VK
5445 udelay(10);
5446
5447 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5448 DRM_ERROR("DBuf power enable timeout!\n");
5449}
5450
c6c4696f 5451void broxton_uninit_cdclk(struct drm_i915_private *dev_priv)
f8437dd1 5452{
f8437dd1 5453 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
22e02c0b
VS
5454 POSTING_READ(DBUF_CTL);
5455
f8437dd1
VK
5456 udelay(10);
5457
5458 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5459 DRM_ERROR("DBuf power disable timeout!\n");
5460
5461 /* Set minimum (bypass) frequency, in effect turning off the DE PLL */
c6c4696f 5462 broxton_set_cdclk(dev_priv, 19200);
f8437dd1
VK
5463}
5464
a8ca4934
VS
5465static int skl_calc_cdclk(int max_pixclk, int vco)
5466{
5467 if (vco == 8640) {
5468 if (max_pixclk > 540000)
5469 return 617140;
5470 else if (max_pixclk > 432000)
5471 return 540000;
5472 else if (max_pixclk > 308570)
5473 return 432000;
5474 else
5475 return 308570;
5476 } else {
5477 /* VCO 8100 */
5478 if (max_pixclk > 540000)
5479 return 675000;
5480 else if (max_pixclk > 450000)
5481 return 540000;
5482 else if (max_pixclk > 337500)
5483 return 450000;
5484 else
5485 return 337500;
5486 }
5487}
5488
ea61791e
VS
5489static void
5490skl_dpll0_update(struct drm_i915_private *dev_priv)
5d96d8af 5491{
ea61791e 5492 u32 val;
5d96d8af 5493
ea61791e
VS
5494 val = I915_READ(LCPLL1_CTL);
5495 if ((val & LCPLL_PLL_ENABLE) == 0) {
5496 dev_priv->skl_vco_freq = 0;
5497 return;
5d96d8af
DL
5498 }
5499
ea61791e
VS
5500 val = I915_READ(DPLL_CTRL1);
5501
5502 switch (val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) {
5503 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810, SKL_DPLL0):
5504 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1350, SKL_DPLL0):
5505 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1620, SKL_DPLL0):
5506 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2700, SKL_DPLL0):
5507 dev_priv->skl_vco_freq = 8100;
5508 break;
5509 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080, SKL_DPLL0):
5510 case DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_2160, SKL_DPLL0):
5511 dev_priv->skl_vco_freq = 8640;
5512 break;
5513 default:
5514 MISSING_CASE(val & DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
5515 dev_priv->skl_vco_freq = 0;
5516 break;
5517 }
5d96d8af
DL
5518}
5519
b2045352
VS
5520void skl_set_preferred_cdclk_vco(struct drm_i915_private *dev_priv, int vco)
5521{
5522 bool changed = dev_priv->skl_preferred_vco_freq != vco;
5523
5524 dev_priv->skl_preferred_vco_freq = vco;
5525
5526 if (changed)
5527 intel_update_max_cdclk(dev_priv->dev);
5528}
5529
5d96d8af 5530static void
3861fc60 5531skl_dpll0_enable(struct drm_i915_private *dev_priv, int vco)
5d96d8af 5532{
a8ca4934 5533 int min_cdclk = skl_calc_cdclk(0, vco);
5d96d8af
DL
5534 u32 val;
5535
b2045352
VS
5536 WARN_ON(vco != 8100 && vco != 8640);
5537
5d96d8af 5538 /* select the minimum CDCLK before enabling DPLL 0 */
9ef56154 5539 val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_cdclk);
5d96d8af
DL
5540 I915_WRITE(CDCLK_CTL, val);
5541 POSTING_READ(CDCLK_CTL);
5542
5543 /*
5544 * We always enable DPLL0 with the lowest link rate possible, but still
5545 * taking into account the VCO required to operate the eDP panel at the
5546 * desired frequency. The usual DP link rates operate with a VCO of
5547 * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640.
5548 * The modeset code is responsible for the selection of the exact link
5549 * rate later on, with the constraint of choosing a frequency that
a8ca4934 5550 * works with vco.
5d96d8af
DL
5551 */
5552 val = I915_READ(DPLL_CTRL1);
5553
5554 val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) |
5555 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
5556 val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
3861fc60 5557 if (vco == 8640)
5d96d8af
DL
5558 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
5559 SKL_DPLL0);
5560 else
5561 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
5562 SKL_DPLL0);
5563
5564 I915_WRITE(DPLL_CTRL1, val);
5565 POSTING_READ(DPLL_CTRL1);
5566
5567 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE);
5568
5569 if (wait_for(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK, 5))
5570 DRM_ERROR("DPLL0 not locked\n");
1cd593e0
VS
5571
5572 dev_priv->skl_vco_freq = vco;
b2045352
VS
5573
5574 /* We'll want to keep using the current vco from now on. */
5575 skl_set_preferred_cdclk_vco(dev_priv, vco);
5d96d8af
DL
5576}
5577
430e05de
VS
5578static void
5579skl_dpll0_disable(struct drm_i915_private *dev_priv)
5580{
5581 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE);
5582 if (wait_for(!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK), 1))
5583 DRM_ERROR("Couldn't disable DPLL0\n");
1cd593e0
VS
5584
5585 dev_priv->skl_vco_freq = 0;
430e05de
VS
5586}
5587
5d96d8af
DL
5588static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv)
5589{
5590 int ret;
5591 u32 val;
5592
5593 /* inform PCU we want to change CDCLK */
5594 val = SKL_CDCLK_PREPARE_FOR_CHANGE;
5595 mutex_lock(&dev_priv->rps.hw_lock);
5596 ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val);
5597 mutex_unlock(&dev_priv->rps.hw_lock);
5598
5599 return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE);
5600}
5601
5602static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv)
5603{
5604 unsigned int i;
5605
5606 for (i = 0; i < 15; i++) {
5607 if (skl_cdclk_pcu_ready(dev_priv))
5608 return true;
5609 udelay(10);
5610 }
5611
5612 return false;
5613}
5614
1cd593e0 5615static void skl_set_cdclk(struct drm_i915_private *dev_priv, int cdclk, int vco)
5d96d8af 5616{
560a7ae4 5617 struct drm_device *dev = dev_priv->dev;
5d96d8af
DL
5618 u32 freq_select, pcu_ack;
5619
1cd593e0
VS
5620 WARN_ON((cdclk == 24000) != (vco == 0));
5621
5622 DRM_DEBUG_DRIVER("Changing CDCLK to %d kHz (VCO %d MHz)\n", cdclk, vco);
5d96d8af
DL
5623
5624 if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) {
5625 DRM_ERROR("failed to inform PCU about cdclk change\n");
5626 return;
5627 }
5628
5629 /* set CDCLK_CTL */
9ef56154 5630 switch (cdclk) {
5d96d8af
DL
5631 case 450000:
5632 case 432000:
5633 freq_select = CDCLK_FREQ_450_432;
5634 pcu_ack = 1;
5635 break;
5636 case 540000:
5637 freq_select = CDCLK_FREQ_540;
5638 pcu_ack = 2;
5639 break;
5640 case 308570:
5641 case 337500:
5642 default:
5643 freq_select = CDCLK_FREQ_337_308;
5644 pcu_ack = 0;
5645 break;
5646 case 617140:
5647 case 675000:
5648 freq_select = CDCLK_FREQ_675_617;
5649 pcu_ack = 3;
5650 break;
5651 }
5652
1cd593e0
VS
5653 if (dev_priv->skl_vco_freq != 0 &&
5654 dev_priv->skl_vco_freq != vco)
5655 skl_dpll0_disable(dev_priv);
5656
5657 if (dev_priv->skl_vco_freq != vco)
5658 skl_dpll0_enable(dev_priv, vco);
5659
9ef56154 5660 I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(cdclk));
5d96d8af
DL
5661 POSTING_READ(CDCLK_CTL);
5662
5663 /* inform PCU of the change */
5664 mutex_lock(&dev_priv->rps.hw_lock);
5665 sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack);
5666 mutex_unlock(&dev_priv->rps.hw_lock);
560a7ae4
DL
5667
5668 intel_update_cdclk(dev);
5d96d8af
DL
5669}
5670
5671void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
5672{
5673 /* disable DBUF power */
5674 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
5675 POSTING_READ(DBUF_CTL);
5676
5677 udelay(10);
5678
5679 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5680 DRM_ERROR("DBuf power disable timeout\n");
5681
1cd593e0 5682 skl_set_cdclk(dev_priv, 24000, 0);
5d96d8af
DL
5683}
5684
5685void skl_init_cdclk(struct drm_i915_private *dev_priv)
5686{
39d9b85a 5687 /* DPLL0 not enabled (happens on early BIOS versions) */
1cd593e0
VS
5688 if (dev_priv->skl_vco_freq == 0) {
5689 int cdclk, vco;
5d96d8af 5690
1cd593e0 5691 /* set CDCLK to the lowest frequency, Modeset follows */
b2045352
VS
5692 vco = dev_priv->skl_preferred_vco_freq;
5693 if (vco == 0)
5694 vco = 8100;
1cd593e0
VS
5695 cdclk = skl_calc_cdclk(0, vco);
5696
5697 skl_set_cdclk(dev_priv, cdclk, vco);
5698 }
5d96d8af
DL
5699
5700 /* enable DBUF power */
5701 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
5702 POSTING_READ(DBUF_CTL);
5703
5704 udelay(10);
5705
5706 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5707 DRM_ERROR("DBuf power enable timeout\n");
5708}
5709
c73666f3
SK
5710int skl_sanitize_cdclk(struct drm_i915_private *dev_priv)
5711{
09492498 5712 uint32_t cdctl, expected;
c73666f3 5713
f1b391a5
SK
5714 /*
5715 * check if the pre-os intialized the display
5716 * There is SWF18 scratchpad register defined which is set by the
5717 * pre-os which can be used by the OS drivers to check the status
5718 */
5719 if ((I915_READ(SWF_ILK(0x18)) & 0x00FFFFFF) == 0)
5720 goto sanitize;
5721
c73666f3 5722 /* Is PLL enabled and locked ? */
09492498
VS
5723 if ((I915_READ(LCPLL1_CTL) & (LCPLL_PLL_ENABLE | LCPLL_PLL_LOCK)) !=
5724 (LCPLL_PLL_ENABLE | LCPLL_PLL_LOCK))
5725 goto sanitize;
5726
5727 if ((I915_READ(DPLL_CTRL1) & (DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) |
5728 DPLL_CTRL1_SSC(SKL_DPLL0) |
5729 DPLL_CTRL1_OVERRIDE(SKL_DPLL0))) !=
5730 DPLL_CTRL1_OVERRIDE(SKL_DPLL0))
c73666f3
SK
5731 goto sanitize;
5732
5733 /* DPLL okay; verify the cdclock
5734 *
5735 * Noticed in some instances that the freq selection is correct but
5736 * decimal part is programmed wrong from BIOS where pre-os does not
5737 * enable display. Verify the same as well.
5738 */
09492498
VS
5739 cdctl = I915_READ(CDCLK_CTL);
5740 expected = (cdctl & CDCLK_FREQ_SEL_MASK) |
5741 skl_cdclk_decimal(dev_priv->cdclk_freq);
5742 if (cdctl == expected)
c73666f3
SK
5743 /* All well; nothing to sanitize */
5744 return false;
5745sanitize:
c89e39f3 5746
c73666f3
SK
5747 skl_init_cdclk(dev_priv);
5748
5749 /* we did have to sanitize */
5750 return true;
5751}
5752
30a970c6
JB
5753/* Adjust CDclk dividers to allow high res or save power if possible */
5754static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
5755{
5756 struct drm_i915_private *dev_priv = dev->dev_private;
5757 u32 val, cmd;
5758
164dfd28
VK
5759 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5760 != dev_priv->cdclk_freq);
d60c4473 5761
dfcab17e 5762 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
30a970c6 5763 cmd = 2;
dfcab17e 5764 else if (cdclk == 266667)
30a970c6
JB
5765 cmd = 1;
5766 else
5767 cmd = 0;
5768
5769 mutex_lock(&dev_priv->rps.hw_lock);
5770 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5771 val &= ~DSPFREQGUAR_MASK;
5772 val |= (cmd << DSPFREQGUAR_SHIFT);
5773 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5774 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5775 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
5776 50)) {
5777 DRM_ERROR("timed out waiting for CDclk change\n");
5778 }
5779 mutex_unlock(&dev_priv->rps.hw_lock);
5780
54433e91
VS
5781 mutex_lock(&dev_priv->sb_lock);
5782
dfcab17e 5783 if (cdclk == 400000) {
6bcda4f0 5784 u32 divider;
30a970c6 5785
6bcda4f0 5786 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
30a970c6 5787
30a970c6
JB
5788 /* adjust cdclk divider */
5789 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
87d5d259 5790 val &= ~CCK_FREQUENCY_VALUES;
30a970c6
JB
5791 val |= divider;
5792 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
a877e801
VS
5793
5794 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
87d5d259 5795 CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
a877e801
VS
5796 50))
5797 DRM_ERROR("timed out waiting for CDclk change\n");
30a970c6
JB
5798 }
5799
30a970c6
JB
5800 /* adjust self-refresh exit latency value */
5801 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
5802 val &= ~0x7f;
5803
5804 /*
5805 * For high bandwidth configs, we set a higher latency in the bunit
5806 * so that the core display fetch happens in time to avoid underruns.
5807 */
dfcab17e 5808 if (cdclk == 400000)
30a970c6
JB
5809 val |= 4500 / 250; /* 4.5 usec */
5810 else
5811 val |= 3000 / 250; /* 3.0 usec */
5812 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
54433e91 5813
a580516d 5814 mutex_unlock(&dev_priv->sb_lock);
30a970c6 5815
b6283055 5816 intel_update_cdclk(dev);
30a970c6
JB
5817}
5818
383c5a6a
VS
5819static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
5820{
5821 struct drm_i915_private *dev_priv = dev->dev_private;
5822 u32 val, cmd;
5823
164dfd28
VK
5824 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5825 != dev_priv->cdclk_freq);
383c5a6a
VS
5826
5827 switch (cdclk) {
383c5a6a
VS
5828 case 333333:
5829 case 320000:
383c5a6a 5830 case 266667:
383c5a6a 5831 case 200000:
383c5a6a
VS
5832 break;
5833 default:
5f77eeb0 5834 MISSING_CASE(cdclk);
383c5a6a
VS
5835 return;
5836 }
5837
9d0d3fda
VS
5838 /*
5839 * Specs are full of misinformation, but testing on actual
5840 * hardware has shown that we just need to write the desired
5841 * CCK divider into the Punit register.
5842 */
5843 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
5844
383c5a6a
VS
5845 mutex_lock(&dev_priv->rps.hw_lock);
5846 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5847 val &= ~DSPFREQGUAR_MASK_CHV;
5848 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
5849 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5850 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5851 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
5852 50)) {
5853 DRM_ERROR("timed out waiting for CDclk change\n");
5854 }
5855 mutex_unlock(&dev_priv->rps.hw_lock);
5856
b6283055 5857 intel_update_cdclk(dev);
383c5a6a
VS
5858}
5859
30a970c6
JB
5860static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
5861 int max_pixclk)
5862{
6bcda4f0 5863 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
6cca3195 5864 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
29dc7ef3 5865
30a970c6
JB
5866 /*
5867 * Really only a few cases to deal with, as only 4 CDclks are supported:
5868 * 200MHz
5869 * 267MHz
29dc7ef3 5870 * 320/333MHz (depends on HPLL freq)
6cca3195
VS
5871 * 400MHz (VLV only)
5872 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
5873 * of the lower bin and adjust if needed.
e37c67a1
VS
5874 *
5875 * We seem to get an unstable or solid color picture at 200MHz.
5876 * Not sure what's wrong. For now use 200MHz only when all pipes
5877 * are off.
30a970c6 5878 */
6cca3195
VS
5879 if (!IS_CHERRYVIEW(dev_priv) &&
5880 max_pixclk > freq_320*limit/100)
dfcab17e 5881 return 400000;
6cca3195 5882 else if (max_pixclk > 266667*limit/100)
29dc7ef3 5883 return freq_320;
e37c67a1 5884 else if (max_pixclk > 0)
dfcab17e 5885 return 266667;
e37c67a1
VS
5886 else
5887 return 200000;
30a970c6
JB
5888}
5889
c44deb6c 5890static int broxton_calc_cdclk(int max_pixclk)
f8437dd1
VK
5891{
5892 /*
5893 * FIXME:
f8437dd1
VK
5894 * - set 19.2MHz bypass frequency if there are no active pipes
5895 */
760e1477 5896 if (max_pixclk > 576000)
f8437dd1 5897 return 624000;
760e1477 5898 else if (max_pixclk > 384000)
f8437dd1 5899 return 576000;
760e1477 5900 else if (max_pixclk > 288000)
f8437dd1 5901 return 384000;
760e1477 5902 else if (max_pixclk > 144000)
f8437dd1
VK
5903 return 288000;
5904 else
5905 return 144000;
5906}
5907
e8788cbc 5908/* Compute the max pixel clock for new configuration. */
a821fc46
ACO
5909static int intel_mode_max_pixclk(struct drm_device *dev,
5910 struct drm_atomic_state *state)
30a970c6 5911{
565602d7
ML
5912 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
5913 struct drm_i915_private *dev_priv = dev->dev_private;
5914 struct drm_crtc *crtc;
5915 struct drm_crtc_state *crtc_state;
5916 unsigned max_pixclk = 0, i;
5917 enum pipe pipe;
30a970c6 5918
565602d7
ML
5919 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
5920 sizeof(intel_state->min_pixclk));
304603f4 5921
565602d7
ML
5922 for_each_crtc_in_state(state, crtc, crtc_state, i) {
5923 int pixclk = 0;
5924
5925 if (crtc_state->enable)
5926 pixclk = crtc_state->adjusted_mode.crtc_clock;
304603f4 5927
565602d7 5928 intel_state->min_pixclk[i] = pixclk;
30a970c6
JB
5929 }
5930
565602d7
ML
5931 for_each_pipe(dev_priv, pipe)
5932 max_pixclk = max(intel_state->min_pixclk[pipe], max_pixclk);
5933
30a970c6
JB
5934 return max_pixclk;
5935}
5936
27c329ed 5937static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state)
30a970c6 5938{
27c329ed
ML
5939 struct drm_device *dev = state->dev;
5940 struct drm_i915_private *dev_priv = dev->dev_private;
5941 int max_pixclk = intel_mode_max_pixclk(dev, state);
1a617b77
ML
5942 struct intel_atomic_state *intel_state =
5943 to_intel_atomic_state(state);
30a970c6 5944
1a617b77 5945 intel_state->cdclk = intel_state->dev_cdclk =
27c329ed 5946 valleyview_calc_cdclk(dev_priv, max_pixclk);
0a9ab303 5947
1a617b77
ML
5948 if (!intel_state->active_crtcs)
5949 intel_state->dev_cdclk = valleyview_calc_cdclk(dev_priv, 0);
5950
27c329ed
ML
5951 return 0;
5952}
304603f4 5953
27c329ed
ML
5954static int broxton_modeset_calc_cdclk(struct drm_atomic_state *state)
5955{
4e5ca60f 5956 int max_pixclk = ilk_max_pixel_rate(state);
1a617b77
ML
5957 struct intel_atomic_state *intel_state =
5958 to_intel_atomic_state(state);
85a96e7a 5959
1a617b77 5960 intel_state->cdclk = intel_state->dev_cdclk =
c44deb6c 5961 broxton_calc_cdclk(max_pixclk);
85a96e7a 5962
1a617b77 5963 if (!intel_state->active_crtcs)
c44deb6c 5964 intel_state->dev_cdclk = broxton_calc_cdclk(0);
1a617b77 5965
27c329ed 5966 return 0;
30a970c6
JB
5967}
5968
1e69cd74
VS
5969static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
5970{
5971 unsigned int credits, default_credits;
5972
5973 if (IS_CHERRYVIEW(dev_priv))
5974 default_credits = PFI_CREDIT(12);
5975 else
5976 default_credits = PFI_CREDIT(8);
5977
bfa7df01 5978 if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) {
1e69cd74
VS
5979 /* CHV suggested value is 31 or 63 */
5980 if (IS_CHERRYVIEW(dev_priv))
fcc0008f 5981 credits = PFI_CREDIT_63;
1e69cd74
VS
5982 else
5983 credits = PFI_CREDIT(15);
5984 } else {
5985 credits = default_credits;
5986 }
5987
5988 /*
5989 * WA - write default credits before re-programming
5990 * FIXME: should we also set the resend bit here?
5991 */
5992 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
5993 default_credits);
5994
5995 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
5996 credits | PFI_CREDIT_RESEND);
5997
5998 /*
5999 * FIXME is this guaranteed to clear
6000 * immediately or should we poll for it?
6001 */
6002 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
6003}
6004
27c329ed 6005static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state)
30a970c6 6006{
a821fc46 6007 struct drm_device *dev = old_state->dev;
30a970c6 6008 struct drm_i915_private *dev_priv = dev->dev_private;
1a617b77
ML
6009 struct intel_atomic_state *old_intel_state =
6010 to_intel_atomic_state(old_state);
6011 unsigned req_cdclk = old_intel_state->dev_cdclk;
30a970c6 6012
27c329ed
ML
6013 /*
6014 * FIXME: We can end up here with all power domains off, yet
6015 * with a CDCLK frequency other than the minimum. To account
6016 * for this take the PIPE-A power domain, which covers the HW
6017 * blocks needed for the following programming. This can be
6018 * removed once it's guaranteed that we get here either with
6019 * the minimum CDCLK set, or the required power domains
6020 * enabled.
6021 */
6022 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
738c05c0 6023
27c329ed
ML
6024 if (IS_CHERRYVIEW(dev))
6025 cherryview_set_cdclk(dev, req_cdclk);
6026 else
6027 valleyview_set_cdclk(dev, req_cdclk);
738c05c0 6028
27c329ed 6029 vlv_program_pfi_credits(dev_priv);
1e69cd74 6030
27c329ed 6031 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
30a970c6
JB
6032}
6033
89b667f8
JB
6034static void valleyview_crtc_enable(struct drm_crtc *crtc)
6035{
6036 struct drm_device *dev = crtc->dev;
a72e4c9f 6037 struct drm_i915_private *dev_priv = to_i915(dev);
89b667f8
JB
6038 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6039 struct intel_encoder *encoder;
b95c5321
ML
6040 struct intel_crtc_state *pipe_config =
6041 to_intel_crtc_state(crtc->state);
89b667f8 6042 int pipe = intel_crtc->pipe;
89b667f8 6043
53d9f4e9 6044 if (WARN_ON(intel_crtc->active))
89b667f8
JB
6045 return;
6046
6e3c9717 6047 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 6048 intel_dp_set_m_n(intel_crtc, M1_N1);
5b18e57c
DV
6049
6050 intel_set_pipe_timings(intel_crtc);
bc58be60 6051 intel_set_pipe_src_size(intel_crtc);
5b18e57c 6052
c14b0485
VS
6053 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
6054 struct drm_i915_private *dev_priv = dev->dev_private;
6055
6056 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
6057 I915_WRITE(CHV_CANVAS(pipe), 0);
6058 }
6059
5b18e57c
DV
6060 i9xx_set_pipeconf(intel_crtc);
6061
89b667f8 6062 intel_crtc->active = true;
89b667f8 6063
a72e4c9f 6064 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 6065
89b667f8
JB
6066 for_each_encoder_on_crtc(dev, crtc, encoder)
6067 if (encoder->pre_pll_enable)
6068 encoder->pre_pll_enable(encoder);
6069
cd2d34d9
VS
6070 if (IS_CHERRYVIEW(dev)) {
6071 chv_prepare_pll(intel_crtc, intel_crtc->config);
6072 chv_enable_pll(intel_crtc, intel_crtc->config);
6073 } else {
6074 vlv_prepare_pll(intel_crtc, intel_crtc->config);
6075 vlv_enable_pll(intel_crtc, intel_crtc->config);
9d556c99 6076 }
89b667f8
JB
6077
6078 for_each_encoder_on_crtc(dev, crtc, encoder)
6079 if (encoder->pre_enable)
6080 encoder->pre_enable(encoder);
6081
2dd24552
JB
6082 i9xx_pfit_enable(intel_crtc);
6083
b95c5321 6084 intel_color_load_luts(&pipe_config->base);
63cbb074 6085
caed361d 6086 intel_update_watermarks(crtc);
e1fdc473 6087 intel_enable_pipe(intel_crtc);
be6a6f8e 6088
4b3a9526
VS
6089 assert_vblank_disabled(crtc);
6090 drm_crtc_vblank_on(crtc);
6091
f9b61ff6
DV
6092 for_each_encoder_on_crtc(dev, crtc, encoder)
6093 encoder->enable(encoder);
89b667f8
JB
6094}
6095
f13c2ef3
DV
6096static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
6097{
6098 struct drm_device *dev = crtc->base.dev;
6099 struct drm_i915_private *dev_priv = dev->dev_private;
6100
6e3c9717
ACO
6101 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
6102 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
f13c2ef3
DV
6103}
6104
0b8765c6 6105static void i9xx_crtc_enable(struct drm_crtc *crtc)
79e53945
JB
6106{
6107 struct drm_device *dev = crtc->dev;
a72e4c9f 6108 struct drm_i915_private *dev_priv = to_i915(dev);
79e53945 6109 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 6110 struct intel_encoder *encoder;
b95c5321
ML
6111 struct intel_crtc_state *pipe_config =
6112 to_intel_crtc_state(crtc->state);
cd2d34d9 6113 enum pipe pipe = intel_crtc->pipe;
79e53945 6114
53d9f4e9 6115 if (WARN_ON(intel_crtc->active))
f7abfe8b
CW
6116 return;
6117
f13c2ef3
DV
6118 i9xx_set_pll_dividers(intel_crtc);
6119
6e3c9717 6120 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 6121 intel_dp_set_m_n(intel_crtc, M1_N1);
5b18e57c
DV
6122
6123 intel_set_pipe_timings(intel_crtc);
bc58be60 6124 intel_set_pipe_src_size(intel_crtc);
5b18e57c 6125
5b18e57c
DV
6126 i9xx_set_pipeconf(intel_crtc);
6127
f7abfe8b 6128 intel_crtc->active = true;
6b383a7f 6129
4a3436e8 6130 if (!IS_GEN2(dev))
a72e4c9f 6131 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 6132
9d6d9f19
MK
6133 for_each_encoder_on_crtc(dev, crtc, encoder)
6134 if (encoder->pre_enable)
6135 encoder->pre_enable(encoder);
6136
f6736a1a
DV
6137 i9xx_enable_pll(intel_crtc);
6138
2dd24552
JB
6139 i9xx_pfit_enable(intel_crtc);
6140
b95c5321 6141 intel_color_load_luts(&pipe_config->base);
63cbb074 6142
f37fcc2a 6143 intel_update_watermarks(crtc);
e1fdc473 6144 intel_enable_pipe(intel_crtc);
be6a6f8e 6145
4b3a9526
VS
6146 assert_vblank_disabled(crtc);
6147 drm_crtc_vblank_on(crtc);
6148
f9b61ff6
DV
6149 for_each_encoder_on_crtc(dev, crtc, encoder)
6150 encoder->enable(encoder);
0b8765c6 6151}
79e53945 6152
87476d63
DV
6153static void i9xx_pfit_disable(struct intel_crtc *crtc)
6154{
6155 struct drm_device *dev = crtc->base.dev;
6156 struct drm_i915_private *dev_priv = dev->dev_private;
87476d63 6157
6e3c9717 6158 if (!crtc->config->gmch_pfit.control)
328d8e82 6159 return;
87476d63 6160
328d8e82 6161 assert_pipe_disabled(dev_priv, crtc->pipe);
87476d63 6162
328d8e82
DV
6163 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6164 I915_READ(PFIT_CONTROL));
6165 I915_WRITE(PFIT_CONTROL, 0);
87476d63
DV
6166}
6167
0b8765c6
JB
6168static void i9xx_crtc_disable(struct drm_crtc *crtc)
6169{
6170 struct drm_device *dev = crtc->dev;
6171 struct drm_i915_private *dev_priv = dev->dev_private;
6172 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 6173 struct intel_encoder *encoder;
0b8765c6 6174 int pipe = intel_crtc->pipe;
ef9c3aee 6175
6304cd91
VS
6176 /*
6177 * On gen2 planes are double buffered but the pipe isn't, so we must
6178 * wait for planes to fully turn off before disabling the pipe.
6179 */
90e83e53
ACO
6180 if (IS_GEN2(dev))
6181 intel_wait_for_vblank(dev, pipe);
6304cd91 6182
4b3a9526
VS
6183 for_each_encoder_on_crtc(dev, crtc, encoder)
6184 encoder->disable(encoder);
6185
f9b61ff6
DV
6186 drm_crtc_vblank_off(crtc);
6187 assert_vblank_disabled(crtc);
6188
575f7ab7 6189 intel_disable_pipe(intel_crtc);
24a1f16d 6190
87476d63 6191 i9xx_pfit_disable(intel_crtc);
24a1f16d 6192
89b667f8
JB
6193 for_each_encoder_on_crtc(dev, crtc, encoder)
6194 if (encoder->post_disable)
6195 encoder->post_disable(encoder);
6196
a65347ba 6197 if (!intel_crtc->config->has_dsi_encoder) {
076ed3b2
CML
6198 if (IS_CHERRYVIEW(dev))
6199 chv_disable_pll(dev_priv, pipe);
6200 else if (IS_VALLEYVIEW(dev))
6201 vlv_disable_pll(dev_priv, pipe);
6202 else
1c4e0274 6203 i9xx_disable_pll(intel_crtc);
076ed3b2 6204 }
0b8765c6 6205
d6db995f
VS
6206 for_each_encoder_on_crtc(dev, crtc, encoder)
6207 if (encoder->post_pll_disable)
6208 encoder->post_pll_disable(encoder);
6209
4a3436e8 6210 if (!IS_GEN2(dev))
a72e4c9f 6211 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
0b8765c6
JB
6212}
6213
b17d48e2
ML
6214static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
6215{
842e0307 6216 struct intel_encoder *encoder;
b17d48e2
ML
6217 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6218 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
6219 enum intel_display_power_domain domain;
6220 unsigned long domains;
6221
6222 if (!intel_crtc->active)
6223 return;
6224
a539205a 6225 if (to_intel_plane_state(crtc->primary->state)->visible) {
6885843a 6226 WARN_ON(list_empty(&intel_crtc->flip_work));
fc32b1fd 6227
2622a081 6228 intel_pre_disable_primary_noatomic(crtc);
54a41961
ML
6229
6230 intel_crtc_disable_planes(crtc, 1 << drm_plane_index(crtc->primary));
6231 to_intel_plane_state(crtc->primary->state)->visible = false;
a539205a
ML
6232 }
6233
b17d48e2 6234 dev_priv->display.crtc_disable(crtc);
842e0307
ML
6235
6236 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was enabled, now disabled\n",
6237 crtc->base.id);
6238
6239 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->state, NULL) < 0);
6240 crtc->state->active = false;
37d9078b 6241 intel_crtc->active = false;
842e0307
ML
6242 crtc->enabled = false;
6243 crtc->state->connector_mask = 0;
6244 crtc->state->encoder_mask = 0;
6245
6246 for_each_encoder_on_crtc(crtc->dev, crtc, encoder)
6247 encoder->base.crtc = NULL;
6248
58f9c0bc 6249 intel_fbc_disable(intel_crtc);
37d9078b 6250 intel_update_watermarks(crtc);
1f7457b1 6251 intel_disable_shared_dpll(intel_crtc);
b17d48e2
ML
6252
6253 domains = intel_crtc->enabled_power_domains;
6254 for_each_power_domain(domain, domains)
6255 intel_display_power_put(dev_priv, domain);
6256 intel_crtc->enabled_power_domains = 0;
565602d7
ML
6257
6258 dev_priv->active_crtcs &= ~(1 << intel_crtc->pipe);
6259 dev_priv->min_pixclk[intel_crtc->pipe] = 0;
b17d48e2
ML
6260}
6261
6b72d486
ML
6262/*
6263 * turn all crtc's off, but do not adjust state
6264 * This has to be paired with a call to intel_modeset_setup_hw_state.
6265 */
70e0bd74 6266int intel_display_suspend(struct drm_device *dev)
ee7b9f93 6267{
e2c8b870 6268 struct drm_i915_private *dev_priv = to_i915(dev);
70e0bd74 6269 struct drm_atomic_state *state;
e2c8b870 6270 int ret;
70e0bd74 6271
e2c8b870
ML
6272 state = drm_atomic_helper_suspend(dev);
6273 ret = PTR_ERR_OR_ZERO(state);
70e0bd74
ML
6274 if (ret)
6275 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
e2c8b870
ML
6276 else
6277 dev_priv->modeset_restore_state = state;
a6747b73
ML
6278
6279 /*
6280 * Make sure all unpin_work completes before returning.
6281 */
6282 flush_workqueue(dev_priv->wq);
6283
70e0bd74 6284 return ret;
ee7b9f93
JB
6285}
6286
ea5b213a 6287void intel_encoder_destroy(struct drm_encoder *encoder)
7e7d76c3 6288{
4ef69c7a 6289 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
ea5b213a 6290
ea5b213a
CW
6291 drm_encoder_cleanup(encoder);
6292 kfree(intel_encoder);
7e7d76c3
JB
6293}
6294
0a91ca29
DV
6295/* Cross check the actual hw state with our own modeset state tracking (and it's
6296 * internal consistency). */
03f476e1
ML
6297static void intel_connector_verify_state(struct intel_connector *connector,
6298 struct drm_connector_state *conn_state)
79e53945 6299{
03f476e1 6300 struct drm_crtc *crtc = conn_state->crtc;
35dd3c64
ML
6301
6302 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6303 connector->base.base.id,
6304 connector->base.name);
6305
0a91ca29 6306 if (connector->get_hw_state(connector)) {
e85376cb 6307 struct intel_encoder *encoder = connector->encoder;
0a91ca29 6308
35dd3c64
ML
6309 I915_STATE_WARN(!crtc,
6310 "connector enabled without attached crtc\n");
0a91ca29 6311
35dd3c64
ML
6312 if (!crtc)
6313 return;
6314
6315 I915_STATE_WARN(!crtc->state->active,
6316 "connector is active, but attached crtc isn't\n");
6317
e85376cb 6318 if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST)
35dd3c64
ML
6319 return;
6320
e85376cb 6321 I915_STATE_WARN(conn_state->best_encoder != &encoder->base,
35dd3c64
ML
6322 "atomic encoder doesn't match attached encoder\n");
6323
e85376cb 6324 I915_STATE_WARN(conn_state->crtc != encoder->base.crtc,
35dd3c64
ML
6325 "attached encoder crtc differs from connector crtc\n");
6326 } else {
4d688a2a
ML
6327 I915_STATE_WARN(crtc && crtc->state->active,
6328 "attached crtc is active, but connector isn't\n");
03f476e1 6329 I915_STATE_WARN(!crtc && conn_state->best_encoder,
35dd3c64 6330 "best encoder set without crtc!\n");
0a91ca29 6331 }
79e53945
JB
6332}
6333
08d9bc92
ACO
6334int intel_connector_init(struct intel_connector *connector)
6335{
5350a031 6336 drm_atomic_helper_connector_reset(&connector->base);
08d9bc92 6337
5350a031 6338 if (!connector->base.state)
08d9bc92
ACO
6339 return -ENOMEM;
6340
08d9bc92
ACO
6341 return 0;
6342}
6343
6344struct intel_connector *intel_connector_alloc(void)
6345{
6346 struct intel_connector *connector;
6347
6348 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6349 if (!connector)
6350 return NULL;
6351
6352 if (intel_connector_init(connector) < 0) {
6353 kfree(connector);
6354 return NULL;
6355 }
6356
6357 return connector;
6358}
6359
f0947c37
DV
6360/* Simple connector->get_hw_state implementation for encoders that support only
6361 * one connector and no cloning and hence the encoder state determines the state
6362 * of the connector. */
6363bool intel_connector_get_hw_state(struct intel_connector *connector)
ea5b213a 6364{
24929352 6365 enum pipe pipe = 0;
f0947c37 6366 struct intel_encoder *encoder = connector->encoder;
ea5b213a 6367
f0947c37 6368 return encoder->get_hw_state(encoder, &pipe);
ea5b213a
CW
6369}
6370
6d293983 6371static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
d272ddfa 6372{
6d293983
ACO
6373 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
6374 return crtc_state->fdi_lanes;
d272ddfa
VS
6375
6376 return 0;
6377}
6378
6d293983 6379static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
5cec258b 6380 struct intel_crtc_state *pipe_config)
1857e1da 6381{
6d293983
ACO
6382 struct drm_atomic_state *state = pipe_config->base.state;
6383 struct intel_crtc *other_crtc;
6384 struct intel_crtc_state *other_crtc_state;
6385
1857e1da
DV
6386 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
6387 pipe_name(pipe), pipe_config->fdi_lanes);
6388 if (pipe_config->fdi_lanes > 4) {
6389 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
6390 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6391 return -EINVAL;
1857e1da
DV
6392 }
6393
bafb6553 6394 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
1857e1da
DV
6395 if (pipe_config->fdi_lanes > 2) {
6396 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
6397 pipe_config->fdi_lanes);
6d293983 6398 return -EINVAL;
1857e1da 6399 } else {
6d293983 6400 return 0;
1857e1da
DV
6401 }
6402 }
6403
6404 if (INTEL_INFO(dev)->num_pipes == 2)
6d293983 6405 return 0;
1857e1da
DV
6406
6407 /* Ivybridge 3 pipe is really complicated */
6408 switch (pipe) {
6409 case PIPE_A:
6d293983 6410 return 0;
1857e1da 6411 case PIPE_B:
6d293983
ACO
6412 if (pipe_config->fdi_lanes <= 2)
6413 return 0;
6414
6415 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
6416 other_crtc_state =
6417 intel_atomic_get_crtc_state(state, other_crtc);
6418 if (IS_ERR(other_crtc_state))
6419 return PTR_ERR(other_crtc_state);
6420
6421 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
1857e1da
DV
6422 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
6423 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6424 return -EINVAL;
1857e1da 6425 }
6d293983 6426 return 0;
1857e1da 6427 case PIPE_C:
251cc67c
VS
6428 if (pipe_config->fdi_lanes > 2) {
6429 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
6430 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6431 return -EINVAL;
251cc67c 6432 }
6d293983
ACO
6433
6434 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
6435 other_crtc_state =
6436 intel_atomic_get_crtc_state(state, other_crtc);
6437 if (IS_ERR(other_crtc_state))
6438 return PTR_ERR(other_crtc_state);
6439
6440 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
1857e1da 6441 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
6d293983 6442 return -EINVAL;
1857e1da 6443 }
6d293983 6444 return 0;
1857e1da
DV
6445 default:
6446 BUG();
6447 }
6448}
6449
e29c22c0
DV
6450#define RETRY 1
6451static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5cec258b 6452 struct intel_crtc_state *pipe_config)
877d48d5 6453{
1857e1da 6454 struct drm_device *dev = intel_crtc->base.dev;
7c5f93b0 6455 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
6d293983
ACO
6456 int lane, link_bw, fdi_dotclock, ret;
6457 bool needs_recompute = false;
877d48d5 6458
e29c22c0 6459retry:
877d48d5
DV
6460 /* FDI is a binary signal running at ~2.7GHz, encoding
6461 * each output octet as 10 bits. The actual frequency
6462 * is stored as a divider into a 100MHz clock, and the
6463 * mode pixel clock is stored in units of 1KHz.
6464 * Hence the bw of each lane in terms of the mode signal
6465 * is:
6466 */
21a727b3 6467 link_bw = intel_fdi_link_freq(to_i915(dev), pipe_config);
877d48d5 6468
241bfc38 6469 fdi_dotclock = adjusted_mode->crtc_clock;
877d48d5 6470
2bd89a07 6471 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
877d48d5
DV
6472 pipe_config->pipe_bpp);
6473
6474 pipe_config->fdi_lanes = lane;
6475
2bd89a07 6476 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
877d48d5 6477 link_bw, &pipe_config->fdi_m_n);
1857e1da 6478
e3b247da 6479 ret = ironlake_check_fdi_lanes(dev, intel_crtc->pipe, pipe_config);
6d293983 6480 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
e29c22c0
DV
6481 pipe_config->pipe_bpp -= 2*3;
6482 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
6483 pipe_config->pipe_bpp);
6484 needs_recompute = true;
6485 pipe_config->bw_constrained = true;
6486
6487 goto retry;
6488 }
6489
6490 if (needs_recompute)
6491 return RETRY;
6492
6d293983 6493 return ret;
877d48d5
DV
6494}
6495
8cfb3407
VS
6496static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv,
6497 struct intel_crtc_state *pipe_config)
6498{
6499 if (pipe_config->pipe_bpp > 24)
6500 return false;
6501
6502 /* HSW can handle pixel rate up to cdclk? */
2d1fe073 6503 if (IS_HASWELL(dev_priv))
8cfb3407
VS
6504 return true;
6505
6506 /*
b432e5cf
VS
6507 * We compare against max which means we must take
6508 * the increased cdclk requirement into account when
6509 * calculating the new cdclk.
6510 *
6511 * Should measure whether using a lower cdclk w/o IPS
8cfb3407
VS
6512 */
6513 return ilk_pipe_pixel_rate(pipe_config) <=
6514 dev_priv->max_cdclk_freq * 95 / 100;
6515}
6516
42db64ef 6517static void hsw_compute_ips_config(struct intel_crtc *crtc,
5cec258b 6518 struct intel_crtc_state *pipe_config)
42db64ef 6519{
8cfb3407
VS
6520 struct drm_device *dev = crtc->base.dev;
6521 struct drm_i915_private *dev_priv = dev->dev_private;
6522
d330a953 6523 pipe_config->ips_enabled = i915.enable_ips &&
8cfb3407
VS
6524 hsw_crtc_supports_ips(crtc) &&
6525 pipe_config_supports_ips(dev_priv, pipe_config);
42db64ef
PZ
6526}
6527
39acb4aa
VS
6528static bool intel_crtc_supports_double_wide(const struct intel_crtc *crtc)
6529{
6530 const struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6531
6532 /* GDG double wide on either pipe, otherwise pipe A only */
6533 return INTEL_INFO(dev_priv)->gen < 4 &&
6534 (crtc->pipe == PIPE_A || IS_I915G(dev_priv));
6535}
6536
a43f6e0f 6537static int intel_crtc_compute_config(struct intel_crtc *crtc,
5cec258b 6538 struct intel_crtc_state *pipe_config)
79e53945 6539{
a43f6e0f 6540 struct drm_device *dev = crtc->base.dev;
8bd31e67 6541 struct drm_i915_private *dev_priv = dev->dev_private;
7c5f93b0 6542 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
89749350 6543
ad3a4479 6544 /* FIXME should check pixel clock limits on all platforms */
cf532bb2 6545 if (INTEL_INFO(dev)->gen < 4) {
39acb4aa 6546 int clock_limit = dev_priv->max_cdclk_freq * 9 / 10;
cf532bb2
VS
6547
6548 /*
39acb4aa 6549 * Enable double wide mode when the dot clock
cf532bb2 6550 * is > 90% of the (display) core speed.
cf532bb2 6551 */
39acb4aa
VS
6552 if (intel_crtc_supports_double_wide(crtc) &&
6553 adjusted_mode->crtc_clock > clock_limit) {
ad3a4479 6554 clock_limit *= 2;
cf532bb2 6555 pipe_config->double_wide = true;
ad3a4479
VS
6556 }
6557
39acb4aa
VS
6558 if (adjusted_mode->crtc_clock > clock_limit) {
6559 DRM_DEBUG_KMS("requested pixel clock (%d kHz) too high (max: %d kHz, double wide: %s)\n",
6560 adjusted_mode->crtc_clock, clock_limit,
6561 yesno(pipe_config->double_wide));
e29c22c0 6562 return -EINVAL;
39acb4aa 6563 }
2c07245f 6564 }
89749350 6565
1d1d0e27
VS
6566 /*
6567 * Pipe horizontal size must be even in:
6568 * - DVO ganged mode
6569 * - LVDS dual channel mode
6570 * - Double wide pipe
6571 */
a93e255f 6572 if ((intel_pipe_will_have_type(pipe_config, INTEL_OUTPUT_LVDS) &&
1d1d0e27
VS
6573 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
6574 pipe_config->pipe_src_w &= ~1;
6575
8693a824
DL
6576 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
6577 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
44f46b42
CW
6578 */
6579 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
aad941d5 6580 adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay)
e29c22c0 6581 return -EINVAL;
44f46b42 6582
f5adf94e 6583 if (HAS_IPS(dev))
a43f6e0f
DV
6584 hsw_compute_ips_config(crtc, pipe_config);
6585
877d48d5 6586 if (pipe_config->has_pch_encoder)
a43f6e0f 6587 return ironlake_fdi_compute_config(crtc, pipe_config);
877d48d5 6588
cf5a15be 6589 return 0;
79e53945
JB
6590}
6591
1652d19e
VS
6592static int skylake_get_display_clock_speed(struct drm_device *dev)
6593{
6594 struct drm_i915_private *dev_priv = to_i915(dev);
ea61791e 6595 uint32_t cdctl;
1652d19e 6596
ea61791e 6597 skl_dpll0_update(dev_priv);
1652d19e 6598
ea61791e
VS
6599 if (dev_priv->skl_vco_freq == 0)
6600 return 24000; /* 24MHz is the cd freq with NSSC ref */
1652d19e 6601
ea61791e 6602 cdctl = I915_READ(CDCLK_CTL);
1652d19e 6603
ea61791e 6604 if (dev_priv->skl_vco_freq == 8640) {
1652d19e
VS
6605 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6606 case CDCLK_FREQ_450_432:
6607 return 432000;
6608 case CDCLK_FREQ_337_308:
6609 return 308570;
ea61791e
VS
6610 case CDCLK_FREQ_540:
6611 return 540000;
1652d19e
VS
6612 case CDCLK_FREQ_675_617:
6613 return 617140;
6614 default:
ea61791e 6615 MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK);
1652d19e
VS
6616 }
6617 } else {
1652d19e
VS
6618 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6619 case CDCLK_FREQ_450_432:
6620 return 450000;
6621 case CDCLK_FREQ_337_308:
6622 return 337500;
ea61791e
VS
6623 case CDCLK_FREQ_540:
6624 return 540000;
1652d19e
VS
6625 case CDCLK_FREQ_675_617:
6626 return 675000;
6627 default:
ea61791e 6628 MISSING_CASE(cdctl & CDCLK_FREQ_SEL_MASK);
1652d19e
VS
6629 }
6630 }
6631
6632 /* error case, do as if DPLL0 isn't enabled */
6633 return 24000;
6634}
6635
acd3f3d3
BP
6636static int broxton_get_display_clock_speed(struct drm_device *dev)
6637{
6638 struct drm_i915_private *dev_priv = to_i915(dev);
6639 uint32_t cdctl = I915_READ(CDCLK_CTL);
6640 uint32_t pll_ratio = I915_READ(BXT_DE_PLL_CTL) & BXT_DE_PLL_RATIO_MASK;
6641 uint32_t pll_enab = I915_READ(BXT_DE_PLL_ENABLE);
6642 int cdclk;
6643
6644 if (!(pll_enab & BXT_DE_PLL_PLL_ENABLE))
6645 return 19200;
6646
6647 cdclk = 19200 * pll_ratio / 2;
6648
6649 switch (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) {
6650 case BXT_CDCLK_CD2X_DIV_SEL_1:
6651 return cdclk; /* 576MHz or 624MHz */
6652 case BXT_CDCLK_CD2X_DIV_SEL_1_5:
6653 return cdclk * 2 / 3; /* 384MHz */
6654 case BXT_CDCLK_CD2X_DIV_SEL_2:
6655 return cdclk / 2; /* 288MHz */
6656 case BXT_CDCLK_CD2X_DIV_SEL_4:
6657 return cdclk / 4; /* 144MHz */
6658 }
6659
6660 /* error case, do as if DE PLL isn't enabled */
6661 return 19200;
6662}
6663
1652d19e
VS
6664static int broadwell_get_display_clock_speed(struct drm_device *dev)
6665{
6666 struct drm_i915_private *dev_priv = dev->dev_private;
6667 uint32_t lcpll = I915_READ(LCPLL_CTL);
6668 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6669
6670 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6671 return 800000;
6672 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6673 return 450000;
6674 else if (freq == LCPLL_CLK_FREQ_450)
6675 return 450000;
6676 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
6677 return 540000;
6678 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
6679 return 337500;
6680 else
6681 return 675000;
6682}
6683
6684static int haswell_get_display_clock_speed(struct drm_device *dev)
6685{
6686 struct drm_i915_private *dev_priv = dev->dev_private;
6687 uint32_t lcpll = I915_READ(LCPLL_CTL);
6688 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6689
6690 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6691 return 800000;
6692 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6693 return 450000;
6694 else if (freq == LCPLL_CLK_FREQ_450)
6695 return 450000;
6696 else if (IS_HSW_ULT(dev))
6697 return 337500;
6698 else
6699 return 540000;
79e53945
JB
6700}
6701
25eb05fc
JB
6702static int valleyview_get_display_clock_speed(struct drm_device *dev)
6703{
bfa7df01
VS
6704 return vlv_get_cck_clock_hpll(to_i915(dev), "cdclk",
6705 CCK_DISPLAY_CLOCK_CONTROL);
25eb05fc
JB
6706}
6707
b37a6434
VS
6708static int ilk_get_display_clock_speed(struct drm_device *dev)
6709{
6710 return 450000;
6711}
6712
e70236a8
JB
6713static int i945_get_display_clock_speed(struct drm_device *dev)
6714{
6715 return 400000;
6716}
79e53945 6717
e70236a8 6718static int i915_get_display_clock_speed(struct drm_device *dev)
79e53945 6719{
e907f170 6720 return 333333;
e70236a8 6721}
79e53945 6722
e70236a8
JB
6723static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
6724{
6725 return 200000;
6726}
79e53945 6727
257a7ffc
DV
6728static int pnv_get_display_clock_speed(struct drm_device *dev)
6729{
6730 u16 gcfgc = 0;
6731
6732 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6733
6734 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6735 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
e907f170 6736 return 266667;
257a7ffc 6737 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
e907f170 6738 return 333333;
257a7ffc 6739 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
e907f170 6740 return 444444;
257a7ffc
DV
6741 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
6742 return 200000;
6743 default:
6744 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
6745 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
e907f170 6746 return 133333;
257a7ffc 6747 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
e907f170 6748 return 166667;
257a7ffc
DV
6749 }
6750}
6751
e70236a8
JB
6752static int i915gm_get_display_clock_speed(struct drm_device *dev)
6753{
6754 u16 gcfgc = 0;
79e53945 6755
e70236a8
JB
6756 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6757
6758 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
e907f170 6759 return 133333;
e70236a8
JB
6760 else {
6761 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6762 case GC_DISPLAY_CLOCK_333_MHZ:
e907f170 6763 return 333333;
e70236a8
JB
6764 default:
6765 case GC_DISPLAY_CLOCK_190_200_MHZ:
6766 return 190000;
79e53945 6767 }
e70236a8
JB
6768 }
6769}
6770
6771static int i865_get_display_clock_speed(struct drm_device *dev)
6772{
e907f170 6773 return 266667;
e70236a8
JB
6774}
6775
1b1d2716 6776static int i85x_get_display_clock_speed(struct drm_device *dev)
e70236a8
JB
6777{
6778 u16 hpllcc = 0;
1b1d2716 6779
65cd2b3f
VS
6780 /*
6781 * 852GM/852GMV only supports 133 MHz and the HPLLCC
6782 * encoding is different :(
6783 * FIXME is this the right way to detect 852GM/852GMV?
6784 */
6785 if (dev->pdev->revision == 0x1)
6786 return 133333;
6787
1b1d2716
VS
6788 pci_bus_read_config_word(dev->pdev->bus,
6789 PCI_DEVFN(0, 3), HPLLCC, &hpllcc);
6790
e70236a8
JB
6791 /* Assume that the hardware is in the high speed state. This
6792 * should be the default.
6793 */
6794 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
6795 case GC_CLOCK_133_200:
1b1d2716 6796 case GC_CLOCK_133_200_2:
e70236a8
JB
6797 case GC_CLOCK_100_200:
6798 return 200000;
6799 case GC_CLOCK_166_250:
6800 return 250000;
6801 case GC_CLOCK_100_133:
e907f170 6802 return 133333;
1b1d2716
VS
6803 case GC_CLOCK_133_266:
6804 case GC_CLOCK_133_266_2:
6805 case GC_CLOCK_166_266:
6806 return 266667;
e70236a8 6807 }
79e53945 6808
e70236a8
JB
6809 /* Shouldn't happen */
6810 return 0;
6811}
79e53945 6812
e70236a8
JB
6813static int i830_get_display_clock_speed(struct drm_device *dev)
6814{
e907f170 6815 return 133333;
79e53945
JB
6816}
6817
34edce2f
VS
6818static unsigned int intel_hpll_vco(struct drm_device *dev)
6819{
6820 struct drm_i915_private *dev_priv = dev->dev_private;
6821 static const unsigned int blb_vco[8] = {
6822 [0] = 3200000,
6823 [1] = 4000000,
6824 [2] = 5333333,
6825 [3] = 4800000,
6826 [4] = 6400000,
6827 };
6828 static const unsigned int pnv_vco[8] = {
6829 [0] = 3200000,
6830 [1] = 4000000,
6831 [2] = 5333333,
6832 [3] = 4800000,
6833 [4] = 2666667,
6834 };
6835 static const unsigned int cl_vco[8] = {
6836 [0] = 3200000,
6837 [1] = 4000000,
6838 [2] = 5333333,
6839 [3] = 6400000,
6840 [4] = 3333333,
6841 [5] = 3566667,
6842 [6] = 4266667,
6843 };
6844 static const unsigned int elk_vco[8] = {
6845 [0] = 3200000,
6846 [1] = 4000000,
6847 [2] = 5333333,
6848 [3] = 4800000,
6849 };
6850 static const unsigned int ctg_vco[8] = {
6851 [0] = 3200000,
6852 [1] = 4000000,
6853 [2] = 5333333,
6854 [3] = 6400000,
6855 [4] = 2666667,
6856 [5] = 4266667,
6857 };
6858 const unsigned int *vco_table;
6859 unsigned int vco;
6860 uint8_t tmp = 0;
6861
6862 /* FIXME other chipsets? */
6863 if (IS_GM45(dev))
6864 vco_table = ctg_vco;
6865 else if (IS_G4X(dev))
6866 vco_table = elk_vco;
6867 else if (IS_CRESTLINE(dev))
6868 vco_table = cl_vco;
6869 else if (IS_PINEVIEW(dev))
6870 vco_table = pnv_vco;
6871 else if (IS_G33(dev))
6872 vco_table = blb_vco;
6873 else
6874 return 0;
6875
6876 tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO);
6877
6878 vco = vco_table[tmp & 0x7];
6879 if (vco == 0)
6880 DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp);
6881 else
6882 DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco);
6883
6884 return vco;
6885}
6886
6887static int gm45_get_display_clock_speed(struct drm_device *dev)
6888{
6889 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
6890 uint16_t tmp = 0;
6891
6892 pci_read_config_word(dev->pdev, GCFGC, &tmp);
6893
6894 cdclk_sel = (tmp >> 12) & 0x1;
6895
6896 switch (vco) {
6897 case 2666667:
6898 case 4000000:
6899 case 5333333:
6900 return cdclk_sel ? 333333 : 222222;
6901 case 3200000:
6902 return cdclk_sel ? 320000 : 228571;
6903 default:
6904 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp);
6905 return 222222;
6906 }
6907}
6908
6909static int i965gm_get_display_clock_speed(struct drm_device *dev)
6910{
6911 static const uint8_t div_3200[] = { 16, 10, 8 };
6912 static const uint8_t div_4000[] = { 20, 12, 10 };
6913 static const uint8_t div_5333[] = { 24, 16, 14 };
6914 const uint8_t *div_table;
6915 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
6916 uint16_t tmp = 0;
6917
6918 pci_read_config_word(dev->pdev, GCFGC, &tmp);
6919
6920 cdclk_sel = ((tmp >> 8) & 0x1f) - 1;
6921
6922 if (cdclk_sel >= ARRAY_SIZE(div_3200))
6923 goto fail;
6924
6925 switch (vco) {
6926 case 3200000:
6927 div_table = div_3200;
6928 break;
6929 case 4000000:
6930 div_table = div_4000;
6931 break;
6932 case 5333333:
6933 div_table = div_5333;
6934 break;
6935 default:
6936 goto fail;
6937 }
6938
6939 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
6940
caf4e252 6941fail:
34edce2f
VS
6942 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp);
6943 return 200000;
6944}
6945
6946static int g33_get_display_clock_speed(struct drm_device *dev)
6947{
6948 static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 };
6949 static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 };
6950 static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 };
6951 static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 };
6952 const uint8_t *div_table;
6953 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
6954 uint16_t tmp = 0;
6955
6956 pci_read_config_word(dev->pdev, GCFGC, &tmp);
6957
6958 cdclk_sel = (tmp >> 4) & 0x7;
6959
6960 if (cdclk_sel >= ARRAY_SIZE(div_3200))
6961 goto fail;
6962
6963 switch (vco) {
6964 case 3200000:
6965 div_table = div_3200;
6966 break;
6967 case 4000000:
6968 div_table = div_4000;
6969 break;
6970 case 4800000:
6971 div_table = div_4800;
6972 break;
6973 case 5333333:
6974 div_table = div_5333;
6975 break;
6976 default:
6977 goto fail;
6978 }
6979
6980 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
6981
caf4e252 6982fail:
34edce2f
VS
6983 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp);
6984 return 190476;
6985}
6986
2c07245f 6987static void
a65851af 6988intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
2c07245f 6989{
a65851af
VS
6990 while (*num > DATA_LINK_M_N_MASK ||
6991 *den > DATA_LINK_M_N_MASK) {
2c07245f
ZW
6992 *num >>= 1;
6993 *den >>= 1;
6994 }
6995}
6996
a65851af
VS
6997static void compute_m_n(unsigned int m, unsigned int n,
6998 uint32_t *ret_m, uint32_t *ret_n)
6999{
7000 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
7001 *ret_m = div_u64((uint64_t) m * *ret_n, n);
7002 intel_reduce_m_n_ratio(ret_m, ret_n);
7003}
7004
e69d0bc1
DV
7005void
7006intel_link_compute_m_n(int bits_per_pixel, int nlanes,
7007 int pixel_clock, int link_clock,
7008 struct intel_link_m_n *m_n)
2c07245f 7009{
e69d0bc1 7010 m_n->tu = 64;
a65851af
VS
7011
7012 compute_m_n(bits_per_pixel * pixel_clock,
7013 link_clock * nlanes * 8,
7014 &m_n->gmch_m, &m_n->gmch_n);
7015
7016 compute_m_n(pixel_clock, link_clock,
7017 &m_n->link_m, &m_n->link_n);
2c07245f
ZW
7018}
7019
a7615030
CW
7020static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
7021{
d330a953
JN
7022 if (i915.panel_use_ssc >= 0)
7023 return i915.panel_use_ssc != 0;
41aa3448 7024 return dev_priv->vbt.lvds_use_ssc
435793df 7025 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
a7615030
CW
7026}
7027
7429e9d4 7028static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
c65d77d8 7029{
7df00d7a 7030 return (1 << dpll->n) << 16 | dpll->m2;
7429e9d4 7031}
f47709a9 7032
7429e9d4
DV
7033static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
7034{
7035 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
c65d77d8
JB
7036}
7037
f47709a9 7038static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
190f68c5 7039 struct intel_crtc_state *crtc_state,
9e2c8475 7040 struct dpll *reduced_clock)
a7516a05 7041{
f47709a9 7042 struct drm_device *dev = crtc->base.dev;
a7516a05
JB
7043 u32 fp, fp2 = 0;
7044
7045 if (IS_PINEVIEW(dev)) {
190f68c5 7046 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
a7516a05 7047 if (reduced_clock)
7429e9d4 7048 fp2 = pnv_dpll_compute_fp(reduced_clock);
a7516a05 7049 } else {
190f68c5 7050 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
a7516a05 7051 if (reduced_clock)
7429e9d4 7052 fp2 = i9xx_dpll_compute_fp(reduced_clock);
a7516a05
JB
7053 }
7054
190f68c5 7055 crtc_state->dpll_hw_state.fp0 = fp;
a7516a05 7056
f47709a9 7057 crtc->lowfreq_avail = false;
a93e255f 7058 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ab585dea 7059 reduced_clock) {
190f68c5 7060 crtc_state->dpll_hw_state.fp1 = fp2;
f47709a9 7061 crtc->lowfreq_avail = true;
a7516a05 7062 } else {
190f68c5 7063 crtc_state->dpll_hw_state.fp1 = fp;
a7516a05
JB
7064 }
7065}
7066
5e69f97f
CML
7067static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
7068 pipe)
89b667f8
JB
7069{
7070 u32 reg_val;
7071
7072 /*
7073 * PLLB opamp always calibrates to max value of 0x3f, force enable it
7074 * and set it to a reasonable value instead.
7075 */
ab3c759a 7076 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8
JB
7077 reg_val &= 0xffffff00;
7078 reg_val |= 0x00000030;
ab3c759a 7079 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 7080
ab3c759a 7081 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
7082 reg_val &= 0x8cffffff;
7083 reg_val = 0x8c000000;
ab3c759a 7084 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8 7085
ab3c759a 7086 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8 7087 reg_val &= 0xffffff00;
ab3c759a 7088 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 7089
ab3c759a 7090 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
7091 reg_val &= 0x00ffffff;
7092 reg_val |= 0xb0000000;
ab3c759a 7093 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8
JB
7094}
7095
b551842d
DV
7096static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
7097 struct intel_link_m_n *m_n)
7098{
7099 struct drm_device *dev = crtc->base.dev;
7100 struct drm_i915_private *dev_priv = dev->dev_private;
7101 int pipe = crtc->pipe;
7102
e3b95f1e
DV
7103 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7104 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
7105 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
7106 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
b551842d
DV
7107}
7108
7109static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
f769cd24
VK
7110 struct intel_link_m_n *m_n,
7111 struct intel_link_m_n *m2_n2)
b551842d
DV
7112{
7113 struct drm_device *dev = crtc->base.dev;
7114 struct drm_i915_private *dev_priv = dev->dev_private;
7115 int pipe = crtc->pipe;
6e3c9717 7116 enum transcoder transcoder = crtc->config->cpu_transcoder;
b551842d
DV
7117
7118 if (INTEL_INFO(dev)->gen >= 5) {
7119 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
7120 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
7121 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
7122 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
f769cd24
VK
7123 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
7124 * for gen < 8) and if DRRS is supported (to make sure the
7125 * registers are not unnecessarily accessed).
7126 */
44395bfe 7127 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
6e3c9717 7128 crtc->config->has_drrs) {
f769cd24
VK
7129 I915_WRITE(PIPE_DATA_M2(transcoder),
7130 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
7131 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
7132 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
7133 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
7134 }
b551842d 7135 } else {
e3b95f1e
DV
7136 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7137 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
7138 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
7139 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
b551842d
DV
7140 }
7141}
7142
fe3cd48d 7143void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
03afc4a2 7144{
fe3cd48d
R
7145 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
7146
7147 if (m_n == M1_N1) {
7148 dp_m_n = &crtc->config->dp_m_n;
7149 dp_m2_n2 = &crtc->config->dp_m2_n2;
7150 } else if (m_n == M2_N2) {
7151
7152 /*
7153 * M2_N2 registers are not supported. Hence m2_n2 divider value
7154 * needs to be programmed into M1_N1.
7155 */
7156 dp_m_n = &crtc->config->dp_m2_n2;
7157 } else {
7158 DRM_ERROR("Unsupported divider value\n");
7159 return;
7160 }
7161
6e3c9717
ACO
7162 if (crtc->config->has_pch_encoder)
7163 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
03afc4a2 7164 else
fe3cd48d 7165 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
03afc4a2
DV
7166}
7167
251ac862
DV
7168static void vlv_compute_dpll(struct intel_crtc *crtc,
7169 struct intel_crtc_state *pipe_config)
bdd4b6a6 7170{
03ed5cbf 7171 pipe_config->dpll_hw_state.dpll = DPLL_INTEGRATED_REF_CLK_VLV |
cd2d34d9 7172 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
03ed5cbf
VS
7173 if (crtc->pipe != PIPE_A)
7174 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
bdd4b6a6 7175
cd2d34d9 7176 /* DPLL not used with DSI, but still need the rest set up */
187a1c07 7177 if (!pipe_config->has_dsi_encoder)
cd2d34d9
VS
7178 pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE |
7179 DPLL_EXT_BUFFER_ENABLE_VLV;
7180
03ed5cbf
VS
7181 pipe_config->dpll_hw_state.dpll_md =
7182 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
7183}
bdd4b6a6 7184
03ed5cbf
VS
7185static void chv_compute_dpll(struct intel_crtc *crtc,
7186 struct intel_crtc_state *pipe_config)
7187{
7188 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV |
cd2d34d9 7189 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
03ed5cbf
VS
7190 if (crtc->pipe != PIPE_A)
7191 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7192
cd2d34d9 7193 /* DPLL not used with DSI, but still need the rest set up */
187a1c07 7194 if (!pipe_config->has_dsi_encoder)
cd2d34d9
VS
7195 pipe_config->dpll_hw_state.dpll |= DPLL_VCO_ENABLE;
7196
03ed5cbf
VS
7197 pipe_config->dpll_hw_state.dpll_md =
7198 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
bdd4b6a6
DV
7199}
7200
d288f65f 7201static void vlv_prepare_pll(struct intel_crtc *crtc,
5cec258b 7202 const struct intel_crtc_state *pipe_config)
a0c4da24 7203{
f47709a9 7204 struct drm_device *dev = crtc->base.dev;
a0c4da24 7205 struct drm_i915_private *dev_priv = dev->dev_private;
cd2d34d9 7206 enum pipe pipe = crtc->pipe;
bdd4b6a6 7207 u32 mdiv;
a0c4da24 7208 u32 bestn, bestm1, bestm2, bestp1, bestp2;
bdd4b6a6 7209 u32 coreclk, reg_val;
a0c4da24 7210
cd2d34d9
VS
7211 /* Enable Refclk */
7212 I915_WRITE(DPLL(pipe),
7213 pipe_config->dpll_hw_state.dpll &
7214 ~(DPLL_VCO_ENABLE | DPLL_EXT_BUFFER_ENABLE_VLV));
7215
7216 /* No need to actually set up the DPLL with DSI */
7217 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
7218 return;
7219
a580516d 7220 mutex_lock(&dev_priv->sb_lock);
09153000 7221
d288f65f
VS
7222 bestn = pipe_config->dpll.n;
7223 bestm1 = pipe_config->dpll.m1;
7224 bestm2 = pipe_config->dpll.m2;
7225 bestp1 = pipe_config->dpll.p1;
7226 bestp2 = pipe_config->dpll.p2;
a0c4da24 7227
89b667f8
JB
7228 /* See eDP HDMI DPIO driver vbios notes doc */
7229
7230 /* PLL B needs special handling */
bdd4b6a6 7231 if (pipe == PIPE_B)
5e69f97f 7232 vlv_pllb_recal_opamp(dev_priv, pipe);
89b667f8
JB
7233
7234 /* Set up Tx target for periodic Rcomp update */
ab3c759a 7235 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
89b667f8
JB
7236
7237 /* Disable target IRef on PLL */
ab3c759a 7238 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
89b667f8 7239 reg_val &= 0x00ffffff;
ab3c759a 7240 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
89b667f8
JB
7241
7242 /* Disable fast lock */
ab3c759a 7243 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
89b667f8
JB
7244
7245 /* Set idtafcrecal before PLL is enabled */
a0c4da24
JB
7246 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
7247 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
7248 mdiv |= ((bestn << DPIO_N_SHIFT));
a0c4da24 7249 mdiv |= (1 << DPIO_K_SHIFT);
7df5080b
JB
7250
7251 /*
7252 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
7253 * but we don't support that).
7254 * Note: don't use the DAC post divider as it seems unstable.
7255 */
7256 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
ab3c759a 7257 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 7258
a0c4da24 7259 mdiv |= DPIO_ENABLE_CALIBRATION;
ab3c759a 7260 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 7261
89b667f8 7262 /* Set HBR and RBR LPF coefficients */
d288f65f 7263 if (pipe_config->port_clock == 162000 ||
409ee761
ACO
7264 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
7265 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
ab3c759a 7266 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
885b0120 7267 0x009f0003);
89b667f8 7268 else
ab3c759a 7269 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
89b667f8
JB
7270 0x00d0000f);
7271
681a8504 7272 if (pipe_config->has_dp_encoder) {
89b667f8 7273 /* Use SSC source */
bdd4b6a6 7274 if (pipe == PIPE_A)
ab3c759a 7275 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7276 0x0df40000);
7277 else
ab3c759a 7278 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7279 0x0df70000);
7280 } else { /* HDMI or VGA */
7281 /* Use bend source */
bdd4b6a6 7282 if (pipe == PIPE_A)
ab3c759a 7283 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7284 0x0df70000);
7285 else
ab3c759a 7286 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7287 0x0df40000);
7288 }
a0c4da24 7289
ab3c759a 7290 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
89b667f8 7291 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
409ee761
ACO
7292 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
7293 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
89b667f8 7294 coreclk |= 0x01000000;
ab3c759a 7295 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
a0c4da24 7296
ab3c759a 7297 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
a580516d 7298 mutex_unlock(&dev_priv->sb_lock);
a0c4da24
JB
7299}
7300
d288f65f 7301static void chv_prepare_pll(struct intel_crtc *crtc,
5cec258b 7302 const struct intel_crtc_state *pipe_config)
9d556c99
CML
7303{
7304 struct drm_device *dev = crtc->base.dev;
7305 struct drm_i915_private *dev_priv = dev->dev_private;
cd2d34d9 7306 enum pipe pipe = crtc->pipe;
9d556c99 7307 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9cbe40c1 7308 u32 loopfilter, tribuf_calcntr;
9d556c99 7309 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
a945ce7e 7310 u32 dpio_val;
9cbe40c1 7311 int vco;
9d556c99 7312
cd2d34d9
VS
7313 /* Enable Refclk and SSC */
7314 I915_WRITE(DPLL(pipe),
7315 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
7316
7317 /* No need to actually set up the DPLL with DSI */
7318 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
7319 return;
7320
d288f65f
VS
7321 bestn = pipe_config->dpll.n;
7322 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7323 bestm1 = pipe_config->dpll.m1;
7324 bestm2 = pipe_config->dpll.m2 >> 22;
7325 bestp1 = pipe_config->dpll.p1;
7326 bestp2 = pipe_config->dpll.p2;
9cbe40c1 7327 vco = pipe_config->dpll.vco;
a945ce7e 7328 dpio_val = 0;
9cbe40c1 7329 loopfilter = 0;
9d556c99 7330
a580516d 7331 mutex_lock(&dev_priv->sb_lock);
9d556c99 7332
9d556c99
CML
7333 /* p1 and p2 divider */
7334 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
7335 5 << DPIO_CHV_S1_DIV_SHIFT |
7336 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
7337 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
7338 1 << DPIO_CHV_K_DIV_SHIFT);
7339
7340 /* Feedback post-divider - m2 */
7341 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
7342
7343 /* Feedback refclk divider - n and m1 */
7344 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
7345 DPIO_CHV_M1_DIV_BY_2 |
7346 1 << DPIO_CHV_N_DIV_SHIFT);
7347
7348 /* M2 fraction division */
25a25dfc 7349 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
9d556c99
CML
7350
7351 /* M2 fraction division enable */
a945ce7e
VP
7352 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
7353 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
7354 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
7355 if (bestm2_frac)
7356 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
7357 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
9d556c99 7358
de3a0fde
VP
7359 /* Program digital lock detect threshold */
7360 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
7361 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
7362 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
7363 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
7364 if (!bestm2_frac)
7365 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
7366 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
7367
9d556c99 7368 /* Loop filter */
9cbe40c1
VP
7369 if (vco == 5400000) {
7370 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
7371 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
7372 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
7373 tribuf_calcntr = 0x9;
7374 } else if (vco <= 6200000) {
7375 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
7376 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
7377 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7378 tribuf_calcntr = 0x9;
7379 } else if (vco <= 6480000) {
7380 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7381 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7382 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7383 tribuf_calcntr = 0x8;
7384 } else {
7385 /* Not supported. Apply the same limits as in the max case */
7386 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7387 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7388 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7389 tribuf_calcntr = 0;
7390 }
9d556c99
CML
7391 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
7392
968040b2 7393 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
9cbe40c1
VP
7394 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
7395 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
7396 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
7397
9d556c99
CML
7398 /* AFC Recal */
7399 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
7400 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
7401 DPIO_AFC_RECAL);
7402
a580516d 7403 mutex_unlock(&dev_priv->sb_lock);
9d556c99
CML
7404}
7405
d288f65f
VS
7406/**
7407 * vlv_force_pll_on - forcibly enable just the PLL
7408 * @dev_priv: i915 private structure
7409 * @pipe: pipe PLL to enable
7410 * @dpll: PLL configuration
7411 *
7412 * Enable the PLL for @pipe using the supplied @dpll config. To be used
7413 * in cases where we need the PLL enabled even when @pipe is not going to
7414 * be enabled.
7415 */
3f36b937
TU
7416int vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
7417 const struct dpll *dpll)
d288f65f
VS
7418{
7419 struct intel_crtc *crtc =
7420 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
3f36b937
TU
7421 struct intel_crtc_state *pipe_config;
7422
7423 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
7424 if (!pipe_config)
7425 return -ENOMEM;
7426
7427 pipe_config->base.crtc = &crtc->base;
7428 pipe_config->pixel_multiplier = 1;
7429 pipe_config->dpll = *dpll;
d288f65f
VS
7430
7431 if (IS_CHERRYVIEW(dev)) {
3f36b937
TU
7432 chv_compute_dpll(crtc, pipe_config);
7433 chv_prepare_pll(crtc, pipe_config);
7434 chv_enable_pll(crtc, pipe_config);
d288f65f 7435 } else {
3f36b937
TU
7436 vlv_compute_dpll(crtc, pipe_config);
7437 vlv_prepare_pll(crtc, pipe_config);
7438 vlv_enable_pll(crtc, pipe_config);
d288f65f 7439 }
3f36b937
TU
7440
7441 kfree(pipe_config);
7442
7443 return 0;
d288f65f
VS
7444}
7445
7446/**
7447 * vlv_force_pll_off - forcibly disable just the PLL
7448 * @dev_priv: i915 private structure
7449 * @pipe: pipe PLL to disable
7450 *
7451 * Disable the PLL for @pipe. To be used in cases where we need
7452 * the PLL enabled even when @pipe is not going to be enabled.
7453 */
7454void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
7455{
7456 if (IS_CHERRYVIEW(dev))
7457 chv_disable_pll(to_i915(dev), pipe);
7458 else
7459 vlv_disable_pll(to_i915(dev), pipe);
7460}
7461
251ac862
DV
7462static void i9xx_compute_dpll(struct intel_crtc *crtc,
7463 struct intel_crtc_state *crtc_state,
9e2c8475 7464 struct dpll *reduced_clock)
eb1cbe48 7465{
f47709a9 7466 struct drm_device *dev = crtc->base.dev;
eb1cbe48 7467 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48
DV
7468 u32 dpll;
7469 bool is_sdvo;
190f68c5 7470 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 7471
190f68c5 7472 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 7473
a93e255f
ACO
7474 is_sdvo = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO) ||
7475 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI);
eb1cbe48
DV
7476
7477 dpll = DPLL_VGA_MODE_DIS;
7478
a93e255f 7479 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
eb1cbe48
DV
7480 dpll |= DPLLB_MODE_LVDS;
7481 else
7482 dpll |= DPLLB_MODE_DAC_SERIAL;
6cc5f341 7483
ef1b460d 7484 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
190f68c5 7485 dpll |= (crtc_state->pixel_multiplier - 1)
198a037f 7486 << SDVO_MULTIPLIER_SHIFT_HIRES;
eb1cbe48 7487 }
198a037f
DV
7488
7489 if (is_sdvo)
4a33e48d 7490 dpll |= DPLL_SDVO_HIGH_SPEED;
198a037f 7491
190f68c5 7492 if (crtc_state->has_dp_encoder)
4a33e48d 7493 dpll |= DPLL_SDVO_HIGH_SPEED;
eb1cbe48
DV
7494
7495 /* compute bitmask from p1 value */
7496 if (IS_PINEVIEW(dev))
7497 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
7498 else {
7499 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7500 if (IS_G4X(dev) && reduced_clock)
7501 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
7502 }
7503 switch (clock->p2) {
7504 case 5:
7505 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7506 break;
7507 case 7:
7508 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7509 break;
7510 case 10:
7511 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7512 break;
7513 case 14:
7514 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7515 break;
7516 }
7517 if (INTEL_INFO(dev)->gen >= 4)
7518 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
7519
190f68c5 7520 if (crtc_state->sdvo_tv_clock)
eb1cbe48 7521 dpll |= PLL_REF_INPUT_TVCLKINBC;
a93e255f 7522 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ceb41007 7523 intel_panel_use_ssc(dev_priv))
eb1cbe48
DV
7524 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7525 else
7526 dpll |= PLL_REF_INPUT_DREFCLK;
7527
7528 dpll |= DPLL_VCO_ENABLE;
190f68c5 7529 crtc_state->dpll_hw_state.dpll = dpll;
8bcc2795 7530
eb1cbe48 7531 if (INTEL_INFO(dev)->gen >= 4) {
190f68c5 7532 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
ef1b460d 7533 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
190f68c5 7534 crtc_state->dpll_hw_state.dpll_md = dpll_md;
eb1cbe48
DV
7535 }
7536}
7537
251ac862
DV
7538static void i8xx_compute_dpll(struct intel_crtc *crtc,
7539 struct intel_crtc_state *crtc_state,
9e2c8475 7540 struct dpll *reduced_clock)
eb1cbe48 7541{
f47709a9 7542 struct drm_device *dev = crtc->base.dev;
eb1cbe48 7543 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48 7544 u32 dpll;
190f68c5 7545 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 7546
190f68c5 7547 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 7548
eb1cbe48
DV
7549 dpll = DPLL_VGA_MODE_DIS;
7550
a93e255f 7551 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
eb1cbe48
DV
7552 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7553 } else {
7554 if (clock->p1 == 2)
7555 dpll |= PLL_P1_DIVIDE_BY_TWO;
7556 else
7557 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7558 if (clock->p2 == 4)
7559 dpll |= PLL_P2_DIVIDE_BY_4;
7560 }
7561
a93e255f 7562 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
4a33e48d
DV
7563 dpll |= DPLL_DVO_2X_MODE;
7564
a93e255f 7565 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ceb41007 7566 intel_panel_use_ssc(dev_priv))
eb1cbe48
DV
7567 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7568 else
7569 dpll |= PLL_REF_INPUT_DREFCLK;
7570
7571 dpll |= DPLL_VCO_ENABLE;
190f68c5 7572 crtc_state->dpll_hw_state.dpll = dpll;
eb1cbe48
DV
7573}
7574
8a654f3b 7575static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
b0e77b9c
PZ
7576{
7577 struct drm_device *dev = intel_crtc->base.dev;
7578 struct drm_i915_private *dev_priv = dev->dev_private;
7579 enum pipe pipe = intel_crtc->pipe;
6e3c9717 7580 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
7c5f93b0 7581 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
1caea6e9
VS
7582 uint32_t crtc_vtotal, crtc_vblank_end;
7583 int vsyncshift = 0;
4d8a62ea
DV
7584
7585 /* We need to be careful not to changed the adjusted mode, for otherwise
7586 * the hw state checker will get angry at the mismatch. */
7587 crtc_vtotal = adjusted_mode->crtc_vtotal;
7588 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
b0e77b9c 7589
609aeaca 7590 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
b0e77b9c 7591 /* the chip adds 2 halflines automatically */
4d8a62ea
DV
7592 crtc_vtotal -= 1;
7593 crtc_vblank_end -= 1;
609aeaca 7594
409ee761 7595 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
609aeaca
VS
7596 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
7597 else
7598 vsyncshift = adjusted_mode->crtc_hsync_start -
7599 adjusted_mode->crtc_htotal / 2;
1caea6e9
VS
7600 if (vsyncshift < 0)
7601 vsyncshift += adjusted_mode->crtc_htotal;
b0e77b9c
PZ
7602 }
7603
7604 if (INTEL_INFO(dev)->gen > 3)
fe2b8f9d 7605 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
b0e77b9c 7606
fe2b8f9d 7607 I915_WRITE(HTOTAL(cpu_transcoder),
b0e77b9c
PZ
7608 (adjusted_mode->crtc_hdisplay - 1) |
7609 ((adjusted_mode->crtc_htotal - 1) << 16));
fe2b8f9d 7610 I915_WRITE(HBLANK(cpu_transcoder),
b0e77b9c
PZ
7611 (adjusted_mode->crtc_hblank_start - 1) |
7612 ((adjusted_mode->crtc_hblank_end - 1) << 16));
fe2b8f9d 7613 I915_WRITE(HSYNC(cpu_transcoder),
b0e77b9c
PZ
7614 (adjusted_mode->crtc_hsync_start - 1) |
7615 ((adjusted_mode->crtc_hsync_end - 1) << 16));
7616
fe2b8f9d 7617 I915_WRITE(VTOTAL(cpu_transcoder),
b0e77b9c 7618 (adjusted_mode->crtc_vdisplay - 1) |
4d8a62ea 7619 ((crtc_vtotal - 1) << 16));
fe2b8f9d 7620 I915_WRITE(VBLANK(cpu_transcoder),
b0e77b9c 7621 (adjusted_mode->crtc_vblank_start - 1) |
4d8a62ea 7622 ((crtc_vblank_end - 1) << 16));
fe2b8f9d 7623 I915_WRITE(VSYNC(cpu_transcoder),
b0e77b9c
PZ
7624 (adjusted_mode->crtc_vsync_start - 1) |
7625 ((adjusted_mode->crtc_vsync_end - 1) << 16));
7626
b5e508d4
PZ
7627 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
7628 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
7629 * documented on the DDI_FUNC_CTL register description, EDP Input Select
7630 * bits. */
7631 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
7632 (pipe == PIPE_B || pipe == PIPE_C))
7633 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
7634
bc58be60
JN
7635}
7636
7637static void intel_set_pipe_src_size(struct intel_crtc *intel_crtc)
7638{
7639 struct drm_device *dev = intel_crtc->base.dev;
7640 struct drm_i915_private *dev_priv = dev->dev_private;
7641 enum pipe pipe = intel_crtc->pipe;
7642
b0e77b9c
PZ
7643 /* pipesrc controls the size that is scaled from, which should
7644 * always be the user's requested size.
7645 */
7646 I915_WRITE(PIPESRC(pipe),
6e3c9717
ACO
7647 ((intel_crtc->config->pipe_src_w - 1) << 16) |
7648 (intel_crtc->config->pipe_src_h - 1));
b0e77b9c
PZ
7649}
7650
1bd1bd80 7651static void intel_get_pipe_timings(struct intel_crtc *crtc,
5cec258b 7652 struct intel_crtc_state *pipe_config)
1bd1bd80
DV
7653{
7654 struct drm_device *dev = crtc->base.dev;
7655 struct drm_i915_private *dev_priv = dev->dev_private;
7656 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
7657 uint32_t tmp;
7658
7659 tmp = I915_READ(HTOTAL(cpu_transcoder));
2d112de7
ACO
7660 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
7661 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7662 tmp = I915_READ(HBLANK(cpu_transcoder));
2d112de7
ACO
7663 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
7664 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7665 tmp = I915_READ(HSYNC(cpu_transcoder));
2d112de7
ACO
7666 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
7667 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
7668
7669 tmp = I915_READ(VTOTAL(cpu_transcoder));
2d112de7
ACO
7670 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
7671 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7672 tmp = I915_READ(VBLANK(cpu_transcoder));
2d112de7
ACO
7673 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
7674 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7675 tmp = I915_READ(VSYNC(cpu_transcoder));
2d112de7
ACO
7676 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
7677 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
7678
7679 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
2d112de7
ACO
7680 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
7681 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
7682 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
1bd1bd80 7683 }
bc58be60
JN
7684}
7685
7686static void intel_get_pipe_src_size(struct intel_crtc *crtc,
7687 struct intel_crtc_state *pipe_config)
7688{
7689 struct drm_device *dev = crtc->base.dev;
7690 struct drm_i915_private *dev_priv = dev->dev_private;
7691 u32 tmp;
1bd1bd80
DV
7692
7693 tmp = I915_READ(PIPESRC(crtc->pipe));
37327abd
VS
7694 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
7695 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
7696
2d112de7
ACO
7697 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
7698 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
1bd1bd80
DV
7699}
7700
f6a83288 7701void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5cec258b 7702 struct intel_crtc_state *pipe_config)
babea61d 7703{
2d112de7
ACO
7704 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
7705 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
7706 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
7707 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
babea61d 7708
2d112de7
ACO
7709 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
7710 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
7711 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
7712 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
babea61d 7713
2d112de7 7714 mode->flags = pipe_config->base.adjusted_mode.flags;
cd13f5ab 7715 mode->type = DRM_MODE_TYPE_DRIVER;
babea61d 7716
2d112de7
ACO
7717 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
7718 mode->flags |= pipe_config->base.adjusted_mode.flags;
cd13f5ab
ML
7719
7720 mode->hsync = drm_mode_hsync(mode);
7721 mode->vrefresh = drm_mode_vrefresh(mode);
7722 drm_mode_set_name(mode);
babea61d
JB
7723}
7724
84b046f3
DV
7725static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
7726{
7727 struct drm_device *dev = intel_crtc->base.dev;
7728 struct drm_i915_private *dev_priv = dev->dev_private;
7729 uint32_t pipeconf;
7730
9f11a9e4 7731 pipeconf = 0;
84b046f3 7732
b6b5d049
VS
7733 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
7734 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
7735 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
67c72a12 7736
6e3c9717 7737 if (intel_crtc->config->double_wide)
cf532bb2 7738 pipeconf |= PIPECONF_DOUBLE_WIDE;
84b046f3 7739
ff9ce46e 7740 /* only g4x and later have fancy bpc/dither controls */
666a4537 7741 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
ff9ce46e 7742 /* Bspec claims that we can't use dithering for 30bpp pipes. */
6e3c9717 7743 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
ff9ce46e 7744 pipeconf |= PIPECONF_DITHER_EN |
84b046f3 7745 PIPECONF_DITHER_TYPE_SP;
84b046f3 7746
6e3c9717 7747 switch (intel_crtc->config->pipe_bpp) {
ff9ce46e
DV
7748 case 18:
7749 pipeconf |= PIPECONF_6BPC;
7750 break;
7751 case 24:
7752 pipeconf |= PIPECONF_8BPC;
7753 break;
7754 case 30:
7755 pipeconf |= PIPECONF_10BPC;
7756 break;
7757 default:
7758 /* Case prevented by intel_choose_pipe_bpp_dither. */
7759 BUG();
84b046f3
DV
7760 }
7761 }
7762
7763 if (HAS_PIPE_CXSR(dev)) {
7764 if (intel_crtc->lowfreq_avail) {
7765 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
7766 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
7767 } else {
7768 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
84b046f3
DV
7769 }
7770 }
7771
6e3c9717 7772 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
efc2cfff 7773 if (INTEL_INFO(dev)->gen < 4 ||
409ee761 7774 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
efc2cfff
VS
7775 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
7776 else
7777 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
7778 } else
84b046f3
DV
7779 pipeconf |= PIPECONF_PROGRESSIVE;
7780
666a4537
WB
7781 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
7782 intel_crtc->config->limited_color_range)
9f11a9e4 7783 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
9c8e09b7 7784
84b046f3
DV
7785 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
7786 POSTING_READ(PIPECONF(intel_crtc->pipe));
7787}
7788
81c97f52
ACO
7789static int i8xx_crtc_compute_clock(struct intel_crtc *crtc,
7790 struct intel_crtc_state *crtc_state)
7791{
7792 struct drm_device *dev = crtc->base.dev;
7793 struct drm_i915_private *dev_priv = dev->dev_private;
1b6f4958 7794 const struct intel_limit *limit;
81c97f52
ACO
7795 int refclk = 48000;
7796
7797 memset(&crtc_state->dpll_hw_state, 0,
7798 sizeof(crtc_state->dpll_hw_state));
7799
7800 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
7801 if (intel_panel_use_ssc(dev_priv)) {
7802 refclk = dev_priv->vbt.lvds_ssc_freq;
7803 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
7804 }
7805
7806 limit = &intel_limits_i8xx_lvds;
7807 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO)) {
7808 limit = &intel_limits_i8xx_dvo;
7809 } else {
7810 limit = &intel_limits_i8xx_dac;
7811 }
7812
7813 if (!crtc_state->clock_set &&
7814 !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
7815 refclk, NULL, &crtc_state->dpll)) {
7816 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7817 return -EINVAL;
7818 }
7819
7820 i8xx_compute_dpll(crtc, crtc_state, NULL);
7821
7822 return 0;
7823}
7824
19ec6693
ACO
7825static int g4x_crtc_compute_clock(struct intel_crtc *crtc,
7826 struct intel_crtc_state *crtc_state)
7827{
7828 struct drm_device *dev = crtc->base.dev;
7829 struct drm_i915_private *dev_priv = dev->dev_private;
1b6f4958 7830 const struct intel_limit *limit;
19ec6693
ACO
7831 int refclk = 96000;
7832
7833 memset(&crtc_state->dpll_hw_state, 0,
7834 sizeof(crtc_state->dpll_hw_state));
7835
7836 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
7837 if (intel_panel_use_ssc(dev_priv)) {
7838 refclk = dev_priv->vbt.lvds_ssc_freq;
7839 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
7840 }
7841
7842 if (intel_is_dual_link_lvds(dev))
7843 limit = &intel_limits_g4x_dual_channel_lvds;
7844 else
7845 limit = &intel_limits_g4x_single_channel_lvds;
7846 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI) ||
7847 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_ANALOG)) {
7848 limit = &intel_limits_g4x_hdmi;
7849 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO)) {
7850 limit = &intel_limits_g4x_sdvo;
7851 } else {
7852 /* The option is for other outputs */
7853 limit = &intel_limits_i9xx_sdvo;
7854 }
7855
7856 if (!crtc_state->clock_set &&
7857 !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
7858 refclk, NULL, &crtc_state->dpll)) {
7859 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7860 return -EINVAL;
7861 }
7862
7863 i9xx_compute_dpll(crtc, crtc_state, NULL);
7864
7865 return 0;
7866}
7867
70e8aa21
ACO
7868static int pnv_crtc_compute_clock(struct intel_crtc *crtc,
7869 struct intel_crtc_state *crtc_state)
7870{
7871 struct drm_device *dev = crtc->base.dev;
7872 struct drm_i915_private *dev_priv = dev->dev_private;
1b6f4958 7873 const struct intel_limit *limit;
70e8aa21
ACO
7874 int refclk = 96000;
7875
7876 memset(&crtc_state->dpll_hw_state, 0,
7877 sizeof(crtc_state->dpll_hw_state));
7878
7879 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
7880 if (intel_panel_use_ssc(dev_priv)) {
7881 refclk = dev_priv->vbt.lvds_ssc_freq;
7882 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
7883 }
7884
7885 limit = &intel_limits_pineview_lvds;
7886 } else {
7887 limit = &intel_limits_pineview_sdvo;
7888 }
7889
7890 if (!crtc_state->clock_set &&
7891 !pnv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
7892 refclk, NULL, &crtc_state->dpll)) {
7893 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7894 return -EINVAL;
7895 }
7896
7897 i9xx_compute_dpll(crtc, crtc_state, NULL);
7898
7899 return 0;
7900}
7901
190f68c5
ACO
7902static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
7903 struct intel_crtc_state *crtc_state)
79e53945 7904{
c7653199 7905 struct drm_device *dev = crtc->base.dev;
79e53945 7906 struct drm_i915_private *dev_priv = dev->dev_private;
1b6f4958 7907 const struct intel_limit *limit;
81c97f52 7908 int refclk = 96000;
79e53945 7909
dd3cd74a
ACO
7910 memset(&crtc_state->dpll_hw_state, 0,
7911 sizeof(crtc_state->dpll_hw_state));
7912
70e8aa21
ACO
7913 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
7914 if (intel_panel_use_ssc(dev_priv)) {
7915 refclk = dev_priv->vbt.lvds_ssc_freq;
7916 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
7917 }
43565a06 7918
70e8aa21
ACO
7919 limit = &intel_limits_i9xx_lvds;
7920 } else {
7921 limit = &intel_limits_i9xx_sdvo;
81c97f52 7922 }
79e53945 7923
70e8aa21
ACO
7924 if (!crtc_state->clock_set &&
7925 !i9xx_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
7926 refclk, NULL, &crtc_state->dpll)) {
7927 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7928 return -EINVAL;
f47709a9 7929 }
7026d4ac 7930
81c97f52 7931 i9xx_compute_dpll(crtc, crtc_state, NULL);
79e53945 7932
c8f7a0db 7933 return 0;
f564048e
EA
7934}
7935
65b3d6a9
ACO
7936static int chv_crtc_compute_clock(struct intel_crtc *crtc,
7937 struct intel_crtc_state *crtc_state)
7938{
7939 int refclk = 100000;
1b6f4958 7940 const struct intel_limit *limit = &intel_limits_chv;
65b3d6a9
ACO
7941
7942 memset(&crtc_state->dpll_hw_state, 0,
7943 sizeof(crtc_state->dpll_hw_state));
7944
65b3d6a9
ACO
7945 if (!crtc_state->clock_set &&
7946 !chv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
7947 refclk, NULL, &crtc_state->dpll)) {
7948 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7949 return -EINVAL;
7950 }
7951
7952 chv_compute_dpll(crtc, crtc_state);
7953
7954 return 0;
7955}
7956
7957static int vlv_crtc_compute_clock(struct intel_crtc *crtc,
7958 struct intel_crtc_state *crtc_state)
7959{
7960 int refclk = 100000;
1b6f4958 7961 const struct intel_limit *limit = &intel_limits_vlv;
65b3d6a9
ACO
7962
7963 memset(&crtc_state->dpll_hw_state, 0,
7964 sizeof(crtc_state->dpll_hw_state));
7965
65b3d6a9
ACO
7966 if (!crtc_state->clock_set &&
7967 !vlv_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
7968 refclk, NULL, &crtc_state->dpll)) {
7969 DRM_ERROR("Couldn't find PLL settings for mode!\n");
7970 return -EINVAL;
7971 }
7972
7973 vlv_compute_dpll(crtc, crtc_state);
7974
7975 return 0;
7976}
7977
2fa2fe9a 7978static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5cec258b 7979 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
7980{
7981 struct drm_device *dev = crtc->base.dev;
7982 struct drm_i915_private *dev_priv = dev->dev_private;
7983 uint32_t tmp;
7984
dc9e7dec
VS
7985 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
7986 return;
7987
2fa2fe9a 7988 tmp = I915_READ(PFIT_CONTROL);
06922821
DV
7989 if (!(tmp & PFIT_ENABLE))
7990 return;
2fa2fe9a 7991
06922821 7992 /* Check whether the pfit is attached to our pipe. */
2fa2fe9a
DV
7993 if (INTEL_INFO(dev)->gen < 4) {
7994 if (crtc->pipe != PIPE_B)
7995 return;
2fa2fe9a
DV
7996 } else {
7997 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
7998 return;
7999 }
8000
06922821 8001 pipe_config->gmch_pfit.control = tmp;
2fa2fe9a 8002 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
2fa2fe9a
DV
8003}
8004
acbec814 8005static void vlv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8006 struct intel_crtc_state *pipe_config)
acbec814
JB
8007{
8008 struct drm_device *dev = crtc->base.dev;
8009 struct drm_i915_private *dev_priv = dev->dev_private;
8010 int pipe = pipe_config->cpu_transcoder;
9e2c8475 8011 struct dpll clock;
acbec814 8012 u32 mdiv;
662c6ecb 8013 int refclk = 100000;
acbec814 8014
b521973b
VS
8015 /* In case of DSI, DPLL will not be used */
8016 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
f573de5a
SK
8017 return;
8018
a580516d 8019 mutex_lock(&dev_priv->sb_lock);
ab3c759a 8020 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
a580516d 8021 mutex_unlock(&dev_priv->sb_lock);
acbec814
JB
8022
8023 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
8024 clock.m2 = mdiv & DPIO_M2DIV_MASK;
8025 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
8026 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
8027 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
8028
dccbea3b 8029 pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock);
acbec814
JB
8030}
8031
5724dbd1
DL
8032static void
8033i9xx_get_initial_plane_config(struct intel_crtc *crtc,
8034 struct intel_initial_plane_config *plane_config)
1ad292b5
JB
8035{
8036 struct drm_device *dev = crtc->base.dev;
8037 struct drm_i915_private *dev_priv = dev->dev_private;
8038 u32 val, base, offset;
8039 int pipe = crtc->pipe, plane = crtc->plane;
8040 int fourcc, pixel_format;
6761dd31 8041 unsigned int aligned_height;
b113d5ee 8042 struct drm_framebuffer *fb;
1b842c89 8043 struct intel_framebuffer *intel_fb;
1ad292b5 8044
42a7b088
DL
8045 val = I915_READ(DSPCNTR(plane));
8046 if (!(val & DISPLAY_PLANE_ENABLE))
8047 return;
8048
d9806c9f 8049 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 8050 if (!intel_fb) {
1ad292b5
JB
8051 DRM_DEBUG_KMS("failed to alloc fb\n");
8052 return;
8053 }
8054
1b842c89
DL
8055 fb = &intel_fb->base;
8056
18c5247e
DV
8057 if (INTEL_INFO(dev)->gen >= 4) {
8058 if (val & DISPPLANE_TILED) {
49af449b 8059 plane_config->tiling = I915_TILING_X;
18c5247e
DV
8060 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8061 }
8062 }
1ad292b5
JB
8063
8064 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 8065 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
8066 fb->pixel_format = fourcc;
8067 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
1ad292b5
JB
8068
8069 if (INTEL_INFO(dev)->gen >= 4) {
49af449b 8070 if (plane_config->tiling)
1ad292b5
JB
8071 offset = I915_READ(DSPTILEOFF(plane));
8072 else
8073 offset = I915_READ(DSPLINOFF(plane));
8074 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
8075 } else {
8076 base = I915_READ(DSPADDR(plane));
8077 }
8078 plane_config->base = base;
8079
8080 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
8081 fb->width = ((val >> 16) & 0xfff) + 1;
8082 fb->height = ((val >> 0) & 0xfff) + 1;
1ad292b5
JB
8083
8084 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 8085 fb->pitches[0] = val & 0xffffffc0;
1ad292b5 8086
b113d5ee 8087 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
8088 fb->pixel_format,
8089 fb->modifier[0]);
1ad292b5 8090
f37b5c2b 8091 plane_config->size = fb->pitches[0] * aligned_height;
1ad292b5 8092
2844a921
DL
8093 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8094 pipe_name(pipe), plane, fb->width, fb->height,
8095 fb->bits_per_pixel, base, fb->pitches[0],
8096 plane_config->size);
1ad292b5 8097
2d14030b 8098 plane_config->fb = intel_fb;
1ad292b5
JB
8099}
8100
70b23a98 8101static void chv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8102 struct intel_crtc_state *pipe_config)
70b23a98
VS
8103{
8104 struct drm_device *dev = crtc->base.dev;
8105 struct drm_i915_private *dev_priv = dev->dev_private;
8106 int pipe = pipe_config->cpu_transcoder;
8107 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9e2c8475 8108 struct dpll clock;
0d7b6b11 8109 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3;
70b23a98
VS
8110 int refclk = 100000;
8111
b521973b
VS
8112 /* In case of DSI, DPLL will not be used */
8113 if ((pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE) == 0)
8114 return;
8115
a580516d 8116 mutex_lock(&dev_priv->sb_lock);
70b23a98
VS
8117 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
8118 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
8119 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
8120 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
0d7b6b11 8121 pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
a580516d 8122 mutex_unlock(&dev_priv->sb_lock);
70b23a98
VS
8123
8124 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
0d7b6b11
ID
8125 clock.m2 = (pll_dw0 & 0xff) << 22;
8126 if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN)
8127 clock.m2 |= pll_dw2 & 0x3fffff;
70b23a98
VS
8128 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
8129 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
8130 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
8131
dccbea3b 8132 pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock);
70b23a98
VS
8133}
8134
0e8ffe1b 8135static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
5cec258b 8136 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
8137{
8138 struct drm_device *dev = crtc->base.dev;
8139 struct drm_i915_private *dev_priv = dev->dev_private;
1729050e 8140 enum intel_display_power_domain power_domain;
0e8ffe1b 8141 uint32_t tmp;
1729050e 8142 bool ret;
0e8ffe1b 8143
1729050e
ID
8144 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
8145 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
b5482bd0
ID
8146 return false;
8147
e143a21c 8148 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
8106ddbd 8149 pipe_config->shared_dpll = NULL;
eccb140b 8150
1729050e
ID
8151 ret = false;
8152
0e8ffe1b
DV
8153 tmp = I915_READ(PIPECONF(crtc->pipe));
8154 if (!(tmp & PIPECONF_ENABLE))
1729050e 8155 goto out;
0e8ffe1b 8156
666a4537 8157 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
42571aef
VS
8158 switch (tmp & PIPECONF_BPC_MASK) {
8159 case PIPECONF_6BPC:
8160 pipe_config->pipe_bpp = 18;
8161 break;
8162 case PIPECONF_8BPC:
8163 pipe_config->pipe_bpp = 24;
8164 break;
8165 case PIPECONF_10BPC:
8166 pipe_config->pipe_bpp = 30;
8167 break;
8168 default:
8169 break;
8170 }
8171 }
8172
666a4537
WB
8173 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
8174 (tmp & PIPECONF_COLOR_RANGE_SELECT))
b5a9fa09
DV
8175 pipe_config->limited_color_range = true;
8176
282740f7
VS
8177 if (INTEL_INFO(dev)->gen < 4)
8178 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
8179
1bd1bd80 8180 intel_get_pipe_timings(crtc, pipe_config);
bc58be60 8181 intel_get_pipe_src_size(crtc, pipe_config);
1bd1bd80 8182
2fa2fe9a
DV
8183 i9xx_get_pfit_config(crtc, pipe_config);
8184
6c49f241 8185 if (INTEL_INFO(dev)->gen >= 4) {
c231775c
VS
8186 /* No way to read it out on pipes B and C */
8187 if (IS_CHERRYVIEW(dev) && crtc->pipe != PIPE_A)
8188 tmp = dev_priv->chv_dpll_md[crtc->pipe];
8189 else
8190 tmp = I915_READ(DPLL_MD(crtc->pipe));
6c49f241
DV
8191 pipe_config->pixel_multiplier =
8192 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
8193 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
8bcc2795 8194 pipe_config->dpll_hw_state.dpll_md = tmp;
6c49f241
DV
8195 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
8196 tmp = I915_READ(DPLL(crtc->pipe));
8197 pipe_config->pixel_multiplier =
8198 ((tmp & SDVO_MULTIPLIER_MASK)
8199 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
8200 } else {
8201 /* Note that on i915G/GM the pixel multiplier is in the sdvo
8202 * port and will be fixed up in the encoder->get_config
8203 * function. */
8204 pipe_config->pixel_multiplier = 1;
8205 }
8bcc2795 8206 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
666a4537 8207 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
1c4e0274
VS
8208 /*
8209 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
8210 * on 830. Filter it out here so that we don't
8211 * report errors due to that.
8212 */
8213 if (IS_I830(dev))
8214 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
8215
8bcc2795
DV
8216 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
8217 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
165e901c
VS
8218 } else {
8219 /* Mask out read-only status bits. */
8220 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
8221 DPLL_PORTC_READY_MASK |
8222 DPLL_PORTB_READY_MASK);
8bcc2795 8223 }
6c49f241 8224
70b23a98
VS
8225 if (IS_CHERRYVIEW(dev))
8226 chv_crtc_clock_get(crtc, pipe_config);
8227 else if (IS_VALLEYVIEW(dev))
acbec814
JB
8228 vlv_crtc_clock_get(crtc, pipe_config);
8229 else
8230 i9xx_crtc_clock_get(crtc, pipe_config);
18442d08 8231
0f64614d
VS
8232 /*
8233 * Normally the dotclock is filled in by the encoder .get_config()
8234 * but in case the pipe is enabled w/o any ports we need a sane
8235 * default.
8236 */
8237 pipe_config->base.adjusted_mode.crtc_clock =
8238 pipe_config->port_clock / pipe_config->pixel_multiplier;
8239
1729050e
ID
8240 ret = true;
8241
8242out:
8243 intel_display_power_put(dev_priv, power_domain);
8244
8245 return ret;
0e8ffe1b
DV
8246}
8247
dde86e2d 8248static void ironlake_init_pch_refclk(struct drm_device *dev)
13d83a67
JB
8249{
8250 struct drm_i915_private *dev_priv = dev->dev_private;
13d83a67 8251 struct intel_encoder *encoder;
74cfd7ac 8252 u32 val, final;
13d83a67 8253 bool has_lvds = false;
199e5d79 8254 bool has_cpu_edp = false;
199e5d79 8255 bool has_panel = false;
99eb6a01
KP
8256 bool has_ck505 = false;
8257 bool can_ssc = false;
13d83a67
JB
8258
8259 /* We need to take the global config into account */
b2784e15 8260 for_each_intel_encoder(dev, encoder) {
199e5d79
KP
8261 switch (encoder->type) {
8262 case INTEL_OUTPUT_LVDS:
8263 has_panel = true;
8264 has_lvds = true;
8265 break;
8266 case INTEL_OUTPUT_EDP:
8267 has_panel = true;
2de6905f 8268 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
199e5d79
KP
8269 has_cpu_edp = true;
8270 break;
6847d71b
PZ
8271 default:
8272 break;
13d83a67
JB
8273 }
8274 }
8275
99eb6a01 8276 if (HAS_PCH_IBX(dev)) {
41aa3448 8277 has_ck505 = dev_priv->vbt.display_clock_mode;
99eb6a01
KP
8278 can_ssc = has_ck505;
8279 } else {
8280 has_ck505 = false;
8281 can_ssc = true;
8282 }
8283
2de6905f
ID
8284 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
8285 has_panel, has_lvds, has_ck505);
13d83a67
JB
8286
8287 /* Ironlake: try to setup display ref clock before DPLL
8288 * enabling. This is only under driver's control after
8289 * PCH B stepping, previous chipset stepping should be
8290 * ignoring this setting.
8291 */
74cfd7ac
CW
8292 val = I915_READ(PCH_DREF_CONTROL);
8293
8294 /* As we must carefully and slowly disable/enable each source in turn,
8295 * compute the final state we want first and check if we need to
8296 * make any changes at all.
8297 */
8298 final = val;
8299 final &= ~DREF_NONSPREAD_SOURCE_MASK;
8300 if (has_ck505)
8301 final |= DREF_NONSPREAD_CK505_ENABLE;
8302 else
8303 final |= DREF_NONSPREAD_SOURCE_ENABLE;
8304
8305 final &= ~DREF_SSC_SOURCE_MASK;
8306 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
8307 final &= ~DREF_SSC1_ENABLE;
8308
8309 if (has_panel) {
8310 final |= DREF_SSC_SOURCE_ENABLE;
8311
8312 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8313 final |= DREF_SSC1_ENABLE;
8314
8315 if (has_cpu_edp) {
8316 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8317 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
8318 else
8319 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
8320 } else
8321 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8322 } else {
8323 final |= DREF_SSC_SOURCE_DISABLE;
8324 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8325 }
8326
8327 if (final == val)
8328 return;
8329
13d83a67 8330 /* Always enable nonspread source */
74cfd7ac 8331 val &= ~DREF_NONSPREAD_SOURCE_MASK;
13d83a67 8332
99eb6a01 8333 if (has_ck505)
74cfd7ac 8334 val |= DREF_NONSPREAD_CK505_ENABLE;
99eb6a01 8335 else
74cfd7ac 8336 val |= DREF_NONSPREAD_SOURCE_ENABLE;
13d83a67 8337
199e5d79 8338 if (has_panel) {
74cfd7ac
CW
8339 val &= ~DREF_SSC_SOURCE_MASK;
8340 val |= DREF_SSC_SOURCE_ENABLE;
13d83a67 8341
199e5d79 8342 /* SSC must be turned on before enabling the CPU output */
99eb6a01 8343 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 8344 DRM_DEBUG_KMS("Using SSC on panel\n");
74cfd7ac 8345 val |= DREF_SSC1_ENABLE;
e77166b5 8346 } else
74cfd7ac 8347 val &= ~DREF_SSC1_ENABLE;
199e5d79
KP
8348
8349 /* Get SSC going before enabling the outputs */
74cfd7ac 8350 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8351 POSTING_READ(PCH_DREF_CONTROL);
8352 udelay(200);
8353
74cfd7ac 8354 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
13d83a67
JB
8355
8356 /* Enable CPU source on CPU attached eDP */
199e5d79 8357 if (has_cpu_edp) {
99eb6a01 8358 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 8359 DRM_DEBUG_KMS("Using SSC on eDP\n");
74cfd7ac 8360 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
eba905b2 8361 } else
74cfd7ac 8362 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
199e5d79 8363 } else
74cfd7ac 8364 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 8365
74cfd7ac 8366 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8367 POSTING_READ(PCH_DREF_CONTROL);
8368 udelay(200);
8369 } else {
8370 DRM_DEBUG_KMS("Disabling SSC entirely\n");
8371
74cfd7ac 8372 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
199e5d79
KP
8373
8374 /* Turn off CPU output */
74cfd7ac 8375 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 8376
74cfd7ac 8377 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8378 POSTING_READ(PCH_DREF_CONTROL);
8379 udelay(200);
8380
8381 /* Turn off the SSC source */
74cfd7ac
CW
8382 val &= ~DREF_SSC_SOURCE_MASK;
8383 val |= DREF_SSC_SOURCE_DISABLE;
199e5d79
KP
8384
8385 /* Turn off SSC1 */
74cfd7ac 8386 val &= ~DREF_SSC1_ENABLE;
199e5d79 8387
74cfd7ac 8388 I915_WRITE(PCH_DREF_CONTROL, val);
13d83a67
JB
8389 POSTING_READ(PCH_DREF_CONTROL);
8390 udelay(200);
8391 }
74cfd7ac
CW
8392
8393 BUG_ON(val != final);
13d83a67
JB
8394}
8395
f31f2d55 8396static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
dde86e2d 8397{
f31f2d55 8398 uint32_t tmp;
dde86e2d 8399
0ff066a9
PZ
8400 tmp = I915_READ(SOUTH_CHICKEN2);
8401 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
8402 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 8403
0ff066a9
PZ
8404 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
8405 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
8406 DRM_ERROR("FDI mPHY reset assert timeout\n");
dde86e2d 8407
0ff066a9
PZ
8408 tmp = I915_READ(SOUTH_CHICKEN2);
8409 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
8410 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 8411
0ff066a9
PZ
8412 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
8413 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
8414 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
f31f2d55
PZ
8415}
8416
8417/* WaMPhyProgramming:hsw */
8418static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
8419{
8420 uint32_t tmp;
dde86e2d
PZ
8421
8422 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
8423 tmp &= ~(0xFF << 24);
8424 tmp |= (0x12 << 24);
8425 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
8426
dde86e2d
PZ
8427 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
8428 tmp |= (1 << 11);
8429 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
8430
8431 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
8432 tmp |= (1 << 11);
8433 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
8434
dde86e2d
PZ
8435 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
8436 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8437 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
8438
8439 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
8440 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8441 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
8442
0ff066a9
PZ
8443 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
8444 tmp &= ~(7 << 13);
8445 tmp |= (5 << 13);
8446 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
dde86e2d 8447
0ff066a9
PZ
8448 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
8449 tmp &= ~(7 << 13);
8450 tmp |= (5 << 13);
8451 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
dde86e2d
PZ
8452
8453 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
8454 tmp &= ~0xFF;
8455 tmp |= 0x1C;
8456 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
8457
8458 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
8459 tmp &= ~0xFF;
8460 tmp |= 0x1C;
8461 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
8462
8463 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
8464 tmp &= ~(0xFF << 16);
8465 tmp |= (0x1C << 16);
8466 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
8467
8468 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
8469 tmp &= ~(0xFF << 16);
8470 tmp |= (0x1C << 16);
8471 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
8472
0ff066a9
PZ
8473 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
8474 tmp |= (1 << 27);
8475 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
dde86e2d 8476
0ff066a9
PZ
8477 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
8478 tmp |= (1 << 27);
8479 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
dde86e2d 8480
0ff066a9
PZ
8481 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
8482 tmp &= ~(0xF << 28);
8483 tmp |= (4 << 28);
8484 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
dde86e2d 8485
0ff066a9
PZ
8486 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
8487 tmp &= ~(0xF << 28);
8488 tmp |= (4 << 28);
8489 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
f31f2d55
PZ
8490}
8491
2fa86a1f
PZ
8492/* Implements 3 different sequences from BSpec chapter "Display iCLK
8493 * Programming" based on the parameters passed:
8494 * - Sequence to enable CLKOUT_DP
8495 * - Sequence to enable CLKOUT_DP without spread
8496 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
8497 */
8498static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
8499 bool with_fdi)
f31f2d55
PZ
8500{
8501 struct drm_i915_private *dev_priv = dev->dev_private;
2fa86a1f
PZ
8502 uint32_t reg, tmp;
8503
8504 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
8505 with_spread = true;
c2699524 8506 if (WARN(HAS_PCH_LPT_LP(dev) && with_fdi, "LP PCH doesn't have FDI\n"))
2fa86a1f 8507 with_fdi = false;
f31f2d55 8508
a580516d 8509 mutex_lock(&dev_priv->sb_lock);
f31f2d55
PZ
8510
8511 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8512 tmp &= ~SBI_SSCCTL_DISABLE;
8513 tmp |= SBI_SSCCTL_PATHALT;
8514 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8515
8516 udelay(24);
8517
2fa86a1f
PZ
8518 if (with_spread) {
8519 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8520 tmp &= ~SBI_SSCCTL_PATHALT;
8521 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
f31f2d55 8522
2fa86a1f
PZ
8523 if (with_fdi) {
8524 lpt_reset_fdi_mphy(dev_priv);
8525 lpt_program_fdi_mphy(dev_priv);
8526 }
8527 }
dde86e2d 8528
c2699524 8529 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
2fa86a1f
PZ
8530 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8531 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8532 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
c00db246 8533
a580516d 8534 mutex_unlock(&dev_priv->sb_lock);
dde86e2d
PZ
8535}
8536
47701c3b
PZ
8537/* Sequence to disable CLKOUT_DP */
8538static void lpt_disable_clkout_dp(struct drm_device *dev)
8539{
8540 struct drm_i915_private *dev_priv = dev->dev_private;
8541 uint32_t reg, tmp;
8542
a580516d 8543 mutex_lock(&dev_priv->sb_lock);
47701c3b 8544
c2699524 8545 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
47701c3b
PZ
8546 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8547 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8548 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
8549
8550 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8551 if (!(tmp & SBI_SSCCTL_DISABLE)) {
8552 if (!(tmp & SBI_SSCCTL_PATHALT)) {
8553 tmp |= SBI_SSCCTL_PATHALT;
8554 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8555 udelay(32);
8556 }
8557 tmp |= SBI_SSCCTL_DISABLE;
8558 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8559 }
8560
a580516d 8561 mutex_unlock(&dev_priv->sb_lock);
47701c3b
PZ
8562}
8563
f7be2c21
VS
8564#define BEND_IDX(steps) ((50 + (steps)) / 5)
8565
8566static const uint16_t sscdivintphase[] = {
8567 [BEND_IDX( 50)] = 0x3B23,
8568 [BEND_IDX( 45)] = 0x3B23,
8569 [BEND_IDX( 40)] = 0x3C23,
8570 [BEND_IDX( 35)] = 0x3C23,
8571 [BEND_IDX( 30)] = 0x3D23,
8572 [BEND_IDX( 25)] = 0x3D23,
8573 [BEND_IDX( 20)] = 0x3E23,
8574 [BEND_IDX( 15)] = 0x3E23,
8575 [BEND_IDX( 10)] = 0x3F23,
8576 [BEND_IDX( 5)] = 0x3F23,
8577 [BEND_IDX( 0)] = 0x0025,
8578 [BEND_IDX( -5)] = 0x0025,
8579 [BEND_IDX(-10)] = 0x0125,
8580 [BEND_IDX(-15)] = 0x0125,
8581 [BEND_IDX(-20)] = 0x0225,
8582 [BEND_IDX(-25)] = 0x0225,
8583 [BEND_IDX(-30)] = 0x0325,
8584 [BEND_IDX(-35)] = 0x0325,
8585 [BEND_IDX(-40)] = 0x0425,
8586 [BEND_IDX(-45)] = 0x0425,
8587 [BEND_IDX(-50)] = 0x0525,
8588};
8589
8590/*
8591 * Bend CLKOUT_DP
8592 * steps -50 to 50 inclusive, in steps of 5
8593 * < 0 slow down the clock, > 0 speed up the clock, 0 == no bend (135MHz)
8594 * change in clock period = -(steps / 10) * 5.787 ps
8595 */
8596static void lpt_bend_clkout_dp(struct drm_i915_private *dev_priv, int steps)
8597{
8598 uint32_t tmp;
8599 int idx = BEND_IDX(steps);
8600
8601 if (WARN_ON(steps % 5 != 0))
8602 return;
8603
8604 if (WARN_ON(idx >= ARRAY_SIZE(sscdivintphase)))
8605 return;
8606
8607 mutex_lock(&dev_priv->sb_lock);
8608
8609 if (steps % 10 != 0)
8610 tmp = 0xAAAAAAAB;
8611 else
8612 tmp = 0x00000000;
8613 intel_sbi_write(dev_priv, SBI_SSCDITHPHASE, tmp, SBI_ICLK);
8614
8615 tmp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE, SBI_ICLK);
8616 tmp &= 0xffff0000;
8617 tmp |= sscdivintphase[idx];
8618 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE, tmp, SBI_ICLK);
8619
8620 mutex_unlock(&dev_priv->sb_lock);
8621}
8622
8623#undef BEND_IDX
8624
bf8fa3d3
PZ
8625static void lpt_init_pch_refclk(struct drm_device *dev)
8626{
bf8fa3d3
PZ
8627 struct intel_encoder *encoder;
8628 bool has_vga = false;
8629
b2784e15 8630 for_each_intel_encoder(dev, encoder) {
bf8fa3d3
PZ
8631 switch (encoder->type) {
8632 case INTEL_OUTPUT_ANALOG:
8633 has_vga = true;
8634 break;
6847d71b
PZ
8635 default:
8636 break;
bf8fa3d3
PZ
8637 }
8638 }
8639
f7be2c21
VS
8640 if (has_vga) {
8641 lpt_bend_clkout_dp(to_i915(dev), 0);
47701c3b 8642 lpt_enable_clkout_dp(dev, true, true);
f7be2c21 8643 } else {
47701c3b 8644 lpt_disable_clkout_dp(dev);
f7be2c21 8645 }
bf8fa3d3
PZ
8646}
8647
dde86e2d
PZ
8648/*
8649 * Initialize reference clocks when the driver loads
8650 */
8651void intel_init_pch_refclk(struct drm_device *dev)
8652{
8653 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
8654 ironlake_init_pch_refclk(dev);
8655 else if (HAS_PCH_LPT(dev))
8656 lpt_init_pch_refclk(dev);
8657}
8658
6ff93609 8659static void ironlake_set_pipeconf(struct drm_crtc *crtc)
79e53945 8660{
c8203565 8661 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
79e53945
JB
8662 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8663 int pipe = intel_crtc->pipe;
c8203565
PZ
8664 uint32_t val;
8665
78114071 8666 val = 0;
c8203565 8667
6e3c9717 8668 switch (intel_crtc->config->pipe_bpp) {
c8203565 8669 case 18:
dfd07d72 8670 val |= PIPECONF_6BPC;
c8203565
PZ
8671 break;
8672 case 24:
dfd07d72 8673 val |= PIPECONF_8BPC;
c8203565
PZ
8674 break;
8675 case 30:
dfd07d72 8676 val |= PIPECONF_10BPC;
c8203565
PZ
8677 break;
8678 case 36:
dfd07d72 8679 val |= PIPECONF_12BPC;
c8203565
PZ
8680 break;
8681 default:
cc769b62
PZ
8682 /* Case prevented by intel_choose_pipe_bpp_dither. */
8683 BUG();
c8203565
PZ
8684 }
8685
6e3c9717 8686 if (intel_crtc->config->dither)
c8203565
PZ
8687 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8688
6e3c9717 8689 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
c8203565
PZ
8690 val |= PIPECONF_INTERLACED_ILK;
8691 else
8692 val |= PIPECONF_PROGRESSIVE;
8693
6e3c9717 8694 if (intel_crtc->config->limited_color_range)
3685a8f3 8695 val |= PIPECONF_COLOR_RANGE_SELECT;
3685a8f3 8696
c8203565
PZ
8697 I915_WRITE(PIPECONF(pipe), val);
8698 POSTING_READ(PIPECONF(pipe));
8699}
8700
6ff93609 8701static void haswell_set_pipeconf(struct drm_crtc *crtc)
ee2b0b38 8702{
391bf048 8703 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
ee2b0b38 8704 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 8705 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
391bf048 8706 u32 val = 0;
ee2b0b38 8707
391bf048 8708 if (IS_HASWELL(dev_priv) && intel_crtc->config->dither)
ee2b0b38
PZ
8709 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8710
6e3c9717 8711 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
ee2b0b38
PZ
8712 val |= PIPECONF_INTERLACED_ILK;
8713 else
8714 val |= PIPECONF_PROGRESSIVE;
8715
702e7a56
PZ
8716 I915_WRITE(PIPECONF(cpu_transcoder), val);
8717 POSTING_READ(PIPECONF(cpu_transcoder));
391bf048
JN
8718}
8719
391bf048
JN
8720static void haswell_set_pipemisc(struct drm_crtc *crtc)
8721{
8722 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
8723 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
756f85cf 8724
391bf048
JN
8725 if (IS_BROADWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 9) {
8726 u32 val = 0;
756f85cf 8727
6e3c9717 8728 switch (intel_crtc->config->pipe_bpp) {
756f85cf
PZ
8729 case 18:
8730 val |= PIPEMISC_DITHER_6_BPC;
8731 break;
8732 case 24:
8733 val |= PIPEMISC_DITHER_8_BPC;
8734 break;
8735 case 30:
8736 val |= PIPEMISC_DITHER_10_BPC;
8737 break;
8738 case 36:
8739 val |= PIPEMISC_DITHER_12_BPC;
8740 break;
8741 default:
8742 /* Case prevented by pipe_config_set_bpp. */
8743 BUG();
8744 }
8745
6e3c9717 8746 if (intel_crtc->config->dither)
756f85cf
PZ
8747 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
8748
391bf048 8749 I915_WRITE(PIPEMISC(intel_crtc->pipe), val);
756f85cf 8750 }
ee2b0b38
PZ
8751}
8752
d4b1931c
PZ
8753int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
8754{
8755 /*
8756 * Account for spread spectrum to avoid
8757 * oversubscribing the link. Max center spread
8758 * is 2.5%; use 5% for safety's sake.
8759 */
8760 u32 bps = target_clock * bpp * 21 / 20;
619d4d04 8761 return DIV_ROUND_UP(bps, link_bw * 8);
d4b1931c
PZ
8762}
8763
7429e9d4 8764static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
6cf86a5e 8765{
7429e9d4 8766 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
f48d8f23
PZ
8767}
8768
b75ca6f6
ACO
8769static void ironlake_compute_dpll(struct intel_crtc *intel_crtc,
8770 struct intel_crtc_state *crtc_state,
9e2c8475 8771 struct dpll *reduced_clock)
79e53945 8772{
de13a2e3 8773 struct drm_crtc *crtc = &intel_crtc->base;
79e53945
JB
8774 struct drm_device *dev = crtc->dev;
8775 struct drm_i915_private *dev_priv = dev->dev_private;
55bb9992 8776 struct drm_atomic_state *state = crtc_state->base.state;
da3ced29 8777 struct drm_connector *connector;
55bb9992
ACO
8778 struct drm_connector_state *connector_state;
8779 struct intel_encoder *encoder;
b75ca6f6 8780 u32 dpll, fp, fp2;
ceb41007 8781 int factor, i;
09ede541 8782 bool is_lvds = false, is_sdvo = false;
79e53945 8783
da3ced29 8784 for_each_connector_in_state(state, connector, connector_state, i) {
55bb9992
ACO
8785 if (connector_state->crtc != crtc_state->base.crtc)
8786 continue;
8787
8788 encoder = to_intel_encoder(connector_state->best_encoder);
8789
8790 switch (encoder->type) {
79e53945
JB
8791 case INTEL_OUTPUT_LVDS:
8792 is_lvds = true;
8793 break;
8794 case INTEL_OUTPUT_SDVO:
7d57382e 8795 case INTEL_OUTPUT_HDMI:
79e53945 8796 is_sdvo = true;
79e53945 8797 break;
6847d71b
PZ
8798 default:
8799 break;
79e53945
JB
8800 }
8801 }
79e53945 8802
c1858123 8803 /* Enable autotuning of the PLL clock (if permissible) */
8febb297
EA
8804 factor = 21;
8805 if (is_lvds) {
8806 if ((intel_panel_use_ssc(dev_priv) &&
e91e941b 8807 dev_priv->vbt.lvds_ssc_freq == 100000) ||
f0b44056 8808 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
8febb297 8809 factor = 25;
190f68c5 8810 } else if (crtc_state->sdvo_tv_clock)
8febb297 8811 factor = 20;
c1858123 8812
b75ca6f6
ACO
8813 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
8814
190f68c5 8815 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
b75ca6f6
ACO
8816 fp |= FP_CB_TUNE;
8817
8818 if (reduced_clock) {
8819 fp2 = i9xx_dpll_compute_fp(reduced_clock);
2c07245f 8820
b75ca6f6
ACO
8821 if (reduced_clock->m < factor * reduced_clock->n)
8822 fp2 |= FP_CB_TUNE;
8823 } else {
8824 fp2 = fp;
8825 }
9a7c7890 8826
5eddb70b 8827 dpll = 0;
2c07245f 8828
a07d6787
EA
8829 if (is_lvds)
8830 dpll |= DPLLB_MODE_LVDS;
8831 else
8832 dpll |= DPLLB_MODE_DAC_SERIAL;
198a037f 8833
190f68c5 8834 dpll |= (crtc_state->pixel_multiplier - 1)
ef1b460d 8835 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
198a037f
DV
8836
8837 if (is_sdvo)
4a33e48d 8838 dpll |= DPLL_SDVO_HIGH_SPEED;
190f68c5 8839 if (crtc_state->has_dp_encoder)
4a33e48d 8840 dpll |= DPLL_SDVO_HIGH_SPEED;
79e53945 8841
a07d6787 8842 /* compute bitmask from p1 value */
190f68c5 8843 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
a07d6787 8844 /* also FPA1 */
190f68c5 8845 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
a07d6787 8846
190f68c5 8847 switch (crtc_state->dpll.p2) {
a07d6787
EA
8848 case 5:
8849 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
8850 break;
8851 case 7:
8852 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
8853 break;
8854 case 10:
8855 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
8856 break;
8857 case 14:
8858 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
8859 break;
79e53945
JB
8860 }
8861
ceb41007 8862 if (is_lvds && intel_panel_use_ssc(dev_priv))
43565a06 8863 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
79e53945
JB
8864 else
8865 dpll |= PLL_REF_INPUT_DREFCLK;
8866
b75ca6f6
ACO
8867 dpll |= DPLL_VCO_ENABLE;
8868
8869 crtc_state->dpll_hw_state.dpll = dpll;
8870 crtc_state->dpll_hw_state.fp0 = fp;
8871 crtc_state->dpll_hw_state.fp1 = fp2;
de13a2e3
PZ
8872}
8873
190f68c5
ACO
8874static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
8875 struct intel_crtc_state *crtc_state)
de13a2e3 8876{
997c030c
ACO
8877 struct drm_device *dev = crtc->base.dev;
8878 struct drm_i915_private *dev_priv = dev->dev_private;
9e2c8475 8879 struct dpll reduced_clock;
7ed9f894 8880 bool has_reduced_clock = false;
e2b78267 8881 struct intel_shared_dpll *pll;
1b6f4958 8882 const struct intel_limit *limit;
997c030c 8883 int refclk = 120000;
de13a2e3 8884
dd3cd74a
ACO
8885 memset(&crtc_state->dpll_hw_state, 0,
8886 sizeof(crtc_state->dpll_hw_state));
8887
ded220e2
ACO
8888 crtc->lowfreq_avail = false;
8889
8890 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
8891 if (!crtc_state->has_pch_encoder)
8892 return 0;
79e53945 8893
997c030c
ACO
8894 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
8895 if (intel_panel_use_ssc(dev_priv)) {
8896 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
8897 dev_priv->vbt.lvds_ssc_freq);
8898 refclk = dev_priv->vbt.lvds_ssc_freq;
8899 }
8900
8901 if (intel_is_dual_link_lvds(dev)) {
8902 if (refclk == 100000)
8903 limit = &intel_limits_ironlake_dual_lvds_100m;
8904 else
8905 limit = &intel_limits_ironlake_dual_lvds;
8906 } else {
8907 if (refclk == 100000)
8908 limit = &intel_limits_ironlake_single_lvds_100m;
8909 else
8910 limit = &intel_limits_ironlake_single_lvds;
8911 }
8912 } else {
8913 limit = &intel_limits_ironlake_dac;
8914 }
8915
364ee29d 8916 if (!crtc_state->clock_set &&
997c030c
ACO
8917 !g4x_find_best_dpll(limit, crtc_state, crtc_state->port_clock,
8918 refclk, NULL, &crtc_state->dpll)) {
364ee29d
ACO
8919 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8920 return -EINVAL;
f47709a9 8921 }
79e53945 8922
b75ca6f6
ACO
8923 ironlake_compute_dpll(crtc, crtc_state,
8924 has_reduced_clock ? &reduced_clock : NULL);
66e985c0 8925
ded220e2
ACO
8926 pll = intel_get_shared_dpll(crtc, crtc_state, NULL);
8927 if (pll == NULL) {
8928 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
8929 pipe_name(crtc->pipe));
8930 return -EINVAL;
3fb37703 8931 }
79e53945 8932
ded220e2
ACO
8933 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
8934 has_reduced_clock)
c7653199 8935 crtc->lowfreq_avail = true;
e2b78267 8936
c8f7a0db 8937 return 0;
79e53945
JB
8938}
8939
eb14cb74
VS
8940static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
8941 struct intel_link_m_n *m_n)
8942{
8943 struct drm_device *dev = crtc->base.dev;
8944 struct drm_i915_private *dev_priv = dev->dev_private;
8945 enum pipe pipe = crtc->pipe;
8946
8947 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
8948 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
8949 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
8950 & ~TU_SIZE_MASK;
8951 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
8952 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
8953 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8954}
8955
8956static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
8957 enum transcoder transcoder,
b95af8be
VK
8958 struct intel_link_m_n *m_n,
8959 struct intel_link_m_n *m2_n2)
72419203
DV
8960{
8961 struct drm_device *dev = crtc->base.dev;
8962 struct drm_i915_private *dev_priv = dev->dev_private;
eb14cb74 8963 enum pipe pipe = crtc->pipe;
72419203 8964
eb14cb74
VS
8965 if (INTEL_INFO(dev)->gen >= 5) {
8966 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
8967 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
8968 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
8969 & ~TU_SIZE_MASK;
8970 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
8971 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
8972 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
b95af8be
VK
8973 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
8974 * gen < 8) and if DRRS is supported (to make sure the
8975 * registers are not unnecessarily read).
8976 */
8977 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
6e3c9717 8978 crtc->config->has_drrs) {
b95af8be
VK
8979 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
8980 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
8981 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
8982 & ~TU_SIZE_MASK;
8983 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
8984 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
8985 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8986 }
eb14cb74
VS
8987 } else {
8988 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
8989 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
8990 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
8991 & ~TU_SIZE_MASK;
8992 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
8993 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
8994 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
8995 }
8996}
8997
8998void intel_dp_get_m_n(struct intel_crtc *crtc,
5cec258b 8999 struct intel_crtc_state *pipe_config)
eb14cb74 9000{
681a8504 9001 if (pipe_config->has_pch_encoder)
eb14cb74
VS
9002 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
9003 else
9004 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be
VK
9005 &pipe_config->dp_m_n,
9006 &pipe_config->dp_m2_n2);
eb14cb74 9007}
72419203 9008
eb14cb74 9009static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
5cec258b 9010 struct intel_crtc_state *pipe_config)
eb14cb74
VS
9011{
9012 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be 9013 &pipe_config->fdi_m_n, NULL);
72419203
DV
9014}
9015
bd2e244f 9016static void skylake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 9017 struct intel_crtc_state *pipe_config)
bd2e244f
JB
9018{
9019 struct drm_device *dev = crtc->base.dev;
9020 struct drm_i915_private *dev_priv = dev->dev_private;
a1b2278e
CK
9021 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
9022 uint32_t ps_ctrl = 0;
9023 int id = -1;
9024 int i;
bd2e244f 9025
a1b2278e
CK
9026 /* find scaler attached to this pipe */
9027 for (i = 0; i < crtc->num_scalers; i++) {
9028 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
9029 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
9030 id = i;
9031 pipe_config->pch_pfit.enabled = true;
9032 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
9033 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
9034 break;
9035 }
9036 }
bd2e244f 9037
a1b2278e
CK
9038 scaler_state->scaler_id = id;
9039 if (id >= 0) {
9040 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
9041 } else {
9042 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
bd2e244f
JB
9043 }
9044}
9045
5724dbd1
DL
9046static void
9047skylake_get_initial_plane_config(struct intel_crtc *crtc,
9048 struct intel_initial_plane_config *plane_config)
bc8d7dff
DL
9049{
9050 struct drm_device *dev = crtc->base.dev;
9051 struct drm_i915_private *dev_priv = dev->dev_private;
40f46283 9052 u32 val, base, offset, stride_mult, tiling;
bc8d7dff
DL
9053 int pipe = crtc->pipe;
9054 int fourcc, pixel_format;
6761dd31 9055 unsigned int aligned_height;
bc8d7dff 9056 struct drm_framebuffer *fb;
1b842c89 9057 struct intel_framebuffer *intel_fb;
bc8d7dff 9058
d9806c9f 9059 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 9060 if (!intel_fb) {
bc8d7dff
DL
9061 DRM_DEBUG_KMS("failed to alloc fb\n");
9062 return;
9063 }
9064
1b842c89
DL
9065 fb = &intel_fb->base;
9066
bc8d7dff 9067 val = I915_READ(PLANE_CTL(pipe, 0));
42a7b088
DL
9068 if (!(val & PLANE_CTL_ENABLE))
9069 goto error;
9070
bc8d7dff
DL
9071 pixel_format = val & PLANE_CTL_FORMAT_MASK;
9072 fourcc = skl_format_to_fourcc(pixel_format,
9073 val & PLANE_CTL_ORDER_RGBX,
9074 val & PLANE_CTL_ALPHA_MASK);
9075 fb->pixel_format = fourcc;
9076 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9077
40f46283
DL
9078 tiling = val & PLANE_CTL_TILED_MASK;
9079 switch (tiling) {
9080 case PLANE_CTL_TILED_LINEAR:
9081 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
9082 break;
9083 case PLANE_CTL_TILED_X:
9084 plane_config->tiling = I915_TILING_X;
9085 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9086 break;
9087 case PLANE_CTL_TILED_Y:
9088 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
9089 break;
9090 case PLANE_CTL_TILED_YF:
9091 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
9092 break;
9093 default:
9094 MISSING_CASE(tiling);
9095 goto error;
9096 }
9097
bc8d7dff
DL
9098 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
9099 plane_config->base = base;
9100
9101 offset = I915_READ(PLANE_OFFSET(pipe, 0));
9102
9103 val = I915_READ(PLANE_SIZE(pipe, 0));
9104 fb->height = ((val >> 16) & 0xfff) + 1;
9105 fb->width = ((val >> 0) & 0x1fff) + 1;
9106
9107 val = I915_READ(PLANE_STRIDE(pipe, 0));
7b49f948 9108 stride_mult = intel_fb_stride_alignment(dev_priv, fb->modifier[0],
40f46283 9109 fb->pixel_format);
bc8d7dff
DL
9110 fb->pitches[0] = (val & 0x3ff) * stride_mult;
9111
9112 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
9113 fb->pixel_format,
9114 fb->modifier[0]);
bc8d7dff 9115
f37b5c2b 9116 plane_config->size = fb->pitches[0] * aligned_height;
bc8d7dff
DL
9117
9118 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9119 pipe_name(pipe), fb->width, fb->height,
9120 fb->bits_per_pixel, base, fb->pitches[0],
9121 plane_config->size);
9122
2d14030b 9123 plane_config->fb = intel_fb;
bc8d7dff
DL
9124 return;
9125
9126error:
9127 kfree(fb);
9128}
9129
2fa2fe9a 9130static void ironlake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 9131 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
9132{
9133 struct drm_device *dev = crtc->base.dev;
9134 struct drm_i915_private *dev_priv = dev->dev_private;
9135 uint32_t tmp;
9136
9137 tmp = I915_READ(PF_CTL(crtc->pipe));
9138
9139 if (tmp & PF_ENABLE) {
fd4daa9c 9140 pipe_config->pch_pfit.enabled = true;
2fa2fe9a
DV
9141 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
9142 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
cb8b2a30
DV
9143
9144 /* We currently do not free assignements of panel fitters on
9145 * ivb/hsw (since we don't use the higher upscaling modes which
9146 * differentiates them) so just WARN about this case for now. */
9147 if (IS_GEN7(dev)) {
9148 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
9149 PF_PIPE_SEL_IVB(crtc->pipe));
9150 }
2fa2fe9a 9151 }
79e53945
JB
9152}
9153
5724dbd1
DL
9154static void
9155ironlake_get_initial_plane_config(struct intel_crtc *crtc,
9156 struct intel_initial_plane_config *plane_config)
4c6baa59
JB
9157{
9158 struct drm_device *dev = crtc->base.dev;
9159 struct drm_i915_private *dev_priv = dev->dev_private;
9160 u32 val, base, offset;
aeee5a49 9161 int pipe = crtc->pipe;
4c6baa59 9162 int fourcc, pixel_format;
6761dd31 9163 unsigned int aligned_height;
b113d5ee 9164 struct drm_framebuffer *fb;
1b842c89 9165 struct intel_framebuffer *intel_fb;
4c6baa59 9166
42a7b088
DL
9167 val = I915_READ(DSPCNTR(pipe));
9168 if (!(val & DISPLAY_PLANE_ENABLE))
9169 return;
9170
d9806c9f 9171 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 9172 if (!intel_fb) {
4c6baa59
JB
9173 DRM_DEBUG_KMS("failed to alloc fb\n");
9174 return;
9175 }
9176
1b842c89
DL
9177 fb = &intel_fb->base;
9178
18c5247e
DV
9179 if (INTEL_INFO(dev)->gen >= 4) {
9180 if (val & DISPPLANE_TILED) {
49af449b 9181 plane_config->tiling = I915_TILING_X;
18c5247e
DV
9182 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9183 }
9184 }
4c6baa59
JB
9185
9186 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 9187 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
9188 fb->pixel_format = fourcc;
9189 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
4c6baa59 9190
aeee5a49 9191 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
4c6baa59 9192 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
aeee5a49 9193 offset = I915_READ(DSPOFFSET(pipe));
4c6baa59 9194 } else {
49af449b 9195 if (plane_config->tiling)
aeee5a49 9196 offset = I915_READ(DSPTILEOFF(pipe));
4c6baa59 9197 else
aeee5a49 9198 offset = I915_READ(DSPLINOFF(pipe));
4c6baa59
JB
9199 }
9200 plane_config->base = base;
9201
9202 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
9203 fb->width = ((val >> 16) & 0xfff) + 1;
9204 fb->height = ((val >> 0) & 0xfff) + 1;
4c6baa59
JB
9205
9206 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 9207 fb->pitches[0] = val & 0xffffffc0;
4c6baa59 9208
b113d5ee 9209 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
9210 fb->pixel_format,
9211 fb->modifier[0]);
4c6baa59 9212
f37b5c2b 9213 plane_config->size = fb->pitches[0] * aligned_height;
4c6baa59 9214
2844a921
DL
9215 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9216 pipe_name(pipe), fb->width, fb->height,
9217 fb->bits_per_pixel, base, fb->pitches[0],
9218 plane_config->size);
b113d5ee 9219
2d14030b 9220 plane_config->fb = intel_fb;
4c6baa59
JB
9221}
9222
0e8ffe1b 9223static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
5cec258b 9224 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
9225{
9226 struct drm_device *dev = crtc->base.dev;
9227 struct drm_i915_private *dev_priv = dev->dev_private;
1729050e 9228 enum intel_display_power_domain power_domain;
0e8ffe1b 9229 uint32_t tmp;
1729050e 9230 bool ret;
0e8ffe1b 9231
1729050e
ID
9232 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
9233 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
930e8c9e
PZ
9234 return false;
9235
e143a21c 9236 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
8106ddbd 9237 pipe_config->shared_dpll = NULL;
eccb140b 9238
1729050e 9239 ret = false;
0e8ffe1b
DV
9240 tmp = I915_READ(PIPECONF(crtc->pipe));
9241 if (!(tmp & PIPECONF_ENABLE))
1729050e 9242 goto out;
0e8ffe1b 9243
42571aef
VS
9244 switch (tmp & PIPECONF_BPC_MASK) {
9245 case PIPECONF_6BPC:
9246 pipe_config->pipe_bpp = 18;
9247 break;
9248 case PIPECONF_8BPC:
9249 pipe_config->pipe_bpp = 24;
9250 break;
9251 case PIPECONF_10BPC:
9252 pipe_config->pipe_bpp = 30;
9253 break;
9254 case PIPECONF_12BPC:
9255 pipe_config->pipe_bpp = 36;
9256 break;
9257 default:
9258 break;
9259 }
9260
b5a9fa09
DV
9261 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
9262 pipe_config->limited_color_range = true;
9263
ab9412ba 9264 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
66e985c0 9265 struct intel_shared_dpll *pll;
8106ddbd 9266 enum intel_dpll_id pll_id;
66e985c0 9267
88adfff1
DV
9268 pipe_config->has_pch_encoder = true;
9269
627eb5a3
DV
9270 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
9271 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9272 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
9273
9274 ironlake_get_fdi_m_n_config(crtc, pipe_config);
6c49f241 9275
2d1fe073 9276 if (HAS_PCH_IBX(dev_priv)) {
d9a7bc67
ID
9277 /*
9278 * The pipe->pch transcoder and pch transcoder->pll
9279 * mapping is fixed.
9280 */
8106ddbd 9281 pll_id = (enum intel_dpll_id) crtc->pipe;
c0d43d62
DV
9282 } else {
9283 tmp = I915_READ(PCH_DPLL_SEL);
9284 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
8106ddbd 9285 pll_id = DPLL_ID_PCH_PLL_B;
c0d43d62 9286 else
8106ddbd 9287 pll_id= DPLL_ID_PCH_PLL_A;
c0d43d62 9288 }
66e985c0 9289
8106ddbd
ACO
9290 pipe_config->shared_dpll =
9291 intel_get_shared_dpll_by_id(dev_priv, pll_id);
9292 pll = pipe_config->shared_dpll;
66e985c0 9293
2edd6443
ACO
9294 WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll,
9295 &pipe_config->dpll_hw_state));
c93f54cf
DV
9296
9297 tmp = pipe_config->dpll_hw_state.dpll;
9298 pipe_config->pixel_multiplier =
9299 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
9300 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
18442d08
VS
9301
9302 ironlake_pch_clock_get(crtc, pipe_config);
6c49f241
DV
9303 } else {
9304 pipe_config->pixel_multiplier = 1;
627eb5a3
DV
9305 }
9306
1bd1bd80 9307 intel_get_pipe_timings(crtc, pipe_config);
bc58be60 9308 intel_get_pipe_src_size(crtc, pipe_config);
1bd1bd80 9309
2fa2fe9a
DV
9310 ironlake_get_pfit_config(crtc, pipe_config);
9311
1729050e
ID
9312 ret = true;
9313
9314out:
9315 intel_display_power_put(dev_priv, power_domain);
9316
9317 return ret;
0e8ffe1b
DV
9318}
9319
be256dc7
PZ
9320static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
9321{
9322 struct drm_device *dev = dev_priv->dev;
be256dc7 9323 struct intel_crtc *crtc;
be256dc7 9324
d3fcc808 9325 for_each_intel_crtc(dev, crtc)
e2c719b7 9326 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
be256dc7
PZ
9327 pipe_name(crtc->pipe));
9328
e2c719b7
RC
9329 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
9330 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
01403de3
VS
9331 I915_STATE_WARN(I915_READ(WRPLL_CTL(0)) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
9332 I915_STATE_WARN(I915_READ(WRPLL_CTL(1)) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
e2c719b7
RC
9333 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
9334 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
be256dc7 9335 "CPU PWM1 enabled\n");
c5107b87 9336 if (IS_HASWELL(dev))
e2c719b7 9337 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
c5107b87 9338 "CPU PWM2 enabled\n");
e2c719b7 9339 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
be256dc7 9340 "PCH PWM1 enabled\n");
e2c719b7 9341 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
be256dc7 9342 "Utility pin enabled\n");
e2c719b7 9343 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
be256dc7 9344
9926ada1
PZ
9345 /*
9346 * In theory we can still leave IRQs enabled, as long as only the HPD
9347 * interrupts remain enabled. We used to check for that, but since it's
9348 * gen-specific and since we only disable LCPLL after we fully disable
9349 * the interrupts, the check below should be enough.
9350 */
e2c719b7 9351 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
be256dc7
PZ
9352}
9353
9ccd5aeb
PZ
9354static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
9355{
9356 struct drm_device *dev = dev_priv->dev;
9357
9358 if (IS_HASWELL(dev))
9359 return I915_READ(D_COMP_HSW);
9360 else
9361 return I915_READ(D_COMP_BDW);
9362}
9363
3c4c9b81
PZ
9364static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
9365{
9366 struct drm_device *dev = dev_priv->dev;
9367
9368 if (IS_HASWELL(dev)) {
9369 mutex_lock(&dev_priv->rps.hw_lock);
9370 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
9371 val))
f475dadf 9372 DRM_ERROR("Failed to write to D_COMP\n");
3c4c9b81
PZ
9373 mutex_unlock(&dev_priv->rps.hw_lock);
9374 } else {
9ccd5aeb
PZ
9375 I915_WRITE(D_COMP_BDW, val);
9376 POSTING_READ(D_COMP_BDW);
3c4c9b81 9377 }
be256dc7
PZ
9378}
9379
9380/*
9381 * This function implements pieces of two sequences from BSpec:
9382 * - Sequence for display software to disable LCPLL
9383 * - Sequence for display software to allow package C8+
9384 * The steps implemented here are just the steps that actually touch the LCPLL
9385 * register. Callers should take care of disabling all the display engine
9386 * functions, doing the mode unset, fixing interrupts, etc.
9387 */
6ff58d53
PZ
9388static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
9389 bool switch_to_fclk, bool allow_power_down)
be256dc7
PZ
9390{
9391 uint32_t val;
9392
9393 assert_can_disable_lcpll(dev_priv);
9394
9395 val = I915_READ(LCPLL_CTL);
9396
9397 if (switch_to_fclk) {
9398 val |= LCPLL_CD_SOURCE_FCLK;
9399 I915_WRITE(LCPLL_CTL, val);
9400
9401 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9402 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9403 DRM_ERROR("Switching to FCLK failed\n");
9404
9405 val = I915_READ(LCPLL_CTL);
9406 }
9407
9408 val |= LCPLL_PLL_DISABLE;
9409 I915_WRITE(LCPLL_CTL, val);
9410 POSTING_READ(LCPLL_CTL);
9411
9412 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
9413 DRM_ERROR("LCPLL still locked\n");
9414
9ccd5aeb 9415 val = hsw_read_dcomp(dev_priv);
be256dc7 9416 val |= D_COMP_COMP_DISABLE;
3c4c9b81 9417 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
9418 ndelay(100);
9419
9ccd5aeb
PZ
9420 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
9421 1))
be256dc7
PZ
9422 DRM_ERROR("D_COMP RCOMP still in progress\n");
9423
9424 if (allow_power_down) {
9425 val = I915_READ(LCPLL_CTL);
9426 val |= LCPLL_POWER_DOWN_ALLOW;
9427 I915_WRITE(LCPLL_CTL, val);
9428 POSTING_READ(LCPLL_CTL);
9429 }
9430}
9431
9432/*
9433 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
9434 * source.
9435 */
6ff58d53 9436static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
be256dc7
PZ
9437{
9438 uint32_t val;
9439
9440 val = I915_READ(LCPLL_CTL);
9441
9442 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
9443 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
9444 return;
9445
a8a8bd54
PZ
9446 /*
9447 * Make sure we're not on PC8 state before disabling PC8, otherwise
9448 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
a8a8bd54 9449 */
59bad947 9450 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
215733fa 9451
be256dc7
PZ
9452 if (val & LCPLL_POWER_DOWN_ALLOW) {
9453 val &= ~LCPLL_POWER_DOWN_ALLOW;
9454 I915_WRITE(LCPLL_CTL, val);
35d8f2eb 9455 POSTING_READ(LCPLL_CTL);
be256dc7
PZ
9456 }
9457
9ccd5aeb 9458 val = hsw_read_dcomp(dev_priv);
be256dc7
PZ
9459 val |= D_COMP_COMP_FORCE;
9460 val &= ~D_COMP_COMP_DISABLE;
3c4c9b81 9461 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
9462
9463 val = I915_READ(LCPLL_CTL);
9464 val &= ~LCPLL_PLL_DISABLE;
9465 I915_WRITE(LCPLL_CTL, val);
9466
9467 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
9468 DRM_ERROR("LCPLL not locked yet\n");
9469
9470 if (val & LCPLL_CD_SOURCE_FCLK) {
9471 val = I915_READ(LCPLL_CTL);
9472 val &= ~LCPLL_CD_SOURCE_FCLK;
9473 I915_WRITE(LCPLL_CTL, val);
9474
9475 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9476 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9477 DRM_ERROR("Switching back to LCPLL failed\n");
9478 }
215733fa 9479
59bad947 9480 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
b6283055 9481 intel_update_cdclk(dev_priv->dev);
be256dc7
PZ
9482}
9483
765dab67
PZ
9484/*
9485 * Package states C8 and deeper are really deep PC states that can only be
9486 * reached when all the devices on the system allow it, so even if the graphics
9487 * device allows PC8+, it doesn't mean the system will actually get to these
9488 * states. Our driver only allows PC8+ when going into runtime PM.
9489 *
9490 * The requirements for PC8+ are that all the outputs are disabled, the power
9491 * well is disabled and most interrupts are disabled, and these are also
9492 * requirements for runtime PM. When these conditions are met, we manually do
9493 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
9494 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
9495 * hang the machine.
9496 *
9497 * When we really reach PC8 or deeper states (not just when we allow it) we lose
9498 * the state of some registers, so when we come back from PC8+ we need to
9499 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
9500 * need to take care of the registers kept by RC6. Notice that this happens even
9501 * if we don't put the device in PCI D3 state (which is what currently happens
9502 * because of the runtime PM support).
9503 *
9504 * For more, read "Display Sequences for Package C8" on the hardware
9505 * documentation.
9506 */
a14cb6fc 9507void hsw_enable_pc8(struct drm_i915_private *dev_priv)
c67a470b 9508{
c67a470b
PZ
9509 struct drm_device *dev = dev_priv->dev;
9510 uint32_t val;
9511
c67a470b
PZ
9512 DRM_DEBUG_KMS("Enabling package C8+\n");
9513
c2699524 9514 if (HAS_PCH_LPT_LP(dev)) {
c67a470b
PZ
9515 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9516 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
9517 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9518 }
9519
9520 lpt_disable_clkout_dp(dev);
c67a470b
PZ
9521 hsw_disable_lcpll(dev_priv, true, true);
9522}
9523
a14cb6fc 9524void hsw_disable_pc8(struct drm_i915_private *dev_priv)
c67a470b
PZ
9525{
9526 struct drm_device *dev = dev_priv->dev;
9527 uint32_t val;
9528
c67a470b
PZ
9529 DRM_DEBUG_KMS("Disabling package C8+\n");
9530
9531 hsw_restore_lcpll(dev_priv);
c67a470b
PZ
9532 lpt_init_pch_refclk(dev);
9533
c2699524 9534 if (HAS_PCH_LPT_LP(dev)) {
c67a470b
PZ
9535 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9536 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
9537 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9538 }
c67a470b
PZ
9539}
9540
27c329ed 9541static void broxton_modeset_commit_cdclk(struct drm_atomic_state *old_state)
f8437dd1 9542{
a821fc46 9543 struct drm_device *dev = old_state->dev;
1a617b77
ML
9544 struct intel_atomic_state *old_intel_state =
9545 to_intel_atomic_state(old_state);
9546 unsigned int req_cdclk = old_intel_state->dev_cdclk;
f8437dd1 9547
c6c4696f 9548 broxton_set_cdclk(to_i915(dev), req_cdclk);
f8437dd1
VK
9549}
9550
b432e5cf 9551/* compute the max rate for new configuration */
27c329ed 9552static int ilk_max_pixel_rate(struct drm_atomic_state *state)
b432e5cf 9553{
565602d7
ML
9554 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
9555 struct drm_i915_private *dev_priv = state->dev->dev_private;
9556 struct drm_crtc *crtc;
9557 struct drm_crtc_state *cstate;
27c329ed 9558 struct intel_crtc_state *crtc_state;
565602d7
ML
9559 unsigned max_pixel_rate = 0, i;
9560 enum pipe pipe;
b432e5cf 9561
565602d7
ML
9562 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
9563 sizeof(intel_state->min_pixclk));
27c329ed 9564
565602d7
ML
9565 for_each_crtc_in_state(state, crtc, cstate, i) {
9566 int pixel_rate;
27c329ed 9567
565602d7
ML
9568 crtc_state = to_intel_crtc_state(cstate);
9569 if (!crtc_state->base.enable) {
9570 intel_state->min_pixclk[i] = 0;
b432e5cf 9571 continue;
565602d7 9572 }
b432e5cf 9573
27c329ed 9574 pixel_rate = ilk_pipe_pixel_rate(crtc_state);
b432e5cf
VS
9575
9576 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
565602d7 9577 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
b432e5cf
VS
9578 pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95);
9579
565602d7 9580 intel_state->min_pixclk[i] = pixel_rate;
b432e5cf
VS
9581 }
9582
565602d7
ML
9583 for_each_pipe(dev_priv, pipe)
9584 max_pixel_rate = max(intel_state->min_pixclk[pipe], max_pixel_rate);
9585
b432e5cf
VS
9586 return max_pixel_rate;
9587}
9588
9589static void broadwell_set_cdclk(struct drm_device *dev, int cdclk)
9590{
9591 struct drm_i915_private *dev_priv = dev->dev_private;
9592 uint32_t val, data;
9593 int ret;
9594
9595 if (WARN((I915_READ(LCPLL_CTL) &
9596 (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK |
9597 LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE |
9598 LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW |
9599 LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK,
9600 "trying to change cdclk frequency with cdclk not enabled\n"))
9601 return;
9602
9603 mutex_lock(&dev_priv->rps.hw_lock);
9604 ret = sandybridge_pcode_write(dev_priv,
9605 BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
9606 mutex_unlock(&dev_priv->rps.hw_lock);
9607 if (ret) {
9608 DRM_ERROR("failed to inform pcode about cdclk change\n");
9609 return;
9610 }
9611
9612 val = I915_READ(LCPLL_CTL);
9613 val |= LCPLL_CD_SOURCE_FCLK;
9614 I915_WRITE(LCPLL_CTL, val);
9615
5ba00178
TU
9616 if (wait_for_us(I915_READ(LCPLL_CTL) &
9617 LCPLL_CD_SOURCE_FCLK_DONE, 1))
b432e5cf
VS
9618 DRM_ERROR("Switching to FCLK failed\n");
9619
9620 val = I915_READ(LCPLL_CTL);
9621 val &= ~LCPLL_CLK_FREQ_MASK;
9622
9623 switch (cdclk) {
9624 case 450000:
9625 val |= LCPLL_CLK_FREQ_450;
9626 data = 0;
9627 break;
9628 case 540000:
9629 val |= LCPLL_CLK_FREQ_54O_BDW;
9630 data = 1;
9631 break;
9632 case 337500:
9633 val |= LCPLL_CLK_FREQ_337_5_BDW;
9634 data = 2;
9635 break;
9636 case 675000:
9637 val |= LCPLL_CLK_FREQ_675_BDW;
9638 data = 3;
9639 break;
9640 default:
9641 WARN(1, "invalid cdclk frequency\n");
9642 return;
9643 }
9644
9645 I915_WRITE(LCPLL_CTL, val);
9646
9647 val = I915_READ(LCPLL_CTL);
9648 val &= ~LCPLL_CD_SOURCE_FCLK;
9649 I915_WRITE(LCPLL_CTL, val);
9650
5ba00178
TU
9651 if (wait_for_us((I915_READ(LCPLL_CTL) &
9652 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
b432e5cf
VS
9653 DRM_ERROR("Switching back to LCPLL failed\n");
9654
9655 mutex_lock(&dev_priv->rps.hw_lock);
9656 sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data);
9657 mutex_unlock(&dev_priv->rps.hw_lock);
9658
7f1052a8
VS
9659 I915_WRITE(CDCLK_FREQ, DIV_ROUND_CLOSEST(cdclk, 1000) - 1);
9660
b432e5cf
VS
9661 intel_update_cdclk(dev);
9662
9663 WARN(cdclk != dev_priv->cdclk_freq,
9664 "cdclk requested %d kHz but got %d kHz\n",
9665 cdclk, dev_priv->cdclk_freq);
9666}
9667
587c7914
VS
9668static int broadwell_calc_cdclk(int max_pixclk)
9669{
9670 if (max_pixclk > 540000)
9671 return 675000;
9672 else if (max_pixclk > 450000)
9673 return 540000;
9674 else if (max_pixclk > 337500)
9675 return 450000;
9676 else
9677 return 337500;
9678}
9679
27c329ed 9680static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state)
b432e5cf 9681{
27c329ed 9682 struct drm_i915_private *dev_priv = to_i915(state->dev);
1a617b77 9683 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
27c329ed 9684 int max_pixclk = ilk_max_pixel_rate(state);
b432e5cf
VS
9685 int cdclk;
9686
9687 /*
9688 * FIXME should also account for plane ratio
9689 * once 64bpp pixel formats are supported.
9690 */
587c7914 9691 cdclk = broadwell_calc_cdclk(max_pixclk);
b432e5cf 9692
b432e5cf 9693 if (cdclk > dev_priv->max_cdclk_freq) {
63ba534e
ML
9694 DRM_DEBUG_KMS("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
9695 cdclk, dev_priv->max_cdclk_freq);
9696 return -EINVAL;
b432e5cf
VS
9697 }
9698
1a617b77
ML
9699 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
9700 if (!intel_state->active_crtcs)
587c7914 9701 intel_state->dev_cdclk = broadwell_calc_cdclk(0);
b432e5cf
VS
9702
9703 return 0;
9704}
9705
27c329ed 9706static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state)
b432e5cf 9707{
27c329ed 9708 struct drm_device *dev = old_state->dev;
1a617b77
ML
9709 struct intel_atomic_state *old_intel_state =
9710 to_intel_atomic_state(old_state);
9711 unsigned req_cdclk = old_intel_state->dev_cdclk;
b432e5cf 9712
27c329ed 9713 broadwell_set_cdclk(dev, req_cdclk);
b432e5cf
VS
9714}
9715
c89e39f3
CT
9716static int skl_modeset_calc_cdclk(struct drm_atomic_state *state)
9717{
9718 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
9719 struct drm_i915_private *dev_priv = to_i915(state->dev);
9720 const int max_pixclk = ilk_max_pixel_rate(state);
a8ca4934 9721 int vco = intel_state->cdclk_pll_vco;
c89e39f3
CT
9722 int cdclk;
9723
9724 /*
9725 * FIXME should also account for plane ratio
9726 * once 64bpp pixel formats are supported.
9727 */
a8ca4934 9728 cdclk = skl_calc_cdclk(max_pixclk, vco);
c89e39f3
CT
9729
9730 /*
9731 * FIXME move the cdclk caclulation to
9732 * compute_config() so we can fail gracegully.
9733 */
9734 if (cdclk > dev_priv->max_cdclk_freq) {
9735 DRM_ERROR("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
9736 cdclk, dev_priv->max_cdclk_freq);
9737 cdclk = dev_priv->max_cdclk_freq;
9738 }
9739
9740 intel_state->cdclk = intel_state->dev_cdclk = cdclk;
9741 if (!intel_state->active_crtcs)
a8ca4934 9742 intel_state->dev_cdclk = skl_calc_cdclk(0, vco);
c89e39f3
CT
9743
9744 return 0;
9745}
9746
9747static void skl_modeset_commit_cdclk(struct drm_atomic_state *old_state)
9748{
1cd593e0
VS
9749 struct drm_i915_private *dev_priv = to_i915(old_state->dev);
9750 struct intel_atomic_state *intel_state = to_intel_atomic_state(old_state);
9751 unsigned int req_cdclk = intel_state->dev_cdclk;
9752 unsigned int req_vco = intel_state->cdclk_pll_vco;
c89e39f3 9753
1cd593e0 9754 skl_set_cdclk(dev_priv, req_cdclk, req_vco);
c89e39f3
CT
9755}
9756
190f68c5
ACO
9757static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
9758 struct intel_crtc_state *crtc_state)
09b4ddf9 9759{
af3997b5
MK
9760 struct intel_encoder *intel_encoder =
9761 intel_ddi_get_crtc_new_encoder(crtc_state);
9762
9763 if (intel_encoder->type != INTEL_OUTPUT_DSI) {
9764 if (!intel_ddi_pll_select(crtc, crtc_state))
9765 return -EINVAL;
9766 }
716c2e55 9767
c7653199 9768 crtc->lowfreq_avail = false;
644cef34 9769
c8f7a0db 9770 return 0;
79e53945
JB
9771}
9772
3760b59c
S
9773static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
9774 enum port port,
9775 struct intel_crtc_state *pipe_config)
9776{
8106ddbd
ACO
9777 enum intel_dpll_id id;
9778
3760b59c
S
9779 switch (port) {
9780 case PORT_A:
9781 pipe_config->ddi_pll_sel = SKL_DPLL0;
08250c4b 9782 id = DPLL_ID_SKL_DPLL0;
3760b59c
S
9783 break;
9784 case PORT_B:
9785 pipe_config->ddi_pll_sel = SKL_DPLL1;
08250c4b 9786 id = DPLL_ID_SKL_DPLL1;
3760b59c
S
9787 break;
9788 case PORT_C:
9789 pipe_config->ddi_pll_sel = SKL_DPLL2;
08250c4b 9790 id = DPLL_ID_SKL_DPLL2;
3760b59c
S
9791 break;
9792 default:
9793 DRM_ERROR("Incorrect port type\n");
8106ddbd 9794 return;
3760b59c 9795 }
8106ddbd
ACO
9796
9797 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
3760b59c
S
9798}
9799
96b7dfb7
S
9800static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
9801 enum port port,
5cec258b 9802 struct intel_crtc_state *pipe_config)
96b7dfb7 9803{
8106ddbd 9804 enum intel_dpll_id id;
a3c988ea 9805 u32 temp;
96b7dfb7
S
9806
9807 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
9808 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
9809
9810 switch (pipe_config->ddi_pll_sel) {
3148ade7 9811 case SKL_DPLL0:
a3c988ea
ACO
9812 id = DPLL_ID_SKL_DPLL0;
9813 break;
96b7dfb7 9814 case SKL_DPLL1:
8106ddbd 9815 id = DPLL_ID_SKL_DPLL1;
96b7dfb7
S
9816 break;
9817 case SKL_DPLL2:
8106ddbd 9818 id = DPLL_ID_SKL_DPLL2;
96b7dfb7
S
9819 break;
9820 case SKL_DPLL3:
8106ddbd 9821 id = DPLL_ID_SKL_DPLL3;
96b7dfb7 9822 break;
8106ddbd
ACO
9823 default:
9824 MISSING_CASE(pipe_config->ddi_pll_sel);
9825 return;
96b7dfb7 9826 }
8106ddbd
ACO
9827
9828 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
96b7dfb7
S
9829}
9830
7d2c8175
DL
9831static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
9832 enum port port,
5cec258b 9833 struct intel_crtc_state *pipe_config)
7d2c8175 9834{
8106ddbd
ACO
9835 enum intel_dpll_id id;
9836
7d2c8175
DL
9837 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
9838
9839 switch (pipe_config->ddi_pll_sel) {
9840 case PORT_CLK_SEL_WRPLL1:
8106ddbd 9841 id = DPLL_ID_WRPLL1;
7d2c8175
DL
9842 break;
9843 case PORT_CLK_SEL_WRPLL2:
8106ddbd 9844 id = DPLL_ID_WRPLL2;
7d2c8175 9845 break;
00490c22 9846 case PORT_CLK_SEL_SPLL:
8106ddbd 9847 id = DPLL_ID_SPLL;
79bd23da 9848 break;
9d16da65
ACO
9849 case PORT_CLK_SEL_LCPLL_810:
9850 id = DPLL_ID_LCPLL_810;
9851 break;
9852 case PORT_CLK_SEL_LCPLL_1350:
9853 id = DPLL_ID_LCPLL_1350;
9854 break;
9855 case PORT_CLK_SEL_LCPLL_2700:
9856 id = DPLL_ID_LCPLL_2700;
9857 break;
8106ddbd
ACO
9858 default:
9859 MISSING_CASE(pipe_config->ddi_pll_sel);
9860 /* fall through */
9861 case PORT_CLK_SEL_NONE:
8106ddbd 9862 return;
7d2c8175 9863 }
8106ddbd
ACO
9864
9865 pipe_config->shared_dpll = intel_get_shared_dpll_by_id(dev_priv, id);
7d2c8175
DL
9866}
9867
cf30429e
JN
9868static bool hsw_get_transcoder_state(struct intel_crtc *crtc,
9869 struct intel_crtc_state *pipe_config,
9870 unsigned long *power_domain_mask)
9871{
9872 struct drm_device *dev = crtc->base.dev;
9873 struct drm_i915_private *dev_priv = dev->dev_private;
9874 enum intel_display_power_domain power_domain;
9875 u32 tmp;
9876
d9a7bc67
ID
9877 /*
9878 * The pipe->transcoder mapping is fixed with the exception of the eDP
9879 * transcoder handled below.
9880 */
cf30429e
JN
9881 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
9882
9883 /*
9884 * XXX: Do intel_display_power_get_if_enabled before reading this (for
9885 * consistency and less surprising code; it's in always on power).
9886 */
9887 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
9888 if (tmp & TRANS_DDI_FUNC_ENABLE) {
9889 enum pipe trans_edp_pipe;
9890 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
9891 default:
9892 WARN(1, "unknown pipe linked to edp transcoder\n");
9893 case TRANS_DDI_EDP_INPUT_A_ONOFF:
9894 case TRANS_DDI_EDP_INPUT_A_ON:
9895 trans_edp_pipe = PIPE_A;
9896 break;
9897 case TRANS_DDI_EDP_INPUT_B_ONOFF:
9898 trans_edp_pipe = PIPE_B;
9899 break;
9900 case TRANS_DDI_EDP_INPUT_C_ONOFF:
9901 trans_edp_pipe = PIPE_C;
9902 break;
9903 }
9904
9905 if (trans_edp_pipe == crtc->pipe)
9906 pipe_config->cpu_transcoder = TRANSCODER_EDP;
9907 }
9908
9909 power_domain = POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder);
9910 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
9911 return false;
9912 *power_domain_mask |= BIT(power_domain);
9913
9914 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
9915
9916 return tmp & PIPECONF_ENABLE;
9917}
9918
4d1de975
JN
9919static bool bxt_get_dsi_transcoder_state(struct intel_crtc *crtc,
9920 struct intel_crtc_state *pipe_config,
9921 unsigned long *power_domain_mask)
9922{
9923 struct drm_device *dev = crtc->base.dev;
9924 struct drm_i915_private *dev_priv = dev->dev_private;
9925 enum intel_display_power_domain power_domain;
9926 enum port port;
9927 enum transcoder cpu_transcoder;
9928 u32 tmp;
9929
9930 pipe_config->has_dsi_encoder = false;
9931
9932 for_each_port_masked(port, BIT(PORT_A) | BIT(PORT_C)) {
9933 if (port == PORT_A)
9934 cpu_transcoder = TRANSCODER_DSI_A;
9935 else
9936 cpu_transcoder = TRANSCODER_DSI_C;
9937
9938 power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
9939 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
9940 continue;
9941 *power_domain_mask |= BIT(power_domain);
9942
db18b6a6
ID
9943 /*
9944 * The PLL needs to be enabled with a valid divider
9945 * configuration, otherwise accessing DSI registers will hang
9946 * the machine. See BSpec North Display Engine
9947 * registers/MIPI[BXT]. We can break out here early, since we
9948 * need the same DSI PLL to be enabled for both DSI ports.
9949 */
9950 if (!intel_dsi_pll_is_enabled(dev_priv))
9951 break;
9952
4d1de975
JN
9953 /* XXX: this works for video mode only */
9954 tmp = I915_READ(BXT_MIPI_PORT_CTRL(port));
9955 if (!(tmp & DPI_ENABLE))
9956 continue;
9957
9958 tmp = I915_READ(MIPI_CTRL(port));
9959 if ((tmp & BXT_PIPE_SELECT_MASK) != BXT_PIPE_SELECT(crtc->pipe))
9960 continue;
9961
9962 pipe_config->cpu_transcoder = cpu_transcoder;
9963 pipe_config->has_dsi_encoder = true;
9964 break;
9965 }
9966
9967 return pipe_config->has_dsi_encoder;
9968}
9969
26804afd 9970static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
5cec258b 9971 struct intel_crtc_state *pipe_config)
26804afd
DV
9972{
9973 struct drm_device *dev = crtc->base.dev;
9974 struct drm_i915_private *dev_priv = dev->dev_private;
d452c5b6 9975 struct intel_shared_dpll *pll;
26804afd
DV
9976 enum port port;
9977 uint32_t tmp;
9978
9979 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
9980
9981 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
9982
ef11bdb3 9983 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
96b7dfb7 9984 skylake_get_ddi_pll(dev_priv, port, pipe_config);
3760b59c
S
9985 else if (IS_BROXTON(dev))
9986 bxt_get_ddi_pll(dev_priv, port, pipe_config);
96b7dfb7
S
9987 else
9988 haswell_get_ddi_pll(dev_priv, port, pipe_config);
9cd86933 9989
8106ddbd
ACO
9990 pll = pipe_config->shared_dpll;
9991 if (pll) {
2edd6443
ACO
9992 WARN_ON(!pll->funcs.get_hw_state(dev_priv, pll,
9993 &pipe_config->dpll_hw_state));
d452c5b6
DV
9994 }
9995
26804afd
DV
9996 /*
9997 * Haswell has only FDI/PCH transcoder A. It is which is connected to
9998 * DDI E. So just check whether this pipe is wired to DDI E and whether
9999 * the PCH transcoder is on.
10000 */
ca370455
DL
10001 if (INTEL_INFO(dev)->gen < 9 &&
10002 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
26804afd
DV
10003 pipe_config->has_pch_encoder = true;
10004
10005 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
10006 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
10007 FDI_DP_PORT_WIDTH_SHIFT) + 1;
10008
10009 ironlake_get_fdi_m_n_config(crtc, pipe_config);
10010 }
10011}
10012
0e8ffe1b 10013static bool haswell_get_pipe_config(struct intel_crtc *crtc,
5cec258b 10014 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
10015{
10016 struct drm_device *dev = crtc->base.dev;
10017 struct drm_i915_private *dev_priv = dev->dev_private;
1729050e
ID
10018 enum intel_display_power_domain power_domain;
10019 unsigned long power_domain_mask;
cf30429e 10020 bool active;
0e8ffe1b 10021
1729050e
ID
10022 power_domain = POWER_DOMAIN_PIPE(crtc->pipe);
10023 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
b5482bd0 10024 return false;
1729050e
ID
10025 power_domain_mask = BIT(power_domain);
10026
8106ddbd 10027 pipe_config->shared_dpll = NULL;
c0d43d62 10028
cf30429e 10029 active = hsw_get_transcoder_state(crtc, pipe_config, &power_domain_mask);
eccb140b 10030
4d1de975
JN
10031 if (IS_BROXTON(dev_priv)) {
10032 bxt_get_dsi_transcoder_state(crtc, pipe_config,
10033 &power_domain_mask);
10034 WARN_ON(active && pipe_config->has_dsi_encoder);
10035 if (pipe_config->has_dsi_encoder)
10036 active = true;
10037 }
10038
cf30429e 10039 if (!active)
1729050e 10040 goto out;
0e8ffe1b 10041
4d1de975
JN
10042 if (!pipe_config->has_dsi_encoder) {
10043 haswell_get_ddi_port_state(crtc, pipe_config);
10044 intel_get_pipe_timings(crtc, pipe_config);
10045 }
627eb5a3 10046
bc58be60 10047 intel_get_pipe_src_size(crtc, pipe_config);
1bd1bd80 10048
05dc698c
LL
10049 pipe_config->gamma_mode =
10050 I915_READ(GAMMA_MODE(crtc->pipe)) & GAMMA_MODE_MODE_MASK;
10051
a1b2278e
CK
10052 if (INTEL_INFO(dev)->gen >= 9) {
10053 skl_init_scalers(dev, crtc, pipe_config);
10054 }
10055
af99ceda
CK
10056 if (INTEL_INFO(dev)->gen >= 9) {
10057 pipe_config->scaler_state.scaler_id = -1;
10058 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
10059 }
10060
1729050e
ID
10061 power_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
10062 if (intel_display_power_get_if_enabled(dev_priv, power_domain)) {
10063 power_domain_mask |= BIT(power_domain);
1c132b44 10064 if (INTEL_INFO(dev)->gen >= 9)
bd2e244f 10065 skylake_get_pfit_config(crtc, pipe_config);
ff6d9f55 10066 else
1c132b44 10067 ironlake_get_pfit_config(crtc, pipe_config);
bd2e244f 10068 }
88adfff1 10069
e59150dc
JB
10070 if (IS_HASWELL(dev))
10071 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
10072 (I915_READ(IPS_CTL) & IPS_ENABLE);
42db64ef 10073
4d1de975
JN
10074 if (pipe_config->cpu_transcoder != TRANSCODER_EDP &&
10075 !transcoder_is_dsi(pipe_config->cpu_transcoder)) {
ebb69c95
CT
10076 pipe_config->pixel_multiplier =
10077 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
10078 } else {
10079 pipe_config->pixel_multiplier = 1;
10080 }
6c49f241 10081
1729050e
ID
10082out:
10083 for_each_power_domain(power_domain, power_domain_mask)
10084 intel_display_power_put(dev_priv, power_domain);
10085
cf30429e 10086 return active;
0e8ffe1b
DV
10087}
10088
55a08b3f
ML
10089static void i845_update_cursor(struct drm_crtc *crtc, u32 base,
10090 const struct intel_plane_state *plane_state)
560b85bb
CW
10091{
10092 struct drm_device *dev = crtc->dev;
10093 struct drm_i915_private *dev_priv = dev->dev_private;
10094 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
dc41c154 10095 uint32_t cntl = 0, size = 0;
560b85bb 10096
55a08b3f
ML
10097 if (plane_state && plane_state->visible) {
10098 unsigned int width = plane_state->base.crtc_w;
10099 unsigned int height = plane_state->base.crtc_h;
dc41c154
VS
10100 unsigned int stride = roundup_pow_of_two(width) * 4;
10101
10102 switch (stride) {
10103 default:
10104 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
10105 width, stride);
10106 stride = 256;
10107 /* fallthrough */
10108 case 256:
10109 case 512:
10110 case 1024:
10111 case 2048:
10112 break;
4b0e333e
CW
10113 }
10114
dc41c154
VS
10115 cntl |= CURSOR_ENABLE |
10116 CURSOR_GAMMA_ENABLE |
10117 CURSOR_FORMAT_ARGB |
10118 CURSOR_STRIDE(stride);
10119
10120 size = (height << 12) | width;
4b0e333e 10121 }
560b85bb 10122
dc41c154
VS
10123 if (intel_crtc->cursor_cntl != 0 &&
10124 (intel_crtc->cursor_base != base ||
10125 intel_crtc->cursor_size != size ||
10126 intel_crtc->cursor_cntl != cntl)) {
10127 /* On these chipsets we can only modify the base/size/stride
10128 * whilst the cursor is disabled.
10129 */
0b87c24e
VS
10130 I915_WRITE(CURCNTR(PIPE_A), 0);
10131 POSTING_READ(CURCNTR(PIPE_A));
dc41c154 10132 intel_crtc->cursor_cntl = 0;
4b0e333e 10133 }
560b85bb 10134
99d1f387 10135 if (intel_crtc->cursor_base != base) {
0b87c24e 10136 I915_WRITE(CURBASE(PIPE_A), base);
99d1f387
VS
10137 intel_crtc->cursor_base = base;
10138 }
4726e0b0 10139
dc41c154
VS
10140 if (intel_crtc->cursor_size != size) {
10141 I915_WRITE(CURSIZE, size);
10142 intel_crtc->cursor_size = size;
4b0e333e 10143 }
560b85bb 10144
4b0e333e 10145 if (intel_crtc->cursor_cntl != cntl) {
0b87c24e
VS
10146 I915_WRITE(CURCNTR(PIPE_A), cntl);
10147 POSTING_READ(CURCNTR(PIPE_A));
4b0e333e 10148 intel_crtc->cursor_cntl = cntl;
560b85bb 10149 }
560b85bb
CW
10150}
10151
55a08b3f
ML
10152static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base,
10153 const struct intel_plane_state *plane_state)
65a21cd6
JB
10154{
10155 struct drm_device *dev = crtc->dev;
10156 struct drm_i915_private *dev_priv = dev->dev_private;
10157 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10158 int pipe = intel_crtc->pipe;
663f3122 10159 uint32_t cntl = 0;
4b0e333e 10160
55a08b3f 10161 if (plane_state && plane_state->visible) {
4b0e333e 10162 cntl = MCURSOR_GAMMA_ENABLE;
55a08b3f 10163 switch (plane_state->base.crtc_w) {
4726e0b0
SK
10164 case 64:
10165 cntl |= CURSOR_MODE_64_ARGB_AX;
10166 break;
10167 case 128:
10168 cntl |= CURSOR_MODE_128_ARGB_AX;
10169 break;
10170 case 256:
10171 cntl |= CURSOR_MODE_256_ARGB_AX;
10172 break;
10173 default:
55a08b3f 10174 MISSING_CASE(plane_state->base.crtc_w);
4726e0b0 10175 return;
65a21cd6 10176 }
4b0e333e 10177 cntl |= pipe << 28; /* Connect to correct pipe */
47bf17a7 10178
fc6f93bc 10179 if (HAS_DDI(dev))
47bf17a7 10180 cntl |= CURSOR_PIPE_CSC_ENABLE;
65a21cd6 10181
55a08b3f
ML
10182 if (plane_state->base.rotation == BIT(DRM_ROTATE_180))
10183 cntl |= CURSOR_ROTATE_180;
10184 }
4398ad45 10185
4b0e333e
CW
10186 if (intel_crtc->cursor_cntl != cntl) {
10187 I915_WRITE(CURCNTR(pipe), cntl);
10188 POSTING_READ(CURCNTR(pipe));
10189 intel_crtc->cursor_cntl = cntl;
65a21cd6 10190 }
4b0e333e 10191
65a21cd6 10192 /* and commit changes on next vblank */
5efb3e28
VS
10193 I915_WRITE(CURBASE(pipe), base);
10194 POSTING_READ(CURBASE(pipe));
99d1f387
VS
10195
10196 intel_crtc->cursor_base = base;
65a21cd6
JB
10197}
10198
cda4b7d3 10199/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6b383a7f 10200static void intel_crtc_update_cursor(struct drm_crtc *crtc,
55a08b3f 10201 const struct intel_plane_state *plane_state)
cda4b7d3
CW
10202{
10203 struct drm_device *dev = crtc->dev;
10204 struct drm_i915_private *dev_priv = dev->dev_private;
10205 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10206 int pipe = intel_crtc->pipe;
55a08b3f
ML
10207 u32 base = intel_crtc->cursor_addr;
10208 u32 pos = 0;
cda4b7d3 10209
55a08b3f
ML
10210 if (plane_state) {
10211 int x = plane_state->base.crtc_x;
10212 int y = plane_state->base.crtc_y;
cda4b7d3 10213
55a08b3f
ML
10214 if (x < 0) {
10215 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
10216 x = -x;
10217 }
10218 pos |= x << CURSOR_X_SHIFT;
cda4b7d3 10219
55a08b3f
ML
10220 if (y < 0) {
10221 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
10222 y = -y;
10223 }
10224 pos |= y << CURSOR_Y_SHIFT;
10225
10226 /* ILK+ do this automagically */
10227 if (HAS_GMCH_DISPLAY(dev) &&
10228 plane_state->base.rotation == BIT(DRM_ROTATE_180)) {
10229 base += (plane_state->base.crtc_h *
10230 plane_state->base.crtc_w - 1) * 4;
10231 }
cda4b7d3 10232 }
cda4b7d3 10233
5efb3e28
VS
10234 I915_WRITE(CURPOS(pipe), pos);
10235
8ac54669 10236 if (IS_845G(dev) || IS_I865G(dev))
55a08b3f 10237 i845_update_cursor(crtc, base, plane_state);
5efb3e28 10238 else
55a08b3f 10239 i9xx_update_cursor(crtc, base, plane_state);
cda4b7d3
CW
10240}
10241
dc41c154
VS
10242static bool cursor_size_ok(struct drm_device *dev,
10243 uint32_t width, uint32_t height)
10244{
10245 if (width == 0 || height == 0)
10246 return false;
10247
10248 /*
10249 * 845g/865g are special in that they are only limited by
10250 * the width of their cursors, the height is arbitrary up to
10251 * the precision of the register. Everything else requires
10252 * square cursors, limited to a few power-of-two sizes.
10253 */
10254 if (IS_845G(dev) || IS_I865G(dev)) {
10255 if ((width & 63) != 0)
10256 return false;
10257
10258 if (width > (IS_845G(dev) ? 64 : 512))
10259 return false;
10260
10261 if (height > 1023)
10262 return false;
10263 } else {
10264 switch (width | height) {
10265 case 256:
10266 case 128:
10267 if (IS_GEN2(dev))
10268 return false;
10269 case 64:
10270 break;
10271 default:
10272 return false;
10273 }
10274 }
10275
10276 return true;
10277}
10278
79e53945
JB
10279/* VESA 640x480x72Hz mode to set on the pipe */
10280static struct drm_display_mode load_detect_mode = {
10281 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
10282 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
10283};
10284
a8bb6818
DV
10285struct drm_framebuffer *
10286__intel_framebuffer_create(struct drm_device *dev,
10287 struct drm_mode_fb_cmd2 *mode_cmd,
10288 struct drm_i915_gem_object *obj)
d2dff872
CW
10289{
10290 struct intel_framebuffer *intel_fb;
10291 int ret;
10292
10293 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
dcb1394e 10294 if (!intel_fb)
d2dff872 10295 return ERR_PTR(-ENOMEM);
d2dff872
CW
10296
10297 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
dd4916c5
DV
10298 if (ret)
10299 goto err;
d2dff872
CW
10300
10301 return &intel_fb->base;
dcb1394e 10302
dd4916c5 10303err:
dd4916c5 10304 kfree(intel_fb);
dd4916c5 10305 return ERR_PTR(ret);
d2dff872
CW
10306}
10307
b5ea642a 10308static struct drm_framebuffer *
a8bb6818
DV
10309intel_framebuffer_create(struct drm_device *dev,
10310 struct drm_mode_fb_cmd2 *mode_cmd,
10311 struct drm_i915_gem_object *obj)
10312{
10313 struct drm_framebuffer *fb;
10314 int ret;
10315
10316 ret = i915_mutex_lock_interruptible(dev);
10317 if (ret)
10318 return ERR_PTR(ret);
10319 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
10320 mutex_unlock(&dev->struct_mutex);
10321
10322 return fb;
10323}
10324
d2dff872
CW
10325static u32
10326intel_framebuffer_pitch_for_width(int width, int bpp)
10327{
10328 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
10329 return ALIGN(pitch, 64);
10330}
10331
10332static u32
10333intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
10334{
10335 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
1267a26b 10336 return PAGE_ALIGN(pitch * mode->vdisplay);
d2dff872
CW
10337}
10338
10339static struct drm_framebuffer *
10340intel_framebuffer_create_for_mode(struct drm_device *dev,
10341 struct drm_display_mode *mode,
10342 int depth, int bpp)
10343{
dcb1394e 10344 struct drm_framebuffer *fb;
d2dff872 10345 struct drm_i915_gem_object *obj;
0fed39bd 10346 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
d2dff872 10347
d37cd8a8 10348 obj = i915_gem_object_create(dev,
d2dff872 10349 intel_framebuffer_size_for_mode(mode, bpp));
fe3db79b
CW
10350 if (IS_ERR(obj))
10351 return ERR_CAST(obj);
d2dff872
CW
10352
10353 mode_cmd.width = mode->hdisplay;
10354 mode_cmd.height = mode->vdisplay;
308e5bcb
JB
10355 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
10356 bpp);
5ca0c34a 10357 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
d2dff872 10358
dcb1394e
LW
10359 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
10360 if (IS_ERR(fb))
10361 drm_gem_object_unreference_unlocked(&obj->base);
10362
10363 return fb;
d2dff872
CW
10364}
10365
10366static struct drm_framebuffer *
10367mode_fits_in_fbdev(struct drm_device *dev,
10368 struct drm_display_mode *mode)
10369{
0695726e 10370#ifdef CONFIG_DRM_FBDEV_EMULATION
d2dff872
CW
10371 struct drm_i915_private *dev_priv = dev->dev_private;
10372 struct drm_i915_gem_object *obj;
10373 struct drm_framebuffer *fb;
10374
4c0e5528 10375 if (!dev_priv->fbdev)
d2dff872
CW
10376 return NULL;
10377
4c0e5528 10378 if (!dev_priv->fbdev->fb)
d2dff872
CW
10379 return NULL;
10380
4c0e5528
DV
10381 obj = dev_priv->fbdev->fb->obj;
10382 BUG_ON(!obj);
10383
8bcd4553 10384 fb = &dev_priv->fbdev->fb->base;
01f2c773
VS
10385 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
10386 fb->bits_per_pixel))
d2dff872
CW
10387 return NULL;
10388
01f2c773 10389 if (obj->base.size < mode->vdisplay * fb->pitches[0])
d2dff872
CW
10390 return NULL;
10391
edde3617 10392 drm_framebuffer_reference(fb);
d2dff872 10393 return fb;
4520f53a
DV
10394#else
10395 return NULL;
10396#endif
d2dff872
CW
10397}
10398
d3a40d1b
ACO
10399static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
10400 struct drm_crtc *crtc,
10401 struct drm_display_mode *mode,
10402 struct drm_framebuffer *fb,
10403 int x, int y)
10404{
10405 struct drm_plane_state *plane_state;
10406 int hdisplay, vdisplay;
10407 int ret;
10408
10409 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
10410 if (IS_ERR(plane_state))
10411 return PTR_ERR(plane_state);
10412
10413 if (mode)
10414 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
10415 else
10416 hdisplay = vdisplay = 0;
10417
10418 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
10419 if (ret)
10420 return ret;
10421 drm_atomic_set_fb_for_plane(plane_state, fb);
10422 plane_state->crtc_x = 0;
10423 plane_state->crtc_y = 0;
10424 plane_state->crtc_w = hdisplay;
10425 plane_state->crtc_h = vdisplay;
10426 plane_state->src_x = x << 16;
10427 plane_state->src_y = y << 16;
10428 plane_state->src_w = hdisplay << 16;
10429 plane_state->src_h = vdisplay << 16;
10430
10431 return 0;
10432}
10433
d2434ab7 10434bool intel_get_load_detect_pipe(struct drm_connector *connector,
7173188d 10435 struct drm_display_mode *mode,
51fd371b
RC
10436 struct intel_load_detect_pipe *old,
10437 struct drm_modeset_acquire_ctx *ctx)
79e53945
JB
10438{
10439 struct intel_crtc *intel_crtc;
d2434ab7
DV
10440 struct intel_encoder *intel_encoder =
10441 intel_attached_encoder(connector);
79e53945 10442 struct drm_crtc *possible_crtc;
4ef69c7a 10443 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
10444 struct drm_crtc *crtc = NULL;
10445 struct drm_device *dev = encoder->dev;
94352cf9 10446 struct drm_framebuffer *fb;
51fd371b 10447 struct drm_mode_config *config = &dev->mode_config;
edde3617 10448 struct drm_atomic_state *state = NULL, *restore_state = NULL;
944b0c76 10449 struct drm_connector_state *connector_state;
4be07317 10450 struct intel_crtc_state *crtc_state;
51fd371b 10451 int ret, i = -1;
79e53945 10452
d2dff872 10453 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 10454 connector->base.id, connector->name,
8e329a03 10455 encoder->base.id, encoder->name);
d2dff872 10456
edde3617
ML
10457 old->restore_state = NULL;
10458
51fd371b
RC
10459retry:
10460 ret = drm_modeset_lock(&config->connection_mutex, ctx);
10461 if (ret)
ad3c558f 10462 goto fail;
6e9f798d 10463
79e53945
JB
10464 /*
10465 * Algorithm gets a little messy:
7a5e4805 10466 *
79e53945
JB
10467 * - if the connector already has an assigned crtc, use it (but make
10468 * sure it's on first)
7a5e4805 10469 *
79e53945
JB
10470 * - try to find the first unused crtc that can drive this connector,
10471 * and use that if we find one
79e53945
JB
10472 */
10473
10474 /* See if we already have a CRTC for this connector */
edde3617
ML
10475 if (connector->state->crtc) {
10476 crtc = connector->state->crtc;
8261b191 10477
51fd371b 10478 ret = drm_modeset_lock(&crtc->mutex, ctx);
4d02e2de 10479 if (ret)
ad3c558f 10480 goto fail;
8261b191
CW
10481
10482 /* Make sure the crtc and connector are running */
edde3617 10483 goto found;
79e53945
JB
10484 }
10485
10486 /* Find an unused one (if possible) */
70e1e0ec 10487 for_each_crtc(dev, possible_crtc) {
79e53945
JB
10488 i++;
10489 if (!(encoder->possible_crtcs & (1 << i)))
10490 continue;
edde3617
ML
10491
10492 ret = drm_modeset_lock(&possible_crtc->mutex, ctx);
10493 if (ret)
10494 goto fail;
10495
10496 if (possible_crtc->state->enable) {
10497 drm_modeset_unlock(&possible_crtc->mutex);
a459249c 10498 continue;
edde3617 10499 }
a459249c
VS
10500
10501 crtc = possible_crtc;
10502 break;
79e53945
JB
10503 }
10504
10505 /*
10506 * If we didn't find an unused CRTC, don't use any.
10507 */
10508 if (!crtc) {
7173188d 10509 DRM_DEBUG_KMS("no pipe available for load-detect\n");
ad3c558f 10510 goto fail;
79e53945
JB
10511 }
10512
edde3617
ML
10513found:
10514 intel_crtc = to_intel_crtc(crtc);
10515
4d02e2de
DV
10516 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10517 if (ret)
ad3c558f 10518 goto fail;
79e53945 10519
83a57153 10520 state = drm_atomic_state_alloc(dev);
edde3617
ML
10521 restore_state = drm_atomic_state_alloc(dev);
10522 if (!state || !restore_state) {
10523 ret = -ENOMEM;
10524 goto fail;
10525 }
83a57153
ACO
10526
10527 state->acquire_ctx = ctx;
edde3617 10528 restore_state->acquire_ctx = ctx;
83a57153 10529
944b0c76
ACO
10530 connector_state = drm_atomic_get_connector_state(state, connector);
10531 if (IS_ERR(connector_state)) {
10532 ret = PTR_ERR(connector_state);
10533 goto fail;
10534 }
10535
edde3617
ML
10536 ret = drm_atomic_set_crtc_for_connector(connector_state, crtc);
10537 if (ret)
10538 goto fail;
944b0c76 10539
4be07317
ACO
10540 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10541 if (IS_ERR(crtc_state)) {
10542 ret = PTR_ERR(crtc_state);
10543 goto fail;
10544 }
10545
49d6fa21 10546 crtc_state->base.active = crtc_state->base.enable = true;
4be07317 10547
6492711d
CW
10548 if (!mode)
10549 mode = &load_detect_mode;
79e53945 10550
d2dff872
CW
10551 /* We need a framebuffer large enough to accommodate all accesses
10552 * that the plane may generate whilst we perform load detection.
10553 * We can not rely on the fbcon either being present (we get called
10554 * during its initialisation to detect all boot displays, or it may
10555 * not even exist) or that it is large enough to satisfy the
10556 * requested mode.
10557 */
94352cf9
DV
10558 fb = mode_fits_in_fbdev(dev, mode);
10559 if (fb == NULL) {
d2dff872 10560 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
94352cf9 10561 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
d2dff872
CW
10562 } else
10563 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
94352cf9 10564 if (IS_ERR(fb)) {
d2dff872 10565 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
412b61d8 10566 goto fail;
79e53945 10567 }
79e53945 10568
d3a40d1b
ACO
10569 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
10570 if (ret)
10571 goto fail;
10572
edde3617
ML
10573 drm_framebuffer_unreference(fb);
10574
10575 ret = drm_atomic_set_mode_for_crtc(&crtc_state->base, mode);
10576 if (ret)
10577 goto fail;
10578
10579 ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(restore_state, connector));
10580 if (!ret)
10581 ret = PTR_ERR_OR_ZERO(drm_atomic_get_crtc_state(restore_state, crtc));
10582 if (!ret)
10583 ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(restore_state, crtc->primary));
10584 if (ret) {
10585 DRM_DEBUG_KMS("Failed to create a copy of old state to restore: %i\n", ret);
10586 goto fail;
10587 }
8c7b5ccb 10588
3ba86073
ML
10589 ret = drm_atomic_commit(state);
10590 if (ret) {
6492711d 10591 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
412b61d8 10592 goto fail;
79e53945 10593 }
edde3617
ML
10594
10595 old->restore_state = restore_state;
7173188d 10596
79e53945 10597 /* let the connector get through one full cycle before testing */
9d0498a2 10598 intel_wait_for_vblank(dev, intel_crtc->pipe);
7173188d 10599 return true;
412b61d8 10600
ad3c558f 10601fail:
e5d958ef 10602 drm_atomic_state_free(state);
edde3617
ML
10603 drm_atomic_state_free(restore_state);
10604 restore_state = state = NULL;
83a57153 10605
51fd371b
RC
10606 if (ret == -EDEADLK) {
10607 drm_modeset_backoff(ctx);
10608 goto retry;
10609 }
10610
412b61d8 10611 return false;
79e53945
JB
10612}
10613
d2434ab7 10614void intel_release_load_detect_pipe(struct drm_connector *connector,
49172fee
ACO
10615 struct intel_load_detect_pipe *old,
10616 struct drm_modeset_acquire_ctx *ctx)
79e53945 10617{
d2434ab7
DV
10618 struct intel_encoder *intel_encoder =
10619 intel_attached_encoder(connector);
4ef69c7a 10620 struct drm_encoder *encoder = &intel_encoder->base;
edde3617 10621 struct drm_atomic_state *state = old->restore_state;
d3a40d1b 10622 int ret;
79e53945 10623
d2dff872 10624 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 10625 connector->base.id, connector->name,
8e329a03 10626 encoder->base.id, encoder->name);
d2dff872 10627
edde3617 10628 if (!state)
0622a53c 10629 return;
79e53945 10630
edde3617
ML
10631 ret = drm_atomic_commit(state);
10632 if (ret) {
10633 DRM_DEBUG_KMS("Couldn't release load detect pipe: %i\n", ret);
10634 drm_atomic_state_free(state);
10635 }
79e53945
JB
10636}
10637
da4a1efa 10638static int i9xx_pll_refclk(struct drm_device *dev,
5cec258b 10639 const struct intel_crtc_state *pipe_config)
da4a1efa
VS
10640{
10641 struct drm_i915_private *dev_priv = dev->dev_private;
10642 u32 dpll = pipe_config->dpll_hw_state.dpll;
10643
10644 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
e91e941b 10645 return dev_priv->vbt.lvds_ssc_freq;
da4a1efa
VS
10646 else if (HAS_PCH_SPLIT(dev))
10647 return 120000;
10648 else if (!IS_GEN2(dev))
10649 return 96000;
10650 else
10651 return 48000;
10652}
10653
79e53945 10654/* Returns the clock of the currently programmed mode of the given pipe. */
f1f644dc 10655static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 10656 struct intel_crtc_state *pipe_config)
79e53945 10657{
f1f644dc 10658 struct drm_device *dev = crtc->base.dev;
79e53945 10659 struct drm_i915_private *dev_priv = dev->dev_private;
f1f644dc 10660 int pipe = pipe_config->cpu_transcoder;
293623f7 10661 u32 dpll = pipe_config->dpll_hw_state.dpll;
79e53945 10662 u32 fp;
9e2c8475 10663 struct dpll clock;
dccbea3b 10664 int port_clock;
da4a1efa 10665 int refclk = i9xx_pll_refclk(dev, pipe_config);
79e53945
JB
10666
10667 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
293623f7 10668 fp = pipe_config->dpll_hw_state.fp0;
79e53945 10669 else
293623f7 10670 fp = pipe_config->dpll_hw_state.fp1;
79e53945
JB
10671
10672 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
f2b115e6
AJ
10673 if (IS_PINEVIEW(dev)) {
10674 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
10675 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
2177832f
SL
10676 } else {
10677 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
10678 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
10679 }
10680
a6c45cf0 10681 if (!IS_GEN2(dev)) {
f2b115e6
AJ
10682 if (IS_PINEVIEW(dev))
10683 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
10684 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
2177832f
SL
10685 else
10686 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
79e53945
JB
10687 DPLL_FPA01_P1_POST_DIV_SHIFT);
10688
10689 switch (dpll & DPLL_MODE_MASK) {
10690 case DPLLB_MODE_DAC_SERIAL:
10691 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
10692 5 : 10;
10693 break;
10694 case DPLLB_MODE_LVDS:
10695 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
10696 7 : 14;
10697 break;
10698 default:
28c97730 10699 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
79e53945 10700 "mode\n", (int)(dpll & DPLL_MODE_MASK));
f1f644dc 10701 return;
79e53945
JB
10702 }
10703
ac58c3f0 10704 if (IS_PINEVIEW(dev))
dccbea3b 10705 port_clock = pnv_calc_dpll_params(refclk, &clock);
ac58c3f0 10706 else
dccbea3b 10707 port_clock = i9xx_calc_dpll_params(refclk, &clock);
79e53945 10708 } else {
0fb58223 10709 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
b1c560d1 10710 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
79e53945
JB
10711
10712 if (is_lvds) {
10713 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
10714 DPLL_FPA01_P1_POST_DIV_SHIFT);
b1c560d1
VS
10715
10716 if (lvds & LVDS_CLKB_POWER_UP)
10717 clock.p2 = 7;
10718 else
10719 clock.p2 = 14;
79e53945
JB
10720 } else {
10721 if (dpll & PLL_P1_DIVIDE_BY_TWO)
10722 clock.p1 = 2;
10723 else {
10724 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
10725 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
10726 }
10727 if (dpll & PLL_P2_DIVIDE_BY_4)
10728 clock.p2 = 4;
10729 else
10730 clock.p2 = 2;
79e53945 10731 }
da4a1efa 10732
dccbea3b 10733 port_clock = i9xx_calc_dpll_params(refclk, &clock);
79e53945
JB
10734 }
10735
18442d08
VS
10736 /*
10737 * This value includes pixel_multiplier. We will use
241bfc38 10738 * port_clock to compute adjusted_mode.crtc_clock in the
18442d08
VS
10739 * encoder's get_config() function.
10740 */
dccbea3b 10741 pipe_config->port_clock = port_clock;
f1f644dc
JB
10742}
10743
6878da05
VS
10744int intel_dotclock_calculate(int link_freq,
10745 const struct intel_link_m_n *m_n)
f1f644dc 10746{
f1f644dc
JB
10747 /*
10748 * The calculation for the data clock is:
1041a02f 10749 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
f1f644dc 10750 * But we want to avoid losing precison if possible, so:
1041a02f 10751 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
f1f644dc
JB
10752 *
10753 * and the link clock is simpler:
1041a02f 10754 * link_clock = (m * link_clock) / n
f1f644dc
JB
10755 */
10756
6878da05
VS
10757 if (!m_n->link_n)
10758 return 0;
f1f644dc 10759
6878da05
VS
10760 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
10761}
f1f644dc 10762
18442d08 10763static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 10764 struct intel_crtc_state *pipe_config)
6878da05 10765{
e3b247da 10766 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
79e53945 10767
18442d08
VS
10768 /* read out port_clock from the DPLL */
10769 i9xx_crtc_clock_get(crtc, pipe_config);
f1f644dc 10770
f1f644dc 10771 /*
e3b247da
VS
10772 * In case there is an active pipe without active ports,
10773 * we may need some idea for the dotclock anyway.
10774 * Calculate one based on the FDI configuration.
79e53945 10775 */
2d112de7 10776 pipe_config->base.adjusted_mode.crtc_clock =
21a727b3 10777 intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config),
18442d08 10778 &pipe_config->fdi_m_n);
79e53945
JB
10779}
10780
10781/** Returns the currently programmed mode of the given pipe. */
10782struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
10783 struct drm_crtc *crtc)
10784{
548f245b 10785 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 10786 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 10787 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
79e53945 10788 struct drm_display_mode *mode;
3f36b937 10789 struct intel_crtc_state *pipe_config;
fe2b8f9d
PZ
10790 int htot = I915_READ(HTOTAL(cpu_transcoder));
10791 int hsync = I915_READ(HSYNC(cpu_transcoder));
10792 int vtot = I915_READ(VTOTAL(cpu_transcoder));
10793 int vsync = I915_READ(VSYNC(cpu_transcoder));
293623f7 10794 enum pipe pipe = intel_crtc->pipe;
79e53945
JB
10795
10796 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
10797 if (!mode)
10798 return NULL;
10799
3f36b937
TU
10800 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
10801 if (!pipe_config) {
10802 kfree(mode);
10803 return NULL;
10804 }
10805
f1f644dc
JB
10806 /*
10807 * Construct a pipe_config sufficient for getting the clock info
10808 * back out of crtc_clock_get.
10809 *
10810 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
10811 * to use a real value here instead.
10812 */
3f36b937
TU
10813 pipe_config->cpu_transcoder = (enum transcoder) pipe;
10814 pipe_config->pixel_multiplier = 1;
10815 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(pipe));
10816 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(pipe));
10817 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(pipe));
10818 i9xx_crtc_clock_get(intel_crtc, pipe_config);
10819
10820 mode->clock = pipe_config->port_clock / pipe_config->pixel_multiplier;
79e53945
JB
10821 mode->hdisplay = (htot & 0xffff) + 1;
10822 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
10823 mode->hsync_start = (hsync & 0xffff) + 1;
10824 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
10825 mode->vdisplay = (vtot & 0xffff) + 1;
10826 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
10827 mode->vsync_start = (vsync & 0xffff) + 1;
10828 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
10829
10830 drm_mode_set_name(mode);
79e53945 10831
3f36b937
TU
10832 kfree(pipe_config);
10833
79e53945
JB
10834 return mode;
10835}
10836
7d993739 10837void intel_mark_busy(struct drm_i915_private *dev_priv)
f047e395 10838{
f62a0076
CW
10839 if (dev_priv->mm.busy)
10840 return;
10841
43694d69 10842 intel_runtime_pm_get(dev_priv);
c67a470b 10843 i915_update_gfx_val(dev_priv);
7d993739 10844 if (INTEL_GEN(dev_priv) >= 6)
43cf3bf0 10845 gen6_rps_busy(dev_priv);
f62a0076 10846 dev_priv->mm.busy = true;
f047e395
CW
10847}
10848
7d993739 10849void intel_mark_idle(struct drm_i915_private *dev_priv)
652c393a 10850{
f62a0076
CW
10851 if (!dev_priv->mm.busy)
10852 return;
10853
10854 dev_priv->mm.busy = false;
10855
7d993739
TU
10856 if (INTEL_GEN(dev_priv) >= 6)
10857 gen6_rps_idle(dev_priv);
bb4cdd53 10858
43694d69 10859 intel_runtime_pm_put(dev_priv);
652c393a
JB
10860}
10861
a6747b73 10862void intel_free_flip_work(struct intel_flip_work *work)
03f476e1
ML
10863{
10864 kfree(work->old_connector_state);
10865 kfree(work->new_connector_state);
10866 kfree(work);
10867}
10868
79e53945
JB
10869static void intel_crtc_destroy(struct drm_crtc *crtc)
10870{
10871 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
67e77c5a 10872 struct drm_device *dev = crtc->dev;
51cbaf01 10873 struct intel_flip_work *work;
67e77c5a 10874
5e2d7afc 10875 spin_lock_irq(&dev->event_lock);
6885843a
ML
10876 while (!list_empty(&intel_crtc->flip_work)) {
10877 work = list_first_entry(&intel_crtc->flip_work,
10878 struct intel_flip_work, head);
10879 list_del_init(&work->head);
10880 spin_unlock_irq(&dev->event_lock);
67e77c5a 10881
51cbaf01
ML
10882 cancel_work_sync(&work->mmio_work);
10883 cancel_work_sync(&work->unpin_work);
03f476e1 10884 intel_free_flip_work(work);
6885843a
ML
10885
10886 spin_lock_irq(&dev->event_lock);
67e77c5a 10887 }
6885843a 10888 spin_unlock_irq(&dev->event_lock);
79e53945
JB
10889
10890 drm_crtc_cleanup(crtc);
67e77c5a 10891
79e53945
JB
10892 kfree(intel_crtc);
10893}
10894
143f73b3
ML
10895static void intel_crtc_post_flip_update(struct intel_flip_work *work,
10896 struct drm_crtc *crtc)
10897{
10898 struct intel_crtc_state *crtc_state = work->new_crtc_state;
10899 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10900
10901 if (crtc_state->disable_cxsr)
10902 intel_crtc->wm.cxsr_allowed = true;
10903
10904 if (crtc_state->update_wm_post && crtc_state->base.active)
10905 intel_update_watermarks(crtc);
10906
10907 if (work->num_planes > 0 &&
10908 work->old_plane_state[0]->base.plane == crtc->primary) {
10909 struct intel_plane_state *plane_state =
10910 work->new_plane_state[0];
10911
10912 if (plane_state->visible &&
10913 (needs_modeset(&crtc_state->base) ||
10914 !work->old_plane_state[0]->visible))
10915 intel_post_enable_primary(crtc);
10916 }
10917}
10918
6b95a207
KH
10919static void intel_unpin_work_fn(struct work_struct *__work)
10920{
51cbaf01
ML
10921 struct intel_flip_work *work =
10922 container_of(__work, struct intel_flip_work, unpin_work);
143f73b3
ML
10923 struct drm_crtc *crtc = work->old_crtc_state->base.crtc;
10924 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10925 struct drm_device *dev = crtc->dev;
10926 struct drm_i915_private *dev_priv = dev->dev_private;
10927 int i;
6b95a207 10928
143f73b3
ML
10929 if (work->fb_bits)
10930 intel_frontbuffer_flip_complete(dev, work->fb_bits);
51cbaf01 10931
143f73b3
ML
10932 /*
10933 * Unless work->can_async_unpin is false, there's no way to ensure
10934 * that work->new_crtc_state contains valid memory during unpin
10935 * because intel_atomic_commit may free it before this runs.
10936 */
a6747b73 10937 if (!work->can_async_unpin) {
143f73b3
ML
10938 intel_crtc_post_flip_update(work, crtc);
10939
a6747b73
ML
10940 if (dev_priv->display.optimize_watermarks)
10941 dev_priv->display.optimize_watermarks(work->new_crtc_state);
10942 }
10943
143f73b3
ML
10944 if (work->fb_bits & to_intel_plane(crtc->primary)->frontbuffer_bit)
10945 intel_fbc_post_update(intel_crtc);
10946
10947 if (work->put_power_domains)
10948 modeset_put_power_domains(dev_priv, work->put_power_domains);
10949
10950 /* Make sure mmio work is completely finished before freeing all state here. */
10951 flush_work(&work->mmio_work);
10952
03f476e1
ML
10953 if (!work->can_async_unpin &&
10954 (work->new_crtc_state->update_pipe ||
10955 needs_modeset(&work->new_crtc_state->base))) {
143f73b3
ML
10956 /* This must be called before work is unpinned for serialization. */
10957 intel_modeset_verify_crtc(crtc, &work->old_crtc_state->base,
10958 &work->new_crtc_state->base);
10959
03f476e1
ML
10960 for (i = 0; i < work->num_new_connectors; i++) {
10961 struct drm_connector_state *conn_state =
10962 work->new_connector_state[i];
10963 struct drm_connector *con = conn_state->connector;
10964
a6747b73
ML
10965 WARN_ON(!con);
10966
03f476e1
ML
10967 intel_connector_verify_state(to_intel_connector(con),
10968 conn_state);
10969 }
10970 }
10971
10972 for (i = 0; i < work->num_old_connectors; i++) {
10973 struct drm_connector_state *old_con_state =
10974 work->old_connector_state[i];
10975 struct drm_connector *con =
10976 old_con_state->connector;
10977
10978 con->funcs->atomic_destroy_state(con, old_con_state);
10979 }
10980
143f73b3
ML
10981 if (!work->can_async_unpin || !list_empty(&work->head)) {
10982 spin_lock_irq(&dev->event_lock);
10983 WARN(list_empty(&work->head) != work->can_async_unpin,
10984 "[CRTC:%i] Pin work %p async %i with %i planes, active %i -> %i ms %i\n",
10985 crtc->base.id, work, work->can_async_unpin, work->num_planes,
10986 work->old_crtc_state->base.active, work->new_crtc_state->base.active,
10987 needs_modeset(&work->new_crtc_state->base));
10988
10989 if (!list_empty(&work->head))
10990 list_del(&work->head);
10991
10992 wake_up_all(&dev_priv->pending_flip_queue);
10993 spin_unlock_irq(&dev->event_lock);
10994 }
10995
a6747b73
ML
10996 /* New crtc_state freed? */
10997 if (work->free_new_crtc_state)
10998 intel_crtc_destroy_state(crtc, &work->new_crtc_state->base);
10999
143f73b3 11000 intel_crtc_destroy_state(crtc, &work->old_crtc_state->base);
d9e86c0e 11001
143f73b3
ML
11002 for (i = 0; i < work->num_planes; i++) {
11003 struct intel_plane_state *old_plane_state =
11004 work->old_plane_state[i];
11005 struct drm_framebuffer *old_fb = old_plane_state->base.fb;
11006 struct drm_plane *plane = old_plane_state->base.plane;
11007 struct drm_i915_gem_request *req;
11008
11009 req = old_plane_state->wait_req;
11010 old_plane_state->wait_req = NULL;
a6747b73
ML
11011 if (req)
11012 i915_gem_request_unreference(req);
143f73b3
ML
11013
11014 fence_put(old_plane_state->base.fence);
11015 old_plane_state->base.fence = NULL;
11016
11017 if (old_fb &&
11018 (plane->type != DRM_PLANE_TYPE_CURSOR ||
11019 !INTEL_INFO(dev_priv)->cursor_needs_physical)) {
11020 mutex_lock(&dev->struct_mutex);
11021 intel_unpin_fb_obj(old_fb, old_plane_state->base.rotation);
11022 mutex_unlock(&dev->struct_mutex);
11023 }
b4a98e57 11024
143f73b3
ML
11025 intel_plane_destroy_state(plane, &old_plane_state->base);
11026 }
f99d7069 11027
143f73b3
ML
11028 if (!WARN_ON(atomic_read(&intel_crtc->unpin_work_count) == 0))
11029 atomic_dec(&intel_crtc->unpin_work_count);
b4a98e57 11030
03f476e1 11031 intel_free_flip_work(work);
6b95a207
KH
11032}
11033
51cbaf01
ML
11034
11035static bool pageflip_finished(struct intel_crtc *crtc,
11036 struct intel_flip_work *work)
11037{
11038 if (!atomic_read(&work->pending))
11039 return false;
11040
11041 smp_rmb();
11042
51cbaf01 11043 /*
8dd634d9
ML
11044 * MMIO work completes when vblank is different from
11045 * flip_queued_vblank.
51cbaf01 11046 */
8dd634d9 11047 return intel_crtc_get_vblank_counter(crtc) != work->flip_queued_vblank;
75f7f3ec
VS
11048}
11049
51cbaf01 11050void intel_finish_page_flip_mmio(struct drm_i915_private *dev_priv, int pipe)
6b95a207 11051{
91d14251 11052 struct drm_device *dev = dev_priv->dev;
5251f04e
ML
11053 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11054 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
51cbaf01 11055 struct intel_flip_work *work;
6b95a207
KH
11056 unsigned long flags;
11057
5251f04e
ML
11058 /* Ignore early vblank irqs */
11059 if (!crtc)
11060 return;
f326038a
DV
11061
11062 /*
11063 * This is called both by irq handlers and the reset code (to complete
11064 * lost pageflips) so needs the full irqsave spinlocks.
e7d841ca 11065 */
6b95a207 11066 spin_lock_irqsave(&dev->event_lock, flags);
6885843a
ML
11067 while (!list_empty(&intel_crtc->flip_work)) {
11068 work = list_first_entry(&intel_crtc->flip_work,
11069 struct intel_flip_work,
11070 head);
5251f04e 11071
143f73b3
ML
11072 if (!pageflip_finished(intel_crtc, work) ||
11073 work_busy(&work->unpin_work))
6885843a 11074 break;
5251f04e 11075
6885843a
ML
11076 page_flip_completed(intel_crtc, work);
11077 }
6b95a207
KH
11078 spin_unlock_irqrestore(&dev->event_lock, flags);
11079}
11080
51cbaf01 11081static void intel_mmio_flip_work_func(struct work_struct *w)
84c33a64 11082{
51cbaf01
ML
11083 struct intel_flip_work *work =
11084 container_of(w, struct intel_flip_work, mmio_work);
143f73b3
ML
11085 struct drm_crtc *crtc = work->old_crtc_state->base.crtc;
11086 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11087 struct intel_crtc_state *crtc_state = work->new_crtc_state;
11088 struct drm_device *dev = crtc->dev;
aa420ddd 11089 struct drm_i915_private *dev_priv = dev->dev_private;
143f73b3 11090 struct drm_i915_gem_request *req;
d55dbd06 11091 int i, ret;
84c33a64 11092
a6747b73
ML
11093 if (!needs_modeset(&crtc_state->base) && crtc_state->update_pipe) {
11094 work->put_power_domains =
11095 modeset_get_crtc_power_domains(crtc, crtc_state);
11096 }
11097
143f73b3
ML
11098 for (i = 0; i < work->num_planes; i++) {
11099 struct intel_plane_state *old_plane_state = work->old_plane_state[i];
11100
11101 /* For framebuffer backed by dmabuf, wait for fence */
11102 if (old_plane_state->base.fence)
11103 WARN_ON(fence_wait(old_plane_state->base.fence, false) < 0);
11104
11105 req = old_plane_state->wait_req;
11106 if (!req)
11107 continue;
11108
11109 WARN_ON(__i915_wait_request(req, false, NULL,
51cbaf01 11110 &dev_priv->rps.mmioflips));
143f73b3 11111 }
84c33a64 11112
d55dbd06
ML
11113 ret = drm_crtc_vblank_get(crtc);
11114 I915_STATE_WARN(ret < 0, "enabling vblank failed with %i\n", ret);
11115
11116 if (work->num_planes &&
11117 work->old_plane_state[0]->base.plane == crtc->primary)
11118 intel_fbc_enable(intel_crtc, work->new_crtc_state, work->new_plane_state[0]);
11119
11120 intel_frontbuffer_flip_prepare(dev, work->fb_bits);
fd8e058a 11121
143f73b3
ML
11122 intel_pipe_update_start(intel_crtc);
11123 if (!needs_modeset(&crtc_state->base)) {
11124 if (crtc_state->base.color_mgmt_changed || crtc_state->update_pipe) {
11125 intel_color_set_csc(&crtc_state->base);
11126 intel_color_load_luts(&crtc_state->base);
11127 }
84c33a64 11128
143f73b3
ML
11129 if (crtc_state->update_pipe)
11130 intel_update_pipe_config(intel_crtc, work->old_crtc_state);
11131 else if (INTEL_INFO(dev)->gen >= 9)
11132 skl_detach_scalers(intel_crtc);
11133 }
11134
11135 for (i = 0; i < work->num_planes; i++) {
11136 struct intel_plane_state *new_plane_state = work->new_plane_state[i];
11137 struct intel_plane *plane = to_intel_plane(new_plane_state->base.plane);
11138
d55dbd06
ML
11139 if (new_plane_state->visible)
11140 plane->update_plane(&plane->base, crtc_state, new_plane_state);
11141 else
11142 plane->disable_plane(&plane->base, crtc);
143f73b3
ML
11143 }
11144
11145 intel_pipe_update_end(intel_crtc, work);
8c9f3aaf
JB
11146}
11147
da20eabd
ML
11148/**
11149 * intel_wm_need_update - Check whether watermarks need updating
11150 * @plane: drm plane
11151 * @state: new plane state
11152 *
11153 * Check current plane state versus the new one to determine whether
11154 * watermarks need to be recalculated.
11155 *
11156 * Returns true or false.
11157 */
11158static bool intel_wm_need_update(struct drm_plane *plane,
11159 struct drm_plane_state *state)
11160{
d21fbe87
MR
11161 struct intel_plane_state *new = to_intel_plane_state(state);
11162 struct intel_plane_state *cur = to_intel_plane_state(plane->state);
11163
11164 /* Update watermarks on tiling or size changes. */
92826fcd
ML
11165 if (new->visible != cur->visible)
11166 return true;
11167
11168 if (!cur->base.fb || !new->base.fb)
11169 return false;
11170
11171 if (cur->base.fb->modifier[0] != new->base.fb->modifier[0] ||
11172 cur->base.rotation != new->base.rotation ||
d21fbe87
MR
11173 drm_rect_width(&new->src) != drm_rect_width(&cur->src) ||
11174 drm_rect_height(&new->src) != drm_rect_height(&cur->src) ||
11175 drm_rect_width(&new->dst) != drm_rect_width(&cur->dst) ||
11176 drm_rect_height(&new->dst) != drm_rect_height(&cur->dst))
2791a16c 11177 return true;
7809e5ae 11178
2791a16c 11179 return false;
7809e5ae
MR
11180}
11181
d21fbe87
MR
11182static bool needs_scaling(struct intel_plane_state *state)
11183{
11184 int src_w = drm_rect_width(&state->src) >> 16;
11185 int src_h = drm_rect_height(&state->src) >> 16;
11186 int dst_w = drm_rect_width(&state->dst);
11187 int dst_h = drm_rect_height(&state->dst);
11188
11189 return (src_w != dst_w || src_h != dst_h);
11190}
11191
da20eabd
ML
11192int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
11193 struct drm_plane_state *plane_state)
11194{
ab1d3a0e 11195 struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc_state);
da20eabd
ML
11196 struct drm_crtc *crtc = crtc_state->crtc;
11197 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11198 struct drm_plane *plane = plane_state->plane;
11199 struct drm_device *dev = crtc->dev;
ed4a6a7c 11200 struct drm_i915_private *dev_priv = to_i915(dev);
da20eabd
ML
11201 struct intel_plane_state *old_plane_state =
11202 to_intel_plane_state(plane->state);
11203 int idx = intel_crtc->base.base.id, ret;
da20eabd
ML
11204 bool mode_changed = needs_modeset(crtc_state);
11205 bool was_crtc_enabled = crtc->state->active;
11206 bool is_crtc_enabled = crtc_state->active;
da20eabd
ML
11207 bool turn_off, turn_on, visible, was_visible;
11208 struct drm_framebuffer *fb = plane_state->fb;
11209
11210 if (crtc_state && INTEL_INFO(dev)->gen >= 9 &&
11211 plane->type != DRM_PLANE_TYPE_CURSOR) {
11212 ret = skl_update_scaler_plane(
11213 to_intel_crtc_state(crtc_state),
11214 to_intel_plane_state(plane_state));
11215 if (ret)
11216 return ret;
11217 }
11218
da20eabd
ML
11219 was_visible = old_plane_state->visible;
11220 visible = to_intel_plane_state(plane_state)->visible;
11221
11222 if (!was_crtc_enabled && WARN_ON(was_visible))
11223 was_visible = false;
11224
35c08f43
ML
11225 /*
11226 * Visibility is calculated as if the crtc was on, but
11227 * after scaler setup everything depends on it being off
11228 * when the crtc isn't active.
f818ffea
VS
11229 *
11230 * FIXME this is wrong for watermarks. Watermarks should also
11231 * be computed as if the pipe would be active. Perhaps move
11232 * per-plane wm computation to the .check_plane() hook, and
11233 * only combine the results from all planes in the current place?
35c08f43
ML
11234 */
11235 if (!is_crtc_enabled)
11236 to_intel_plane_state(plane_state)->visible = visible = false;
da20eabd
ML
11237
11238 if (!was_visible && !visible)
11239 return 0;
11240
e8861675
ML
11241 if (fb != old_plane_state->base.fb)
11242 pipe_config->fb_changed = true;
11243
da20eabd
ML
11244 turn_off = was_visible && (!visible || mode_changed);
11245 turn_on = visible && (!was_visible || mode_changed);
11246
11247 DRM_DEBUG_ATOMIC("[CRTC:%i] has [PLANE:%i] with fb %i\n", idx,
11248 plane->base.id, fb ? fb->base.id : -1);
11249
11250 DRM_DEBUG_ATOMIC("[PLANE:%i] visible %i -> %i, off %i, on %i, ms %i\n",
11251 plane->base.id, was_visible, visible,
11252 turn_off, turn_on, mode_changed);
11253
caed361d
VS
11254 if (turn_on) {
11255 pipe_config->update_wm_pre = true;
11256
11257 /* must disable cxsr around plane enable/disable */
11258 if (plane->type != DRM_PLANE_TYPE_CURSOR)
11259 pipe_config->disable_cxsr = true;
11260 } else if (turn_off) {
11261 pipe_config->update_wm_post = true;
92826fcd 11262
852eb00d 11263 /* must disable cxsr around plane enable/disable */
e8861675 11264 if (plane->type != DRM_PLANE_TYPE_CURSOR)
ab1d3a0e 11265 pipe_config->disable_cxsr = true;
852eb00d 11266 } else if (intel_wm_need_update(plane, plane_state)) {
caed361d
VS
11267 /* FIXME bollocks */
11268 pipe_config->update_wm_pre = true;
11269 pipe_config->update_wm_post = true;
852eb00d 11270 }
da20eabd 11271
ed4a6a7c 11272 /* Pre-gen9 platforms need two-step watermark updates */
caed361d
VS
11273 if ((pipe_config->update_wm_pre || pipe_config->update_wm_post) &&
11274 INTEL_INFO(dev)->gen < 9 && dev_priv->display.optimize_watermarks)
ed4a6a7c
MR
11275 to_intel_crtc_state(crtc_state)->wm.need_postvbl_update = true;
11276
8be6ca85 11277 if (visible || was_visible)
cd202f69 11278 pipe_config->fb_bits |= to_intel_plane(plane)->frontbuffer_bit;
a9ff8714 11279
31ae71fc
ML
11280 /*
11281 * WaCxSRDisabledForSpriteScaling:ivb
11282 *
11283 * cstate->update_wm was already set above, so this flag will
11284 * take effect when we commit and program watermarks.
11285 */
11286 if (plane->type == DRM_PLANE_TYPE_OVERLAY && IS_IVYBRIDGE(dev) &&
11287 needs_scaling(to_intel_plane_state(plane_state)) &&
11288 !needs_scaling(old_plane_state))
11289 pipe_config->disable_lp_wm = true;
d21fbe87 11290
da20eabd
ML
11291 return 0;
11292}
11293
6d3a1ce7
ML
11294static bool encoders_cloneable(const struct intel_encoder *a,
11295 const struct intel_encoder *b)
11296{
11297 /* masks could be asymmetric, so check both ways */
11298 return a == b || (a->cloneable & (1 << b->type) &&
11299 b->cloneable & (1 << a->type));
11300}
11301
11302static bool check_single_encoder_cloning(struct drm_atomic_state *state,
11303 struct intel_crtc *crtc,
11304 struct intel_encoder *encoder)
11305{
11306 struct intel_encoder *source_encoder;
11307 struct drm_connector *connector;
11308 struct drm_connector_state *connector_state;
11309 int i;
11310
11311 for_each_connector_in_state(state, connector, connector_state, i) {
11312 if (connector_state->crtc != &crtc->base)
11313 continue;
11314
11315 source_encoder =
11316 to_intel_encoder(connector_state->best_encoder);
11317 if (!encoders_cloneable(encoder, source_encoder))
11318 return false;
11319 }
11320
11321 return true;
11322}
11323
11324static bool check_encoder_cloning(struct drm_atomic_state *state,
11325 struct intel_crtc *crtc)
11326{
11327 struct intel_encoder *encoder;
11328 struct drm_connector *connector;
11329 struct drm_connector_state *connector_state;
11330 int i;
11331
11332 for_each_connector_in_state(state, connector, connector_state, i) {
11333 if (connector_state->crtc != &crtc->base)
11334 continue;
11335
11336 encoder = to_intel_encoder(connector_state->best_encoder);
11337 if (!check_single_encoder_cloning(state, crtc, encoder))
11338 return false;
11339 }
11340
11341 return true;
11342}
11343
11344static int intel_crtc_atomic_check(struct drm_crtc *crtc,
11345 struct drm_crtc_state *crtc_state)
11346{
cf5a15be 11347 struct drm_device *dev = crtc->dev;
ad421372 11348 struct drm_i915_private *dev_priv = dev->dev_private;
6d3a1ce7 11349 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cf5a15be
ML
11350 struct intel_crtc_state *pipe_config =
11351 to_intel_crtc_state(crtc_state);
6d3a1ce7 11352 struct drm_atomic_state *state = crtc_state->state;
4d20cd86 11353 int ret;
6d3a1ce7
ML
11354 bool mode_changed = needs_modeset(crtc_state);
11355
11356 if (mode_changed && !check_encoder_cloning(state, intel_crtc)) {
11357 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
11358 return -EINVAL;
11359 }
11360
852eb00d 11361 if (mode_changed && !crtc_state->active)
caed361d 11362 pipe_config->update_wm_post = true;
eddfcbcd 11363
ad421372
ML
11364 if (mode_changed && crtc_state->enable &&
11365 dev_priv->display.crtc_compute_clock &&
8106ddbd 11366 !WARN_ON(pipe_config->shared_dpll)) {
ad421372
ML
11367 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
11368 pipe_config);
11369 if (ret)
11370 return ret;
11371 }
11372
82cf435b
LL
11373 if (crtc_state->color_mgmt_changed) {
11374 ret = intel_color_check(crtc, crtc_state);
11375 if (ret)
11376 return ret;
11377 }
11378
e435d6e5 11379 ret = 0;
86c8bbbe 11380 if (dev_priv->display.compute_pipe_wm) {
e3bddded 11381 ret = dev_priv->display.compute_pipe_wm(pipe_config);
ed4a6a7c
MR
11382 if (ret) {
11383 DRM_DEBUG_KMS("Target pipe watermarks are invalid\n");
11384 return ret;
11385 }
11386 }
11387
11388 if (dev_priv->display.compute_intermediate_wm &&
11389 !to_intel_atomic_state(state)->skip_intermediate_wm) {
11390 if (WARN_ON(!dev_priv->display.compute_pipe_wm))
11391 return 0;
11392
11393 /*
11394 * Calculate 'intermediate' watermarks that satisfy both the
11395 * old state and the new state. We can program these
11396 * immediately.
11397 */
11398 ret = dev_priv->display.compute_intermediate_wm(crtc->dev,
11399 intel_crtc,
11400 pipe_config);
11401 if (ret) {
11402 DRM_DEBUG_KMS("No valid intermediate pipe watermarks are possible\n");
86c8bbbe 11403 return ret;
ed4a6a7c 11404 }
e3d5457c
VS
11405 } else if (dev_priv->display.compute_intermediate_wm) {
11406 if (HAS_PCH_SPLIT(dev_priv) && INTEL_GEN(dev_priv) < 9)
11407 pipe_config->wm.ilk.intermediate = pipe_config->wm.ilk.optimal;
86c8bbbe
MR
11408 }
11409
e435d6e5
ML
11410 if (INTEL_INFO(dev)->gen >= 9) {
11411 if (mode_changed)
11412 ret = skl_update_scaler_crtc(pipe_config);
11413
11414 if (!ret)
11415 ret = intel_atomic_setup_scalers(dev, intel_crtc,
11416 pipe_config);
11417 }
11418
11419 return ret;
6d3a1ce7
ML
11420}
11421
65b38e0d 11422static const struct drm_crtc_helper_funcs intel_helper_funcs = {
f6e5b160 11423 .mode_set_base_atomic = intel_pipe_set_base_atomic,
6d3a1ce7 11424 .atomic_check = intel_crtc_atomic_check,
f6e5b160
CW
11425};
11426
d29b2f9d
ACO
11427static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
11428{
11429 struct intel_connector *connector;
11430
11431 for_each_intel_connector(dev, connector) {
8863dc7f
DV
11432 if (connector->base.state->crtc)
11433 drm_connector_unreference(&connector->base);
11434
d29b2f9d
ACO
11435 if (connector->base.encoder) {
11436 connector->base.state->best_encoder =
11437 connector->base.encoder;
11438 connector->base.state->crtc =
11439 connector->base.encoder->crtc;
8863dc7f
DV
11440
11441 drm_connector_reference(&connector->base);
d29b2f9d
ACO
11442 } else {
11443 connector->base.state->best_encoder = NULL;
11444 connector->base.state->crtc = NULL;
11445 }
11446 }
11447}
11448
050f7aeb 11449static void
eba905b2 11450connected_sink_compute_bpp(struct intel_connector *connector,
5cec258b 11451 struct intel_crtc_state *pipe_config)
050f7aeb
DV
11452{
11453 int bpp = pipe_config->pipe_bpp;
11454
11455 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
11456 connector->base.base.id,
c23cc417 11457 connector->base.name);
050f7aeb
DV
11458
11459 /* Don't use an invalid EDID bpc value */
11460 if (connector->base.display_info.bpc &&
11461 connector->base.display_info.bpc * 3 < bpp) {
11462 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
11463 bpp, connector->base.display_info.bpc*3);
11464 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
11465 }
11466
013dd9e0
JN
11467 /* Clamp bpp to default limit on screens without EDID 1.4 */
11468 if (connector->base.display_info.bpc == 0) {
11469 int type = connector->base.connector_type;
11470 int clamp_bpp = 24;
11471
11472 /* Fall back to 18 bpp when DP sink capability is unknown. */
11473 if (type == DRM_MODE_CONNECTOR_DisplayPort ||
11474 type == DRM_MODE_CONNECTOR_eDP)
11475 clamp_bpp = 18;
11476
11477 if (bpp > clamp_bpp) {
11478 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of %d\n",
11479 bpp, clamp_bpp);
11480 pipe_config->pipe_bpp = clamp_bpp;
11481 }
050f7aeb
DV
11482 }
11483}
11484
4e53c2e0 11485static int
050f7aeb 11486compute_baseline_pipe_bpp(struct intel_crtc *crtc,
5cec258b 11487 struct intel_crtc_state *pipe_config)
4e53c2e0 11488{
050f7aeb 11489 struct drm_device *dev = crtc->base.dev;
1486017f 11490 struct drm_atomic_state *state;
da3ced29
ACO
11491 struct drm_connector *connector;
11492 struct drm_connector_state *connector_state;
1486017f 11493 int bpp, i;
4e53c2e0 11494
666a4537 11495 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)))
4e53c2e0 11496 bpp = 10*3;
d328c9d7
DV
11497 else if (INTEL_INFO(dev)->gen >= 5)
11498 bpp = 12*3;
11499 else
11500 bpp = 8*3;
11501
4e53c2e0 11502
4e53c2e0
DV
11503 pipe_config->pipe_bpp = bpp;
11504
1486017f
ACO
11505 state = pipe_config->base.state;
11506
4e53c2e0 11507 /* Clamp display bpp to EDID value */
da3ced29
ACO
11508 for_each_connector_in_state(state, connector, connector_state, i) {
11509 if (connector_state->crtc != &crtc->base)
4e53c2e0
DV
11510 continue;
11511
da3ced29
ACO
11512 connected_sink_compute_bpp(to_intel_connector(connector),
11513 pipe_config);
4e53c2e0
DV
11514 }
11515
11516 return bpp;
11517}
11518
644db711
DV
11519static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
11520{
11521 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
11522 "type: 0x%x flags: 0x%x\n",
1342830c 11523 mode->crtc_clock,
644db711
DV
11524 mode->crtc_hdisplay, mode->crtc_hsync_start,
11525 mode->crtc_hsync_end, mode->crtc_htotal,
11526 mode->crtc_vdisplay, mode->crtc_vsync_start,
11527 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
11528}
11529
c0b03411 11530static void intel_dump_pipe_config(struct intel_crtc *crtc,
5cec258b 11531 struct intel_crtc_state *pipe_config,
c0b03411
DV
11532 const char *context)
11533{
6a60cd87
CK
11534 struct drm_device *dev = crtc->base.dev;
11535 struct drm_plane *plane;
11536 struct intel_plane *intel_plane;
11537 struct intel_plane_state *state;
11538 struct drm_framebuffer *fb;
11539
11540 DRM_DEBUG_KMS("[CRTC:%d]%s config %p for pipe %c\n", crtc->base.base.id,
11541 context, pipe_config, pipe_name(crtc->pipe));
c0b03411 11542
da205630 11543 DRM_DEBUG_KMS("cpu_transcoder: %s\n", transcoder_name(pipe_config->cpu_transcoder));
c0b03411
DV
11544 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
11545 pipe_config->pipe_bpp, pipe_config->dither);
11546 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
11547 pipe_config->has_pch_encoder,
11548 pipe_config->fdi_lanes,
11549 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
11550 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
11551 pipe_config->fdi_m_n.tu);
90a6b7b0 11552 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
eb14cb74 11553 pipe_config->has_dp_encoder,
90a6b7b0 11554 pipe_config->lane_count,
eb14cb74
VS
11555 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
11556 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
11557 pipe_config->dp_m_n.tu);
b95af8be 11558
90a6b7b0 11559 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
b95af8be 11560 pipe_config->has_dp_encoder,
90a6b7b0 11561 pipe_config->lane_count,
b95af8be
VK
11562 pipe_config->dp_m2_n2.gmch_m,
11563 pipe_config->dp_m2_n2.gmch_n,
11564 pipe_config->dp_m2_n2.link_m,
11565 pipe_config->dp_m2_n2.link_n,
11566 pipe_config->dp_m2_n2.tu);
11567
55072d19
DV
11568 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
11569 pipe_config->has_audio,
11570 pipe_config->has_infoframe);
11571
c0b03411 11572 DRM_DEBUG_KMS("requested mode:\n");
2d112de7 11573 drm_mode_debug_printmodeline(&pipe_config->base.mode);
c0b03411 11574 DRM_DEBUG_KMS("adjusted mode:\n");
2d112de7
ACO
11575 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
11576 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
d71b8d4a 11577 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
37327abd
VS
11578 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
11579 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
0ec463d3
TU
11580 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
11581 crtc->num_scalers,
11582 pipe_config->scaler_state.scaler_users,
11583 pipe_config->scaler_state.scaler_id);
c0b03411
DV
11584 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
11585 pipe_config->gmch_pfit.control,
11586 pipe_config->gmch_pfit.pgm_ratios,
11587 pipe_config->gmch_pfit.lvds_border_bits);
fd4daa9c 11588 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
c0b03411 11589 pipe_config->pch_pfit.pos,
fd4daa9c
CW
11590 pipe_config->pch_pfit.size,
11591 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
42db64ef 11592 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
cf532bb2 11593 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
6a60cd87 11594
415ff0f6 11595 if (IS_BROXTON(dev)) {
05712c15 11596 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x,"
415ff0f6 11597 "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
c8453338 11598 "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n",
415ff0f6
TU
11599 pipe_config->ddi_pll_sel,
11600 pipe_config->dpll_hw_state.ebb0,
05712c15 11601 pipe_config->dpll_hw_state.ebb4,
415ff0f6
TU
11602 pipe_config->dpll_hw_state.pll0,
11603 pipe_config->dpll_hw_state.pll1,
11604 pipe_config->dpll_hw_state.pll2,
11605 pipe_config->dpll_hw_state.pll3,
11606 pipe_config->dpll_hw_state.pll6,
11607 pipe_config->dpll_hw_state.pll8,
05712c15 11608 pipe_config->dpll_hw_state.pll9,
c8453338 11609 pipe_config->dpll_hw_state.pll10,
415ff0f6 11610 pipe_config->dpll_hw_state.pcsdw12);
ef11bdb3 11611 } else if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
415ff0f6
TU
11612 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: "
11613 "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
11614 pipe_config->ddi_pll_sel,
11615 pipe_config->dpll_hw_state.ctrl1,
11616 pipe_config->dpll_hw_state.cfgcr1,
11617 pipe_config->dpll_hw_state.cfgcr2);
11618 } else if (HAS_DDI(dev)) {
1260f07e 11619 DRM_DEBUG_KMS("ddi_pll_sel: 0x%x; dpll_hw_state: wrpll: 0x%x spll: 0x%x\n",
415ff0f6 11620 pipe_config->ddi_pll_sel,
00490c22
ML
11621 pipe_config->dpll_hw_state.wrpll,
11622 pipe_config->dpll_hw_state.spll);
415ff0f6
TU
11623 } else {
11624 DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
11625 "fp0: 0x%x, fp1: 0x%x\n",
11626 pipe_config->dpll_hw_state.dpll,
11627 pipe_config->dpll_hw_state.dpll_md,
11628 pipe_config->dpll_hw_state.fp0,
11629 pipe_config->dpll_hw_state.fp1);
11630 }
11631
6a60cd87
CK
11632 DRM_DEBUG_KMS("planes on this crtc\n");
11633 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
11634 intel_plane = to_intel_plane(plane);
11635 if (intel_plane->pipe != crtc->pipe)
11636 continue;
11637
11638 state = to_intel_plane_state(plane->state);
11639 fb = state->base.fb;
11640 if (!fb) {
11641 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d "
11642 "disabled, scaler_id = %d\n",
11643 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
11644 plane->base.id, intel_plane->pipe,
11645 (crtc->base.primary == plane) ? 0 : intel_plane->plane + 1,
11646 drm_plane_index(plane), state->scaler_id);
11647 continue;
11648 }
11649
11650 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d enabled",
11651 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
11652 plane->base.id, intel_plane->pipe,
11653 crtc->base.primary == plane ? 0 : intel_plane->plane + 1,
11654 drm_plane_index(plane));
11655 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = 0x%x",
11656 fb->base.id, fb->width, fb->height, fb->pixel_format);
11657 DRM_DEBUG_KMS("\tscaler:%d src (%u, %u) %ux%u dst (%u, %u) %ux%u\n",
11658 state->scaler_id,
11659 state->src.x1 >> 16, state->src.y1 >> 16,
11660 drm_rect_width(&state->src) >> 16,
11661 drm_rect_height(&state->src) >> 16,
11662 state->dst.x1, state->dst.y1,
11663 drm_rect_width(&state->dst), drm_rect_height(&state->dst));
11664 }
c0b03411
DV
11665}
11666
5448a00d 11667static bool check_digital_port_conflicts(struct drm_atomic_state *state)
00f0b378 11668{
5448a00d 11669 struct drm_device *dev = state->dev;
da3ced29 11670 struct drm_connector *connector;
00f0b378
VS
11671 unsigned int used_ports = 0;
11672
11673 /*
11674 * Walk the connector list instead of the encoder
11675 * list to detect the problem on ddi platforms
11676 * where there's just one encoder per digital port.
11677 */
0bff4858
VS
11678 drm_for_each_connector(connector, dev) {
11679 struct drm_connector_state *connector_state;
11680 struct intel_encoder *encoder;
11681
11682 connector_state = drm_atomic_get_existing_connector_state(state, connector);
11683 if (!connector_state)
11684 connector_state = connector->state;
11685
5448a00d 11686 if (!connector_state->best_encoder)
00f0b378
VS
11687 continue;
11688
5448a00d
ACO
11689 encoder = to_intel_encoder(connector_state->best_encoder);
11690
11691 WARN_ON(!connector_state->crtc);
00f0b378
VS
11692
11693 switch (encoder->type) {
11694 unsigned int port_mask;
11695 case INTEL_OUTPUT_UNKNOWN:
11696 if (WARN_ON(!HAS_DDI(dev)))
11697 break;
11698 case INTEL_OUTPUT_DISPLAYPORT:
11699 case INTEL_OUTPUT_HDMI:
11700 case INTEL_OUTPUT_EDP:
11701 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
11702
11703 /* the same port mustn't appear more than once */
11704 if (used_ports & port_mask)
11705 return false;
11706
11707 used_ports |= port_mask;
11708 default:
11709 break;
11710 }
11711 }
11712
11713 return true;
11714}
11715
83a57153
ACO
11716static void
11717clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
11718{
11719 struct drm_crtc_state tmp_state;
663a3640 11720 struct intel_crtc_scaler_state scaler_state;
4978cc93 11721 struct intel_dpll_hw_state dpll_hw_state;
8106ddbd 11722 struct intel_shared_dpll *shared_dpll;
8504c74c 11723 uint32_t ddi_pll_sel;
c4e2d043 11724 bool force_thru;
83a57153 11725
7546a384
ACO
11726 /* FIXME: before the switch to atomic started, a new pipe_config was
11727 * kzalloc'd. Code that depends on any field being zero should be
11728 * fixed, so that the crtc_state can be safely duplicated. For now,
11729 * only fields that are know to not cause problems are preserved. */
11730
83a57153 11731 tmp_state = crtc_state->base;
663a3640 11732 scaler_state = crtc_state->scaler_state;
4978cc93
ACO
11733 shared_dpll = crtc_state->shared_dpll;
11734 dpll_hw_state = crtc_state->dpll_hw_state;
8504c74c 11735 ddi_pll_sel = crtc_state->ddi_pll_sel;
c4e2d043 11736 force_thru = crtc_state->pch_pfit.force_thru;
4978cc93 11737
83a57153 11738 memset(crtc_state, 0, sizeof *crtc_state);
4978cc93 11739
83a57153 11740 crtc_state->base = tmp_state;
663a3640 11741 crtc_state->scaler_state = scaler_state;
4978cc93
ACO
11742 crtc_state->shared_dpll = shared_dpll;
11743 crtc_state->dpll_hw_state = dpll_hw_state;
8504c74c 11744 crtc_state->ddi_pll_sel = ddi_pll_sel;
c4e2d043 11745 crtc_state->pch_pfit.force_thru = force_thru;
83a57153
ACO
11746}
11747
548ee15b 11748static int
b8cecdf5 11749intel_modeset_pipe_config(struct drm_crtc *crtc,
b359283a 11750 struct intel_crtc_state *pipe_config)
ee7b9f93 11751{
b359283a 11752 struct drm_atomic_state *state = pipe_config->base.state;
7758a113 11753 struct intel_encoder *encoder;
da3ced29 11754 struct drm_connector *connector;
0b901879 11755 struct drm_connector_state *connector_state;
d328c9d7 11756 int base_bpp, ret = -EINVAL;
0b901879 11757 int i;
e29c22c0 11758 bool retry = true;
ee7b9f93 11759
83a57153 11760 clear_intel_crtc_state(pipe_config);
7758a113 11761
e143a21c
DV
11762 pipe_config->cpu_transcoder =
11763 (enum transcoder) to_intel_crtc(crtc)->pipe;
b8cecdf5 11764
2960bc9c
ID
11765 /*
11766 * Sanitize sync polarity flags based on requested ones. If neither
11767 * positive or negative polarity is requested, treat this as meaning
11768 * negative polarity.
11769 */
2d112de7 11770 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 11771 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
2d112de7 11772 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
2960bc9c 11773
2d112de7 11774 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 11775 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
2d112de7 11776 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
2960bc9c 11777
d328c9d7
DV
11778 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
11779 pipe_config);
11780 if (base_bpp < 0)
4e53c2e0
DV
11781 goto fail;
11782
e41a56be
VS
11783 /*
11784 * Determine the real pipe dimensions. Note that stereo modes can
11785 * increase the actual pipe size due to the frame doubling and
11786 * insertion of additional space for blanks between the frame. This
11787 * is stored in the crtc timings. We use the requested mode to do this
11788 * computation to clearly distinguish it from the adjusted mode, which
11789 * can be changed by the connectors in the below retry loop.
11790 */
2d112de7 11791 drm_crtc_get_hv_timing(&pipe_config->base.mode,
ecb7e16b
GP
11792 &pipe_config->pipe_src_w,
11793 &pipe_config->pipe_src_h);
e41a56be 11794
e29c22c0 11795encoder_retry:
ef1b460d 11796 /* Ensure the port clock defaults are reset when retrying. */
ff9a6750 11797 pipe_config->port_clock = 0;
ef1b460d 11798 pipe_config->pixel_multiplier = 1;
ff9a6750 11799
135c81b8 11800 /* Fill in default crtc timings, allow encoders to overwrite them. */
2d112de7
ACO
11801 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
11802 CRTC_STEREO_DOUBLE);
135c81b8 11803
7758a113
DV
11804 /* Pass our mode to the connectors and the CRTC to give them a chance to
11805 * adjust it according to limitations or connector properties, and also
11806 * a chance to reject the mode entirely.
47f1c6c9 11807 */
da3ced29 11808 for_each_connector_in_state(state, connector, connector_state, i) {
0b901879 11809 if (connector_state->crtc != crtc)
7758a113 11810 continue;
7ae89233 11811
0b901879
ACO
11812 encoder = to_intel_encoder(connector_state->best_encoder);
11813
efea6e8e
DV
11814 if (!(encoder->compute_config(encoder, pipe_config))) {
11815 DRM_DEBUG_KMS("Encoder config failure\n");
7758a113
DV
11816 goto fail;
11817 }
ee7b9f93 11818 }
47f1c6c9 11819
ff9a6750
DV
11820 /* Set default port clock if not overwritten by the encoder. Needs to be
11821 * done afterwards in case the encoder adjusts the mode. */
11822 if (!pipe_config->port_clock)
2d112de7 11823 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
241bfc38 11824 * pipe_config->pixel_multiplier;
ff9a6750 11825
a43f6e0f 11826 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
e29c22c0 11827 if (ret < 0) {
7758a113
DV
11828 DRM_DEBUG_KMS("CRTC fixup failed\n");
11829 goto fail;
ee7b9f93 11830 }
e29c22c0
DV
11831
11832 if (ret == RETRY) {
11833 if (WARN(!retry, "loop in pipe configuration computation\n")) {
11834 ret = -EINVAL;
11835 goto fail;
11836 }
11837
11838 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
11839 retry = false;
11840 goto encoder_retry;
11841 }
11842
e8fa4270
DV
11843 /* Dithering seems to not pass-through bits correctly when it should, so
11844 * only enable it on 6bpc panels. */
11845 pipe_config->dither = pipe_config->pipe_bpp == 6*3;
62f0ace5 11846 DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n",
d328c9d7 11847 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
4e53c2e0 11848
7758a113 11849fail:
548ee15b 11850 return ret;
ee7b9f93 11851}
47f1c6c9 11852
ea9d758d 11853static void
4740b0f2 11854intel_modeset_update_crtc_state(struct drm_atomic_state *state)
ea9d758d 11855{
0a9ab303
ACO
11856 struct drm_crtc *crtc;
11857 struct drm_crtc_state *crtc_state;
8a75d157 11858 int i;
ea9d758d 11859
7668851f 11860 /* Double check state. */
8a75d157 11861 for_each_crtc_in_state(state, crtc, crtc_state, i) {
3cb480bc 11862 to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state);
fc467a22
ML
11863
11864 /* Update hwmode for vblank functions */
11865 if (crtc->state->active)
11866 crtc->hwmode = crtc->state->adjusted_mode;
11867 else
11868 crtc->hwmode.crtc_clock = 0;
61067a5e
ML
11869
11870 /*
11871 * Update legacy state to satisfy fbc code. This can
11872 * be removed when fbc uses the atomic state.
11873 */
11874 if (drm_atomic_get_existing_plane_state(state, crtc->primary)) {
11875 struct drm_plane_state *plane_state = crtc->primary->state;
11876
11877 crtc->primary->fb = plane_state->fb;
11878 crtc->x = plane_state->src_x >> 16;
11879 crtc->y = plane_state->src_y >> 16;
11880 }
ea9d758d 11881 }
ea9d758d
DV
11882}
11883
3bd26263 11884static bool intel_fuzzy_clock_check(int clock1, int clock2)
f1f644dc 11885{
3bd26263 11886 int diff;
f1f644dc
JB
11887
11888 if (clock1 == clock2)
11889 return true;
11890
11891 if (!clock1 || !clock2)
11892 return false;
11893
11894 diff = abs(clock1 - clock2);
11895
11896 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
11897 return true;
11898
11899 return false;
11900}
11901
25c5b266
DV
11902#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
11903 list_for_each_entry((intel_crtc), \
11904 &(dev)->mode_config.crtc_list, \
11905 base.head) \
95150bdf 11906 for_each_if (mask & (1 <<(intel_crtc)->pipe))
25c5b266 11907
cfb23ed6
ML
11908static bool
11909intel_compare_m_n(unsigned int m, unsigned int n,
11910 unsigned int m2, unsigned int n2,
11911 bool exact)
11912{
11913 if (m == m2 && n == n2)
11914 return true;
11915
11916 if (exact || !m || !n || !m2 || !n2)
11917 return false;
11918
11919 BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX);
11920
31d10b57
ML
11921 if (n > n2) {
11922 while (n > n2) {
cfb23ed6
ML
11923 m2 <<= 1;
11924 n2 <<= 1;
11925 }
31d10b57
ML
11926 } else if (n < n2) {
11927 while (n < n2) {
cfb23ed6
ML
11928 m <<= 1;
11929 n <<= 1;
11930 }
11931 }
11932
31d10b57
ML
11933 if (n != n2)
11934 return false;
11935
11936 return intel_fuzzy_clock_check(m, m2);
cfb23ed6
ML
11937}
11938
11939static bool
11940intel_compare_link_m_n(const struct intel_link_m_n *m_n,
11941 struct intel_link_m_n *m2_n2,
11942 bool adjust)
11943{
11944 if (m_n->tu == m2_n2->tu &&
11945 intel_compare_m_n(m_n->gmch_m, m_n->gmch_n,
11946 m2_n2->gmch_m, m2_n2->gmch_n, !adjust) &&
11947 intel_compare_m_n(m_n->link_m, m_n->link_n,
11948 m2_n2->link_m, m2_n2->link_n, !adjust)) {
11949 if (adjust)
11950 *m2_n2 = *m_n;
11951
11952 return true;
11953 }
11954
11955 return false;
11956}
11957
0e8ffe1b 11958static bool
2fa2fe9a 11959intel_pipe_config_compare(struct drm_device *dev,
5cec258b 11960 struct intel_crtc_state *current_config,
cfb23ed6
ML
11961 struct intel_crtc_state *pipe_config,
11962 bool adjust)
0e8ffe1b 11963{
cfb23ed6
ML
11964 bool ret = true;
11965
11966#define INTEL_ERR_OR_DBG_KMS(fmt, ...) \
11967 do { \
11968 if (!adjust) \
11969 DRM_ERROR(fmt, ##__VA_ARGS__); \
11970 else \
11971 DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \
11972 } while (0)
11973
66e985c0
DV
11974#define PIPE_CONF_CHECK_X(name) \
11975 if (current_config->name != pipe_config->name) { \
cfb23ed6 11976 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
66e985c0
DV
11977 "(expected 0x%08x, found 0x%08x)\n", \
11978 current_config->name, \
11979 pipe_config->name); \
cfb23ed6 11980 ret = false; \
66e985c0
DV
11981 }
11982
08a24034
DV
11983#define PIPE_CONF_CHECK_I(name) \
11984 if (current_config->name != pipe_config->name) { \
cfb23ed6 11985 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
08a24034
DV
11986 "(expected %i, found %i)\n", \
11987 current_config->name, \
11988 pipe_config->name); \
cfb23ed6
ML
11989 ret = false; \
11990 }
11991
8106ddbd
ACO
11992#define PIPE_CONF_CHECK_P(name) \
11993 if (current_config->name != pipe_config->name) { \
11994 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
11995 "(expected %p, found %p)\n", \
11996 current_config->name, \
11997 pipe_config->name); \
11998 ret = false; \
11999 }
12000
cfb23ed6
ML
12001#define PIPE_CONF_CHECK_M_N(name) \
12002 if (!intel_compare_link_m_n(&current_config->name, \
12003 &pipe_config->name,\
12004 adjust)) { \
12005 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12006 "(expected tu %i gmch %i/%i link %i/%i, " \
12007 "found tu %i, gmch %i/%i link %i/%i)\n", \
12008 current_config->name.tu, \
12009 current_config->name.gmch_m, \
12010 current_config->name.gmch_n, \
12011 current_config->name.link_m, \
12012 current_config->name.link_n, \
12013 pipe_config->name.tu, \
12014 pipe_config->name.gmch_m, \
12015 pipe_config->name.gmch_n, \
12016 pipe_config->name.link_m, \
12017 pipe_config->name.link_n); \
12018 ret = false; \
12019 }
12020
55c561a7
DV
12021/* This is required for BDW+ where there is only one set of registers for
12022 * switching between high and low RR.
12023 * This macro can be used whenever a comparison has to be made between one
12024 * hw state and multiple sw state variables.
12025 */
cfb23ed6
ML
12026#define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \
12027 if (!intel_compare_link_m_n(&current_config->name, \
12028 &pipe_config->name, adjust) && \
12029 !intel_compare_link_m_n(&current_config->alt_name, \
12030 &pipe_config->name, adjust)) { \
12031 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12032 "(expected tu %i gmch %i/%i link %i/%i, " \
12033 "or tu %i gmch %i/%i link %i/%i, " \
12034 "found tu %i, gmch %i/%i link %i/%i)\n", \
12035 current_config->name.tu, \
12036 current_config->name.gmch_m, \
12037 current_config->name.gmch_n, \
12038 current_config->name.link_m, \
12039 current_config->name.link_n, \
12040 current_config->alt_name.tu, \
12041 current_config->alt_name.gmch_m, \
12042 current_config->alt_name.gmch_n, \
12043 current_config->alt_name.link_m, \
12044 current_config->alt_name.link_n, \
12045 pipe_config->name.tu, \
12046 pipe_config->name.gmch_m, \
12047 pipe_config->name.gmch_n, \
12048 pipe_config->name.link_m, \
12049 pipe_config->name.link_n); \
12050 ret = false; \
88adfff1
DV
12051 }
12052
1bd1bd80
DV
12053#define PIPE_CONF_CHECK_FLAGS(name, mask) \
12054 if ((current_config->name ^ pipe_config->name) & (mask)) { \
cfb23ed6 12055 INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \
1bd1bd80
DV
12056 "(expected %i, found %i)\n", \
12057 current_config->name & (mask), \
12058 pipe_config->name & (mask)); \
cfb23ed6 12059 ret = false; \
1bd1bd80
DV
12060 }
12061
5e550656
VS
12062#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
12063 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
cfb23ed6 12064 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
5e550656
VS
12065 "(expected %i, found %i)\n", \
12066 current_config->name, \
12067 pipe_config->name); \
cfb23ed6 12068 ret = false; \
5e550656
VS
12069 }
12070
bb760063
DV
12071#define PIPE_CONF_QUIRK(quirk) \
12072 ((current_config->quirks | pipe_config->quirks) & (quirk))
12073
eccb140b
DV
12074 PIPE_CONF_CHECK_I(cpu_transcoder);
12075
08a24034
DV
12076 PIPE_CONF_CHECK_I(has_pch_encoder);
12077 PIPE_CONF_CHECK_I(fdi_lanes);
cfb23ed6 12078 PIPE_CONF_CHECK_M_N(fdi_m_n);
08a24034 12079
eb14cb74 12080 PIPE_CONF_CHECK_I(has_dp_encoder);
90a6b7b0 12081 PIPE_CONF_CHECK_I(lane_count);
b95af8be
VK
12082
12083 if (INTEL_INFO(dev)->gen < 8) {
cfb23ed6
ML
12084 PIPE_CONF_CHECK_M_N(dp_m_n);
12085
cfb23ed6
ML
12086 if (current_config->has_drrs)
12087 PIPE_CONF_CHECK_M_N(dp_m2_n2);
12088 } else
12089 PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2);
eb14cb74 12090
a65347ba
JN
12091 PIPE_CONF_CHECK_I(has_dsi_encoder);
12092
2d112de7
ACO
12093 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
12094 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
12095 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
12096 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
12097 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
12098 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
1bd1bd80 12099
2d112de7
ACO
12100 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
12101 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
12102 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
12103 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
12104 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
12105 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
1bd1bd80 12106
c93f54cf 12107 PIPE_CONF_CHECK_I(pixel_multiplier);
6897b4b5 12108 PIPE_CONF_CHECK_I(has_hdmi_sink);
b5a9fa09 12109 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
666a4537 12110 IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
b5a9fa09 12111 PIPE_CONF_CHECK_I(limited_color_range);
e43823ec 12112 PIPE_CONF_CHECK_I(has_infoframe);
6c49f241 12113
9ed109a7
DV
12114 PIPE_CONF_CHECK_I(has_audio);
12115
2d112de7 12116 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
1bd1bd80
DV
12117 DRM_MODE_FLAG_INTERLACE);
12118
bb760063 12119 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
2d112de7 12120 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12121 DRM_MODE_FLAG_PHSYNC);
2d112de7 12122 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12123 DRM_MODE_FLAG_NHSYNC);
2d112de7 12124 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12125 DRM_MODE_FLAG_PVSYNC);
2d112de7 12126 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063
DV
12127 DRM_MODE_FLAG_NVSYNC);
12128 }
045ac3b5 12129
333b8ca8 12130 PIPE_CONF_CHECK_X(gmch_pfit.control);
e2ff2d4a
DV
12131 /* pfit ratios are autocomputed by the hw on gen4+ */
12132 if (INTEL_INFO(dev)->gen < 4)
7f7d8dd6 12133 PIPE_CONF_CHECK_X(gmch_pfit.pgm_ratios);
333b8ca8 12134 PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits);
9953599b 12135
bfd16b2a
ML
12136 if (!adjust) {
12137 PIPE_CONF_CHECK_I(pipe_src_w);
12138 PIPE_CONF_CHECK_I(pipe_src_h);
12139
12140 PIPE_CONF_CHECK_I(pch_pfit.enabled);
12141 if (current_config->pch_pfit.enabled) {
12142 PIPE_CONF_CHECK_X(pch_pfit.pos);
12143 PIPE_CONF_CHECK_X(pch_pfit.size);
12144 }
2fa2fe9a 12145
7aefe2b5
ML
12146 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
12147 }
a1b2278e 12148
e59150dc
JB
12149 /* BDW+ don't expose a synchronous way to read the state */
12150 if (IS_HASWELL(dev))
12151 PIPE_CONF_CHECK_I(ips_enabled);
42db64ef 12152
282740f7
VS
12153 PIPE_CONF_CHECK_I(double_wide);
12154
26804afd
DV
12155 PIPE_CONF_CHECK_X(ddi_pll_sel);
12156
8106ddbd 12157 PIPE_CONF_CHECK_P(shared_dpll);
66e985c0 12158 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
8bcc2795 12159 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
66e985c0
DV
12160 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
12161 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
d452c5b6 12162 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
00490c22 12163 PIPE_CONF_CHECK_X(dpll_hw_state.spll);
3f4cd19f
DL
12164 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
12165 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
12166 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
c0d43d62 12167
47eacbab
VS
12168 PIPE_CONF_CHECK_X(dsi_pll.ctrl);
12169 PIPE_CONF_CHECK_X(dsi_pll.div);
12170
42571aef
VS
12171 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
12172 PIPE_CONF_CHECK_I(pipe_bpp);
12173
2d112de7 12174 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
a9a7e98a 12175 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
5e550656 12176
66e985c0 12177#undef PIPE_CONF_CHECK_X
08a24034 12178#undef PIPE_CONF_CHECK_I
8106ddbd 12179#undef PIPE_CONF_CHECK_P
1bd1bd80 12180#undef PIPE_CONF_CHECK_FLAGS
5e550656 12181#undef PIPE_CONF_CHECK_CLOCK_FUZZY
bb760063 12182#undef PIPE_CONF_QUIRK
cfb23ed6 12183#undef INTEL_ERR_OR_DBG_KMS
88adfff1 12184
cfb23ed6 12185 return ret;
0e8ffe1b
DV
12186}
12187
e3b247da
VS
12188static void intel_pipe_config_sanity_check(struct drm_i915_private *dev_priv,
12189 const struct intel_crtc_state *pipe_config)
12190{
12191 if (pipe_config->has_pch_encoder) {
21a727b3 12192 int fdi_dotclock = intel_dotclock_calculate(intel_fdi_link_freq(dev_priv, pipe_config),
e3b247da
VS
12193 &pipe_config->fdi_m_n);
12194 int dotclock = pipe_config->base.adjusted_mode.crtc_clock;
12195
12196 /*
12197 * FDI already provided one idea for the dotclock.
12198 * Yell if the encoder disagrees.
12199 */
12200 WARN(!intel_fuzzy_clock_check(fdi_dotclock, dotclock),
12201 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
12202 fdi_dotclock, dotclock);
12203 }
12204}
12205
c0ead703
ML
12206static void verify_wm_state(struct drm_crtc *crtc,
12207 struct drm_crtc_state *new_state)
08db6652 12208{
e7c84544 12209 struct drm_device *dev = crtc->dev;
08db6652
DL
12210 struct drm_i915_private *dev_priv = dev->dev_private;
12211 struct skl_ddb_allocation hw_ddb, *sw_ddb;
e7c84544
ML
12212 struct skl_ddb_entry *hw_entry, *sw_entry;
12213 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12214 const enum pipe pipe = intel_crtc->pipe;
08db6652
DL
12215 int plane;
12216
e7c84544 12217 if (INTEL_INFO(dev)->gen < 9 || !new_state->active)
08db6652
DL
12218 return;
12219
12220 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
12221 sw_ddb = &dev_priv->wm.skl_hw.ddb;
12222
e7c84544
ML
12223 /* planes */
12224 for_each_plane(dev_priv, pipe, plane) {
12225 hw_entry = &hw_ddb.plane[pipe][plane];
12226 sw_entry = &sw_ddb->plane[pipe][plane];
08db6652 12227
e7c84544 12228 if (skl_ddb_entry_equal(hw_entry, sw_entry))
08db6652
DL
12229 continue;
12230
e7c84544
ML
12231 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
12232 "(expected (%u,%u), found (%u,%u))\n",
12233 pipe_name(pipe), plane + 1,
12234 sw_entry->start, sw_entry->end,
12235 hw_entry->start, hw_entry->end);
12236 }
08db6652 12237
e7c84544
ML
12238 /* cursor */
12239 hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR];
12240 sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR];
08db6652 12241
e7c84544 12242 if (!skl_ddb_entry_equal(hw_entry, sw_entry)) {
08db6652
DL
12243 DRM_ERROR("mismatch in DDB state pipe %c cursor "
12244 "(expected (%u,%u), found (%u,%u))\n",
12245 pipe_name(pipe),
12246 sw_entry->start, sw_entry->end,
12247 hw_entry->start, hw_entry->end);
12248 }
12249}
12250
91d1b4bd 12251static void
c0ead703 12252verify_connector_state(struct drm_device *dev, struct drm_crtc *crtc)
8af6cf88 12253{
35dd3c64 12254 struct drm_connector *connector;
8af6cf88 12255
e7c84544 12256 drm_for_each_connector(connector, dev) {
35dd3c64
ML
12257 struct drm_encoder *encoder = connector->encoder;
12258 struct drm_connector_state *state = connector->state;
ad3c558f 12259
e7c84544
ML
12260 if (state->crtc != crtc)
12261 continue;
12262
03f476e1
ML
12263 intel_connector_verify_state(to_intel_connector(connector),
12264 connector->state);
8af6cf88 12265
ad3c558f 12266 I915_STATE_WARN(state->best_encoder != encoder,
35dd3c64 12267 "connector's atomic encoder doesn't match legacy encoder\n");
8af6cf88 12268 }
91d1b4bd
DV
12269}
12270
12271static void
c0ead703 12272verify_encoder_state(struct drm_device *dev)
91d1b4bd
DV
12273{
12274 struct intel_encoder *encoder;
12275 struct intel_connector *connector;
8af6cf88 12276
b2784e15 12277 for_each_intel_encoder(dev, encoder) {
8af6cf88 12278 bool enabled = false;
4d20cd86 12279 enum pipe pipe;
8af6cf88
DV
12280
12281 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
12282 encoder->base.base.id,
8e329a03 12283 encoder->base.name);
8af6cf88 12284
3a3371ff 12285 for_each_intel_connector(dev, connector) {
4d20cd86 12286 if (connector->base.state->best_encoder != &encoder->base)
8af6cf88
DV
12287 continue;
12288 enabled = true;
ad3c558f
ML
12289
12290 I915_STATE_WARN(connector->base.state->crtc !=
12291 encoder->base.crtc,
12292 "connector's crtc doesn't match encoder crtc\n");
8af6cf88 12293 }
0e32b39c 12294
e2c719b7 12295 I915_STATE_WARN(!!encoder->base.crtc != enabled,
8af6cf88
DV
12296 "encoder's enabled state mismatch "
12297 "(expected %i, found %i)\n",
12298 !!encoder->base.crtc, enabled);
7c60d198
ML
12299
12300 if (!encoder->base.crtc) {
4d20cd86 12301 bool active;
7c60d198 12302
4d20cd86
ML
12303 active = encoder->get_hw_state(encoder, &pipe);
12304 I915_STATE_WARN(active,
12305 "encoder detached but still enabled on pipe %c.\n",
12306 pipe_name(pipe));
7c60d198 12307 }
8af6cf88 12308 }
91d1b4bd
DV
12309}
12310
12311static void
c0ead703
ML
12312verify_crtc_state(struct drm_crtc *crtc,
12313 struct drm_crtc_state *old_crtc_state,
12314 struct drm_crtc_state *new_crtc_state)
91d1b4bd 12315{
e7c84544 12316 struct drm_device *dev = crtc->dev;
fbee40df 12317 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd 12318 struct intel_encoder *encoder;
e7c84544
ML
12319 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12320 struct intel_crtc_state *pipe_config, *sw_config;
12321 struct drm_atomic_state *old_state;
12322 bool active;
045ac3b5 12323
e7c84544
ML
12324 old_state = old_crtc_state->state;
12325 __drm_atomic_helper_crtc_destroy_state(crtc, old_crtc_state);
12326 pipe_config = to_intel_crtc_state(old_crtc_state);
12327 memset(pipe_config, 0, sizeof(*pipe_config));
12328 pipe_config->base.crtc = crtc;
12329 pipe_config->base.state = old_state;
8af6cf88 12330
e7c84544 12331 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
8af6cf88 12332
e7c84544 12333 active = dev_priv->display.get_pipe_config(intel_crtc, pipe_config);
d62cf62a 12334
e7c84544
ML
12335 /* hw state is inconsistent with the pipe quirk */
12336 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
12337 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
12338 active = new_crtc_state->active;
6c49f241 12339
e7c84544
ML
12340 I915_STATE_WARN(new_crtc_state->active != active,
12341 "crtc active state doesn't match with hw state "
12342 "(expected %i, found %i)\n", new_crtc_state->active, active);
0e8ffe1b 12343
e7c84544
ML
12344 I915_STATE_WARN(intel_crtc->active != new_crtc_state->active,
12345 "transitional active state does not match atomic hw state "
12346 "(expected %i, found %i)\n", new_crtc_state->active, intel_crtc->active);
4d20cd86 12347
e7c84544
ML
12348 for_each_encoder_on_crtc(dev, crtc, encoder) {
12349 enum pipe pipe;
4d20cd86 12350
e7c84544
ML
12351 active = encoder->get_hw_state(encoder, &pipe);
12352 I915_STATE_WARN(active != new_crtc_state->active,
12353 "[ENCODER:%i] active %i with crtc active %i\n",
12354 encoder->base.base.id, active, new_crtc_state->active);
4d20cd86 12355
e7c84544
ML
12356 I915_STATE_WARN(active && intel_crtc->pipe != pipe,
12357 "Encoder connected to wrong pipe %c\n",
12358 pipe_name(pipe));
4d20cd86 12359
e7c84544
ML
12360 if (active)
12361 encoder->get_config(encoder, pipe_config);
12362 }
53d9f4e9 12363
e7c84544
ML
12364 if (!new_crtc_state->active)
12365 return;
cfb23ed6 12366
e7c84544 12367 intel_pipe_config_sanity_check(dev_priv, pipe_config);
e3b247da 12368
e7c84544
ML
12369 sw_config = to_intel_crtc_state(crtc->state);
12370 if (!intel_pipe_config_compare(dev, sw_config,
12371 pipe_config, false)) {
12372 I915_STATE_WARN(1, "pipe state doesn't match!\n");
12373 intel_dump_pipe_config(intel_crtc, pipe_config,
12374 "[hw state]");
12375 intel_dump_pipe_config(intel_crtc, sw_config,
12376 "[sw state]");
8af6cf88
DV
12377 }
12378}
12379
91d1b4bd 12380static void
c0ead703
ML
12381verify_single_dpll_state(struct drm_i915_private *dev_priv,
12382 struct intel_shared_dpll *pll,
12383 struct drm_crtc *crtc,
12384 struct drm_crtc_state *new_state)
91d1b4bd 12385{
91d1b4bd 12386 struct intel_dpll_hw_state dpll_hw_state;
e7c84544
ML
12387 unsigned crtc_mask;
12388 bool active;
5358901f 12389
e7c84544 12390 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
5358901f 12391
e7c84544 12392 DRM_DEBUG_KMS("%s\n", pll->name);
5358901f 12393
e7c84544 12394 active = pll->funcs.get_hw_state(dev_priv, pll, &dpll_hw_state);
5358901f 12395
e7c84544
ML
12396 if (!(pll->flags & INTEL_DPLL_ALWAYS_ON)) {
12397 I915_STATE_WARN(!pll->on && pll->active_mask,
12398 "pll in active use but not on in sw tracking\n");
12399 I915_STATE_WARN(pll->on && !pll->active_mask,
12400 "pll is on but not used by any active crtc\n");
12401 I915_STATE_WARN(pll->on != active,
12402 "pll on state mismatch (expected %i, found %i)\n",
12403 pll->on, active);
12404 }
5358901f 12405
e7c84544 12406 if (!crtc) {
2dd66ebd 12407 I915_STATE_WARN(pll->active_mask & ~pll->config.crtc_mask,
e7c84544
ML
12408 "more active pll users than references: %x vs %x\n",
12409 pll->active_mask, pll->config.crtc_mask);
5358901f 12410
e7c84544
ML
12411 return;
12412 }
12413
12414 crtc_mask = 1 << drm_crtc_index(crtc);
12415
12416 if (new_state->active)
12417 I915_STATE_WARN(!(pll->active_mask & crtc_mask),
12418 "pll active mismatch (expected pipe %c in active mask 0x%02x)\n",
12419 pipe_name(drm_crtc_index(crtc)), pll->active_mask);
12420 else
12421 I915_STATE_WARN(pll->active_mask & crtc_mask,
12422 "pll active mismatch (didn't expect pipe %c in active mask 0x%02x)\n",
12423 pipe_name(drm_crtc_index(crtc)), pll->active_mask);
2dd66ebd 12424
e7c84544
ML
12425 I915_STATE_WARN(!(pll->config.crtc_mask & crtc_mask),
12426 "pll enabled crtcs mismatch (expected 0x%x in 0x%02x)\n",
12427 crtc_mask, pll->config.crtc_mask);
66e985c0 12428
e7c84544
ML
12429 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state,
12430 &dpll_hw_state,
12431 sizeof(dpll_hw_state)),
12432 "pll hw state mismatch\n");
12433}
12434
12435static void
c0ead703
ML
12436verify_shared_dpll_state(struct drm_device *dev, struct drm_crtc *crtc,
12437 struct drm_crtc_state *old_crtc_state,
12438 struct drm_crtc_state *new_crtc_state)
e7c84544
ML
12439{
12440 struct drm_i915_private *dev_priv = dev->dev_private;
12441 struct intel_crtc_state *old_state = to_intel_crtc_state(old_crtc_state);
12442 struct intel_crtc_state *new_state = to_intel_crtc_state(new_crtc_state);
12443
12444 if (new_state->shared_dpll)
c0ead703 12445 verify_single_dpll_state(dev_priv, new_state->shared_dpll, crtc, new_crtc_state);
e7c84544
ML
12446
12447 if (old_state->shared_dpll &&
12448 old_state->shared_dpll != new_state->shared_dpll) {
12449 unsigned crtc_mask = 1 << drm_crtc_index(crtc);
12450 struct intel_shared_dpll *pll = old_state->shared_dpll;
12451
12452 I915_STATE_WARN(pll->active_mask & crtc_mask,
12453 "pll active mismatch (didn't expect pipe %c in active mask)\n",
12454 pipe_name(drm_crtc_index(crtc)));
12455 I915_STATE_WARN(pll->config.crtc_mask & crtc_mask,
12456 "pll enabled crtcs mismatch (found %x in enabled mask)\n",
12457 pipe_name(drm_crtc_index(crtc)));
5358901f 12458 }
8af6cf88
DV
12459}
12460
e7c84544 12461static void
c0ead703 12462intel_modeset_verify_crtc(struct drm_crtc *crtc,
e7c84544
ML
12463 struct drm_crtc_state *old_state,
12464 struct drm_crtc_state *new_state)
12465{
c0ead703 12466 verify_wm_state(crtc, new_state);
c0ead703
ML
12467 verify_crtc_state(crtc, old_state, new_state);
12468 verify_shared_dpll_state(crtc->dev, crtc, old_state, new_state);
e7c84544
ML
12469}
12470
12471static void
c0ead703 12472verify_disabled_dpll_state(struct drm_device *dev)
e7c84544
ML
12473{
12474 struct drm_i915_private *dev_priv = dev->dev_private;
12475 int i;
12476
12477 for (i = 0; i < dev_priv->num_shared_dpll; i++)
c0ead703 12478 verify_single_dpll_state(dev_priv, &dev_priv->shared_dplls[i], NULL, NULL);
e7c84544
ML
12479}
12480
12481static void
c0ead703 12482intel_modeset_verify_disabled(struct drm_device *dev)
e7c84544 12483{
c0ead703
ML
12484 verify_encoder_state(dev);
12485 verify_connector_state(dev, NULL);
12486 verify_disabled_dpll_state(dev);
e7c84544
ML
12487}
12488
80715b2f
VS
12489static void update_scanline_offset(struct intel_crtc *crtc)
12490{
12491 struct drm_device *dev = crtc->base.dev;
12492
12493 /*
12494 * The scanline counter increments at the leading edge of hsync.
12495 *
12496 * On most platforms it starts counting from vtotal-1 on the
12497 * first active line. That means the scanline counter value is
12498 * always one less than what we would expect. Ie. just after
12499 * start of vblank, which also occurs at start of hsync (on the
12500 * last active line), the scanline counter will read vblank_start-1.
12501 *
12502 * On gen2 the scanline counter starts counting from 1 instead
12503 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
12504 * to keep the value positive), instead of adding one.
12505 *
12506 * On HSW+ the behaviour of the scanline counter depends on the output
12507 * type. For DP ports it behaves like most other platforms, but on HDMI
12508 * there's an extra 1 line difference. So we need to add two instead of
12509 * one to the value.
12510 */
12511 if (IS_GEN2(dev)) {
124abe07 12512 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
80715b2f
VS
12513 int vtotal;
12514
124abe07
VS
12515 vtotal = adjusted_mode->crtc_vtotal;
12516 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
80715b2f
VS
12517 vtotal /= 2;
12518
12519 crtc->scanline_offset = vtotal - 1;
12520 } else if (HAS_DDI(dev) &&
409ee761 12521 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
80715b2f
VS
12522 crtc->scanline_offset = 2;
12523 } else
12524 crtc->scanline_offset = 1;
12525}
12526
ad421372 12527static void intel_modeset_clear_plls(struct drm_atomic_state *state)
ed6739ef 12528{
225da59b 12529 struct drm_device *dev = state->dev;
ed6739ef 12530 struct drm_i915_private *dev_priv = to_i915(dev);
ad421372 12531 struct intel_shared_dpll_config *shared_dpll = NULL;
0a9ab303
ACO
12532 struct drm_crtc *crtc;
12533 struct drm_crtc_state *crtc_state;
0a9ab303 12534 int i;
ed6739ef
ACO
12535
12536 if (!dev_priv->display.crtc_compute_clock)
ad421372 12537 return;
ed6739ef 12538
0a9ab303 12539 for_each_crtc_in_state(state, crtc, crtc_state, i) {
fb1a38a9 12540 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8106ddbd
ACO
12541 struct intel_shared_dpll *old_dpll =
12542 to_intel_crtc_state(crtc->state)->shared_dpll;
0a9ab303 12543
fb1a38a9 12544 if (!needs_modeset(crtc_state))
225da59b
ACO
12545 continue;
12546
8106ddbd 12547 to_intel_crtc_state(crtc_state)->shared_dpll = NULL;
fb1a38a9 12548
8106ddbd 12549 if (!old_dpll)
fb1a38a9 12550 continue;
0a9ab303 12551
ad421372
ML
12552 if (!shared_dpll)
12553 shared_dpll = intel_atomic_get_shared_dpll_state(state);
ed6739ef 12554
8106ddbd 12555 intel_shared_dpll_config_put(shared_dpll, old_dpll, intel_crtc);
ad421372 12556 }
ed6739ef
ACO
12557}
12558
99d736a2
ML
12559/*
12560 * This implements the workaround described in the "notes" section of the mode
12561 * set sequence documentation. When going from no pipes or single pipe to
12562 * multiple pipes, and planes are enabled after the pipe, we need to wait at
12563 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
12564 */
12565static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state)
12566{
12567 struct drm_crtc_state *crtc_state;
12568 struct intel_crtc *intel_crtc;
12569 struct drm_crtc *crtc;
12570 struct intel_crtc_state *first_crtc_state = NULL;
12571 struct intel_crtc_state *other_crtc_state = NULL;
12572 enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE;
12573 int i;
12574
12575 /* look at all crtc's that are going to be enabled in during modeset */
12576 for_each_crtc_in_state(state, crtc, crtc_state, i) {
12577 intel_crtc = to_intel_crtc(crtc);
12578
12579 if (!crtc_state->active || !needs_modeset(crtc_state))
12580 continue;
12581
12582 if (first_crtc_state) {
12583 other_crtc_state = to_intel_crtc_state(crtc_state);
12584 break;
12585 } else {
12586 first_crtc_state = to_intel_crtc_state(crtc_state);
12587 first_pipe = intel_crtc->pipe;
12588 }
12589 }
12590
12591 /* No workaround needed? */
12592 if (!first_crtc_state)
12593 return 0;
12594
12595 /* w/a possibly needed, check how many crtc's are already enabled. */
12596 for_each_intel_crtc(state->dev, intel_crtc) {
12597 struct intel_crtc_state *pipe_config;
12598
12599 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
12600 if (IS_ERR(pipe_config))
12601 return PTR_ERR(pipe_config);
12602
12603 pipe_config->hsw_workaround_pipe = INVALID_PIPE;
12604
12605 if (!pipe_config->base.active ||
12606 needs_modeset(&pipe_config->base))
12607 continue;
12608
12609 /* 2 or more enabled crtcs means no need for w/a */
12610 if (enabled_pipe != INVALID_PIPE)
12611 return 0;
12612
12613 enabled_pipe = intel_crtc->pipe;
12614 }
12615
12616 if (enabled_pipe != INVALID_PIPE)
12617 first_crtc_state->hsw_workaround_pipe = enabled_pipe;
12618 else if (other_crtc_state)
12619 other_crtc_state->hsw_workaround_pipe = first_pipe;
12620
12621 return 0;
12622}
12623
27c329ed
ML
12624static int intel_modeset_all_pipes(struct drm_atomic_state *state)
12625{
12626 struct drm_crtc *crtc;
12627 struct drm_crtc_state *crtc_state;
12628 int ret = 0;
12629
12630 /* add all active pipes to the state */
12631 for_each_crtc(state->dev, crtc) {
12632 crtc_state = drm_atomic_get_crtc_state(state, crtc);
12633 if (IS_ERR(crtc_state))
12634 return PTR_ERR(crtc_state);
12635
12636 if (!crtc_state->active || needs_modeset(crtc_state))
12637 continue;
12638
12639 crtc_state->mode_changed = true;
12640
12641 ret = drm_atomic_add_affected_connectors(state, crtc);
12642 if (ret)
12643 break;
12644
12645 ret = drm_atomic_add_affected_planes(state, crtc);
12646 if (ret)
12647 break;
12648 }
12649
12650 return ret;
12651}
12652
c347a676 12653static int intel_modeset_checks(struct drm_atomic_state *state)
054518dd 12654{
565602d7
ML
12655 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
12656 struct drm_i915_private *dev_priv = state->dev->dev_private;
12657 struct drm_crtc *crtc;
12658 struct drm_crtc_state *crtc_state;
12659 int ret = 0, i;
054518dd 12660
b359283a
ML
12661 if (!check_digital_port_conflicts(state)) {
12662 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
12663 return -EINVAL;
12664 }
12665
565602d7
ML
12666 intel_state->modeset = true;
12667 intel_state->active_crtcs = dev_priv->active_crtcs;
12668
12669 for_each_crtc_in_state(state, crtc, crtc_state, i) {
12670 if (crtc_state->active)
12671 intel_state->active_crtcs |= 1 << i;
12672 else
12673 intel_state->active_crtcs &= ~(1 << i);
8b4a7d05
MR
12674
12675 if (crtc_state->active != crtc->state->active)
12676 intel_state->active_pipe_changes |= drm_crtc_mask(crtc);
565602d7
ML
12677 }
12678
054518dd
ACO
12679 /*
12680 * See if the config requires any additional preparation, e.g.
12681 * to adjust global state with pipes off. We need to do this
12682 * here so we can get the modeset_pipe updated config for the new
12683 * mode set on this crtc. For other crtcs we need to use the
12684 * adjusted_mode bits in the crtc directly.
12685 */
27c329ed 12686 if (dev_priv->display.modeset_calc_cdclk) {
c89e39f3
CT
12687 if (!intel_state->cdclk_pll_vco)
12688 intel_state->cdclk_pll_vco = dev_priv->skl_vco_freq;
b2045352
VS
12689 if (!intel_state->cdclk_pll_vco)
12690 intel_state->cdclk_pll_vco = dev_priv->skl_preferred_vco_freq;
c89e39f3 12691
27c329ed 12692 ret = dev_priv->display.modeset_calc_cdclk(state);
c89e39f3
CT
12693 if (ret < 0)
12694 return ret;
27c329ed 12695
c89e39f3
CT
12696 if (intel_state->dev_cdclk != dev_priv->cdclk_freq ||
12697 intel_state->cdclk_pll_vco != dev_priv->skl_vco_freq)
27c329ed
ML
12698 ret = intel_modeset_all_pipes(state);
12699
12700 if (ret < 0)
054518dd 12701 return ret;
e8788cbc
ML
12702
12703 DRM_DEBUG_KMS("New cdclk calculated to be atomic %u, actual %u\n",
12704 intel_state->cdclk, intel_state->dev_cdclk);
27c329ed 12705 } else
1a617b77 12706 to_intel_atomic_state(state)->cdclk = dev_priv->atomic_cdclk_freq;
054518dd 12707
ad421372 12708 intel_modeset_clear_plls(state);
054518dd 12709
565602d7 12710 if (IS_HASWELL(dev_priv))
ad421372 12711 return haswell_mode_set_planes_workaround(state);
99d736a2 12712
ad421372 12713 return 0;
c347a676
ACO
12714}
12715
aa363136
MR
12716/*
12717 * Handle calculation of various watermark data at the end of the atomic check
12718 * phase. The code here should be run after the per-crtc and per-plane 'check'
12719 * handlers to ensure that all derived state has been updated.
12720 */
55994c2c 12721static int calc_watermark_data(struct drm_atomic_state *state)
aa363136
MR
12722{
12723 struct drm_device *dev = state->dev;
98d39494 12724 struct drm_i915_private *dev_priv = to_i915(dev);
98d39494
MR
12725
12726 /* Is there platform-specific watermark information to calculate? */
12727 if (dev_priv->display.compute_global_watermarks)
55994c2c
MR
12728 return dev_priv->display.compute_global_watermarks(state);
12729
12730 return 0;
aa363136
MR
12731}
12732
74c090b1
ML
12733/**
12734 * intel_atomic_check - validate state object
12735 * @dev: drm device
12736 * @state: state to validate
12737 */
12738static int intel_atomic_check(struct drm_device *dev,
12739 struct drm_atomic_state *state)
c347a676 12740{
dd8b3bdb 12741 struct drm_i915_private *dev_priv = to_i915(dev);
aa363136 12742 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
c347a676
ACO
12743 struct drm_crtc *crtc;
12744 struct drm_crtc_state *crtc_state;
12745 int ret, i;
61333b60 12746 bool any_ms = false;
c347a676 12747
74c090b1 12748 ret = drm_atomic_helper_check_modeset(dev, state);
054518dd
ACO
12749 if (ret)
12750 return ret;
12751
c347a676 12752 for_each_crtc_in_state(state, crtc, crtc_state, i) {
cfb23ed6
ML
12753 struct intel_crtc_state *pipe_config =
12754 to_intel_crtc_state(crtc_state);
1ed51de9
DV
12755
12756 /* Catch I915_MODE_FLAG_INHERITED */
12757 if (crtc_state->mode.private_flags != crtc->state->mode.private_flags)
12758 crtc_state->mode_changed = true;
cfb23ed6 12759
af4a879e 12760 if (!needs_modeset(crtc_state))
c347a676
ACO
12761 continue;
12762
af4a879e
DV
12763 if (!crtc_state->enable) {
12764 any_ms = true;
cfb23ed6 12765 continue;
af4a879e 12766 }
cfb23ed6 12767
26495481
DV
12768 /* FIXME: For only active_changed we shouldn't need to do any
12769 * state recomputation at all. */
12770
1ed51de9
DV
12771 ret = drm_atomic_add_affected_connectors(state, crtc);
12772 if (ret)
12773 return ret;
b359283a 12774
cfb23ed6 12775 ret = intel_modeset_pipe_config(crtc, pipe_config);
25aa1c39
ML
12776 if (ret) {
12777 intel_dump_pipe_config(to_intel_crtc(crtc),
12778 pipe_config, "[failed]");
c347a676 12779 return ret;
25aa1c39 12780 }
c347a676 12781
73831236 12782 if (i915.fastboot &&
dd8b3bdb 12783 intel_pipe_config_compare(dev,
cfb23ed6 12784 to_intel_crtc_state(crtc->state),
1ed51de9 12785 pipe_config, true)) {
26495481 12786 crtc_state->mode_changed = false;
bfd16b2a 12787 to_intel_crtc_state(crtc_state)->update_pipe = true;
26495481
DV
12788 }
12789
af4a879e 12790 if (needs_modeset(crtc_state))
26495481 12791 any_ms = true;
cfb23ed6 12792
af4a879e
DV
12793 ret = drm_atomic_add_affected_planes(state, crtc);
12794 if (ret)
12795 return ret;
61333b60 12796
26495481
DV
12797 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
12798 needs_modeset(crtc_state) ?
12799 "[modeset]" : "[fastset]");
c347a676
ACO
12800 }
12801
61333b60
ML
12802 if (any_ms) {
12803 ret = intel_modeset_checks(state);
12804
12805 if (ret)
12806 return ret;
27c329ed 12807 } else
dd8b3bdb 12808 intel_state->cdclk = dev_priv->cdclk_freq;
76305b1a 12809
dd8b3bdb 12810 ret = drm_atomic_helper_check_planes(dev, state);
aa363136
MR
12811 if (ret)
12812 return ret;
12813
f51be2e0 12814 intel_fbc_choose_crtc(dev_priv, state);
55994c2c 12815 return calc_watermark_data(state);
054518dd
ACO
12816}
12817
a6747b73
ML
12818static bool needs_work(struct drm_crtc_state *crtc_state)
12819{
12820 /* hw state checker needs to run */
12821 if (needs_modeset(crtc_state))
12822 return true;
12823
12824 /* unpin old fb's, possibly vblank update */
12825 if (crtc_state->planes_changed)
12826 return true;
12827
12828 /* pipe parameters need to be updated, and hw state checker */
12829 if (to_intel_crtc_state(crtc_state)->update_pipe)
12830 return true;
12831
12832 /* vblank event requested? */
12833 if (crtc_state->event)
12834 return true;
12835
12836 return false;
12837}
12838
5008e874
ML
12839static int intel_atomic_prepare_commit(struct drm_device *dev,
12840 struct drm_atomic_state *state,
81072bfd 12841 bool nonblock)
5008e874 12842{
7580d774 12843 struct drm_i915_private *dev_priv = dev->dev_private;
a6747b73 12844 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
7580d774 12845 struct drm_plane_state *plane_state;
5008e874 12846 struct drm_crtc_state *crtc_state;
7580d774 12847 struct drm_plane *plane;
5008e874
ML
12848 struct drm_crtc *crtc;
12849 int i, ret;
12850
5008e874 12851 for_each_crtc_in_state(state, crtc, crtc_state, i) {
a6747b73
ML
12852 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12853 struct intel_flip_work *work;
12854
95c2ccdc
ML
12855 if (!state->legacy_cursor_update) {
12856 ret = intel_crtc_wait_for_pending_flips(crtc);
12857 if (ret)
12858 return ret;
7580d774 12859
95c2ccdc
ML
12860 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
12861 flush_workqueue(dev_priv->wq);
12862 }
a6747b73
ML
12863
12864 /* test if we need to update something */
12865 if (!needs_work(crtc_state))
12866 continue;
12867
12868 intel_state->work[i] = work =
12869 kzalloc(sizeof(**intel_state->work), GFP_KERNEL);
12870
12871 if (!work)
12872 return -ENOMEM;
12873
12874 if (needs_modeset(crtc_state) ||
12875 to_intel_crtc_state(crtc_state)->update_pipe) {
12876 work->num_old_connectors = hweight32(crtc->state->connector_mask);
12877
12878 work->old_connector_state = kcalloc(work->num_old_connectors,
12879 sizeof(*work->old_connector_state),
12880 GFP_KERNEL);
12881
12882 work->num_new_connectors = hweight32(crtc_state->connector_mask);
12883 work->new_connector_state = kcalloc(work->num_new_connectors,
12884 sizeof(*work->new_connector_state),
12885 GFP_KERNEL);
12886
12887 if (!work->old_connector_state || !work->new_connector_state)
12888 return -ENOMEM;
12889 }
5008e874
ML
12890 }
12891
d55dbd06
ML
12892 if (intel_state->modeset && nonblock) {
12893 DRM_DEBUG_ATOMIC("Nonblock modesets are not yet supported!\n");
12894 return -EINVAL;
12895 }
12896
f935675f
ML
12897 ret = mutex_lock_interruptible(&dev->struct_mutex);
12898 if (ret)
12899 return ret;
12900
5008e874 12901 ret = drm_atomic_helper_prepare_planes(dev, state);
f7e5838b 12902 mutex_unlock(&dev->struct_mutex);
7580d774 12903
21daaeee 12904 if (!ret && !nonblock) {
7580d774
ML
12905 for_each_plane_in_state(state, plane, plane_state, i) {
12906 struct intel_plane_state *intel_plane_state =
12907 to_intel_plane_state(plane_state);
12908
84fc494b
ML
12909 if (plane_state->fence) {
12910 long lret = fence_wait(plane_state->fence, true);
12911
12912 if (lret < 0) {
12913 ret = lret;
12914 break;
12915 }
12916 }
12917
7580d774
ML
12918 if (!intel_plane_state->wait_req)
12919 continue;
12920
12921 ret = __i915_wait_request(intel_plane_state->wait_req,
299259a3 12922 true, NULL, NULL);
f7e5838b 12923 if (ret) {
f4457ae7
CW
12924 /* Any hang should be swallowed by the wait */
12925 WARN_ON(ret == -EIO);
f7e5838b
CW
12926 mutex_lock(&dev->struct_mutex);
12927 drm_atomic_helper_cleanup_planes(dev, state);
12928 mutex_unlock(&dev->struct_mutex);
7580d774 12929 break;
f7e5838b 12930 }
7580d774 12931 }
7580d774 12932 }
5008e874
ML
12933
12934 return ret;
12935}
12936
a2991414
ML
12937u32 intel_crtc_get_vblank_counter(struct intel_crtc *crtc)
12938{
12939 struct drm_device *dev = crtc->base.dev;
12940
12941 if (!dev->max_vblank_count)
12942 return drm_accurate_vblank_count(&crtc->base);
12943
12944 return dev->driver->get_vblank_counter(dev, crtc->pipe);
12945}
12946
a6747b73
ML
12947static void intel_prepare_work(struct drm_crtc *crtc,
12948 struct intel_flip_work *work,
12949 struct drm_atomic_state *state,
12950 struct drm_crtc_state *old_crtc_state)
e8861675 12951{
a6747b73
ML
12952 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12953 struct drm_plane_state *old_plane_state;
12954 struct drm_plane *plane;
12955 int i, j = 0;
e8861675 12956
a6747b73
ML
12957 INIT_WORK(&work->unpin_work, intel_unpin_work_fn);
12958 INIT_WORK(&work->mmio_work, intel_mmio_flip_work_func);
12959 atomic_inc(&intel_crtc->unpin_work_count);
e8861675 12960
a6747b73
ML
12961 for_each_plane_in_state(state, plane, old_plane_state, i) {
12962 struct intel_plane_state *old_state = to_intel_plane_state(old_plane_state);
12963 struct intel_plane_state *new_state = to_intel_plane_state(plane->state);
e8861675 12964
a6747b73
ML
12965 if (old_state->base.crtc != crtc &&
12966 new_state->base.crtc != crtc)
e8861675
ML
12967 continue;
12968
a6747b73
ML
12969 if (plane->type == DRM_PLANE_TYPE_PRIMARY) {
12970 plane->fb = new_state->base.fb;
12971 crtc->x = new_state->base.src_x >> 16;
12972 crtc->y = new_state->base.src_y >> 16;
e8861675
ML
12973 }
12974
a6747b73
ML
12975 old_state->wait_req = new_state->wait_req;
12976 new_state->wait_req = NULL;
12977
12978 old_state->base.fence = new_state->base.fence;
12979 new_state->base.fence = NULL;
12980
12981 /* remove plane state from the atomic state and move it to work */
12982 old_plane_state->state = NULL;
12983 state->planes[i] = NULL;
12984 state->plane_states[i] = NULL;
12985
12986 work->old_plane_state[j] = old_state;
12987 work->new_plane_state[j++] = new_state;
e8861675
ML
12988 }
12989
a6747b73
ML
12990 old_crtc_state->state = NULL;
12991 state->crtcs[drm_crtc_index(crtc)] = NULL;
12992 state->crtc_states[drm_crtc_index(crtc)] = NULL;
e8861675 12993
a6747b73
ML
12994 work->old_crtc_state = to_intel_crtc_state(old_crtc_state);
12995 work->new_crtc_state = to_intel_crtc_state(crtc->state);
12996 work->num_planes = j;
e8861675 12997
a6747b73
ML
12998 work->event = crtc->state->event;
12999 crtc->state->event = NULL;
e8861675 13000
a6747b73
ML
13001 if (needs_modeset(crtc->state) || work->new_crtc_state->update_pipe) {
13002 struct drm_connector *conn;
13003 struct drm_connector_state *old_conn_state;
13004 int k = 0;
e8861675 13005
a6747b73
ML
13006 j = 0;
13007
13008 /*
13009 * intel_unpin_work_fn cannot depend on the connector list
13010 * because it may be freed from underneath it, so add
13011 * them all to the work struct while we're holding locks.
13012 */
13013 for_each_connector_in_state(state, conn, old_conn_state, i) {
13014 if (old_conn_state->crtc == crtc) {
13015 work->old_connector_state[j++] = old_conn_state;
13016
13017 state->connectors[i] = NULL;
13018 state->connector_states[i] = NULL;
13019 }
13020 }
13021
13022 /* If another crtc has stolen the connector from state,
13023 * then for_each_connector_in_state is no longer reliable,
13024 * so use drm_for_each_connector here.
13025 */
13026 drm_for_each_connector(conn, state->dev)
13027 if (conn->state->crtc == crtc)
13028 work->new_connector_state[k++] = conn->state;
13029
13030 WARN(j != work->num_old_connectors, "j = %i, expected %i\n", j, work->num_old_connectors);
13031 WARN(k != work->num_new_connectors, "k = %i, expected %i\n", k, work->num_new_connectors);
13032 } else if (!work->new_crtc_state->update_wm_post)
13033 work->can_async_unpin = true;
13034
13035 work->fb_bits = work->new_crtc_state->fb_bits;
e8861675
ML
13036}
13037
a6747b73
ML
13038static void intel_schedule_unpin(struct drm_crtc *crtc,
13039 struct intel_atomic_state *state,
13040 struct intel_flip_work *work)
e8861675 13041{
a6747b73
ML
13042 struct drm_device *dev = crtc->dev;
13043 struct drm_i915_private *dev_priv = dev->dev_private;
e8861675 13044
a6747b73 13045 to_intel_crtc(crtc)->config = work->new_crtc_state;
e8861675 13046
a6747b73
ML
13047 queue_work(dev_priv->wq, &work->unpin_work);
13048}
e8861675 13049
d55dbd06
ML
13050static void intel_schedule_flip(struct drm_crtc *crtc,
13051 struct intel_atomic_state *state,
13052 struct intel_flip_work *work,
13053 bool nonblock)
13054{
13055 struct intel_crtc_state *crtc_state = work->new_crtc_state;
13056
13057 if (crtc_state->base.planes_changed ||
13058 needs_modeset(&crtc_state->base) ||
13059 crtc_state->update_pipe) {
13060 if (nonblock)
13061 schedule_work(&work->mmio_work);
13062 else
13063 intel_mmio_flip_work_func(&work->mmio_work);
13064 } else {
13065 int ret;
13066
13067 ret = drm_crtc_vblank_get(crtc);
13068 I915_STATE_WARN(ret < 0, "enabling vblank failed with %i\n", ret);
13069
13070 work->flip_queued_vblank = intel_crtc_get_vblank_counter(to_intel_crtc(crtc));
13071 smp_mb__before_atomic();
13072 atomic_set(&work->pending, 1);
13073 }
13074}
13075
a6747b73
ML
13076static void intel_schedule_update(struct drm_crtc *crtc,
13077 struct intel_atomic_state *state,
d55dbd06
ML
13078 struct intel_flip_work *work,
13079 bool nonblock)
a6747b73
ML
13080{
13081 struct drm_device *dev = crtc->dev;
d55dbd06 13082 struct intel_crtc_state *pipe_config = work->new_crtc_state;
a6747b73 13083
d55dbd06 13084 if (!pipe_config->base.active && work->can_async_unpin) {
a6747b73
ML
13085 INIT_LIST_HEAD(&work->head);
13086 intel_schedule_unpin(crtc, state, work);
13087 return;
13088 }
13089
13090 spin_lock_irq(&dev->event_lock);
13091 list_add_tail(&work->head, &to_intel_crtc(crtc)->flip_work);
13092 spin_unlock_irq(&dev->event_lock);
13093
d55dbd06
ML
13094 if (!pipe_config->base.active)
13095 intel_schedule_unpin(crtc, state, work);
13096 else
13097 intel_schedule_flip(crtc, state, work, nonblock);
e8861675
ML
13098}
13099
74c090b1
ML
13100/**
13101 * intel_atomic_commit - commit validated state object
13102 * @dev: DRM device
13103 * @state: the top-level driver state object
81072bfd 13104 * @nonblock: nonblocking commit
74c090b1
ML
13105 *
13106 * This function commits a top-level state object that has been validated
13107 * with drm_atomic_helper_check().
13108 *
13109 * FIXME: Atomic modeset support for i915 is not yet complete. At the moment
13110 * we can only handle plane-related operations and do not yet support
81072bfd 13111 * nonblocking commit.
74c090b1
ML
13112 *
13113 * RETURNS
13114 * Zero for success or -errno.
13115 */
13116static int intel_atomic_commit(struct drm_device *dev,
13117 struct drm_atomic_state *state,
81072bfd 13118 bool nonblock)
a6778b3c 13119{
565602d7 13120 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fbee40df 13121 struct drm_i915_private *dev_priv = dev->dev_private;
29ceb0e6 13122 struct drm_crtc_state *old_crtc_state;
7580d774 13123 struct drm_crtc *crtc;
565602d7 13124 int ret = 0, i;
a6778b3c 13125
81072bfd 13126 ret = intel_atomic_prepare_commit(dev, state, nonblock);
7580d774
ML
13127 if (ret) {
13128 DRM_DEBUG_ATOMIC("Preparing state failed with %i\n", ret);
d4afb8cc 13129 return ret;
7580d774 13130 }
d4afb8cc 13131
1c5e19f8 13132 drm_atomic_helper_swap_state(dev, state);
279e99d7 13133 dev_priv->wm.distrust_bios_wm = false;
734fa01f 13134 dev_priv->wm.skl_results = intel_state->wm_results;
a1475e77 13135 intel_shared_dpll_commit(state);
1c5e19f8 13136
565602d7
ML
13137 if (intel_state->modeset) {
13138 memcpy(dev_priv->min_pixclk, intel_state->min_pixclk,
13139 sizeof(intel_state->min_pixclk));
13140 dev_priv->active_crtcs = intel_state->active_crtcs;
1a617b77 13141 dev_priv->atomic_cdclk_freq = intel_state->cdclk;
565602d7
ML
13142 }
13143
29ceb0e6 13144 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
a539205a
ML
13145 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13146
61333b60
ML
13147 if (!needs_modeset(crtc->state))
13148 continue;
13149
29ceb0e6 13150 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state));
460da916 13151
a6747b73
ML
13152 intel_state->work[i]->put_power_domains =
13153 modeset_get_crtc_power_domains(crtc,
13154 to_intel_crtc_state(crtc->state));
13155
29ceb0e6
VS
13156 if (old_crtc_state->active) {
13157 intel_crtc_disable_planes(crtc, old_crtc_state->plane_mask);
a539205a 13158 dev_priv->display.crtc_disable(crtc);
eddfcbcd 13159 intel_crtc->active = false;
58f9c0bc 13160 intel_fbc_disable(intel_crtc);
eddfcbcd 13161 intel_disable_shared_dpll(intel_crtc);
9bbc8258
VS
13162
13163 /*
13164 * Underruns don't always raise
13165 * interrupts, so check manually.
13166 */
13167 intel_check_cpu_fifo_underruns(dev_priv);
13168 intel_check_pch_fifo_underruns(dev_priv);
b9001114
ML
13169
13170 if (!crtc->state->active)
13171 intel_update_watermarks(crtc);
a539205a 13172 }
b8cecdf5 13173 }
7758a113 13174
ea9d758d
DV
13175 /* Only after disabling all output pipelines that will be changed can we
13176 * update the the output configuration. */
4740b0f2 13177 intel_modeset_update_crtc_state(state);
f6e5b160 13178
565602d7 13179 if (intel_state->modeset) {
4740b0f2 13180 drm_atomic_helper_update_legacy_modeset_state(state->dev, state);
33c8df89
ML
13181
13182 if (dev_priv->display.modeset_commit_cdclk &&
c89e39f3
CT
13183 (intel_state->dev_cdclk != dev_priv->cdclk_freq ||
13184 intel_state->cdclk_pll_vco != dev_priv->skl_vco_freq))
33c8df89 13185 dev_priv->display.modeset_commit_cdclk(state);
f6d1973d 13186
c0ead703 13187 intel_modeset_verify_disabled(dev);
4740b0f2 13188 }
47fab737 13189
a6778b3c 13190 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
29ceb0e6 13191 for_each_crtc_in_state(state, crtc, old_crtc_state, i) {
d55dbd06 13192 struct intel_flip_work *work = intel_state->work[i];
f6ac4b2a
ML
13193 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13194 bool modeset = needs_modeset(crtc->state);
9f836f90 13195
f6ac4b2a 13196 if (modeset && crtc->state->active) {
a539205a
ML
13197 update_scanline_offset(to_intel_crtc(crtc));
13198 dev_priv->display.crtc_enable(crtc);
13199 }
80715b2f 13200
f6ac4b2a 13201 if (!modeset)
29ceb0e6 13202 intel_pre_plane_update(to_intel_crtc_state(old_crtc_state));
f6ac4b2a 13203
a6747b73
ML
13204 if (!work) {
13205 if (!list_empty_careful(&intel_crtc->flip_work)) {
13206 spin_lock_irq(&dev->event_lock);
13207 if (!list_empty(&intel_crtc->flip_work))
13208 work = list_last_entry(&intel_crtc->flip_work,
13209 struct intel_flip_work, head);
13210
13211 if (work && work->new_crtc_state == to_intel_crtc_state(old_crtc_state)) {
13212 work->free_new_crtc_state = true;
13213 state->crtc_states[i] = NULL;
13214 state->crtcs[i] = NULL;
13215 }
13216 spin_unlock_irq(&dev->event_lock);
13217 }
13218 continue;
13219 }
f6d1973d 13220
a6747b73
ML
13221 intel_state->work[i] = NULL;
13222 intel_prepare_work(crtc, work, state, old_crtc_state);
d55dbd06 13223 intel_schedule_update(crtc, intel_state, work, nonblock);
177246a8
MR
13224 }
13225
d55dbd06
ML
13226 /* FIXME: add subpixel order */
13227
ee165b1a 13228 drm_atomic_state_free(state);
f30da187 13229
75714940
MK
13230 /* As one of the primary mmio accessors, KMS has a high likelihood
13231 * of triggering bugs in unclaimed access. After we finish
13232 * modesetting, see if an error has been flagged, and if so
13233 * enable debugging for the next modeset - and hope we catch
13234 * the culprit.
13235 *
13236 * XXX note that we assume display power is on at this point.
13237 * This might hold true now but we need to add pm helper to check
13238 * unclaimed only when the hardware is on, as atomic commits
13239 * can happen also when the device is completely off.
13240 */
13241 intel_uncore_arm_unclaimed_mmio_detection(dev_priv);
13242
74c090b1 13243 return 0;
7f27126e
JB
13244}
13245
c0c36b94
CW
13246void intel_crtc_restore_mode(struct drm_crtc *crtc)
13247{
83a57153
ACO
13248 struct drm_device *dev = crtc->dev;
13249 struct drm_atomic_state *state;
e694eb02 13250 struct drm_crtc_state *crtc_state;
2bfb4627 13251 int ret;
83a57153
ACO
13252
13253 state = drm_atomic_state_alloc(dev);
13254 if (!state) {
e694eb02 13255 DRM_DEBUG_KMS("[CRTC:%d] crtc restore failed, out of memory",
83a57153
ACO
13256 crtc->base.id);
13257 return;
13258 }
13259
e694eb02 13260 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
83a57153 13261
e694eb02
ML
13262retry:
13263 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13264 ret = PTR_ERR_OR_ZERO(crtc_state);
13265 if (!ret) {
13266 if (!crtc_state->active)
13267 goto out;
83a57153 13268
e694eb02 13269 crtc_state->mode_changed = true;
74c090b1 13270 ret = drm_atomic_commit(state);
83a57153
ACO
13271 }
13272
e694eb02
ML
13273 if (ret == -EDEADLK) {
13274 drm_atomic_state_clear(state);
13275 drm_modeset_backoff(state->acquire_ctx);
13276 goto retry;
4ed9fb37 13277 }
4be07317 13278
2bfb4627 13279 if (ret)
e694eb02 13280out:
2bfb4627 13281 drm_atomic_state_free(state);
c0c36b94
CW
13282}
13283
25c5b266
DV
13284#undef for_each_intel_crtc_masked
13285
f6e5b160 13286static const struct drm_crtc_funcs intel_crtc_funcs = {
82cf435b 13287 .gamma_set = drm_atomic_helper_legacy_gamma_set,
74c090b1 13288 .set_config = drm_atomic_helper_set_config,
82cf435b 13289 .set_property = drm_atomic_helper_crtc_set_property,
f6e5b160 13290 .destroy = intel_crtc_destroy,
d55dbd06 13291 .page_flip = drm_atomic_helper_page_flip,
1356837e
MR
13292 .atomic_duplicate_state = intel_crtc_duplicate_state,
13293 .atomic_destroy_state = intel_crtc_destroy_state,
f6e5b160
CW
13294};
13295
d55dbd06
ML
13296static struct fence *intel_get_excl_fence(struct drm_i915_gem_object *obj)
13297{
13298 struct reservation_object *resv;
13299
13300
13301 if (!obj->base.dma_buf)
13302 return NULL;
13303
13304 resv = obj->base.dma_buf->resv;
13305
13306 /* For framebuffer backed by dmabuf, wait for fence */
13307 while (1) {
13308 struct fence *fence_excl, *ret = NULL;
13309
13310 rcu_read_lock();
13311
13312 fence_excl = rcu_dereference(resv->fence_excl);
13313 if (fence_excl)
13314 ret = fence_get_rcu(fence_excl);
13315
13316 rcu_read_unlock();
13317
13318 if (ret == fence_excl)
13319 return ret;
13320 }
13321}
13322
6beb8c23
MR
13323/**
13324 * intel_prepare_plane_fb - Prepare fb for usage on plane
13325 * @plane: drm plane to prepare for
13326 * @fb: framebuffer to prepare for presentation
13327 *
13328 * Prepares a framebuffer for usage on a display plane. Generally this
13329 * involves pinning the underlying object and updating the frontbuffer tracking
13330 * bits. Some older platforms need special physical address handling for
13331 * cursor planes.
13332 *
f935675f
ML
13333 * Must be called with struct_mutex held.
13334 *
6beb8c23
MR
13335 * Returns 0 on success, negative error code on failure.
13336 */
13337int
13338intel_prepare_plane_fb(struct drm_plane *plane,
d136dfee 13339 const struct drm_plane_state *new_state)
465c120c
MR
13340{
13341 struct drm_device *dev = plane->dev;
844f9111 13342 struct drm_framebuffer *fb = new_state->fb;
6beb8c23 13343 struct intel_plane *intel_plane = to_intel_plane(plane);
6beb8c23 13344 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
1ee49399 13345 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->state->fb);
15c86bdb 13346 struct drm_crtc *crtc = new_state->crtc ?: plane->state->crtc;
6beb8c23 13347 int ret = 0;
465c120c 13348
1ee49399 13349 if (!obj && !old_obj)
465c120c
MR
13350 return 0;
13351
15c86bdb
ML
13352 if (WARN_ON(!new_state->state) || WARN_ON(!crtc) ||
13353 WARN_ON(!to_intel_atomic_state(new_state->state)->work[to_intel_crtc(crtc)->pipe])) {
13354 if (WARN_ON(old_obj != obj))
13355 return -EINVAL;
13356
13357 return 0;
13358 }
13359
5008e874
ML
13360 if (old_obj) {
13361 struct drm_crtc_state *crtc_state =
13362 drm_atomic_get_existing_crtc_state(new_state->state, plane->state->crtc);
13363
13364 /* Big Hammer, we also need to ensure that any pending
13365 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
13366 * current scanout is retired before unpinning the old
13367 * framebuffer. Note that we rely on userspace rendering
13368 * into the buffer attached to the pipe they are waiting
13369 * on. If not, userspace generates a GPU hang with IPEHR
13370 * point to the MI_WAIT_FOR_EVENT.
13371 *
13372 * This should only fail upon a hung GPU, in which case we
13373 * can safely continue.
13374 */
13375 if (needs_modeset(crtc_state))
13376 ret = i915_gem_object_wait_rendering(old_obj, true);
f4457ae7
CW
13377 if (ret) {
13378 /* GPU hangs should have been swallowed by the wait */
13379 WARN_ON(ret == -EIO);
f935675f 13380 return ret;
f4457ae7 13381 }
5008e874
ML
13382 }
13383
1ee49399
ML
13384 if (!obj) {
13385 ret = 0;
13386 } else if (plane->type == DRM_PLANE_TYPE_CURSOR &&
6beb8c23
MR
13387 INTEL_INFO(dev)->cursor_needs_physical) {
13388 int align = IS_I830(dev) ? 16 * 1024 : 256;
13389 ret = i915_gem_object_attach_phys(obj, align);
13390 if (ret)
13391 DRM_DEBUG_KMS("failed to attach phys object\n");
13392 } else {
3465c580 13393 ret = intel_pin_and_fence_fb_obj(fb, new_state->rotation);
6beb8c23 13394 }
465c120c 13395
7580d774
ML
13396 if (ret == 0) {
13397 if (obj) {
13398 struct intel_plane_state *plane_state =
13399 to_intel_plane_state(new_state);
13400
13401 i915_gem_request_assign(&plane_state->wait_req,
13402 obj->last_write_req);
84fc494b
ML
13403
13404 plane_state->base.fence = intel_get_excl_fence(obj);
7580d774
ML
13405 }
13406
a9ff8714 13407 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
7580d774 13408 }
fdd508a6 13409
6beb8c23
MR
13410 return ret;
13411}
13412
38f3ce3a
MR
13413/**
13414 * intel_cleanup_plane_fb - Cleans up an fb after plane use
13415 * @plane: drm plane to clean up for
13416 * @fb: old framebuffer that was on plane
13417 *
13418 * Cleans up a framebuffer that has just been removed from a plane.
f935675f
ML
13419 *
13420 * Must be called with struct_mutex held.
38f3ce3a
MR
13421 */
13422void
13423intel_cleanup_plane_fb(struct drm_plane *plane,
d136dfee 13424 const struct drm_plane_state *old_state)
38f3ce3a
MR
13425{
13426 struct drm_device *dev = plane->dev;
1ee49399 13427 struct intel_plane *intel_plane = to_intel_plane(plane);
7580d774 13428 struct intel_plane_state *old_intel_state;
1ee49399
ML
13429 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_state->fb);
13430 struct drm_i915_gem_object *obj = intel_fb_obj(plane->state->fb);
38f3ce3a 13431
7580d774
ML
13432 old_intel_state = to_intel_plane_state(old_state);
13433
1ee49399 13434 if (!obj && !old_obj)
38f3ce3a
MR
13435 return;
13436
1ee49399
ML
13437 if (old_obj && (plane->type != DRM_PLANE_TYPE_CURSOR ||
13438 !INTEL_INFO(dev)->cursor_needs_physical))
3465c580 13439 intel_unpin_fb_obj(old_state->fb, old_state->rotation);
1ee49399
ML
13440
13441 /* prepare_fb aborted? */
13442 if ((old_obj && (old_obj->frontbuffer_bits & intel_plane->frontbuffer_bit)) ||
13443 (obj && !(obj->frontbuffer_bits & intel_plane->frontbuffer_bit)))
13444 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
7580d774
ML
13445
13446 i915_gem_request_assign(&old_intel_state->wait_req, NULL);
84fc494b
ML
13447
13448 fence_put(old_intel_state->base.fence);
13449 old_intel_state->base.fence = NULL;
465c120c
MR
13450}
13451
6156a456
CK
13452int
13453skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
13454{
13455 int max_scale;
13456 struct drm_device *dev;
13457 struct drm_i915_private *dev_priv;
13458 int crtc_clock, cdclk;
13459
bf8a0af0 13460 if (!intel_crtc || !crtc_state->base.enable)
6156a456
CK
13461 return DRM_PLANE_HELPER_NO_SCALING;
13462
13463 dev = intel_crtc->base.dev;
13464 dev_priv = dev->dev_private;
13465 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
27c329ed 13466 cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk;
6156a456 13467
54bf1ce6 13468 if (WARN_ON_ONCE(!crtc_clock || cdclk < crtc_clock))
6156a456
CK
13469 return DRM_PLANE_HELPER_NO_SCALING;
13470
13471 /*
13472 * skl max scale is lower of:
13473 * close to 3 but not 3, -1 is for that purpose
13474 * or
13475 * cdclk/crtc_clock
13476 */
13477 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
13478
13479 return max_scale;
13480}
13481
465c120c 13482static int
3c692a41 13483intel_check_primary_plane(struct drm_plane *plane,
061e4b8d 13484 struct intel_crtc_state *crtc_state,
3c692a41
GP
13485 struct intel_plane_state *state)
13486{
2b875c22
MR
13487 struct drm_crtc *crtc = state->base.crtc;
13488 struct drm_framebuffer *fb = state->base.fb;
6156a456 13489 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
061e4b8d
ML
13490 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
13491 bool can_position = false;
465c120c 13492
693bdc28
VS
13493 if (INTEL_INFO(plane->dev)->gen >= 9) {
13494 /* use scaler when colorkey is not required */
13495 if (state->ckey.flags == I915_SET_COLORKEY_NONE) {
13496 min_scale = 1;
13497 max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state);
13498 }
d8106366 13499 can_position = true;
6156a456 13500 }
d8106366 13501
061e4b8d
ML
13502 return drm_plane_helper_check_update(plane, crtc, fb, &state->src,
13503 &state->dst, &state->clip,
da20eabd
ML
13504 min_scale, max_scale,
13505 can_position, true,
13506 &state->visible);
14af293f
GP
13507}
13508
cf4c7c12 13509/**
4a3b8769
MR
13510 * intel_plane_destroy - destroy a plane
13511 * @plane: plane to destroy
cf4c7c12 13512 *
4a3b8769
MR
13513 * Common destruction function for all types of planes (primary, cursor,
13514 * sprite).
cf4c7c12 13515 */
4a3b8769 13516void intel_plane_destroy(struct drm_plane *plane)
465c120c
MR
13517{
13518 struct intel_plane *intel_plane = to_intel_plane(plane);
13519 drm_plane_cleanup(plane);
13520 kfree(intel_plane);
13521}
13522
65a3fea0 13523const struct drm_plane_funcs intel_plane_funcs = {
70a101f8
MR
13524 .update_plane = drm_atomic_helper_update_plane,
13525 .disable_plane = drm_atomic_helper_disable_plane,
3d7d6510 13526 .destroy = intel_plane_destroy,
c196e1d6 13527 .set_property = drm_atomic_helper_plane_set_property,
a98b3431
MR
13528 .atomic_get_property = intel_plane_atomic_get_property,
13529 .atomic_set_property = intel_plane_atomic_set_property,
ea2c67bb
MR
13530 .atomic_duplicate_state = intel_plane_duplicate_state,
13531 .atomic_destroy_state = intel_plane_destroy_state,
13532
465c120c
MR
13533};
13534
13535static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
13536 int pipe)
13537{
fca0ce2a
VS
13538 struct intel_plane *primary = NULL;
13539 struct intel_plane_state *state = NULL;
465c120c 13540 const uint32_t *intel_primary_formats;
45e3743a 13541 unsigned int num_formats;
fca0ce2a 13542 int ret;
465c120c
MR
13543
13544 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
fca0ce2a
VS
13545 if (!primary)
13546 goto fail;
465c120c 13547
8e7d688b 13548 state = intel_create_plane_state(&primary->base);
fca0ce2a
VS
13549 if (!state)
13550 goto fail;
8e7d688b 13551 primary->base.state = &state->base;
ea2c67bb 13552
465c120c
MR
13553 primary->can_scale = false;
13554 primary->max_downscale = 1;
6156a456
CK
13555 if (INTEL_INFO(dev)->gen >= 9) {
13556 primary->can_scale = true;
af99ceda 13557 state->scaler_id = -1;
6156a456 13558 }
465c120c
MR
13559 primary->pipe = pipe;
13560 primary->plane = pipe;
a9ff8714 13561 primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe);
c59cb179 13562 primary->check_plane = intel_check_primary_plane;
465c120c
MR
13563 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
13564 primary->plane = !pipe;
13565
6c0fd451
DL
13566 if (INTEL_INFO(dev)->gen >= 9) {
13567 intel_primary_formats = skl_primary_formats;
13568 num_formats = ARRAY_SIZE(skl_primary_formats);
a8d201af
ML
13569
13570 primary->update_plane = skylake_update_primary_plane;
13571 primary->disable_plane = skylake_disable_primary_plane;
13572 } else if (HAS_PCH_SPLIT(dev)) {
13573 intel_primary_formats = i965_primary_formats;
13574 num_formats = ARRAY_SIZE(i965_primary_formats);
13575
13576 primary->update_plane = ironlake_update_primary_plane;
13577 primary->disable_plane = i9xx_disable_primary_plane;
6c0fd451 13578 } else if (INTEL_INFO(dev)->gen >= 4) {
568db4f2
DL
13579 intel_primary_formats = i965_primary_formats;
13580 num_formats = ARRAY_SIZE(i965_primary_formats);
a8d201af
ML
13581
13582 primary->update_plane = i9xx_update_primary_plane;
13583 primary->disable_plane = i9xx_disable_primary_plane;
6c0fd451
DL
13584 } else {
13585 intel_primary_formats = i8xx_primary_formats;
13586 num_formats = ARRAY_SIZE(i8xx_primary_formats);
a8d201af
ML
13587
13588 primary->update_plane = i9xx_update_primary_plane;
13589 primary->disable_plane = i9xx_disable_primary_plane;
465c120c
MR
13590 }
13591
fca0ce2a
VS
13592 ret = drm_universal_plane_init(dev, &primary->base, 0,
13593 &intel_plane_funcs,
13594 intel_primary_formats, num_formats,
13595 DRM_PLANE_TYPE_PRIMARY, NULL);
13596 if (ret)
13597 goto fail;
48404c1e 13598
3b7a5119
SJ
13599 if (INTEL_INFO(dev)->gen >= 4)
13600 intel_create_rotation_property(dev, primary);
48404c1e 13601
ea2c67bb
MR
13602 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
13603
465c120c 13604 return &primary->base;
fca0ce2a
VS
13605
13606fail:
13607 kfree(state);
13608 kfree(primary);
13609
13610 return NULL;
465c120c
MR
13611}
13612
3b7a5119
SJ
13613void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
13614{
13615 if (!dev->mode_config.rotation_property) {
13616 unsigned long flags = BIT(DRM_ROTATE_0) |
13617 BIT(DRM_ROTATE_180);
13618
13619 if (INTEL_INFO(dev)->gen >= 9)
13620 flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270);
13621
13622 dev->mode_config.rotation_property =
13623 drm_mode_create_rotation_property(dev, flags);
13624 }
13625 if (dev->mode_config.rotation_property)
13626 drm_object_attach_property(&plane->base.base,
13627 dev->mode_config.rotation_property,
13628 plane->base.state->rotation);
13629}
13630
3d7d6510 13631static int
852e787c 13632intel_check_cursor_plane(struct drm_plane *plane,
061e4b8d 13633 struct intel_crtc_state *crtc_state,
852e787c 13634 struct intel_plane_state *state)
3d7d6510 13635{
061e4b8d 13636 struct drm_crtc *crtc = crtc_state->base.crtc;
2b875c22 13637 struct drm_framebuffer *fb = state->base.fb;
757f9a3e 13638 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
b29ec92c 13639 enum pipe pipe = to_intel_plane(plane)->pipe;
757f9a3e
GP
13640 unsigned stride;
13641 int ret;
3d7d6510 13642
061e4b8d
ML
13643 ret = drm_plane_helper_check_update(plane, crtc, fb, &state->src,
13644 &state->dst, &state->clip,
3d7d6510
MR
13645 DRM_PLANE_HELPER_NO_SCALING,
13646 DRM_PLANE_HELPER_NO_SCALING,
852e787c 13647 true, true, &state->visible);
757f9a3e
GP
13648 if (ret)
13649 return ret;
13650
757f9a3e
GP
13651 /* if we want to turn off the cursor ignore width and height */
13652 if (!obj)
da20eabd 13653 return 0;
757f9a3e 13654
757f9a3e 13655 /* Check for which cursor types we support */
061e4b8d 13656 if (!cursor_size_ok(plane->dev, state->base.crtc_w, state->base.crtc_h)) {
ea2c67bb
MR
13657 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
13658 state->base.crtc_w, state->base.crtc_h);
757f9a3e
GP
13659 return -EINVAL;
13660 }
13661
ea2c67bb
MR
13662 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
13663 if (obj->base.size < stride * state->base.crtc_h) {
757f9a3e
GP
13664 DRM_DEBUG_KMS("buffer is too small\n");
13665 return -ENOMEM;
13666 }
13667
3a656b54 13668 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
757f9a3e 13669 DRM_DEBUG_KMS("cursor cannot be tiled\n");
da20eabd 13670 return -EINVAL;
32b7eeec
MR
13671 }
13672
b29ec92c
VS
13673 /*
13674 * There's something wrong with the cursor on CHV pipe C.
13675 * If it straddles the left edge of the screen then
13676 * moving it away from the edge or disabling it often
13677 * results in a pipe underrun, and often that can lead to
13678 * dead pipe (constant underrun reported, and it scans
13679 * out just a solid color). To recover from that, the
13680 * display power well must be turned off and on again.
13681 * Refuse the put the cursor into that compromised position.
13682 */
13683 if (IS_CHERRYVIEW(plane->dev) && pipe == PIPE_C &&
13684 state->visible && state->base.crtc_x < 0) {
13685 DRM_DEBUG_KMS("CHV cursor C not allowed to straddle the left screen edge\n");
13686 return -EINVAL;
13687 }
13688
da20eabd 13689 return 0;
852e787c 13690}
3d7d6510 13691
a8ad0d8e
ML
13692static void
13693intel_disable_cursor_plane(struct drm_plane *plane,
7fabf5ef 13694 struct drm_crtc *crtc)
a8ad0d8e 13695{
f2858021
ML
13696 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13697
13698 intel_crtc->cursor_addr = 0;
55a08b3f 13699 intel_crtc_update_cursor(crtc, NULL);
a8ad0d8e
ML
13700}
13701
f4a2cf29 13702static void
55a08b3f
ML
13703intel_update_cursor_plane(struct drm_plane *plane,
13704 const struct intel_crtc_state *crtc_state,
13705 const struct intel_plane_state *state)
852e787c 13706{
55a08b3f
ML
13707 struct drm_crtc *crtc = crtc_state->base.crtc;
13708 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ea2c67bb 13709 struct drm_device *dev = plane->dev;
2b875c22 13710 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
a912f12f 13711 uint32_t addr;
852e787c 13712
f4a2cf29 13713 if (!obj)
a912f12f 13714 addr = 0;
f4a2cf29 13715 else if (!INTEL_INFO(dev)->cursor_needs_physical)
a912f12f 13716 addr = i915_gem_obj_ggtt_offset(obj);
f4a2cf29 13717 else
a912f12f 13718 addr = obj->phys_handle->busaddr;
852e787c 13719
a912f12f 13720 intel_crtc->cursor_addr = addr;
55a08b3f 13721 intel_crtc_update_cursor(crtc, state);
852e787c
GP
13722}
13723
3d7d6510
MR
13724static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
13725 int pipe)
13726{
fca0ce2a
VS
13727 struct intel_plane *cursor = NULL;
13728 struct intel_plane_state *state = NULL;
13729 int ret;
3d7d6510
MR
13730
13731 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
fca0ce2a
VS
13732 if (!cursor)
13733 goto fail;
3d7d6510 13734
8e7d688b 13735 state = intel_create_plane_state(&cursor->base);
fca0ce2a
VS
13736 if (!state)
13737 goto fail;
8e7d688b 13738 cursor->base.state = &state->base;
ea2c67bb 13739
3d7d6510
MR
13740 cursor->can_scale = false;
13741 cursor->max_downscale = 1;
13742 cursor->pipe = pipe;
13743 cursor->plane = pipe;
a9ff8714 13744 cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe);
c59cb179 13745 cursor->check_plane = intel_check_cursor_plane;
55a08b3f 13746 cursor->update_plane = intel_update_cursor_plane;
a8ad0d8e 13747 cursor->disable_plane = intel_disable_cursor_plane;
3d7d6510 13748
fca0ce2a
VS
13749 ret = drm_universal_plane_init(dev, &cursor->base, 0,
13750 &intel_plane_funcs,
13751 intel_cursor_formats,
13752 ARRAY_SIZE(intel_cursor_formats),
13753 DRM_PLANE_TYPE_CURSOR, NULL);
13754 if (ret)
13755 goto fail;
4398ad45
VS
13756
13757 if (INTEL_INFO(dev)->gen >= 4) {
13758 if (!dev->mode_config.rotation_property)
13759 dev->mode_config.rotation_property =
13760 drm_mode_create_rotation_property(dev,
13761 BIT(DRM_ROTATE_0) |
13762 BIT(DRM_ROTATE_180));
13763 if (dev->mode_config.rotation_property)
13764 drm_object_attach_property(&cursor->base.base,
13765 dev->mode_config.rotation_property,
8e7d688b 13766 state->base.rotation);
4398ad45
VS
13767 }
13768
af99ceda
CK
13769 if (INTEL_INFO(dev)->gen >=9)
13770 state->scaler_id = -1;
13771
ea2c67bb
MR
13772 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
13773
3d7d6510 13774 return &cursor->base;
fca0ce2a
VS
13775
13776fail:
13777 kfree(state);
13778 kfree(cursor);
13779
13780 return NULL;
3d7d6510
MR
13781}
13782
549e2bfb
CK
13783static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
13784 struct intel_crtc_state *crtc_state)
13785{
13786 int i;
13787 struct intel_scaler *intel_scaler;
13788 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
13789
13790 for (i = 0; i < intel_crtc->num_scalers; i++) {
13791 intel_scaler = &scaler_state->scalers[i];
13792 intel_scaler->in_use = 0;
549e2bfb
CK
13793 intel_scaler->mode = PS_SCALER_MODE_DYN;
13794 }
13795
13796 scaler_state->scaler_id = -1;
13797}
13798
b358d0a6 13799static void intel_crtc_init(struct drm_device *dev, int pipe)
79e53945 13800{
fbee40df 13801 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 13802 struct intel_crtc *intel_crtc;
f5de6e07 13803 struct intel_crtc_state *crtc_state = NULL;
3d7d6510
MR
13804 struct drm_plane *primary = NULL;
13805 struct drm_plane *cursor = NULL;
8563b1e8 13806 int ret;
79e53945 13807
955382f3 13808 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
79e53945
JB
13809 if (intel_crtc == NULL)
13810 return;
13811
f5de6e07
ACO
13812 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
13813 if (!crtc_state)
13814 goto fail;
550acefd
ACO
13815 intel_crtc->config = crtc_state;
13816 intel_crtc->base.state = &crtc_state->base;
07878248 13817 crtc_state->base.crtc = &intel_crtc->base;
f5de6e07 13818
6885843a
ML
13819 INIT_LIST_HEAD(&intel_crtc->flip_work);
13820
549e2bfb
CK
13821 /* initialize shared scalers */
13822 if (INTEL_INFO(dev)->gen >= 9) {
13823 if (pipe == PIPE_C)
13824 intel_crtc->num_scalers = 1;
13825 else
13826 intel_crtc->num_scalers = SKL_NUM_SCALERS;
13827
13828 skl_init_scalers(dev, intel_crtc, crtc_state);
13829 }
13830
465c120c 13831 primary = intel_primary_plane_create(dev, pipe);
3d7d6510
MR
13832 if (!primary)
13833 goto fail;
13834
13835 cursor = intel_cursor_plane_create(dev, pipe);
13836 if (!cursor)
13837 goto fail;
13838
465c120c 13839 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
f9882876 13840 cursor, &intel_crtc_funcs, NULL);
3d7d6510
MR
13841 if (ret)
13842 goto fail;
79e53945 13843
1f1c2e24
VS
13844 /*
13845 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
8c0f92e1 13846 * is hooked to pipe B. Hence we want plane A feeding pipe B.
1f1c2e24 13847 */
80824003
JB
13848 intel_crtc->pipe = pipe;
13849 intel_crtc->plane = pipe;
3a77c4c4 13850 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
28c97730 13851 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
e2e767ab 13852 intel_crtc->plane = !pipe;
80824003
JB
13853 }
13854
4b0e333e
CW
13855 intel_crtc->cursor_base = ~0;
13856 intel_crtc->cursor_cntl = ~0;
dc41c154 13857 intel_crtc->cursor_size = ~0;
8d7849db 13858
852eb00d
VS
13859 intel_crtc->wm.cxsr_allowed = true;
13860
22fd0fab
JB
13861 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
13862 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
13863 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
13864 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
13865
79e53945 13866 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
87b6b101 13867
8563b1e8
LL
13868 intel_color_init(&intel_crtc->base);
13869
87b6b101 13870 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
3d7d6510
MR
13871 return;
13872
13873fail:
13874 if (primary)
13875 drm_plane_cleanup(primary);
13876 if (cursor)
13877 drm_plane_cleanup(cursor);
f5de6e07 13878 kfree(crtc_state);
3d7d6510 13879 kfree(intel_crtc);
79e53945
JB
13880}
13881
752aa88a
JB
13882enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
13883{
13884 struct drm_encoder *encoder = connector->base.encoder;
6e9f798d 13885 struct drm_device *dev = connector->base.dev;
752aa88a 13886
51fd371b 13887 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
752aa88a 13888
d3babd3f 13889 if (!encoder || WARN_ON(!encoder->crtc))
752aa88a
JB
13890 return INVALID_PIPE;
13891
13892 return to_intel_crtc(encoder->crtc)->pipe;
13893}
13894
08d7b3d1 13895int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
05394f39 13896 struct drm_file *file)
08d7b3d1 13897{
08d7b3d1 13898 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
7707e653 13899 struct drm_crtc *drmmode_crtc;
c05422d5 13900 struct intel_crtc *crtc;
08d7b3d1 13901
7707e653 13902 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
08d7b3d1 13903
7707e653 13904 if (!drmmode_crtc) {
08d7b3d1 13905 DRM_ERROR("no such CRTC id\n");
3f2c2057 13906 return -ENOENT;
08d7b3d1
CW
13907 }
13908
7707e653 13909 crtc = to_intel_crtc(drmmode_crtc);
c05422d5 13910 pipe_from_crtc_id->pipe = crtc->pipe;
08d7b3d1 13911
c05422d5 13912 return 0;
08d7b3d1
CW
13913}
13914
66a9278e 13915static int intel_encoder_clones(struct intel_encoder *encoder)
79e53945 13916{
66a9278e
DV
13917 struct drm_device *dev = encoder->base.dev;
13918 struct intel_encoder *source_encoder;
79e53945 13919 int index_mask = 0;
79e53945
JB
13920 int entry = 0;
13921
b2784e15 13922 for_each_intel_encoder(dev, source_encoder) {
bc079e8b 13923 if (encoders_cloneable(encoder, source_encoder))
66a9278e
DV
13924 index_mask |= (1 << entry);
13925
79e53945
JB
13926 entry++;
13927 }
4ef69c7a 13928
79e53945
JB
13929 return index_mask;
13930}
13931
4d302442
CW
13932static bool has_edp_a(struct drm_device *dev)
13933{
13934 struct drm_i915_private *dev_priv = dev->dev_private;
13935
13936 if (!IS_MOBILE(dev))
13937 return false;
13938
13939 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
13940 return false;
13941
e3589908 13942 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
4d302442
CW
13943 return false;
13944
13945 return true;
13946}
13947
84b4e042
JB
13948static bool intel_crt_present(struct drm_device *dev)
13949{
13950 struct drm_i915_private *dev_priv = dev->dev_private;
13951
884497ed
DL
13952 if (INTEL_INFO(dev)->gen >= 9)
13953 return false;
13954
cf404ce4 13955 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
84b4e042
JB
13956 return false;
13957
13958 if (IS_CHERRYVIEW(dev))
13959 return false;
13960
65e472e4
VS
13961 if (HAS_PCH_LPT_H(dev) && I915_READ(SFUSE_STRAP) & SFUSE_STRAP_CRT_DISABLED)
13962 return false;
13963
70ac54d0
VS
13964 /* DDI E can't be used if DDI A requires 4 lanes */
13965 if (HAS_DDI(dev) && I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES)
13966 return false;
13967
e4abb733 13968 if (!dev_priv->vbt.int_crt_support)
84b4e042
JB
13969 return false;
13970
13971 return true;
13972}
13973
79e53945
JB
13974static void intel_setup_outputs(struct drm_device *dev)
13975{
725e30ad 13976 struct drm_i915_private *dev_priv = dev->dev_private;
4ef69c7a 13977 struct intel_encoder *encoder;
cb0953d7 13978 bool dpd_is_edp = false;
79e53945 13979
c9093354 13980 intel_lvds_init(dev);
79e53945 13981
84b4e042 13982 if (intel_crt_present(dev))
79935fca 13983 intel_crt_init(dev);
cb0953d7 13984
c776eb2e
VK
13985 if (IS_BROXTON(dev)) {
13986 /*
13987 * FIXME: Broxton doesn't support port detection via the
13988 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
13989 * detect the ports.
13990 */
13991 intel_ddi_init(dev, PORT_A);
13992 intel_ddi_init(dev, PORT_B);
13993 intel_ddi_init(dev, PORT_C);
c6c794a2
SS
13994
13995 intel_dsi_init(dev);
c776eb2e 13996 } else if (HAS_DDI(dev)) {
0e72a5b5
ED
13997 int found;
13998
de31facd
JB
13999 /*
14000 * Haswell uses DDI functions to detect digital outputs.
14001 * On SKL pre-D0 the strap isn't connected, so we assume
14002 * it's there.
14003 */
77179400 14004 found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED;
de31facd 14005 /* WaIgnoreDDIAStrap: skl */
ef11bdb3 14006 if (found || IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
0e72a5b5
ED
14007 intel_ddi_init(dev, PORT_A);
14008
14009 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
14010 * register */
14011 found = I915_READ(SFUSE_STRAP);
14012
14013 if (found & SFUSE_STRAP_DDIB_DETECTED)
14014 intel_ddi_init(dev, PORT_B);
14015 if (found & SFUSE_STRAP_DDIC_DETECTED)
14016 intel_ddi_init(dev, PORT_C);
14017 if (found & SFUSE_STRAP_DDID_DETECTED)
14018 intel_ddi_init(dev, PORT_D);
2800e4c2
RV
14019 /*
14020 * On SKL we don't have a way to detect DDI-E so we rely on VBT.
14021 */
ef11bdb3 14022 if ((IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) &&
2800e4c2
RV
14023 (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp ||
14024 dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi ||
14025 dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi))
14026 intel_ddi_init(dev, PORT_E);
14027
0e72a5b5 14028 } else if (HAS_PCH_SPLIT(dev)) {
cb0953d7 14029 int found;
5d8a7752 14030 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
270b3042
DV
14031
14032 if (has_edp_a(dev))
14033 intel_dp_init(dev, DP_A, PORT_A);
cb0953d7 14034
dc0fa718 14035 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
461ed3ca 14036 /* PCH SDVOB multiplex with HDMIB */
2a5c0832 14037 found = intel_sdvo_init(dev, PCH_SDVOB, PORT_B);
30ad48b7 14038 if (!found)
e2debe91 14039 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
5eb08b69 14040 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
ab9d7c30 14041 intel_dp_init(dev, PCH_DP_B, PORT_B);
30ad48b7
ZW
14042 }
14043
dc0fa718 14044 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
e2debe91 14045 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
30ad48b7 14046
dc0fa718 14047 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
e2debe91 14048 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
30ad48b7 14049
5eb08b69 14050 if (I915_READ(PCH_DP_C) & DP_DETECTED)
ab9d7c30 14051 intel_dp_init(dev, PCH_DP_C, PORT_C);
5eb08b69 14052
270b3042 14053 if (I915_READ(PCH_DP_D) & DP_DETECTED)
ab9d7c30 14054 intel_dp_init(dev, PCH_DP_D, PORT_D);
666a4537 14055 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
e17ac6db
VS
14056 /*
14057 * The DP_DETECTED bit is the latched state of the DDC
14058 * SDA pin at boot. However since eDP doesn't require DDC
14059 * (no way to plug in a DP->HDMI dongle) the DDC pins for
14060 * eDP ports may have been muxed to an alternate function.
14061 * Thus we can't rely on the DP_DETECTED bit alone to detect
14062 * eDP ports. Consult the VBT as well as DP_DETECTED to
14063 * detect eDP ports.
14064 */
e66eb81d 14065 if (I915_READ(VLV_HDMIB) & SDVO_DETECTED &&
d2182a66 14066 !intel_dp_is_edp(dev, PORT_B))
e66eb81d
VS
14067 intel_hdmi_init(dev, VLV_HDMIB, PORT_B);
14068 if (I915_READ(VLV_DP_B) & DP_DETECTED ||
e17ac6db 14069 intel_dp_is_edp(dev, PORT_B))
e66eb81d 14070 intel_dp_init(dev, VLV_DP_B, PORT_B);
585a94b8 14071
e66eb81d 14072 if (I915_READ(VLV_HDMIC) & SDVO_DETECTED &&
d2182a66 14073 !intel_dp_is_edp(dev, PORT_C))
e66eb81d
VS
14074 intel_hdmi_init(dev, VLV_HDMIC, PORT_C);
14075 if (I915_READ(VLV_DP_C) & DP_DETECTED ||
e17ac6db 14076 intel_dp_is_edp(dev, PORT_C))
e66eb81d 14077 intel_dp_init(dev, VLV_DP_C, PORT_C);
19c03924 14078
9418c1f1 14079 if (IS_CHERRYVIEW(dev)) {
e17ac6db 14080 /* eDP not supported on port D, so don't check VBT */
e66eb81d
VS
14081 if (I915_READ(CHV_HDMID) & SDVO_DETECTED)
14082 intel_hdmi_init(dev, CHV_HDMID, PORT_D);
14083 if (I915_READ(CHV_DP_D) & DP_DETECTED)
14084 intel_dp_init(dev, CHV_DP_D, PORT_D);
9418c1f1
VS
14085 }
14086
3cfca973 14087 intel_dsi_init(dev);
09da55dc 14088 } else if (!IS_GEN2(dev) && !IS_PINEVIEW(dev)) {
27185ae1 14089 bool found = false;
7d57382e 14090
e2debe91 14091 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 14092 DRM_DEBUG_KMS("probing SDVOB\n");
2a5c0832 14093 found = intel_sdvo_init(dev, GEN3_SDVOB, PORT_B);
3fec3d2f 14094 if (!found && IS_G4X(dev)) {
b01f2c3a 14095 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
e2debe91 14096 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
b01f2c3a 14097 }
27185ae1 14098
3fec3d2f 14099 if (!found && IS_G4X(dev))
ab9d7c30 14100 intel_dp_init(dev, DP_B, PORT_B);
725e30ad 14101 }
13520b05
KH
14102
14103 /* Before G4X SDVOC doesn't have its own detect register */
13520b05 14104
e2debe91 14105 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 14106 DRM_DEBUG_KMS("probing SDVOC\n");
2a5c0832 14107 found = intel_sdvo_init(dev, GEN3_SDVOC, PORT_C);
b01f2c3a 14108 }
27185ae1 14109
e2debe91 14110 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
27185ae1 14111
3fec3d2f 14112 if (IS_G4X(dev)) {
b01f2c3a 14113 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
e2debe91 14114 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
b01f2c3a 14115 }
3fec3d2f 14116 if (IS_G4X(dev))
ab9d7c30 14117 intel_dp_init(dev, DP_C, PORT_C);
725e30ad 14118 }
27185ae1 14119
3fec3d2f 14120 if (IS_G4X(dev) &&
e7281eab 14121 (I915_READ(DP_D) & DP_DETECTED))
ab9d7c30 14122 intel_dp_init(dev, DP_D, PORT_D);
bad720ff 14123 } else if (IS_GEN2(dev))
79e53945
JB
14124 intel_dvo_init(dev);
14125
103a196f 14126 if (SUPPORTS_TV(dev))
79e53945
JB
14127 intel_tv_init(dev);
14128
0bc12bcb 14129 intel_psr_init(dev);
7c8f8a70 14130
b2784e15 14131 for_each_intel_encoder(dev, encoder) {
4ef69c7a
CW
14132 encoder->base.possible_crtcs = encoder->crtc_mask;
14133 encoder->base.possible_clones =
66a9278e 14134 intel_encoder_clones(encoder);
79e53945 14135 }
47356eb6 14136
dde86e2d 14137 intel_init_pch_refclk(dev);
270b3042
DV
14138
14139 drm_helper_move_panel_connectors_to_head(dev);
79e53945
JB
14140}
14141
14142static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
14143{
60a5ca01 14144 struct drm_device *dev = fb->dev;
79e53945 14145 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
79e53945 14146
ef2d633e 14147 drm_framebuffer_cleanup(fb);
60a5ca01 14148 mutex_lock(&dev->struct_mutex);
ef2d633e 14149 WARN_ON(!intel_fb->obj->framebuffer_references--);
60a5ca01
VS
14150 drm_gem_object_unreference(&intel_fb->obj->base);
14151 mutex_unlock(&dev->struct_mutex);
79e53945
JB
14152 kfree(intel_fb);
14153}
14154
14155static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
05394f39 14156 struct drm_file *file,
79e53945
JB
14157 unsigned int *handle)
14158{
14159 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 14160 struct drm_i915_gem_object *obj = intel_fb->obj;
79e53945 14161
cc917ab4
CW
14162 if (obj->userptr.mm) {
14163 DRM_DEBUG("attempting to use a userptr for a framebuffer, denied\n");
14164 return -EINVAL;
14165 }
14166
05394f39 14167 return drm_gem_handle_create(file, &obj->base, handle);
79e53945
JB
14168}
14169
86c98588
RV
14170static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb,
14171 struct drm_file *file,
14172 unsigned flags, unsigned color,
14173 struct drm_clip_rect *clips,
14174 unsigned num_clips)
14175{
14176 struct drm_device *dev = fb->dev;
14177 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
14178 struct drm_i915_gem_object *obj = intel_fb->obj;
14179
14180 mutex_lock(&dev->struct_mutex);
74b4ea1e 14181 intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB);
86c98588
RV
14182 mutex_unlock(&dev->struct_mutex);
14183
14184 return 0;
14185}
14186
79e53945
JB
14187static const struct drm_framebuffer_funcs intel_fb_funcs = {
14188 .destroy = intel_user_framebuffer_destroy,
14189 .create_handle = intel_user_framebuffer_create_handle,
86c98588 14190 .dirty = intel_user_framebuffer_dirty,
79e53945
JB
14191};
14192
b321803d
DL
14193static
14194u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
14195 uint32_t pixel_format)
14196{
14197 u32 gen = INTEL_INFO(dev)->gen;
14198
14199 if (gen >= 9) {
ac484963
VS
14200 int cpp = drm_format_plane_cpp(pixel_format, 0);
14201
b321803d
DL
14202 /* "The stride in bytes must not exceed the of the size of 8K
14203 * pixels and 32K bytes."
14204 */
ac484963 14205 return min(8192 * cpp, 32768);
666a4537 14206 } else if (gen >= 5 && !IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
b321803d
DL
14207 return 32*1024;
14208 } else if (gen >= 4) {
14209 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14210 return 16*1024;
14211 else
14212 return 32*1024;
14213 } else if (gen >= 3) {
14214 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14215 return 8*1024;
14216 else
14217 return 16*1024;
14218 } else {
14219 /* XXX DSPC is limited to 4k tiled */
14220 return 8*1024;
14221 }
14222}
14223
b5ea642a
DV
14224static int intel_framebuffer_init(struct drm_device *dev,
14225 struct intel_framebuffer *intel_fb,
14226 struct drm_mode_fb_cmd2 *mode_cmd,
14227 struct drm_i915_gem_object *obj)
79e53945 14228{
7b49f948 14229 struct drm_i915_private *dev_priv = to_i915(dev);
6761dd31 14230 unsigned int aligned_height;
79e53945 14231 int ret;
b321803d 14232 u32 pitch_limit, stride_alignment;
79e53945 14233
dd4916c5
DV
14234 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
14235
2a80eada
DV
14236 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
14237 /* Enforce that fb modifier and tiling mode match, but only for
14238 * X-tiled. This is needed for FBC. */
14239 if (!!(obj->tiling_mode == I915_TILING_X) !=
14240 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
14241 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
14242 return -EINVAL;
14243 }
14244 } else {
14245 if (obj->tiling_mode == I915_TILING_X)
14246 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
14247 else if (obj->tiling_mode == I915_TILING_Y) {
14248 DRM_DEBUG("No Y tiling for legacy addfb\n");
14249 return -EINVAL;
14250 }
14251 }
14252
9a8f0a12
TU
14253 /* Passed in modifier sanity checking. */
14254 switch (mode_cmd->modifier[0]) {
14255 case I915_FORMAT_MOD_Y_TILED:
14256 case I915_FORMAT_MOD_Yf_TILED:
14257 if (INTEL_INFO(dev)->gen < 9) {
14258 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
14259 mode_cmd->modifier[0]);
14260 return -EINVAL;
14261 }
14262 case DRM_FORMAT_MOD_NONE:
14263 case I915_FORMAT_MOD_X_TILED:
14264 break;
14265 default:
c0f40428
JB
14266 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
14267 mode_cmd->modifier[0]);
57cd6508 14268 return -EINVAL;
c16ed4be 14269 }
57cd6508 14270
7b49f948
VS
14271 stride_alignment = intel_fb_stride_alignment(dev_priv,
14272 mode_cmd->modifier[0],
b321803d
DL
14273 mode_cmd->pixel_format);
14274 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
14275 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
14276 mode_cmd->pitches[0], stride_alignment);
57cd6508 14277 return -EINVAL;
c16ed4be 14278 }
57cd6508 14279
b321803d
DL
14280 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
14281 mode_cmd->pixel_format);
a35cdaa0 14282 if (mode_cmd->pitches[0] > pitch_limit) {
b321803d
DL
14283 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
14284 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
2a80eada 14285 "tiled" : "linear",
a35cdaa0 14286 mode_cmd->pitches[0], pitch_limit);
5d7bd705 14287 return -EINVAL;
c16ed4be 14288 }
5d7bd705 14289
2a80eada 14290 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
c16ed4be
CW
14291 mode_cmd->pitches[0] != obj->stride) {
14292 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
14293 mode_cmd->pitches[0], obj->stride);
5d7bd705 14294 return -EINVAL;
c16ed4be 14295 }
5d7bd705 14296
57779d06 14297 /* Reject formats not supported by any plane early. */
308e5bcb 14298 switch (mode_cmd->pixel_format) {
57779d06 14299 case DRM_FORMAT_C8:
04b3924d
VS
14300 case DRM_FORMAT_RGB565:
14301 case DRM_FORMAT_XRGB8888:
14302 case DRM_FORMAT_ARGB8888:
57779d06
VS
14303 break;
14304 case DRM_FORMAT_XRGB1555:
c16ed4be 14305 if (INTEL_INFO(dev)->gen > 3) {
4ee62c76
VS
14306 DRM_DEBUG("unsupported pixel format: %s\n",
14307 drm_get_format_name(mode_cmd->pixel_format));
57779d06 14308 return -EINVAL;
c16ed4be 14309 }
57779d06 14310 break;
57779d06 14311 case DRM_FORMAT_ABGR8888:
666a4537
WB
14312 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
14313 INTEL_INFO(dev)->gen < 9) {
6c0fd451
DL
14314 DRM_DEBUG("unsupported pixel format: %s\n",
14315 drm_get_format_name(mode_cmd->pixel_format));
14316 return -EINVAL;
14317 }
14318 break;
14319 case DRM_FORMAT_XBGR8888:
04b3924d 14320 case DRM_FORMAT_XRGB2101010:
57779d06 14321 case DRM_FORMAT_XBGR2101010:
c16ed4be 14322 if (INTEL_INFO(dev)->gen < 4) {
4ee62c76
VS
14323 DRM_DEBUG("unsupported pixel format: %s\n",
14324 drm_get_format_name(mode_cmd->pixel_format));
57779d06 14325 return -EINVAL;
c16ed4be 14326 }
b5626747 14327 break;
7531208b 14328 case DRM_FORMAT_ABGR2101010:
666a4537 14329 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
7531208b
DL
14330 DRM_DEBUG("unsupported pixel format: %s\n",
14331 drm_get_format_name(mode_cmd->pixel_format));
14332 return -EINVAL;
14333 }
14334 break;
04b3924d
VS
14335 case DRM_FORMAT_YUYV:
14336 case DRM_FORMAT_UYVY:
14337 case DRM_FORMAT_YVYU:
14338 case DRM_FORMAT_VYUY:
c16ed4be 14339 if (INTEL_INFO(dev)->gen < 5) {
4ee62c76
VS
14340 DRM_DEBUG("unsupported pixel format: %s\n",
14341 drm_get_format_name(mode_cmd->pixel_format));
57779d06 14342 return -EINVAL;
c16ed4be 14343 }
57cd6508
CW
14344 break;
14345 default:
4ee62c76
VS
14346 DRM_DEBUG("unsupported pixel format: %s\n",
14347 drm_get_format_name(mode_cmd->pixel_format));
57cd6508
CW
14348 return -EINVAL;
14349 }
14350
90f9a336
VS
14351 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
14352 if (mode_cmd->offsets[0] != 0)
14353 return -EINVAL;
14354
ec2c981e 14355 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
091df6cb
DV
14356 mode_cmd->pixel_format,
14357 mode_cmd->modifier[0]);
53155c0a
DV
14358 /* FIXME drm helper for size checks (especially planar formats)? */
14359 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
14360 return -EINVAL;
14361
c7d73f6a
DV
14362 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
14363 intel_fb->obj = obj;
14364
2d7a215f
VS
14365 intel_fill_fb_info(dev_priv, &intel_fb->base);
14366
79e53945
JB
14367 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
14368 if (ret) {
14369 DRM_ERROR("framebuffer init failed %d\n", ret);
14370 return ret;
14371 }
14372
0b05e1e0
VS
14373 intel_fb->obj->framebuffer_references++;
14374
79e53945
JB
14375 return 0;
14376}
14377
79e53945
JB
14378static struct drm_framebuffer *
14379intel_user_framebuffer_create(struct drm_device *dev,
14380 struct drm_file *filp,
1eb83451 14381 const struct drm_mode_fb_cmd2 *user_mode_cmd)
79e53945 14382{
dcb1394e 14383 struct drm_framebuffer *fb;
05394f39 14384 struct drm_i915_gem_object *obj;
76dc3769 14385 struct drm_mode_fb_cmd2 mode_cmd = *user_mode_cmd;
79e53945 14386
308e5bcb 14387 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
76dc3769 14388 mode_cmd.handles[0]));
c8725226 14389 if (&obj->base == NULL)
cce13ff7 14390 return ERR_PTR(-ENOENT);
79e53945 14391
92907cbb 14392 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
dcb1394e
LW
14393 if (IS_ERR(fb))
14394 drm_gem_object_unreference_unlocked(&obj->base);
14395
14396 return fb;
79e53945
JB
14397}
14398
0695726e 14399#ifndef CONFIG_DRM_FBDEV_EMULATION
0632fef6 14400static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
4520f53a
DV
14401{
14402}
14403#endif
14404
79e53945 14405static const struct drm_mode_config_funcs intel_mode_funcs = {
79e53945 14406 .fb_create = intel_user_framebuffer_create,
0632fef6 14407 .output_poll_changed = intel_fbdev_output_poll_changed,
5ee67f1c
MR
14408 .atomic_check = intel_atomic_check,
14409 .atomic_commit = intel_atomic_commit,
de419ab6
ML
14410 .atomic_state_alloc = intel_atomic_state_alloc,
14411 .atomic_state_clear = intel_atomic_state_clear,
79e53945
JB
14412};
14413
88212941
ID
14414/**
14415 * intel_init_display_hooks - initialize the display modesetting hooks
14416 * @dev_priv: device private
14417 */
14418void intel_init_display_hooks(struct drm_i915_private *dev_priv)
e70236a8 14419{
88212941 14420 if (INTEL_INFO(dev_priv)->gen >= 9) {
bc8d7dff 14421 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
14422 dev_priv->display.get_initial_plane_config =
14423 skylake_get_initial_plane_config;
bc8d7dff
DL
14424 dev_priv->display.crtc_compute_clock =
14425 haswell_crtc_compute_clock;
14426 dev_priv->display.crtc_enable = haswell_crtc_enable;
14427 dev_priv->display.crtc_disable = haswell_crtc_disable;
88212941 14428 } else if (HAS_DDI(dev_priv)) {
0e8ffe1b 14429 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
14430 dev_priv->display.get_initial_plane_config =
14431 ironlake_get_initial_plane_config;
797d0259
ACO
14432 dev_priv->display.crtc_compute_clock =
14433 haswell_crtc_compute_clock;
4f771f10
PZ
14434 dev_priv->display.crtc_enable = haswell_crtc_enable;
14435 dev_priv->display.crtc_disable = haswell_crtc_disable;
88212941 14436 } else if (HAS_PCH_SPLIT(dev_priv)) {
0e8ffe1b 14437 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
5724dbd1
DL
14438 dev_priv->display.get_initial_plane_config =
14439 ironlake_get_initial_plane_config;
3fb37703
ACO
14440 dev_priv->display.crtc_compute_clock =
14441 ironlake_crtc_compute_clock;
76e5a89c
DV
14442 dev_priv->display.crtc_enable = ironlake_crtc_enable;
14443 dev_priv->display.crtc_disable = ironlake_crtc_disable;
65b3d6a9 14444 } else if (IS_CHERRYVIEW(dev_priv)) {
89b667f8 14445 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
14446 dev_priv->display.get_initial_plane_config =
14447 i9xx_get_initial_plane_config;
65b3d6a9
ACO
14448 dev_priv->display.crtc_compute_clock = chv_crtc_compute_clock;
14449 dev_priv->display.crtc_enable = valleyview_crtc_enable;
14450 dev_priv->display.crtc_disable = i9xx_crtc_disable;
14451 } else if (IS_VALLEYVIEW(dev_priv)) {
14452 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
14453 dev_priv->display.get_initial_plane_config =
14454 i9xx_get_initial_plane_config;
14455 dev_priv->display.crtc_compute_clock = vlv_crtc_compute_clock;
89b667f8
JB
14456 dev_priv->display.crtc_enable = valleyview_crtc_enable;
14457 dev_priv->display.crtc_disable = i9xx_crtc_disable;
19ec6693
ACO
14458 } else if (IS_G4X(dev_priv)) {
14459 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
14460 dev_priv->display.get_initial_plane_config =
14461 i9xx_get_initial_plane_config;
14462 dev_priv->display.crtc_compute_clock = g4x_crtc_compute_clock;
14463 dev_priv->display.crtc_enable = i9xx_crtc_enable;
14464 dev_priv->display.crtc_disable = i9xx_crtc_disable;
70e8aa21
ACO
14465 } else if (IS_PINEVIEW(dev_priv)) {
14466 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
14467 dev_priv->display.get_initial_plane_config =
14468 i9xx_get_initial_plane_config;
14469 dev_priv->display.crtc_compute_clock = pnv_crtc_compute_clock;
14470 dev_priv->display.crtc_enable = i9xx_crtc_enable;
14471 dev_priv->display.crtc_disable = i9xx_crtc_disable;
81c97f52 14472 } else if (!IS_GEN2(dev_priv)) {
0e8ffe1b 14473 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
14474 dev_priv->display.get_initial_plane_config =
14475 i9xx_get_initial_plane_config;
d6dfee7a 14476 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
76e5a89c
DV
14477 dev_priv->display.crtc_enable = i9xx_crtc_enable;
14478 dev_priv->display.crtc_disable = i9xx_crtc_disable;
81c97f52
ACO
14479 } else {
14480 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
14481 dev_priv->display.get_initial_plane_config =
14482 i9xx_get_initial_plane_config;
14483 dev_priv->display.crtc_compute_clock = i8xx_crtc_compute_clock;
14484 dev_priv->display.crtc_enable = i9xx_crtc_enable;
14485 dev_priv->display.crtc_disable = i9xx_crtc_disable;
f564048e 14486 }
e70236a8 14487
e70236a8 14488 /* Returns the core display clock speed */
88212941 14489 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
1652d19e
VS
14490 dev_priv->display.get_display_clock_speed =
14491 skylake_get_display_clock_speed;
88212941 14492 else if (IS_BROXTON(dev_priv))
acd3f3d3
BP
14493 dev_priv->display.get_display_clock_speed =
14494 broxton_get_display_clock_speed;
88212941 14495 else if (IS_BROADWELL(dev_priv))
1652d19e
VS
14496 dev_priv->display.get_display_clock_speed =
14497 broadwell_get_display_clock_speed;
88212941 14498 else if (IS_HASWELL(dev_priv))
1652d19e
VS
14499 dev_priv->display.get_display_clock_speed =
14500 haswell_get_display_clock_speed;
88212941 14501 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
25eb05fc
JB
14502 dev_priv->display.get_display_clock_speed =
14503 valleyview_get_display_clock_speed;
88212941 14504 else if (IS_GEN5(dev_priv))
b37a6434
VS
14505 dev_priv->display.get_display_clock_speed =
14506 ilk_get_display_clock_speed;
88212941
ID
14507 else if (IS_I945G(dev_priv) || IS_BROADWATER(dev_priv) ||
14508 IS_GEN6(dev_priv) || IS_IVYBRIDGE(dev_priv))
e70236a8
JB
14509 dev_priv->display.get_display_clock_speed =
14510 i945_get_display_clock_speed;
88212941 14511 else if (IS_GM45(dev_priv))
34edce2f
VS
14512 dev_priv->display.get_display_clock_speed =
14513 gm45_get_display_clock_speed;
88212941 14514 else if (IS_CRESTLINE(dev_priv))
34edce2f
VS
14515 dev_priv->display.get_display_clock_speed =
14516 i965gm_get_display_clock_speed;
88212941 14517 else if (IS_PINEVIEW(dev_priv))
34edce2f
VS
14518 dev_priv->display.get_display_clock_speed =
14519 pnv_get_display_clock_speed;
88212941 14520 else if (IS_G33(dev_priv) || IS_G4X(dev_priv))
34edce2f
VS
14521 dev_priv->display.get_display_clock_speed =
14522 g33_get_display_clock_speed;
88212941 14523 else if (IS_I915G(dev_priv))
e70236a8
JB
14524 dev_priv->display.get_display_clock_speed =
14525 i915_get_display_clock_speed;
88212941 14526 else if (IS_I945GM(dev_priv) || IS_845G(dev_priv))
e70236a8
JB
14527 dev_priv->display.get_display_clock_speed =
14528 i9xx_misc_get_display_clock_speed;
88212941 14529 else if (IS_I915GM(dev_priv))
e70236a8
JB
14530 dev_priv->display.get_display_clock_speed =
14531 i915gm_get_display_clock_speed;
88212941 14532 else if (IS_I865G(dev_priv))
e70236a8
JB
14533 dev_priv->display.get_display_clock_speed =
14534 i865_get_display_clock_speed;
88212941 14535 else if (IS_I85X(dev_priv))
e70236a8 14536 dev_priv->display.get_display_clock_speed =
1b1d2716 14537 i85x_get_display_clock_speed;
623e01e5 14538 else { /* 830 */
88212941 14539 WARN(!IS_I830(dev_priv), "Unknown platform. Assuming 133 MHz CDCLK\n");
e70236a8
JB
14540 dev_priv->display.get_display_clock_speed =
14541 i830_get_display_clock_speed;
623e01e5 14542 }
e70236a8 14543
88212941 14544 if (IS_GEN5(dev_priv)) {
3bb11b53 14545 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
88212941 14546 } else if (IS_GEN6(dev_priv)) {
3bb11b53 14547 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
88212941 14548 } else if (IS_IVYBRIDGE(dev_priv)) {
3bb11b53
SJ
14549 /* FIXME: detect B0+ stepping and use auto training */
14550 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
88212941 14551 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
3bb11b53 14552 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
445e780b
VS
14553 }
14554
14555 if (IS_BROADWELL(dev_priv)) {
14556 dev_priv->display.modeset_commit_cdclk =
14557 broadwell_modeset_commit_cdclk;
14558 dev_priv->display.modeset_calc_cdclk =
14559 broadwell_modeset_calc_cdclk;
88212941 14560 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
27c329ed
ML
14561 dev_priv->display.modeset_commit_cdclk =
14562 valleyview_modeset_commit_cdclk;
14563 dev_priv->display.modeset_calc_cdclk =
14564 valleyview_modeset_calc_cdclk;
88212941 14565 } else if (IS_BROXTON(dev_priv)) {
27c329ed
ML
14566 dev_priv->display.modeset_commit_cdclk =
14567 broxton_modeset_commit_cdclk;
14568 dev_priv->display.modeset_calc_cdclk =
14569 broxton_modeset_calc_cdclk;
c89e39f3
CT
14570 } else if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
14571 dev_priv->display.modeset_commit_cdclk =
14572 skl_modeset_commit_cdclk;
14573 dev_priv->display.modeset_calc_cdclk =
14574 skl_modeset_calc_cdclk;
e70236a8
JB
14575 }
14576}
14577
b690e96c
JB
14578/*
14579 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
14580 * resume, or other times. This quirk makes sure that's the case for
14581 * affected systems.
14582 */
0206e353 14583static void quirk_pipea_force(struct drm_device *dev)
b690e96c
JB
14584{
14585 struct drm_i915_private *dev_priv = dev->dev_private;
14586
14587 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
bc0daf48 14588 DRM_INFO("applying pipe a force quirk\n");
b690e96c
JB
14589}
14590
b6b5d049
VS
14591static void quirk_pipeb_force(struct drm_device *dev)
14592{
14593 struct drm_i915_private *dev_priv = dev->dev_private;
14594
14595 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
14596 DRM_INFO("applying pipe b force quirk\n");
14597}
14598
435793df
KP
14599/*
14600 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
14601 */
14602static void quirk_ssc_force_disable(struct drm_device *dev)
14603{
14604 struct drm_i915_private *dev_priv = dev->dev_private;
14605 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
bc0daf48 14606 DRM_INFO("applying lvds SSC disable quirk\n");
435793df
KP
14607}
14608
4dca20ef 14609/*
5a15ab5b
CE
14610 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
14611 * brightness value
4dca20ef
CE
14612 */
14613static void quirk_invert_brightness(struct drm_device *dev)
14614{
14615 struct drm_i915_private *dev_priv = dev->dev_private;
14616 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
bc0daf48 14617 DRM_INFO("applying inverted panel brightness quirk\n");
435793df
KP
14618}
14619
9c72cc6f
SD
14620/* Some VBT's incorrectly indicate no backlight is present */
14621static void quirk_backlight_present(struct drm_device *dev)
14622{
14623 struct drm_i915_private *dev_priv = dev->dev_private;
14624 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
14625 DRM_INFO("applying backlight present quirk\n");
14626}
14627
b690e96c
JB
14628struct intel_quirk {
14629 int device;
14630 int subsystem_vendor;
14631 int subsystem_device;
14632 void (*hook)(struct drm_device *dev);
14633};
14634
5f85f176
EE
14635/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
14636struct intel_dmi_quirk {
14637 void (*hook)(struct drm_device *dev);
14638 const struct dmi_system_id (*dmi_id_list)[];
14639};
14640
14641static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
14642{
14643 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
14644 return 1;
14645}
14646
14647static const struct intel_dmi_quirk intel_dmi_quirks[] = {
14648 {
14649 .dmi_id_list = &(const struct dmi_system_id[]) {
14650 {
14651 .callback = intel_dmi_reverse_brightness,
14652 .ident = "NCR Corporation",
14653 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
14654 DMI_MATCH(DMI_PRODUCT_NAME, ""),
14655 },
14656 },
14657 { } /* terminating entry */
14658 },
14659 .hook = quirk_invert_brightness,
14660 },
14661};
14662
c43b5634 14663static struct intel_quirk intel_quirks[] = {
b690e96c
JB
14664 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
14665 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
14666
b690e96c
JB
14667 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
14668 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
14669
5f080c0f
VS
14670 /* 830 needs to leave pipe A & dpll A up */
14671 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
14672
b6b5d049
VS
14673 /* 830 needs to leave pipe B & dpll B up */
14674 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
14675
435793df
KP
14676 /* Lenovo U160 cannot use SSC on LVDS */
14677 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
070d329a
MAS
14678
14679 /* Sony Vaio Y cannot use SSC on LVDS */
14680 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
5a15ab5b 14681
be505f64
AH
14682 /* Acer Aspire 5734Z must invert backlight brightness */
14683 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
14684
14685 /* Acer/eMachines G725 */
14686 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
14687
14688 /* Acer/eMachines e725 */
14689 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
14690
14691 /* Acer/Packard Bell NCL20 */
14692 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
14693
14694 /* Acer Aspire 4736Z */
14695 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
0f540c3a
JN
14696
14697 /* Acer Aspire 5336 */
14698 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
2e93a1aa
SD
14699
14700 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
14701 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
d4967d8c 14702
dfb3d47b
SD
14703 /* Acer C720 Chromebook (Core i3 4005U) */
14704 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
14705
b2a9601c 14706 /* Apple Macbook 2,1 (Core 2 T7400) */
14707 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
14708
1b9448b0
JN
14709 /* Apple Macbook 4,1 */
14710 { 0x2a02, 0x106b, 0x00a1, quirk_backlight_present },
14711
d4967d8c
SD
14712 /* Toshiba CB35 Chromebook (Celeron 2955U) */
14713 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
724cb06f
SD
14714
14715 /* HP Chromebook 14 (Celeron 2955U) */
14716 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
cf6f0af9
JN
14717
14718 /* Dell Chromebook 11 */
14719 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
9be64eee
JN
14720
14721 /* Dell Chromebook 11 (2015 version) */
14722 { 0x0a16, 0x1028, 0x0a35, quirk_backlight_present },
b690e96c
JB
14723};
14724
14725static void intel_init_quirks(struct drm_device *dev)
14726{
14727 struct pci_dev *d = dev->pdev;
14728 int i;
14729
14730 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
14731 struct intel_quirk *q = &intel_quirks[i];
14732
14733 if (d->device == q->device &&
14734 (d->subsystem_vendor == q->subsystem_vendor ||
14735 q->subsystem_vendor == PCI_ANY_ID) &&
14736 (d->subsystem_device == q->subsystem_device ||
14737 q->subsystem_device == PCI_ANY_ID))
14738 q->hook(dev);
14739 }
5f85f176
EE
14740 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
14741 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
14742 intel_dmi_quirks[i].hook(dev);
14743 }
b690e96c
JB
14744}
14745
9cce37f4
JB
14746/* Disable the VGA plane that we never use */
14747static void i915_disable_vga(struct drm_device *dev)
14748{
14749 struct drm_i915_private *dev_priv = dev->dev_private;
14750 u8 sr1;
f0f59a00 14751 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
9cce37f4 14752
2b37c616 14753 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
9cce37f4 14754 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
3fdcf431 14755 outb(SR01, VGA_SR_INDEX);
9cce37f4
JB
14756 sr1 = inb(VGA_SR_DATA);
14757 outb(sr1 | 1<<5, VGA_SR_DATA);
14758 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
14759 udelay(300);
14760
01f5a626 14761 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
9cce37f4
JB
14762 POSTING_READ(vga_reg);
14763}
14764
f817586c
DV
14765void intel_modeset_init_hw(struct drm_device *dev)
14766{
1a617b77
ML
14767 struct drm_i915_private *dev_priv = dev->dev_private;
14768
b6283055 14769 intel_update_cdclk(dev);
1a617b77
ML
14770
14771 dev_priv->atomic_cdclk_freq = dev_priv->cdclk_freq;
14772
f817586c 14773 intel_init_clock_gating(dev);
dc97997a 14774 intel_enable_gt_powersave(dev_priv);
f817586c
DV
14775}
14776
d93c0372
MR
14777/*
14778 * Calculate what we think the watermarks should be for the state we've read
14779 * out of the hardware and then immediately program those watermarks so that
14780 * we ensure the hardware settings match our internal state.
14781 *
14782 * We can calculate what we think WM's should be by creating a duplicate of the
14783 * current state (which was constructed during hardware readout) and running it
14784 * through the atomic check code to calculate new watermark values in the
14785 * state object.
14786 */
14787static void sanitize_watermarks(struct drm_device *dev)
14788{
14789 struct drm_i915_private *dev_priv = to_i915(dev);
14790 struct drm_atomic_state *state;
14791 struct drm_crtc *crtc;
14792 struct drm_crtc_state *cstate;
14793 struct drm_modeset_acquire_ctx ctx;
14794 int ret;
14795 int i;
14796
14797 /* Only supported on platforms that use atomic watermark design */
ed4a6a7c 14798 if (!dev_priv->display.optimize_watermarks)
d93c0372
MR
14799 return;
14800
14801 /*
14802 * We need to hold connection_mutex before calling duplicate_state so
14803 * that the connector loop is protected.
14804 */
14805 drm_modeset_acquire_init(&ctx, 0);
14806retry:
0cd1262d 14807 ret = drm_modeset_lock_all_ctx(dev, &ctx);
d93c0372
MR
14808 if (ret == -EDEADLK) {
14809 drm_modeset_backoff(&ctx);
14810 goto retry;
14811 } else if (WARN_ON(ret)) {
0cd1262d 14812 goto fail;
d93c0372
MR
14813 }
14814
14815 state = drm_atomic_helper_duplicate_state(dev, &ctx);
14816 if (WARN_ON(IS_ERR(state)))
0cd1262d 14817 goto fail;
d93c0372 14818
ed4a6a7c
MR
14819 /*
14820 * Hardware readout is the only time we don't want to calculate
14821 * intermediate watermarks (since we don't trust the current
14822 * watermarks).
14823 */
14824 to_intel_atomic_state(state)->skip_intermediate_wm = true;
14825
d93c0372
MR
14826 ret = intel_atomic_check(dev, state);
14827 if (ret) {
14828 /*
14829 * If we fail here, it means that the hardware appears to be
14830 * programmed in a way that shouldn't be possible, given our
14831 * understanding of watermark requirements. This might mean a
14832 * mistake in the hardware readout code or a mistake in the
14833 * watermark calculations for a given platform. Raise a WARN
14834 * so that this is noticeable.
14835 *
14836 * If this actually happens, we'll have to just leave the
14837 * BIOS-programmed watermarks untouched and hope for the best.
14838 */
14839 WARN(true, "Could not determine valid watermarks for inherited state\n");
0cd1262d 14840 goto fail;
d93c0372
MR
14841 }
14842
14843 /* Write calculated watermark values back */
d93c0372
MR
14844 for_each_crtc_in_state(state, crtc, cstate, i) {
14845 struct intel_crtc_state *cs = to_intel_crtc_state(cstate);
14846
ed4a6a7c
MR
14847 cs->wm.need_postvbl_update = true;
14848 dev_priv->display.optimize_watermarks(cs);
d93c0372
MR
14849 }
14850
14851 drm_atomic_state_free(state);
0cd1262d 14852fail:
d93c0372
MR
14853 drm_modeset_drop_locks(&ctx);
14854 drm_modeset_acquire_fini(&ctx);
14855}
14856
79e53945
JB
14857void intel_modeset_init(struct drm_device *dev)
14858{
72e96d64
JL
14859 struct drm_i915_private *dev_priv = to_i915(dev);
14860 struct i915_ggtt *ggtt = &dev_priv->ggtt;
1fe47785 14861 int sprite, ret;
8cc87b75 14862 enum pipe pipe;
46f297fb 14863 struct intel_crtc *crtc;
79e53945
JB
14864
14865 drm_mode_config_init(dev);
14866
14867 dev->mode_config.min_width = 0;
14868 dev->mode_config.min_height = 0;
14869
019d96cb
DA
14870 dev->mode_config.preferred_depth = 24;
14871 dev->mode_config.prefer_shadow = 1;
14872
25bab385
TU
14873 dev->mode_config.allow_fb_modifiers = true;
14874
e6ecefaa 14875 dev->mode_config.funcs = &intel_mode_funcs;
79e53945 14876
b690e96c
JB
14877 intel_init_quirks(dev);
14878
1fa61106
ED
14879 intel_init_pm(dev);
14880
e3c74757
BW
14881 if (INTEL_INFO(dev)->num_pipes == 0)
14882 return;
14883
69f92f67
LW
14884 /*
14885 * There may be no VBT; and if the BIOS enabled SSC we can
14886 * just keep using it to avoid unnecessary flicker. Whereas if the
14887 * BIOS isn't using it, don't assume it will work even if the VBT
14888 * indicates as much.
14889 */
14890 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
14891 bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
14892 DREF_SSC1_ENABLE);
14893
14894 if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) {
14895 DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n",
14896 bios_lvds_use_ssc ? "en" : "dis",
14897 dev_priv->vbt.lvds_use_ssc ? "en" : "dis");
14898 dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc;
14899 }
14900 }
14901
a6c45cf0
CW
14902 if (IS_GEN2(dev)) {
14903 dev->mode_config.max_width = 2048;
14904 dev->mode_config.max_height = 2048;
14905 } else if (IS_GEN3(dev)) {
5e4d6fa7
KP
14906 dev->mode_config.max_width = 4096;
14907 dev->mode_config.max_height = 4096;
79e53945 14908 } else {
a6c45cf0
CW
14909 dev->mode_config.max_width = 8192;
14910 dev->mode_config.max_height = 8192;
79e53945 14911 }
068be561 14912
dc41c154
VS
14913 if (IS_845G(dev) || IS_I865G(dev)) {
14914 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
14915 dev->mode_config.cursor_height = 1023;
14916 } else if (IS_GEN2(dev)) {
068be561
DL
14917 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
14918 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
14919 } else {
14920 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
14921 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
14922 }
14923
72e96d64 14924 dev->mode_config.fb_base = ggtt->mappable_base;
79e53945 14925
28c97730 14926 DRM_DEBUG_KMS("%d display pipe%s available.\n",
7eb552ae
BW
14927 INTEL_INFO(dev)->num_pipes,
14928 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
79e53945 14929
055e393f 14930 for_each_pipe(dev_priv, pipe) {
8cc87b75 14931 intel_crtc_init(dev, pipe);
3bdcfc0c 14932 for_each_sprite(dev_priv, pipe, sprite) {
1fe47785 14933 ret = intel_plane_init(dev, pipe, sprite);
7f1f3851 14934 if (ret)
06da8da2 14935 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
1fe47785 14936 pipe_name(pipe), sprite_name(pipe, sprite), ret);
7f1f3851 14937 }
79e53945
JB
14938 }
14939
bfa7df01
VS
14940 intel_update_czclk(dev_priv);
14941 intel_update_cdclk(dev);
14942
e72f9fbf 14943 intel_shared_dpll_init(dev);
ee7b9f93 14944
b2045352
VS
14945 if (dev_priv->max_cdclk_freq == 0)
14946 intel_update_max_cdclk(dev);
14947
9cce37f4
JB
14948 /* Just disable it once at startup */
14949 i915_disable_vga(dev);
79e53945 14950 intel_setup_outputs(dev);
11be49eb 14951
6e9f798d 14952 drm_modeset_lock_all(dev);
043e9bda 14953 intel_modeset_setup_hw_state(dev);
6e9f798d 14954 drm_modeset_unlock_all(dev);
46f297fb 14955
d3fcc808 14956 for_each_intel_crtc(dev, crtc) {
eeebeac5
ML
14957 struct intel_initial_plane_config plane_config = {};
14958
46f297fb
JB
14959 if (!crtc->active)
14960 continue;
14961
46f297fb 14962 /*
46f297fb
JB
14963 * Note that reserving the BIOS fb up front prevents us
14964 * from stuffing other stolen allocations like the ring
14965 * on top. This prevents some ugliness at boot time, and
14966 * can even allow for smooth boot transitions if the BIOS
14967 * fb is large enough for the active pipe configuration.
14968 */
eeebeac5
ML
14969 dev_priv->display.get_initial_plane_config(crtc,
14970 &plane_config);
14971
14972 /*
14973 * If the fb is shared between multiple heads, we'll
14974 * just get the first one.
14975 */
14976 intel_find_initial_plane_obj(crtc, &plane_config);
46f297fb 14977 }
d93c0372
MR
14978
14979 /*
14980 * Make sure hardware watermarks really match the state we read out.
14981 * Note that we need to do this after reconstructing the BIOS fb's
14982 * since the watermark calculation done here will use pstate->fb.
14983 */
14984 sanitize_watermarks(dev);
2c7111db
CW
14985}
14986
7fad798e
DV
14987static void intel_enable_pipe_a(struct drm_device *dev)
14988{
14989 struct intel_connector *connector;
14990 struct drm_connector *crt = NULL;
14991 struct intel_load_detect_pipe load_detect_temp;
208bf9fd 14992 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
7fad798e
DV
14993
14994 /* We can't just switch on the pipe A, we need to set things up with a
14995 * proper mode and output configuration. As a gross hack, enable pipe A
14996 * by enabling the load detect pipe once. */
3a3371ff 14997 for_each_intel_connector(dev, connector) {
7fad798e
DV
14998 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
14999 crt = &connector->base;
15000 break;
15001 }
15002 }
15003
15004 if (!crt)
15005 return;
15006
208bf9fd 15007 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
49172fee 15008 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
7fad798e
DV
15009}
15010
fa555837
DV
15011static bool
15012intel_check_plane_mapping(struct intel_crtc *crtc)
15013{
7eb552ae
BW
15014 struct drm_device *dev = crtc->base.dev;
15015 struct drm_i915_private *dev_priv = dev->dev_private;
649636ef 15016 u32 val;
fa555837 15017
7eb552ae 15018 if (INTEL_INFO(dev)->num_pipes == 1)
fa555837
DV
15019 return true;
15020
649636ef 15021 val = I915_READ(DSPCNTR(!crtc->plane));
fa555837
DV
15022
15023 if ((val & DISPLAY_PLANE_ENABLE) &&
15024 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
15025 return false;
15026
15027 return true;
15028}
15029
02e93c35
VS
15030static bool intel_crtc_has_encoders(struct intel_crtc *crtc)
15031{
15032 struct drm_device *dev = crtc->base.dev;
15033 struct intel_encoder *encoder;
15034
15035 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
15036 return true;
15037
15038 return false;
15039}
15040
dd756198
VS
15041static bool intel_encoder_has_connectors(struct intel_encoder *encoder)
15042{
15043 struct drm_device *dev = encoder->base.dev;
15044 struct intel_connector *connector;
15045
15046 for_each_connector_on_encoder(dev, &encoder->base, connector)
15047 return true;
15048
15049 return false;
15050}
15051
24929352
DV
15052static void intel_sanitize_crtc(struct intel_crtc *crtc)
15053{
15054 struct drm_device *dev = crtc->base.dev;
15055 struct drm_i915_private *dev_priv = dev->dev_private;
4d1de975 15056 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
24929352 15057
24929352 15058 /* Clear any frame start delays used for debugging left by the BIOS */
4d1de975
JN
15059 if (!transcoder_is_dsi(cpu_transcoder)) {
15060 i915_reg_t reg = PIPECONF(cpu_transcoder);
15061
15062 I915_WRITE(reg,
15063 I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
15064 }
24929352 15065
d3eaf884 15066 /* restore vblank interrupts to correct state */
9625604c 15067 drm_crtc_vblank_reset(&crtc->base);
d297e103 15068 if (crtc->active) {
f9cd7b88
VS
15069 struct intel_plane *plane;
15070
9625604c 15071 drm_crtc_vblank_on(&crtc->base);
f9cd7b88
VS
15072
15073 /* Disable everything but the primary plane */
15074 for_each_intel_plane_on_crtc(dev, crtc, plane) {
15075 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
15076 continue;
15077
15078 plane->disable_plane(&plane->base, &crtc->base);
15079 }
9625604c 15080 }
d3eaf884 15081
24929352 15082 /* We need to sanitize the plane -> pipe mapping first because this will
fa555837
DV
15083 * disable the crtc (and hence change the state) if it is wrong. Note
15084 * that gen4+ has a fixed plane -> pipe mapping. */
15085 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
24929352
DV
15086 bool plane;
15087
24929352
DV
15088 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
15089 crtc->base.base.id);
15090
15091 /* Pipe has the wrong plane attached and the plane is active.
15092 * Temporarily change the plane mapping and disable everything
15093 * ... */
15094 plane = crtc->plane;
b70709a6 15095 to_intel_plane_state(crtc->base.primary->state)->visible = true;
24929352 15096 crtc->plane = !plane;
b17d48e2 15097 intel_crtc_disable_noatomic(&crtc->base);
24929352 15098 crtc->plane = plane;
24929352 15099 }
24929352 15100
7fad798e
DV
15101 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
15102 crtc->pipe == PIPE_A && !crtc->active) {
15103 /* BIOS forgot to enable pipe A, this mostly happens after
15104 * resume. Force-enable the pipe to fix this, the update_dpms
15105 * call below we restore the pipe to the right state, but leave
15106 * the required bits on. */
15107 intel_enable_pipe_a(dev);
15108 }
15109
24929352
DV
15110 /* Adjust the state of the output pipe according to whether we
15111 * have active connectors/encoders. */
842e0307 15112 if (crtc->active && !intel_crtc_has_encoders(crtc))
b17d48e2 15113 intel_crtc_disable_noatomic(&crtc->base);
24929352 15114
a3ed6aad 15115 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
4cc31489
DV
15116 /*
15117 * We start out with underrun reporting disabled to avoid races.
15118 * For correct bookkeeping mark this on active crtcs.
15119 *
c5ab3bc0
DV
15120 * Also on gmch platforms we dont have any hardware bits to
15121 * disable the underrun reporting. Which means we need to start
15122 * out with underrun reporting disabled also on inactive pipes,
15123 * since otherwise we'll complain about the garbage we read when
15124 * e.g. coming up after runtime pm.
15125 *
4cc31489
DV
15126 * No protection against concurrent access is required - at
15127 * worst a fifo underrun happens which also sets this to false.
15128 */
15129 crtc->cpu_fifo_underrun_disabled = true;
15130 crtc->pch_fifo_underrun_disabled = true;
15131 }
24929352
DV
15132}
15133
15134static void intel_sanitize_encoder(struct intel_encoder *encoder)
15135{
15136 struct intel_connector *connector;
15137 struct drm_device *dev = encoder->base.dev;
15138
15139 /* We need to check both for a crtc link (meaning that the
15140 * encoder is active and trying to read from a pipe) and the
15141 * pipe itself being active. */
15142 bool has_active_crtc = encoder->base.crtc &&
15143 to_intel_crtc(encoder->base.crtc)->active;
15144
dd756198 15145 if (intel_encoder_has_connectors(encoder) && !has_active_crtc) {
24929352
DV
15146 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
15147 encoder->base.base.id,
8e329a03 15148 encoder->base.name);
24929352
DV
15149
15150 /* Connector is active, but has no active pipe. This is
15151 * fallout from our resume register restoring. Disable
15152 * the encoder manually again. */
15153 if (encoder->base.crtc) {
15154 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
15155 encoder->base.base.id,
8e329a03 15156 encoder->base.name);
24929352 15157 encoder->disable(encoder);
a62d1497
VS
15158 if (encoder->post_disable)
15159 encoder->post_disable(encoder);
24929352 15160 }
7f1950fb 15161 encoder->base.crtc = NULL;
24929352
DV
15162
15163 /* Inconsistent output/port/pipe state happens presumably due to
15164 * a bug in one of the get_hw_state functions. Or someplace else
15165 * in our code, like the register restore mess on resume. Clamp
15166 * things to off as a safer default. */
3a3371ff 15167 for_each_intel_connector(dev, connector) {
24929352
DV
15168 if (connector->encoder != encoder)
15169 continue;
7f1950fb
EE
15170 connector->base.dpms = DRM_MODE_DPMS_OFF;
15171 connector->base.encoder = NULL;
24929352
DV
15172 }
15173 }
15174 /* Enabled encoders without active connectors will be fixed in
15175 * the crtc fixup. */
15176}
15177
04098753 15178void i915_redisable_vga_power_on(struct drm_device *dev)
0fde901f
KM
15179{
15180 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 15181 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
0fde901f 15182
04098753
ID
15183 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
15184 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
15185 i915_disable_vga(dev);
15186 }
15187}
15188
15189void i915_redisable_vga(struct drm_device *dev)
15190{
15191 struct drm_i915_private *dev_priv = dev->dev_private;
15192
8dc8a27c
PZ
15193 /* This function can be called both from intel_modeset_setup_hw_state or
15194 * at a very early point in our resume sequence, where the power well
15195 * structures are not yet restored. Since this function is at a very
15196 * paranoid "someone might have enabled VGA while we were not looking"
15197 * level, just check if the power well is enabled instead of trying to
15198 * follow the "don't touch the power well if we don't need it" policy
15199 * the rest of the driver uses. */
6392f847 15200 if (!intel_display_power_get_if_enabled(dev_priv, POWER_DOMAIN_VGA))
8dc8a27c
PZ
15201 return;
15202
04098753 15203 i915_redisable_vga_power_on(dev);
6392f847
ID
15204
15205 intel_display_power_put(dev_priv, POWER_DOMAIN_VGA);
0fde901f
KM
15206}
15207
f9cd7b88 15208static bool primary_get_hw_state(struct intel_plane *plane)
98ec7739 15209{
f9cd7b88 15210 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
98ec7739 15211
f9cd7b88 15212 return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE;
d032ffa0
ML
15213}
15214
f9cd7b88
VS
15215/* FIXME read out full plane state for all planes */
15216static void readout_plane_state(struct intel_crtc *crtc)
d032ffa0 15217{
b26d3ea3 15218 struct drm_plane *primary = crtc->base.primary;
f9cd7b88 15219 struct intel_plane_state *plane_state =
b26d3ea3 15220 to_intel_plane_state(primary->state);
d032ffa0 15221
19b8d387 15222 plane_state->visible = crtc->active &&
b26d3ea3
ML
15223 primary_get_hw_state(to_intel_plane(primary));
15224
15225 if (plane_state->visible)
15226 crtc->base.state->plane_mask |= 1 << drm_plane_index(primary);
98ec7739
VS
15227}
15228
30e984df 15229static void intel_modeset_readout_hw_state(struct drm_device *dev)
24929352
DV
15230{
15231 struct drm_i915_private *dev_priv = dev->dev_private;
15232 enum pipe pipe;
24929352
DV
15233 struct intel_crtc *crtc;
15234 struct intel_encoder *encoder;
15235 struct intel_connector *connector;
5358901f 15236 int i;
24929352 15237
565602d7
ML
15238 dev_priv->active_crtcs = 0;
15239
d3fcc808 15240 for_each_intel_crtc(dev, crtc) {
565602d7
ML
15241 struct intel_crtc_state *crtc_state = crtc->config;
15242 int pixclk = 0;
3b117c8f 15243
565602d7
ML
15244 __drm_atomic_helper_crtc_destroy_state(&crtc->base, &crtc_state->base);
15245 memset(crtc_state, 0, sizeof(*crtc_state));
15246 crtc_state->base.crtc = &crtc->base;
24929352 15247
565602d7
ML
15248 crtc_state->base.active = crtc_state->base.enable =
15249 dev_priv->display.get_pipe_config(crtc, crtc_state);
15250
15251 crtc->base.enabled = crtc_state->base.enable;
15252 crtc->active = crtc_state->base.active;
15253
15254 if (crtc_state->base.active) {
15255 dev_priv->active_crtcs |= 1 << crtc->pipe;
15256
c89e39f3 15257 if (INTEL_GEN(dev_priv) >= 9 || IS_BROADWELL(dev_priv))
565602d7 15258 pixclk = ilk_pipe_pixel_rate(crtc_state);
9558d15d 15259 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
565602d7
ML
15260 pixclk = crtc_state->base.adjusted_mode.crtc_clock;
15261 else
15262 WARN_ON(dev_priv->display.modeset_calc_cdclk);
9558d15d
VS
15263
15264 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
15265 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
15266 pixclk = DIV_ROUND_UP(pixclk * 100, 95);
565602d7
ML
15267 }
15268
15269 dev_priv->min_pixclk[crtc->pipe] = pixclk;
b70709a6 15270
f9cd7b88 15271 readout_plane_state(crtc);
24929352
DV
15272
15273 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
15274 crtc->base.base.id,
15275 crtc->active ? "enabled" : "disabled");
15276 }
15277
5358901f
DV
15278 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15279 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15280
2edd6443
ACO
15281 pll->on = pll->funcs.get_hw_state(dev_priv, pll,
15282 &pll->config.hw_state);
3e369b76 15283 pll->config.crtc_mask = 0;
d3fcc808 15284 for_each_intel_crtc(dev, crtc) {
2dd66ebd 15285 if (crtc->active && crtc->config->shared_dpll == pll)
3e369b76 15286 pll->config.crtc_mask |= 1 << crtc->pipe;
5358901f 15287 }
2dd66ebd 15288 pll->active_mask = pll->config.crtc_mask;
5358901f 15289
1e6f2ddc 15290 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
3e369b76 15291 pll->name, pll->config.crtc_mask, pll->on);
5358901f
DV
15292 }
15293
b2784e15 15294 for_each_intel_encoder(dev, encoder) {
24929352
DV
15295 pipe = 0;
15296
15297 if (encoder->get_hw_state(encoder, &pipe)) {
045ac3b5
JB
15298 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15299 encoder->base.crtc = &crtc->base;
6e3c9717 15300 encoder->get_config(encoder, crtc->config);
24929352
DV
15301 } else {
15302 encoder->base.crtc = NULL;
15303 }
15304
6f2bcceb 15305 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
24929352 15306 encoder->base.base.id,
8e329a03 15307 encoder->base.name,
24929352 15308 encoder->base.crtc ? "enabled" : "disabled",
6f2bcceb 15309 pipe_name(pipe));
24929352
DV
15310 }
15311
3a3371ff 15312 for_each_intel_connector(dev, connector) {
24929352
DV
15313 if (connector->get_hw_state(connector)) {
15314 connector->base.dpms = DRM_MODE_DPMS_ON;
2aa974c9
ML
15315
15316 encoder = connector->encoder;
15317 connector->base.encoder = &encoder->base;
15318
15319 if (encoder->base.crtc &&
15320 encoder->base.crtc->state->active) {
15321 /*
15322 * This has to be done during hardware readout
15323 * because anything calling .crtc_disable may
15324 * rely on the connector_mask being accurate.
15325 */
15326 encoder->base.crtc->state->connector_mask |=
15327 1 << drm_connector_index(&connector->base);
e87a52b3
ML
15328 encoder->base.crtc->state->encoder_mask |=
15329 1 << drm_encoder_index(&encoder->base);
2aa974c9
ML
15330 }
15331
24929352
DV
15332 } else {
15333 connector->base.dpms = DRM_MODE_DPMS_OFF;
15334 connector->base.encoder = NULL;
15335 }
15336 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
15337 connector->base.base.id,
c23cc417 15338 connector->base.name,
24929352
DV
15339 connector->base.encoder ? "enabled" : "disabled");
15340 }
7f4c6284
VS
15341
15342 for_each_intel_crtc(dev, crtc) {
15343 crtc->base.hwmode = crtc->config->base.adjusted_mode;
15344
15345 memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
15346 if (crtc->base.state->active) {
15347 intel_mode_from_pipe_config(&crtc->base.mode, crtc->config);
15348 intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config);
15349 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode));
15350
15351 /*
15352 * The initial mode needs to be set in order to keep
15353 * the atomic core happy. It wants a valid mode if the
15354 * crtc's enabled, so we do the above call.
15355 *
15356 * At this point some state updated by the connectors
15357 * in their ->detect() callback has not run yet, so
15358 * no recalculation can be done yet.
15359 *
15360 * Even if we could do a recalculation and modeset
15361 * right now it would cause a double modeset if
15362 * fbdev or userspace chooses a different initial mode.
15363 *
15364 * If that happens, someone indicated they wanted a
15365 * mode change, which means it's safe to do a full
15366 * recalculation.
15367 */
15368 crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;
9eca6832
VS
15369
15370 drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
15371 update_scanline_offset(crtc);
7f4c6284 15372 }
e3b247da
VS
15373
15374 intel_pipe_config_sanity_check(dev_priv, crtc->config);
7f4c6284 15375 }
30e984df
DV
15376}
15377
043e9bda
ML
15378/* Scan out the current hw modeset state,
15379 * and sanitizes it to the current state
15380 */
15381static void
15382intel_modeset_setup_hw_state(struct drm_device *dev)
30e984df
DV
15383{
15384 struct drm_i915_private *dev_priv = dev->dev_private;
15385 enum pipe pipe;
30e984df
DV
15386 struct intel_crtc *crtc;
15387 struct intel_encoder *encoder;
35c95375 15388 int i;
30e984df
DV
15389
15390 intel_modeset_readout_hw_state(dev);
24929352
DV
15391
15392 /* HW state is read out, now we need to sanitize this mess. */
b2784e15 15393 for_each_intel_encoder(dev, encoder) {
24929352
DV
15394 intel_sanitize_encoder(encoder);
15395 }
15396
055e393f 15397 for_each_pipe(dev_priv, pipe) {
24929352
DV
15398 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15399 intel_sanitize_crtc(crtc);
6e3c9717
ACO
15400 intel_dump_pipe_config(crtc, crtc->config,
15401 "[setup_hw_state]");
24929352 15402 }
9a935856 15403
d29b2f9d
ACO
15404 intel_modeset_update_connector_atomic_state(dev);
15405
35c95375
DV
15406 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15407 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15408
2dd66ebd 15409 if (!pll->on || pll->active_mask)
35c95375
DV
15410 continue;
15411
15412 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
15413
2edd6443 15414 pll->funcs.disable(dev_priv, pll);
35c95375
DV
15415 pll->on = false;
15416 }
15417
666a4537 15418 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
6eb1a681
VS
15419 vlv_wm_get_hw_state(dev);
15420 else if (IS_GEN9(dev))
3078999f
PB
15421 skl_wm_get_hw_state(dev);
15422 else if (HAS_PCH_SPLIT(dev))
243e6a44 15423 ilk_wm_get_hw_state(dev);
292b990e
ML
15424
15425 for_each_intel_crtc(dev, crtc) {
15426 unsigned long put_domains;
15427
74bff5f9 15428 put_domains = modeset_get_crtc_power_domains(&crtc->base, crtc->config);
292b990e
ML
15429 if (WARN_ON(put_domains))
15430 modeset_put_power_domains(dev_priv, put_domains);
15431 }
15432 intel_display_set_init_power(dev_priv, false);
010cf73d
PZ
15433
15434 intel_fbc_init_pipe_state(dev_priv);
043e9bda 15435}
7d0bc1ea 15436
043e9bda
ML
15437void intel_display_resume(struct drm_device *dev)
15438{
e2c8b870
ML
15439 struct drm_i915_private *dev_priv = to_i915(dev);
15440 struct drm_atomic_state *state = dev_priv->modeset_restore_state;
15441 struct drm_modeset_acquire_ctx ctx;
043e9bda 15442 int ret;
e2c8b870 15443 bool setup = false;
f30da187 15444
e2c8b870 15445 dev_priv->modeset_restore_state = NULL;
043e9bda 15446
ea49c9ac
ML
15447 /*
15448 * This is a cludge because with real atomic modeset mode_config.mutex
15449 * won't be taken. Unfortunately some probed state like
15450 * audio_codec_enable is still protected by mode_config.mutex, so lock
15451 * it here for now.
15452 */
15453 mutex_lock(&dev->mode_config.mutex);
e2c8b870 15454 drm_modeset_acquire_init(&ctx, 0);
043e9bda 15455
e2c8b870
ML
15456retry:
15457 ret = drm_modeset_lock_all_ctx(dev, &ctx);
043e9bda 15458
e2c8b870
ML
15459 if (ret == 0 && !setup) {
15460 setup = true;
043e9bda 15461
e2c8b870
ML
15462 intel_modeset_setup_hw_state(dev);
15463 i915_redisable_vga(dev);
45e2b5f6 15464 }
8af6cf88 15465
e2c8b870
ML
15466 if (ret == 0 && state) {
15467 struct drm_crtc_state *crtc_state;
15468 struct drm_crtc *crtc;
15469 int i;
043e9bda 15470
e2c8b870
ML
15471 state->acquire_ctx = &ctx;
15472
e3d5457c
VS
15473 /* ignore any reset values/BIOS leftovers in the WM registers */
15474 to_intel_atomic_state(state)->skip_intermediate_wm = true;
15475
e2c8b870
ML
15476 for_each_crtc_in_state(state, crtc, crtc_state, i) {
15477 /*
15478 * Force recalculation even if we restore
15479 * current state. With fast modeset this may not result
15480 * in a modeset when the state is compatible.
15481 */
15482 crtc_state->mode_changed = true;
15483 }
15484
15485 ret = drm_atomic_commit(state);
043e9bda
ML
15486 }
15487
e2c8b870
ML
15488 if (ret == -EDEADLK) {
15489 drm_modeset_backoff(&ctx);
15490 goto retry;
15491 }
043e9bda 15492
e2c8b870
ML
15493 drm_modeset_drop_locks(&ctx);
15494 drm_modeset_acquire_fini(&ctx);
ea49c9ac 15495 mutex_unlock(&dev->mode_config.mutex);
043e9bda 15496
e2c8b870
ML
15497 if (ret) {
15498 DRM_ERROR("Restoring old state failed with %i\n", ret);
15499 drm_atomic_state_free(state);
15500 }
2c7111db
CW
15501}
15502
15503void intel_modeset_gem_init(struct drm_device *dev)
15504{
dc97997a 15505 struct drm_i915_private *dev_priv = to_i915(dev);
484b41dd 15506 struct drm_crtc *c;
2ff8fde1 15507 struct drm_i915_gem_object *obj;
e0d6149b 15508 int ret;
484b41dd 15509
dc97997a 15510 intel_init_gt_powersave(dev_priv);
ae48434c 15511
1833b134 15512 intel_modeset_init_hw(dev);
02e792fb 15513
1ee8da6d 15514 intel_setup_overlay(dev_priv);
484b41dd
JB
15515
15516 /*
15517 * Make sure any fbs we allocated at startup are properly
15518 * pinned & fenced. When we do the allocation it's too early
15519 * for this.
15520 */
70e1e0ec 15521 for_each_crtc(dev, c) {
2ff8fde1
MR
15522 obj = intel_fb_obj(c->primary->fb);
15523 if (obj == NULL)
484b41dd
JB
15524 continue;
15525
e0d6149b 15526 mutex_lock(&dev->struct_mutex);
3465c580
VS
15527 ret = intel_pin_and_fence_fb_obj(c->primary->fb,
15528 c->primary->state->rotation);
e0d6149b
TU
15529 mutex_unlock(&dev->struct_mutex);
15530 if (ret) {
484b41dd
JB
15531 DRM_ERROR("failed to pin boot fb on pipe %d\n",
15532 to_intel_crtc(c)->pipe);
66e514c1 15533 drm_framebuffer_unreference(c->primary->fb);
143f73b3
ML
15534 drm_framebuffer_unreference(c->primary->state->fb);
15535 c->primary->fb = c->primary->state->fb = NULL;
36750f28 15536 c->primary->crtc = c->primary->state->crtc = NULL;
36750f28 15537 c->state->plane_mask &= ~(1 << drm_plane_index(c->primary));
484b41dd
JB
15538 }
15539 }
0962c3c9
VS
15540
15541 intel_backlight_register(dev);
79e53945
JB
15542}
15543
4932e2c3
ID
15544void intel_connector_unregister(struct intel_connector *intel_connector)
15545{
15546 struct drm_connector *connector = &intel_connector->base;
15547
15548 intel_panel_destroy_backlight(connector);
34ea3d38 15549 drm_connector_unregister(connector);
4932e2c3
ID
15550}
15551
79e53945
JB
15552void intel_modeset_cleanup(struct drm_device *dev)
15553{
652c393a 15554 struct drm_i915_private *dev_priv = dev->dev_private;
19c8054c 15555 struct intel_connector *connector;
652c393a 15556
dc97997a 15557 intel_disable_gt_powersave(dev_priv);
2eb5252e 15558
0962c3c9
VS
15559 intel_backlight_unregister(dev);
15560
fd0c0642
DV
15561 /*
15562 * Interrupts and polling as the first thing to avoid creating havoc.
2eb5252e 15563 * Too much stuff here (turning of connectors, ...) would
fd0c0642
DV
15564 * experience fancy races otherwise.
15565 */
2aeb7d3a 15566 intel_irq_uninstall(dev_priv);
eb21b92b 15567
fd0c0642
DV
15568 /*
15569 * Due to the hpd irq storm handling the hotplug work can re-arm the
15570 * poll handlers. Hence disable polling after hpd handling is shut down.
15571 */
f87ea761 15572 drm_kms_helper_poll_fini(dev);
fd0c0642 15573
723bfd70
JB
15574 intel_unregister_dsm_handler();
15575
c937ab3e 15576 intel_fbc_global_disable(dev_priv);
69341a5e 15577
1630fe75
CW
15578 /* flush any delayed tasks or pending work */
15579 flush_scheduled_work();
15580
db31af1d 15581 /* destroy the backlight and sysfs files before encoders/connectors */
19c8054c
JN
15582 for_each_intel_connector(dev, connector)
15583 connector->unregister(connector);
d9255d57 15584
79e53945 15585 drm_mode_config_cleanup(dev);
4d7bb011 15586
1ee8da6d 15587 intel_cleanup_overlay(dev_priv);
ae48434c 15588
dc97997a 15589 intel_cleanup_gt_powersave(dev_priv);
f5949141
DV
15590
15591 intel_teardown_gmbus(dev);
79e53945
JB
15592}
15593
f1c79df3
ZW
15594/*
15595 * Return which encoder is currently attached for connector.
15596 */
df0e9248 15597struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
79e53945 15598{
df0e9248
CW
15599 return &intel_attached_encoder(connector)->base;
15600}
f1c79df3 15601
df0e9248
CW
15602void intel_connector_attach_encoder(struct intel_connector *connector,
15603 struct intel_encoder *encoder)
15604{
15605 connector->encoder = encoder;
15606 drm_mode_connector_attach_encoder(&connector->base,
15607 &encoder->base);
79e53945 15608}
28d52043
DA
15609
15610/*
15611 * set vga decode state - true == enable VGA decode
15612 */
15613int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
15614{
15615 struct drm_i915_private *dev_priv = dev->dev_private;
a885b3cc 15616 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
28d52043
DA
15617 u16 gmch_ctrl;
15618
75fa041d
CW
15619 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
15620 DRM_ERROR("failed to read control word\n");
15621 return -EIO;
15622 }
15623
c0cc8a55
CW
15624 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
15625 return 0;
15626
28d52043
DA
15627 if (state)
15628 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
15629 else
15630 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
75fa041d
CW
15631
15632 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
15633 DRM_ERROR("failed to write control word\n");
15634 return -EIO;
15635 }
15636
28d52043
DA
15637 return 0;
15638}
c4a1d9e4 15639
c4a1d9e4 15640struct intel_display_error_state {
ff57f1b0
PZ
15641
15642 u32 power_well_driver;
15643
63b66e5b
CW
15644 int num_transcoders;
15645
c4a1d9e4
CW
15646 struct intel_cursor_error_state {
15647 u32 control;
15648 u32 position;
15649 u32 base;
15650 u32 size;
52331309 15651 } cursor[I915_MAX_PIPES];
c4a1d9e4
CW
15652
15653 struct intel_pipe_error_state {
ddf9c536 15654 bool power_domain_on;
c4a1d9e4 15655 u32 source;
f301b1e1 15656 u32 stat;
52331309 15657 } pipe[I915_MAX_PIPES];
c4a1d9e4
CW
15658
15659 struct intel_plane_error_state {
15660 u32 control;
15661 u32 stride;
15662 u32 size;
15663 u32 pos;
15664 u32 addr;
15665 u32 surface;
15666 u32 tile_offset;
52331309 15667 } plane[I915_MAX_PIPES];
63b66e5b
CW
15668
15669 struct intel_transcoder_error_state {
ddf9c536 15670 bool power_domain_on;
63b66e5b
CW
15671 enum transcoder cpu_transcoder;
15672
15673 u32 conf;
15674
15675 u32 htotal;
15676 u32 hblank;
15677 u32 hsync;
15678 u32 vtotal;
15679 u32 vblank;
15680 u32 vsync;
15681 } transcoder[4];
c4a1d9e4
CW
15682};
15683
15684struct intel_display_error_state *
c033666a 15685intel_display_capture_error_state(struct drm_i915_private *dev_priv)
c4a1d9e4 15686{
c4a1d9e4 15687 struct intel_display_error_state *error;
63b66e5b
CW
15688 int transcoders[] = {
15689 TRANSCODER_A,
15690 TRANSCODER_B,
15691 TRANSCODER_C,
15692 TRANSCODER_EDP,
15693 };
c4a1d9e4
CW
15694 int i;
15695
c033666a 15696 if (INTEL_INFO(dev_priv)->num_pipes == 0)
63b66e5b
CW
15697 return NULL;
15698
9d1cb914 15699 error = kzalloc(sizeof(*error), GFP_ATOMIC);
c4a1d9e4
CW
15700 if (error == NULL)
15701 return NULL;
15702
c033666a 15703 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
ff57f1b0
PZ
15704 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
15705
055e393f 15706 for_each_pipe(dev_priv, i) {
ddf9c536 15707 error->pipe[i].power_domain_on =
f458ebbc
DV
15708 __intel_display_power_is_enabled(dev_priv,
15709 POWER_DOMAIN_PIPE(i));
ddf9c536 15710 if (!error->pipe[i].power_domain_on)
9d1cb914
PZ
15711 continue;
15712
5efb3e28
VS
15713 error->cursor[i].control = I915_READ(CURCNTR(i));
15714 error->cursor[i].position = I915_READ(CURPOS(i));
15715 error->cursor[i].base = I915_READ(CURBASE(i));
c4a1d9e4
CW
15716
15717 error->plane[i].control = I915_READ(DSPCNTR(i));
15718 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
c033666a 15719 if (INTEL_GEN(dev_priv) <= 3) {
51889b35 15720 error->plane[i].size = I915_READ(DSPSIZE(i));
80ca378b
PZ
15721 error->plane[i].pos = I915_READ(DSPPOS(i));
15722 }
c033666a 15723 if (INTEL_GEN(dev_priv) <= 7 && !IS_HASWELL(dev_priv))
ca291363 15724 error->plane[i].addr = I915_READ(DSPADDR(i));
c033666a 15725 if (INTEL_GEN(dev_priv) >= 4) {
c4a1d9e4
CW
15726 error->plane[i].surface = I915_READ(DSPSURF(i));
15727 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
15728 }
15729
c4a1d9e4 15730 error->pipe[i].source = I915_READ(PIPESRC(i));
f301b1e1 15731
c033666a 15732 if (HAS_GMCH_DISPLAY(dev_priv))
f301b1e1 15733 error->pipe[i].stat = I915_READ(PIPESTAT(i));
63b66e5b
CW
15734 }
15735
4d1de975 15736 /* Note: this does not include DSI transcoders. */
c033666a 15737 error->num_transcoders = INTEL_INFO(dev_priv)->num_pipes;
2d1fe073 15738 if (HAS_DDI(dev_priv))
63b66e5b
CW
15739 error->num_transcoders++; /* Account for eDP. */
15740
15741 for (i = 0; i < error->num_transcoders; i++) {
15742 enum transcoder cpu_transcoder = transcoders[i];
15743
ddf9c536 15744 error->transcoder[i].power_domain_on =
f458ebbc 15745 __intel_display_power_is_enabled(dev_priv,
38cc1daf 15746 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
ddf9c536 15747 if (!error->transcoder[i].power_domain_on)
9d1cb914
PZ
15748 continue;
15749
63b66e5b
CW
15750 error->transcoder[i].cpu_transcoder = cpu_transcoder;
15751
15752 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
15753 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
15754 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
15755 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
15756 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
15757 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
15758 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
c4a1d9e4
CW
15759 }
15760
15761 return error;
15762}
15763
edc3d884
MK
15764#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
15765
c4a1d9e4 15766void
edc3d884 15767intel_display_print_error_state(struct drm_i915_error_state_buf *m,
c4a1d9e4
CW
15768 struct drm_device *dev,
15769 struct intel_display_error_state *error)
15770{
055e393f 15771 struct drm_i915_private *dev_priv = dev->dev_private;
c4a1d9e4
CW
15772 int i;
15773
63b66e5b
CW
15774 if (!error)
15775 return;
15776
edc3d884 15777 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
190be112 15778 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
edc3d884 15779 err_printf(m, "PWR_WELL_CTL2: %08x\n",
ff57f1b0 15780 error->power_well_driver);
055e393f 15781 for_each_pipe(dev_priv, i) {
edc3d884 15782 err_printf(m, "Pipe [%d]:\n", i);
ddf9c536 15783 err_printf(m, " Power: %s\n",
87ad3212 15784 onoff(error->pipe[i].power_domain_on));
edc3d884 15785 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
f301b1e1 15786 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
edc3d884
MK
15787
15788 err_printf(m, "Plane [%d]:\n", i);
15789 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
15790 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
80ca378b 15791 if (INTEL_INFO(dev)->gen <= 3) {
edc3d884
MK
15792 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
15793 err_printf(m, " POS: %08x\n", error->plane[i].pos);
80ca378b 15794 }
4b71a570 15795 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
edc3d884 15796 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
c4a1d9e4 15797 if (INTEL_INFO(dev)->gen >= 4) {
edc3d884
MK
15798 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
15799 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
c4a1d9e4
CW
15800 }
15801
edc3d884
MK
15802 err_printf(m, "Cursor [%d]:\n", i);
15803 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
15804 err_printf(m, " POS: %08x\n", error->cursor[i].position);
15805 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
c4a1d9e4 15806 }
63b66e5b
CW
15807
15808 for (i = 0; i < error->num_transcoders; i++) {
da205630 15809 err_printf(m, "CPU transcoder: %s\n",
63b66e5b 15810 transcoder_name(error->transcoder[i].cpu_transcoder));
ddf9c536 15811 err_printf(m, " Power: %s\n",
87ad3212 15812 onoff(error->transcoder[i].power_domain_on));
63b66e5b
CW
15813 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
15814 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
15815 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
15816 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
15817 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
15818 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
15819 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
15820 }
c4a1d9e4 15821}