drm/i915: Do not acquire crtc state to check clock during modeset, v4.
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_display.c
CommitLineData
79e53945
JB
1/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
618563e3 27#include <linux/dmi.h>
c1c7af60
JB
28#include <linux/module.h>
29#include <linux/input.h>
79e53945 30#include <linux/i2c.h>
7662c8bd 31#include <linux/kernel.h>
5a0e3ad6 32#include <linux/slab.h>
9cce37f4 33#include <linux/vgaarb.h>
e0dac65e 34#include <drm/drm_edid.h>
760285e7 35#include <drm/drmP.h>
79e53945 36#include "intel_drv.h"
760285e7 37#include <drm/i915_drm.h>
79e53945 38#include "i915_drv.h"
e5510fac 39#include "i915_trace.h"
319c1d42 40#include <drm/drm_atomic.h>
c196e1d6 41#include <drm/drm_atomic_helper.h>
760285e7
DH
42#include <drm/drm_dp_helper.h>
43#include <drm/drm_crtc_helper.h>
465c120c
MR
44#include <drm/drm_plane_helper.h>
45#include <drm/drm_rect.h>
c0f372b3 46#include <linux/dma_remapping.h>
fd8e058a
AG
47#include <linux/reservation.h>
48#include <linux/dma-buf.h>
79e53945 49
465c120c 50/* Primary plane formats for gen <= 3 */
568db4f2 51static const uint32_t i8xx_primary_formats[] = {
67fe7dc5
DL
52 DRM_FORMAT_C8,
53 DRM_FORMAT_RGB565,
465c120c 54 DRM_FORMAT_XRGB1555,
67fe7dc5 55 DRM_FORMAT_XRGB8888,
465c120c
MR
56};
57
58/* Primary plane formats for gen >= 4 */
568db4f2 59static const uint32_t i965_primary_formats[] = {
6c0fd451
DL
60 DRM_FORMAT_C8,
61 DRM_FORMAT_RGB565,
62 DRM_FORMAT_XRGB8888,
63 DRM_FORMAT_XBGR8888,
64 DRM_FORMAT_XRGB2101010,
65 DRM_FORMAT_XBGR2101010,
66};
67
68static const uint32_t skl_primary_formats[] = {
67fe7dc5
DL
69 DRM_FORMAT_C8,
70 DRM_FORMAT_RGB565,
71 DRM_FORMAT_XRGB8888,
465c120c 72 DRM_FORMAT_XBGR8888,
67fe7dc5 73 DRM_FORMAT_ARGB8888,
465c120c
MR
74 DRM_FORMAT_ABGR8888,
75 DRM_FORMAT_XRGB2101010,
465c120c 76 DRM_FORMAT_XBGR2101010,
ea916ea0
KM
77 DRM_FORMAT_YUYV,
78 DRM_FORMAT_YVYU,
79 DRM_FORMAT_UYVY,
80 DRM_FORMAT_VYUY,
465c120c
MR
81};
82
3d7d6510
MR
83/* Cursor formats */
84static const uint32_t intel_cursor_formats[] = {
85 DRM_FORMAT_ARGB8888,
86};
87
6b383a7f 88static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
79e53945 89
f1f644dc 90static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 91 struct intel_crtc_state *pipe_config);
18442d08 92static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 93 struct intel_crtc_state *pipe_config);
f1f644dc 94
eb1bfe80
JB
95static int intel_framebuffer_init(struct drm_device *dev,
96 struct intel_framebuffer *ifb,
97 struct drm_mode_fb_cmd2 *mode_cmd,
98 struct drm_i915_gem_object *obj);
5b18e57c
DV
99static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
100static void intel_set_pipe_timings(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
DV
105static void haswell_set_pipeconf(struct drm_crtc *crtc);
106static void intel_set_pipe_csc(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);
613d2b27
ML
111static void intel_begin_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
112static void intel_finish_crtc_commit(struct drm_crtc *, struct drm_crtc_state *);
549e2bfb
CK
113static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
114 struct intel_crtc_state *crtc_state);
5ab7b0b7
ID
115static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
116 int num_connectors);
bfd16b2a
ML
117static void skylake_pfit_enable(struct intel_crtc *crtc);
118static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force);
119static void ironlake_pfit_enable(struct intel_crtc *crtc);
043e9bda 120static void intel_modeset_setup_hw_state(struct drm_device *dev);
200757f5 121static void intel_pre_disable_primary(struct drm_crtc *crtc);
e7457a9a 122
79e53945 123typedef struct {
0206e353 124 int min, max;
79e53945
JB
125} intel_range_t;
126
127typedef struct {
0206e353
AJ
128 int dot_limit;
129 int p2_slow, p2_fast;
79e53945
JB
130} intel_p2_t;
131
d4906093
ML
132typedef struct intel_limit intel_limit_t;
133struct intel_limit {
0206e353
AJ
134 intel_range_t dot, vco, n, m, m1, m2, p, p1;
135 intel_p2_t p2;
d4906093 136};
79e53945 137
bfa7df01
VS
138/* returns HPLL frequency in kHz */
139static int valleyview_get_vco(struct drm_i915_private *dev_priv)
140{
141 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
142
143 /* Obtain SKU information */
144 mutex_lock(&dev_priv->sb_lock);
145 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
146 CCK_FUSE_HPLL_FREQ_MASK;
147 mutex_unlock(&dev_priv->sb_lock);
148
149 return vco_freq[hpll_freq] * 1000;
150}
151
152static int vlv_get_cck_clock_hpll(struct drm_i915_private *dev_priv,
153 const char *name, u32 reg)
154{
155 u32 val;
156 int divider;
157
158 if (dev_priv->hpll_freq == 0)
159 dev_priv->hpll_freq = valleyview_get_vco(dev_priv);
160
161 mutex_lock(&dev_priv->sb_lock);
162 val = vlv_cck_read(dev_priv, reg);
163 mutex_unlock(&dev_priv->sb_lock);
164
165 divider = val & CCK_FREQUENCY_VALUES;
166
167 WARN((val & CCK_FREQUENCY_STATUS) !=
168 (divider << CCK_FREQUENCY_STATUS_SHIFT),
169 "%s change in progress\n", name);
170
171 return DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, divider + 1);
172}
173
d2acd215
DV
174int
175intel_pch_rawclk(struct drm_device *dev)
176{
177 struct drm_i915_private *dev_priv = dev->dev_private;
178
179 WARN_ON(!HAS_PCH_SPLIT(dev));
180
181 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
182}
183
79e50a4f
JN
184/* hrawclock is 1/4 the FSB frequency */
185int intel_hrawclk(struct drm_device *dev)
186{
187 struct drm_i915_private *dev_priv = dev->dev_private;
188 uint32_t clkcfg;
189
190 /* There is no CLKCFG reg in Valleyview. VLV hrawclk is 200 MHz */
666a4537 191 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
79e50a4f
JN
192 return 200;
193
194 clkcfg = I915_READ(CLKCFG);
195 switch (clkcfg & CLKCFG_FSB_MASK) {
196 case CLKCFG_FSB_400:
197 return 100;
198 case CLKCFG_FSB_533:
199 return 133;
200 case CLKCFG_FSB_667:
201 return 166;
202 case CLKCFG_FSB_800:
203 return 200;
204 case CLKCFG_FSB_1067:
205 return 266;
206 case CLKCFG_FSB_1333:
207 return 333;
208 /* these two are just a guess; one of them might be right */
209 case CLKCFG_FSB_1600:
210 case CLKCFG_FSB_1600_ALT:
211 return 400;
212 default:
213 return 133;
214 }
215}
216
bfa7df01
VS
217static void intel_update_czclk(struct drm_i915_private *dev_priv)
218{
666a4537 219 if (!(IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)))
bfa7df01
VS
220 return;
221
222 dev_priv->czclk_freq = vlv_get_cck_clock_hpll(dev_priv, "czclk",
223 CCK_CZ_CLOCK_CONTROL);
224
225 DRM_DEBUG_DRIVER("CZ clock rate: %d kHz\n", dev_priv->czclk_freq);
226}
227
021357ac
CW
228static inline u32 /* units of 100MHz */
229intel_fdi_link_freq(struct drm_device *dev)
230{
8b99e68c
CW
231 if (IS_GEN5(dev)) {
232 struct drm_i915_private *dev_priv = dev->dev_private;
233 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
234 } else
235 return 27;
021357ac
CW
236}
237
5d536e28 238static const intel_limit_t intel_limits_i8xx_dac = {
0206e353 239 .dot = { .min = 25000, .max = 350000 },
9c333719 240 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 241 .n = { .min = 2, .max = 16 },
0206e353
AJ
242 .m = { .min = 96, .max = 140 },
243 .m1 = { .min = 18, .max = 26 },
244 .m2 = { .min = 6, .max = 16 },
245 .p = { .min = 4, .max = 128 },
246 .p1 = { .min = 2, .max = 33 },
273e27ca
EA
247 .p2 = { .dot_limit = 165000,
248 .p2_slow = 4, .p2_fast = 2 },
e4b36699
KP
249};
250
5d536e28
DV
251static const intel_limit_t intel_limits_i8xx_dvo = {
252 .dot = { .min = 25000, .max = 350000 },
9c333719 253 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 254 .n = { .min = 2, .max = 16 },
5d536e28
DV
255 .m = { .min = 96, .max = 140 },
256 .m1 = { .min = 18, .max = 26 },
257 .m2 = { .min = 6, .max = 16 },
258 .p = { .min = 4, .max = 128 },
259 .p1 = { .min = 2, .max = 33 },
260 .p2 = { .dot_limit = 165000,
261 .p2_slow = 4, .p2_fast = 4 },
262};
263
e4b36699 264static const intel_limit_t intel_limits_i8xx_lvds = {
0206e353 265 .dot = { .min = 25000, .max = 350000 },
9c333719 266 .vco = { .min = 908000, .max = 1512000 },
91dbe5fb 267 .n = { .min = 2, .max = 16 },
0206e353
AJ
268 .m = { .min = 96, .max = 140 },
269 .m1 = { .min = 18, .max = 26 },
270 .m2 = { .min = 6, .max = 16 },
271 .p = { .min = 4, .max = 128 },
272 .p1 = { .min = 1, .max = 6 },
273e27ca
EA
273 .p2 = { .dot_limit = 165000,
274 .p2_slow = 14, .p2_fast = 7 },
e4b36699 275};
273e27ca 276
e4b36699 277static const intel_limit_t intel_limits_i9xx_sdvo = {
0206e353
AJ
278 .dot = { .min = 20000, .max = 400000 },
279 .vco = { .min = 1400000, .max = 2800000 },
280 .n = { .min = 1, .max = 6 },
281 .m = { .min = 70, .max = 120 },
4f7dfb67
PJ
282 .m1 = { .min = 8, .max = 18 },
283 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
284 .p = { .min = 5, .max = 80 },
285 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
286 .p2 = { .dot_limit = 200000,
287 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
288};
289
290static const intel_limit_t intel_limits_i9xx_lvds = {
0206e353
AJ
291 .dot = { .min = 20000, .max = 400000 },
292 .vco = { .min = 1400000, .max = 2800000 },
293 .n = { .min = 1, .max = 6 },
294 .m = { .min = 70, .max = 120 },
53a7d2d1
PJ
295 .m1 = { .min = 8, .max = 18 },
296 .m2 = { .min = 3, .max = 7 },
0206e353
AJ
297 .p = { .min = 7, .max = 98 },
298 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
299 .p2 = { .dot_limit = 112000,
300 .p2_slow = 14, .p2_fast = 7 },
e4b36699
KP
301};
302
273e27ca 303
e4b36699 304static const intel_limit_t intel_limits_g4x_sdvo = {
273e27ca
EA
305 .dot = { .min = 25000, .max = 270000 },
306 .vco = { .min = 1750000, .max = 3500000},
307 .n = { .min = 1, .max = 4 },
308 .m = { .min = 104, .max = 138 },
309 .m1 = { .min = 17, .max = 23 },
310 .m2 = { .min = 5, .max = 11 },
311 .p = { .min = 10, .max = 30 },
312 .p1 = { .min = 1, .max = 3},
313 .p2 = { .dot_limit = 270000,
314 .p2_slow = 10,
315 .p2_fast = 10
044c7c41 316 },
e4b36699
KP
317};
318
319static const intel_limit_t intel_limits_g4x_hdmi = {
273e27ca
EA
320 .dot = { .min = 22000, .max = 400000 },
321 .vco = { .min = 1750000, .max = 3500000},
322 .n = { .min = 1, .max = 4 },
323 .m = { .min = 104, .max = 138 },
324 .m1 = { .min = 16, .max = 23 },
325 .m2 = { .min = 5, .max = 11 },
326 .p = { .min = 5, .max = 80 },
327 .p1 = { .min = 1, .max = 8},
328 .p2 = { .dot_limit = 165000,
329 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
330};
331
332static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
273e27ca
EA
333 .dot = { .min = 20000, .max = 115000 },
334 .vco = { .min = 1750000, .max = 3500000 },
335 .n = { .min = 1, .max = 3 },
336 .m = { .min = 104, .max = 138 },
337 .m1 = { .min = 17, .max = 23 },
338 .m2 = { .min = 5, .max = 11 },
339 .p = { .min = 28, .max = 112 },
340 .p1 = { .min = 2, .max = 8 },
341 .p2 = { .dot_limit = 0,
342 .p2_slow = 14, .p2_fast = 14
044c7c41 343 },
e4b36699
KP
344};
345
346static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
273e27ca
EA
347 .dot = { .min = 80000, .max = 224000 },
348 .vco = { .min = 1750000, .max = 3500000 },
349 .n = { .min = 1, .max = 3 },
350 .m = { .min = 104, .max = 138 },
351 .m1 = { .min = 17, .max = 23 },
352 .m2 = { .min = 5, .max = 11 },
353 .p = { .min = 14, .max = 42 },
354 .p1 = { .min = 2, .max = 6 },
355 .p2 = { .dot_limit = 0,
356 .p2_slow = 7, .p2_fast = 7
044c7c41 357 },
e4b36699
KP
358};
359
f2b115e6 360static const intel_limit_t intel_limits_pineview_sdvo = {
0206e353
AJ
361 .dot = { .min = 20000, .max = 400000},
362 .vco = { .min = 1700000, .max = 3500000 },
273e27ca 363 /* Pineview's Ncounter is a ring counter */
0206e353
AJ
364 .n = { .min = 3, .max = 6 },
365 .m = { .min = 2, .max = 256 },
273e27ca 366 /* Pineview only has one combined m divider, which we treat as m2. */
0206e353
AJ
367 .m1 = { .min = 0, .max = 0 },
368 .m2 = { .min = 0, .max = 254 },
369 .p = { .min = 5, .max = 80 },
370 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
371 .p2 = { .dot_limit = 200000,
372 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
373};
374
f2b115e6 375static const intel_limit_t intel_limits_pineview_lvds = {
0206e353
AJ
376 .dot = { .min = 20000, .max = 400000 },
377 .vco = { .min = 1700000, .max = 3500000 },
378 .n = { .min = 3, .max = 6 },
379 .m = { .min = 2, .max = 256 },
380 .m1 = { .min = 0, .max = 0 },
381 .m2 = { .min = 0, .max = 254 },
382 .p = { .min = 7, .max = 112 },
383 .p1 = { .min = 1, .max = 8 },
273e27ca
EA
384 .p2 = { .dot_limit = 112000,
385 .p2_slow = 14, .p2_fast = 14 },
e4b36699
KP
386};
387
273e27ca
EA
388/* Ironlake / Sandybridge
389 *
390 * We calculate clock using (register_value + 2) for N/M1/M2, so here
391 * the range value for them is (actual_value - 2).
392 */
b91ad0ec 393static const intel_limit_t intel_limits_ironlake_dac = {
273e27ca
EA
394 .dot = { .min = 25000, .max = 350000 },
395 .vco = { .min = 1760000, .max = 3510000 },
396 .n = { .min = 1, .max = 5 },
397 .m = { .min = 79, .max = 127 },
398 .m1 = { .min = 12, .max = 22 },
399 .m2 = { .min = 5, .max = 9 },
400 .p = { .min = 5, .max = 80 },
401 .p1 = { .min = 1, .max = 8 },
402 .p2 = { .dot_limit = 225000,
403 .p2_slow = 10, .p2_fast = 5 },
e4b36699
KP
404};
405
b91ad0ec 406static const intel_limit_t intel_limits_ironlake_single_lvds = {
273e27ca
EA
407 .dot = { .min = 25000, .max = 350000 },
408 .vco = { .min = 1760000, .max = 3510000 },
409 .n = { .min = 1, .max = 3 },
410 .m = { .min = 79, .max = 118 },
411 .m1 = { .min = 12, .max = 22 },
412 .m2 = { .min = 5, .max = 9 },
413 .p = { .min = 28, .max = 112 },
414 .p1 = { .min = 2, .max = 8 },
415 .p2 = { .dot_limit = 225000,
416 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
417};
418
419static const intel_limit_t intel_limits_ironlake_dual_lvds = {
273e27ca
EA
420 .dot = { .min = 25000, .max = 350000 },
421 .vco = { .min = 1760000, .max = 3510000 },
422 .n = { .min = 1, .max = 3 },
423 .m = { .min = 79, .max = 127 },
424 .m1 = { .min = 12, .max = 22 },
425 .m2 = { .min = 5, .max = 9 },
426 .p = { .min = 14, .max = 56 },
427 .p1 = { .min = 2, .max = 8 },
428 .p2 = { .dot_limit = 225000,
429 .p2_slow = 7, .p2_fast = 7 },
b91ad0ec
ZW
430};
431
273e27ca 432/* LVDS 100mhz refclk limits. */
b91ad0ec 433static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
273e27ca
EA
434 .dot = { .min = 25000, .max = 350000 },
435 .vco = { .min = 1760000, .max = 3510000 },
436 .n = { .min = 1, .max = 2 },
437 .m = { .min = 79, .max = 126 },
438 .m1 = { .min = 12, .max = 22 },
439 .m2 = { .min = 5, .max = 9 },
440 .p = { .min = 28, .max = 112 },
0206e353 441 .p1 = { .min = 2, .max = 8 },
273e27ca
EA
442 .p2 = { .dot_limit = 225000,
443 .p2_slow = 14, .p2_fast = 14 },
b91ad0ec
ZW
444};
445
446static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
273e27ca
EA
447 .dot = { .min = 25000, .max = 350000 },
448 .vco = { .min = 1760000, .max = 3510000 },
449 .n = { .min = 1, .max = 3 },
450 .m = { .min = 79, .max = 126 },
451 .m1 = { .min = 12, .max = 22 },
452 .m2 = { .min = 5, .max = 9 },
453 .p = { .min = 14, .max = 42 },
0206e353 454 .p1 = { .min = 2, .max = 6 },
273e27ca
EA
455 .p2 = { .dot_limit = 225000,
456 .p2_slow = 7, .p2_fast = 7 },
4547668a
ZY
457};
458
dc730512 459static const intel_limit_t intel_limits_vlv = {
f01b7962
VS
460 /*
461 * These are the data rate limits (measured in fast clocks)
462 * since those are the strictest limits we have. The fast
463 * clock and actual rate limits are more relaxed, so checking
464 * them would make no difference.
465 */
466 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
75e53986 467 .vco = { .min = 4000000, .max = 6000000 },
a0c4da24 468 .n = { .min = 1, .max = 7 },
a0c4da24
JB
469 .m1 = { .min = 2, .max = 3 },
470 .m2 = { .min = 11, .max = 156 },
b99ab663 471 .p1 = { .min = 2, .max = 3 },
5fdc9c49 472 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
a0c4da24
JB
473};
474
ef9348c8
CML
475static const intel_limit_t intel_limits_chv = {
476 /*
477 * These are the data rate limits (measured in fast clocks)
478 * since those are the strictest limits we have. The fast
479 * clock and actual rate limits are more relaxed, so checking
480 * them would make no difference.
481 */
482 .dot = { .min = 25000 * 5, .max = 540000 * 5},
17fe1021 483 .vco = { .min = 4800000, .max = 6480000 },
ef9348c8
CML
484 .n = { .min = 1, .max = 1 },
485 .m1 = { .min = 2, .max = 2 },
486 .m2 = { .min = 24 << 22, .max = 175 << 22 },
487 .p1 = { .min = 2, .max = 4 },
488 .p2 = { .p2_slow = 1, .p2_fast = 14 },
489};
490
5ab7b0b7
ID
491static const intel_limit_t intel_limits_bxt = {
492 /* FIXME: find real dot limits */
493 .dot = { .min = 0, .max = INT_MAX },
e6292556 494 .vco = { .min = 4800000, .max = 6700000 },
5ab7b0b7
ID
495 .n = { .min = 1, .max = 1 },
496 .m1 = { .min = 2, .max = 2 },
497 /* FIXME: find real m2 limits */
498 .m2 = { .min = 2 << 22, .max = 255 << 22 },
499 .p1 = { .min = 2, .max = 4 },
500 .p2 = { .p2_slow = 1, .p2_fast = 20 },
501};
502
cdba954e
ACO
503static bool
504needs_modeset(struct drm_crtc_state *state)
505{
fc596660 506 return drm_atomic_crtc_needs_modeset(state);
cdba954e
ACO
507}
508
e0638cdf
PZ
509/**
510 * Returns whether any output on the specified pipe is of the specified type
511 */
4093561b 512bool intel_pipe_has_type(struct intel_crtc *crtc, enum intel_output_type type)
e0638cdf 513{
409ee761 514 struct drm_device *dev = crtc->base.dev;
e0638cdf
PZ
515 struct intel_encoder *encoder;
516
409ee761 517 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
e0638cdf
PZ
518 if (encoder->type == type)
519 return true;
520
521 return false;
522}
523
d0737e1d
ACO
524/**
525 * Returns whether any output on the specified pipe will have the specified
526 * type after a staged modeset is complete, i.e., the same as
527 * intel_pipe_has_type() but looking at encoder->new_crtc instead of
528 * encoder->crtc.
529 */
a93e255f
ACO
530static bool intel_pipe_will_have_type(const struct intel_crtc_state *crtc_state,
531 int type)
d0737e1d 532{
a93e255f 533 struct drm_atomic_state *state = crtc_state->base.state;
da3ced29 534 struct drm_connector *connector;
a93e255f 535 struct drm_connector_state *connector_state;
d0737e1d 536 struct intel_encoder *encoder;
a93e255f
ACO
537 int i, num_connectors = 0;
538
da3ced29 539 for_each_connector_in_state(state, connector, connector_state, i) {
a93e255f
ACO
540 if (connector_state->crtc != crtc_state->base.crtc)
541 continue;
542
543 num_connectors++;
d0737e1d 544
a93e255f
ACO
545 encoder = to_intel_encoder(connector_state->best_encoder);
546 if (encoder->type == type)
d0737e1d 547 return true;
a93e255f
ACO
548 }
549
550 WARN_ON(num_connectors == 0);
d0737e1d
ACO
551
552 return false;
553}
554
a93e255f
ACO
555static const intel_limit_t *
556intel_ironlake_limit(struct intel_crtc_state *crtc_state, int refclk)
2c07245f 557{
a93e255f 558 struct drm_device *dev = crtc_state->base.crtc->dev;
2c07245f 559 const intel_limit_t *limit;
b91ad0ec 560
a93e255f 561 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
1974cad0 562 if (intel_is_dual_link_lvds(dev)) {
1b894b59 563 if (refclk == 100000)
b91ad0ec
ZW
564 limit = &intel_limits_ironlake_dual_lvds_100m;
565 else
566 limit = &intel_limits_ironlake_dual_lvds;
567 } else {
1b894b59 568 if (refclk == 100000)
b91ad0ec
ZW
569 limit = &intel_limits_ironlake_single_lvds_100m;
570 else
571 limit = &intel_limits_ironlake_single_lvds;
572 }
c6bb3538 573 } else
b91ad0ec 574 limit = &intel_limits_ironlake_dac;
2c07245f
ZW
575
576 return limit;
577}
578
a93e255f
ACO
579static const intel_limit_t *
580intel_g4x_limit(struct intel_crtc_state *crtc_state)
044c7c41 581{
a93e255f 582 struct drm_device *dev = crtc_state->base.crtc->dev;
044c7c41
ML
583 const intel_limit_t *limit;
584
a93e255f 585 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
1974cad0 586 if (intel_is_dual_link_lvds(dev))
e4b36699 587 limit = &intel_limits_g4x_dual_channel_lvds;
044c7c41 588 else
e4b36699 589 limit = &intel_limits_g4x_single_channel_lvds;
a93e255f
ACO
590 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI) ||
591 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_ANALOG)) {
e4b36699 592 limit = &intel_limits_g4x_hdmi;
a93e255f 593 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO)) {
e4b36699 594 limit = &intel_limits_g4x_sdvo;
044c7c41 595 } else /* The option is for other outputs */
e4b36699 596 limit = &intel_limits_i9xx_sdvo;
044c7c41
ML
597
598 return limit;
599}
600
a93e255f
ACO
601static const intel_limit_t *
602intel_limit(struct intel_crtc_state *crtc_state, int refclk)
79e53945 603{
a93e255f 604 struct drm_device *dev = crtc_state->base.crtc->dev;
79e53945
JB
605 const intel_limit_t *limit;
606
5ab7b0b7
ID
607 if (IS_BROXTON(dev))
608 limit = &intel_limits_bxt;
609 else if (HAS_PCH_SPLIT(dev))
a93e255f 610 limit = intel_ironlake_limit(crtc_state, refclk);
2c07245f 611 else if (IS_G4X(dev)) {
a93e255f 612 limit = intel_g4x_limit(crtc_state);
f2b115e6 613 } else if (IS_PINEVIEW(dev)) {
a93e255f 614 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
f2b115e6 615 limit = &intel_limits_pineview_lvds;
2177832f 616 else
f2b115e6 617 limit = &intel_limits_pineview_sdvo;
ef9348c8
CML
618 } else if (IS_CHERRYVIEW(dev)) {
619 limit = &intel_limits_chv;
a0c4da24 620 } else if (IS_VALLEYVIEW(dev)) {
dc730512 621 limit = &intel_limits_vlv;
a6c45cf0 622 } else if (!IS_GEN2(dev)) {
a93e255f 623 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
a6c45cf0
CW
624 limit = &intel_limits_i9xx_lvds;
625 else
626 limit = &intel_limits_i9xx_sdvo;
79e53945 627 } else {
a93e255f 628 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
e4b36699 629 limit = &intel_limits_i8xx_lvds;
a93e255f 630 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
e4b36699 631 limit = &intel_limits_i8xx_dvo;
5d536e28
DV
632 else
633 limit = &intel_limits_i8xx_dac;
79e53945
JB
634 }
635 return limit;
636}
637
dccbea3b
ID
638/*
639 * Platform specific helpers to calculate the port PLL loopback- (clock.m),
640 * and post-divider (clock.p) values, pre- (clock.vco) and post-divided fast
641 * (clock.dot) clock rates. This fast dot clock is fed to the port's IO logic.
642 * The helpers' return value is the rate of the clock that is fed to the
643 * display engine's pipe which can be the above fast dot clock rate or a
644 * divided-down version of it.
645 */
f2b115e6 646/* m1 is reserved as 0 in Pineview, n is a ring counter */
dccbea3b 647static int pnv_calc_dpll_params(int refclk, intel_clock_t *clock)
79e53945 648{
2177832f
SL
649 clock->m = clock->m2 + 2;
650 clock->p = clock->p1 * clock->p2;
ed5ca77e 651 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 652 return 0;
fb03ac01
VS
653 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
654 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
655
656 return clock->dot;
2177832f
SL
657}
658
7429e9d4
DV
659static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
660{
661 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
662}
663
dccbea3b 664static int i9xx_calc_dpll_params(int refclk, intel_clock_t *clock)
2177832f 665{
7429e9d4 666 clock->m = i9xx_dpll_compute_m(clock);
79e53945 667 clock->p = clock->p1 * clock->p2;
ed5ca77e 668 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
dccbea3b 669 return 0;
fb03ac01
VS
670 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
671 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
672
673 return clock->dot;
79e53945
JB
674}
675
dccbea3b 676static int vlv_calc_dpll_params(int refclk, intel_clock_t *clock)
589eca67
ID
677{
678 clock->m = clock->m1 * clock->m2;
679 clock->p = clock->p1 * clock->p2;
680 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 681 return 0;
589eca67
ID
682 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
683 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
684
685 return clock->dot / 5;
589eca67
ID
686}
687
dccbea3b 688int chv_calc_dpll_params(int refclk, intel_clock_t *clock)
ef9348c8
CML
689{
690 clock->m = clock->m1 * clock->m2;
691 clock->p = clock->p1 * clock->p2;
692 if (WARN_ON(clock->n == 0 || clock->p == 0))
dccbea3b 693 return 0;
ef9348c8
CML
694 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
695 clock->n << 22);
696 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
dccbea3b
ID
697
698 return clock->dot / 5;
ef9348c8
CML
699}
700
7c04d1d9 701#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
79e53945
JB
702/**
703 * Returns whether the given set of divisors are valid for a given refclk with
704 * the given connectors.
705 */
706
1b894b59
CW
707static bool intel_PLL_is_valid(struct drm_device *dev,
708 const intel_limit_t *limit,
709 const intel_clock_t *clock)
79e53945 710{
f01b7962
VS
711 if (clock->n < limit->n.min || limit->n.max < clock->n)
712 INTELPllInvalid("n out of range\n");
79e53945 713 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
0206e353 714 INTELPllInvalid("p1 out of range\n");
79e53945 715 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
0206e353 716 INTELPllInvalid("m2 out of range\n");
79e53945 717 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
0206e353 718 INTELPllInvalid("m1 out of range\n");
f01b7962 719
666a4537
WB
720 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev) &&
721 !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev))
f01b7962
VS
722 if (clock->m1 <= clock->m2)
723 INTELPllInvalid("m1 <= m2\n");
724
666a4537 725 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) && !IS_BROXTON(dev)) {
f01b7962
VS
726 if (clock->p < limit->p.min || limit->p.max < clock->p)
727 INTELPllInvalid("p out of range\n");
728 if (clock->m < limit->m.min || limit->m.max < clock->m)
729 INTELPllInvalid("m out of range\n");
730 }
731
79e53945 732 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
0206e353 733 INTELPllInvalid("vco out of range\n");
79e53945
JB
734 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
735 * connector, etc., rather than just a single range.
736 */
737 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
0206e353 738 INTELPllInvalid("dot out of range\n");
79e53945
JB
739
740 return true;
741}
742
3b1429d9
VS
743static int
744i9xx_select_p2_div(const intel_limit_t *limit,
745 const struct intel_crtc_state *crtc_state,
746 int target)
79e53945 747{
3b1429d9 748 struct drm_device *dev = crtc_state->base.crtc->dev;
79e53945 749
a93e255f 750 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
79e53945 751 /*
a210b028
DV
752 * For LVDS just rely on its current settings for dual-channel.
753 * We haven't figured out how to reliably set up different
754 * single/dual channel state, if we even can.
79e53945 755 */
1974cad0 756 if (intel_is_dual_link_lvds(dev))
3b1429d9 757 return limit->p2.p2_fast;
79e53945 758 else
3b1429d9 759 return limit->p2.p2_slow;
79e53945
JB
760 } else {
761 if (target < limit->p2.dot_limit)
3b1429d9 762 return limit->p2.p2_slow;
79e53945 763 else
3b1429d9 764 return limit->p2.p2_fast;
79e53945 765 }
3b1429d9
VS
766}
767
768static bool
769i9xx_find_best_dpll(const intel_limit_t *limit,
770 struct intel_crtc_state *crtc_state,
771 int target, int refclk, intel_clock_t *match_clock,
772 intel_clock_t *best_clock)
773{
774 struct drm_device *dev = crtc_state->base.crtc->dev;
775 intel_clock_t clock;
776 int err = target;
79e53945 777
0206e353 778 memset(best_clock, 0, sizeof(*best_clock));
79e53945 779
3b1429d9
VS
780 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
781
42158660
ZY
782 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
783 clock.m1++) {
784 for (clock.m2 = limit->m2.min;
785 clock.m2 <= limit->m2.max; clock.m2++) {
c0efc387 786 if (clock.m2 >= clock.m1)
42158660
ZY
787 break;
788 for (clock.n = limit->n.min;
789 clock.n <= limit->n.max; clock.n++) {
790 for (clock.p1 = limit->p1.min;
791 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
792 int this_err;
793
dccbea3b 794 i9xx_calc_dpll_params(refclk, &clock);
ac58c3f0
DV
795 if (!intel_PLL_is_valid(dev, limit,
796 &clock))
797 continue;
798 if (match_clock &&
799 clock.p != match_clock->p)
800 continue;
801
802 this_err = abs(clock.dot - target);
803 if (this_err < err) {
804 *best_clock = clock;
805 err = this_err;
806 }
807 }
808 }
809 }
810 }
811
812 return (err != target);
813}
814
815static bool
a93e255f
ACO
816pnv_find_best_dpll(const intel_limit_t *limit,
817 struct intel_crtc_state *crtc_state,
ee9300bb
DV
818 int target, int refclk, intel_clock_t *match_clock,
819 intel_clock_t *best_clock)
79e53945 820{
3b1429d9 821 struct drm_device *dev = crtc_state->base.crtc->dev;
79e53945 822 intel_clock_t clock;
79e53945
JB
823 int err = target;
824
0206e353 825 memset(best_clock, 0, sizeof(*best_clock));
79e53945 826
3b1429d9
VS
827 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
828
42158660
ZY
829 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
830 clock.m1++) {
831 for (clock.m2 = limit->m2.min;
832 clock.m2 <= limit->m2.max; clock.m2++) {
42158660
ZY
833 for (clock.n = limit->n.min;
834 clock.n <= limit->n.max; clock.n++) {
835 for (clock.p1 = limit->p1.min;
836 clock.p1 <= limit->p1.max; clock.p1++) {
79e53945
JB
837 int this_err;
838
dccbea3b 839 pnv_calc_dpll_params(refclk, &clock);
1b894b59
CW
840 if (!intel_PLL_is_valid(dev, limit,
841 &clock))
79e53945 842 continue;
cec2f356
SP
843 if (match_clock &&
844 clock.p != match_clock->p)
845 continue;
79e53945
JB
846
847 this_err = abs(clock.dot - target);
848 if (this_err < err) {
849 *best_clock = clock;
850 err = this_err;
851 }
852 }
853 }
854 }
855 }
856
857 return (err != target);
858}
859
d4906093 860static bool
a93e255f
ACO
861g4x_find_best_dpll(const intel_limit_t *limit,
862 struct intel_crtc_state *crtc_state,
ee9300bb
DV
863 int target, int refclk, intel_clock_t *match_clock,
864 intel_clock_t *best_clock)
d4906093 865{
3b1429d9 866 struct drm_device *dev = crtc_state->base.crtc->dev;
d4906093
ML
867 intel_clock_t clock;
868 int max_n;
3b1429d9 869 bool found = false;
6ba770dc
AJ
870 /* approximately equals target * 0.00585 */
871 int err_most = (target >> 8) + (target >> 9);
d4906093
ML
872
873 memset(best_clock, 0, sizeof(*best_clock));
3b1429d9
VS
874
875 clock.p2 = i9xx_select_p2_div(limit, crtc_state, target);
876
d4906093 877 max_n = limit->n.max;
f77f13e2 878 /* based on hardware requirement, prefer smaller n to precision */
d4906093 879 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
f77f13e2 880 /* based on hardware requirement, prefere larger m1,m2 */
d4906093
ML
881 for (clock.m1 = limit->m1.max;
882 clock.m1 >= limit->m1.min; clock.m1--) {
883 for (clock.m2 = limit->m2.max;
884 clock.m2 >= limit->m2.min; clock.m2--) {
885 for (clock.p1 = limit->p1.max;
886 clock.p1 >= limit->p1.min; clock.p1--) {
887 int this_err;
888
dccbea3b 889 i9xx_calc_dpll_params(refclk, &clock);
1b894b59
CW
890 if (!intel_PLL_is_valid(dev, limit,
891 &clock))
d4906093 892 continue;
1b894b59
CW
893
894 this_err = abs(clock.dot - target);
d4906093
ML
895 if (this_err < err_most) {
896 *best_clock = clock;
897 err_most = this_err;
898 max_n = clock.n;
899 found = true;
900 }
901 }
902 }
903 }
904 }
2c07245f
ZW
905 return found;
906}
907
d5dd62bd
ID
908/*
909 * Check if the calculated PLL configuration is more optimal compared to the
910 * best configuration and error found so far. Return the calculated error.
911 */
912static bool vlv_PLL_is_optimal(struct drm_device *dev, int target_freq,
913 const intel_clock_t *calculated_clock,
914 const intel_clock_t *best_clock,
915 unsigned int best_error_ppm,
916 unsigned int *error_ppm)
917{
9ca3ba01
ID
918 /*
919 * For CHV ignore the error and consider only the P value.
920 * Prefer a bigger P value based on HW requirements.
921 */
922 if (IS_CHERRYVIEW(dev)) {
923 *error_ppm = 0;
924
925 return calculated_clock->p > best_clock->p;
926 }
927
24be4e46
ID
928 if (WARN_ON_ONCE(!target_freq))
929 return false;
930
d5dd62bd
ID
931 *error_ppm = div_u64(1000000ULL *
932 abs(target_freq - calculated_clock->dot),
933 target_freq);
934 /*
935 * Prefer a better P value over a better (smaller) error if the error
936 * is small. Ensure this preference for future configurations too by
937 * setting the error to 0.
938 */
939 if (*error_ppm < 100 && calculated_clock->p > best_clock->p) {
940 *error_ppm = 0;
941
942 return true;
943 }
944
945 return *error_ppm + 10 < best_error_ppm;
946}
947
a0c4da24 948static bool
a93e255f
ACO
949vlv_find_best_dpll(const intel_limit_t *limit,
950 struct intel_crtc_state *crtc_state,
ee9300bb
DV
951 int target, int refclk, intel_clock_t *match_clock,
952 intel_clock_t *best_clock)
a0c4da24 953{
a93e255f 954 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
a919ff14 955 struct drm_device *dev = crtc->base.dev;
6b4bf1c4 956 intel_clock_t clock;
69e4f900 957 unsigned int bestppm = 1000000;
27e639bf
VS
958 /* min update 19.2 MHz */
959 int max_n = min(limit->n.max, refclk / 19200);
49e497ef 960 bool found = false;
a0c4da24 961
6b4bf1c4
VS
962 target *= 5; /* fast clock */
963
964 memset(best_clock, 0, sizeof(*best_clock));
a0c4da24
JB
965
966 /* based on hardware requirement, prefer smaller n to precision */
27e639bf 967 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
811bbf05 968 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
889059d8 969 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
c1a9ae43 970 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
6b4bf1c4 971 clock.p = clock.p1 * clock.p2;
a0c4da24 972 /* based on hardware requirement, prefer bigger m1,m2 values */
6b4bf1c4 973 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
d5dd62bd 974 unsigned int ppm;
69e4f900 975
6b4bf1c4
VS
976 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
977 refclk * clock.m1);
978
dccbea3b 979 vlv_calc_dpll_params(refclk, &clock);
43b0ac53 980
f01b7962
VS
981 if (!intel_PLL_is_valid(dev, limit,
982 &clock))
43b0ac53
VS
983 continue;
984
d5dd62bd
ID
985 if (!vlv_PLL_is_optimal(dev, target,
986 &clock,
987 best_clock,
988 bestppm, &ppm))
989 continue;
6b4bf1c4 990
d5dd62bd
ID
991 *best_clock = clock;
992 bestppm = ppm;
993 found = true;
a0c4da24
JB
994 }
995 }
996 }
997 }
a0c4da24 998
49e497ef 999 return found;
a0c4da24 1000}
a4fc5ed6 1001
ef9348c8 1002static bool
a93e255f
ACO
1003chv_find_best_dpll(const intel_limit_t *limit,
1004 struct intel_crtc_state *crtc_state,
ef9348c8
CML
1005 int target, int refclk, intel_clock_t *match_clock,
1006 intel_clock_t *best_clock)
1007{
a93e255f 1008 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
a919ff14 1009 struct drm_device *dev = crtc->base.dev;
9ca3ba01 1010 unsigned int best_error_ppm;
ef9348c8
CML
1011 intel_clock_t clock;
1012 uint64_t m2;
1013 int found = false;
1014
1015 memset(best_clock, 0, sizeof(*best_clock));
9ca3ba01 1016 best_error_ppm = 1000000;
ef9348c8
CML
1017
1018 /*
1019 * Based on hardware doc, the n always set to 1, and m1 always
1020 * set to 2. If requires to support 200Mhz refclk, we need to
1021 * revisit this because n may not 1 anymore.
1022 */
1023 clock.n = 1, clock.m1 = 2;
1024 target *= 5; /* fast clock */
1025
1026 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
1027 for (clock.p2 = limit->p2.p2_fast;
1028 clock.p2 >= limit->p2.p2_slow;
1029 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
9ca3ba01 1030 unsigned int error_ppm;
ef9348c8
CML
1031
1032 clock.p = clock.p1 * clock.p2;
1033
1034 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
1035 clock.n) << 22, refclk * clock.m1);
1036
1037 if (m2 > INT_MAX/clock.m1)
1038 continue;
1039
1040 clock.m2 = m2;
1041
dccbea3b 1042 chv_calc_dpll_params(refclk, &clock);
ef9348c8
CML
1043
1044 if (!intel_PLL_is_valid(dev, limit, &clock))
1045 continue;
1046
9ca3ba01
ID
1047 if (!vlv_PLL_is_optimal(dev, target, &clock, best_clock,
1048 best_error_ppm, &error_ppm))
1049 continue;
1050
1051 *best_clock = clock;
1052 best_error_ppm = error_ppm;
1053 found = true;
ef9348c8
CML
1054 }
1055 }
1056
1057 return found;
1058}
1059
5ab7b0b7
ID
1060bool bxt_find_best_dpll(struct intel_crtc_state *crtc_state, int target_clock,
1061 intel_clock_t *best_clock)
1062{
1063 int refclk = i9xx_get_refclk(crtc_state, 0);
1064
1065 return chv_find_best_dpll(intel_limit(crtc_state, refclk), crtc_state,
1066 target_clock, refclk, NULL, best_clock);
1067}
1068
20ddf665
VS
1069bool intel_crtc_active(struct drm_crtc *crtc)
1070{
1071 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1072
1073 /* Be paranoid as we can arrive here with only partial
1074 * state retrieved from the hardware during setup.
1075 *
241bfc38 1076 * We can ditch the adjusted_mode.crtc_clock check as soon
20ddf665
VS
1077 * as Haswell has gained clock readout/fastboot support.
1078 *
66e514c1 1079 * We can ditch the crtc->primary->fb check as soon as we can
20ddf665 1080 * properly reconstruct framebuffers.
c3d1f436
MR
1081 *
1082 * FIXME: The intel_crtc->active here should be switched to
1083 * crtc->state->active once we have proper CRTC states wired up
1084 * for atomic.
20ddf665 1085 */
c3d1f436 1086 return intel_crtc->active && crtc->primary->state->fb &&
6e3c9717 1087 intel_crtc->config->base.adjusted_mode.crtc_clock;
20ddf665
VS
1088}
1089
a5c961d1
PZ
1090enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
1091 enum pipe pipe)
1092{
1093 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1094 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1095
6e3c9717 1096 return intel_crtc->config->cpu_transcoder;
a5c961d1
PZ
1097}
1098
fbf49ea2
VS
1099static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
1100{
1101 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 1102 i915_reg_t reg = PIPEDSL(pipe);
fbf49ea2
VS
1103 u32 line1, line2;
1104 u32 line_mask;
1105
1106 if (IS_GEN2(dev))
1107 line_mask = DSL_LINEMASK_GEN2;
1108 else
1109 line_mask = DSL_LINEMASK_GEN3;
1110
1111 line1 = I915_READ(reg) & line_mask;
6adfb1ef 1112 msleep(5);
fbf49ea2
VS
1113 line2 = I915_READ(reg) & line_mask;
1114
1115 return line1 == line2;
1116}
1117
ab7ad7f6
KP
1118/*
1119 * intel_wait_for_pipe_off - wait for pipe to turn off
575f7ab7 1120 * @crtc: crtc whose pipe to wait for
9d0498a2
JB
1121 *
1122 * After disabling a pipe, we can't wait for vblank in the usual way,
1123 * spinning on the vblank interrupt status bit, since we won't actually
1124 * see an interrupt when the pipe is disabled.
1125 *
ab7ad7f6
KP
1126 * On Gen4 and above:
1127 * wait for the pipe register state bit to turn off
1128 *
1129 * Otherwise:
1130 * wait for the display line value to settle (it usually
1131 * ends up stopping at the start of the next frame).
58e10eb9 1132 *
9d0498a2 1133 */
575f7ab7 1134static void intel_wait_for_pipe_off(struct intel_crtc *crtc)
9d0498a2 1135{
575f7ab7 1136 struct drm_device *dev = crtc->base.dev;
9d0498a2 1137 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 1138 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 1139 enum pipe pipe = crtc->pipe;
ab7ad7f6
KP
1140
1141 if (INTEL_INFO(dev)->gen >= 4) {
f0f59a00 1142 i915_reg_t reg = PIPECONF(cpu_transcoder);
ab7ad7f6
KP
1143
1144 /* Wait for the Pipe State to go off */
58e10eb9
CW
1145 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
1146 100))
284637d9 1147 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 1148 } else {
ab7ad7f6 1149 /* Wait for the display line to settle */
fbf49ea2 1150 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
284637d9 1151 WARN(1, "pipe_off wait timed out\n");
ab7ad7f6 1152 }
79e53945
JB
1153}
1154
b24e7179
JB
1155static const char *state_string(bool enabled)
1156{
1157 return enabled ? "on" : "off";
1158}
1159
1160/* Only for pre-ILK configs */
55607e8a
DV
1161void assert_pll(struct drm_i915_private *dev_priv,
1162 enum pipe pipe, bool state)
b24e7179 1163{
b24e7179
JB
1164 u32 val;
1165 bool cur_state;
1166
649636ef 1167 val = I915_READ(DPLL(pipe));
b24e7179 1168 cur_state = !!(val & DPLL_VCO_ENABLE);
e2c719b7 1169 I915_STATE_WARN(cur_state != state,
b24e7179
JB
1170 "PLL state assertion failure (expected %s, current %s)\n",
1171 state_string(state), state_string(cur_state));
1172}
b24e7179 1173
23538ef1
JN
1174/* XXX: the dsi pll is shared between MIPI DSI ports */
1175static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1176{
1177 u32 val;
1178 bool cur_state;
1179
a580516d 1180 mutex_lock(&dev_priv->sb_lock);
23538ef1 1181 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
a580516d 1182 mutex_unlock(&dev_priv->sb_lock);
23538ef1
JN
1183
1184 cur_state = val & DSI_PLL_VCO_EN;
e2c719b7 1185 I915_STATE_WARN(cur_state != state,
23538ef1
JN
1186 "DSI PLL state assertion failure (expected %s, current %s)\n",
1187 state_string(state), state_string(cur_state));
1188}
1189#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1190#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1191
55607e8a 1192struct intel_shared_dpll *
e2b78267
DV
1193intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
1194{
1195 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1196
6e3c9717 1197 if (crtc->config->shared_dpll < 0)
e2b78267
DV
1198 return NULL;
1199
6e3c9717 1200 return &dev_priv->shared_dplls[crtc->config->shared_dpll];
e2b78267
DV
1201}
1202
040484af 1203/* For ILK+ */
55607e8a
DV
1204void assert_shared_dpll(struct drm_i915_private *dev_priv,
1205 struct intel_shared_dpll *pll,
1206 bool state)
040484af 1207{
040484af 1208 bool cur_state;
5358901f 1209 struct intel_dpll_hw_state hw_state;
040484af 1210
92b27b08 1211 if (WARN (!pll,
46edb027 1212 "asserting DPLL %s with no DPLL\n", state_string(state)))
ee7b9f93 1213 return;
ee7b9f93 1214
5358901f 1215 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
e2c719b7 1216 I915_STATE_WARN(cur_state != state,
5358901f
DV
1217 "%s assertion failure (expected %s, current %s)\n",
1218 pll->name, state_string(state), state_string(cur_state));
040484af 1219}
040484af
JB
1220
1221static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1222 enum pipe pipe, bool state)
1223{
040484af 1224 bool cur_state;
ad80a810
PZ
1225 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1226 pipe);
040484af 1227
affa9354
PZ
1228 if (HAS_DDI(dev_priv->dev)) {
1229 /* DDI does not have a specific FDI_TX register */
649636ef 1230 u32 val = I915_READ(TRANS_DDI_FUNC_CTL(cpu_transcoder));
ad80a810 1231 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
bf507ef7 1232 } else {
649636ef 1233 u32 val = I915_READ(FDI_TX_CTL(pipe));
bf507ef7
ED
1234 cur_state = !!(val & FDI_TX_ENABLE);
1235 }
e2c719b7 1236 I915_STATE_WARN(cur_state != state,
040484af
JB
1237 "FDI TX state assertion failure (expected %s, current %s)\n",
1238 state_string(state), state_string(cur_state));
1239}
1240#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1241#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1242
1243static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1244 enum pipe pipe, bool state)
1245{
040484af
JB
1246 u32 val;
1247 bool cur_state;
1248
649636ef 1249 val = I915_READ(FDI_RX_CTL(pipe));
d63fa0dc 1250 cur_state = !!(val & FDI_RX_ENABLE);
e2c719b7 1251 I915_STATE_WARN(cur_state != state,
040484af
JB
1252 "FDI RX state assertion failure (expected %s, current %s)\n",
1253 state_string(state), state_string(cur_state));
1254}
1255#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1256#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1257
1258static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1259 enum pipe pipe)
1260{
040484af
JB
1261 u32 val;
1262
1263 /* ILK FDI PLL is always enabled */
3d13ef2e 1264 if (INTEL_INFO(dev_priv->dev)->gen == 5)
040484af
JB
1265 return;
1266
bf507ef7 1267 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
affa9354 1268 if (HAS_DDI(dev_priv->dev))
bf507ef7
ED
1269 return;
1270
649636ef 1271 val = I915_READ(FDI_TX_CTL(pipe));
e2c719b7 1272 I915_STATE_WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
040484af
JB
1273}
1274
55607e8a
DV
1275void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1276 enum pipe pipe, bool state)
040484af 1277{
040484af 1278 u32 val;
55607e8a 1279 bool cur_state;
040484af 1280
649636ef 1281 val = I915_READ(FDI_RX_CTL(pipe));
55607e8a 1282 cur_state = !!(val & FDI_RX_PLL_ENABLE);
e2c719b7 1283 I915_STATE_WARN(cur_state != state,
55607e8a
DV
1284 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1285 state_string(state), state_string(cur_state));
040484af
JB
1286}
1287
b680c37a
DV
1288void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1289 enum pipe pipe)
ea0760cf 1290{
bedd4dba 1291 struct drm_device *dev = dev_priv->dev;
f0f59a00 1292 i915_reg_t pp_reg;
ea0760cf
JB
1293 u32 val;
1294 enum pipe panel_pipe = PIPE_A;
0de3b485 1295 bool locked = true;
ea0760cf 1296
bedd4dba
JN
1297 if (WARN_ON(HAS_DDI(dev)))
1298 return;
1299
1300 if (HAS_PCH_SPLIT(dev)) {
1301 u32 port_sel;
1302
ea0760cf 1303 pp_reg = PCH_PP_CONTROL;
bedd4dba
JN
1304 port_sel = I915_READ(PCH_PP_ON_DELAYS) & PANEL_PORT_SELECT_MASK;
1305
1306 if (port_sel == PANEL_PORT_SELECT_LVDS &&
1307 I915_READ(PCH_LVDS) & LVDS_PIPEB_SELECT)
1308 panel_pipe = PIPE_B;
1309 /* XXX: else fix for eDP */
666a4537 1310 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
bedd4dba
JN
1311 /* presumably write lock depends on pipe, not port select */
1312 pp_reg = VLV_PIPE_PP_CONTROL(pipe);
1313 panel_pipe = pipe;
ea0760cf
JB
1314 } else {
1315 pp_reg = PP_CONTROL;
bedd4dba
JN
1316 if (I915_READ(LVDS) & LVDS_PIPEB_SELECT)
1317 panel_pipe = PIPE_B;
ea0760cf
JB
1318 }
1319
1320 val = I915_READ(pp_reg);
1321 if (!(val & PANEL_POWER_ON) ||
ec49ba2d 1322 ((val & PANEL_UNLOCK_MASK) == PANEL_UNLOCK_REGS))
ea0760cf
JB
1323 locked = false;
1324
e2c719b7 1325 I915_STATE_WARN(panel_pipe == pipe && locked,
ea0760cf 1326 "panel assertion failure, pipe %c regs locked\n",
9db4a9c7 1327 pipe_name(pipe));
ea0760cf
JB
1328}
1329
93ce0ba6
JN
1330static void assert_cursor(struct drm_i915_private *dev_priv,
1331 enum pipe pipe, bool state)
1332{
1333 struct drm_device *dev = dev_priv->dev;
1334 bool cur_state;
1335
d9d82081 1336 if (IS_845G(dev) || IS_I865G(dev))
0b87c24e 1337 cur_state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE;
d9d82081 1338 else
5efb3e28 1339 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
93ce0ba6 1340
e2c719b7 1341 I915_STATE_WARN(cur_state != state,
93ce0ba6
JN
1342 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1343 pipe_name(pipe), state_string(state), state_string(cur_state));
1344}
1345#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1346#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1347
b840d907
JB
1348void assert_pipe(struct drm_i915_private *dev_priv,
1349 enum pipe pipe, bool state)
b24e7179 1350{
63d7bbe9 1351 bool cur_state;
702e7a56
PZ
1352 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1353 pipe);
b24e7179 1354
b6b5d049
VS
1355 /* if we need the pipe quirk it must be always on */
1356 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1357 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
8e636784
DV
1358 state = true;
1359
f458ebbc 1360 if (!intel_display_power_is_enabled(dev_priv,
b97186f0 1361 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
69310161
PZ
1362 cur_state = false;
1363 } else {
649636ef 1364 u32 val = I915_READ(PIPECONF(cpu_transcoder));
69310161
PZ
1365 cur_state = !!(val & PIPECONF_ENABLE);
1366 }
1367
e2c719b7 1368 I915_STATE_WARN(cur_state != state,
63d7bbe9 1369 "pipe %c assertion failure (expected %s, current %s)\n",
9db4a9c7 1370 pipe_name(pipe), state_string(state), state_string(cur_state));
b24e7179
JB
1371}
1372
931872fc
CW
1373static void assert_plane(struct drm_i915_private *dev_priv,
1374 enum plane plane, bool state)
b24e7179 1375{
b24e7179 1376 u32 val;
931872fc 1377 bool cur_state;
b24e7179 1378
649636ef 1379 val = I915_READ(DSPCNTR(plane));
931872fc 1380 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
e2c719b7 1381 I915_STATE_WARN(cur_state != state,
931872fc
CW
1382 "plane %c assertion failure (expected %s, current %s)\n",
1383 plane_name(plane), state_string(state), state_string(cur_state));
b24e7179
JB
1384}
1385
931872fc
CW
1386#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1387#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1388
b24e7179
JB
1389static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1390 enum pipe pipe)
1391{
653e1026 1392 struct drm_device *dev = dev_priv->dev;
649636ef 1393 int i;
b24e7179 1394
653e1026
VS
1395 /* Primary planes are fixed to pipes on gen4+ */
1396 if (INTEL_INFO(dev)->gen >= 4) {
649636ef 1397 u32 val = I915_READ(DSPCNTR(pipe));
e2c719b7 1398 I915_STATE_WARN(val & DISPLAY_PLANE_ENABLE,
28c05794
AJ
1399 "plane %c assertion failure, should be disabled but not\n",
1400 plane_name(pipe));
19ec1358 1401 return;
28c05794 1402 }
19ec1358 1403
b24e7179 1404 /* Need to check both planes against the pipe */
055e393f 1405 for_each_pipe(dev_priv, i) {
649636ef
VS
1406 u32 val = I915_READ(DSPCNTR(i));
1407 enum pipe cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
b24e7179 1408 DISPPLANE_SEL_PIPE_SHIFT;
e2c719b7 1409 I915_STATE_WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
9db4a9c7
JB
1410 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1411 plane_name(i), pipe_name(pipe));
b24e7179
JB
1412 }
1413}
1414
19332d7a
JB
1415static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1416 enum pipe pipe)
1417{
20674eef 1418 struct drm_device *dev = dev_priv->dev;
649636ef 1419 int sprite;
19332d7a 1420
7feb8b88 1421 if (INTEL_INFO(dev)->gen >= 9) {
3bdcfc0c 1422 for_each_sprite(dev_priv, pipe, sprite) {
649636ef 1423 u32 val = I915_READ(PLANE_CTL(pipe, sprite));
e2c719b7 1424 I915_STATE_WARN(val & PLANE_CTL_ENABLE,
7feb8b88
DL
1425 "plane %d assertion failure, should be off on pipe %c but is still active\n",
1426 sprite, pipe_name(pipe));
1427 }
666a4537 1428 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
3bdcfc0c 1429 for_each_sprite(dev_priv, pipe, sprite) {
649636ef 1430 u32 val = I915_READ(SPCNTR(pipe, sprite));
e2c719b7 1431 I915_STATE_WARN(val & SP_ENABLE,
20674eef 1432 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1fe47785 1433 sprite_name(pipe, sprite), pipe_name(pipe));
20674eef
VS
1434 }
1435 } else if (INTEL_INFO(dev)->gen >= 7) {
649636ef 1436 u32 val = I915_READ(SPRCTL(pipe));
e2c719b7 1437 I915_STATE_WARN(val & SPRITE_ENABLE,
06da8da2 1438 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef
VS
1439 plane_name(pipe), pipe_name(pipe));
1440 } else if (INTEL_INFO(dev)->gen >= 5) {
649636ef 1441 u32 val = I915_READ(DVSCNTR(pipe));
e2c719b7 1442 I915_STATE_WARN(val & DVS_ENABLE,
06da8da2 1443 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
20674eef 1444 plane_name(pipe), pipe_name(pipe));
19332d7a
JB
1445 }
1446}
1447
08c71e5e
VS
1448static void assert_vblank_disabled(struct drm_crtc *crtc)
1449{
e2c719b7 1450 if (I915_STATE_WARN_ON(drm_crtc_vblank_get(crtc) == 0))
08c71e5e
VS
1451 drm_crtc_vblank_put(crtc);
1452}
1453
89eff4be 1454static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
92f2584a
JB
1455{
1456 u32 val;
1457 bool enabled;
1458
e2c719b7 1459 I915_STATE_WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
9d82aa17 1460
92f2584a
JB
1461 val = I915_READ(PCH_DREF_CONTROL);
1462 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1463 DREF_SUPERSPREAD_SOURCE_MASK));
e2c719b7 1464 I915_STATE_WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
92f2584a
JB
1465}
1466
ab9412ba
DV
1467static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1468 enum pipe pipe)
92f2584a 1469{
92f2584a
JB
1470 u32 val;
1471 bool enabled;
1472
649636ef 1473 val = I915_READ(PCH_TRANSCONF(pipe));
92f2584a 1474 enabled = !!(val & TRANS_ENABLE);
e2c719b7 1475 I915_STATE_WARN(enabled,
9db4a9c7
JB
1476 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1477 pipe_name(pipe));
92f2584a
JB
1478}
1479
4e634389
KP
1480static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1481 enum pipe pipe, u32 port_sel, u32 val)
f0575e92
KP
1482{
1483 if ((val & DP_PORT_EN) == 0)
1484 return false;
1485
1486 if (HAS_PCH_CPT(dev_priv->dev)) {
f0f59a00 1487 u32 trans_dp_ctl = I915_READ(TRANS_DP_CTL(pipe));
f0575e92
KP
1488 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1489 return false;
44f37d1f
CML
1490 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1491 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1492 return false;
f0575e92
KP
1493 } else {
1494 if ((val & DP_PIPE_MASK) != (pipe << 30))
1495 return false;
1496 }
1497 return true;
1498}
1499
1519b995
KP
1500static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1501 enum pipe pipe, u32 val)
1502{
dc0fa718 1503 if ((val & SDVO_ENABLE) == 0)
1519b995
KP
1504 return false;
1505
1506 if (HAS_PCH_CPT(dev_priv->dev)) {
dc0fa718 1507 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
1519b995 1508 return false;
44f37d1f
CML
1509 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1510 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1511 return false;
1519b995 1512 } else {
dc0fa718 1513 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
1519b995
KP
1514 return false;
1515 }
1516 return true;
1517}
1518
1519static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1520 enum pipe pipe, u32 val)
1521{
1522 if ((val & LVDS_PORT_EN) == 0)
1523 return false;
1524
1525 if (HAS_PCH_CPT(dev_priv->dev)) {
1526 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1527 return false;
1528 } else {
1529 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1530 return false;
1531 }
1532 return true;
1533}
1534
1535static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1536 enum pipe pipe, u32 val)
1537{
1538 if ((val & ADPA_DAC_ENABLE) == 0)
1539 return false;
1540 if (HAS_PCH_CPT(dev_priv->dev)) {
1541 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1542 return false;
1543 } else {
1544 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1545 return false;
1546 }
1547 return true;
1548}
1549
291906f1 1550static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
f0f59a00
VS
1551 enum pipe pipe, i915_reg_t reg,
1552 u32 port_sel)
291906f1 1553{
47a05eca 1554 u32 val = I915_READ(reg);
e2c719b7 1555 I915_STATE_WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
291906f1 1556 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
f0f59a00 1557 i915_mmio_reg_offset(reg), pipe_name(pipe));
de9a35ab 1558
e2c719b7 1559 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
75c5da27 1560 && (val & DP_PIPEB_SELECT),
de9a35ab 1561 "IBX PCH dp port still using transcoder B\n");
291906f1
JB
1562}
1563
1564static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
f0f59a00 1565 enum pipe pipe, i915_reg_t reg)
291906f1 1566{
47a05eca 1567 u32 val = I915_READ(reg);
e2c719b7 1568 I915_STATE_WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
23c99e77 1569 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
f0f59a00 1570 i915_mmio_reg_offset(reg), pipe_name(pipe));
de9a35ab 1571
e2c719b7 1572 I915_STATE_WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
75c5da27 1573 && (val & SDVO_PIPE_B_SELECT),
de9a35ab 1574 "IBX PCH hdmi port still using transcoder B\n");
291906f1
JB
1575}
1576
1577static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1578 enum pipe pipe)
1579{
291906f1 1580 u32 val;
291906f1 1581
f0575e92
KP
1582 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1583 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1584 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
291906f1 1585
649636ef 1586 val = I915_READ(PCH_ADPA);
e2c719b7 1587 I915_STATE_WARN(adpa_pipe_enabled(dev_priv, pipe, val),
291906f1 1588 "PCH VGA enabled on transcoder %c, should be disabled\n",
9db4a9c7 1589 pipe_name(pipe));
291906f1 1590
649636ef 1591 val = I915_READ(PCH_LVDS);
e2c719b7 1592 I915_STATE_WARN(lvds_pipe_enabled(dev_priv, pipe, val),
291906f1 1593 "PCH LVDS enabled on transcoder %c, should be disabled\n",
9db4a9c7 1594 pipe_name(pipe));
291906f1 1595
e2debe91
PZ
1596 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1597 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1598 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
291906f1
JB
1599}
1600
d288f65f 1601static void vlv_enable_pll(struct intel_crtc *crtc,
5cec258b 1602 const struct intel_crtc_state *pipe_config)
87442f73 1603{
426115cf
DV
1604 struct drm_device *dev = crtc->base.dev;
1605 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 1606 i915_reg_t reg = DPLL(crtc->pipe);
d288f65f 1607 u32 dpll = pipe_config->dpll_hw_state.dpll;
87442f73 1608
426115cf 1609 assert_pipe_disabled(dev_priv, crtc->pipe);
87442f73 1610
87442f73 1611 /* PLL is protected by panel, make sure we can write it */
6a9e7363 1612 if (IS_MOBILE(dev_priv->dev))
426115cf 1613 assert_panel_unlocked(dev_priv, crtc->pipe);
87442f73 1614
426115cf
DV
1615 I915_WRITE(reg, dpll);
1616 POSTING_READ(reg);
1617 udelay(150);
1618
1619 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1620 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1621
d288f65f 1622 I915_WRITE(DPLL_MD(crtc->pipe), pipe_config->dpll_hw_state.dpll_md);
426115cf 1623 POSTING_READ(DPLL_MD(crtc->pipe));
87442f73
DV
1624
1625 /* We do this three times for luck */
426115cf 1626 I915_WRITE(reg, dpll);
87442f73
DV
1627 POSTING_READ(reg);
1628 udelay(150); /* wait for warmup */
426115cf 1629 I915_WRITE(reg, dpll);
87442f73
DV
1630 POSTING_READ(reg);
1631 udelay(150); /* wait for warmup */
426115cf 1632 I915_WRITE(reg, dpll);
87442f73
DV
1633 POSTING_READ(reg);
1634 udelay(150); /* wait for warmup */
1635}
1636
d288f65f 1637static void chv_enable_pll(struct intel_crtc *crtc,
5cec258b 1638 const struct intel_crtc_state *pipe_config)
9d556c99
CML
1639{
1640 struct drm_device *dev = crtc->base.dev;
1641 struct drm_i915_private *dev_priv = dev->dev_private;
1642 int pipe = crtc->pipe;
1643 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9d556c99
CML
1644 u32 tmp;
1645
1646 assert_pipe_disabled(dev_priv, crtc->pipe);
1647
a580516d 1648 mutex_lock(&dev_priv->sb_lock);
9d556c99
CML
1649
1650 /* Enable back the 10bit clock to display controller */
1651 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1652 tmp |= DPIO_DCLKP_EN;
1653 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1654
54433e91
VS
1655 mutex_unlock(&dev_priv->sb_lock);
1656
9d556c99
CML
1657 /*
1658 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1659 */
1660 udelay(1);
1661
1662 /* Enable PLL */
d288f65f 1663 I915_WRITE(DPLL(pipe), pipe_config->dpll_hw_state.dpll);
9d556c99
CML
1664
1665 /* Check PLL is locked */
a11b0703 1666 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
9d556c99
CML
1667 DRM_ERROR("PLL %d failed to lock\n", pipe);
1668
a11b0703 1669 /* not sure when this should be written */
d288f65f 1670 I915_WRITE(DPLL_MD(pipe), pipe_config->dpll_hw_state.dpll_md);
a11b0703 1671 POSTING_READ(DPLL_MD(pipe));
9d556c99
CML
1672}
1673
1c4e0274
VS
1674static int intel_num_dvo_pipes(struct drm_device *dev)
1675{
1676 struct intel_crtc *crtc;
1677 int count = 0;
1678
1679 for_each_intel_crtc(dev, crtc)
3538b9df 1680 count += crtc->base.state->active &&
409ee761 1681 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO);
1c4e0274
VS
1682
1683 return count;
1684}
1685
66e3d5c0 1686static void i9xx_enable_pll(struct intel_crtc *crtc)
63d7bbe9 1687{
66e3d5c0
DV
1688 struct drm_device *dev = crtc->base.dev;
1689 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 1690 i915_reg_t reg = DPLL(crtc->pipe);
6e3c9717 1691 u32 dpll = crtc->config->dpll_hw_state.dpll;
63d7bbe9 1692
66e3d5c0 1693 assert_pipe_disabled(dev_priv, crtc->pipe);
58c6eaa2 1694
63d7bbe9 1695 /* No really, not for ILK+ */
3d13ef2e 1696 BUG_ON(INTEL_INFO(dev)->gen >= 5);
63d7bbe9
JB
1697
1698 /* PLL is protected by panel, make sure we can write it */
66e3d5c0
DV
1699 if (IS_MOBILE(dev) && !IS_I830(dev))
1700 assert_panel_unlocked(dev_priv, crtc->pipe);
63d7bbe9 1701
1c4e0274
VS
1702 /* Enable DVO 2x clock on both PLLs if necessary */
1703 if (IS_I830(dev) && intel_num_dvo_pipes(dev) > 0) {
1704 /*
1705 * It appears to be important that we don't enable this
1706 * for the current pipe before otherwise configuring the
1707 * PLL. No idea how this should be handled if multiple
1708 * DVO outputs are enabled simultaneosly.
1709 */
1710 dpll |= DPLL_DVO_2X_MODE;
1711 I915_WRITE(DPLL(!crtc->pipe),
1712 I915_READ(DPLL(!crtc->pipe)) | DPLL_DVO_2X_MODE);
1713 }
66e3d5c0 1714
c2b63374
VS
1715 /*
1716 * Apparently we need to have VGA mode enabled prior to changing
1717 * the P1/P2 dividers. Otherwise the DPLL will keep using the old
1718 * dividers, even though the register value does change.
1719 */
1720 I915_WRITE(reg, 0);
1721
8e7a65aa
VS
1722 I915_WRITE(reg, dpll);
1723
66e3d5c0
DV
1724 /* Wait for the clocks to stabilize. */
1725 POSTING_READ(reg);
1726 udelay(150);
1727
1728 if (INTEL_INFO(dev)->gen >= 4) {
1729 I915_WRITE(DPLL_MD(crtc->pipe),
6e3c9717 1730 crtc->config->dpll_hw_state.dpll_md);
66e3d5c0
DV
1731 } else {
1732 /* The pixel multiplier can only be updated once the
1733 * DPLL is enabled and the clocks are stable.
1734 *
1735 * So write it again.
1736 */
1737 I915_WRITE(reg, dpll);
1738 }
63d7bbe9
JB
1739
1740 /* We do this three times for luck */
66e3d5c0 1741 I915_WRITE(reg, dpll);
63d7bbe9
JB
1742 POSTING_READ(reg);
1743 udelay(150); /* wait for warmup */
66e3d5c0 1744 I915_WRITE(reg, dpll);
63d7bbe9
JB
1745 POSTING_READ(reg);
1746 udelay(150); /* wait for warmup */
66e3d5c0 1747 I915_WRITE(reg, dpll);
63d7bbe9
JB
1748 POSTING_READ(reg);
1749 udelay(150); /* wait for warmup */
1750}
1751
1752/**
50b44a44 1753 * i9xx_disable_pll - disable a PLL
63d7bbe9
JB
1754 * @dev_priv: i915 private structure
1755 * @pipe: pipe PLL to disable
1756 *
1757 * Disable the PLL for @pipe, making sure the pipe is off first.
1758 *
1759 * Note! This is for pre-ILK only.
1760 */
1c4e0274 1761static void i9xx_disable_pll(struct intel_crtc *crtc)
63d7bbe9 1762{
1c4e0274
VS
1763 struct drm_device *dev = crtc->base.dev;
1764 struct drm_i915_private *dev_priv = dev->dev_private;
1765 enum pipe pipe = crtc->pipe;
1766
1767 /* Disable DVO 2x clock on both PLLs if necessary */
1768 if (IS_I830(dev) &&
409ee761 1769 intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO) &&
3538b9df 1770 !intel_num_dvo_pipes(dev)) {
1c4e0274
VS
1771 I915_WRITE(DPLL(PIPE_B),
1772 I915_READ(DPLL(PIPE_B)) & ~DPLL_DVO_2X_MODE);
1773 I915_WRITE(DPLL(PIPE_A),
1774 I915_READ(DPLL(PIPE_A)) & ~DPLL_DVO_2X_MODE);
1775 }
1776
b6b5d049
VS
1777 /* Don't disable pipe or pipe PLLs if needed */
1778 if ((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
1779 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
63d7bbe9
JB
1780 return;
1781
1782 /* Make sure the pipe isn't still relying on us */
1783 assert_pipe_disabled(dev_priv, pipe);
1784
b8afb911 1785 I915_WRITE(DPLL(pipe), DPLL_VGA_MODE_DIS);
50b44a44 1786 POSTING_READ(DPLL(pipe));
63d7bbe9
JB
1787}
1788
f6071166
JB
1789static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1790{
b8afb911 1791 u32 val;
f6071166
JB
1792
1793 /* Make sure the pipe isn't still relying on us */
1794 assert_pipe_disabled(dev_priv, pipe);
1795
e5cbfbfb
ID
1796 /*
1797 * Leave integrated clock source and reference clock enabled for pipe B.
1798 * The latter is needed for VGA hotplug / manual detection.
1799 */
b8afb911 1800 val = DPLL_VGA_MODE_DIS;
f6071166 1801 if (pipe == PIPE_B)
60bfe44f 1802 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REF_CLK_ENABLE_VLV;
f6071166
JB
1803 I915_WRITE(DPLL(pipe), val);
1804 POSTING_READ(DPLL(pipe));
076ed3b2
CML
1805
1806}
1807
1808static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1809{
d752048d 1810 enum dpio_channel port = vlv_pipe_to_channel(pipe);
076ed3b2
CML
1811 u32 val;
1812
a11b0703
VS
1813 /* Make sure the pipe isn't still relying on us */
1814 assert_pipe_disabled(dev_priv, pipe);
076ed3b2 1815
a11b0703 1816 /* Set PLL en = 0 */
60bfe44f
VS
1817 val = DPLL_SSC_REF_CLK_CHV |
1818 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS;
a11b0703
VS
1819 if (pipe != PIPE_A)
1820 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1821 I915_WRITE(DPLL(pipe), val);
1822 POSTING_READ(DPLL(pipe));
d752048d 1823
a580516d 1824 mutex_lock(&dev_priv->sb_lock);
d752048d
VS
1825
1826 /* Disable 10bit clock to display controller */
1827 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1828 val &= ~DPIO_DCLKP_EN;
1829 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1830
a580516d 1831 mutex_unlock(&dev_priv->sb_lock);
f6071166
JB
1832}
1833
e4607fcf 1834void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
9b6de0a1
VS
1835 struct intel_digital_port *dport,
1836 unsigned int expected_mask)
89b667f8
JB
1837{
1838 u32 port_mask;
f0f59a00 1839 i915_reg_t dpll_reg;
89b667f8 1840
e4607fcf
CML
1841 switch (dport->port) {
1842 case PORT_B:
89b667f8 1843 port_mask = DPLL_PORTB_READY_MASK;
00fc31b7 1844 dpll_reg = DPLL(0);
e4607fcf
CML
1845 break;
1846 case PORT_C:
89b667f8 1847 port_mask = DPLL_PORTC_READY_MASK;
00fc31b7 1848 dpll_reg = DPLL(0);
9b6de0a1 1849 expected_mask <<= 4;
00fc31b7
CML
1850 break;
1851 case PORT_D:
1852 port_mask = DPLL_PORTD_READY_MASK;
1853 dpll_reg = DPIO_PHY_STATUS;
e4607fcf
CML
1854 break;
1855 default:
1856 BUG();
1857 }
89b667f8 1858
9b6de0a1
VS
1859 if (wait_for((I915_READ(dpll_reg) & port_mask) == expected_mask, 1000))
1860 WARN(1, "timed out waiting for port %c ready: got 0x%x, expected 0x%x\n",
1861 port_name(dport->port), I915_READ(dpll_reg) & port_mask, expected_mask);
89b667f8
JB
1862}
1863
b14b1055
DV
1864static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1865{
1866 struct drm_device *dev = crtc->base.dev;
1867 struct drm_i915_private *dev_priv = dev->dev_private;
1868 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1869
be19f0ff
CW
1870 if (WARN_ON(pll == NULL))
1871 return;
1872
3e369b76 1873 WARN_ON(!pll->config.crtc_mask);
b14b1055
DV
1874 if (pll->active == 0) {
1875 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1876 WARN_ON(pll->on);
1877 assert_shared_dpll_disabled(dev_priv, pll);
1878
1879 pll->mode_set(dev_priv, pll);
1880 }
1881}
1882
92f2584a 1883/**
85b3894f 1884 * intel_enable_shared_dpll - enable PCH PLL
92f2584a
JB
1885 * @dev_priv: i915 private structure
1886 * @pipe: pipe PLL to enable
1887 *
1888 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1889 * drives the transcoder clock.
1890 */
85b3894f 1891static void intel_enable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1892{
3d13ef2e
DL
1893 struct drm_device *dev = crtc->base.dev;
1894 struct drm_i915_private *dev_priv = dev->dev_private;
e2b78267 1895 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
92f2584a 1896
87a875bb 1897 if (WARN_ON(pll == NULL))
48da64a8
CW
1898 return;
1899
3e369b76 1900 if (WARN_ON(pll->config.crtc_mask == 0))
48da64a8 1901 return;
ee7b9f93 1902
74dd6928 1903 DRM_DEBUG_KMS("enable %s (active %d, on? %d) for crtc %d\n",
46edb027 1904 pll->name, pll->active, pll->on,
e2b78267 1905 crtc->base.base.id);
92f2584a 1906
cdbd2316
DV
1907 if (pll->active++) {
1908 WARN_ON(!pll->on);
e9d6944e 1909 assert_shared_dpll_enabled(dev_priv, pll);
ee7b9f93
JB
1910 return;
1911 }
f4a091c7 1912 WARN_ON(pll->on);
ee7b9f93 1913
bd2bb1b9
PZ
1914 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
1915
46edb027 1916 DRM_DEBUG_KMS("enabling %s\n", pll->name);
e7b903d2 1917 pll->enable(dev_priv, pll);
ee7b9f93 1918 pll->on = true;
92f2584a
JB
1919}
1920
f6daaec2 1921static void intel_disable_shared_dpll(struct intel_crtc *crtc)
92f2584a 1922{
3d13ef2e
DL
1923 struct drm_device *dev = crtc->base.dev;
1924 struct drm_i915_private *dev_priv = dev->dev_private;
e2b78267 1925 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
4c609cb8 1926
92f2584a 1927 /* PCH only available on ILK+ */
80aa9312
JB
1928 if (INTEL_INFO(dev)->gen < 5)
1929 return;
1930
eddfcbcd
ML
1931 if (pll == NULL)
1932 return;
92f2584a 1933
eddfcbcd 1934 if (WARN_ON(!(pll->config.crtc_mask & (1 << drm_crtc_index(&crtc->base)))))
48da64a8 1935 return;
7a419866 1936
46edb027
DV
1937 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1938 pll->name, pll->active, pll->on,
e2b78267 1939 crtc->base.base.id);
7a419866 1940
48da64a8 1941 if (WARN_ON(pll->active == 0)) {
e9d6944e 1942 assert_shared_dpll_disabled(dev_priv, pll);
48da64a8
CW
1943 return;
1944 }
1945
e9d6944e 1946 assert_shared_dpll_enabled(dev_priv, pll);
f4a091c7 1947 WARN_ON(!pll->on);
cdbd2316 1948 if (--pll->active)
7a419866 1949 return;
ee7b9f93 1950
46edb027 1951 DRM_DEBUG_KMS("disabling %s\n", pll->name);
e7b903d2 1952 pll->disable(dev_priv, pll);
ee7b9f93 1953 pll->on = false;
bd2bb1b9
PZ
1954
1955 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
92f2584a
JB
1956}
1957
b8a4f404
PZ
1958static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1959 enum pipe pipe)
040484af 1960{
23670b32 1961 struct drm_device *dev = dev_priv->dev;
7c26e5c6 1962 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
e2b78267 1963 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
f0f59a00
VS
1964 i915_reg_t reg;
1965 uint32_t val, pipeconf_val;
040484af
JB
1966
1967 /* PCH only available on ILK+ */
55522f37 1968 BUG_ON(!HAS_PCH_SPLIT(dev));
040484af
JB
1969
1970 /* Make sure PCH DPLL is enabled */
e72f9fbf 1971 assert_shared_dpll_enabled(dev_priv,
e9d6944e 1972 intel_crtc_to_shared_dpll(intel_crtc));
040484af
JB
1973
1974 /* FDI must be feeding us bits for PCH ports */
1975 assert_fdi_tx_enabled(dev_priv, pipe);
1976 assert_fdi_rx_enabled(dev_priv, pipe);
1977
23670b32
DV
1978 if (HAS_PCH_CPT(dev)) {
1979 /* Workaround: Set the timing override bit before enabling the
1980 * pch transcoder. */
1981 reg = TRANS_CHICKEN2(pipe);
1982 val = I915_READ(reg);
1983 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1984 I915_WRITE(reg, val);
59c859d6 1985 }
23670b32 1986
ab9412ba 1987 reg = PCH_TRANSCONF(pipe);
040484af 1988 val = I915_READ(reg);
5f7f726d 1989 pipeconf_val = I915_READ(PIPECONF(pipe));
e9bcff5c
JB
1990
1991 if (HAS_PCH_IBX(dev_priv->dev)) {
1992 /*
c5de7c6f
VS
1993 * Make the BPC in transcoder be consistent with
1994 * that in pipeconf reg. For HDMI we must use 8bpc
1995 * here for both 8bpc and 12bpc.
e9bcff5c 1996 */
dfd07d72 1997 val &= ~PIPECONF_BPC_MASK;
c5de7c6f
VS
1998 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_HDMI))
1999 val |= PIPECONF_8BPC;
2000 else
2001 val |= pipeconf_val & PIPECONF_BPC_MASK;
e9bcff5c 2002 }
5f7f726d
PZ
2003
2004 val &= ~TRANS_INTERLACE_MASK;
2005 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
7c26e5c6 2006 if (HAS_PCH_IBX(dev_priv->dev) &&
409ee761 2007 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
7c26e5c6
PZ
2008 val |= TRANS_LEGACY_INTERLACED_ILK;
2009 else
2010 val |= TRANS_INTERLACED;
5f7f726d
PZ
2011 else
2012 val |= TRANS_PROGRESSIVE;
2013
040484af
JB
2014 I915_WRITE(reg, val | TRANS_ENABLE);
2015 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
4bb6f1f3 2016 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
040484af
JB
2017}
2018
8fb033d7 2019static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
937bb610 2020 enum transcoder cpu_transcoder)
040484af 2021{
8fb033d7 2022 u32 val, pipeconf_val;
8fb033d7
PZ
2023
2024 /* PCH only available on ILK+ */
55522f37 2025 BUG_ON(!HAS_PCH_SPLIT(dev_priv->dev));
8fb033d7 2026
8fb033d7 2027 /* FDI must be feeding us bits for PCH ports */
1a240d4d 2028 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
937bb610 2029 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
8fb033d7 2030
223a6fdf 2031 /* Workaround: set timing override bit. */
36c0d0cf 2032 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
23670b32 2033 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
36c0d0cf 2034 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
223a6fdf 2035
25f3ef11 2036 val = TRANS_ENABLE;
937bb610 2037 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
8fb033d7 2038
9a76b1c6
PZ
2039 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
2040 PIPECONF_INTERLACED_ILK)
a35f2679 2041 val |= TRANS_INTERLACED;
8fb033d7
PZ
2042 else
2043 val |= TRANS_PROGRESSIVE;
2044
ab9412ba
DV
2045 I915_WRITE(LPT_TRANSCONF, val);
2046 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
937bb610 2047 DRM_ERROR("Failed to enable PCH transcoder\n");
8fb033d7
PZ
2048}
2049
b8a4f404
PZ
2050static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
2051 enum pipe pipe)
040484af 2052{
23670b32 2053 struct drm_device *dev = dev_priv->dev;
f0f59a00
VS
2054 i915_reg_t reg;
2055 uint32_t val;
040484af
JB
2056
2057 /* FDI relies on the transcoder */
2058 assert_fdi_tx_disabled(dev_priv, pipe);
2059 assert_fdi_rx_disabled(dev_priv, pipe);
2060
291906f1
JB
2061 /* Ports must be off as well */
2062 assert_pch_ports_disabled(dev_priv, pipe);
2063
ab9412ba 2064 reg = PCH_TRANSCONF(pipe);
040484af
JB
2065 val = I915_READ(reg);
2066 val &= ~TRANS_ENABLE;
2067 I915_WRITE(reg, val);
2068 /* wait for PCH transcoder off, transcoder state */
2069 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
4bb6f1f3 2070 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
23670b32 2071
c465613b 2072 if (HAS_PCH_CPT(dev)) {
23670b32
DV
2073 /* Workaround: Clear the timing override chicken bit again. */
2074 reg = TRANS_CHICKEN2(pipe);
2075 val = I915_READ(reg);
2076 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
2077 I915_WRITE(reg, val);
2078 }
040484af
JB
2079}
2080
ab4d966c 2081static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
8fb033d7 2082{
8fb033d7
PZ
2083 u32 val;
2084
ab9412ba 2085 val = I915_READ(LPT_TRANSCONF);
8fb033d7 2086 val &= ~TRANS_ENABLE;
ab9412ba 2087 I915_WRITE(LPT_TRANSCONF, val);
8fb033d7 2088 /* wait for PCH transcoder off, transcoder state */
ab9412ba 2089 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
8a52fd9f 2090 DRM_ERROR("Failed to disable PCH transcoder\n");
223a6fdf
PZ
2091
2092 /* Workaround: clear timing override bit. */
36c0d0cf 2093 val = I915_READ(TRANS_CHICKEN2(PIPE_A));
23670b32 2094 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
36c0d0cf 2095 I915_WRITE(TRANS_CHICKEN2(PIPE_A), val);
040484af
JB
2096}
2097
b24e7179 2098/**
309cfea8 2099 * intel_enable_pipe - enable a pipe, asserting requirements
0372264a 2100 * @crtc: crtc responsible for the pipe
b24e7179 2101 *
0372264a 2102 * Enable @crtc's pipe, making sure that various hardware specific requirements
b24e7179 2103 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
b24e7179 2104 */
e1fdc473 2105static void intel_enable_pipe(struct intel_crtc *crtc)
b24e7179 2106{
0372264a
PZ
2107 struct drm_device *dev = crtc->base.dev;
2108 struct drm_i915_private *dev_priv = dev->dev_private;
2109 enum pipe pipe = crtc->pipe;
1a70a728 2110 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
1a240d4d 2111 enum pipe pch_transcoder;
f0f59a00 2112 i915_reg_t reg;
b24e7179
JB
2113 u32 val;
2114
9e2ee2dd
VS
2115 DRM_DEBUG_KMS("enabling pipe %c\n", pipe_name(pipe));
2116
58c6eaa2 2117 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 2118 assert_cursor_disabled(dev_priv, pipe);
58c6eaa2
DV
2119 assert_sprites_disabled(dev_priv, pipe);
2120
681e5811 2121 if (HAS_PCH_LPT(dev_priv->dev))
cc391bbb
PZ
2122 pch_transcoder = TRANSCODER_A;
2123 else
2124 pch_transcoder = pipe;
2125
b24e7179
JB
2126 /*
2127 * A pipe without a PLL won't actually be able to drive bits from
2128 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
2129 * need the check.
2130 */
50360403 2131 if (HAS_GMCH_DISPLAY(dev_priv->dev))
a65347ba 2132 if (crtc->config->has_dsi_encoder)
23538ef1
JN
2133 assert_dsi_pll_enabled(dev_priv);
2134 else
2135 assert_pll_enabled(dev_priv, pipe);
040484af 2136 else {
6e3c9717 2137 if (crtc->config->has_pch_encoder) {
040484af 2138 /* if driving the PCH, we need FDI enabled */
cc391bbb 2139 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
1a240d4d
DV
2140 assert_fdi_tx_pll_enabled(dev_priv,
2141 (enum pipe) cpu_transcoder);
040484af
JB
2142 }
2143 /* FIXME: assert CPU port conditions for SNB+ */
2144 }
b24e7179 2145
702e7a56 2146 reg = PIPECONF(cpu_transcoder);
b24e7179 2147 val = I915_READ(reg);
7ad25d48 2148 if (val & PIPECONF_ENABLE) {
b6b5d049
VS
2149 WARN_ON(!((pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
2150 (pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE)));
00d70b15 2151 return;
7ad25d48 2152 }
00d70b15
CW
2153
2154 I915_WRITE(reg, val | PIPECONF_ENABLE);
851855d8 2155 POSTING_READ(reg);
b24e7179
JB
2156}
2157
2158/**
309cfea8 2159 * intel_disable_pipe - disable a pipe, asserting requirements
575f7ab7 2160 * @crtc: crtc whose pipes is to be disabled
b24e7179 2161 *
575f7ab7
VS
2162 * Disable the pipe of @crtc, making sure that various hardware
2163 * specific requirements are met, if applicable, e.g. plane
2164 * disabled, panel fitter off, etc.
b24e7179
JB
2165 *
2166 * Will wait until the pipe has shut down before returning.
2167 */
575f7ab7 2168static void intel_disable_pipe(struct intel_crtc *crtc)
b24e7179 2169{
575f7ab7 2170 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
6e3c9717 2171 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
575f7ab7 2172 enum pipe pipe = crtc->pipe;
f0f59a00 2173 i915_reg_t reg;
b24e7179
JB
2174 u32 val;
2175
9e2ee2dd
VS
2176 DRM_DEBUG_KMS("disabling pipe %c\n", pipe_name(pipe));
2177
b24e7179
JB
2178 /*
2179 * Make sure planes won't keep trying to pump pixels to us,
2180 * or we might hang the display.
2181 */
2182 assert_planes_disabled(dev_priv, pipe);
93ce0ba6 2183 assert_cursor_disabled(dev_priv, pipe);
19332d7a 2184 assert_sprites_disabled(dev_priv, pipe);
b24e7179 2185
702e7a56 2186 reg = PIPECONF(cpu_transcoder);
b24e7179 2187 val = I915_READ(reg);
00d70b15
CW
2188 if ((val & PIPECONF_ENABLE) == 0)
2189 return;
2190
67adc644
VS
2191 /*
2192 * Double wide has implications for planes
2193 * so best keep it disabled when not needed.
2194 */
6e3c9717 2195 if (crtc->config->double_wide)
67adc644
VS
2196 val &= ~PIPECONF_DOUBLE_WIDE;
2197
2198 /* Don't disable pipe or pipe PLLs if needed */
b6b5d049
VS
2199 if (!(pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) &&
2200 !(pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
67adc644
VS
2201 val &= ~PIPECONF_ENABLE;
2202
2203 I915_WRITE(reg, val);
2204 if ((val & PIPECONF_ENABLE) == 0)
2205 intel_wait_for_pipe_off(crtc);
b24e7179
JB
2206}
2207
693db184
CW
2208static bool need_vtd_wa(struct drm_device *dev)
2209{
2210#ifdef CONFIG_INTEL_IOMMU
2211 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2212 return true;
2213#endif
2214 return false;
2215}
2216
50470bb0 2217unsigned int
6761dd31 2218intel_tile_height(struct drm_device *dev, uint32_t pixel_format,
fe47ea0c 2219 uint64_t fb_format_modifier, unsigned int plane)
a57ce0b2 2220{
6761dd31
TU
2221 unsigned int tile_height;
2222 uint32_t pixel_bytes;
a57ce0b2 2223
b5d0e9bf
DL
2224 switch (fb_format_modifier) {
2225 case DRM_FORMAT_MOD_NONE:
2226 tile_height = 1;
2227 break;
2228 case I915_FORMAT_MOD_X_TILED:
2229 tile_height = IS_GEN2(dev) ? 16 : 8;
2230 break;
2231 case I915_FORMAT_MOD_Y_TILED:
2232 tile_height = 32;
2233 break;
2234 case I915_FORMAT_MOD_Yf_TILED:
fe47ea0c 2235 pixel_bytes = drm_format_plane_cpp(pixel_format, plane);
6761dd31 2236 switch (pixel_bytes) {
b5d0e9bf 2237 default:
6761dd31 2238 case 1:
b5d0e9bf
DL
2239 tile_height = 64;
2240 break;
6761dd31
TU
2241 case 2:
2242 case 4:
b5d0e9bf
DL
2243 tile_height = 32;
2244 break;
6761dd31 2245 case 8:
b5d0e9bf
DL
2246 tile_height = 16;
2247 break;
6761dd31 2248 case 16:
b5d0e9bf
DL
2249 WARN_ONCE(1,
2250 "128-bit pixels are not supported for display!");
2251 tile_height = 16;
2252 break;
2253 }
2254 break;
2255 default:
2256 MISSING_CASE(fb_format_modifier);
2257 tile_height = 1;
2258 break;
2259 }
091df6cb 2260
6761dd31
TU
2261 return tile_height;
2262}
2263
2264unsigned int
2265intel_fb_align_height(struct drm_device *dev, unsigned int height,
2266 uint32_t pixel_format, uint64_t fb_format_modifier)
2267{
2268 return ALIGN(height, intel_tile_height(dev, pixel_format,
fe47ea0c 2269 fb_format_modifier, 0));
a57ce0b2
JB
2270}
2271
75c82a53 2272static void
f64b98cd
TU
2273intel_fill_fb_ggtt_view(struct i915_ggtt_view *view, struct drm_framebuffer *fb,
2274 const struct drm_plane_state *plane_state)
2275{
a6d09186 2276 struct intel_rotation_info *info = &view->params.rotation_info;
84fe03f7 2277 unsigned int tile_height, tile_pitch;
50470bb0 2278
f64b98cd
TU
2279 *view = i915_ggtt_view_normal;
2280
50470bb0 2281 if (!plane_state)
75c82a53 2282 return;
50470bb0 2283
121920fa 2284 if (!intel_rotation_90_or_270(plane_state->rotation))
75c82a53 2285 return;
50470bb0 2286
9abc4648 2287 *view = i915_ggtt_view_rotated;
50470bb0
TU
2288
2289 info->height = fb->height;
2290 info->pixel_format = fb->pixel_format;
2291 info->pitch = fb->pitches[0];
89e3e142 2292 info->uv_offset = fb->offsets[1];
50470bb0
TU
2293 info->fb_modifier = fb->modifier[0];
2294
84fe03f7 2295 tile_height = intel_tile_height(fb->dev, fb->pixel_format,
fe47ea0c 2296 fb->modifier[0], 0);
84fe03f7
TU
2297 tile_pitch = PAGE_SIZE / tile_height;
2298 info->width_pages = DIV_ROUND_UP(fb->pitches[0], tile_pitch);
2299 info->height_pages = DIV_ROUND_UP(fb->height, tile_height);
2300 info->size = info->width_pages * info->height_pages * PAGE_SIZE;
2301
89e3e142
TU
2302 if (info->pixel_format == DRM_FORMAT_NV12) {
2303 tile_height = intel_tile_height(fb->dev, fb->pixel_format,
2304 fb->modifier[0], 1);
2305 tile_pitch = PAGE_SIZE / tile_height;
2306 info->width_pages_uv = DIV_ROUND_UP(fb->pitches[0], tile_pitch);
2307 info->height_pages_uv = DIV_ROUND_UP(fb->height / 2,
2308 tile_height);
2309 info->size_uv = info->width_pages_uv * info->height_pages_uv *
2310 PAGE_SIZE;
2311 }
f64b98cd
TU
2312}
2313
4e9a86b6
VS
2314static unsigned int intel_linear_alignment(struct drm_i915_private *dev_priv)
2315{
2316 if (INTEL_INFO(dev_priv)->gen >= 9)
2317 return 256 * 1024;
985b8bb4 2318 else if (IS_BROADWATER(dev_priv) || IS_CRESTLINE(dev_priv) ||
666a4537 2319 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
4e9a86b6
VS
2320 return 128 * 1024;
2321 else if (INTEL_INFO(dev_priv)->gen >= 4)
2322 return 4 * 1024;
2323 else
44c5905e 2324 return 0;
4e9a86b6
VS
2325}
2326
127bd2ac 2327int
850c4cdc
TU
2328intel_pin_and_fence_fb_obj(struct drm_plane *plane,
2329 struct drm_framebuffer *fb,
7580d774 2330 const struct drm_plane_state *plane_state)
6b95a207 2331{
850c4cdc 2332 struct drm_device *dev = fb->dev;
ce453d81 2333 struct drm_i915_private *dev_priv = dev->dev_private;
850c4cdc 2334 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
f64b98cd 2335 struct i915_ggtt_view view;
6b95a207
KH
2336 u32 alignment;
2337 int ret;
2338
ebcdd39e
MR
2339 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
2340
7b911adc
TU
2341 switch (fb->modifier[0]) {
2342 case DRM_FORMAT_MOD_NONE:
4e9a86b6 2343 alignment = intel_linear_alignment(dev_priv);
6b95a207 2344 break;
7b911adc 2345 case I915_FORMAT_MOD_X_TILED:
1fada4cc
DL
2346 if (INTEL_INFO(dev)->gen >= 9)
2347 alignment = 256 * 1024;
2348 else {
2349 /* pin() will align the object as required by fence */
2350 alignment = 0;
2351 }
6b95a207 2352 break;
7b911adc 2353 case I915_FORMAT_MOD_Y_TILED:
1327b9a1
DL
2354 case I915_FORMAT_MOD_Yf_TILED:
2355 if (WARN_ONCE(INTEL_INFO(dev)->gen < 9,
2356 "Y tiling bo slipped through, driver bug!\n"))
2357 return -EINVAL;
2358 alignment = 1 * 1024 * 1024;
2359 break;
6b95a207 2360 default:
7b911adc
TU
2361 MISSING_CASE(fb->modifier[0]);
2362 return -EINVAL;
6b95a207
KH
2363 }
2364
75c82a53 2365 intel_fill_fb_ggtt_view(&view, fb, plane_state);
f64b98cd 2366
693db184
CW
2367 /* Note that the w/a also requires 64 PTE of padding following the
2368 * bo. We currently fill all unused PTE with the shadow page and so
2369 * we should always have valid PTE following the scanout preventing
2370 * the VT-d warning.
2371 */
2372 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2373 alignment = 256 * 1024;
2374
d6dd6843
PZ
2375 /*
2376 * Global gtt pte registers are special registers which actually forward
2377 * writes to a chunk of system memory. Which means that there is no risk
2378 * that the register values disappear as soon as we call
2379 * intel_runtime_pm_put(), so it is correct to wrap only the
2380 * pin/unpin/fence and not more.
2381 */
2382 intel_runtime_pm_get(dev_priv);
2383
7580d774
ML
2384 ret = i915_gem_object_pin_to_display_plane(obj, alignment,
2385 &view);
48b956c5 2386 if (ret)
b26a6b35 2387 goto err_pm;
6b95a207
KH
2388
2389 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2390 * fence, whereas 965+ only requires a fence if using
2391 * framebuffer compression. For simplicity, we always install
2392 * a fence as the cost is not that onerous.
2393 */
9807216f
VK
2394 if (view.type == I915_GGTT_VIEW_NORMAL) {
2395 ret = i915_gem_object_get_fence(obj);
2396 if (ret == -EDEADLK) {
2397 /*
2398 * -EDEADLK means there are no free fences
2399 * no pending flips.
2400 *
2401 * This is propagated to atomic, but it uses
2402 * -EDEADLK to force a locking recovery, so
2403 * change the returned error to -EBUSY.
2404 */
2405 ret = -EBUSY;
2406 goto err_unpin;
2407 } else if (ret)
2408 goto err_unpin;
1690e1eb 2409
9807216f
VK
2410 i915_gem_object_pin_fence(obj);
2411 }
6b95a207 2412
d6dd6843 2413 intel_runtime_pm_put(dev_priv);
6b95a207 2414 return 0;
48b956c5
CW
2415
2416err_unpin:
f64b98cd 2417 i915_gem_object_unpin_from_display_plane(obj, &view);
b26a6b35 2418err_pm:
d6dd6843 2419 intel_runtime_pm_put(dev_priv);
48b956c5 2420 return ret;
6b95a207
KH
2421}
2422
82bc3b2d
TU
2423static void intel_unpin_fb_obj(struct drm_framebuffer *fb,
2424 const struct drm_plane_state *plane_state)
1690e1eb 2425{
82bc3b2d 2426 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
f64b98cd 2427 struct i915_ggtt_view view;
82bc3b2d 2428
ebcdd39e
MR
2429 WARN_ON(!mutex_is_locked(&obj->base.dev->struct_mutex));
2430
75c82a53 2431 intel_fill_fb_ggtt_view(&view, fb, plane_state);
f64b98cd 2432
9807216f
VK
2433 if (view.type == I915_GGTT_VIEW_NORMAL)
2434 i915_gem_object_unpin_fence(obj);
2435
f64b98cd 2436 i915_gem_object_unpin_from_display_plane(obj, &view);
1690e1eb
CW
2437}
2438
c2c75131
DV
2439/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2440 * is assumed to be a power-of-two. */
4e9a86b6
VS
2441unsigned long intel_gen4_compute_page_offset(struct drm_i915_private *dev_priv,
2442 int *x, int *y,
bc752862
CW
2443 unsigned int tiling_mode,
2444 unsigned int cpp,
2445 unsigned int pitch)
c2c75131 2446{
bc752862
CW
2447 if (tiling_mode != I915_TILING_NONE) {
2448 unsigned int tile_rows, tiles;
c2c75131 2449
bc752862
CW
2450 tile_rows = *y / 8;
2451 *y %= 8;
c2c75131 2452
bc752862
CW
2453 tiles = *x / (512/cpp);
2454 *x %= 512/cpp;
2455
2456 return tile_rows * pitch * 8 + tiles * 4096;
2457 } else {
4e9a86b6 2458 unsigned int alignment = intel_linear_alignment(dev_priv) - 1;
bc752862
CW
2459 unsigned int offset;
2460
2461 offset = *y * pitch + *x * cpp;
4e9a86b6
VS
2462 *y = (offset & alignment) / pitch;
2463 *x = ((offset & alignment) - *y * pitch) / cpp;
2464 return offset & ~alignment;
bc752862 2465 }
c2c75131
DV
2466}
2467
b35d63fa 2468static int i9xx_format_to_fourcc(int format)
46f297fb
JB
2469{
2470 switch (format) {
2471 case DISPPLANE_8BPP:
2472 return DRM_FORMAT_C8;
2473 case DISPPLANE_BGRX555:
2474 return DRM_FORMAT_XRGB1555;
2475 case DISPPLANE_BGRX565:
2476 return DRM_FORMAT_RGB565;
2477 default:
2478 case DISPPLANE_BGRX888:
2479 return DRM_FORMAT_XRGB8888;
2480 case DISPPLANE_RGBX888:
2481 return DRM_FORMAT_XBGR8888;
2482 case DISPPLANE_BGRX101010:
2483 return DRM_FORMAT_XRGB2101010;
2484 case DISPPLANE_RGBX101010:
2485 return DRM_FORMAT_XBGR2101010;
2486 }
2487}
2488
bc8d7dff
DL
2489static int skl_format_to_fourcc(int format, bool rgb_order, bool alpha)
2490{
2491 switch (format) {
2492 case PLANE_CTL_FORMAT_RGB_565:
2493 return DRM_FORMAT_RGB565;
2494 default:
2495 case PLANE_CTL_FORMAT_XRGB_8888:
2496 if (rgb_order) {
2497 if (alpha)
2498 return DRM_FORMAT_ABGR8888;
2499 else
2500 return DRM_FORMAT_XBGR8888;
2501 } else {
2502 if (alpha)
2503 return DRM_FORMAT_ARGB8888;
2504 else
2505 return DRM_FORMAT_XRGB8888;
2506 }
2507 case PLANE_CTL_FORMAT_XRGB_2101010:
2508 if (rgb_order)
2509 return DRM_FORMAT_XBGR2101010;
2510 else
2511 return DRM_FORMAT_XRGB2101010;
2512 }
2513}
2514
5724dbd1 2515static bool
f6936e29
DV
2516intel_alloc_initial_plane_obj(struct intel_crtc *crtc,
2517 struct intel_initial_plane_config *plane_config)
46f297fb
JB
2518{
2519 struct drm_device *dev = crtc->base.dev;
3badb49f 2520 struct drm_i915_private *dev_priv = to_i915(dev);
46f297fb
JB
2521 struct drm_i915_gem_object *obj = NULL;
2522 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2d14030b 2523 struct drm_framebuffer *fb = &plane_config->fb->base;
f37b5c2b
DV
2524 u32 base_aligned = round_down(plane_config->base, PAGE_SIZE);
2525 u32 size_aligned = round_up(plane_config->base + plane_config->size,
2526 PAGE_SIZE);
2527
2528 size_aligned -= base_aligned;
46f297fb 2529
ff2652ea
CW
2530 if (plane_config->size == 0)
2531 return false;
2532
3badb49f
PZ
2533 /* If the FB is too big, just don't use it since fbdev is not very
2534 * important and we should probably use that space with FBC or other
2535 * features. */
2536 if (size_aligned * 2 > dev_priv->gtt.stolen_usable_size)
2537 return false;
2538
f37b5c2b
DV
2539 obj = i915_gem_object_create_stolen_for_preallocated(dev,
2540 base_aligned,
2541 base_aligned,
2542 size_aligned);
46f297fb 2543 if (!obj)
484b41dd 2544 return false;
46f297fb 2545
49af449b
DL
2546 obj->tiling_mode = plane_config->tiling;
2547 if (obj->tiling_mode == I915_TILING_X)
6bf129df 2548 obj->stride = fb->pitches[0];
46f297fb 2549
6bf129df
DL
2550 mode_cmd.pixel_format = fb->pixel_format;
2551 mode_cmd.width = fb->width;
2552 mode_cmd.height = fb->height;
2553 mode_cmd.pitches[0] = fb->pitches[0];
18c5247e
DV
2554 mode_cmd.modifier[0] = fb->modifier[0];
2555 mode_cmd.flags = DRM_MODE_FB_MODIFIERS;
46f297fb
JB
2556
2557 mutex_lock(&dev->struct_mutex);
6bf129df 2558 if (intel_framebuffer_init(dev, to_intel_framebuffer(fb),
484b41dd 2559 &mode_cmd, obj)) {
46f297fb
JB
2560 DRM_DEBUG_KMS("intel fb init failed\n");
2561 goto out_unref_obj;
2562 }
46f297fb 2563 mutex_unlock(&dev->struct_mutex);
484b41dd 2564
f6936e29 2565 DRM_DEBUG_KMS("initial plane fb obj %p\n", obj);
484b41dd 2566 return true;
46f297fb
JB
2567
2568out_unref_obj:
2569 drm_gem_object_unreference(&obj->base);
2570 mutex_unlock(&dev->struct_mutex);
484b41dd
JB
2571 return false;
2572}
2573
afd65eb4
MR
2574/* Update plane->state->fb to match plane->fb after driver-internal updates */
2575static void
2576update_state_fb(struct drm_plane *plane)
2577{
2578 if (plane->fb == plane->state->fb)
2579 return;
2580
2581 if (plane->state->fb)
2582 drm_framebuffer_unreference(plane->state->fb);
2583 plane->state->fb = plane->fb;
2584 if (plane->state->fb)
2585 drm_framebuffer_reference(plane->state->fb);
2586}
2587
5724dbd1 2588static void
f6936e29
DV
2589intel_find_initial_plane_obj(struct intel_crtc *intel_crtc,
2590 struct intel_initial_plane_config *plane_config)
484b41dd
JB
2591{
2592 struct drm_device *dev = intel_crtc->base.dev;
d9ceb816 2593 struct drm_i915_private *dev_priv = dev->dev_private;
484b41dd
JB
2594 struct drm_crtc *c;
2595 struct intel_crtc *i;
2ff8fde1 2596 struct drm_i915_gem_object *obj;
88595ac9 2597 struct drm_plane *primary = intel_crtc->base.primary;
be5651f2 2598 struct drm_plane_state *plane_state = primary->state;
200757f5
MR
2599 struct drm_crtc_state *crtc_state = intel_crtc->base.state;
2600 struct intel_plane *intel_plane = to_intel_plane(primary);
88595ac9 2601 struct drm_framebuffer *fb;
484b41dd 2602
2d14030b 2603 if (!plane_config->fb)
484b41dd
JB
2604 return;
2605
f6936e29 2606 if (intel_alloc_initial_plane_obj(intel_crtc, plane_config)) {
88595ac9
DV
2607 fb = &plane_config->fb->base;
2608 goto valid_fb;
f55548b5 2609 }
484b41dd 2610
2d14030b 2611 kfree(plane_config->fb);
484b41dd
JB
2612
2613 /*
2614 * Failed to alloc the obj, check to see if we should share
2615 * an fb with another CRTC instead
2616 */
70e1e0ec 2617 for_each_crtc(dev, c) {
484b41dd
JB
2618 i = to_intel_crtc(c);
2619
2620 if (c == &intel_crtc->base)
2621 continue;
2622
2ff8fde1
MR
2623 if (!i->active)
2624 continue;
2625
88595ac9
DV
2626 fb = c->primary->fb;
2627 if (!fb)
484b41dd
JB
2628 continue;
2629
88595ac9 2630 obj = intel_fb_obj(fb);
2ff8fde1 2631 if (i915_gem_obj_ggtt_offset(obj) == plane_config->base) {
88595ac9
DV
2632 drm_framebuffer_reference(fb);
2633 goto valid_fb;
484b41dd
JB
2634 }
2635 }
88595ac9 2636
200757f5
MR
2637 /*
2638 * We've failed to reconstruct the BIOS FB. Current display state
2639 * indicates that the primary plane is visible, but has a NULL FB,
2640 * which will lead to problems later if we don't fix it up. The
2641 * simplest solution is to just disable the primary plane now and
2642 * pretend the BIOS never had it enabled.
2643 */
2644 to_intel_plane_state(plane_state)->visible = false;
2645 crtc_state->plane_mask &= ~(1 << drm_plane_index(primary));
2646 intel_pre_disable_primary(&intel_crtc->base);
2647 intel_plane->disable_plane(primary, &intel_crtc->base);
2648
88595ac9
DV
2649 return;
2650
2651valid_fb:
f44e2659
VS
2652 plane_state->src_x = 0;
2653 plane_state->src_y = 0;
be5651f2
ML
2654 plane_state->src_w = fb->width << 16;
2655 plane_state->src_h = fb->height << 16;
2656
f44e2659
VS
2657 plane_state->crtc_x = 0;
2658 plane_state->crtc_y = 0;
be5651f2
ML
2659 plane_state->crtc_w = fb->width;
2660 plane_state->crtc_h = fb->height;
2661
88595ac9
DV
2662 obj = intel_fb_obj(fb);
2663 if (obj->tiling_mode != I915_TILING_NONE)
2664 dev_priv->preserve_bios_swizzle = true;
2665
be5651f2
ML
2666 drm_framebuffer_reference(fb);
2667 primary->fb = primary->state->fb = fb;
36750f28 2668 primary->crtc = primary->state->crtc = &intel_crtc->base;
36750f28 2669 intel_crtc->base.state->plane_mask |= (1 << drm_plane_index(primary));
a9ff8714 2670 obj->frontbuffer_bits |= to_intel_plane(primary)->frontbuffer_bit;
46f297fb
JB
2671}
2672
29b9bde6
DV
2673static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2674 struct drm_framebuffer *fb,
2675 int x, int y)
81255565
JB
2676{
2677 struct drm_device *dev = crtc->dev;
2678 struct drm_i915_private *dev_priv = dev->dev_private;
2679 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
b70709a6
ML
2680 struct drm_plane *primary = crtc->primary;
2681 bool visible = to_intel_plane_state(primary->state)->visible;
c9ba6fad 2682 struct drm_i915_gem_object *obj;
81255565 2683 int plane = intel_crtc->plane;
e506a0c6 2684 unsigned long linear_offset;
81255565 2685 u32 dspcntr;
f0f59a00 2686 i915_reg_t reg = DSPCNTR(plane);
48404c1e 2687 int pixel_size;
f45651ba 2688
b70709a6 2689 if (!visible || !fb) {
fdd508a6
VS
2690 I915_WRITE(reg, 0);
2691 if (INTEL_INFO(dev)->gen >= 4)
2692 I915_WRITE(DSPSURF(plane), 0);
2693 else
2694 I915_WRITE(DSPADDR(plane), 0);
2695 POSTING_READ(reg);
2696 return;
2697 }
2698
c9ba6fad
VS
2699 obj = intel_fb_obj(fb);
2700 if (WARN_ON(obj == NULL))
2701 return;
2702
2703 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2704
f45651ba
VS
2705 dspcntr = DISPPLANE_GAMMA_ENABLE;
2706
fdd508a6 2707 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2708
2709 if (INTEL_INFO(dev)->gen < 4) {
2710 if (intel_crtc->pipe == PIPE_B)
2711 dspcntr |= DISPPLANE_SEL_PIPE_B;
2712
2713 /* pipesrc and dspsize control the size that is scaled from,
2714 * which should always be the user's requested size.
2715 */
2716 I915_WRITE(DSPSIZE(plane),
6e3c9717
ACO
2717 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2718 (intel_crtc->config->pipe_src_w - 1));
f45651ba 2719 I915_WRITE(DSPPOS(plane), 0);
c14b0485
VS
2720 } else if (IS_CHERRYVIEW(dev) && plane == PLANE_B) {
2721 I915_WRITE(PRIMSIZE(plane),
6e3c9717
ACO
2722 ((intel_crtc->config->pipe_src_h - 1) << 16) |
2723 (intel_crtc->config->pipe_src_w - 1));
c14b0485
VS
2724 I915_WRITE(PRIMPOS(plane), 0);
2725 I915_WRITE(PRIMCNSTALPHA(plane), 0);
f45651ba 2726 }
81255565 2727
57779d06
VS
2728 switch (fb->pixel_format) {
2729 case DRM_FORMAT_C8:
81255565
JB
2730 dspcntr |= DISPPLANE_8BPP;
2731 break;
57779d06 2732 case DRM_FORMAT_XRGB1555:
57779d06 2733 dspcntr |= DISPPLANE_BGRX555;
81255565 2734 break;
57779d06
VS
2735 case DRM_FORMAT_RGB565:
2736 dspcntr |= DISPPLANE_BGRX565;
2737 break;
2738 case DRM_FORMAT_XRGB8888:
57779d06
VS
2739 dspcntr |= DISPPLANE_BGRX888;
2740 break;
2741 case DRM_FORMAT_XBGR8888:
57779d06
VS
2742 dspcntr |= DISPPLANE_RGBX888;
2743 break;
2744 case DRM_FORMAT_XRGB2101010:
57779d06
VS
2745 dspcntr |= DISPPLANE_BGRX101010;
2746 break;
2747 case DRM_FORMAT_XBGR2101010:
57779d06 2748 dspcntr |= DISPPLANE_RGBX101010;
81255565
JB
2749 break;
2750 default:
baba133a 2751 BUG();
81255565 2752 }
57779d06 2753
f45651ba
VS
2754 if (INTEL_INFO(dev)->gen >= 4 &&
2755 obj->tiling_mode != I915_TILING_NONE)
2756 dspcntr |= DISPPLANE_TILED;
81255565 2757
de1aa629
VS
2758 if (IS_G4X(dev))
2759 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2760
b9897127 2761 linear_offset = y * fb->pitches[0] + x * pixel_size;
81255565 2762
c2c75131
DV
2763 if (INTEL_INFO(dev)->gen >= 4) {
2764 intel_crtc->dspaddr_offset =
4e9a86b6
VS
2765 intel_gen4_compute_page_offset(dev_priv,
2766 &x, &y, obj->tiling_mode,
b9897127 2767 pixel_size,
bc752862 2768 fb->pitches[0]);
c2c75131
DV
2769 linear_offset -= intel_crtc->dspaddr_offset;
2770 } else {
e506a0c6 2771 intel_crtc->dspaddr_offset = linear_offset;
c2c75131 2772 }
e506a0c6 2773
8e7d688b 2774 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2775 dspcntr |= DISPPLANE_ROTATE_180;
2776
6e3c9717
ACO
2777 x += (intel_crtc->config->pipe_src_w - 1);
2778 y += (intel_crtc->config->pipe_src_h - 1);
48404c1e
SJ
2779
2780 /* Finding the last pixel of the last line of the display
2781 data and adding to linear_offset*/
2782 linear_offset +=
6e3c9717
ACO
2783 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2784 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
48404c1e
SJ
2785 }
2786
2db3366b
PZ
2787 intel_crtc->adjusted_x = x;
2788 intel_crtc->adjusted_y = y;
2789
48404c1e
SJ
2790 I915_WRITE(reg, dspcntr);
2791
01f2c773 2792 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
a6c45cf0 2793 if (INTEL_INFO(dev)->gen >= 4) {
85ba7b7d
DV
2794 I915_WRITE(DSPSURF(plane),
2795 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
5eddb70b 2796 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
e506a0c6 2797 I915_WRITE(DSPLINOFF(plane), linear_offset);
5eddb70b 2798 } else
f343c5f6 2799 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
5eddb70b 2800 POSTING_READ(reg);
17638cd6
JB
2801}
2802
29b9bde6
DV
2803static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2804 struct drm_framebuffer *fb,
2805 int x, int y)
17638cd6
JB
2806{
2807 struct drm_device *dev = crtc->dev;
2808 struct drm_i915_private *dev_priv = dev->dev_private;
2809 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
b70709a6
ML
2810 struct drm_plane *primary = crtc->primary;
2811 bool visible = to_intel_plane_state(primary->state)->visible;
c9ba6fad 2812 struct drm_i915_gem_object *obj;
17638cd6 2813 int plane = intel_crtc->plane;
e506a0c6 2814 unsigned long linear_offset;
17638cd6 2815 u32 dspcntr;
f0f59a00 2816 i915_reg_t reg = DSPCNTR(plane);
48404c1e 2817 int pixel_size;
f45651ba 2818
b70709a6 2819 if (!visible || !fb) {
fdd508a6
VS
2820 I915_WRITE(reg, 0);
2821 I915_WRITE(DSPSURF(plane), 0);
2822 POSTING_READ(reg);
2823 return;
2824 }
2825
c9ba6fad
VS
2826 obj = intel_fb_obj(fb);
2827 if (WARN_ON(obj == NULL))
2828 return;
2829
2830 pixel_size = drm_format_plane_cpp(fb->pixel_format, 0);
2831
f45651ba
VS
2832 dspcntr = DISPPLANE_GAMMA_ENABLE;
2833
fdd508a6 2834 dspcntr |= DISPLAY_PLANE_ENABLE;
f45651ba
VS
2835
2836 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
2837 dspcntr |= DISPPLANE_PIPE_CSC_ENABLE;
17638cd6 2838
57779d06
VS
2839 switch (fb->pixel_format) {
2840 case DRM_FORMAT_C8:
17638cd6
JB
2841 dspcntr |= DISPPLANE_8BPP;
2842 break;
57779d06
VS
2843 case DRM_FORMAT_RGB565:
2844 dspcntr |= DISPPLANE_BGRX565;
17638cd6 2845 break;
57779d06 2846 case DRM_FORMAT_XRGB8888:
57779d06
VS
2847 dspcntr |= DISPPLANE_BGRX888;
2848 break;
2849 case DRM_FORMAT_XBGR8888:
57779d06
VS
2850 dspcntr |= DISPPLANE_RGBX888;
2851 break;
2852 case DRM_FORMAT_XRGB2101010:
57779d06
VS
2853 dspcntr |= DISPPLANE_BGRX101010;
2854 break;
2855 case DRM_FORMAT_XBGR2101010:
57779d06 2856 dspcntr |= DISPPLANE_RGBX101010;
17638cd6
JB
2857 break;
2858 default:
baba133a 2859 BUG();
17638cd6
JB
2860 }
2861
2862 if (obj->tiling_mode != I915_TILING_NONE)
2863 dspcntr |= DISPPLANE_TILED;
17638cd6 2864
f45651ba 2865 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev))
1f5d76db 2866 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
17638cd6 2867
b9897127 2868 linear_offset = y * fb->pitches[0] + x * pixel_size;
c2c75131 2869 intel_crtc->dspaddr_offset =
4e9a86b6
VS
2870 intel_gen4_compute_page_offset(dev_priv,
2871 &x, &y, obj->tiling_mode,
b9897127 2872 pixel_size,
bc752862 2873 fb->pitches[0]);
c2c75131 2874 linear_offset -= intel_crtc->dspaddr_offset;
8e7d688b 2875 if (crtc->primary->state->rotation == BIT(DRM_ROTATE_180)) {
48404c1e
SJ
2876 dspcntr |= DISPPLANE_ROTATE_180;
2877
2878 if (!IS_HASWELL(dev) && !IS_BROADWELL(dev)) {
6e3c9717
ACO
2879 x += (intel_crtc->config->pipe_src_w - 1);
2880 y += (intel_crtc->config->pipe_src_h - 1);
48404c1e
SJ
2881
2882 /* Finding the last pixel of the last line of the display
2883 data and adding to linear_offset*/
2884 linear_offset +=
6e3c9717
ACO
2885 (intel_crtc->config->pipe_src_h - 1) * fb->pitches[0] +
2886 (intel_crtc->config->pipe_src_w - 1) * pixel_size;
48404c1e
SJ
2887 }
2888 }
2889
2db3366b
PZ
2890 intel_crtc->adjusted_x = x;
2891 intel_crtc->adjusted_y = y;
2892
48404c1e 2893 I915_WRITE(reg, dspcntr);
17638cd6 2894
01f2c773 2895 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
85ba7b7d
DV
2896 I915_WRITE(DSPSURF(plane),
2897 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
b3dc685e 2898 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
bc1c91eb
DL
2899 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2900 } else {
2901 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2902 I915_WRITE(DSPLINOFF(plane), linear_offset);
2903 }
17638cd6 2904 POSTING_READ(reg);
17638cd6
JB
2905}
2906
b321803d
DL
2907u32 intel_fb_stride_alignment(struct drm_device *dev, uint64_t fb_modifier,
2908 uint32_t pixel_format)
2909{
2910 u32 bits_per_pixel = drm_format_plane_cpp(pixel_format, 0) * 8;
2911
2912 /*
2913 * The stride is either expressed as a multiple of 64 bytes
2914 * chunks for linear buffers or in number of tiles for tiled
2915 * buffers.
2916 */
2917 switch (fb_modifier) {
2918 case DRM_FORMAT_MOD_NONE:
2919 return 64;
2920 case I915_FORMAT_MOD_X_TILED:
2921 if (INTEL_INFO(dev)->gen == 2)
2922 return 128;
2923 return 512;
2924 case I915_FORMAT_MOD_Y_TILED:
2925 /* No need to check for old gens and Y tiling since this is
2926 * about the display engine and those will be blocked before
2927 * we get here.
2928 */
2929 return 128;
2930 case I915_FORMAT_MOD_Yf_TILED:
2931 if (bits_per_pixel == 8)
2932 return 64;
2933 else
2934 return 128;
2935 default:
2936 MISSING_CASE(fb_modifier);
2937 return 64;
2938 }
2939}
2940
44eb0cb9
MK
2941u32 intel_plane_obj_offset(struct intel_plane *intel_plane,
2942 struct drm_i915_gem_object *obj,
2943 unsigned int plane)
121920fa 2944{
ce7f1728 2945 struct i915_ggtt_view view;
dedf278c 2946 struct i915_vma *vma;
44eb0cb9 2947 u64 offset;
121920fa 2948
ce7f1728
DV
2949 intel_fill_fb_ggtt_view(&view, intel_plane->base.fb,
2950 intel_plane->base.state);
121920fa 2951
ce7f1728 2952 vma = i915_gem_obj_to_ggtt_view(obj, &view);
dedf278c 2953 if (WARN(!vma, "ggtt vma for display object not found! (view=%u)\n",
ce7f1728 2954 view.type))
dedf278c
TU
2955 return -1;
2956
44eb0cb9 2957 offset = vma->node.start;
dedf278c
TU
2958
2959 if (plane == 1) {
a6d09186 2960 offset += vma->ggtt_view.params.rotation_info.uv_start_page *
dedf278c
TU
2961 PAGE_SIZE;
2962 }
2963
44eb0cb9
MK
2964 WARN_ON(upper_32_bits(offset));
2965
2966 return lower_32_bits(offset);
121920fa
TU
2967}
2968
e435d6e5
ML
2969static void skl_detach_scaler(struct intel_crtc *intel_crtc, int id)
2970{
2971 struct drm_device *dev = intel_crtc->base.dev;
2972 struct drm_i915_private *dev_priv = dev->dev_private;
2973
2974 I915_WRITE(SKL_PS_CTRL(intel_crtc->pipe, id), 0);
2975 I915_WRITE(SKL_PS_WIN_POS(intel_crtc->pipe, id), 0);
2976 I915_WRITE(SKL_PS_WIN_SZ(intel_crtc->pipe, id), 0);
e435d6e5
ML
2977}
2978
a1b2278e
CK
2979/*
2980 * This function detaches (aka. unbinds) unused scalers in hardware
2981 */
0583236e 2982static void skl_detach_scalers(struct intel_crtc *intel_crtc)
a1b2278e 2983{
a1b2278e
CK
2984 struct intel_crtc_scaler_state *scaler_state;
2985 int i;
2986
a1b2278e
CK
2987 scaler_state = &intel_crtc->config->scaler_state;
2988
2989 /* loop through and disable scalers that aren't in use */
2990 for (i = 0; i < intel_crtc->num_scalers; i++) {
e435d6e5
ML
2991 if (!scaler_state->scalers[i].in_use)
2992 skl_detach_scaler(intel_crtc, i);
a1b2278e
CK
2993 }
2994}
2995
6156a456 2996u32 skl_plane_ctl_format(uint32_t pixel_format)
70d21f0e 2997{
6156a456 2998 switch (pixel_format) {
d161cf7a 2999 case DRM_FORMAT_C8:
c34ce3d1 3000 return PLANE_CTL_FORMAT_INDEXED;
70d21f0e 3001 case DRM_FORMAT_RGB565:
c34ce3d1 3002 return PLANE_CTL_FORMAT_RGB_565;
70d21f0e 3003 case DRM_FORMAT_XBGR8888:
c34ce3d1 3004 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX;
6156a456 3005 case DRM_FORMAT_XRGB8888:
c34ce3d1 3006 return PLANE_CTL_FORMAT_XRGB_8888;
6156a456
CK
3007 /*
3008 * XXX: For ARBG/ABGR formats we default to expecting scanout buffers
3009 * to be already pre-multiplied. We need to add a knob (or a different
3010 * DRM_FORMAT) for user-space to configure that.
3011 */
f75fb42a 3012 case DRM_FORMAT_ABGR8888:
c34ce3d1 3013 return PLANE_CTL_FORMAT_XRGB_8888 | PLANE_CTL_ORDER_RGBX |
6156a456 3014 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
6156a456 3015 case DRM_FORMAT_ARGB8888:
c34ce3d1 3016 return PLANE_CTL_FORMAT_XRGB_8888 |
6156a456 3017 PLANE_CTL_ALPHA_SW_PREMULTIPLY;
70d21f0e 3018 case DRM_FORMAT_XRGB2101010:
c34ce3d1 3019 return PLANE_CTL_FORMAT_XRGB_2101010;
70d21f0e 3020 case DRM_FORMAT_XBGR2101010:
c34ce3d1 3021 return PLANE_CTL_ORDER_RGBX | PLANE_CTL_FORMAT_XRGB_2101010;
6156a456 3022 case DRM_FORMAT_YUYV:
c34ce3d1 3023 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YUYV;
6156a456 3024 case DRM_FORMAT_YVYU:
c34ce3d1 3025 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_YVYU;
6156a456 3026 case DRM_FORMAT_UYVY:
c34ce3d1 3027 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_UYVY;
6156a456 3028 case DRM_FORMAT_VYUY:
c34ce3d1 3029 return PLANE_CTL_FORMAT_YUV422 | PLANE_CTL_YUV422_VYUY;
70d21f0e 3030 default:
4249eeef 3031 MISSING_CASE(pixel_format);
70d21f0e 3032 }
8cfcba41 3033
c34ce3d1 3034 return 0;
6156a456 3035}
70d21f0e 3036
6156a456
CK
3037u32 skl_plane_ctl_tiling(uint64_t fb_modifier)
3038{
6156a456 3039 switch (fb_modifier) {
30af77c4 3040 case DRM_FORMAT_MOD_NONE:
70d21f0e 3041 break;
30af77c4 3042 case I915_FORMAT_MOD_X_TILED:
c34ce3d1 3043 return PLANE_CTL_TILED_X;
b321803d 3044 case I915_FORMAT_MOD_Y_TILED:
c34ce3d1 3045 return PLANE_CTL_TILED_Y;
b321803d 3046 case I915_FORMAT_MOD_Yf_TILED:
c34ce3d1 3047 return PLANE_CTL_TILED_YF;
70d21f0e 3048 default:
6156a456 3049 MISSING_CASE(fb_modifier);
70d21f0e 3050 }
8cfcba41 3051
c34ce3d1 3052 return 0;
6156a456 3053}
70d21f0e 3054
6156a456
CK
3055u32 skl_plane_ctl_rotation(unsigned int rotation)
3056{
3b7a5119 3057 switch (rotation) {
6156a456
CK
3058 case BIT(DRM_ROTATE_0):
3059 break;
1e8df167
SJ
3060 /*
3061 * DRM_ROTATE_ is counter clockwise to stay compatible with Xrandr
3062 * while i915 HW rotation is clockwise, thats why this swapping.
3063 */
3b7a5119 3064 case BIT(DRM_ROTATE_90):
1e8df167 3065 return PLANE_CTL_ROTATE_270;
3b7a5119 3066 case BIT(DRM_ROTATE_180):
c34ce3d1 3067 return PLANE_CTL_ROTATE_180;
3b7a5119 3068 case BIT(DRM_ROTATE_270):
1e8df167 3069 return PLANE_CTL_ROTATE_90;
6156a456
CK
3070 default:
3071 MISSING_CASE(rotation);
3072 }
3073
c34ce3d1 3074 return 0;
6156a456
CK
3075}
3076
3077static void skylake_update_primary_plane(struct drm_crtc *crtc,
3078 struct drm_framebuffer *fb,
3079 int x, int y)
3080{
3081 struct drm_device *dev = crtc->dev;
3082 struct drm_i915_private *dev_priv = dev->dev_private;
3083 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
b70709a6
ML
3084 struct drm_plane *plane = crtc->primary;
3085 bool visible = to_intel_plane_state(plane->state)->visible;
6156a456
CK
3086 struct drm_i915_gem_object *obj;
3087 int pipe = intel_crtc->pipe;
3088 u32 plane_ctl, stride_div, stride;
3089 u32 tile_height, plane_offset, plane_size;
3090 unsigned int rotation;
3091 int x_offset, y_offset;
44eb0cb9 3092 u32 surf_addr;
6156a456
CK
3093 struct intel_crtc_state *crtc_state = intel_crtc->config;
3094 struct intel_plane_state *plane_state;
3095 int src_x = 0, src_y = 0, src_w = 0, src_h = 0;
3096 int dst_x = 0, dst_y = 0, dst_w = 0, dst_h = 0;
3097 int scaler_id = -1;
3098
6156a456
CK
3099 plane_state = to_intel_plane_state(plane->state);
3100
b70709a6 3101 if (!visible || !fb) {
6156a456
CK
3102 I915_WRITE(PLANE_CTL(pipe, 0), 0);
3103 I915_WRITE(PLANE_SURF(pipe, 0), 0);
3104 POSTING_READ(PLANE_CTL(pipe, 0));
3105 return;
3b7a5119 3106 }
70d21f0e 3107
6156a456
CK
3108 plane_ctl = PLANE_CTL_ENABLE |
3109 PLANE_CTL_PIPE_GAMMA_ENABLE |
3110 PLANE_CTL_PIPE_CSC_ENABLE;
3111
3112 plane_ctl |= skl_plane_ctl_format(fb->pixel_format);
3113 plane_ctl |= skl_plane_ctl_tiling(fb->modifier[0]);
3114 plane_ctl |= PLANE_CTL_PLANE_GAMMA_DISABLE;
3115
3116 rotation = plane->state->rotation;
3117 plane_ctl |= skl_plane_ctl_rotation(rotation);
3118
b321803d
DL
3119 obj = intel_fb_obj(fb);
3120 stride_div = intel_fb_stride_alignment(dev, fb->modifier[0],
3121 fb->pixel_format);
dedf278c 3122 surf_addr = intel_plane_obj_offset(to_intel_plane(plane), obj, 0);
3b7a5119 3123
a42e5a23
PZ
3124 WARN_ON(drm_rect_width(&plane_state->src) == 0);
3125
3126 scaler_id = plane_state->scaler_id;
3127 src_x = plane_state->src.x1 >> 16;
3128 src_y = plane_state->src.y1 >> 16;
3129 src_w = drm_rect_width(&plane_state->src) >> 16;
3130 src_h = drm_rect_height(&plane_state->src) >> 16;
3131 dst_x = plane_state->dst.x1;
3132 dst_y = plane_state->dst.y1;
3133 dst_w = drm_rect_width(&plane_state->dst);
3134 dst_h = drm_rect_height(&plane_state->dst);
3135
3136 WARN_ON(x != src_x || y != src_y);
6156a456 3137
3b7a5119
SJ
3138 if (intel_rotation_90_or_270(rotation)) {
3139 /* stride = Surface height in tiles */
2614f17d 3140 tile_height = intel_tile_height(dev, fb->pixel_format,
fe47ea0c 3141 fb->modifier[0], 0);
3b7a5119 3142 stride = DIV_ROUND_UP(fb->height, tile_height);
6156a456 3143 x_offset = stride * tile_height - y - src_h;
3b7a5119 3144 y_offset = x;
6156a456 3145 plane_size = (src_w - 1) << 16 | (src_h - 1);
3b7a5119
SJ
3146 } else {
3147 stride = fb->pitches[0] / stride_div;
3148 x_offset = x;
3149 y_offset = y;
6156a456 3150 plane_size = (src_h - 1) << 16 | (src_w - 1);
3b7a5119
SJ
3151 }
3152 plane_offset = y_offset << 16 | x_offset;
b321803d 3153
2db3366b
PZ
3154 intel_crtc->adjusted_x = x_offset;
3155 intel_crtc->adjusted_y = y_offset;
3156
70d21f0e 3157 I915_WRITE(PLANE_CTL(pipe, 0), plane_ctl);
3b7a5119
SJ
3158 I915_WRITE(PLANE_OFFSET(pipe, 0), plane_offset);
3159 I915_WRITE(PLANE_SIZE(pipe, 0), plane_size);
3160 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
6156a456
CK
3161
3162 if (scaler_id >= 0) {
3163 uint32_t ps_ctrl = 0;
3164
3165 WARN_ON(!dst_w || !dst_h);
3166 ps_ctrl = PS_SCALER_EN | PS_PLANE_SEL(0) |
3167 crtc_state->scaler_state.scalers[scaler_id].mode;
3168 I915_WRITE(SKL_PS_CTRL(pipe, scaler_id), ps_ctrl);
3169 I915_WRITE(SKL_PS_PWR_GATE(pipe, scaler_id), 0);
3170 I915_WRITE(SKL_PS_WIN_POS(pipe, scaler_id), (dst_x << 16) | dst_y);
3171 I915_WRITE(SKL_PS_WIN_SZ(pipe, scaler_id), (dst_w << 16) | dst_h);
3172 I915_WRITE(PLANE_POS(pipe, 0), 0);
3173 } else {
3174 I915_WRITE(PLANE_POS(pipe, 0), (dst_y << 16) | dst_x);
3175 }
3176
121920fa 3177 I915_WRITE(PLANE_SURF(pipe, 0), surf_addr);
70d21f0e
DL
3178
3179 POSTING_READ(PLANE_SURF(pipe, 0));
3180}
3181
17638cd6
JB
3182/* Assume fb object is pinned & idle & fenced and just update base pointers */
3183static int
3184intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
3185 int x, int y, enum mode_set_atomic state)
3186{
3187 struct drm_device *dev = crtc->dev;
3188 struct drm_i915_private *dev_priv = dev->dev_private;
17638cd6 3189
0e631adc
PZ
3190 if (dev_priv->fbc.deactivate)
3191 dev_priv->fbc.deactivate(dev_priv);
81255565 3192
29b9bde6
DV
3193 dev_priv->display.update_primary_plane(crtc, fb, x, y);
3194
3195 return 0;
81255565
JB
3196}
3197
7514747d 3198static void intel_complete_page_flips(struct drm_device *dev)
96a02917 3199{
96a02917
VS
3200 struct drm_crtc *crtc;
3201
70e1e0ec 3202 for_each_crtc(dev, crtc) {
96a02917
VS
3203 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3204 enum plane plane = intel_crtc->plane;
3205
3206 intel_prepare_page_flip(dev, plane);
3207 intel_finish_page_flip_plane(dev, plane);
3208 }
7514747d
VS
3209}
3210
3211static void intel_update_primary_planes(struct drm_device *dev)
3212{
7514747d 3213 struct drm_crtc *crtc;
96a02917 3214
70e1e0ec 3215 for_each_crtc(dev, crtc) {
11c22da6
ML
3216 struct intel_plane *plane = to_intel_plane(crtc->primary);
3217 struct intel_plane_state *plane_state;
96a02917 3218
11c22da6 3219 drm_modeset_lock_crtc(crtc, &plane->base);
11c22da6
ML
3220 plane_state = to_intel_plane_state(plane->base.state);
3221
f029ee82 3222 if (crtc->state->active && plane_state->base.fb)
11c22da6
ML
3223 plane->commit_plane(&plane->base, plane_state);
3224
3225 drm_modeset_unlock_crtc(crtc);
96a02917
VS
3226 }
3227}
3228
7514747d
VS
3229void intel_prepare_reset(struct drm_device *dev)
3230{
3231 /* no reset support for gen2 */
3232 if (IS_GEN2(dev))
3233 return;
3234
3235 /* reset doesn't touch the display */
3236 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
3237 return;
3238
3239 drm_modeset_lock_all(dev);
f98ce92f
VS
3240 /*
3241 * Disabling the crtcs gracefully seems nicer. Also the
3242 * g33 docs say we should at least disable all the planes.
3243 */
6b72d486 3244 intel_display_suspend(dev);
7514747d
VS
3245}
3246
3247void intel_finish_reset(struct drm_device *dev)
3248{
3249 struct drm_i915_private *dev_priv = to_i915(dev);
3250
3251 /*
3252 * Flips in the rings will be nuked by the reset,
3253 * so complete all pending flips so that user space
3254 * will get its events and not get stuck.
3255 */
3256 intel_complete_page_flips(dev);
3257
3258 /* no reset support for gen2 */
3259 if (IS_GEN2(dev))
3260 return;
3261
3262 /* reset doesn't touch the display */
3263 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev)) {
3264 /*
3265 * Flips in the rings have been nuked by the reset,
3266 * so update the base address of all primary
3267 * planes to the the last fb to make sure we're
3268 * showing the correct fb after a reset.
11c22da6
ML
3269 *
3270 * FIXME: Atomic will make this obsolete since we won't schedule
3271 * CS-based flips (which might get lost in gpu resets) any more.
7514747d
VS
3272 */
3273 intel_update_primary_planes(dev);
3274 return;
3275 }
3276
3277 /*
3278 * The display has been reset as well,
3279 * so need a full re-initialization.
3280 */
3281 intel_runtime_pm_disable_interrupts(dev_priv);
3282 intel_runtime_pm_enable_interrupts(dev_priv);
3283
3284 intel_modeset_init_hw(dev);
3285
3286 spin_lock_irq(&dev_priv->irq_lock);
3287 if (dev_priv->display.hpd_irq_setup)
3288 dev_priv->display.hpd_irq_setup(dev);
3289 spin_unlock_irq(&dev_priv->irq_lock);
3290
043e9bda 3291 intel_display_resume(dev);
7514747d
VS
3292
3293 intel_hpd_init(dev_priv);
3294
3295 drm_modeset_unlock_all(dev);
3296}
3297
7d5e3799
CW
3298static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
3299{
3300 struct drm_device *dev = crtc->dev;
3301 struct drm_i915_private *dev_priv = dev->dev_private;
3302 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7d5e3799
CW
3303 bool pending;
3304
3305 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
3306 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
3307 return false;
3308
5e2d7afc 3309 spin_lock_irq(&dev->event_lock);
7d5e3799 3310 pending = to_intel_crtc(crtc)->unpin_work != NULL;
5e2d7afc 3311 spin_unlock_irq(&dev->event_lock);
7d5e3799
CW
3312
3313 return pending;
3314}
3315
bfd16b2a
ML
3316static void intel_update_pipe_config(struct intel_crtc *crtc,
3317 struct intel_crtc_state *old_crtc_state)
e30e8f75
GP
3318{
3319 struct drm_device *dev = crtc->base.dev;
3320 struct drm_i915_private *dev_priv = dev->dev_private;
bfd16b2a
ML
3321 struct intel_crtc_state *pipe_config =
3322 to_intel_crtc_state(crtc->base.state);
e30e8f75 3323
bfd16b2a
ML
3324 /* drm_atomic_helper_update_legacy_modeset_state might not be called. */
3325 crtc->base.mode = crtc->base.state->mode;
3326
3327 DRM_DEBUG_KMS("Updating pipe size %ix%i -> %ix%i\n",
3328 old_crtc_state->pipe_src_w, old_crtc_state->pipe_src_h,
3329 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
e30e8f75 3330
44522d85
ML
3331 if (HAS_DDI(dev))
3332 intel_set_pipe_csc(&crtc->base);
3333
e30e8f75
GP
3334 /*
3335 * Update pipe size and adjust fitter if needed: the reason for this is
3336 * that in compute_mode_changes we check the native mode (not the pfit
3337 * mode) to see if we can flip rather than do a full mode set. In the
3338 * fastboot case, we'll flip, but if we don't update the pipesrc and
3339 * pfit state, we'll end up with a big fb scanned out into the wrong
3340 * sized surface.
e30e8f75
GP
3341 */
3342
e30e8f75 3343 I915_WRITE(PIPESRC(crtc->pipe),
bfd16b2a
ML
3344 ((pipe_config->pipe_src_w - 1) << 16) |
3345 (pipe_config->pipe_src_h - 1));
3346
3347 /* on skylake this is done by detaching scalers */
3348 if (INTEL_INFO(dev)->gen >= 9) {
3349 skl_detach_scalers(crtc);
3350
3351 if (pipe_config->pch_pfit.enabled)
3352 skylake_pfit_enable(crtc);
3353 } else if (HAS_PCH_SPLIT(dev)) {
3354 if (pipe_config->pch_pfit.enabled)
3355 ironlake_pfit_enable(crtc);
3356 else if (old_crtc_state->pch_pfit.enabled)
3357 ironlake_pfit_disable(crtc, true);
e30e8f75 3358 }
e30e8f75
GP
3359}
3360
5e84e1a4
ZW
3361static void intel_fdi_normal_train(struct drm_crtc *crtc)
3362{
3363 struct drm_device *dev = crtc->dev;
3364 struct drm_i915_private *dev_priv = dev->dev_private;
3365 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3366 int pipe = intel_crtc->pipe;
f0f59a00
VS
3367 i915_reg_t reg;
3368 u32 temp;
5e84e1a4
ZW
3369
3370 /* enable normal train */
3371 reg = FDI_TX_CTL(pipe);
3372 temp = I915_READ(reg);
61e499bf 3373 if (IS_IVYBRIDGE(dev)) {
357555c0
JB
3374 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3375 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
61e499bf
KP
3376 } else {
3377 temp &= ~FDI_LINK_TRAIN_NONE;
3378 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
357555c0 3379 }
5e84e1a4
ZW
3380 I915_WRITE(reg, temp);
3381
3382 reg = FDI_RX_CTL(pipe);
3383 temp = I915_READ(reg);
3384 if (HAS_PCH_CPT(dev)) {
3385 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3386 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
3387 } else {
3388 temp &= ~FDI_LINK_TRAIN_NONE;
3389 temp |= FDI_LINK_TRAIN_NONE;
3390 }
3391 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
3392
3393 /* wait one idle pattern time */
3394 POSTING_READ(reg);
3395 udelay(1000);
357555c0
JB
3396
3397 /* IVB wants error correction enabled */
3398 if (IS_IVYBRIDGE(dev))
3399 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
3400 FDI_FE_ERRC_ENABLE);
5e84e1a4
ZW
3401}
3402
8db9d77b
ZW
3403/* The FDI link training functions for ILK/Ibexpeak. */
3404static void ironlake_fdi_link_train(struct drm_crtc *crtc)
3405{
3406 struct drm_device *dev = crtc->dev;
3407 struct drm_i915_private *dev_priv = dev->dev_private;
3408 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3409 int pipe = intel_crtc->pipe;
f0f59a00
VS
3410 i915_reg_t reg;
3411 u32 temp, tries;
8db9d77b 3412
1c8562f6 3413 /* FDI needs bits from pipe first */
0fc932b8 3414 assert_pipe_enabled(dev_priv, pipe);
0fc932b8 3415
e1a44743
AJ
3416 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3417 for train result */
5eddb70b
CW
3418 reg = FDI_RX_IMR(pipe);
3419 temp = I915_READ(reg);
e1a44743
AJ
3420 temp &= ~FDI_RX_SYMBOL_LOCK;
3421 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3422 I915_WRITE(reg, temp);
3423 I915_READ(reg);
e1a44743
AJ
3424 udelay(150);
3425
8db9d77b 3426 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3427 reg = FDI_TX_CTL(pipe);
3428 temp = I915_READ(reg);
627eb5a3 3429 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3430 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3431 temp &= ~FDI_LINK_TRAIN_NONE;
3432 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b 3433 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3434
5eddb70b
CW
3435 reg = FDI_RX_CTL(pipe);
3436 temp = I915_READ(reg);
8db9d77b
ZW
3437 temp &= ~FDI_LINK_TRAIN_NONE;
3438 temp |= FDI_LINK_TRAIN_PATTERN_1;
5eddb70b
CW
3439 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3440
3441 POSTING_READ(reg);
8db9d77b
ZW
3442 udelay(150);
3443
5b2adf89 3444 /* Ironlake workaround, enable clock pointer after FDI enable*/
8f5718a6
DV
3445 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
3446 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
3447 FDI_RX_PHASE_SYNC_POINTER_EN);
5b2adf89 3448
5eddb70b 3449 reg = FDI_RX_IIR(pipe);
e1a44743 3450 for (tries = 0; tries < 5; tries++) {
5eddb70b 3451 temp = I915_READ(reg);
8db9d77b
ZW
3452 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3453
3454 if ((temp & FDI_RX_BIT_LOCK)) {
3455 DRM_DEBUG_KMS("FDI train 1 done.\n");
5eddb70b 3456 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
8db9d77b
ZW
3457 break;
3458 }
8db9d77b 3459 }
e1a44743 3460 if (tries == 5)
5eddb70b 3461 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3462
3463 /* Train 2 */
5eddb70b
CW
3464 reg = FDI_TX_CTL(pipe);
3465 temp = I915_READ(reg);
8db9d77b
ZW
3466 temp &= ~FDI_LINK_TRAIN_NONE;
3467 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3468 I915_WRITE(reg, temp);
8db9d77b 3469
5eddb70b
CW
3470 reg = FDI_RX_CTL(pipe);
3471 temp = I915_READ(reg);
8db9d77b
ZW
3472 temp &= ~FDI_LINK_TRAIN_NONE;
3473 temp |= FDI_LINK_TRAIN_PATTERN_2;
5eddb70b 3474 I915_WRITE(reg, temp);
8db9d77b 3475
5eddb70b
CW
3476 POSTING_READ(reg);
3477 udelay(150);
8db9d77b 3478
5eddb70b 3479 reg = FDI_RX_IIR(pipe);
e1a44743 3480 for (tries = 0; tries < 5; tries++) {
5eddb70b 3481 temp = I915_READ(reg);
8db9d77b
ZW
3482 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3483
3484 if (temp & FDI_RX_SYMBOL_LOCK) {
5eddb70b 3485 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
8db9d77b
ZW
3486 DRM_DEBUG_KMS("FDI train 2 done.\n");
3487 break;
3488 }
8db9d77b 3489 }
e1a44743 3490 if (tries == 5)
5eddb70b 3491 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3492
3493 DRM_DEBUG_KMS("FDI train done\n");
5c5313c8 3494
8db9d77b
ZW
3495}
3496
0206e353 3497static const int snb_b_fdi_train_param[] = {
8db9d77b
ZW
3498 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
3499 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
3500 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
3501 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
3502};
3503
3504/* The FDI link training functions for SNB/Cougarpoint. */
3505static void gen6_fdi_link_train(struct drm_crtc *crtc)
3506{
3507 struct drm_device *dev = crtc->dev;
3508 struct drm_i915_private *dev_priv = dev->dev_private;
3509 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3510 int pipe = intel_crtc->pipe;
f0f59a00
VS
3511 i915_reg_t reg;
3512 u32 temp, i, retry;
8db9d77b 3513
e1a44743
AJ
3514 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3515 for train result */
5eddb70b
CW
3516 reg = FDI_RX_IMR(pipe);
3517 temp = I915_READ(reg);
e1a44743
AJ
3518 temp &= ~FDI_RX_SYMBOL_LOCK;
3519 temp &= ~FDI_RX_BIT_LOCK;
5eddb70b
CW
3520 I915_WRITE(reg, temp);
3521
3522 POSTING_READ(reg);
e1a44743
AJ
3523 udelay(150);
3524
8db9d77b 3525 /* enable CPU FDI TX and PCH FDI RX */
5eddb70b
CW
3526 reg = FDI_TX_CTL(pipe);
3527 temp = I915_READ(reg);
627eb5a3 3528 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3529 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
8db9d77b
ZW
3530 temp &= ~FDI_LINK_TRAIN_NONE;
3531 temp |= FDI_LINK_TRAIN_PATTERN_1;
3532 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3533 /* SNB-B */
3534 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
5eddb70b 3535 I915_WRITE(reg, temp | FDI_TX_ENABLE);
8db9d77b 3536
d74cf324
DV
3537 I915_WRITE(FDI_RX_MISC(pipe),
3538 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3539
5eddb70b
CW
3540 reg = FDI_RX_CTL(pipe);
3541 temp = I915_READ(reg);
8db9d77b
ZW
3542 if (HAS_PCH_CPT(dev)) {
3543 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3544 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3545 } else {
3546 temp &= ~FDI_LINK_TRAIN_NONE;
3547 temp |= FDI_LINK_TRAIN_PATTERN_1;
3548 }
5eddb70b
CW
3549 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3550
3551 POSTING_READ(reg);
8db9d77b
ZW
3552 udelay(150);
3553
0206e353 3554 for (i = 0; i < 4; i++) {
5eddb70b
CW
3555 reg = FDI_TX_CTL(pipe);
3556 temp = I915_READ(reg);
8db9d77b
ZW
3557 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3558 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3559 I915_WRITE(reg, temp);
3560
3561 POSTING_READ(reg);
8db9d77b
ZW
3562 udelay(500);
3563
fa37d39e
SP
3564 for (retry = 0; retry < 5; retry++) {
3565 reg = FDI_RX_IIR(pipe);
3566 temp = I915_READ(reg);
3567 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3568 if (temp & FDI_RX_BIT_LOCK) {
3569 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3570 DRM_DEBUG_KMS("FDI train 1 done.\n");
3571 break;
3572 }
3573 udelay(50);
8db9d77b 3574 }
fa37d39e
SP
3575 if (retry < 5)
3576 break;
8db9d77b
ZW
3577 }
3578 if (i == 4)
5eddb70b 3579 DRM_ERROR("FDI train 1 fail!\n");
8db9d77b
ZW
3580
3581 /* Train 2 */
5eddb70b
CW
3582 reg = FDI_TX_CTL(pipe);
3583 temp = I915_READ(reg);
8db9d77b
ZW
3584 temp &= ~FDI_LINK_TRAIN_NONE;
3585 temp |= FDI_LINK_TRAIN_PATTERN_2;
3586 if (IS_GEN6(dev)) {
3587 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3588 /* SNB-B */
3589 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
3590 }
5eddb70b 3591 I915_WRITE(reg, temp);
8db9d77b 3592
5eddb70b
CW
3593 reg = FDI_RX_CTL(pipe);
3594 temp = I915_READ(reg);
8db9d77b
ZW
3595 if (HAS_PCH_CPT(dev)) {
3596 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3597 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
3598 } else {
3599 temp &= ~FDI_LINK_TRAIN_NONE;
3600 temp |= FDI_LINK_TRAIN_PATTERN_2;
3601 }
5eddb70b
CW
3602 I915_WRITE(reg, temp);
3603
3604 POSTING_READ(reg);
8db9d77b
ZW
3605 udelay(150);
3606
0206e353 3607 for (i = 0; i < 4; i++) {
5eddb70b
CW
3608 reg = FDI_TX_CTL(pipe);
3609 temp = I915_READ(reg);
8db9d77b
ZW
3610 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3611 temp |= snb_b_fdi_train_param[i];
5eddb70b
CW
3612 I915_WRITE(reg, temp);
3613
3614 POSTING_READ(reg);
8db9d77b
ZW
3615 udelay(500);
3616
fa37d39e
SP
3617 for (retry = 0; retry < 5; retry++) {
3618 reg = FDI_RX_IIR(pipe);
3619 temp = I915_READ(reg);
3620 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3621 if (temp & FDI_RX_SYMBOL_LOCK) {
3622 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3623 DRM_DEBUG_KMS("FDI train 2 done.\n");
3624 break;
3625 }
3626 udelay(50);
8db9d77b 3627 }
fa37d39e
SP
3628 if (retry < 5)
3629 break;
8db9d77b
ZW
3630 }
3631 if (i == 4)
5eddb70b 3632 DRM_ERROR("FDI train 2 fail!\n");
8db9d77b
ZW
3633
3634 DRM_DEBUG_KMS("FDI train done.\n");
3635}
3636
357555c0
JB
3637/* Manual link training for Ivy Bridge A0 parts */
3638static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3639{
3640 struct drm_device *dev = crtc->dev;
3641 struct drm_i915_private *dev_priv = dev->dev_private;
3642 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3643 int pipe = intel_crtc->pipe;
f0f59a00
VS
3644 i915_reg_t reg;
3645 u32 temp, i, j;
357555c0
JB
3646
3647 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3648 for train result */
3649 reg = FDI_RX_IMR(pipe);
3650 temp = I915_READ(reg);
3651 temp &= ~FDI_RX_SYMBOL_LOCK;
3652 temp &= ~FDI_RX_BIT_LOCK;
3653 I915_WRITE(reg, temp);
3654
3655 POSTING_READ(reg);
3656 udelay(150);
3657
01a415fd
DV
3658 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3659 I915_READ(FDI_RX_IIR(pipe)));
3660
139ccd3f
JB
3661 /* Try each vswing and preemphasis setting twice before moving on */
3662 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3663 /* disable first in case we need to retry */
3664 reg = FDI_TX_CTL(pipe);
3665 temp = I915_READ(reg);
3666 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3667 temp &= ~FDI_TX_ENABLE;
3668 I915_WRITE(reg, temp);
357555c0 3669
139ccd3f
JB
3670 reg = FDI_RX_CTL(pipe);
3671 temp = I915_READ(reg);
3672 temp &= ~FDI_LINK_TRAIN_AUTO;
3673 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3674 temp &= ~FDI_RX_ENABLE;
3675 I915_WRITE(reg, temp);
357555c0 3676
139ccd3f 3677 /* enable CPU FDI TX and PCH FDI RX */
357555c0
JB
3678 reg = FDI_TX_CTL(pipe);
3679 temp = I915_READ(reg);
139ccd3f 3680 temp &= ~FDI_DP_PORT_WIDTH_MASK;
6e3c9717 3681 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
139ccd3f 3682 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
357555c0 3683 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
139ccd3f
JB
3684 temp |= snb_b_fdi_train_param[j/2];
3685 temp |= FDI_COMPOSITE_SYNC;
3686 I915_WRITE(reg, temp | FDI_TX_ENABLE);
357555c0 3687
139ccd3f
JB
3688 I915_WRITE(FDI_RX_MISC(pipe),
3689 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
357555c0 3690
139ccd3f 3691 reg = FDI_RX_CTL(pipe);
357555c0 3692 temp = I915_READ(reg);
139ccd3f
JB
3693 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3694 temp |= FDI_COMPOSITE_SYNC;
3695 I915_WRITE(reg, temp | FDI_RX_ENABLE);
357555c0 3696
139ccd3f
JB
3697 POSTING_READ(reg);
3698 udelay(1); /* should be 0.5us */
357555c0 3699
139ccd3f
JB
3700 for (i = 0; i < 4; i++) {
3701 reg = FDI_RX_IIR(pipe);
3702 temp = I915_READ(reg);
3703 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3704
139ccd3f
JB
3705 if (temp & FDI_RX_BIT_LOCK ||
3706 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3707 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3708 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3709 i);
3710 break;
3711 }
3712 udelay(1); /* should be 0.5us */
3713 }
3714 if (i == 4) {
3715 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3716 continue;
3717 }
357555c0 3718
139ccd3f 3719 /* Train 2 */
357555c0
JB
3720 reg = FDI_TX_CTL(pipe);
3721 temp = I915_READ(reg);
139ccd3f
JB
3722 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3723 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3724 I915_WRITE(reg, temp);
3725
3726 reg = FDI_RX_CTL(pipe);
3727 temp = I915_READ(reg);
3728 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3729 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
357555c0
JB
3730 I915_WRITE(reg, temp);
3731
3732 POSTING_READ(reg);
139ccd3f 3733 udelay(2); /* should be 1.5us */
357555c0 3734
139ccd3f
JB
3735 for (i = 0; i < 4; i++) {
3736 reg = FDI_RX_IIR(pipe);
3737 temp = I915_READ(reg);
3738 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
357555c0 3739
139ccd3f
JB
3740 if (temp & FDI_RX_SYMBOL_LOCK ||
3741 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3742 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3743 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3744 i);
3745 goto train_done;
3746 }
3747 udelay(2); /* should be 1.5us */
357555c0 3748 }
139ccd3f
JB
3749 if (i == 4)
3750 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
357555c0 3751 }
357555c0 3752
139ccd3f 3753train_done:
357555c0
JB
3754 DRM_DEBUG_KMS("FDI train done.\n");
3755}
3756
88cefb6c 3757static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
2c07245f 3758{
88cefb6c 3759 struct drm_device *dev = intel_crtc->base.dev;
2c07245f 3760 struct drm_i915_private *dev_priv = dev->dev_private;
2c07245f 3761 int pipe = intel_crtc->pipe;
f0f59a00
VS
3762 i915_reg_t reg;
3763 u32 temp;
c64e311e 3764
c98e9dcf 3765 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
5eddb70b
CW
3766 reg = FDI_RX_CTL(pipe);
3767 temp = I915_READ(reg);
627eb5a3 3768 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
6e3c9717 3769 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config->fdi_lanes);
dfd07d72 3770 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
5eddb70b
CW
3771 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3772
3773 POSTING_READ(reg);
c98e9dcf
JB
3774 udelay(200);
3775
3776 /* Switch from Rawclk to PCDclk */
5eddb70b
CW
3777 temp = I915_READ(reg);
3778 I915_WRITE(reg, temp | FDI_PCDCLK);
3779
3780 POSTING_READ(reg);
c98e9dcf
JB
3781 udelay(200);
3782
20749730
PZ
3783 /* Enable CPU FDI TX PLL, always on for Ironlake */
3784 reg = FDI_TX_CTL(pipe);
3785 temp = I915_READ(reg);
3786 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3787 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
5eddb70b 3788
20749730
PZ
3789 POSTING_READ(reg);
3790 udelay(100);
6be4a607 3791 }
0e23b99d
JB
3792}
3793
88cefb6c
DV
3794static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3795{
3796 struct drm_device *dev = intel_crtc->base.dev;
3797 struct drm_i915_private *dev_priv = dev->dev_private;
3798 int pipe = intel_crtc->pipe;
f0f59a00
VS
3799 i915_reg_t reg;
3800 u32 temp;
88cefb6c
DV
3801
3802 /* Switch from PCDclk to Rawclk */
3803 reg = FDI_RX_CTL(pipe);
3804 temp = I915_READ(reg);
3805 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3806
3807 /* Disable CPU FDI TX PLL */
3808 reg = FDI_TX_CTL(pipe);
3809 temp = I915_READ(reg);
3810 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3811
3812 POSTING_READ(reg);
3813 udelay(100);
3814
3815 reg = FDI_RX_CTL(pipe);
3816 temp = I915_READ(reg);
3817 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3818
3819 /* Wait for the clocks to turn off. */
3820 POSTING_READ(reg);
3821 udelay(100);
3822}
3823
0fc932b8
JB
3824static void ironlake_fdi_disable(struct drm_crtc *crtc)
3825{
3826 struct drm_device *dev = crtc->dev;
3827 struct drm_i915_private *dev_priv = dev->dev_private;
3828 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3829 int pipe = intel_crtc->pipe;
f0f59a00
VS
3830 i915_reg_t reg;
3831 u32 temp;
0fc932b8
JB
3832
3833 /* disable CPU FDI tx and PCH FDI rx */
3834 reg = FDI_TX_CTL(pipe);
3835 temp = I915_READ(reg);
3836 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3837 POSTING_READ(reg);
3838
3839 reg = FDI_RX_CTL(pipe);
3840 temp = I915_READ(reg);
3841 temp &= ~(0x7 << 16);
dfd07d72 3842 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3843 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3844
3845 POSTING_READ(reg);
3846 udelay(100);
3847
3848 /* Ironlake workaround, disable clock pointer after downing FDI */
eba905b2 3849 if (HAS_PCH_IBX(dev))
6f06ce18 3850 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
0fc932b8
JB
3851
3852 /* still set train pattern 1 */
3853 reg = FDI_TX_CTL(pipe);
3854 temp = I915_READ(reg);
3855 temp &= ~FDI_LINK_TRAIN_NONE;
3856 temp |= FDI_LINK_TRAIN_PATTERN_1;
3857 I915_WRITE(reg, temp);
3858
3859 reg = FDI_RX_CTL(pipe);
3860 temp = I915_READ(reg);
3861 if (HAS_PCH_CPT(dev)) {
3862 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3863 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3864 } else {
3865 temp &= ~FDI_LINK_TRAIN_NONE;
3866 temp |= FDI_LINK_TRAIN_PATTERN_1;
3867 }
3868 /* BPC in FDI rx is consistent with that in PIPECONF */
3869 temp &= ~(0x07 << 16);
dfd07d72 3870 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
0fc932b8
JB
3871 I915_WRITE(reg, temp);
3872
3873 POSTING_READ(reg);
3874 udelay(100);
3875}
3876
5dce5b93
CW
3877bool intel_has_pending_fb_unpin(struct drm_device *dev)
3878{
3879 struct intel_crtc *crtc;
3880
3881 /* Note that we don't need to be called with mode_config.lock here
3882 * as our list of CRTC objects is static for the lifetime of the
3883 * device and so cannot disappear as we iterate. Similarly, we can
3884 * happily treat the predicates as racy, atomic checks as userspace
3885 * cannot claim and pin a new fb without at least acquring the
3886 * struct_mutex and so serialising with us.
3887 */
d3fcc808 3888 for_each_intel_crtc(dev, crtc) {
5dce5b93
CW
3889 if (atomic_read(&crtc->unpin_work_count) == 0)
3890 continue;
3891
3892 if (crtc->unpin_work)
3893 intel_wait_for_vblank(dev, crtc->pipe);
3894
3895 return true;
3896 }
3897
3898 return false;
3899}
3900
d6bbafa1
CW
3901static void page_flip_completed(struct intel_crtc *intel_crtc)
3902{
3903 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3904 struct intel_unpin_work *work = intel_crtc->unpin_work;
3905
3906 /* ensure that the unpin work is consistent wrt ->pending. */
3907 smp_rmb();
3908 intel_crtc->unpin_work = NULL;
3909
3910 if (work->event)
3911 drm_send_vblank_event(intel_crtc->base.dev,
3912 intel_crtc->pipe,
3913 work->event);
3914
3915 drm_crtc_vblank_put(&intel_crtc->base);
3916
3917 wake_up_all(&dev_priv->pending_flip_queue);
3918 queue_work(dev_priv->wq, &work->work);
3919
3920 trace_i915_flip_complete(intel_crtc->plane,
3921 work->pending_flip_obj);
3922}
3923
5008e874 3924static int intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
e6c3a2a6 3925{
0f91128d 3926 struct drm_device *dev = crtc->dev;
5bb61643 3927 struct drm_i915_private *dev_priv = dev->dev_private;
5008e874 3928 long ret;
e6c3a2a6 3929
2c10d571 3930 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
5008e874
ML
3931
3932 ret = wait_event_interruptible_timeout(
3933 dev_priv->pending_flip_queue,
3934 !intel_crtc_has_pending_flip(crtc),
3935 60*HZ);
3936
3937 if (ret < 0)
3938 return ret;
3939
3940 if (ret == 0) {
9c787942 3941 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2c10d571 3942
5e2d7afc 3943 spin_lock_irq(&dev->event_lock);
9c787942
CW
3944 if (intel_crtc->unpin_work) {
3945 WARN_ONCE(1, "Removing stuck page flip\n");
3946 page_flip_completed(intel_crtc);
3947 }
5e2d7afc 3948 spin_unlock_irq(&dev->event_lock);
9c787942 3949 }
5bb61643 3950
5008e874 3951 return 0;
e6c3a2a6
CW
3952}
3953
060f02d8
VS
3954static void lpt_disable_iclkip(struct drm_i915_private *dev_priv)
3955{
3956 u32 temp;
3957
3958 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3959
3960 mutex_lock(&dev_priv->sb_lock);
3961
3962 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
3963 temp |= SBI_SSCCTL_DISABLE;
3964 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
3965
3966 mutex_unlock(&dev_priv->sb_lock);
3967}
3968
e615efe4
ED
3969/* Program iCLKIP clock to the desired frequency */
3970static void lpt_program_iclkip(struct drm_crtc *crtc)
3971{
3972 struct drm_device *dev = crtc->dev;
3973 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 3974 int clock = to_intel_crtc(crtc)->config->base.adjusted_mode.crtc_clock;
e615efe4
ED
3975 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3976 u32 temp;
3977
060f02d8 3978 lpt_disable_iclkip(dev_priv);
e615efe4
ED
3979
3980 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
12d7ceed 3981 if (clock == 20000) {
e615efe4
ED
3982 auxdiv = 1;
3983 divsel = 0x41;
3984 phaseinc = 0x20;
3985 } else {
3986 /* The iCLK virtual clock root frequency is in MHz,
241bfc38
DL
3987 * but the adjusted_mode->crtc_clock in in KHz. To get the
3988 * divisors, it is necessary to divide one by another, so we
e615efe4
ED
3989 * convert the virtual clock precision to KHz here for higher
3990 * precision.
3991 */
3992 u32 iclk_virtual_root_freq = 172800 * 1000;
3993 u32 iclk_pi_range = 64;
3994 u32 desired_divisor, msb_divisor_value, pi_value;
3995
a2572f5c 3996 desired_divisor = DIV_ROUND_CLOSEST(iclk_virtual_root_freq, clock);
e615efe4
ED
3997 msb_divisor_value = desired_divisor / iclk_pi_range;
3998 pi_value = desired_divisor % iclk_pi_range;
3999
4000 auxdiv = 0;
4001 divsel = msb_divisor_value - 2;
4002 phaseinc = pi_value;
4003 }
4004
4005 /* This should not happen with any sane values */
4006 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
4007 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
4008 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
4009 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
4010
4011 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
12d7ceed 4012 clock,
e615efe4
ED
4013 auxdiv,
4014 divsel,
4015 phasedir,
4016 phaseinc);
4017
060f02d8
VS
4018 mutex_lock(&dev_priv->sb_lock);
4019
e615efe4 4020 /* Program SSCDIVINTPHASE6 */
988d6ee8 4021 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
e615efe4
ED
4022 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
4023 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
4024 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
4025 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
4026 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
4027 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
988d6ee8 4028 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
e615efe4
ED
4029
4030 /* Program SSCAUXDIV */
988d6ee8 4031 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
e615efe4
ED
4032 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
4033 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
988d6ee8 4034 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
e615efe4
ED
4035
4036 /* Enable modulator and associated divider */
988d6ee8 4037 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
e615efe4 4038 temp &= ~SBI_SSCCTL_DISABLE;
988d6ee8 4039 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
e615efe4 4040
060f02d8
VS
4041 mutex_unlock(&dev_priv->sb_lock);
4042
e615efe4
ED
4043 /* Wait for initialization time */
4044 udelay(24);
4045
4046 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
4047}
4048
275f01b2
DV
4049static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
4050 enum pipe pch_transcoder)
4051{
4052 struct drm_device *dev = crtc->base.dev;
4053 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 4054 enum transcoder cpu_transcoder = crtc->config->cpu_transcoder;
275f01b2
DV
4055
4056 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
4057 I915_READ(HTOTAL(cpu_transcoder)));
4058 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
4059 I915_READ(HBLANK(cpu_transcoder)));
4060 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
4061 I915_READ(HSYNC(cpu_transcoder)));
4062
4063 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
4064 I915_READ(VTOTAL(cpu_transcoder)));
4065 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
4066 I915_READ(VBLANK(cpu_transcoder)));
4067 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
4068 I915_READ(VSYNC(cpu_transcoder)));
4069 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
4070 I915_READ(VSYNCSHIFT(cpu_transcoder)));
4071}
4072
003632d9 4073static void cpt_set_fdi_bc_bifurcation(struct drm_device *dev, bool enable)
1fbc0d78
DV
4074{
4075 struct drm_i915_private *dev_priv = dev->dev_private;
4076 uint32_t temp;
4077
4078 temp = I915_READ(SOUTH_CHICKEN1);
003632d9 4079 if (!!(temp & FDI_BC_BIFURCATION_SELECT) == enable)
1fbc0d78
DV
4080 return;
4081
4082 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
4083 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
4084
003632d9
ACO
4085 temp &= ~FDI_BC_BIFURCATION_SELECT;
4086 if (enable)
4087 temp |= FDI_BC_BIFURCATION_SELECT;
4088
4089 DRM_DEBUG_KMS("%sabling fdi C rx\n", enable ? "en" : "dis");
1fbc0d78
DV
4090 I915_WRITE(SOUTH_CHICKEN1, temp);
4091 POSTING_READ(SOUTH_CHICKEN1);
4092}
4093
4094static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
4095{
4096 struct drm_device *dev = intel_crtc->base.dev;
1fbc0d78
DV
4097
4098 switch (intel_crtc->pipe) {
4099 case PIPE_A:
4100 break;
4101 case PIPE_B:
6e3c9717 4102 if (intel_crtc->config->fdi_lanes > 2)
003632d9 4103 cpt_set_fdi_bc_bifurcation(dev, false);
1fbc0d78 4104 else
003632d9 4105 cpt_set_fdi_bc_bifurcation(dev, true);
1fbc0d78
DV
4106
4107 break;
4108 case PIPE_C:
003632d9 4109 cpt_set_fdi_bc_bifurcation(dev, true);
1fbc0d78
DV
4110
4111 break;
4112 default:
4113 BUG();
4114 }
4115}
4116
c48b5305
VS
4117/* Return which DP Port should be selected for Transcoder DP control */
4118static enum port
4119intel_trans_dp_port_sel(struct drm_crtc *crtc)
4120{
4121 struct drm_device *dev = crtc->dev;
4122 struct intel_encoder *encoder;
4123
4124 for_each_encoder_on_crtc(dev, crtc, encoder) {
4125 if (encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
4126 encoder->type == INTEL_OUTPUT_EDP)
4127 return enc_to_dig_port(&encoder->base)->port;
4128 }
4129
4130 return -1;
4131}
4132
f67a559d
JB
4133/*
4134 * Enable PCH resources required for PCH ports:
4135 * - PCH PLLs
4136 * - FDI training & RX/TX
4137 * - update transcoder timings
4138 * - DP transcoding bits
4139 * - transcoder
4140 */
4141static void ironlake_pch_enable(struct drm_crtc *crtc)
0e23b99d
JB
4142{
4143 struct drm_device *dev = crtc->dev;
4144 struct drm_i915_private *dev_priv = dev->dev_private;
4145 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4146 int pipe = intel_crtc->pipe;
f0f59a00 4147 u32 temp;
2c07245f 4148
ab9412ba 4149 assert_pch_transcoder_disabled(dev_priv, pipe);
e7e164db 4150
1fbc0d78
DV
4151 if (IS_IVYBRIDGE(dev))
4152 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
4153
cd986abb
DV
4154 /* Write the TU size bits before fdi link training, so that error
4155 * detection works. */
4156 I915_WRITE(FDI_RX_TUSIZE1(pipe),
4157 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
4158
3860b2ec
VS
4159 /*
4160 * Sometimes spurious CPU pipe underruns happen during FDI
4161 * training, at least with VGA+HDMI cloning. Suppress them.
4162 */
4163 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
4164
c98e9dcf 4165 /* For PCH output, training FDI link */
674cf967 4166 dev_priv->display.fdi_link_train(crtc);
2c07245f 4167
3ad8a208
DV
4168 /* We need to program the right clock selection before writing the pixel
4169 * mutliplier into the DPLL. */
303b81e0 4170 if (HAS_PCH_CPT(dev)) {
ee7b9f93 4171 u32 sel;
4b645f14 4172
c98e9dcf 4173 temp = I915_READ(PCH_DPLL_SEL);
11887397
DV
4174 temp |= TRANS_DPLL_ENABLE(pipe);
4175 sel = TRANS_DPLLB_SEL(pipe);
6e3c9717 4176 if (intel_crtc->config->shared_dpll == DPLL_ID_PCH_PLL_B)
ee7b9f93
JB
4177 temp |= sel;
4178 else
4179 temp &= ~sel;
c98e9dcf 4180 I915_WRITE(PCH_DPLL_SEL, temp);
c98e9dcf 4181 }
5eddb70b 4182
3ad8a208
DV
4183 /* XXX: pch pll's can be enabled any time before we enable the PCH
4184 * transcoder, and we actually should do this to not upset any PCH
4185 * transcoder that already use the clock when we share it.
4186 *
4187 * Note that enable_shared_dpll tries to do the right thing, but
4188 * get_shared_dpll unconditionally resets the pll - we need that to have
4189 * the right LVDS enable sequence. */
85b3894f 4190 intel_enable_shared_dpll(intel_crtc);
3ad8a208 4191
d9b6cb56
JB
4192 /* set transcoder timing, panel must allow it */
4193 assert_panel_unlocked(dev_priv, pipe);
275f01b2 4194 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
8db9d77b 4195
303b81e0 4196 intel_fdi_normal_train(crtc);
5e84e1a4 4197
3860b2ec
VS
4198 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4199
c98e9dcf 4200 /* For PCH DP, enable TRANS_DP_CTL */
6e3c9717 4201 if (HAS_PCH_CPT(dev) && intel_crtc->config->has_dp_encoder) {
9c4edaee
VS
4202 const struct drm_display_mode *adjusted_mode =
4203 &intel_crtc->config->base.adjusted_mode;
dfd07d72 4204 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
f0f59a00 4205 i915_reg_t reg = TRANS_DP_CTL(pipe);
5eddb70b
CW
4206 temp = I915_READ(reg);
4207 temp &= ~(TRANS_DP_PORT_SEL_MASK |
220cad3c
EA
4208 TRANS_DP_SYNC_MASK |
4209 TRANS_DP_BPC_MASK);
e3ef4479 4210 temp |= TRANS_DP_OUTPUT_ENABLE;
9325c9f0 4211 temp |= bpc << 9; /* same format but at 11:9 */
c98e9dcf 4212
9c4edaee 4213 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
5eddb70b 4214 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
9c4edaee 4215 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
5eddb70b 4216 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
c98e9dcf
JB
4217
4218 switch (intel_trans_dp_port_sel(crtc)) {
c48b5305 4219 case PORT_B:
5eddb70b 4220 temp |= TRANS_DP_PORT_SEL_B;
c98e9dcf 4221 break;
c48b5305 4222 case PORT_C:
5eddb70b 4223 temp |= TRANS_DP_PORT_SEL_C;
c98e9dcf 4224 break;
c48b5305 4225 case PORT_D:
5eddb70b 4226 temp |= TRANS_DP_PORT_SEL_D;
c98e9dcf
JB
4227 break;
4228 default:
e95d41e1 4229 BUG();
32f9d658 4230 }
2c07245f 4231
5eddb70b 4232 I915_WRITE(reg, temp);
6be4a607 4233 }
b52eb4dc 4234
b8a4f404 4235 ironlake_enable_pch_transcoder(dev_priv, pipe);
f67a559d
JB
4236}
4237
1507e5bd
PZ
4238static void lpt_pch_enable(struct drm_crtc *crtc)
4239{
4240 struct drm_device *dev = crtc->dev;
4241 struct drm_i915_private *dev_priv = dev->dev_private;
4242 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 4243 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
1507e5bd 4244
ab9412ba 4245 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
1507e5bd 4246
8c52b5e8 4247 lpt_program_iclkip(crtc);
1507e5bd 4248
0540e488 4249 /* Set transcoder timing. */
275f01b2 4250 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
1507e5bd 4251
937bb610 4252 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
f67a559d
JB
4253}
4254
190f68c5
ACO
4255struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc,
4256 struct intel_crtc_state *crtc_state)
ee7b9f93 4257{
e2b78267 4258 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
8bd31e67 4259 struct intel_shared_dpll *pll;
de419ab6 4260 struct intel_shared_dpll_config *shared_dpll;
e2b78267 4261 enum intel_dpll_id i;
00490c22 4262 int max = dev_priv->num_shared_dpll;
ee7b9f93 4263
de419ab6
ML
4264 shared_dpll = intel_atomic_get_shared_dpll_state(crtc_state->base.state);
4265
98b6bd99
DV
4266 if (HAS_PCH_IBX(dev_priv->dev)) {
4267 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
d94ab068 4268 i = (enum intel_dpll_id) crtc->pipe;
e72f9fbf 4269 pll = &dev_priv->shared_dplls[i];
98b6bd99 4270
46edb027
DV
4271 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4272 crtc->base.base.id, pll->name);
98b6bd99 4273
de419ab6 4274 WARN_ON(shared_dpll[i].crtc_mask);
f2a69f44 4275
98b6bd99
DV
4276 goto found;
4277 }
4278
bcddf610
S
4279 if (IS_BROXTON(dev_priv->dev)) {
4280 /* PLL is attached to port in bxt */
4281 struct intel_encoder *encoder;
4282 struct intel_digital_port *intel_dig_port;
4283
4284 encoder = intel_ddi_get_crtc_new_encoder(crtc_state);
4285 if (WARN_ON(!encoder))
4286 return NULL;
4287
4288 intel_dig_port = enc_to_dig_port(&encoder->base);
4289 /* 1:1 mapping between ports and PLLs */
4290 i = (enum intel_dpll_id)intel_dig_port->port;
4291 pll = &dev_priv->shared_dplls[i];
4292 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
4293 crtc->base.base.id, pll->name);
de419ab6 4294 WARN_ON(shared_dpll[i].crtc_mask);
bcddf610
S
4295
4296 goto found;
00490c22
ML
4297 } else if (INTEL_INFO(dev_priv)->gen < 9 && HAS_DDI(dev_priv))
4298 /* Do not consider SPLL */
4299 max = 2;
bcddf610 4300
00490c22 4301 for (i = 0; i < max; i++) {
e72f9fbf 4302 pll = &dev_priv->shared_dplls[i];
ee7b9f93
JB
4303
4304 /* Only want to check enabled timings first */
de419ab6 4305 if (shared_dpll[i].crtc_mask == 0)
ee7b9f93
JB
4306 continue;
4307
190f68c5 4308 if (memcmp(&crtc_state->dpll_hw_state,
de419ab6
ML
4309 &shared_dpll[i].hw_state,
4310 sizeof(crtc_state->dpll_hw_state)) == 0) {
8bd31e67 4311 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (crtc mask 0x%08x, ative %d)\n",
1e6f2ddc 4312 crtc->base.base.id, pll->name,
de419ab6 4313 shared_dpll[i].crtc_mask,
8bd31e67 4314 pll->active);
ee7b9f93
JB
4315 goto found;
4316 }
4317 }
4318
4319 /* Ok no matching timings, maybe there's a free one? */
e72f9fbf
DV
4320 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4321 pll = &dev_priv->shared_dplls[i];
de419ab6 4322 if (shared_dpll[i].crtc_mask == 0) {
46edb027
DV
4323 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
4324 crtc->base.base.id, pll->name);
ee7b9f93
JB
4325 goto found;
4326 }
4327 }
4328
4329 return NULL;
4330
4331found:
de419ab6
ML
4332 if (shared_dpll[i].crtc_mask == 0)
4333 shared_dpll[i].hw_state =
4334 crtc_state->dpll_hw_state;
f2a69f44 4335
190f68c5 4336 crtc_state->shared_dpll = i;
46edb027
DV
4337 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
4338 pipe_name(crtc->pipe));
ee7b9f93 4339
de419ab6 4340 shared_dpll[i].crtc_mask |= 1 << crtc->pipe;
e04c7350 4341
ee7b9f93
JB
4342 return pll;
4343}
4344
de419ab6 4345static void intel_shared_dpll_commit(struct drm_atomic_state *state)
8bd31e67 4346{
de419ab6
ML
4347 struct drm_i915_private *dev_priv = to_i915(state->dev);
4348 struct intel_shared_dpll_config *shared_dpll;
8bd31e67
ACO
4349 struct intel_shared_dpll *pll;
4350 enum intel_dpll_id i;
4351
de419ab6
ML
4352 if (!to_intel_atomic_state(state)->dpll_set)
4353 return;
8bd31e67 4354
de419ab6 4355 shared_dpll = to_intel_atomic_state(state)->shared_dpll;
8bd31e67
ACO
4356 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
4357 pll = &dev_priv->shared_dplls[i];
de419ab6 4358 pll->config = shared_dpll[i];
8bd31e67
ACO
4359 }
4360}
4361
a1520318 4362static void cpt_verify_modeset(struct drm_device *dev, int pipe)
d4270e57
JB
4363{
4364 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 4365 i915_reg_t dslreg = PIPEDSL(pipe);
d4270e57
JB
4366 u32 temp;
4367
4368 temp = I915_READ(dslreg);
4369 udelay(500);
4370 if (wait_for(I915_READ(dslreg) != temp, 5)) {
d4270e57 4371 if (wait_for(I915_READ(dslreg) != temp, 5))
84f44ce7 4372 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
d4270e57
JB
4373 }
4374}
4375
86adf9d7
ML
4376static int
4377skl_update_scaler(struct intel_crtc_state *crtc_state, bool force_detach,
4378 unsigned scaler_user, int *scaler_id, unsigned int rotation,
4379 int src_w, int src_h, int dst_w, int dst_h)
a1b2278e 4380{
86adf9d7
ML
4381 struct intel_crtc_scaler_state *scaler_state =
4382 &crtc_state->scaler_state;
4383 struct intel_crtc *intel_crtc =
4384 to_intel_crtc(crtc_state->base.crtc);
a1b2278e 4385 int need_scaling;
6156a456
CK
4386
4387 need_scaling = intel_rotation_90_or_270(rotation) ?
4388 (src_h != dst_w || src_w != dst_h):
4389 (src_w != dst_w || src_h != dst_h);
a1b2278e
CK
4390
4391 /*
4392 * if plane is being disabled or scaler is no more required or force detach
4393 * - free scaler binded to this plane/crtc
4394 * - in order to do this, update crtc->scaler_usage
4395 *
4396 * Here scaler state in crtc_state is set free so that
4397 * scaler can be assigned to other user. Actual register
4398 * update to free the scaler is done in plane/panel-fit programming.
4399 * For this purpose crtc/plane_state->scaler_id isn't reset here.
4400 */
86adf9d7 4401 if (force_detach || !need_scaling) {
a1b2278e 4402 if (*scaler_id >= 0) {
86adf9d7 4403 scaler_state->scaler_users &= ~(1 << scaler_user);
a1b2278e
CK
4404 scaler_state->scalers[*scaler_id].in_use = 0;
4405
86adf9d7
ML
4406 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4407 "Staged freeing scaler id %d scaler_users = 0x%x\n",
4408 intel_crtc->pipe, scaler_user, *scaler_id,
a1b2278e
CK
4409 scaler_state->scaler_users);
4410 *scaler_id = -1;
4411 }
4412 return 0;
4413 }
4414
4415 /* range checks */
4416 if (src_w < SKL_MIN_SRC_W || src_h < SKL_MIN_SRC_H ||
4417 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H ||
4418
4419 src_w > SKL_MAX_SRC_W || src_h > SKL_MAX_SRC_H ||
4420 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H) {
86adf9d7 4421 DRM_DEBUG_KMS("scaler_user index %u.%u: src %ux%u dst %ux%u "
a1b2278e 4422 "size is out of scaler range\n",
86adf9d7 4423 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h);
a1b2278e
CK
4424 return -EINVAL;
4425 }
4426
86adf9d7
ML
4427 /* mark this plane as a scaler user in crtc_state */
4428 scaler_state->scaler_users |= (1 << scaler_user);
4429 DRM_DEBUG_KMS("scaler_user index %u.%u: "
4430 "staged scaling request for %ux%u->%ux%u scaler_users = 0x%x\n",
4431 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h,
4432 scaler_state->scaler_users);
4433
4434 return 0;
4435}
4436
4437/**
4438 * skl_update_scaler_crtc - Stages update to scaler state for a given crtc.
4439 *
4440 * @state: crtc's scaler state
86adf9d7
ML
4441 *
4442 * Return
4443 * 0 - scaler_usage updated successfully
4444 * error - requested scaling cannot be supported or other error condition
4445 */
e435d6e5 4446int skl_update_scaler_crtc(struct intel_crtc_state *state)
86adf9d7
ML
4447{
4448 struct intel_crtc *intel_crtc = to_intel_crtc(state->base.crtc);
7c5f93b0 4449 const struct drm_display_mode *adjusted_mode = &state->base.adjusted_mode;
86adf9d7
ML
4450
4451 DRM_DEBUG_KMS("Updating scaler for [CRTC:%i] scaler_user index %u.%u\n",
4452 intel_crtc->base.base.id, intel_crtc->pipe, SKL_CRTC_INDEX);
4453
e435d6e5 4454 return skl_update_scaler(state, !state->base.active, SKL_CRTC_INDEX,
86adf9d7
ML
4455 &state->scaler_state.scaler_id, DRM_ROTATE_0,
4456 state->pipe_src_w, state->pipe_src_h,
aad941d5 4457 adjusted_mode->crtc_hdisplay, adjusted_mode->crtc_vdisplay);
86adf9d7
ML
4458}
4459
4460/**
4461 * skl_update_scaler_plane - Stages update to scaler state for a given plane.
4462 *
4463 * @state: crtc's scaler state
86adf9d7
ML
4464 * @plane_state: atomic plane state to update
4465 *
4466 * Return
4467 * 0 - scaler_usage updated successfully
4468 * error - requested scaling cannot be supported or other error condition
4469 */
da20eabd
ML
4470static int skl_update_scaler_plane(struct intel_crtc_state *crtc_state,
4471 struct intel_plane_state *plane_state)
86adf9d7
ML
4472{
4473
4474 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
da20eabd
ML
4475 struct intel_plane *intel_plane =
4476 to_intel_plane(plane_state->base.plane);
86adf9d7
ML
4477 struct drm_framebuffer *fb = plane_state->base.fb;
4478 int ret;
4479
4480 bool force_detach = !fb || !plane_state->visible;
4481
4482 DRM_DEBUG_KMS("Updating scaler for [PLANE:%d] scaler_user index %u.%u\n",
4483 intel_plane->base.base.id, intel_crtc->pipe,
4484 drm_plane_index(&intel_plane->base));
4485
4486 ret = skl_update_scaler(crtc_state, force_detach,
4487 drm_plane_index(&intel_plane->base),
4488 &plane_state->scaler_id,
4489 plane_state->base.rotation,
4490 drm_rect_width(&plane_state->src) >> 16,
4491 drm_rect_height(&plane_state->src) >> 16,
4492 drm_rect_width(&plane_state->dst),
4493 drm_rect_height(&plane_state->dst));
4494
4495 if (ret || plane_state->scaler_id < 0)
4496 return ret;
4497
a1b2278e 4498 /* check colorkey */
818ed961 4499 if (plane_state->ckey.flags != I915_SET_COLORKEY_NONE) {
86adf9d7 4500 DRM_DEBUG_KMS("[PLANE:%d] scaling with color key not allowed",
818ed961 4501 intel_plane->base.base.id);
a1b2278e
CK
4502 return -EINVAL;
4503 }
4504
4505 /* Check src format */
86adf9d7
ML
4506 switch (fb->pixel_format) {
4507 case DRM_FORMAT_RGB565:
4508 case DRM_FORMAT_XBGR8888:
4509 case DRM_FORMAT_XRGB8888:
4510 case DRM_FORMAT_ABGR8888:
4511 case DRM_FORMAT_ARGB8888:
4512 case DRM_FORMAT_XRGB2101010:
4513 case DRM_FORMAT_XBGR2101010:
4514 case DRM_FORMAT_YUYV:
4515 case DRM_FORMAT_YVYU:
4516 case DRM_FORMAT_UYVY:
4517 case DRM_FORMAT_VYUY:
4518 break;
4519 default:
4520 DRM_DEBUG_KMS("[PLANE:%d] FB:%d unsupported scaling format 0x%x\n",
4521 intel_plane->base.base.id, fb->base.id, fb->pixel_format);
4522 return -EINVAL;
a1b2278e
CK
4523 }
4524
a1b2278e
CK
4525 return 0;
4526}
4527
e435d6e5
ML
4528static void skylake_scaler_disable(struct intel_crtc *crtc)
4529{
4530 int i;
4531
4532 for (i = 0; i < crtc->num_scalers; i++)
4533 skl_detach_scaler(crtc, i);
4534}
4535
4536static void skylake_pfit_enable(struct intel_crtc *crtc)
bd2e244f
JB
4537{
4538 struct drm_device *dev = crtc->base.dev;
4539 struct drm_i915_private *dev_priv = dev->dev_private;
4540 int pipe = crtc->pipe;
a1b2278e
CK
4541 struct intel_crtc_scaler_state *scaler_state =
4542 &crtc->config->scaler_state;
4543
4544 DRM_DEBUG_KMS("for crtc_state = %p\n", crtc->config);
4545
6e3c9717 4546 if (crtc->config->pch_pfit.enabled) {
a1b2278e
CK
4547 int id;
4548
4549 if (WARN_ON(crtc->config->scaler_state.scaler_id < 0)) {
4550 DRM_ERROR("Requesting pfit without getting a scaler first\n");
4551 return;
4552 }
4553
4554 id = scaler_state->scaler_id;
4555 I915_WRITE(SKL_PS_CTRL(pipe, id), PS_SCALER_EN |
4556 PS_FILTER_MEDIUM | scaler_state->scalers[id].mode);
4557 I915_WRITE(SKL_PS_WIN_POS(pipe, id), crtc->config->pch_pfit.pos);
4558 I915_WRITE(SKL_PS_WIN_SZ(pipe, id), crtc->config->pch_pfit.size);
4559
4560 DRM_DEBUG_KMS("for crtc_state = %p scaler_id = %d\n", crtc->config, id);
bd2e244f
JB
4561 }
4562}
4563
b074cec8
JB
4564static void ironlake_pfit_enable(struct intel_crtc *crtc)
4565{
4566 struct drm_device *dev = crtc->base.dev;
4567 struct drm_i915_private *dev_priv = dev->dev_private;
4568 int pipe = crtc->pipe;
4569
6e3c9717 4570 if (crtc->config->pch_pfit.enabled) {
b074cec8
JB
4571 /* Force use of hard-coded filter coefficients
4572 * as some pre-programmed values are broken,
4573 * e.g. x201.
4574 */
4575 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
4576 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
4577 PF_PIPE_SEL_IVB(pipe));
4578 else
4579 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
6e3c9717
ACO
4580 I915_WRITE(PF_WIN_POS(pipe), crtc->config->pch_pfit.pos);
4581 I915_WRITE(PF_WIN_SZ(pipe), crtc->config->pch_pfit.size);
d4270e57
JB
4582 }
4583}
4584
20bc8673 4585void hsw_enable_ips(struct intel_crtc *crtc)
d77e4531 4586{
cea165c3
VS
4587 struct drm_device *dev = crtc->base.dev;
4588 struct drm_i915_private *dev_priv = dev->dev_private;
d77e4531 4589
6e3c9717 4590 if (!crtc->config->ips_enabled)
d77e4531
PZ
4591 return;
4592
cea165c3
VS
4593 /* We can only enable IPS after we enable a plane and wait for a vblank */
4594 intel_wait_for_vblank(dev, crtc->pipe);
4595
d77e4531 4596 assert_plane_enabled(dev_priv, crtc->plane);
cea165c3 4597 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4598 mutex_lock(&dev_priv->rps.hw_lock);
4599 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
4600 mutex_unlock(&dev_priv->rps.hw_lock);
4601 /* Quoting Art Runyan: "its not safe to expect any particular
4602 * value in IPS_CTL bit 31 after enabling IPS through the
e59150dc
JB
4603 * mailbox." Moreover, the mailbox may return a bogus state,
4604 * so we need to just enable it and continue on.
2a114cc1
BW
4605 */
4606 } else {
4607 I915_WRITE(IPS_CTL, IPS_ENABLE);
4608 /* The bit only becomes 1 in the next vblank, so this wait here
4609 * is essentially intel_wait_for_vblank. If we don't have this
4610 * and don't wait for vblanks until the end of crtc_enable, then
4611 * the HW state readout code will complain that the expected
4612 * IPS_CTL value is not the one we read. */
4613 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
4614 DRM_ERROR("Timed out waiting for IPS enable\n");
4615 }
d77e4531
PZ
4616}
4617
20bc8673 4618void hsw_disable_ips(struct intel_crtc *crtc)
d77e4531
PZ
4619{
4620 struct drm_device *dev = crtc->base.dev;
4621 struct drm_i915_private *dev_priv = dev->dev_private;
4622
6e3c9717 4623 if (!crtc->config->ips_enabled)
d77e4531
PZ
4624 return;
4625
4626 assert_plane_enabled(dev_priv, crtc->plane);
23d0b130 4627 if (IS_BROADWELL(dev)) {
2a114cc1
BW
4628 mutex_lock(&dev_priv->rps.hw_lock);
4629 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
4630 mutex_unlock(&dev_priv->rps.hw_lock);
23d0b130
BW
4631 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
4632 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
4633 DRM_ERROR("Timed out waiting for IPS disable\n");
e59150dc 4634 } else {
2a114cc1 4635 I915_WRITE(IPS_CTL, 0);
e59150dc
JB
4636 POSTING_READ(IPS_CTL);
4637 }
d77e4531
PZ
4638
4639 /* We need to wait for a vblank before we can disable the plane. */
4640 intel_wait_for_vblank(dev, crtc->pipe);
4641}
4642
4643/** Loads the palette/gamma unit for the CRTC with the prepared values */
4644static void intel_crtc_load_lut(struct drm_crtc *crtc)
4645{
4646 struct drm_device *dev = crtc->dev;
4647 struct drm_i915_private *dev_priv = dev->dev_private;
4648 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4649 enum pipe pipe = intel_crtc->pipe;
d77e4531
PZ
4650 int i;
4651 bool reenable_ips = false;
4652
4653 /* The clocks have to be on to load the palette. */
53d9f4e9 4654 if (!crtc->state->active)
d77e4531
PZ
4655 return;
4656
50360403 4657 if (HAS_GMCH_DISPLAY(dev_priv->dev)) {
a65347ba 4658 if (intel_crtc->config->has_dsi_encoder)
d77e4531
PZ
4659 assert_dsi_pll_enabled(dev_priv);
4660 else
4661 assert_pll_enabled(dev_priv, pipe);
4662 }
4663
d77e4531
PZ
4664 /* Workaround : Do not read or write the pipe palette/gamma data while
4665 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
4666 */
6e3c9717 4667 if (IS_HASWELL(dev) && intel_crtc->config->ips_enabled &&
d77e4531
PZ
4668 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
4669 GAMMA_MODE_MODE_SPLIT)) {
4670 hsw_disable_ips(intel_crtc);
4671 reenable_ips = true;
4672 }
4673
4674 for (i = 0; i < 256; i++) {
f0f59a00 4675 i915_reg_t palreg;
f65a9c5b
VS
4676
4677 if (HAS_GMCH_DISPLAY(dev))
4678 palreg = PALETTE(pipe, i);
4679 else
4680 palreg = LGC_PALETTE(pipe, i);
4681
4682 I915_WRITE(palreg,
d77e4531
PZ
4683 (intel_crtc->lut_r[i] << 16) |
4684 (intel_crtc->lut_g[i] << 8) |
4685 intel_crtc->lut_b[i]);
4686 }
4687
4688 if (reenable_ips)
4689 hsw_enable_ips(intel_crtc);
4690}
4691
7cac945f 4692static void intel_crtc_dpms_overlay_disable(struct intel_crtc *intel_crtc)
d3eedb1a 4693{
7cac945f 4694 if (intel_crtc->overlay) {
d3eedb1a
VS
4695 struct drm_device *dev = intel_crtc->base.dev;
4696 struct drm_i915_private *dev_priv = dev->dev_private;
4697
4698 mutex_lock(&dev->struct_mutex);
4699 dev_priv->mm.interruptible = false;
4700 (void) intel_overlay_switch_off(intel_crtc->overlay);
4701 dev_priv->mm.interruptible = true;
4702 mutex_unlock(&dev->struct_mutex);
4703 }
4704
4705 /* Let userspace switch the overlay on again. In most cases userspace
4706 * has to recompute where to put it anyway.
4707 */
4708}
4709
87d4300a
ML
4710/**
4711 * intel_post_enable_primary - Perform operations after enabling primary plane
4712 * @crtc: the CRTC whose primary plane was just enabled
4713 *
4714 * Performs potentially sleeping operations that must be done after the primary
4715 * plane is enabled, such as updating FBC and IPS. Note that this may be
4716 * called due to an explicit primary plane update, or due to an implicit
4717 * re-enable that is caused when a sprite plane is updated to no longer
4718 * completely hide the primary plane.
4719 */
4720static void
4721intel_post_enable_primary(struct drm_crtc *crtc)
a5c4d7bc
VS
4722{
4723 struct drm_device *dev = crtc->dev;
87d4300a 4724 struct drm_i915_private *dev_priv = dev->dev_private;
a5c4d7bc
VS
4725 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4726 int pipe = intel_crtc->pipe;
a5c4d7bc 4727
87d4300a
ML
4728 /*
4729 * FIXME IPS should be fine as long as one plane is
4730 * enabled, but in practice it seems to have problems
4731 * when going from primary only to sprite only and vice
4732 * versa.
4733 */
a5c4d7bc
VS
4734 hsw_enable_ips(intel_crtc);
4735
f99d7069 4736 /*
87d4300a
ML
4737 * Gen2 reports pipe underruns whenever all planes are disabled.
4738 * So don't enable underrun reporting before at least some planes
4739 * are enabled.
4740 * FIXME: Need to fix the logic to work when we turn off all planes
4741 * but leave the pipe running.
f99d7069 4742 */
87d4300a
ML
4743 if (IS_GEN2(dev))
4744 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4745
aca7b684
VS
4746 /* Underruns don't always raise interrupts, so check manually. */
4747 intel_check_cpu_fifo_underruns(dev_priv);
4748 intel_check_pch_fifo_underruns(dev_priv);
a5c4d7bc
VS
4749}
4750
87d4300a
ML
4751/**
4752 * intel_pre_disable_primary - Perform operations before disabling primary plane
4753 * @crtc: the CRTC whose primary plane is to be disabled
4754 *
4755 * Performs potentially sleeping operations that must be done before the
4756 * primary plane is disabled, such as updating FBC and IPS. Note that this may
4757 * be called due to an explicit primary plane update, or due to an implicit
4758 * disable that is caused when a sprite plane completely hides the primary
4759 * plane.
4760 */
4761static void
4762intel_pre_disable_primary(struct drm_crtc *crtc)
a5c4d7bc
VS
4763{
4764 struct drm_device *dev = crtc->dev;
4765 struct drm_i915_private *dev_priv = dev->dev_private;
4766 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4767 int pipe = intel_crtc->pipe;
a5c4d7bc 4768
87d4300a
ML
4769 /*
4770 * Gen2 reports pipe underruns whenever all planes are disabled.
4771 * So diasble underrun reporting before all the planes get disabled.
4772 * FIXME: Need to fix the logic to work when we turn off all planes
4773 * but leave the pipe running.
4774 */
4775 if (IS_GEN2(dev))
4776 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
a5c4d7bc 4777
87d4300a
ML
4778 /*
4779 * Vblank time updates from the shadow to live plane control register
4780 * are blocked if the memory self-refresh mode is active at that
4781 * moment. So to make sure the plane gets truly disabled, disable
4782 * first the self-refresh mode. The self-refresh enable bit in turn
4783 * will be checked/applied by the HW only at the next frame start
4784 * event which is after the vblank start event, so we need to have a
4785 * wait-for-vblank between disabling the plane and the pipe.
4786 */
262cd2e1 4787 if (HAS_GMCH_DISPLAY(dev)) {
87d4300a 4788 intel_set_memory_cxsr(dev_priv, false);
262cd2e1
VS
4789 dev_priv->wm.vlv.cxsr = false;
4790 intel_wait_for_vblank(dev, pipe);
4791 }
87d4300a 4792
87d4300a
ML
4793 /*
4794 * FIXME IPS should be fine as long as one plane is
4795 * enabled, but in practice it seems to have problems
4796 * when going from primary only to sprite only and vice
4797 * versa.
4798 */
a5c4d7bc 4799 hsw_disable_ips(intel_crtc);
87d4300a
ML
4800}
4801
ac21b225
ML
4802static void intel_post_plane_update(struct intel_crtc *crtc)
4803{
4804 struct intel_crtc_atomic_commit *atomic = &crtc->atomic;
92826fcd
ML
4805 struct intel_crtc_state *pipe_config =
4806 to_intel_crtc_state(crtc->base.state);
ac21b225 4807 struct drm_device *dev = crtc->base.dev;
ac21b225
ML
4808
4809 if (atomic->wait_vblank)
4810 intel_wait_for_vblank(dev, crtc->pipe);
4811
4812 intel_frontbuffer_flip(dev, atomic->fb_bits);
4813
ab1d3a0e 4814 crtc->wm.cxsr_allowed = true;
852eb00d 4815
b9001114 4816 if (pipe_config->wm_changed && pipe_config->base.active)
f015c551
VS
4817 intel_update_watermarks(&crtc->base);
4818
c80ac854 4819 if (atomic->update_fbc)
754d1133 4820 intel_fbc_update(crtc);
ac21b225
ML
4821
4822 if (atomic->post_enable_primary)
4823 intel_post_enable_primary(&crtc->base);
4824
ac21b225
ML
4825 memset(atomic, 0, sizeof(*atomic));
4826}
4827
4828static void intel_pre_plane_update(struct intel_crtc *crtc)
4829{
4830 struct drm_device *dev = crtc->base.dev;
eddfcbcd 4831 struct drm_i915_private *dev_priv = dev->dev_private;
ac21b225 4832 struct intel_crtc_atomic_commit *atomic = &crtc->atomic;
ab1d3a0e
ML
4833 struct intel_crtc_state *pipe_config =
4834 to_intel_crtc_state(crtc->base.state);
ac21b225 4835
c80ac854 4836 if (atomic->disable_fbc)
d029bcad 4837 intel_fbc_deactivate(crtc);
ac21b225 4838
066cf55b
RV
4839 if (crtc->atomic.disable_ips)
4840 hsw_disable_ips(crtc);
4841
ac21b225
ML
4842 if (atomic->pre_disable_primary)
4843 intel_pre_disable_primary(&crtc->base);
852eb00d 4844
ab1d3a0e 4845 if (pipe_config->disable_cxsr) {
852eb00d
VS
4846 crtc->wm.cxsr_allowed = false;
4847 intel_set_memory_cxsr(dev_priv, false);
4848 }
92826fcd
ML
4849
4850 if (!needs_modeset(&pipe_config->base) && pipe_config->wm_changed)
4851 intel_update_watermarks(&crtc->base);
ac21b225
ML
4852}
4853
d032ffa0 4854static void intel_crtc_disable_planes(struct drm_crtc *crtc, unsigned plane_mask)
87d4300a
ML
4855{
4856 struct drm_device *dev = crtc->dev;
4857 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
d032ffa0 4858 struct drm_plane *p;
87d4300a
ML
4859 int pipe = intel_crtc->pipe;
4860
7cac945f 4861 intel_crtc_dpms_overlay_disable(intel_crtc);
27321ae8 4862
d032ffa0
ML
4863 drm_for_each_plane_mask(p, dev, plane_mask)
4864 to_intel_plane(p)->disable_plane(p, crtc);
f98551ae 4865
f99d7069
DV
4866 /*
4867 * FIXME: Once we grow proper nuclear flip support out of this we need
4868 * to compute the mask of flip planes precisely. For the time being
4869 * consider this a flip to a NULL plane.
4870 */
4871 intel_frontbuffer_flip(dev, INTEL_FRONTBUFFER_ALL_MASK(pipe));
a5c4d7bc
VS
4872}
4873
f67a559d
JB
4874static void ironlake_crtc_enable(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;
f67a559d 4880 int pipe = intel_crtc->pipe;
f67a559d 4881
53d9f4e9 4882 if (WARN_ON(intel_crtc->active))
f67a559d
JB
4883 return;
4884
81b088ca
VS
4885 if (intel_crtc->config->has_pch_encoder)
4886 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
4887
6e3c9717 4888 if (intel_crtc->config->has_pch_encoder)
b14b1055
DV
4889 intel_prepare_shared_dpll(intel_crtc);
4890
6e3c9717 4891 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 4892 intel_dp_set_m_n(intel_crtc, M1_N1);
29407aab
DV
4893
4894 intel_set_pipe_timings(intel_crtc);
4895
6e3c9717 4896 if (intel_crtc->config->has_pch_encoder) {
29407aab 4897 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 4898 &intel_crtc->config->fdi_m_n, NULL);
29407aab
DV
4899 }
4900
4901 ironlake_set_pipeconf(crtc);
4902
f67a559d 4903 intel_crtc->active = true;
8664281b 4904
a72e4c9f 4905 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
8664281b 4906
f6736a1a 4907 for_each_encoder_on_crtc(dev, crtc, encoder)
952735ee
DV
4908 if (encoder->pre_enable)
4909 encoder->pre_enable(encoder);
f67a559d 4910
6e3c9717 4911 if (intel_crtc->config->has_pch_encoder) {
fff367c7
DV
4912 /* Note: FDI PLL enabling _must_ be done before we enable the
4913 * cpu pipes, hence this is separate from all the other fdi/pch
4914 * enabling. */
88cefb6c 4915 ironlake_fdi_pll_enable(intel_crtc);
46b6f814
DV
4916 } else {
4917 assert_fdi_tx_disabled(dev_priv, pipe);
4918 assert_fdi_rx_disabled(dev_priv, pipe);
4919 }
f67a559d 4920
b074cec8 4921 ironlake_pfit_enable(intel_crtc);
f67a559d 4922
9c54c0dd
JB
4923 /*
4924 * On ILK+ LUT must be loaded before the pipe is running but with
4925 * clocks enabled
4926 */
4927 intel_crtc_load_lut(crtc);
4928
f37fcc2a 4929 intel_update_watermarks(crtc);
e1fdc473 4930 intel_enable_pipe(intel_crtc);
f67a559d 4931
6e3c9717 4932 if (intel_crtc->config->has_pch_encoder)
f67a559d 4933 ironlake_pch_enable(crtc);
c98e9dcf 4934
f9b61ff6
DV
4935 assert_vblank_disabled(crtc);
4936 drm_crtc_vblank_on(crtc);
4937
fa5c73b1
DV
4938 for_each_encoder_on_crtc(dev, crtc, encoder)
4939 encoder->enable(encoder);
61b77ddd
DV
4940
4941 if (HAS_PCH_CPT(dev))
a1520318 4942 cpt_verify_modeset(dev, intel_crtc->pipe);
37ca8d4c
VS
4943
4944 /* Must wait for vblank to avoid spurious PCH FIFO underruns */
4945 if (intel_crtc->config->has_pch_encoder)
4946 intel_wait_for_vblank(dev, pipe);
4947 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
d029bcad
PZ
4948
4949 intel_fbc_enable(intel_crtc);
6be4a607
JB
4950}
4951
42db64ef
PZ
4952/* IPS only exists on ULT machines and is tied to pipe A. */
4953static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4954{
f5adf94e 4955 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
42db64ef
PZ
4956}
4957
4f771f10
PZ
4958static void haswell_crtc_enable(struct drm_crtc *crtc)
4959{
4960 struct drm_device *dev = crtc->dev;
4961 struct drm_i915_private *dev_priv = dev->dev_private;
4962 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4963 struct intel_encoder *encoder;
99d736a2
ML
4964 int pipe = intel_crtc->pipe, hsw_workaround_pipe;
4965 struct intel_crtc_state *pipe_config =
4966 to_intel_crtc_state(crtc->state);
4f771f10 4967
53d9f4e9 4968 if (WARN_ON(intel_crtc->active))
4f771f10
PZ
4969 return;
4970
81b088ca
VS
4971 if (intel_crtc->config->has_pch_encoder)
4972 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
4973 false);
4974
df8ad70c
DV
4975 if (intel_crtc_to_shared_dpll(intel_crtc))
4976 intel_enable_shared_dpll(intel_crtc);
4977
6e3c9717 4978 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 4979 intel_dp_set_m_n(intel_crtc, M1_N1);
229fca97
DV
4980
4981 intel_set_pipe_timings(intel_crtc);
4982
6e3c9717
ACO
4983 if (intel_crtc->config->cpu_transcoder != TRANSCODER_EDP) {
4984 I915_WRITE(PIPE_MULT(intel_crtc->config->cpu_transcoder),
4985 intel_crtc->config->pixel_multiplier - 1);
ebb69c95
CT
4986 }
4987
6e3c9717 4988 if (intel_crtc->config->has_pch_encoder) {
229fca97 4989 intel_cpu_transcoder_set_m_n(intel_crtc,
6e3c9717 4990 &intel_crtc->config->fdi_m_n, NULL);
229fca97
DV
4991 }
4992
4993 haswell_set_pipeconf(crtc);
4994
4995 intel_set_pipe_csc(crtc);
4996
4f771f10 4997 intel_crtc->active = true;
8664281b 4998
6b698516
DV
4999 if (intel_crtc->config->has_pch_encoder)
5000 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5001 else
5002 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5003
7d4aefd0 5004 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10
PZ
5005 if (encoder->pre_enable)
5006 encoder->pre_enable(encoder);
7d4aefd0 5007 }
4f771f10 5008
d2d65408 5009 if (intel_crtc->config->has_pch_encoder)
4fe9467d 5010 dev_priv->display.fdi_link_train(crtc);
4fe9467d 5011
a65347ba 5012 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 5013 intel_ddi_enable_pipe_clock(intel_crtc);
4f771f10 5014
1c132b44 5015 if (INTEL_INFO(dev)->gen >= 9)
e435d6e5 5016 skylake_pfit_enable(intel_crtc);
ff6d9f55 5017 else
1c132b44 5018 ironlake_pfit_enable(intel_crtc);
4f771f10
PZ
5019
5020 /*
5021 * On ILK+ LUT must be loaded before the pipe is running but with
5022 * clocks enabled
5023 */
5024 intel_crtc_load_lut(crtc);
5025
1f544388 5026 intel_ddi_set_pipe_settings(crtc);
a65347ba 5027 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 5028 intel_ddi_enable_transcoder_func(crtc);
4f771f10 5029
f37fcc2a 5030 intel_update_watermarks(crtc);
e1fdc473 5031 intel_enable_pipe(intel_crtc);
42db64ef 5032
6e3c9717 5033 if (intel_crtc->config->has_pch_encoder)
1507e5bd 5034 lpt_pch_enable(crtc);
4f771f10 5035
a65347ba 5036 if (intel_crtc->config->dp_encoder_is_mst)
0e32b39c
DA
5037 intel_ddi_set_vc_payload_alloc(crtc, true);
5038
f9b61ff6
DV
5039 assert_vblank_disabled(crtc);
5040 drm_crtc_vblank_on(crtc);
5041
8807e55b 5042 for_each_encoder_on_crtc(dev, crtc, encoder) {
4f771f10 5043 encoder->enable(encoder);
8807e55b
JN
5044 intel_opregion_notify_encoder(encoder, true);
5045 }
4f771f10 5046
6b698516
DV
5047 if (intel_crtc->config->has_pch_encoder) {
5048 intel_wait_for_vblank(dev, pipe);
5049 intel_wait_for_vblank(dev, pipe);
5050 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
d2d65408
VS
5051 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5052 true);
6b698516 5053 }
d2d65408 5054
e4916946
PZ
5055 /* If we change the relative order between pipe/planes enabling, we need
5056 * to change the workaround. */
99d736a2
ML
5057 hsw_workaround_pipe = pipe_config->hsw_workaround_pipe;
5058 if (IS_HASWELL(dev) && hsw_workaround_pipe != INVALID_PIPE) {
5059 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5060 intel_wait_for_vblank(dev, hsw_workaround_pipe);
5061 }
d029bcad
PZ
5062
5063 intel_fbc_enable(intel_crtc);
4f771f10
PZ
5064}
5065
bfd16b2a 5066static void ironlake_pfit_disable(struct intel_crtc *crtc, bool force)
3f8dce3a
DV
5067{
5068 struct drm_device *dev = crtc->base.dev;
5069 struct drm_i915_private *dev_priv = dev->dev_private;
5070 int pipe = crtc->pipe;
5071
5072 /* To avoid upsetting the power well on haswell only disable the pfit if
5073 * it's in use. The hw state code will make sure we get this right. */
bfd16b2a 5074 if (force || crtc->config->pch_pfit.enabled) {
3f8dce3a
DV
5075 I915_WRITE(PF_CTL(pipe), 0);
5076 I915_WRITE(PF_WIN_POS(pipe), 0);
5077 I915_WRITE(PF_WIN_SZ(pipe), 0);
5078 }
5079}
5080
6be4a607
JB
5081static void ironlake_crtc_disable(struct drm_crtc *crtc)
5082{
5083 struct drm_device *dev = crtc->dev;
5084 struct drm_i915_private *dev_priv = dev->dev_private;
5085 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 5086 struct intel_encoder *encoder;
6be4a607 5087 int pipe = intel_crtc->pipe;
b52eb4dc 5088
37ca8d4c
VS
5089 if (intel_crtc->config->has_pch_encoder)
5090 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, false);
5091
ea9d758d
DV
5092 for_each_encoder_on_crtc(dev, crtc, encoder)
5093 encoder->disable(encoder);
5094
f9b61ff6
DV
5095 drm_crtc_vblank_off(crtc);
5096 assert_vblank_disabled(crtc);
5097
3860b2ec
VS
5098 /*
5099 * Sometimes spurious CPU pipe underruns happen when the
5100 * pipe is already disabled, but FDI RX/TX is still enabled.
5101 * Happens at least with VGA+HDMI cloning. Suppress them.
5102 */
5103 if (intel_crtc->config->has_pch_encoder)
5104 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
5105
575f7ab7 5106 intel_disable_pipe(intel_crtc);
32f9d658 5107
bfd16b2a 5108 ironlake_pfit_disable(intel_crtc, false);
2c07245f 5109
3860b2ec 5110 if (intel_crtc->config->has_pch_encoder) {
5a74f70a 5111 ironlake_fdi_disable(crtc);
3860b2ec
VS
5112 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
5113 }
5a74f70a 5114
bf49ec8c
DV
5115 for_each_encoder_on_crtc(dev, crtc, encoder)
5116 if (encoder->post_disable)
5117 encoder->post_disable(encoder);
2c07245f 5118
6e3c9717 5119 if (intel_crtc->config->has_pch_encoder) {
d925c59a 5120 ironlake_disable_pch_transcoder(dev_priv, pipe);
6be4a607 5121
d925c59a 5122 if (HAS_PCH_CPT(dev)) {
f0f59a00
VS
5123 i915_reg_t reg;
5124 u32 temp;
5125
d925c59a
DV
5126 /* disable TRANS_DP_CTL */
5127 reg = TRANS_DP_CTL(pipe);
5128 temp = I915_READ(reg);
5129 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
5130 TRANS_DP_PORT_SEL_MASK);
5131 temp |= TRANS_DP_PORT_SEL_NONE;
5132 I915_WRITE(reg, temp);
5133
5134 /* disable DPLL_SEL */
5135 temp = I915_READ(PCH_DPLL_SEL);
11887397 5136 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
d925c59a 5137 I915_WRITE(PCH_DPLL_SEL, temp);
9db4a9c7 5138 }
e3421a18 5139
d925c59a
DV
5140 ironlake_fdi_pll_disable(intel_crtc);
5141 }
81b088ca
VS
5142
5143 intel_set_pch_fifo_underrun_reporting(dev_priv, pipe, true);
d029bcad
PZ
5144
5145 intel_fbc_disable_crtc(intel_crtc);
6be4a607 5146}
1b3c7a47 5147
4f771f10 5148static void haswell_crtc_disable(struct drm_crtc *crtc)
ee7b9f93 5149{
4f771f10
PZ
5150 struct drm_device *dev = crtc->dev;
5151 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93 5152 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4f771f10 5153 struct intel_encoder *encoder;
6e3c9717 5154 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
ee7b9f93 5155
d2d65408
VS
5156 if (intel_crtc->config->has_pch_encoder)
5157 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5158 false);
5159
8807e55b
JN
5160 for_each_encoder_on_crtc(dev, crtc, encoder) {
5161 intel_opregion_notify_encoder(encoder, false);
4f771f10 5162 encoder->disable(encoder);
8807e55b 5163 }
4f771f10 5164
f9b61ff6
DV
5165 drm_crtc_vblank_off(crtc);
5166 assert_vblank_disabled(crtc);
5167
575f7ab7 5168 intel_disable_pipe(intel_crtc);
4f771f10 5169
6e3c9717 5170 if (intel_crtc->config->dp_encoder_is_mst)
a4bf214f
VS
5171 intel_ddi_set_vc_payload_alloc(crtc, false);
5172
a65347ba 5173 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 5174 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
4f771f10 5175
1c132b44 5176 if (INTEL_INFO(dev)->gen >= 9)
e435d6e5 5177 skylake_scaler_disable(intel_crtc);
ff6d9f55 5178 else
bfd16b2a 5179 ironlake_pfit_disable(intel_crtc, false);
4f771f10 5180
a65347ba 5181 if (!intel_crtc->config->has_dsi_encoder)
7d4aefd0 5182 intel_ddi_disable_pipe_clock(intel_crtc);
4f771f10 5183
97b040aa
ID
5184 for_each_encoder_on_crtc(dev, crtc, encoder)
5185 if (encoder->post_disable)
5186 encoder->post_disable(encoder);
81b088ca 5187
92966a37
VS
5188 if (intel_crtc->config->has_pch_encoder) {
5189 lpt_disable_pch_transcoder(dev_priv);
503a74e9 5190 lpt_disable_iclkip(dev_priv);
92966a37
VS
5191 intel_ddi_fdi_disable(crtc);
5192
81b088ca
VS
5193 intel_set_pch_fifo_underrun_reporting(dev_priv, TRANSCODER_A,
5194 true);
92966a37 5195 }
d029bcad
PZ
5196
5197 intel_fbc_disable_crtc(intel_crtc);
4f771f10
PZ
5198}
5199
2dd24552
JB
5200static void i9xx_pfit_enable(struct intel_crtc *crtc)
5201{
5202 struct drm_device *dev = crtc->base.dev;
5203 struct drm_i915_private *dev_priv = dev->dev_private;
6e3c9717 5204 struct intel_crtc_state *pipe_config = crtc->config;
2dd24552 5205
681a8504 5206 if (!pipe_config->gmch_pfit.control)
2dd24552
JB
5207 return;
5208
2dd24552 5209 /*
c0b03411
DV
5210 * The panel fitter should only be adjusted whilst the pipe is disabled,
5211 * according to register description and PRM.
2dd24552 5212 */
c0b03411
DV
5213 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
5214 assert_pipe_disabled(dev_priv, crtc->pipe);
2dd24552 5215
b074cec8
JB
5216 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
5217 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
5a80c45c
DV
5218
5219 /* Border color in case we don't scale up to the full screen. Black by
5220 * default, change to something else for debugging. */
5221 I915_WRITE(BCLRPAT(crtc->pipe), 0);
2dd24552
JB
5222}
5223
d05410f9
DA
5224static enum intel_display_power_domain port_to_power_domain(enum port port)
5225{
5226 switch (port) {
5227 case PORT_A:
6331a704 5228 return POWER_DOMAIN_PORT_DDI_A_LANES;
d05410f9 5229 case PORT_B:
6331a704 5230 return POWER_DOMAIN_PORT_DDI_B_LANES;
d05410f9 5231 case PORT_C:
6331a704 5232 return POWER_DOMAIN_PORT_DDI_C_LANES;
d05410f9 5233 case PORT_D:
6331a704 5234 return POWER_DOMAIN_PORT_DDI_D_LANES;
d8e19f99 5235 case PORT_E:
6331a704 5236 return POWER_DOMAIN_PORT_DDI_E_LANES;
d05410f9 5237 default:
b9fec167 5238 MISSING_CASE(port);
d05410f9
DA
5239 return POWER_DOMAIN_PORT_OTHER;
5240 }
5241}
5242
25f78f58
VS
5243static enum intel_display_power_domain port_to_aux_power_domain(enum port port)
5244{
5245 switch (port) {
5246 case PORT_A:
5247 return POWER_DOMAIN_AUX_A;
5248 case PORT_B:
5249 return POWER_DOMAIN_AUX_B;
5250 case PORT_C:
5251 return POWER_DOMAIN_AUX_C;
5252 case PORT_D:
5253 return POWER_DOMAIN_AUX_D;
5254 case PORT_E:
5255 /* FIXME: Check VBT for actual wiring of PORT E */
5256 return POWER_DOMAIN_AUX_D;
5257 default:
b9fec167 5258 MISSING_CASE(port);
25f78f58
VS
5259 return POWER_DOMAIN_AUX_A;
5260 }
5261}
5262
319be8ae
ID
5263enum intel_display_power_domain
5264intel_display_port_power_domain(struct intel_encoder *intel_encoder)
5265{
5266 struct drm_device *dev = intel_encoder->base.dev;
5267 struct intel_digital_port *intel_dig_port;
5268
5269 switch (intel_encoder->type) {
5270 case INTEL_OUTPUT_UNKNOWN:
5271 /* Only DDI platforms should ever use this output type */
5272 WARN_ON_ONCE(!HAS_DDI(dev));
5273 case INTEL_OUTPUT_DISPLAYPORT:
5274 case INTEL_OUTPUT_HDMI:
5275 case INTEL_OUTPUT_EDP:
5276 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
d05410f9 5277 return port_to_power_domain(intel_dig_port->port);
0e32b39c
DA
5278 case INTEL_OUTPUT_DP_MST:
5279 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5280 return port_to_power_domain(intel_dig_port->port);
319be8ae
ID
5281 case INTEL_OUTPUT_ANALOG:
5282 return POWER_DOMAIN_PORT_CRT;
5283 case INTEL_OUTPUT_DSI:
5284 return POWER_DOMAIN_PORT_DSI;
5285 default:
5286 return POWER_DOMAIN_PORT_OTHER;
5287 }
5288}
5289
25f78f58
VS
5290enum intel_display_power_domain
5291intel_display_port_aux_power_domain(struct intel_encoder *intel_encoder)
5292{
5293 struct drm_device *dev = intel_encoder->base.dev;
5294 struct intel_digital_port *intel_dig_port;
5295
5296 switch (intel_encoder->type) {
5297 case INTEL_OUTPUT_UNKNOWN:
651174a4
ID
5298 case INTEL_OUTPUT_HDMI:
5299 /*
5300 * Only DDI platforms should ever use these output types.
5301 * We can get here after the HDMI detect code has already set
5302 * the type of the shared encoder. Since we can't be sure
5303 * what's the status of the given connectors, play safe and
5304 * run the DP detection too.
5305 */
25f78f58
VS
5306 WARN_ON_ONCE(!HAS_DDI(dev));
5307 case INTEL_OUTPUT_DISPLAYPORT:
5308 case INTEL_OUTPUT_EDP:
5309 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
5310 return port_to_aux_power_domain(intel_dig_port->port);
5311 case INTEL_OUTPUT_DP_MST:
5312 intel_dig_port = enc_to_mst(&intel_encoder->base)->primary;
5313 return port_to_aux_power_domain(intel_dig_port->port);
5314 default:
b9fec167 5315 MISSING_CASE(intel_encoder->type);
25f78f58
VS
5316 return POWER_DOMAIN_AUX_A;
5317 }
5318}
5319
319be8ae 5320static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
77d22dca 5321{
319be8ae
ID
5322 struct drm_device *dev = crtc->dev;
5323 struct intel_encoder *intel_encoder;
5324 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5325 enum pipe pipe = intel_crtc->pipe;
77d22dca 5326 unsigned long mask;
1a70a728 5327 enum transcoder transcoder = intel_crtc->config->cpu_transcoder;
77d22dca 5328
292b990e
ML
5329 if (!crtc->state->active)
5330 return 0;
5331
77d22dca
ID
5332 mask = BIT(POWER_DOMAIN_PIPE(pipe));
5333 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
6e3c9717
ACO
5334 if (intel_crtc->config->pch_pfit.enabled ||
5335 intel_crtc->config->pch_pfit.force_thru)
77d22dca
ID
5336 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
5337
319be8ae
ID
5338 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
5339 mask |= BIT(intel_display_port_power_domain(intel_encoder));
5340
77d22dca
ID
5341 return mask;
5342}
5343
292b990e 5344static unsigned long modeset_get_crtc_power_domains(struct drm_crtc *crtc)
77d22dca 5345{
292b990e
ML
5346 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5347 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5348 enum intel_display_power_domain domain;
5349 unsigned long domains, new_domains, old_domains;
77d22dca 5350
292b990e
ML
5351 old_domains = intel_crtc->enabled_power_domains;
5352 intel_crtc->enabled_power_domains = new_domains = get_crtc_power_domains(crtc);
77d22dca 5353
292b990e
ML
5354 domains = new_domains & ~old_domains;
5355
5356 for_each_power_domain(domain, domains)
5357 intel_display_power_get(dev_priv, domain);
5358
5359 return old_domains & ~new_domains;
5360}
5361
5362static void modeset_put_power_domains(struct drm_i915_private *dev_priv,
5363 unsigned long domains)
5364{
5365 enum intel_display_power_domain domain;
5366
5367 for_each_power_domain(domain, domains)
5368 intel_display_power_put(dev_priv, domain);
5369}
77d22dca 5370
292b990e
ML
5371static void modeset_update_crtc_power_domains(struct drm_atomic_state *state)
5372{
5373 struct drm_device *dev = state->dev;
5374 struct drm_i915_private *dev_priv = dev->dev_private;
5375 unsigned long put_domains[I915_MAX_PIPES] = {};
5376 struct drm_crtc_state *crtc_state;
5377 struct drm_crtc *crtc;
5378 int i;
77d22dca 5379
292b990e
ML
5380 for_each_crtc_in_state(state, crtc, crtc_state, i) {
5381 if (needs_modeset(crtc->state))
5382 put_domains[to_intel_crtc(crtc)->pipe] =
5383 modeset_get_crtc_power_domains(crtc);
77d22dca
ID
5384 }
5385
27c329ed
ML
5386 if (dev_priv->display.modeset_commit_cdclk) {
5387 unsigned int cdclk = to_intel_atomic_state(state)->cdclk;
5388
5389 if (cdclk != dev_priv->cdclk_freq &&
5390 !WARN_ON(!state->allow_modeset))
5391 dev_priv->display.modeset_commit_cdclk(state);
5392 }
50f6e502 5393
292b990e
ML
5394 for (i = 0; i < I915_MAX_PIPES; i++)
5395 if (put_domains[i])
5396 modeset_put_power_domains(dev_priv, put_domains[i]);
77d22dca
ID
5397}
5398
adafdc6f
MK
5399static int intel_compute_max_dotclk(struct drm_i915_private *dev_priv)
5400{
5401 int max_cdclk_freq = dev_priv->max_cdclk_freq;
5402
5403 if (INTEL_INFO(dev_priv)->gen >= 9 ||
5404 IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
5405 return max_cdclk_freq;
5406 else if (IS_CHERRYVIEW(dev_priv))
5407 return max_cdclk_freq*95/100;
5408 else if (INTEL_INFO(dev_priv)->gen < 4)
5409 return 2*max_cdclk_freq*90/100;
5410 else
5411 return max_cdclk_freq*90/100;
5412}
5413
560a7ae4
DL
5414static void intel_update_max_cdclk(struct drm_device *dev)
5415{
5416 struct drm_i915_private *dev_priv = dev->dev_private;
5417
ef11bdb3 5418 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
560a7ae4
DL
5419 u32 limit = I915_READ(SKL_DFSM) & SKL_DFSM_CDCLK_LIMIT_MASK;
5420
5421 if (limit == SKL_DFSM_CDCLK_LIMIT_675)
5422 dev_priv->max_cdclk_freq = 675000;
5423 else if (limit == SKL_DFSM_CDCLK_LIMIT_540)
5424 dev_priv->max_cdclk_freq = 540000;
5425 else if (limit == SKL_DFSM_CDCLK_LIMIT_450)
5426 dev_priv->max_cdclk_freq = 450000;
5427 else
5428 dev_priv->max_cdclk_freq = 337500;
5429 } else if (IS_BROADWELL(dev)) {
5430 /*
5431 * FIXME with extra cooling we can allow
5432 * 540 MHz for ULX and 675 Mhz for ULT.
5433 * How can we know if extra cooling is
5434 * available? PCI ID, VTB, something else?
5435 */
5436 if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
5437 dev_priv->max_cdclk_freq = 450000;
5438 else if (IS_BDW_ULX(dev))
5439 dev_priv->max_cdclk_freq = 450000;
5440 else if (IS_BDW_ULT(dev))
5441 dev_priv->max_cdclk_freq = 540000;
5442 else
5443 dev_priv->max_cdclk_freq = 675000;
0904deaf
MK
5444 } else if (IS_CHERRYVIEW(dev)) {
5445 dev_priv->max_cdclk_freq = 320000;
560a7ae4
DL
5446 } else if (IS_VALLEYVIEW(dev)) {
5447 dev_priv->max_cdclk_freq = 400000;
5448 } else {
5449 /* otherwise assume cdclk is fixed */
5450 dev_priv->max_cdclk_freq = dev_priv->cdclk_freq;
5451 }
5452
adafdc6f
MK
5453 dev_priv->max_dotclk_freq = intel_compute_max_dotclk(dev_priv);
5454
560a7ae4
DL
5455 DRM_DEBUG_DRIVER("Max CD clock rate: %d kHz\n",
5456 dev_priv->max_cdclk_freq);
adafdc6f
MK
5457
5458 DRM_DEBUG_DRIVER("Max dotclock rate: %d kHz\n",
5459 dev_priv->max_dotclk_freq);
560a7ae4
DL
5460}
5461
5462static void intel_update_cdclk(struct drm_device *dev)
5463{
5464 struct drm_i915_private *dev_priv = dev->dev_private;
5465
5466 dev_priv->cdclk_freq = dev_priv->display.get_display_clock_speed(dev);
5467 DRM_DEBUG_DRIVER("Current CD clock rate: %d kHz\n",
5468 dev_priv->cdclk_freq);
5469
5470 /*
5471 * Program the gmbus_freq based on the cdclk frequency.
5472 * BSpec erroneously claims we should aim for 4MHz, but
5473 * in fact 1MHz is the correct frequency.
5474 */
666a4537 5475 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
560a7ae4
DL
5476 /*
5477 * Program the gmbus_freq based on the cdclk frequency.
5478 * BSpec erroneously claims we should aim for 4MHz, but
5479 * in fact 1MHz is the correct frequency.
5480 */
5481 I915_WRITE(GMBUSFREQ_VLV, DIV_ROUND_UP(dev_priv->cdclk_freq, 1000));
5482 }
5483
5484 if (dev_priv->max_cdclk_freq == 0)
5485 intel_update_max_cdclk(dev);
5486}
5487
70d0c574 5488static void broxton_set_cdclk(struct drm_device *dev, int frequency)
f8437dd1
VK
5489{
5490 struct drm_i915_private *dev_priv = dev->dev_private;
5491 uint32_t divider;
5492 uint32_t ratio;
5493 uint32_t current_freq;
5494 int ret;
5495
5496 /* frequency = 19.2MHz * ratio / 2 / div{1,1.5,2,4} */
5497 switch (frequency) {
5498 case 144000:
5499 divider = BXT_CDCLK_CD2X_DIV_SEL_4;
5500 ratio = BXT_DE_PLL_RATIO(60);
5501 break;
5502 case 288000:
5503 divider = BXT_CDCLK_CD2X_DIV_SEL_2;
5504 ratio = BXT_DE_PLL_RATIO(60);
5505 break;
5506 case 384000:
5507 divider = BXT_CDCLK_CD2X_DIV_SEL_1_5;
5508 ratio = BXT_DE_PLL_RATIO(60);
5509 break;
5510 case 576000:
5511 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5512 ratio = BXT_DE_PLL_RATIO(60);
5513 break;
5514 case 624000:
5515 divider = BXT_CDCLK_CD2X_DIV_SEL_1;
5516 ratio = BXT_DE_PLL_RATIO(65);
5517 break;
5518 case 19200:
5519 /*
5520 * Bypass frequency with DE PLL disabled. Init ratio, divider
5521 * to suppress GCC warning.
5522 */
5523 ratio = 0;
5524 divider = 0;
5525 break;
5526 default:
5527 DRM_ERROR("unsupported CDCLK freq %d", frequency);
5528
5529 return;
5530 }
5531
5532 mutex_lock(&dev_priv->rps.hw_lock);
5533 /* Inform power controller of upcoming frequency change */
5534 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5535 0x80000000);
5536 mutex_unlock(&dev_priv->rps.hw_lock);
5537
5538 if (ret) {
5539 DRM_ERROR("PCode CDCLK freq change notify failed (err %d, freq %d)\n",
5540 ret, frequency);
5541 return;
5542 }
5543
5544 current_freq = I915_READ(CDCLK_CTL) & CDCLK_FREQ_DECIMAL_MASK;
5545 /* convert from .1 fixpoint MHz with -1MHz offset to kHz */
5546 current_freq = current_freq * 500 + 1000;
5547
5548 /*
5549 * DE PLL has to be disabled when
5550 * - setting to 19.2MHz (bypass, PLL isn't used)
5551 * - before setting to 624MHz (PLL needs toggling)
5552 * - before setting to any frequency from 624MHz (PLL needs toggling)
5553 */
5554 if (frequency == 19200 || frequency == 624000 ||
5555 current_freq == 624000) {
5556 I915_WRITE(BXT_DE_PLL_ENABLE, ~BXT_DE_PLL_PLL_ENABLE);
5557 /* Timeout 200us */
5558 if (wait_for(!(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK),
5559 1))
5560 DRM_ERROR("timout waiting for DE PLL unlock\n");
5561 }
5562
5563 if (frequency != 19200) {
5564 uint32_t val;
5565
5566 val = I915_READ(BXT_DE_PLL_CTL);
5567 val &= ~BXT_DE_PLL_RATIO_MASK;
5568 val |= ratio;
5569 I915_WRITE(BXT_DE_PLL_CTL, val);
5570
5571 I915_WRITE(BXT_DE_PLL_ENABLE, BXT_DE_PLL_PLL_ENABLE);
5572 /* Timeout 200us */
5573 if (wait_for(I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_LOCK, 1))
5574 DRM_ERROR("timeout waiting for DE PLL lock\n");
5575
5576 val = I915_READ(CDCLK_CTL);
5577 val &= ~BXT_CDCLK_CD2X_DIV_SEL_MASK;
5578 val |= divider;
5579 /*
5580 * Disable SSA Precharge when CD clock frequency < 500 MHz,
5581 * enable otherwise.
5582 */
5583 val &= ~BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5584 if (frequency >= 500000)
5585 val |= BXT_CDCLK_SSA_PRECHARGE_ENABLE;
5586
5587 val &= ~CDCLK_FREQ_DECIMAL_MASK;
5588 /* convert from kHz to .1 fixpoint MHz with -1MHz offset */
5589 val |= (frequency - 1000) / 500;
5590 I915_WRITE(CDCLK_CTL, val);
5591 }
5592
5593 mutex_lock(&dev_priv->rps.hw_lock);
5594 ret = sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ,
5595 DIV_ROUND_UP(frequency, 25000));
5596 mutex_unlock(&dev_priv->rps.hw_lock);
5597
5598 if (ret) {
5599 DRM_ERROR("PCode CDCLK freq set failed, (err %d, freq %d)\n",
5600 ret, frequency);
5601 return;
5602 }
5603
a47871bd 5604 intel_update_cdclk(dev);
f8437dd1
VK
5605}
5606
5607void broxton_init_cdclk(struct drm_device *dev)
5608{
5609 struct drm_i915_private *dev_priv = dev->dev_private;
5610 uint32_t val;
5611
5612 /*
5613 * NDE_RSTWRN_OPT RST PCH Handshake En must always be 0b on BXT
5614 * or else the reset will hang because there is no PCH to respond.
5615 * Move the handshake programming to initialization sequence.
5616 * Previously was left up to BIOS.
5617 */
5618 val = I915_READ(HSW_NDE_RSTWRN_OPT);
5619 val &= ~RESET_PCH_HANDSHAKE_ENABLE;
5620 I915_WRITE(HSW_NDE_RSTWRN_OPT, val);
5621
5622 /* Enable PG1 for cdclk */
5623 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5624
5625 /* check if cd clock is enabled */
5626 if (I915_READ(BXT_DE_PLL_ENABLE) & BXT_DE_PLL_PLL_ENABLE) {
5627 DRM_DEBUG_KMS("Display already initialized\n");
5628 return;
5629 }
5630
5631 /*
5632 * FIXME:
5633 * - The initial CDCLK needs to be read from VBT.
5634 * Need to make this change after VBT has changes for BXT.
5635 * - check if setting the max (or any) cdclk freq is really necessary
5636 * here, it belongs to modeset time
5637 */
5638 broxton_set_cdclk(dev, 624000);
5639
5640 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
22e02c0b
VS
5641 POSTING_READ(DBUF_CTL);
5642
f8437dd1
VK
5643 udelay(10);
5644
5645 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5646 DRM_ERROR("DBuf power enable timeout!\n");
5647}
5648
5649void broxton_uninit_cdclk(struct drm_device *dev)
5650{
5651 struct drm_i915_private *dev_priv = dev->dev_private;
5652
5653 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
22e02c0b
VS
5654 POSTING_READ(DBUF_CTL);
5655
f8437dd1
VK
5656 udelay(10);
5657
5658 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5659 DRM_ERROR("DBuf power disable timeout!\n");
5660
5661 /* Set minimum (bypass) frequency, in effect turning off the DE PLL */
5662 broxton_set_cdclk(dev, 19200);
5663
5664 intel_display_power_put(dev_priv, POWER_DOMAIN_PLLS);
5665}
5666
5d96d8af
DL
5667static const struct skl_cdclk_entry {
5668 unsigned int freq;
5669 unsigned int vco;
5670} skl_cdclk_frequencies[] = {
5671 { .freq = 308570, .vco = 8640 },
5672 { .freq = 337500, .vco = 8100 },
5673 { .freq = 432000, .vco = 8640 },
5674 { .freq = 450000, .vco = 8100 },
5675 { .freq = 540000, .vco = 8100 },
5676 { .freq = 617140, .vco = 8640 },
5677 { .freq = 675000, .vco = 8100 },
5678};
5679
5680static unsigned int skl_cdclk_decimal(unsigned int freq)
5681{
5682 return (freq - 1000) / 500;
5683}
5684
5685static unsigned int skl_cdclk_get_vco(unsigned int freq)
5686{
5687 unsigned int i;
5688
5689 for (i = 0; i < ARRAY_SIZE(skl_cdclk_frequencies); i++) {
5690 const struct skl_cdclk_entry *e = &skl_cdclk_frequencies[i];
5691
5692 if (e->freq == freq)
5693 return e->vco;
5694 }
5695
5696 return 8100;
5697}
5698
5699static void
5700skl_dpll0_enable(struct drm_i915_private *dev_priv, unsigned int required_vco)
5701{
5702 unsigned int min_freq;
5703 u32 val;
5704
5705 /* select the minimum CDCLK before enabling DPLL 0 */
5706 val = I915_READ(CDCLK_CTL);
5707 val &= ~CDCLK_FREQ_SEL_MASK | ~CDCLK_FREQ_DECIMAL_MASK;
5708 val |= CDCLK_FREQ_337_308;
5709
5710 if (required_vco == 8640)
5711 min_freq = 308570;
5712 else
5713 min_freq = 337500;
5714
5715 val = CDCLK_FREQ_337_308 | skl_cdclk_decimal(min_freq);
5716
5717 I915_WRITE(CDCLK_CTL, val);
5718 POSTING_READ(CDCLK_CTL);
5719
5720 /*
5721 * We always enable DPLL0 with the lowest link rate possible, but still
5722 * taking into account the VCO required to operate the eDP panel at the
5723 * desired frequency. The usual DP link rates operate with a VCO of
5724 * 8100 while the eDP 1.4 alternate link rates need a VCO of 8640.
5725 * The modeset code is responsible for the selection of the exact link
5726 * rate later on, with the constraint of choosing a frequency that
5727 * works with required_vco.
5728 */
5729 val = I915_READ(DPLL_CTRL1);
5730
5731 val &= ~(DPLL_CTRL1_HDMI_MODE(SKL_DPLL0) | DPLL_CTRL1_SSC(SKL_DPLL0) |
5732 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0));
5733 val |= DPLL_CTRL1_OVERRIDE(SKL_DPLL0);
5734 if (required_vco == 8640)
5735 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_1080,
5736 SKL_DPLL0);
5737 else
5738 val |= DPLL_CTRL1_LINK_RATE(DPLL_CTRL1_LINK_RATE_810,
5739 SKL_DPLL0);
5740
5741 I915_WRITE(DPLL_CTRL1, val);
5742 POSTING_READ(DPLL_CTRL1);
5743
5744 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) | LCPLL_PLL_ENABLE);
5745
5746 if (wait_for(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK, 5))
5747 DRM_ERROR("DPLL0 not locked\n");
5748}
5749
5750static bool skl_cdclk_pcu_ready(struct drm_i915_private *dev_priv)
5751{
5752 int ret;
5753 u32 val;
5754
5755 /* inform PCU we want to change CDCLK */
5756 val = SKL_CDCLK_PREPARE_FOR_CHANGE;
5757 mutex_lock(&dev_priv->rps.hw_lock);
5758 ret = sandybridge_pcode_read(dev_priv, SKL_PCODE_CDCLK_CONTROL, &val);
5759 mutex_unlock(&dev_priv->rps.hw_lock);
5760
5761 return ret == 0 && (val & SKL_CDCLK_READY_FOR_CHANGE);
5762}
5763
5764static bool skl_cdclk_wait_for_pcu_ready(struct drm_i915_private *dev_priv)
5765{
5766 unsigned int i;
5767
5768 for (i = 0; i < 15; i++) {
5769 if (skl_cdclk_pcu_ready(dev_priv))
5770 return true;
5771 udelay(10);
5772 }
5773
5774 return false;
5775}
5776
5777static void skl_set_cdclk(struct drm_i915_private *dev_priv, unsigned int freq)
5778{
560a7ae4 5779 struct drm_device *dev = dev_priv->dev;
5d96d8af
DL
5780 u32 freq_select, pcu_ack;
5781
5782 DRM_DEBUG_DRIVER("Changing CDCLK to %dKHz\n", freq);
5783
5784 if (!skl_cdclk_wait_for_pcu_ready(dev_priv)) {
5785 DRM_ERROR("failed to inform PCU about cdclk change\n");
5786 return;
5787 }
5788
5789 /* set CDCLK_CTL */
5790 switch(freq) {
5791 case 450000:
5792 case 432000:
5793 freq_select = CDCLK_FREQ_450_432;
5794 pcu_ack = 1;
5795 break;
5796 case 540000:
5797 freq_select = CDCLK_FREQ_540;
5798 pcu_ack = 2;
5799 break;
5800 case 308570:
5801 case 337500:
5802 default:
5803 freq_select = CDCLK_FREQ_337_308;
5804 pcu_ack = 0;
5805 break;
5806 case 617140:
5807 case 675000:
5808 freq_select = CDCLK_FREQ_675_617;
5809 pcu_ack = 3;
5810 break;
5811 }
5812
5813 I915_WRITE(CDCLK_CTL, freq_select | skl_cdclk_decimal(freq));
5814 POSTING_READ(CDCLK_CTL);
5815
5816 /* inform PCU of the change */
5817 mutex_lock(&dev_priv->rps.hw_lock);
5818 sandybridge_pcode_write(dev_priv, SKL_PCODE_CDCLK_CONTROL, pcu_ack);
5819 mutex_unlock(&dev_priv->rps.hw_lock);
560a7ae4
DL
5820
5821 intel_update_cdclk(dev);
5d96d8af
DL
5822}
5823
5824void skl_uninit_cdclk(struct drm_i915_private *dev_priv)
5825{
5826 /* disable DBUF power */
5827 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) & ~DBUF_POWER_REQUEST);
5828 POSTING_READ(DBUF_CTL);
5829
5830 udelay(10);
5831
5832 if (I915_READ(DBUF_CTL) & DBUF_POWER_STATE)
5833 DRM_ERROR("DBuf power disable timeout\n");
5834
ab96c1ee
ID
5835 /* disable DPLL0 */
5836 I915_WRITE(LCPLL1_CTL, I915_READ(LCPLL1_CTL) & ~LCPLL_PLL_ENABLE);
5837 if (wait_for(!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_LOCK), 1))
5838 DRM_ERROR("Couldn't disable DPLL0\n");
5d96d8af
DL
5839}
5840
5841void skl_init_cdclk(struct drm_i915_private *dev_priv)
5842{
5d96d8af
DL
5843 unsigned int required_vco;
5844
39d9b85a
GW
5845 /* DPLL0 not enabled (happens on early BIOS versions) */
5846 if (!(I915_READ(LCPLL1_CTL) & LCPLL_PLL_ENABLE)) {
5847 /* enable DPLL0 */
5848 required_vco = skl_cdclk_get_vco(dev_priv->skl_boot_cdclk);
5849 skl_dpll0_enable(dev_priv, required_vco);
5d96d8af
DL
5850 }
5851
5d96d8af
DL
5852 /* set CDCLK to the frequency the BIOS chose */
5853 skl_set_cdclk(dev_priv, dev_priv->skl_boot_cdclk);
5854
5855 /* enable DBUF power */
5856 I915_WRITE(DBUF_CTL, I915_READ(DBUF_CTL) | DBUF_POWER_REQUEST);
5857 POSTING_READ(DBUF_CTL);
5858
5859 udelay(10);
5860
5861 if (!(I915_READ(DBUF_CTL) & DBUF_POWER_STATE))
5862 DRM_ERROR("DBuf power enable timeout\n");
5863}
5864
c73666f3
SK
5865int skl_sanitize_cdclk(struct drm_i915_private *dev_priv)
5866{
5867 uint32_t lcpll1 = I915_READ(LCPLL1_CTL);
5868 uint32_t cdctl = I915_READ(CDCLK_CTL);
5869 int freq = dev_priv->skl_boot_cdclk;
5870
f1b391a5
SK
5871 /*
5872 * check if the pre-os intialized the display
5873 * There is SWF18 scratchpad register defined which is set by the
5874 * pre-os which can be used by the OS drivers to check the status
5875 */
5876 if ((I915_READ(SWF_ILK(0x18)) & 0x00FFFFFF) == 0)
5877 goto sanitize;
5878
c73666f3
SK
5879 /* Is PLL enabled and locked ? */
5880 if (!((lcpll1 & LCPLL_PLL_ENABLE) && (lcpll1 & LCPLL_PLL_LOCK)))
5881 goto sanitize;
5882
5883 /* DPLL okay; verify the cdclock
5884 *
5885 * Noticed in some instances that the freq selection is correct but
5886 * decimal part is programmed wrong from BIOS where pre-os does not
5887 * enable display. Verify the same as well.
5888 */
5889 if (cdctl == ((cdctl & CDCLK_FREQ_SEL_MASK) | skl_cdclk_decimal(freq)))
5890 /* All well; nothing to sanitize */
5891 return false;
5892sanitize:
5893 /*
5894 * As of now initialize with max cdclk till
5895 * we get dynamic cdclk support
5896 * */
5897 dev_priv->skl_boot_cdclk = dev_priv->max_cdclk_freq;
5898 skl_init_cdclk(dev_priv);
5899
5900 /* we did have to sanitize */
5901 return true;
5902}
5903
30a970c6
JB
5904/* Adjust CDclk dividers to allow high res or save power if possible */
5905static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
5906{
5907 struct drm_i915_private *dev_priv = dev->dev_private;
5908 u32 val, cmd;
5909
164dfd28
VK
5910 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5911 != dev_priv->cdclk_freq);
d60c4473 5912
dfcab17e 5913 if (cdclk >= 320000) /* jump to highest voltage for 400MHz too */
30a970c6 5914 cmd = 2;
dfcab17e 5915 else if (cdclk == 266667)
30a970c6
JB
5916 cmd = 1;
5917 else
5918 cmd = 0;
5919
5920 mutex_lock(&dev_priv->rps.hw_lock);
5921 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5922 val &= ~DSPFREQGUAR_MASK;
5923 val |= (cmd << DSPFREQGUAR_SHIFT);
5924 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
5925 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
5926 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
5927 50)) {
5928 DRM_ERROR("timed out waiting for CDclk change\n");
5929 }
5930 mutex_unlock(&dev_priv->rps.hw_lock);
5931
54433e91
VS
5932 mutex_lock(&dev_priv->sb_lock);
5933
dfcab17e 5934 if (cdclk == 400000) {
6bcda4f0 5935 u32 divider;
30a970c6 5936
6bcda4f0 5937 divider = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
30a970c6 5938
30a970c6
JB
5939 /* adjust cdclk divider */
5940 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
87d5d259 5941 val &= ~CCK_FREQUENCY_VALUES;
30a970c6
JB
5942 val |= divider;
5943 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
a877e801
VS
5944
5945 if (wait_for((vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL) &
87d5d259 5946 CCK_FREQUENCY_STATUS) == (divider << CCK_FREQUENCY_STATUS_SHIFT),
a877e801
VS
5947 50))
5948 DRM_ERROR("timed out waiting for CDclk change\n");
30a970c6
JB
5949 }
5950
30a970c6
JB
5951 /* adjust self-refresh exit latency value */
5952 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
5953 val &= ~0x7f;
5954
5955 /*
5956 * For high bandwidth configs, we set a higher latency in the bunit
5957 * so that the core display fetch happens in time to avoid underruns.
5958 */
dfcab17e 5959 if (cdclk == 400000)
30a970c6
JB
5960 val |= 4500 / 250; /* 4.5 usec */
5961 else
5962 val |= 3000 / 250; /* 3.0 usec */
5963 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
54433e91 5964
a580516d 5965 mutex_unlock(&dev_priv->sb_lock);
30a970c6 5966
b6283055 5967 intel_update_cdclk(dev);
30a970c6
JB
5968}
5969
383c5a6a
VS
5970static void cherryview_set_cdclk(struct drm_device *dev, int cdclk)
5971{
5972 struct drm_i915_private *dev_priv = dev->dev_private;
5973 u32 val, cmd;
5974
164dfd28
VK
5975 WARN_ON(dev_priv->display.get_display_clock_speed(dev)
5976 != dev_priv->cdclk_freq);
383c5a6a
VS
5977
5978 switch (cdclk) {
383c5a6a
VS
5979 case 333333:
5980 case 320000:
383c5a6a 5981 case 266667:
383c5a6a 5982 case 200000:
383c5a6a
VS
5983 break;
5984 default:
5f77eeb0 5985 MISSING_CASE(cdclk);
383c5a6a
VS
5986 return;
5987 }
5988
9d0d3fda
VS
5989 /*
5990 * Specs are full of misinformation, but testing on actual
5991 * hardware has shown that we just need to write the desired
5992 * CCK divider into the Punit register.
5993 */
5994 cmd = DIV_ROUND_CLOSEST(dev_priv->hpll_freq << 1, cdclk) - 1;
5995
383c5a6a
VS
5996 mutex_lock(&dev_priv->rps.hw_lock);
5997 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5998 val &= ~DSPFREQGUAR_MASK_CHV;
5999 val |= (cmd << DSPFREQGUAR_SHIFT_CHV);
6000 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
6001 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
6002 DSPFREQSTAT_MASK_CHV) == (cmd << DSPFREQSTAT_SHIFT_CHV),
6003 50)) {
6004 DRM_ERROR("timed out waiting for CDclk change\n");
6005 }
6006 mutex_unlock(&dev_priv->rps.hw_lock);
6007
b6283055 6008 intel_update_cdclk(dev);
383c5a6a
VS
6009}
6010
30a970c6
JB
6011static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
6012 int max_pixclk)
6013{
6bcda4f0 6014 int freq_320 = (dev_priv->hpll_freq << 1) % 320000 != 0 ? 333333 : 320000;
6cca3195 6015 int limit = IS_CHERRYVIEW(dev_priv) ? 95 : 90;
29dc7ef3 6016
30a970c6
JB
6017 /*
6018 * Really only a few cases to deal with, as only 4 CDclks are supported:
6019 * 200MHz
6020 * 267MHz
29dc7ef3 6021 * 320/333MHz (depends on HPLL freq)
6cca3195
VS
6022 * 400MHz (VLV only)
6023 * So we check to see whether we're above 90% (VLV) or 95% (CHV)
6024 * of the lower bin and adjust if needed.
e37c67a1
VS
6025 *
6026 * We seem to get an unstable or solid color picture at 200MHz.
6027 * Not sure what's wrong. For now use 200MHz only when all pipes
6028 * are off.
30a970c6 6029 */
6cca3195
VS
6030 if (!IS_CHERRYVIEW(dev_priv) &&
6031 max_pixclk > freq_320*limit/100)
dfcab17e 6032 return 400000;
6cca3195 6033 else if (max_pixclk > 266667*limit/100)
29dc7ef3 6034 return freq_320;
e37c67a1 6035 else if (max_pixclk > 0)
dfcab17e 6036 return 266667;
e37c67a1
VS
6037 else
6038 return 200000;
30a970c6
JB
6039}
6040
f8437dd1
VK
6041static int broxton_calc_cdclk(struct drm_i915_private *dev_priv,
6042 int max_pixclk)
6043{
6044 /*
6045 * FIXME:
6046 * - remove the guardband, it's not needed on BXT
6047 * - set 19.2MHz bypass frequency if there are no active pipes
6048 */
6049 if (max_pixclk > 576000*9/10)
6050 return 624000;
6051 else if (max_pixclk > 384000*9/10)
6052 return 576000;
6053 else if (max_pixclk > 288000*9/10)
6054 return 384000;
6055 else if (max_pixclk > 144000*9/10)
6056 return 288000;
6057 else
6058 return 144000;
6059}
6060
a821fc46
ACO
6061/* Compute the max pixel clock for new configuration. Uses atomic state if
6062 * that's non-NULL, look at current state otherwise. */
6063static int intel_mode_max_pixclk(struct drm_device *dev,
6064 struct drm_atomic_state *state)
30a970c6 6065{
565602d7
ML
6066 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
6067 struct drm_i915_private *dev_priv = dev->dev_private;
6068 struct drm_crtc *crtc;
6069 struct drm_crtc_state *crtc_state;
6070 unsigned max_pixclk = 0, i;
6071 enum pipe pipe;
30a970c6 6072
565602d7
ML
6073 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
6074 sizeof(intel_state->min_pixclk));
304603f4 6075
565602d7
ML
6076 for_each_crtc_in_state(state, crtc, crtc_state, i) {
6077 int pixclk = 0;
6078
6079 if (crtc_state->enable)
6080 pixclk = crtc_state->adjusted_mode.crtc_clock;
304603f4 6081
565602d7 6082 intel_state->min_pixclk[i] = pixclk;
30a970c6
JB
6083 }
6084
565602d7
ML
6085 if (!intel_state->active_crtcs)
6086 return 0;
6087
6088 for_each_pipe(dev_priv, pipe)
6089 max_pixclk = max(intel_state->min_pixclk[pipe], max_pixclk);
6090
30a970c6
JB
6091 return max_pixclk;
6092}
6093
27c329ed 6094static int valleyview_modeset_calc_cdclk(struct drm_atomic_state *state)
30a970c6 6095{
27c329ed
ML
6096 struct drm_device *dev = state->dev;
6097 struct drm_i915_private *dev_priv = dev->dev_private;
6098 int max_pixclk = intel_mode_max_pixclk(dev, state);
30a970c6 6099
304603f4
ACO
6100 if (max_pixclk < 0)
6101 return max_pixclk;
30a970c6 6102
27c329ed
ML
6103 to_intel_atomic_state(state)->cdclk =
6104 valleyview_calc_cdclk(dev_priv, max_pixclk);
0a9ab303 6105
27c329ed
ML
6106 return 0;
6107}
304603f4 6108
27c329ed
ML
6109static int broxton_modeset_calc_cdclk(struct drm_atomic_state *state)
6110{
6111 struct drm_device *dev = state->dev;
6112 struct drm_i915_private *dev_priv = dev->dev_private;
6113 int max_pixclk = intel_mode_max_pixclk(dev, state);
85a96e7a 6114
27c329ed
ML
6115 if (max_pixclk < 0)
6116 return max_pixclk;
85a96e7a 6117
27c329ed
ML
6118 to_intel_atomic_state(state)->cdclk =
6119 broxton_calc_cdclk(dev_priv, max_pixclk);
85a96e7a 6120
27c329ed 6121 return 0;
30a970c6
JB
6122}
6123
1e69cd74
VS
6124static void vlv_program_pfi_credits(struct drm_i915_private *dev_priv)
6125{
6126 unsigned int credits, default_credits;
6127
6128 if (IS_CHERRYVIEW(dev_priv))
6129 default_credits = PFI_CREDIT(12);
6130 else
6131 default_credits = PFI_CREDIT(8);
6132
bfa7df01 6133 if (dev_priv->cdclk_freq >= dev_priv->czclk_freq) {
1e69cd74
VS
6134 /* CHV suggested value is 31 or 63 */
6135 if (IS_CHERRYVIEW(dev_priv))
fcc0008f 6136 credits = PFI_CREDIT_63;
1e69cd74
VS
6137 else
6138 credits = PFI_CREDIT(15);
6139 } else {
6140 credits = default_credits;
6141 }
6142
6143 /*
6144 * WA - write default credits before re-programming
6145 * FIXME: should we also set the resend bit here?
6146 */
6147 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6148 default_credits);
6149
6150 I915_WRITE(GCI_CONTROL, VGA_FAST_MODE_DISABLE |
6151 credits | PFI_CREDIT_RESEND);
6152
6153 /*
6154 * FIXME is this guaranteed to clear
6155 * immediately or should we poll for it?
6156 */
6157 WARN_ON(I915_READ(GCI_CONTROL) & PFI_CREDIT_RESEND);
6158}
6159
27c329ed 6160static void valleyview_modeset_commit_cdclk(struct drm_atomic_state *old_state)
30a970c6 6161{
a821fc46 6162 struct drm_device *dev = old_state->dev;
27c329ed 6163 unsigned int req_cdclk = to_intel_atomic_state(old_state)->cdclk;
30a970c6 6164 struct drm_i915_private *dev_priv = dev->dev_private;
30a970c6 6165
27c329ed
ML
6166 /*
6167 * FIXME: We can end up here with all power domains off, yet
6168 * with a CDCLK frequency other than the minimum. To account
6169 * for this take the PIPE-A power domain, which covers the HW
6170 * blocks needed for the following programming. This can be
6171 * removed once it's guaranteed that we get here either with
6172 * the minimum CDCLK set, or the required power domains
6173 * enabled.
6174 */
6175 intel_display_power_get(dev_priv, POWER_DOMAIN_PIPE_A);
738c05c0 6176
27c329ed
ML
6177 if (IS_CHERRYVIEW(dev))
6178 cherryview_set_cdclk(dev, req_cdclk);
6179 else
6180 valleyview_set_cdclk(dev, req_cdclk);
738c05c0 6181
27c329ed 6182 vlv_program_pfi_credits(dev_priv);
1e69cd74 6183
27c329ed 6184 intel_display_power_put(dev_priv, POWER_DOMAIN_PIPE_A);
30a970c6
JB
6185}
6186
89b667f8
JB
6187static void valleyview_crtc_enable(struct drm_crtc *crtc)
6188{
6189 struct drm_device *dev = crtc->dev;
a72e4c9f 6190 struct drm_i915_private *dev_priv = to_i915(dev);
89b667f8
JB
6191 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6192 struct intel_encoder *encoder;
6193 int pipe = intel_crtc->pipe;
89b667f8 6194
53d9f4e9 6195 if (WARN_ON(intel_crtc->active))
89b667f8
JB
6196 return;
6197
6e3c9717 6198 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 6199 intel_dp_set_m_n(intel_crtc, M1_N1);
5b18e57c
DV
6200
6201 intel_set_pipe_timings(intel_crtc);
6202
c14b0485
VS
6203 if (IS_CHERRYVIEW(dev) && pipe == PIPE_B) {
6204 struct drm_i915_private *dev_priv = dev->dev_private;
6205
6206 I915_WRITE(CHV_BLEND(pipe), CHV_BLEND_LEGACY);
6207 I915_WRITE(CHV_CANVAS(pipe), 0);
6208 }
6209
5b18e57c
DV
6210 i9xx_set_pipeconf(intel_crtc);
6211
89b667f8 6212 intel_crtc->active = true;
89b667f8 6213
a72e4c9f 6214 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 6215
89b667f8
JB
6216 for_each_encoder_on_crtc(dev, crtc, encoder)
6217 if (encoder->pre_pll_enable)
6218 encoder->pre_pll_enable(encoder);
6219
a65347ba 6220 if (!intel_crtc->config->has_dsi_encoder) {
c0b4c660
VS
6221 if (IS_CHERRYVIEW(dev)) {
6222 chv_prepare_pll(intel_crtc, intel_crtc->config);
6e3c9717 6223 chv_enable_pll(intel_crtc, intel_crtc->config);
c0b4c660
VS
6224 } else {
6225 vlv_prepare_pll(intel_crtc, intel_crtc->config);
6e3c9717 6226 vlv_enable_pll(intel_crtc, intel_crtc->config);
c0b4c660 6227 }
9d556c99 6228 }
89b667f8
JB
6229
6230 for_each_encoder_on_crtc(dev, crtc, encoder)
6231 if (encoder->pre_enable)
6232 encoder->pre_enable(encoder);
6233
2dd24552
JB
6234 i9xx_pfit_enable(intel_crtc);
6235
63cbb074
VS
6236 intel_crtc_load_lut(crtc);
6237
e1fdc473 6238 intel_enable_pipe(intel_crtc);
be6a6f8e 6239
4b3a9526
VS
6240 assert_vblank_disabled(crtc);
6241 drm_crtc_vblank_on(crtc);
6242
f9b61ff6
DV
6243 for_each_encoder_on_crtc(dev, crtc, encoder)
6244 encoder->enable(encoder);
89b667f8
JB
6245}
6246
f13c2ef3
DV
6247static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
6248{
6249 struct drm_device *dev = crtc->base.dev;
6250 struct drm_i915_private *dev_priv = dev->dev_private;
6251
6e3c9717
ACO
6252 I915_WRITE(FP0(crtc->pipe), crtc->config->dpll_hw_state.fp0);
6253 I915_WRITE(FP1(crtc->pipe), crtc->config->dpll_hw_state.fp1);
f13c2ef3
DV
6254}
6255
0b8765c6 6256static void i9xx_crtc_enable(struct drm_crtc *crtc)
79e53945
JB
6257{
6258 struct drm_device *dev = crtc->dev;
a72e4c9f 6259 struct drm_i915_private *dev_priv = to_i915(dev);
79e53945 6260 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 6261 struct intel_encoder *encoder;
79e53945 6262 int pipe = intel_crtc->pipe;
79e53945 6263
53d9f4e9 6264 if (WARN_ON(intel_crtc->active))
f7abfe8b
CW
6265 return;
6266
f13c2ef3
DV
6267 i9xx_set_pll_dividers(intel_crtc);
6268
6e3c9717 6269 if (intel_crtc->config->has_dp_encoder)
fe3cd48d 6270 intel_dp_set_m_n(intel_crtc, M1_N1);
5b18e57c
DV
6271
6272 intel_set_pipe_timings(intel_crtc);
6273
5b18e57c
DV
6274 i9xx_set_pipeconf(intel_crtc);
6275
f7abfe8b 6276 intel_crtc->active = true;
6b383a7f 6277
4a3436e8 6278 if (!IS_GEN2(dev))
a72e4c9f 6279 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, true);
4a3436e8 6280
9d6d9f19
MK
6281 for_each_encoder_on_crtc(dev, crtc, encoder)
6282 if (encoder->pre_enable)
6283 encoder->pre_enable(encoder);
6284
f6736a1a
DV
6285 i9xx_enable_pll(intel_crtc);
6286
2dd24552
JB
6287 i9xx_pfit_enable(intel_crtc);
6288
63cbb074
VS
6289 intel_crtc_load_lut(crtc);
6290
f37fcc2a 6291 intel_update_watermarks(crtc);
e1fdc473 6292 intel_enable_pipe(intel_crtc);
be6a6f8e 6293
4b3a9526
VS
6294 assert_vblank_disabled(crtc);
6295 drm_crtc_vblank_on(crtc);
6296
f9b61ff6
DV
6297 for_each_encoder_on_crtc(dev, crtc, encoder)
6298 encoder->enable(encoder);
d029bcad
PZ
6299
6300 intel_fbc_enable(intel_crtc);
0b8765c6 6301}
79e53945 6302
87476d63
DV
6303static void i9xx_pfit_disable(struct intel_crtc *crtc)
6304{
6305 struct drm_device *dev = crtc->base.dev;
6306 struct drm_i915_private *dev_priv = dev->dev_private;
87476d63 6307
6e3c9717 6308 if (!crtc->config->gmch_pfit.control)
328d8e82 6309 return;
87476d63 6310
328d8e82 6311 assert_pipe_disabled(dev_priv, crtc->pipe);
87476d63 6312
328d8e82
DV
6313 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
6314 I915_READ(PFIT_CONTROL));
6315 I915_WRITE(PFIT_CONTROL, 0);
87476d63
DV
6316}
6317
0b8765c6
JB
6318static void i9xx_crtc_disable(struct drm_crtc *crtc)
6319{
6320 struct drm_device *dev = crtc->dev;
6321 struct drm_i915_private *dev_priv = dev->dev_private;
6322 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
ef9c3aee 6323 struct intel_encoder *encoder;
0b8765c6 6324 int pipe = intel_crtc->pipe;
ef9c3aee 6325
6304cd91
VS
6326 /*
6327 * On gen2 planes are double buffered but the pipe isn't, so we must
6328 * wait for planes to fully turn off before disabling the pipe.
564ed191
ID
6329 * We also need to wait on all gmch platforms because of the
6330 * self-refresh mode constraint explained above.
6304cd91 6331 */
564ed191 6332 intel_wait_for_vblank(dev, pipe);
6304cd91 6333
4b3a9526
VS
6334 for_each_encoder_on_crtc(dev, crtc, encoder)
6335 encoder->disable(encoder);
6336
f9b61ff6
DV
6337 drm_crtc_vblank_off(crtc);
6338 assert_vblank_disabled(crtc);
6339
575f7ab7 6340 intel_disable_pipe(intel_crtc);
24a1f16d 6341
87476d63 6342 i9xx_pfit_disable(intel_crtc);
24a1f16d 6343
89b667f8
JB
6344 for_each_encoder_on_crtc(dev, crtc, encoder)
6345 if (encoder->post_disable)
6346 encoder->post_disable(encoder);
6347
a65347ba 6348 if (!intel_crtc->config->has_dsi_encoder) {
076ed3b2
CML
6349 if (IS_CHERRYVIEW(dev))
6350 chv_disable_pll(dev_priv, pipe);
6351 else if (IS_VALLEYVIEW(dev))
6352 vlv_disable_pll(dev_priv, pipe);
6353 else
1c4e0274 6354 i9xx_disable_pll(intel_crtc);
076ed3b2 6355 }
0b8765c6 6356
d6db995f
VS
6357 for_each_encoder_on_crtc(dev, crtc, encoder)
6358 if (encoder->post_pll_disable)
6359 encoder->post_pll_disable(encoder);
6360
4a3436e8 6361 if (!IS_GEN2(dev))
a72e4c9f 6362 intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false);
d029bcad
PZ
6363
6364 intel_fbc_disable_crtc(intel_crtc);
0b8765c6
JB
6365}
6366
b17d48e2
ML
6367static void intel_crtc_disable_noatomic(struct drm_crtc *crtc)
6368{
6369 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6370 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
6371 enum intel_display_power_domain domain;
6372 unsigned long domains;
6373
6374 if (!intel_crtc->active)
6375 return;
6376
a539205a 6377 if (to_intel_plane_state(crtc->primary->state)->visible) {
fc32b1fd
ML
6378 WARN_ON(intel_crtc->unpin_work);
6379
a539205a 6380 intel_pre_disable_primary(crtc);
54a41961
ML
6381
6382 intel_crtc_disable_planes(crtc, 1 << drm_plane_index(crtc->primary));
6383 to_intel_plane_state(crtc->primary->state)->visible = false;
a539205a
ML
6384 }
6385
b17d48e2 6386 dev_priv->display.crtc_disable(crtc);
37d9078b
MR
6387 intel_crtc->active = false;
6388 intel_update_watermarks(crtc);
1f7457b1 6389 intel_disable_shared_dpll(intel_crtc);
b17d48e2
ML
6390
6391 domains = intel_crtc->enabled_power_domains;
6392 for_each_power_domain(domain, domains)
6393 intel_display_power_put(dev_priv, domain);
6394 intel_crtc->enabled_power_domains = 0;
565602d7
ML
6395
6396 dev_priv->active_crtcs &= ~(1 << intel_crtc->pipe);
6397 dev_priv->min_pixclk[intel_crtc->pipe] = 0;
b17d48e2
ML
6398}
6399
6b72d486
ML
6400/*
6401 * turn all crtc's off, but do not adjust state
6402 * This has to be paired with a call to intel_modeset_setup_hw_state.
6403 */
70e0bd74 6404int intel_display_suspend(struct drm_device *dev)
ee7b9f93 6405{
70e0bd74
ML
6406 struct drm_mode_config *config = &dev->mode_config;
6407 struct drm_modeset_acquire_ctx *ctx = config->acquire_ctx;
6408 struct drm_atomic_state *state;
6b72d486 6409 struct drm_crtc *crtc;
70e0bd74
ML
6410 unsigned crtc_mask = 0;
6411 int ret = 0;
6412
6413 if (WARN_ON(!ctx))
6414 return 0;
6415
6416 lockdep_assert_held(&ctx->ww_ctx);
6417 state = drm_atomic_state_alloc(dev);
6418 if (WARN_ON(!state))
6419 return -ENOMEM;
6420
6421 state->acquire_ctx = ctx;
6422 state->allow_modeset = true;
6423
6424 for_each_crtc(dev, crtc) {
6425 struct drm_crtc_state *crtc_state =
6426 drm_atomic_get_crtc_state(state, crtc);
6b72d486 6427
70e0bd74
ML
6428 ret = PTR_ERR_OR_ZERO(crtc_state);
6429 if (ret)
6430 goto free;
6431
6432 if (!crtc_state->active)
6433 continue;
6434
6435 crtc_state->active = false;
6436 crtc_mask |= 1 << drm_crtc_index(crtc);
6437 }
6438
6439 if (crtc_mask) {
74c090b1 6440 ret = drm_atomic_commit(state);
70e0bd74
ML
6441
6442 if (!ret) {
6443 for_each_crtc(dev, crtc)
6444 if (crtc_mask & (1 << drm_crtc_index(crtc)))
6445 crtc->state->active = true;
6446
6447 return ret;
6448 }
6449 }
6450
6451free:
6452 if (ret)
6453 DRM_ERROR("Suspending crtc's failed with %i\n", ret);
6454 drm_atomic_state_free(state);
6455 return ret;
ee7b9f93
JB
6456}
6457
ea5b213a 6458void intel_encoder_destroy(struct drm_encoder *encoder)
7e7d76c3 6459{
4ef69c7a 6460 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
ea5b213a 6461
ea5b213a
CW
6462 drm_encoder_cleanup(encoder);
6463 kfree(intel_encoder);
7e7d76c3
JB
6464}
6465
0a91ca29
DV
6466/* Cross check the actual hw state with our own modeset state tracking (and it's
6467 * internal consistency). */
b980514c 6468static void intel_connector_check_state(struct intel_connector *connector)
79e53945 6469{
35dd3c64
ML
6470 struct drm_crtc *crtc = connector->base.state->crtc;
6471
6472 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
6473 connector->base.base.id,
6474 connector->base.name);
6475
0a91ca29 6476 if (connector->get_hw_state(connector)) {
e85376cb 6477 struct intel_encoder *encoder = connector->encoder;
35dd3c64 6478 struct drm_connector_state *conn_state = connector->base.state;
0a91ca29 6479
35dd3c64
ML
6480 I915_STATE_WARN(!crtc,
6481 "connector enabled without attached crtc\n");
0a91ca29 6482
35dd3c64
ML
6483 if (!crtc)
6484 return;
6485
6486 I915_STATE_WARN(!crtc->state->active,
6487 "connector is active, but attached crtc isn't\n");
6488
e85376cb 6489 if (!encoder || encoder->type == INTEL_OUTPUT_DP_MST)
35dd3c64
ML
6490 return;
6491
e85376cb 6492 I915_STATE_WARN(conn_state->best_encoder != &encoder->base,
35dd3c64
ML
6493 "atomic encoder doesn't match attached encoder\n");
6494
e85376cb 6495 I915_STATE_WARN(conn_state->crtc != encoder->base.crtc,
35dd3c64
ML
6496 "attached encoder crtc differs from connector crtc\n");
6497 } else {
4d688a2a
ML
6498 I915_STATE_WARN(crtc && crtc->state->active,
6499 "attached crtc is active, but connector isn't\n");
35dd3c64
ML
6500 I915_STATE_WARN(!crtc && connector->base.state->best_encoder,
6501 "best encoder set without crtc!\n");
0a91ca29 6502 }
79e53945
JB
6503}
6504
08d9bc92
ACO
6505int intel_connector_init(struct intel_connector *connector)
6506{
6507 struct drm_connector_state *connector_state;
6508
6509 connector_state = kzalloc(sizeof *connector_state, GFP_KERNEL);
6510 if (!connector_state)
6511 return -ENOMEM;
6512
6513 connector->base.state = connector_state;
6514 return 0;
6515}
6516
6517struct intel_connector *intel_connector_alloc(void)
6518{
6519 struct intel_connector *connector;
6520
6521 connector = kzalloc(sizeof *connector, GFP_KERNEL);
6522 if (!connector)
6523 return NULL;
6524
6525 if (intel_connector_init(connector) < 0) {
6526 kfree(connector);
6527 return NULL;
6528 }
6529
6530 return connector;
6531}
6532
f0947c37
DV
6533/* Simple connector->get_hw_state implementation for encoders that support only
6534 * one connector and no cloning and hence the encoder state determines the state
6535 * of the connector. */
6536bool intel_connector_get_hw_state(struct intel_connector *connector)
ea5b213a 6537{
24929352 6538 enum pipe pipe = 0;
f0947c37 6539 struct intel_encoder *encoder = connector->encoder;
ea5b213a 6540
f0947c37 6541 return encoder->get_hw_state(encoder, &pipe);
ea5b213a
CW
6542}
6543
6d293983 6544static int pipe_required_fdi_lanes(struct intel_crtc_state *crtc_state)
d272ddfa 6545{
6d293983
ACO
6546 if (crtc_state->base.enable && crtc_state->has_pch_encoder)
6547 return crtc_state->fdi_lanes;
d272ddfa
VS
6548
6549 return 0;
6550}
6551
6d293983 6552static int ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
5cec258b 6553 struct intel_crtc_state *pipe_config)
1857e1da 6554{
6d293983
ACO
6555 struct drm_atomic_state *state = pipe_config->base.state;
6556 struct intel_crtc *other_crtc;
6557 struct intel_crtc_state *other_crtc_state;
6558
1857e1da
DV
6559 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
6560 pipe_name(pipe), pipe_config->fdi_lanes);
6561 if (pipe_config->fdi_lanes > 4) {
6562 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
6563 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6564 return -EINVAL;
1857e1da
DV
6565 }
6566
bafb6553 6567 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
1857e1da
DV
6568 if (pipe_config->fdi_lanes > 2) {
6569 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
6570 pipe_config->fdi_lanes);
6d293983 6571 return -EINVAL;
1857e1da 6572 } else {
6d293983 6573 return 0;
1857e1da
DV
6574 }
6575 }
6576
6577 if (INTEL_INFO(dev)->num_pipes == 2)
6d293983 6578 return 0;
1857e1da
DV
6579
6580 /* Ivybridge 3 pipe is really complicated */
6581 switch (pipe) {
6582 case PIPE_A:
6d293983 6583 return 0;
1857e1da 6584 case PIPE_B:
6d293983
ACO
6585 if (pipe_config->fdi_lanes <= 2)
6586 return 0;
6587
6588 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_C));
6589 other_crtc_state =
6590 intel_atomic_get_crtc_state(state, other_crtc);
6591 if (IS_ERR(other_crtc_state))
6592 return PTR_ERR(other_crtc_state);
6593
6594 if (pipe_required_fdi_lanes(other_crtc_state) > 0) {
1857e1da
DV
6595 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
6596 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6597 return -EINVAL;
1857e1da 6598 }
6d293983 6599 return 0;
1857e1da 6600 case PIPE_C:
251cc67c
VS
6601 if (pipe_config->fdi_lanes > 2) {
6602 DRM_DEBUG_KMS("only 2 lanes on pipe %c: required %i lanes\n",
6603 pipe_name(pipe), pipe_config->fdi_lanes);
6d293983 6604 return -EINVAL;
251cc67c 6605 }
6d293983
ACO
6606
6607 other_crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, PIPE_B));
6608 other_crtc_state =
6609 intel_atomic_get_crtc_state(state, other_crtc);
6610 if (IS_ERR(other_crtc_state))
6611 return PTR_ERR(other_crtc_state);
6612
6613 if (pipe_required_fdi_lanes(other_crtc_state) > 2) {
1857e1da 6614 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
6d293983 6615 return -EINVAL;
1857e1da 6616 }
6d293983 6617 return 0;
1857e1da
DV
6618 default:
6619 BUG();
6620 }
6621}
6622
e29c22c0
DV
6623#define RETRY 1
6624static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5cec258b 6625 struct intel_crtc_state *pipe_config)
877d48d5 6626{
1857e1da 6627 struct drm_device *dev = intel_crtc->base.dev;
7c5f93b0 6628 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
6d293983
ACO
6629 int lane, link_bw, fdi_dotclock, ret;
6630 bool needs_recompute = false;
877d48d5 6631
e29c22c0 6632retry:
877d48d5
DV
6633 /* FDI is a binary signal running at ~2.7GHz, encoding
6634 * each output octet as 10 bits. The actual frequency
6635 * is stored as a divider into a 100MHz clock, and the
6636 * mode pixel clock is stored in units of 1KHz.
6637 * Hence the bw of each lane in terms of the mode signal
6638 * is:
6639 */
6640 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
6641
241bfc38 6642 fdi_dotclock = adjusted_mode->crtc_clock;
877d48d5 6643
2bd89a07 6644 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
877d48d5
DV
6645 pipe_config->pipe_bpp);
6646
6647 pipe_config->fdi_lanes = lane;
6648
2bd89a07 6649 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
877d48d5 6650 link_bw, &pipe_config->fdi_m_n);
1857e1da 6651
6d293983
ACO
6652 ret = ironlake_check_fdi_lanes(intel_crtc->base.dev,
6653 intel_crtc->pipe, pipe_config);
6654 if (ret == -EINVAL && pipe_config->pipe_bpp > 6*3) {
e29c22c0
DV
6655 pipe_config->pipe_bpp -= 2*3;
6656 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
6657 pipe_config->pipe_bpp);
6658 needs_recompute = true;
6659 pipe_config->bw_constrained = true;
6660
6661 goto retry;
6662 }
6663
6664 if (needs_recompute)
6665 return RETRY;
6666
6d293983 6667 return ret;
877d48d5
DV
6668}
6669
8cfb3407
VS
6670static bool pipe_config_supports_ips(struct drm_i915_private *dev_priv,
6671 struct intel_crtc_state *pipe_config)
6672{
6673 if (pipe_config->pipe_bpp > 24)
6674 return false;
6675
6676 /* HSW can handle pixel rate up to cdclk? */
6677 if (IS_HASWELL(dev_priv->dev))
6678 return true;
6679
6680 /*
b432e5cf
VS
6681 * We compare against max which means we must take
6682 * the increased cdclk requirement into account when
6683 * calculating the new cdclk.
6684 *
6685 * Should measure whether using a lower cdclk w/o IPS
8cfb3407
VS
6686 */
6687 return ilk_pipe_pixel_rate(pipe_config) <=
6688 dev_priv->max_cdclk_freq * 95 / 100;
6689}
6690
42db64ef 6691static void hsw_compute_ips_config(struct intel_crtc *crtc,
5cec258b 6692 struct intel_crtc_state *pipe_config)
42db64ef 6693{
8cfb3407
VS
6694 struct drm_device *dev = crtc->base.dev;
6695 struct drm_i915_private *dev_priv = dev->dev_private;
6696
d330a953 6697 pipe_config->ips_enabled = i915.enable_ips &&
8cfb3407
VS
6698 hsw_crtc_supports_ips(crtc) &&
6699 pipe_config_supports_ips(dev_priv, pipe_config);
42db64ef
PZ
6700}
6701
39acb4aa
VS
6702static bool intel_crtc_supports_double_wide(const struct intel_crtc *crtc)
6703{
6704 const struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6705
6706 /* GDG double wide on either pipe, otherwise pipe A only */
6707 return INTEL_INFO(dev_priv)->gen < 4 &&
6708 (crtc->pipe == PIPE_A || IS_I915G(dev_priv));
6709}
6710
a43f6e0f 6711static int intel_crtc_compute_config(struct intel_crtc *crtc,
5cec258b 6712 struct intel_crtc_state *pipe_config)
79e53945 6713{
a43f6e0f 6714 struct drm_device *dev = crtc->base.dev;
8bd31e67 6715 struct drm_i915_private *dev_priv = dev->dev_private;
7c5f93b0 6716 const struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
89749350 6717
ad3a4479 6718 /* FIXME should check pixel clock limits on all platforms */
cf532bb2 6719 if (INTEL_INFO(dev)->gen < 4) {
39acb4aa 6720 int clock_limit = dev_priv->max_cdclk_freq * 9 / 10;
cf532bb2
VS
6721
6722 /*
39acb4aa 6723 * Enable double wide mode when the dot clock
cf532bb2 6724 * is > 90% of the (display) core speed.
cf532bb2 6725 */
39acb4aa
VS
6726 if (intel_crtc_supports_double_wide(crtc) &&
6727 adjusted_mode->crtc_clock > clock_limit) {
ad3a4479 6728 clock_limit *= 2;
cf532bb2 6729 pipe_config->double_wide = true;
ad3a4479
VS
6730 }
6731
39acb4aa
VS
6732 if (adjusted_mode->crtc_clock > clock_limit) {
6733 DRM_DEBUG_KMS("requested pixel clock (%d kHz) too high (max: %d kHz, double wide: %s)\n",
6734 adjusted_mode->crtc_clock, clock_limit,
6735 yesno(pipe_config->double_wide));
e29c22c0 6736 return -EINVAL;
39acb4aa 6737 }
2c07245f 6738 }
89749350 6739
1d1d0e27
VS
6740 /*
6741 * Pipe horizontal size must be even in:
6742 * - DVO ganged mode
6743 * - LVDS dual channel mode
6744 * - Double wide pipe
6745 */
a93e255f 6746 if ((intel_pipe_will_have_type(pipe_config, INTEL_OUTPUT_LVDS) &&
1d1d0e27
VS
6747 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
6748 pipe_config->pipe_src_w &= ~1;
6749
8693a824
DL
6750 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
6751 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
44f46b42
CW
6752 */
6753 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
aad941d5 6754 adjusted_mode->crtc_hsync_start == adjusted_mode->crtc_hdisplay)
e29c22c0 6755 return -EINVAL;
44f46b42 6756
f5adf94e 6757 if (HAS_IPS(dev))
a43f6e0f
DV
6758 hsw_compute_ips_config(crtc, pipe_config);
6759
877d48d5 6760 if (pipe_config->has_pch_encoder)
a43f6e0f 6761 return ironlake_fdi_compute_config(crtc, pipe_config);
877d48d5 6762
cf5a15be 6763 return 0;
79e53945
JB
6764}
6765
1652d19e
VS
6766static int skylake_get_display_clock_speed(struct drm_device *dev)
6767{
6768 struct drm_i915_private *dev_priv = to_i915(dev);
6769 uint32_t lcpll1 = I915_READ(LCPLL1_CTL);
6770 uint32_t cdctl = I915_READ(CDCLK_CTL);
6771 uint32_t linkrate;
6772
414355a7 6773 if (!(lcpll1 & LCPLL_PLL_ENABLE))
1652d19e 6774 return 24000; /* 24MHz is the cd freq with NSSC ref */
1652d19e
VS
6775
6776 if ((cdctl & CDCLK_FREQ_SEL_MASK) == CDCLK_FREQ_540)
6777 return 540000;
6778
6779 linkrate = (I915_READ(DPLL_CTRL1) &
71cd8423 6780 DPLL_CTRL1_LINK_RATE_MASK(SKL_DPLL0)) >> 1;
1652d19e 6781
71cd8423
DL
6782 if (linkrate == DPLL_CTRL1_LINK_RATE_2160 ||
6783 linkrate == DPLL_CTRL1_LINK_RATE_1080) {
1652d19e
VS
6784 /* vco 8640 */
6785 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6786 case CDCLK_FREQ_450_432:
6787 return 432000;
6788 case CDCLK_FREQ_337_308:
6789 return 308570;
6790 case CDCLK_FREQ_675_617:
6791 return 617140;
6792 default:
6793 WARN(1, "Unknown cd freq selection\n");
6794 }
6795 } else {
6796 /* vco 8100 */
6797 switch (cdctl & CDCLK_FREQ_SEL_MASK) {
6798 case CDCLK_FREQ_450_432:
6799 return 450000;
6800 case CDCLK_FREQ_337_308:
6801 return 337500;
6802 case CDCLK_FREQ_675_617:
6803 return 675000;
6804 default:
6805 WARN(1, "Unknown cd freq selection\n");
6806 }
6807 }
6808
6809 /* error case, do as if DPLL0 isn't enabled */
6810 return 24000;
6811}
6812
acd3f3d3
BP
6813static int broxton_get_display_clock_speed(struct drm_device *dev)
6814{
6815 struct drm_i915_private *dev_priv = to_i915(dev);
6816 uint32_t cdctl = I915_READ(CDCLK_CTL);
6817 uint32_t pll_ratio = I915_READ(BXT_DE_PLL_CTL) & BXT_DE_PLL_RATIO_MASK;
6818 uint32_t pll_enab = I915_READ(BXT_DE_PLL_ENABLE);
6819 int cdclk;
6820
6821 if (!(pll_enab & BXT_DE_PLL_PLL_ENABLE))
6822 return 19200;
6823
6824 cdclk = 19200 * pll_ratio / 2;
6825
6826 switch (cdctl & BXT_CDCLK_CD2X_DIV_SEL_MASK) {
6827 case BXT_CDCLK_CD2X_DIV_SEL_1:
6828 return cdclk; /* 576MHz or 624MHz */
6829 case BXT_CDCLK_CD2X_DIV_SEL_1_5:
6830 return cdclk * 2 / 3; /* 384MHz */
6831 case BXT_CDCLK_CD2X_DIV_SEL_2:
6832 return cdclk / 2; /* 288MHz */
6833 case BXT_CDCLK_CD2X_DIV_SEL_4:
6834 return cdclk / 4; /* 144MHz */
6835 }
6836
6837 /* error case, do as if DE PLL isn't enabled */
6838 return 19200;
6839}
6840
1652d19e
VS
6841static int broadwell_get_display_clock_speed(struct drm_device *dev)
6842{
6843 struct drm_i915_private *dev_priv = dev->dev_private;
6844 uint32_t lcpll = I915_READ(LCPLL_CTL);
6845 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6846
6847 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6848 return 800000;
6849 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6850 return 450000;
6851 else if (freq == LCPLL_CLK_FREQ_450)
6852 return 450000;
6853 else if (freq == LCPLL_CLK_FREQ_54O_BDW)
6854 return 540000;
6855 else if (freq == LCPLL_CLK_FREQ_337_5_BDW)
6856 return 337500;
6857 else
6858 return 675000;
6859}
6860
6861static int haswell_get_display_clock_speed(struct drm_device *dev)
6862{
6863 struct drm_i915_private *dev_priv = dev->dev_private;
6864 uint32_t lcpll = I915_READ(LCPLL_CTL);
6865 uint32_t freq = lcpll & LCPLL_CLK_FREQ_MASK;
6866
6867 if (lcpll & LCPLL_CD_SOURCE_FCLK)
6868 return 800000;
6869 else if (I915_READ(FUSE_STRAP) & HSW_CDCLK_LIMIT)
6870 return 450000;
6871 else if (freq == LCPLL_CLK_FREQ_450)
6872 return 450000;
6873 else if (IS_HSW_ULT(dev))
6874 return 337500;
6875 else
6876 return 540000;
79e53945
JB
6877}
6878
25eb05fc
JB
6879static int valleyview_get_display_clock_speed(struct drm_device *dev)
6880{
bfa7df01
VS
6881 return vlv_get_cck_clock_hpll(to_i915(dev), "cdclk",
6882 CCK_DISPLAY_CLOCK_CONTROL);
25eb05fc
JB
6883}
6884
b37a6434
VS
6885static int ilk_get_display_clock_speed(struct drm_device *dev)
6886{
6887 return 450000;
6888}
6889
e70236a8
JB
6890static int i945_get_display_clock_speed(struct drm_device *dev)
6891{
6892 return 400000;
6893}
79e53945 6894
e70236a8 6895static int i915_get_display_clock_speed(struct drm_device *dev)
79e53945 6896{
e907f170 6897 return 333333;
e70236a8 6898}
79e53945 6899
e70236a8
JB
6900static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
6901{
6902 return 200000;
6903}
79e53945 6904
257a7ffc
DV
6905static int pnv_get_display_clock_speed(struct drm_device *dev)
6906{
6907 u16 gcfgc = 0;
6908
6909 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6910
6911 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6912 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
e907f170 6913 return 266667;
257a7ffc 6914 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
e907f170 6915 return 333333;
257a7ffc 6916 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
e907f170 6917 return 444444;
257a7ffc
DV
6918 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
6919 return 200000;
6920 default:
6921 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
6922 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
e907f170 6923 return 133333;
257a7ffc 6924 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
e907f170 6925 return 166667;
257a7ffc
DV
6926 }
6927}
6928
e70236a8
JB
6929static int i915gm_get_display_clock_speed(struct drm_device *dev)
6930{
6931 u16 gcfgc = 0;
79e53945 6932
e70236a8
JB
6933 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
6934
6935 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
e907f170 6936 return 133333;
e70236a8
JB
6937 else {
6938 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
6939 case GC_DISPLAY_CLOCK_333_MHZ:
e907f170 6940 return 333333;
e70236a8
JB
6941 default:
6942 case GC_DISPLAY_CLOCK_190_200_MHZ:
6943 return 190000;
79e53945 6944 }
e70236a8
JB
6945 }
6946}
6947
6948static int i865_get_display_clock_speed(struct drm_device *dev)
6949{
e907f170 6950 return 266667;
e70236a8
JB
6951}
6952
1b1d2716 6953static int i85x_get_display_clock_speed(struct drm_device *dev)
e70236a8
JB
6954{
6955 u16 hpllcc = 0;
1b1d2716 6956
65cd2b3f
VS
6957 /*
6958 * 852GM/852GMV only supports 133 MHz and the HPLLCC
6959 * encoding is different :(
6960 * FIXME is this the right way to detect 852GM/852GMV?
6961 */
6962 if (dev->pdev->revision == 0x1)
6963 return 133333;
6964
1b1d2716
VS
6965 pci_bus_read_config_word(dev->pdev->bus,
6966 PCI_DEVFN(0, 3), HPLLCC, &hpllcc);
6967
e70236a8
JB
6968 /* Assume that the hardware is in the high speed state. This
6969 * should be the default.
6970 */
6971 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
6972 case GC_CLOCK_133_200:
1b1d2716 6973 case GC_CLOCK_133_200_2:
e70236a8
JB
6974 case GC_CLOCK_100_200:
6975 return 200000;
6976 case GC_CLOCK_166_250:
6977 return 250000;
6978 case GC_CLOCK_100_133:
e907f170 6979 return 133333;
1b1d2716
VS
6980 case GC_CLOCK_133_266:
6981 case GC_CLOCK_133_266_2:
6982 case GC_CLOCK_166_266:
6983 return 266667;
e70236a8 6984 }
79e53945 6985
e70236a8
JB
6986 /* Shouldn't happen */
6987 return 0;
6988}
79e53945 6989
e70236a8
JB
6990static int i830_get_display_clock_speed(struct drm_device *dev)
6991{
e907f170 6992 return 133333;
79e53945
JB
6993}
6994
34edce2f
VS
6995static unsigned int intel_hpll_vco(struct drm_device *dev)
6996{
6997 struct drm_i915_private *dev_priv = dev->dev_private;
6998 static const unsigned int blb_vco[8] = {
6999 [0] = 3200000,
7000 [1] = 4000000,
7001 [2] = 5333333,
7002 [3] = 4800000,
7003 [4] = 6400000,
7004 };
7005 static const unsigned int pnv_vco[8] = {
7006 [0] = 3200000,
7007 [1] = 4000000,
7008 [2] = 5333333,
7009 [3] = 4800000,
7010 [4] = 2666667,
7011 };
7012 static const unsigned int cl_vco[8] = {
7013 [0] = 3200000,
7014 [1] = 4000000,
7015 [2] = 5333333,
7016 [3] = 6400000,
7017 [4] = 3333333,
7018 [5] = 3566667,
7019 [6] = 4266667,
7020 };
7021 static const unsigned int elk_vco[8] = {
7022 [0] = 3200000,
7023 [1] = 4000000,
7024 [2] = 5333333,
7025 [3] = 4800000,
7026 };
7027 static const unsigned int ctg_vco[8] = {
7028 [0] = 3200000,
7029 [1] = 4000000,
7030 [2] = 5333333,
7031 [3] = 6400000,
7032 [4] = 2666667,
7033 [5] = 4266667,
7034 };
7035 const unsigned int *vco_table;
7036 unsigned int vco;
7037 uint8_t tmp = 0;
7038
7039 /* FIXME other chipsets? */
7040 if (IS_GM45(dev))
7041 vco_table = ctg_vco;
7042 else if (IS_G4X(dev))
7043 vco_table = elk_vco;
7044 else if (IS_CRESTLINE(dev))
7045 vco_table = cl_vco;
7046 else if (IS_PINEVIEW(dev))
7047 vco_table = pnv_vco;
7048 else if (IS_G33(dev))
7049 vco_table = blb_vco;
7050 else
7051 return 0;
7052
7053 tmp = I915_READ(IS_MOBILE(dev) ? HPLLVCO_MOBILE : HPLLVCO);
7054
7055 vco = vco_table[tmp & 0x7];
7056 if (vco == 0)
7057 DRM_ERROR("Bad HPLL VCO (HPLLVCO=0x%02x)\n", tmp);
7058 else
7059 DRM_DEBUG_KMS("HPLL VCO %u kHz\n", vco);
7060
7061 return vco;
7062}
7063
7064static int gm45_get_display_clock_speed(struct drm_device *dev)
7065{
7066 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7067 uint16_t tmp = 0;
7068
7069 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7070
7071 cdclk_sel = (tmp >> 12) & 0x1;
7072
7073 switch (vco) {
7074 case 2666667:
7075 case 4000000:
7076 case 5333333:
7077 return cdclk_sel ? 333333 : 222222;
7078 case 3200000:
7079 return cdclk_sel ? 320000 : 228571;
7080 default:
7081 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u, CFGC=0x%04x\n", vco, tmp);
7082 return 222222;
7083 }
7084}
7085
7086static int i965gm_get_display_clock_speed(struct drm_device *dev)
7087{
7088 static const uint8_t div_3200[] = { 16, 10, 8 };
7089 static const uint8_t div_4000[] = { 20, 12, 10 };
7090 static const uint8_t div_5333[] = { 24, 16, 14 };
7091 const uint8_t *div_table;
7092 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7093 uint16_t tmp = 0;
7094
7095 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7096
7097 cdclk_sel = ((tmp >> 8) & 0x1f) - 1;
7098
7099 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7100 goto fail;
7101
7102 switch (vco) {
7103 case 3200000:
7104 div_table = div_3200;
7105 break;
7106 case 4000000:
7107 div_table = div_4000;
7108 break;
7109 case 5333333:
7110 div_table = div_5333;
7111 break;
7112 default:
7113 goto fail;
7114 }
7115
7116 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7117
caf4e252 7118fail:
34edce2f
VS
7119 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%04x\n", vco, tmp);
7120 return 200000;
7121}
7122
7123static int g33_get_display_clock_speed(struct drm_device *dev)
7124{
7125 static const uint8_t div_3200[] = { 12, 10, 8, 7, 5, 16 };
7126 static const uint8_t div_4000[] = { 14, 12, 10, 8, 6, 20 };
7127 static const uint8_t div_4800[] = { 20, 14, 12, 10, 8, 24 };
7128 static const uint8_t div_5333[] = { 20, 16, 12, 12, 8, 28 };
7129 const uint8_t *div_table;
7130 unsigned int cdclk_sel, vco = intel_hpll_vco(dev);
7131 uint16_t tmp = 0;
7132
7133 pci_read_config_word(dev->pdev, GCFGC, &tmp);
7134
7135 cdclk_sel = (tmp >> 4) & 0x7;
7136
7137 if (cdclk_sel >= ARRAY_SIZE(div_3200))
7138 goto fail;
7139
7140 switch (vco) {
7141 case 3200000:
7142 div_table = div_3200;
7143 break;
7144 case 4000000:
7145 div_table = div_4000;
7146 break;
7147 case 4800000:
7148 div_table = div_4800;
7149 break;
7150 case 5333333:
7151 div_table = div_5333;
7152 break;
7153 default:
7154 goto fail;
7155 }
7156
7157 return DIV_ROUND_CLOSEST(vco, div_table[cdclk_sel]);
7158
caf4e252 7159fail:
34edce2f
VS
7160 DRM_ERROR("Unable to determine CDCLK. HPLL VCO=%u kHz, CFGC=0x%08x\n", vco, tmp);
7161 return 190476;
7162}
7163
2c07245f 7164static void
a65851af 7165intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
2c07245f 7166{
a65851af
VS
7167 while (*num > DATA_LINK_M_N_MASK ||
7168 *den > DATA_LINK_M_N_MASK) {
2c07245f
ZW
7169 *num >>= 1;
7170 *den >>= 1;
7171 }
7172}
7173
a65851af
VS
7174static void compute_m_n(unsigned int m, unsigned int n,
7175 uint32_t *ret_m, uint32_t *ret_n)
7176{
7177 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
7178 *ret_m = div_u64((uint64_t) m * *ret_n, n);
7179 intel_reduce_m_n_ratio(ret_m, ret_n);
7180}
7181
e69d0bc1
DV
7182void
7183intel_link_compute_m_n(int bits_per_pixel, int nlanes,
7184 int pixel_clock, int link_clock,
7185 struct intel_link_m_n *m_n)
2c07245f 7186{
e69d0bc1 7187 m_n->tu = 64;
a65851af
VS
7188
7189 compute_m_n(bits_per_pixel * pixel_clock,
7190 link_clock * nlanes * 8,
7191 &m_n->gmch_m, &m_n->gmch_n);
7192
7193 compute_m_n(pixel_clock, link_clock,
7194 &m_n->link_m, &m_n->link_n);
2c07245f
ZW
7195}
7196
a7615030
CW
7197static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
7198{
d330a953
JN
7199 if (i915.panel_use_ssc >= 0)
7200 return i915.panel_use_ssc != 0;
41aa3448 7201 return dev_priv->vbt.lvds_use_ssc
435793df 7202 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
a7615030
CW
7203}
7204
a93e255f
ACO
7205static int i9xx_get_refclk(const struct intel_crtc_state *crtc_state,
7206 int num_connectors)
c65d77d8 7207{
a93e255f 7208 struct drm_device *dev = crtc_state->base.crtc->dev;
c65d77d8
JB
7209 struct drm_i915_private *dev_priv = dev->dev_private;
7210 int refclk;
7211
a93e255f
ACO
7212 WARN_ON(!crtc_state->base.state);
7213
666a4537 7214 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev) || IS_BROXTON(dev)) {
9a0ea498 7215 refclk = 100000;
a93e255f 7216 } else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
c65d77d8 7217 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b
VS
7218 refclk = dev_priv->vbt.lvds_ssc_freq;
7219 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
c65d77d8
JB
7220 } else if (!IS_GEN2(dev)) {
7221 refclk = 96000;
7222 } else {
7223 refclk = 48000;
7224 }
7225
7226 return refclk;
7227}
7228
7429e9d4 7229static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
c65d77d8 7230{
7df00d7a 7231 return (1 << dpll->n) << 16 | dpll->m2;
7429e9d4 7232}
f47709a9 7233
7429e9d4
DV
7234static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
7235{
7236 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
c65d77d8
JB
7237}
7238
f47709a9 7239static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
190f68c5 7240 struct intel_crtc_state *crtc_state,
a7516a05
JB
7241 intel_clock_t *reduced_clock)
7242{
f47709a9 7243 struct drm_device *dev = crtc->base.dev;
a7516a05
JB
7244 u32 fp, fp2 = 0;
7245
7246 if (IS_PINEVIEW(dev)) {
190f68c5 7247 fp = pnv_dpll_compute_fp(&crtc_state->dpll);
a7516a05 7248 if (reduced_clock)
7429e9d4 7249 fp2 = pnv_dpll_compute_fp(reduced_clock);
a7516a05 7250 } else {
190f68c5 7251 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
a7516a05 7252 if (reduced_clock)
7429e9d4 7253 fp2 = i9xx_dpll_compute_fp(reduced_clock);
a7516a05
JB
7254 }
7255
190f68c5 7256 crtc_state->dpll_hw_state.fp0 = fp;
a7516a05 7257
f47709a9 7258 crtc->lowfreq_avail = false;
a93e255f 7259 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
ab585dea 7260 reduced_clock) {
190f68c5 7261 crtc_state->dpll_hw_state.fp1 = fp2;
f47709a9 7262 crtc->lowfreq_avail = true;
a7516a05 7263 } else {
190f68c5 7264 crtc_state->dpll_hw_state.fp1 = fp;
a7516a05
JB
7265 }
7266}
7267
5e69f97f
CML
7268static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
7269 pipe)
89b667f8
JB
7270{
7271 u32 reg_val;
7272
7273 /*
7274 * PLLB opamp always calibrates to max value of 0x3f, force enable it
7275 * and set it to a reasonable value instead.
7276 */
ab3c759a 7277 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8
JB
7278 reg_val &= 0xffffff00;
7279 reg_val |= 0x00000030;
ab3c759a 7280 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 7281
ab3c759a 7282 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
7283 reg_val &= 0x8cffffff;
7284 reg_val = 0x8c000000;
ab3c759a 7285 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8 7286
ab3c759a 7287 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
89b667f8 7288 reg_val &= 0xffffff00;
ab3c759a 7289 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
89b667f8 7290
ab3c759a 7291 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
89b667f8
JB
7292 reg_val &= 0x00ffffff;
7293 reg_val |= 0xb0000000;
ab3c759a 7294 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
89b667f8
JB
7295}
7296
b551842d
DV
7297static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
7298 struct intel_link_m_n *m_n)
7299{
7300 struct drm_device *dev = crtc->base.dev;
7301 struct drm_i915_private *dev_priv = dev->dev_private;
7302 int pipe = crtc->pipe;
7303
e3b95f1e
DV
7304 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7305 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
7306 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
7307 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
b551842d
DV
7308}
7309
7310static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
f769cd24
VK
7311 struct intel_link_m_n *m_n,
7312 struct intel_link_m_n *m2_n2)
b551842d
DV
7313{
7314 struct drm_device *dev = crtc->base.dev;
7315 struct drm_i915_private *dev_priv = dev->dev_private;
7316 int pipe = crtc->pipe;
6e3c9717 7317 enum transcoder transcoder = crtc->config->cpu_transcoder;
b551842d
DV
7318
7319 if (INTEL_INFO(dev)->gen >= 5) {
7320 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
7321 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
7322 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
7323 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
f769cd24
VK
7324 /* M2_N2 registers to be set only for gen < 8 (M2_N2 available
7325 * for gen < 8) and if DRRS is supported (to make sure the
7326 * registers are not unnecessarily accessed).
7327 */
44395bfe 7328 if (m2_n2 && (IS_CHERRYVIEW(dev) || INTEL_INFO(dev)->gen < 8) &&
6e3c9717 7329 crtc->config->has_drrs) {
f769cd24
VK
7330 I915_WRITE(PIPE_DATA_M2(transcoder),
7331 TU_SIZE(m2_n2->tu) | m2_n2->gmch_m);
7332 I915_WRITE(PIPE_DATA_N2(transcoder), m2_n2->gmch_n);
7333 I915_WRITE(PIPE_LINK_M2(transcoder), m2_n2->link_m);
7334 I915_WRITE(PIPE_LINK_N2(transcoder), m2_n2->link_n);
7335 }
b551842d 7336 } else {
e3b95f1e
DV
7337 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
7338 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
7339 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
7340 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
b551842d
DV
7341 }
7342}
7343
fe3cd48d 7344void intel_dp_set_m_n(struct intel_crtc *crtc, enum link_m_n_set m_n)
03afc4a2 7345{
fe3cd48d
R
7346 struct intel_link_m_n *dp_m_n, *dp_m2_n2 = NULL;
7347
7348 if (m_n == M1_N1) {
7349 dp_m_n = &crtc->config->dp_m_n;
7350 dp_m2_n2 = &crtc->config->dp_m2_n2;
7351 } else if (m_n == M2_N2) {
7352
7353 /*
7354 * M2_N2 registers are not supported. Hence m2_n2 divider value
7355 * needs to be programmed into M1_N1.
7356 */
7357 dp_m_n = &crtc->config->dp_m2_n2;
7358 } else {
7359 DRM_ERROR("Unsupported divider value\n");
7360 return;
7361 }
7362
6e3c9717
ACO
7363 if (crtc->config->has_pch_encoder)
7364 intel_pch_transcoder_set_m_n(crtc, &crtc->config->dp_m_n);
03afc4a2 7365 else
fe3cd48d 7366 intel_cpu_transcoder_set_m_n(crtc, dp_m_n, dp_m2_n2);
03afc4a2
DV
7367}
7368
251ac862
DV
7369static void vlv_compute_dpll(struct intel_crtc *crtc,
7370 struct intel_crtc_state *pipe_config)
bdd4b6a6
DV
7371{
7372 u32 dpll, dpll_md;
7373
7374 /*
7375 * Enable DPIO clock input. We should never disable the reference
7376 * clock for pipe B, since VGA hotplug / manual detection depends
7377 * on it.
7378 */
60bfe44f
VS
7379 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REF_CLK_ENABLE_VLV |
7380 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_REF_CLK_VLV;
bdd4b6a6
DV
7381 /* We should never disable this, set it here for state tracking */
7382 if (crtc->pipe == PIPE_B)
7383 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
7384 dpll |= DPLL_VCO_ENABLE;
d288f65f 7385 pipe_config->dpll_hw_state.dpll = dpll;
bdd4b6a6 7386
d288f65f 7387 dpll_md = (pipe_config->pixel_multiplier - 1)
bdd4b6a6 7388 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
d288f65f 7389 pipe_config->dpll_hw_state.dpll_md = dpll_md;
bdd4b6a6
DV
7390}
7391
d288f65f 7392static void vlv_prepare_pll(struct intel_crtc *crtc,
5cec258b 7393 const struct intel_crtc_state *pipe_config)
a0c4da24 7394{
f47709a9 7395 struct drm_device *dev = crtc->base.dev;
a0c4da24 7396 struct drm_i915_private *dev_priv = dev->dev_private;
f47709a9 7397 int pipe = crtc->pipe;
bdd4b6a6 7398 u32 mdiv;
a0c4da24 7399 u32 bestn, bestm1, bestm2, bestp1, bestp2;
bdd4b6a6 7400 u32 coreclk, reg_val;
a0c4da24 7401
a580516d 7402 mutex_lock(&dev_priv->sb_lock);
09153000 7403
d288f65f
VS
7404 bestn = pipe_config->dpll.n;
7405 bestm1 = pipe_config->dpll.m1;
7406 bestm2 = pipe_config->dpll.m2;
7407 bestp1 = pipe_config->dpll.p1;
7408 bestp2 = pipe_config->dpll.p2;
a0c4da24 7409
89b667f8
JB
7410 /* See eDP HDMI DPIO driver vbios notes doc */
7411
7412 /* PLL B needs special handling */
bdd4b6a6 7413 if (pipe == PIPE_B)
5e69f97f 7414 vlv_pllb_recal_opamp(dev_priv, pipe);
89b667f8
JB
7415
7416 /* Set up Tx target for periodic Rcomp update */
ab3c759a 7417 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
89b667f8
JB
7418
7419 /* Disable target IRef on PLL */
ab3c759a 7420 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
89b667f8 7421 reg_val &= 0x00ffffff;
ab3c759a 7422 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
89b667f8
JB
7423
7424 /* Disable fast lock */
ab3c759a 7425 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
89b667f8
JB
7426
7427 /* Set idtafcrecal before PLL is enabled */
a0c4da24
JB
7428 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
7429 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
7430 mdiv |= ((bestn << DPIO_N_SHIFT));
a0c4da24 7431 mdiv |= (1 << DPIO_K_SHIFT);
7df5080b
JB
7432
7433 /*
7434 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
7435 * but we don't support that).
7436 * Note: don't use the DAC post divider as it seems unstable.
7437 */
7438 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
ab3c759a 7439 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 7440
a0c4da24 7441 mdiv |= DPIO_ENABLE_CALIBRATION;
ab3c759a 7442 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
a0c4da24 7443
89b667f8 7444 /* Set HBR and RBR LPF coefficients */
d288f65f 7445 if (pipe_config->port_clock == 162000 ||
409ee761
ACO
7446 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG) ||
7447 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
ab3c759a 7448 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
885b0120 7449 0x009f0003);
89b667f8 7450 else
ab3c759a 7451 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
89b667f8
JB
7452 0x00d0000f);
7453
681a8504 7454 if (pipe_config->has_dp_encoder) {
89b667f8 7455 /* Use SSC source */
bdd4b6a6 7456 if (pipe == PIPE_A)
ab3c759a 7457 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7458 0x0df40000);
7459 else
ab3c759a 7460 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7461 0x0df70000);
7462 } else { /* HDMI or VGA */
7463 /* Use bend source */
bdd4b6a6 7464 if (pipe == PIPE_A)
ab3c759a 7465 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7466 0x0df70000);
7467 else
ab3c759a 7468 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
89b667f8
JB
7469 0x0df40000);
7470 }
a0c4da24 7471
ab3c759a 7472 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
89b667f8 7473 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
409ee761
ACO
7474 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
7475 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
89b667f8 7476 coreclk |= 0x01000000;
ab3c759a 7477 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
a0c4da24 7478
ab3c759a 7479 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
a580516d 7480 mutex_unlock(&dev_priv->sb_lock);
a0c4da24
JB
7481}
7482
251ac862
DV
7483static void chv_compute_dpll(struct intel_crtc *crtc,
7484 struct intel_crtc_state *pipe_config)
1ae0d137 7485{
60bfe44f
VS
7486 pipe_config->dpll_hw_state.dpll = DPLL_SSC_REF_CLK_CHV |
7487 DPLL_REF_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
1ae0d137
VS
7488 DPLL_VCO_ENABLE;
7489 if (crtc->pipe != PIPE_A)
d288f65f 7490 pipe_config->dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
1ae0d137 7491
d288f65f
VS
7492 pipe_config->dpll_hw_state.dpll_md =
7493 (pipe_config->pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
1ae0d137
VS
7494}
7495
d288f65f 7496static void chv_prepare_pll(struct intel_crtc *crtc,
5cec258b 7497 const struct intel_crtc_state *pipe_config)
9d556c99
CML
7498{
7499 struct drm_device *dev = crtc->base.dev;
7500 struct drm_i915_private *dev_priv = dev->dev_private;
7501 int pipe = crtc->pipe;
f0f59a00 7502 i915_reg_t dpll_reg = DPLL(crtc->pipe);
9d556c99 7503 enum dpio_channel port = vlv_pipe_to_channel(pipe);
9cbe40c1 7504 u32 loopfilter, tribuf_calcntr;
9d556c99 7505 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
a945ce7e 7506 u32 dpio_val;
9cbe40c1 7507 int vco;
9d556c99 7508
d288f65f
VS
7509 bestn = pipe_config->dpll.n;
7510 bestm2_frac = pipe_config->dpll.m2 & 0x3fffff;
7511 bestm1 = pipe_config->dpll.m1;
7512 bestm2 = pipe_config->dpll.m2 >> 22;
7513 bestp1 = pipe_config->dpll.p1;
7514 bestp2 = pipe_config->dpll.p2;
9cbe40c1 7515 vco = pipe_config->dpll.vco;
a945ce7e 7516 dpio_val = 0;
9cbe40c1 7517 loopfilter = 0;
9d556c99
CML
7518
7519 /*
7520 * Enable Refclk and SSC
7521 */
a11b0703 7522 I915_WRITE(dpll_reg,
d288f65f 7523 pipe_config->dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
a11b0703 7524
a580516d 7525 mutex_lock(&dev_priv->sb_lock);
9d556c99 7526
9d556c99
CML
7527 /* p1 and p2 divider */
7528 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
7529 5 << DPIO_CHV_S1_DIV_SHIFT |
7530 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
7531 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
7532 1 << DPIO_CHV_K_DIV_SHIFT);
7533
7534 /* Feedback post-divider - m2 */
7535 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
7536
7537 /* Feedback refclk divider - n and m1 */
7538 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
7539 DPIO_CHV_M1_DIV_BY_2 |
7540 1 << DPIO_CHV_N_DIV_SHIFT);
7541
7542 /* M2 fraction division */
25a25dfc 7543 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
9d556c99
CML
7544
7545 /* M2 fraction division enable */
a945ce7e
VP
7546 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
7547 dpio_val &= ~(DPIO_CHV_FEEDFWD_GAIN_MASK | DPIO_CHV_FRAC_DIV_EN);
7548 dpio_val |= (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT);
7549 if (bestm2_frac)
7550 dpio_val |= DPIO_CHV_FRAC_DIV_EN;
7551 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port), dpio_val);
9d556c99 7552
de3a0fde
VP
7553 /* Program digital lock detect threshold */
7554 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW9(port));
7555 dpio_val &= ~(DPIO_CHV_INT_LOCK_THRESHOLD_MASK |
7556 DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE);
7557 dpio_val |= (0x5 << DPIO_CHV_INT_LOCK_THRESHOLD_SHIFT);
7558 if (!bestm2_frac)
7559 dpio_val |= DPIO_CHV_INT_LOCK_THRESHOLD_SEL_COARSE;
7560 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW9(port), dpio_val);
7561
9d556c99 7562 /* Loop filter */
9cbe40c1
VP
7563 if (vco == 5400000) {
7564 loopfilter |= (0x3 << DPIO_CHV_PROP_COEFF_SHIFT);
7565 loopfilter |= (0x8 << DPIO_CHV_INT_COEFF_SHIFT);
7566 loopfilter |= (0x1 << DPIO_CHV_GAIN_CTRL_SHIFT);
7567 tribuf_calcntr = 0x9;
7568 } else if (vco <= 6200000) {
7569 loopfilter |= (0x5 << DPIO_CHV_PROP_COEFF_SHIFT);
7570 loopfilter |= (0xB << DPIO_CHV_INT_COEFF_SHIFT);
7571 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7572 tribuf_calcntr = 0x9;
7573 } else if (vco <= 6480000) {
7574 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7575 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7576 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7577 tribuf_calcntr = 0x8;
7578 } else {
7579 /* Not supported. Apply the same limits as in the max case */
7580 loopfilter |= (0x4 << DPIO_CHV_PROP_COEFF_SHIFT);
7581 loopfilter |= (0x9 << DPIO_CHV_INT_COEFF_SHIFT);
7582 loopfilter |= (0x3 << DPIO_CHV_GAIN_CTRL_SHIFT);
7583 tribuf_calcntr = 0;
7584 }
9d556c99
CML
7585 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
7586
968040b2 7587 dpio_val = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW8(port));
9cbe40c1
VP
7588 dpio_val &= ~DPIO_CHV_TDC_TARGET_CNT_MASK;
7589 dpio_val |= (tribuf_calcntr << DPIO_CHV_TDC_TARGET_CNT_SHIFT);
7590 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW8(port), dpio_val);
7591
9d556c99
CML
7592 /* AFC Recal */
7593 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
7594 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
7595 DPIO_AFC_RECAL);
7596
a580516d 7597 mutex_unlock(&dev_priv->sb_lock);
9d556c99
CML
7598}
7599
d288f65f
VS
7600/**
7601 * vlv_force_pll_on - forcibly enable just the PLL
7602 * @dev_priv: i915 private structure
7603 * @pipe: pipe PLL to enable
7604 * @dpll: PLL configuration
7605 *
7606 * Enable the PLL for @pipe using the supplied @dpll config. To be used
7607 * in cases where we need the PLL enabled even when @pipe is not going to
7608 * be enabled.
7609 */
7610void vlv_force_pll_on(struct drm_device *dev, enum pipe pipe,
7611 const struct dpll *dpll)
7612{
7613 struct intel_crtc *crtc =
7614 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
5cec258b 7615 struct intel_crtc_state pipe_config = {
a93e255f 7616 .base.crtc = &crtc->base,
d288f65f
VS
7617 .pixel_multiplier = 1,
7618 .dpll = *dpll,
7619 };
7620
7621 if (IS_CHERRYVIEW(dev)) {
251ac862 7622 chv_compute_dpll(crtc, &pipe_config);
d288f65f
VS
7623 chv_prepare_pll(crtc, &pipe_config);
7624 chv_enable_pll(crtc, &pipe_config);
7625 } else {
251ac862 7626 vlv_compute_dpll(crtc, &pipe_config);
d288f65f
VS
7627 vlv_prepare_pll(crtc, &pipe_config);
7628 vlv_enable_pll(crtc, &pipe_config);
7629 }
7630}
7631
7632/**
7633 * vlv_force_pll_off - forcibly disable just the PLL
7634 * @dev_priv: i915 private structure
7635 * @pipe: pipe PLL to disable
7636 *
7637 * Disable the PLL for @pipe. To be used in cases where we need
7638 * the PLL enabled even when @pipe is not going to be enabled.
7639 */
7640void vlv_force_pll_off(struct drm_device *dev, enum pipe pipe)
7641{
7642 if (IS_CHERRYVIEW(dev))
7643 chv_disable_pll(to_i915(dev), pipe);
7644 else
7645 vlv_disable_pll(to_i915(dev), pipe);
7646}
7647
251ac862
DV
7648static void i9xx_compute_dpll(struct intel_crtc *crtc,
7649 struct intel_crtc_state *crtc_state,
7650 intel_clock_t *reduced_clock,
7651 int num_connectors)
eb1cbe48 7652{
f47709a9 7653 struct drm_device *dev = crtc->base.dev;
eb1cbe48 7654 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48
DV
7655 u32 dpll;
7656 bool is_sdvo;
190f68c5 7657 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 7658
190f68c5 7659 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 7660
a93e255f
ACO
7661 is_sdvo = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_SDVO) ||
7662 intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_HDMI);
eb1cbe48
DV
7663
7664 dpll = DPLL_VGA_MODE_DIS;
7665
a93e255f 7666 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS))
eb1cbe48
DV
7667 dpll |= DPLLB_MODE_LVDS;
7668 else
7669 dpll |= DPLLB_MODE_DAC_SERIAL;
6cc5f341 7670
ef1b460d 7671 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
190f68c5 7672 dpll |= (crtc_state->pixel_multiplier - 1)
198a037f 7673 << SDVO_MULTIPLIER_SHIFT_HIRES;
eb1cbe48 7674 }
198a037f
DV
7675
7676 if (is_sdvo)
4a33e48d 7677 dpll |= DPLL_SDVO_HIGH_SPEED;
198a037f 7678
190f68c5 7679 if (crtc_state->has_dp_encoder)
4a33e48d 7680 dpll |= DPLL_SDVO_HIGH_SPEED;
eb1cbe48
DV
7681
7682 /* compute bitmask from p1 value */
7683 if (IS_PINEVIEW(dev))
7684 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
7685 else {
7686 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7687 if (IS_G4X(dev) && reduced_clock)
7688 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
7689 }
7690 switch (clock->p2) {
7691 case 5:
7692 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
7693 break;
7694 case 7:
7695 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
7696 break;
7697 case 10:
7698 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
7699 break;
7700 case 14:
7701 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
7702 break;
7703 }
7704 if (INTEL_INFO(dev)->gen >= 4)
7705 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
7706
190f68c5 7707 if (crtc_state->sdvo_tv_clock)
eb1cbe48 7708 dpll |= PLL_REF_INPUT_TVCLKINBC;
a93e255f 7709 else if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
7710 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7711 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7712 else
7713 dpll |= PLL_REF_INPUT_DREFCLK;
7714
7715 dpll |= DPLL_VCO_ENABLE;
190f68c5 7716 crtc_state->dpll_hw_state.dpll = dpll;
8bcc2795 7717
eb1cbe48 7718 if (INTEL_INFO(dev)->gen >= 4) {
190f68c5 7719 u32 dpll_md = (crtc_state->pixel_multiplier - 1)
ef1b460d 7720 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
190f68c5 7721 crtc_state->dpll_hw_state.dpll_md = dpll_md;
eb1cbe48
DV
7722 }
7723}
7724
251ac862
DV
7725static void i8xx_compute_dpll(struct intel_crtc *crtc,
7726 struct intel_crtc_state *crtc_state,
7727 intel_clock_t *reduced_clock,
7728 int num_connectors)
eb1cbe48 7729{
f47709a9 7730 struct drm_device *dev = crtc->base.dev;
eb1cbe48 7731 struct drm_i915_private *dev_priv = dev->dev_private;
eb1cbe48 7732 u32 dpll;
190f68c5 7733 struct dpll *clock = &crtc_state->dpll;
eb1cbe48 7734
190f68c5 7735 i9xx_update_pll_dividers(crtc, crtc_state, reduced_clock);
2a8f64ca 7736
eb1cbe48
DV
7737 dpll = DPLL_VGA_MODE_DIS;
7738
a93e255f 7739 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS)) {
eb1cbe48
DV
7740 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7741 } else {
7742 if (clock->p1 == 2)
7743 dpll |= PLL_P1_DIVIDE_BY_TWO;
7744 else
7745 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
7746 if (clock->p2 == 4)
7747 dpll |= PLL_P2_DIVIDE_BY_4;
7748 }
7749
a93e255f 7750 if (!IS_I830(dev) && intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_DVO))
4a33e48d
DV
7751 dpll |= DPLL_DVO_2X_MODE;
7752
a93e255f 7753 if (intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS) &&
eb1cbe48
DV
7754 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
7755 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
7756 else
7757 dpll |= PLL_REF_INPUT_DREFCLK;
7758
7759 dpll |= DPLL_VCO_ENABLE;
190f68c5 7760 crtc_state->dpll_hw_state.dpll = dpll;
eb1cbe48
DV
7761}
7762
8a654f3b 7763static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
b0e77b9c
PZ
7764{
7765 struct drm_device *dev = intel_crtc->base.dev;
7766 struct drm_i915_private *dev_priv = dev->dev_private;
7767 enum pipe pipe = intel_crtc->pipe;
6e3c9717 7768 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
7c5f93b0 7769 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
1caea6e9
VS
7770 uint32_t crtc_vtotal, crtc_vblank_end;
7771 int vsyncshift = 0;
4d8a62ea
DV
7772
7773 /* We need to be careful not to changed the adjusted mode, for otherwise
7774 * the hw state checker will get angry at the mismatch. */
7775 crtc_vtotal = adjusted_mode->crtc_vtotal;
7776 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
b0e77b9c 7777
609aeaca 7778 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
b0e77b9c 7779 /* the chip adds 2 halflines automatically */
4d8a62ea
DV
7780 crtc_vtotal -= 1;
7781 crtc_vblank_end -= 1;
609aeaca 7782
409ee761 7783 if (intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
609aeaca
VS
7784 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
7785 else
7786 vsyncshift = adjusted_mode->crtc_hsync_start -
7787 adjusted_mode->crtc_htotal / 2;
1caea6e9
VS
7788 if (vsyncshift < 0)
7789 vsyncshift += adjusted_mode->crtc_htotal;
b0e77b9c
PZ
7790 }
7791
7792 if (INTEL_INFO(dev)->gen > 3)
fe2b8f9d 7793 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
b0e77b9c 7794
fe2b8f9d 7795 I915_WRITE(HTOTAL(cpu_transcoder),
b0e77b9c
PZ
7796 (adjusted_mode->crtc_hdisplay - 1) |
7797 ((adjusted_mode->crtc_htotal - 1) << 16));
fe2b8f9d 7798 I915_WRITE(HBLANK(cpu_transcoder),
b0e77b9c
PZ
7799 (adjusted_mode->crtc_hblank_start - 1) |
7800 ((adjusted_mode->crtc_hblank_end - 1) << 16));
fe2b8f9d 7801 I915_WRITE(HSYNC(cpu_transcoder),
b0e77b9c
PZ
7802 (adjusted_mode->crtc_hsync_start - 1) |
7803 ((adjusted_mode->crtc_hsync_end - 1) << 16));
7804
fe2b8f9d 7805 I915_WRITE(VTOTAL(cpu_transcoder),
b0e77b9c 7806 (adjusted_mode->crtc_vdisplay - 1) |
4d8a62ea 7807 ((crtc_vtotal - 1) << 16));
fe2b8f9d 7808 I915_WRITE(VBLANK(cpu_transcoder),
b0e77b9c 7809 (adjusted_mode->crtc_vblank_start - 1) |
4d8a62ea 7810 ((crtc_vblank_end - 1) << 16));
fe2b8f9d 7811 I915_WRITE(VSYNC(cpu_transcoder),
b0e77b9c
PZ
7812 (adjusted_mode->crtc_vsync_start - 1) |
7813 ((adjusted_mode->crtc_vsync_end - 1) << 16));
7814
b5e508d4
PZ
7815 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
7816 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
7817 * documented on the DDI_FUNC_CTL register description, EDP Input Select
7818 * bits. */
7819 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
7820 (pipe == PIPE_B || pipe == PIPE_C))
7821 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
7822
b0e77b9c
PZ
7823 /* pipesrc controls the size that is scaled from, which should
7824 * always be the user's requested size.
7825 */
7826 I915_WRITE(PIPESRC(pipe),
6e3c9717
ACO
7827 ((intel_crtc->config->pipe_src_w - 1) << 16) |
7828 (intel_crtc->config->pipe_src_h - 1));
b0e77b9c
PZ
7829}
7830
1bd1bd80 7831static void intel_get_pipe_timings(struct intel_crtc *crtc,
5cec258b 7832 struct intel_crtc_state *pipe_config)
1bd1bd80
DV
7833{
7834 struct drm_device *dev = crtc->base.dev;
7835 struct drm_i915_private *dev_priv = dev->dev_private;
7836 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
7837 uint32_t tmp;
7838
7839 tmp = I915_READ(HTOTAL(cpu_transcoder));
2d112de7
ACO
7840 pipe_config->base.adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
7841 pipe_config->base.adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7842 tmp = I915_READ(HBLANK(cpu_transcoder));
2d112de7
ACO
7843 pipe_config->base.adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
7844 pipe_config->base.adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7845 tmp = I915_READ(HSYNC(cpu_transcoder));
2d112de7
ACO
7846 pipe_config->base.adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
7847 pipe_config->base.adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
7848
7849 tmp = I915_READ(VTOTAL(cpu_transcoder));
2d112de7
ACO
7850 pipe_config->base.adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
7851 pipe_config->base.adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7852 tmp = I915_READ(VBLANK(cpu_transcoder));
2d112de7
ACO
7853 pipe_config->base.adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
7854 pipe_config->base.adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80 7855 tmp = I915_READ(VSYNC(cpu_transcoder));
2d112de7
ACO
7856 pipe_config->base.adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
7857 pipe_config->base.adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
1bd1bd80
DV
7858
7859 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
2d112de7
ACO
7860 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
7861 pipe_config->base.adjusted_mode.crtc_vtotal += 1;
7862 pipe_config->base.adjusted_mode.crtc_vblank_end += 1;
1bd1bd80
DV
7863 }
7864
7865 tmp = I915_READ(PIPESRC(crtc->pipe));
37327abd
VS
7866 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
7867 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
7868
2d112de7
ACO
7869 pipe_config->base.mode.vdisplay = pipe_config->pipe_src_h;
7870 pipe_config->base.mode.hdisplay = pipe_config->pipe_src_w;
1bd1bd80
DV
7871}
7872
f6a83288 7873void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5cec258b 7874 struct intel_crtc_state *pipe_config)
babea61d 7875{
2d112de7
ACO
7876 mode->hdisplay = pipe_config->base.adjusted_mode.crtc_hdisplay;
7877 mode->htotal = pipe_config->base.adjusted_mode.crtc_htotal;
7878 mode->hsync_start = pipe_config->base.adjusted_mode.crtc_hsync_start;
7879 mode->hsync_end = pipe_config->base.adjusted_mode.crtc_hsync_end;
babea61d 7880
2d112de7
ACO
7881 mode->vdisplay = pipe_config->base.adjusted_mode.crtc_vdisplay;
7882 mode->vtotal = pipe_config->base.adjusted_mode.crtc_vtotal;
7883 mode->vsync_start = pipe_config->base.adjusted_mode.crtc_vsync_start;
7884 mode->vsync_end = pipe_config->base.adjusted_mode.crtc_vsync_end;
babea61d 7885
2d112de7 7886 mode->flags = pipe_config->base.adjusted_mode.flags;
cd13f5ab 7887 mode->type = DRM_MODE_TYPE_DRIVER;
babea61d 7888
2d112de7
ACO
7889 mode->clock = pipe_config->base.adjusted_mode.crtc_clock;
7890 mode->flags |= pipe_config->base.adjusted_mode.flags;
cd13f5ab
ML
7891
7892 mode->hsync = drm_mode_hsync(mode);
7893 mode->vrefresh = drm_mode_vrefresh(mode);
7894 drm_mode_set_name(mode);
babea61d
JB
7895}
7896
84b046f3
DV
7897static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
7898{
7899 struct drm_device *dev = intel_crtc->base.dev;
7900 struct drm_i915_private *dev_priv = dev->dev_private;
7901 uint32_t pipeconf;
7902
9f11a9e4 7903 pipeconf = 0;
84b046f3 7904
b6b5d049
VS
7905 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
7906 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
7907 pipeconf |= I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE;
67c72a12 7908
6e3c9717 7909 if (intel_crtc->config->double_wide)
cf532bb2 7910 pipeconf |= PIPECONF_DOUBLE_WIDE;
84b046f3 7911
ff9ce46e 7912 /* only g4x and later have fancy bpc/dither controls */
666a4537 7913 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
ff9ce46e 7914 /* Bspec claims that we can't use dithering for 30bpp pipes. */
6e3c9717 7915 if (intel_crtc->config->dither && intel_crtc->config->pipe_bpp != 30)
ff9ce46e 7916 pipeconf |= PIPECONF_DITHER_EN |
84b046f3 7917 PIPECONF_DITHER_TYPE_SP;
84b046f3 7918
6e3c9717 7919 switch (intel_crtc->config->pipe_bpp) {
ff9ce46e
DV
7920 case 18:
7921 pipeconf |= PIPECONF_6BPC;
7922 break;
7923 case 24:
7924 pipeconf |= PIPECONF_8BPC;
7925 break;
7926 case 30:
7927 pipeconf |= PIPECONF_10BPC;
7928 break;
7929 default:
7930 /* Case prevented by intel_choose_pipe_bpp_dither. */
7931 BUG();
84b046f3
DV
7932 }
7933 }
7934
7935 if (HAS_PIPE_CXSR(dev)) {
7936 if (intel_crtc->lowfreq_avail) {
7937 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
7938 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
7939 } else {
7940 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
84b046f3
DV
7941 }
7942 }
7943
6e3c9717 7944 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
efc2cfff 7945 if (INTEL_INFO(dev)->gen < 4 ||
409ee761 7946 intel_pipe_has_type(intel_crtc, INTEL_OUTPUT_SDVO))
efc2cfff
VS
7947 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
7948 else
7949 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
7950 } else
84b046f3
DV
7951 pipeconf |= PIPECONF_PROGRESSIVE;
7952
666a4537
WB
7953 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
7954 intel_crtc->config->limited_color_range)
9f11a9e4 7955 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
9c8e09b7 7956
84b046f3
DV
7957 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
7958 POSTING_READ(PIPECONF(intel_crtc->pipe));
7959}
7960
190f68c5
ACO
7961static int i9xx_crtc_compute_clock(struct intel_crtc *crtc,
7962 struct intel_crtc_state *crtc_state)
79e53945 7963{
c7653199 7964 struct drm_device *dev = crtc->base.dev;
79e53945 7965 struct drm_i915_private *dev_priv = dev->dev_private;
c751ce4f 7966 int refclk, num_connectors = 0;
c329a4ec
DV
7967 intel_clock_t clock;
7968 bool ok;
d4906093 7969 const intel_limit_t *limit;
55bb9992 7970 struct drm_atomic_state *state = crtc_state->base.state;
da3ced29 7971 struct drm_connector *connector;
55bb9992
ACO
7972 struct drm_connector_state *connector_state;
7973 int i;
79e53945 7974
dd3cd74a
ACO
7975 memset(&crtc_state->dpll_hw_state, 0,
7976 sizeof(crtc_state->dpll_hw_state));
7977
a65347ba
JN
7978 if (crtc_state->has_dsi_encoder)
7979 return 0;
43565a06 7980
a65347ba
JN
7981 for_each_connector_in_state(state, connector, connector_state, i) {
7982 if (connector_state->crtc == &crtc->base)
7983 num_connectors++;
79e53945
JB
7984 }
7985
190f68c5 7986 if (!crtc_state->clock_set) {
a93e255f 7987 refclk = i9xx_get_refclk(crtc_state, num_connectors);
79e53945 7988
e9fd1c02
JN
7989 /*
7990 * Returns a set of divisors for the desired target clock with
7991 * the given refclk, or FALSE. The returned values represent
7992 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
7993 * 2) / p1 / p2.
7994 */
a93e255f
ACO
7995 limit = intel_limit(crtc_state, refclk);
7996 ok = dev_priv->display.find_dpll(limit, crtc_state,
190f68c5 7997 crtc_state->port_clock,
e9fd1c02 7998 refclk, NULL, &clock);
f2335330 7999 if (!ok) {
e9fd1c02
JN
8000 DRM_ERROR("Couldn't find PLL settings for mode!\n");
8001 return -EINVAL;
8002 }
79e53945 8003
f2335330 8004 /* Compat-code for transition, will disappear. */
190f68c5
ACO
8005 crtc_state->dpll.n = clock.n;
8006 crtc_state->dpll.m1 = clock.m1;
8007 crtc_state->dpll.m2 = clock.m2;
8008 crtc_state->dpll.p1 = clock.p1;
8009 crtc_state->dpll.p2 = clock.p2;
f47709a9 8010 }
7026d4ac 8011
e9fd1c02 8012 if (IS_GEN2(dev)) {
c329a4ec 8013 i8xx_compute_dpll(crtc, crtc_state, NULL,
251ac862 8014 num_connectors);
9d556c99 8015 } else if (IS_CHERRYVIEW(dev)) {
251ac862 8016 chv_compute_dpll(crtc, crtc_state);
e9fd1c02 8017 } else if (IS_VALLEYVIEW(dev)) {
251ac862 8018 vlv_compute_dpll(crtc, crtc_state);
e9fd1c02 8019 } else {
c329a4ec 8020 i9xx_compute_dpll(crtc, crtc_state, NULL,
251ac862 8021 num_connectors);
e9fd1c02 8022 }
79e53945 8023
c8f7a0db 8024 return 0;
f564048e
EA
8025}
8026
2fa2fe9a 8027static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5cec258b 8028 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
8029{
8030 struct drm_device *dev = crtc->base.dev;
8031 struct drm_i915_private *dev_priv = dev->dev_private;
8032 uint32_t tmp;
8033
dc9e7dec
VS
8034 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
8035 return;
8036
2fa2fe9a 8037 tmp = I915_READ(PFIT_CONTROL);
06922821
DV
8038 if (!(tmp & PFIT_ENABLE))
8039 return;
2fa2fe9a 8040
06922821 8041 /* Check whether the pfit is attached to our pipe. */
2fa2fe9a
DV
8042 if (INTEL_INFO(dev)->gen < 4) {
8043 if (crtc->pipe != PIPE_B)
8044 return;
2fa2fe9a
DV
8045 } else {
8046 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
8047 return;
8048 }
8049
06922821 8050 pipe_config->gmch_pfit.control = tmp;
2fa2fe9a
DV
8051 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
8052 if (INTEL_INFO(dev)->gen < 5)
8053 pipe_config->gmch_pfit.lvds_border_bits =
8054 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
8055}
8056
acbec814 8057static void vlv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8058 struct intel_crtc_state *pipe_config)
acbec814
JB
8059{
8060 struct drm_device *dev = crtc->base.dev;
8061 struct drm_i915_private *dev_priv = dev->dev_private;
8062 int pipe = pipe_config->cpu_transcoder;
8063 intel_clock_t clock;
8064 u32 mdiv;
662c6ecb 8065 int refclk = 100000;
acbec814 8066
f573de5a
SK
8067 /* In case of MIPI DPLL will not even be used */
8068 if (!(pipe_config->dpll_hw_state.dpll & DPLL_VCO_ENABLE))
8069 return;
8070
a580516d 8071 mutex_lock(&dev_priv->sb_lock);
ab3c759a 8072 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
a580516d 8073 mutex_unlock(&dev_priv->sb_lock);
acbec814
JB
8074
8075 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
8076 clock.m2 = mdiv & DPIO_M2DIV_MASK;
8077 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
8078 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
8079 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
8080
dccbea3b 8081 pipe_config->port_clock = vlv_calc_dpll_params(refclk, &clock);
acbec814
JB
8082}
8083
5724dbd1
DL
8084static void
8085i9xx_get_initial_plane_config(struct intel_crtc *crtc,
8086 struct intel_initial_plane_config *plane_config)
1ad292b5
JB
8087{
8088 struct drm_device *dev = crtc->base.dev;
8089 struct drm_i915_private *dev_priv = dev->dev_private;
8090 u32 val, base, offset;
8091 int pipe = crtc->pipe, plane = crtc->plane;
8092 int fourcc, pixel_format;
6761dd31 8093 unsigned int aligned_height;
b113d5ee 8094 struct drm_framebuffer *fb;
1b842c89 8095 struct intel_framebuffer *intel_fb;
1ad292b5 8096
42a7b088
DL
8097 val = I915_READ(DSPCNTR(plane));
8098 if (!(val & DISPLAY_PLANE_ENABLE))
8099 return;
8100
d9806c9f 8101 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 8102 if (!intel_fb) {
1ad292b5
JB
8103 DRM_DEBUG_KMS("failed to alloc fb\n");
8104 return;
8105 }
8106
1b842c89
DL
8107 fb = &intel_fb->base;
8108
18c5247e
DV
8109 if (INTEL_INFO(dev)->gen >= 4) {
8110 if (val & DISPPLANE_TILED) {
49af449b 8111 plane_config->tiling = I915_TILING_X;
18c5247e
DV
8112 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
8113 }
8114 }
1ad292b5
JB
8115
8116 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 8117 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
8118 fb->pixel_format = fourcc;
8119 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
1ad292b5
JB
8120
8121 if (INTEL_INFO(dev)->gen >= 4) {
49af449b 8122 if (plane_config->tiling)
1ad292b5
JB
8123 offset = I915_READ(DSPTILEOFF(plane));
8124 else
8125 offset = I915_READ(DSPLINOFF(plane));
8126 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
8127 } else {
8128 base = I915_READ(DSPADDR(plane));
8129 }
8130 plane_config->base = base;
8131
8132 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
8133 fb->width = ((val >> 16) & 0xfff) + 1;
8134 fb->height = ((val >> 0) & 0xfff) + 1;
1ad292b5
JB
8135
8136 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 8137 fb->pitches[0] = val & 0xffffffc0;
1ad292b5 8138
b113d5ee 8139 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
8140 fb->pixel_format,
8141 fb->modifier[0]);
1ad292b5 8142
f37b5c2b 8143 plane_config->size = fb->pitches[0] * aligned_height;
1ad292b5 8144
2844a921
DL
8145 DRM_DEBUG_KMS("pipe/plane %c/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
8146 pipe_name(pipe), plane, fb->width, fb->height,
8147 fb->bits_per_pixel, base, fb->pitches[0],
8148 plane_config->size);
1ad292b5 8149
2d14030b 8150 plane_config->fb = intel_fb;
1ad292b5
JB
8151}
8152
70b23a98 8153static void chv_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 8154 struct intel_crtc_state *pipe_config)
70b23a98
VS
8155{
8156 struct drm_device *dev = crtc->base.dev;
8157 struct drm_i915_private *dev_priv = dev->dev_private;
8158 int pipe = pipe_config->cpu_transcoder;
8159 enum dpio_channel port = vlv_pipe_to_channel(pipe);
8160 intel_clock_t clock;
0d7b6b11 8161 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2, pll_dw3;
70b23a98
VS
8162 int refclk = 100000;
8163
a580516d 8164 mutex_lock(&dev_priv->sb_lock);
70b23a98
VS
8165 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
8166 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
8167 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
8168 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
0d7b6b11 8169 pll_dw3 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW3(port));
a580516d 8170 mutex_unlock(&dev_priv->sb_lock);
70b23a98
VS
8171
8172 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
0d7b6b11
ID
8173 clock.m2 = (pll_dw0 & 0xff) << 22;
8174 if (pll_dw3 & DPIO_CHV_FRAC_DIV_EN)
8175 clock.m2 |= pll_dw2 & 0x3fffff;
70b23a98
VS
8176 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
8177 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
8178 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
8179
dccbea3b 8180 pipe_config->port_clock = chv_calc_dpll_params(refclk, &clock);
70b23a98
VS
8181}
8182
0e8ffe1b 8183static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
5cec258b 8184 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
8185{
8186 struct drm_device *dev = crtc->base.dev;
8187 struct drm_i915_private *dev_priv = dev->dev_private;
8188 uint32_t tmp;
8189
f458ebbc
DV
8190 if (!intel_display_power_is_enabled(dev_priv,
8191 POWER_DOMAIN_PIPE(crtc->pipe)))
b5482bd0
ID
8192 return false;
8193
e143a21c 8194 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 8195 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 8196
0e8ffe1b
DV
8197 tmp = I915_READ(PIPECONF(crtc->pipe));
8198 if (!(tmp & PIPECONF_ENABLE))
8199 return false;
8200
666a4537 8201 if (IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
42571aef
VS
8202 switch (tmp & PIPECONF_BPC_MASK) {
8203 case PIPECONF_6BPC:
8204 pipe_config->pipe_bpp = 18;
8205 break;
8206 case PIPECONF_8BPC:
8207 pipe_config->pipe_bpp = 24;
8208 break;
8209 case PIPECONF_10BPC:
8210 pipe_config->pipe_bpp = 30;
8211 break;
8212 default:
8213 break;
8214 }
8215 }
8216
666a4537
WB
8217 if ((IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) &&
8218 (tmp & PIPECONF_COLOR_RANGE_SELECT))
b5a9fa09
DV
8219 pipe_config->limited_color_range = true;
8220
282740f7
VS
8221 if (INTEL_INFO(dev)->gen < 4)
8222 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
8223
1bd1bd80
DV
8224 intel_get_pipe_timings(crtc, pipe_config);
8225
2fa2fe9a
DV
8226 i9xx_get_pfit_config(crtc, pipe_config);
8227
6c49f241
DV
8228 if (INTEL_INFO(dev)->gen >= 4) {
8229 tmp = I915_READ(DPLL_MD(crtc->pipe));
8230 pipe_config->pixel_multiplier =
8231 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
8232 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
8bcc2795 8233 pipe_config->dpll_hw_state.dpll_md = tmp;
6c49f241
DV
8234 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
8235 tmp = I915_READ(DPLL(crtc->pipe));
8236 pipe_config->pixel_multiplier =
8237 ((tmp & SDVO_MULTIPLIER_MASK)
8238 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
8239 } else {
8240 /* Note that on i915G/GM the pixel multiplier is in the sdvo
8241 * port and will be fixed up in the encoder->get_config
8242 * function. */
8243 pipe_config->pixel_multiplier = 1;
8244 }
8bcc2795 8245 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
666a4537 8246 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
1c4e0274
VS
8247 /*
8248 * DPLL_DVO_2X_MODE must be enabled for both DPLLs
8249 * on 830. Filter it out here so that we don't
8250 * report errors due to that.
8251 */
8252 if (IS_I830(dev))
8253 pipe_config->dpll_hw_state.dpll &= ~DPLL_DVO_2X_MODE;
8254
8bcc2795
DV
8255 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
8256 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
165e901c
VS
8257 } else {
8258 /* Mask out read-only status bits. */
8259 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
8260 DPLL_PORTC_READY_MASK |
8261 DPLL_PORTB_READY_MASK);
8bcc2795 8262 }
6c49f241 8263
70b23a98
VS
8264 if (IS_CHERRYVIEW(dev))
8265 chv_crtc_clock_get(crtc, pipe_config);
8266 else if (IS_VALLEYVIEW(dev))
acbec814
JB
8267 vlv_crtc_clock_get(crtc, pipe_config);
8268 else
8269 i9xx_crtc_clock_get(crtc, pipe_config);
18442d08 8270
0f64614d
VS
8271 /*
8272 * Normally the dotclock is filled in by the encoder .get_config()
8273 * but in case the pipe is enabled w/o any ports we need a sane
8274 * default.
8275 */
8276 pipe_config->base.adjusted_mode.crtc_clock =
8277 pipe_config->port_clock / pipe_config->pixel_multiplier;
8278
0e8ffe1b
DV
8279 return true;
8280}
8281
dde86e2d 8282static void ironlake_init_pch_refclk(struct drm_device *dev)
13d83a67
JB
8283{
8284 struct drm_i915_private *dev_priv = dev->dev_private;
13d83a67 8285 struct intel_encoder *encoder;
74cfd7ac 8286 u32 val, final;
13d83a67 8287 bool has_lvds = false;
199e5d79 8288 bool has_cpu_edp = false;
199e5d79 8289 bool has_panel = false;
99eb6a01
KP
8290 bool has_ck505 = false;
8291 bool can_ssc = false;
13d83a67
JB
8292
8293 /* We need to take the global config into account */
b2784e15 8294 for_each_intel_encoder(dev, encoder) {
199e5d79
KP
8295 switch (encoder->type) {
8296 case INTEL_OUTPUT_LVDS:
8297 has_panel = true;
8298 has_lvds = true;
8299 break;
8300 case INTEL_OUTPUT_EDP:
8301 has_panel = true;
2de6905f 8302 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
199e5d79
KP
8303 has_cpu_edp = true;
8304 break;
6847d71b
PZ
8305 default:
8306 break;
13d83a67
JB
8307 }
8308 }
8309
99eb6a01 8310 if (HAS_PCH_IBX(dev)) {
41aa3448 8311 has_ck505 = dev_priv->vbt.display_clock_mode;
99eb6a01
KP
8312 can_ssc = has_ck505;
8313 } else {
8314 has_ck505 = false;
8315 can_ssc = true;
8316 }
8317
2de6905f
ID
8318 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
8319 has_panel, has_lvds, has_ck505);
13d83a67
JB
8320
8321 /* Ironlake: try to setup display ref clock before DPLL
8322 * enabling. This is only under driver's control after
8323 * PCH B stepping, previous chipset stepping should be
8324 * ignoring this setting.
8325 */
74cfd7ac
CW
8326 val = I915_READ(PCH_DREF_CONTROL);
8327
8328 /* As we must carefully and slowly disable/enable each source in turn,
8329 * compute the final state we want first and check if we need to
8330 * make any changes at all.
8331 */
8332 final = val;
8333 final &= ~DREF_NONSPREAD_SOURCE_MASK;
8334 if (has_ck505)
8335 final |= DREF_NONSPREAD_CK505_ENABLE;
8336 else
8337 final |= DREF_NONSPREAD_SOURCE_ENABLE;
8338
8339 final &= ~DREF_SSC_SOURCE_MASK;
8340 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
8341 final &= ~DREF_SSC1_ENABLE;
8342
8343 if (has_panel) {
8344 final |= DREF_SSC_SOURCE_ENABLE;
8345
8346 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8347 final |= DREF_SSC1_ENABLE;
8348
8349 if (has_cpu_edp) {
8350 if (intel_panel_use_ssc(dev_priv) && can_ssc)
8351 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
8352 else
8353 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
8354 } else
8355 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8356 } else {
8357 final |= DREF_SSC_SOURCE_DISABLE;
8358 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
8359 }
8360
8361 if (final == val)
8362 return;
8363
13d83a67 8364 /* Always enable nonspread source */
74cfd7ac 8365 val &= ~DREF_NONSPREAD_SOURCE_MASK;
13d83a67 8366
99eb6a01 8367 if (has_ck505)
74cfd7ac 8368 val |= DREF_NONSPREAD_CK505_ENABLE;
99eb6a01 8369 else
74cfd7ac 8370 val |= DREF_NONSPREAD_SOURCE_ENABLE;
13d83a67 8371
199e5d79 8372 if (has_panel) {
74cfd7ac
CW
8373 val &= ~DREF_SSC_SOURCE_MASK;
8374 val |= DREF_SSC_SOURCE_ENABLE;
13d83a67 8375
199e5d79 8376 /* SSC must be turned on before enabling the CPU output */
99eb6a01 8377 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 8378 DRM_DEBUG_KMS("Using SSC on panel\n");
74cfd7ac 8379 val |= DREF_SSC1_ENABLE;
e77166b5 8380 } else
74cfd7ac 8381 val &= ~DREF_SSC1_ENABLE;
199e5d79
KP
8382
8383 /* Get SSC going before enabling the outputs */
74cfd7ac 8384 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8385 POSTING_READ(PCH_DREF_CONTROL);
8386 udelay(200);
8387
74cfd7ac 8388 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
13d83a67
JB
8389
8390 /* Enable CPU source on CPU attached eDP */
199e5d79 8391 if (has_cpu_edp) {
99eb6a01 8392 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
199e5d79 8393 DRM_DEBUG_KMS("Using SSC on eDP\n");
74cfd7ac 8394 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
eba905b2 8395 } else
74cfd7ac 8396 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
199e5d79 8397 } else
74cfd7ac 8398 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 8399
74cfd7ac 8400 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8401 POSTING_READ(PCH_DREF_CONTROL);
8402 udelay(200);
8403 } else {
8404 DRM_DEBUG_KMS("Disabling SSC entirely\n");
8405
74cfd7ac 8406 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
199e5d79
KP
8407
8408 /* Turn off CPU output */
74cfd7ac 8409 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
199e5d79 8410
74cfd7ac 8411 I915_WRITE(PCH_DREF_CONTROL, val);
199e5d79
KP
8412 POSTING_READ(PCH_DREF_CONTROL);
8413 udelay(200);
8414
8415 /* Turn off the SSC source */
74cfd7ac
CW
8416 val &= ~DREF_SSC_SOURCE_MASK;
8417 val |= DREF_SSC_SOURCE_DISABLE;
199e5d79
KP
8418
8419 /* Turn off SSC1 */
74cfd7ac 8420 val &= ~DREF_SSC1_ENABLE;
199e5d79 8421
74cfd7ac 8422 I915_WRITE(PCH_DREF_CONTROL, val);
13d83a67
JB
8423 POSTING_READ(PCH_DREF_CONTROL);
8424 udelay(200);
8425 }
74cfd7ac
CW
8426
8427 BUG_ON(val != final);
13d83a67
JB
8428}
8429
f31f2d55 8430static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
dde86e2d 8431{
f31f2d55 8432 uint32_t tmp;
dde86e2d 8433
0ff066a9
PZ
8434 tmp = I915_READ(SOUTH_CHICKEN2);
8435 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
8436 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 8437
0ff066a9
PZ
8438 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
8439 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
8440 DRM_ERROR("FDI mPHY reset assert timeout\n");
dde86e2d 8441
0ff066a9
PZ
8442 tmp = I915_READ(SOUTH_CHICKEN2);
8443 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
8444 I915_WRITE(SOUTH_CHICKEN2, tmp);
dde86e2d 8445
0ff066a9
PZ
8446 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
8447 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
8448 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
f31f2d55
PZ
8449}
8450
8451/* WaMPhyProgramming:hsw */
8452static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
8453{
8454 uint32_t tmp;
dde86e2d
PZ
8455
8456 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
8457 tmp &= ~(0xFF << 24);
8458 tmp |= (0x12 << 24);
8459 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
8460
dde86e2d
PZ
8461 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
8462 tmp |= (1 << 11);
8463 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
8464
8465 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
8466 tmp |= (1 << 11);
8467 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
8468
dde86e2d
PZ
8469 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
8470 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8471 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
8472
8473 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
8474 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
8475 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
8476
0ff066a9
PZ
8477 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
8478 tmp &= ~(7 << 13);
8479 tmp |= (5 << 13);
8480 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
dde86e2d 8481
0ff066a9
PZ
8482 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
8483 tmp &= ~(7 << 13);
8484 tmp |= (5 << 13);
8485 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
dde86e2d
PZ
8486
8487 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
8488 tmp &= ~0xFF;
8489 tmp |= 0x1C;
8490 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
8491
8492 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
8493 tmp &= ~0xFF;
8494 tmp |= 0x1C;
8495 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
8496
8497 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
8498 tmp &= ~(0xFF << 16);
8499 tmp |= (0x1C << 16);
8500 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
8501
8502 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
8503 tmp &= ~(0xFF << 16);
8504 tmp |= (0x1C << 16);
8505 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
8506
0ff066a9
PZ
8507 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
8508 tmp |= (1 << 27);
8509 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
dde86e2d 8510
0ff066a9
PZ
8511 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
8512 tmp |= (1 << 27);
8513 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
dde86e2d 8514
0ff066a9
PZ
8515 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
8516 tmp &= ~(0xF << 28);
8517 tmp |= (4 << 28);
8518 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
dde86e2d 8519
0ff066a9
PZ
8520 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
8521 tmp &= ~(0xF << 28);
8522 tmp |= (4 << 28);
8523 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
f31f2d55
PZ
8524}
8525
2fa86a1f
PZ
8526/* Implements 3 different sequences from BSpec chapter "Display iCLK
8527 * Programming" based on the parameters passed:
8528 * - Sequence to enable CLKOUT_DP
8529 * - Sequence to enable CLKOUT_DP without spread
8530 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
8531 */
8532static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
8533 bool with_fdi)
f31f2d55
PZ
8534{
8535 struct drm_i915_private *dev_priv = dev->dev_private;
2fa86a1f
PZ
8536 uint32_t reg, tmp;
8537
8538 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
8539 with_spread = true;
c2699524 8540 if (WARN(HAS_PCH_LPT_LP(dev) && with_fdi, "LP PCH doesn't have FDI\n"))
2fa86a1f 8541 with_fdi = false;
f31f2d55 8542
a580516d 8543 mutex_lock(&dev_priv->sb_lock);
f31f2d55
PZ
8544
8545 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8546 tmp &= ~SBI_SSCCTL_DISABLE;
8547 tmp |= SBI_SSCCTL_PATHALT;
8548 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8549
8550 udelay(24);
8551
2fa86a1f
PZ
8552 if (with_spread) {
8553 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8554 tmp &= ~SBI_SSCCTL_PATHALT;
8555 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
f31f2d55 8556
2fa86a1f
PZ
8557 if (with_fdi) {
8558 lpt_reset_fdi_mphy(dev_priv);
8559 lpt_program_fdi_mphy(dev_priv);
8560 }
8561 }
dde86e2d 8562
c2699524 8563 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
2fa86a1f
PZ
8564 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8565 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8566 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
c00db246 8567
a580516d 8568 mutex_unlock(&dev_priv->sb_lock);
dde86e2d
PZ
8569}
8570
47701c3b
PZ
8571/* Sequence to disable CLKOUT_DP */
8572static void lpt_disable_clkout_dp(struct drm_device *dev)
8573{
8574 struct drm_i915_private *dev_priv = dev->dev_private;
8575 uint32_t reg, tmp;
8576
a580516d 8577 mutex_lock(&dev_priv->sb_lock);
47701c3b 8578
c2699524 8579 reg = HAS_PCH_LPT_LP(dev) ? SBI_GEN0 : SBI_DBUFF0;
47701c3b
PZ
8580 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
8581 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
8582 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
8583
8584 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
8585 if (!(tmp & SBI_SSCCTL_DISABLE)) {
8586 if (!(tmp & SBI_SSCCTL_PATHALT)) {
8587 tmp |= SBI_SSCCTL_PATHALT;
8588 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8589 udelay(32);
8590 }
8591 tmp |= SBI_SSCCTL_DISABLE;
8592 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
8593 }
8594
a580516d 8595 mutex_unlock(&dev_priv->sb_lock);
47701c3b
PZ
8596}
8597
f7be2c21
VS
8598#define BEND_IDX(steps) ((50 + (steps)) / 5)
8599
8600static const uint16_t sscdivintphase[] = {
8601 [BEND_IDX( 50)] = 0x3B23,
8602 [BEND_IDX( 45)] = 0x3B23,
8603 [BEND_IDX( 40)] = 0x3C23,
8604 [BEND_IDX( 35)] = 0x3C23,
8605 [BEND_IDX( 30)] = 0x3D23,
8606 [BEND_IDX( 25)] = 0x3D23,
8607 [BEND_IDX( 20)] = 0x3E23,
8608 [BEND_IDX( 15)] = 0x3E23,
8609 [BEND_IDX( 10)] = 0x3F23,
8610 [BEND_IDX( 5)] = 0x3F23,
8611 [BEND_IDX( 0)] = 0x0025,
8612 [BEND_IDX( -5)] = 0x0025,
8613 [BEND_IDX(-10)] = 0x0125,
8614 [BEND_IDX(-15)] = 0x0125,
8615 [BEND_IDX(-20)] = 0x0225,
8616 [BEND_IDX(-25)] = 0x0225,
8617 [BEND_IDX(-30)] = 0x0325,
8618 [BEND_IDX(-35)] = 0x0325,
8619 [BEND_IDX(-40)] = 0x0425,
8620 [BEND_IDX(-45)] = 0x0425,
8621 [BEND_IDX(-50)] = 0x0525,
8622};
8623
8624/*
8625 * Bend CLKOUT_DP
8626 * steps -50 to 50 inclusive, in steps of 5
8627 * < 0 slow down the clock, > 0 speed up the clock, 0 == no bend (135MHz)
8628 * change in clock period = -(steps / 10) * 5.787 ps
8629 */
8630static void lpt_bend_clkout_dp(struct drm_i915_private *dev_priv, int steps)
8631{
8632 uint32_t tmp;
8633 int idx = BEND_IDX(steps);
8634
8635 if (WARN_ON(steps % 5 != 0))
8636 return;
8637
8638 if (WARN_ON(idx >= ARRAY_SIZE(sscdivintphase)))
8639 return;
8640
8641 mutex_lock(&dev_priv->sb_lock);
8642
8643 if (steps % 10 != 0)
8644 tmp = 0xAAAAAAAB;
8645 else
8646 tmp = 0x00000000;
8647 intel_sbi_write(dev_priv, SBI_SSCDITHPHASE, tmp, SBI_ICLK);
8648
8649 tmp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE, SBI_ICLK);
8650 tmp &= 0xffff0000;
8651 tmp |= sscdivintphase[idx];
8652 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE, tmp, SBI_ICLK);
8653
8654 mutex_unlock(&dev_priv->sb_lock);
8655}
8656
8657#undef BEND_IDX
8658
bf8fa3d3
PZ
8659static void lpt_init_pch_refclk(struct drm_device *dev)
8660{
bf8fa3d3
PZ
8661 struct intel_encoder *encoder;
8662 bool has_vga = false;
8663
b2784e15 8664 for_each_intel_encoder(dev, encoder) {
bf8fa3d3
PZ
8665 switch (encoder->type) {
8666 case INTEL_OUTPUT_ANALOG:
8667 has_vga = true;
8668 break;
6847d71b
PZ
8669 default:
8670 break;
bf8fa3d3
PZ
8671 }
8672 }
8673
f7be2c21
VS
8674 if (has_vga) {
8675 lpt_bend_clkout_dp(to_i915(dev), 0);
47701c3b 8676 lpt_enable_clkout_dp(dev, true, true);
f7be2c21 8677 } else {
47701c3b 8678 lpt_disable_clkout_dp(dev);
f7be2c21 8679 }
bf8fa3d3
PZ
8680}
8681
dde86e2d
PZ
8682/*
8683 * Initialize reference clocks when the driver loads
8684 */
8685void intel_init_pch_refclk(struct drm_device *dev)
8686{
8687 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
8688 ironlake_init_pch_refclk(dev);
8689 else if (HAS_PCH_LPT(dev))
8690 lpt_init_pch_refclk(dev);
8691}
8692
55bb9992 8693static int ironlake_get_refclk(struct intel_crtc_state *crtc_state)
d9d444cb 8694{
55bb9992 8695 struct drm_device *dev = crtc_state->base.crtc->dev;
d9d444cb 8696 struct drm_i915_private *dev_priv = dev->dev_private;
55bb9992 8697 struct drm_atomic_state *state = crtc_state->base.state;
da3ced29 8698 struct drm_connector *connector;
55bb9992 8699 struct drm_connector_state *connector_state;
d9d444cb 8700 struct intel_encoder *encoder;
55bb9992 8701 int num_connectors = 0, i;
d9d444cb
JB
8702 bool is_lvds = false;
8703
da3ced29 8704 for_each_connector_in_state(state, connector, connector_state, i) {
55bb9992
ACO
8705 if (connector_state->crtc != crtc_state->base.crtc)
8706 continue;
8707
8708 encoder = to_intel_encoder(connector_state->best_encoder);
8709
d9d444cb
JB
8710 switch (encoder->type) {
8711 case INTEL_OUTPUT_LVDS:
8712 is_lvds = true;
8713 break;
6847d71b
PZ
8714 default:
8715 break;
d9d444cb
JB
8716 }
8717 num_connectors++;
8718 }
8719
8720 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
e91e941b 8721 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
41aa3448 8722 dev_priv->vbt.lvds_ssc_freq);
e91e941b 8723 return dev_priv->vbt.lvds_ssc_freq;
d9d444cb
JB
8724 }
8725
8726 return 120000;
8727}
8728
6ff93609 8729static void ironlake_set_pipeconf(struct drm_crtc *crtc)
79e53945 8730{
c8203565 8731 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
79e53945
JB
8732 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8733 int pipe = intel_crtc->pipe;
c8203565
PZ
8734 uint32_t val;
8735
78114071 8736 val = 0;
c8203565 8737
6e3c9717 8738 switch (intel_crtc->config->pipe_bpp) {
c8203565 8739 case 18:
dfd07d72 8740 val |= PIPECONF_6BPC;
c8203565
PZ
8741 break;
8742 case 24:
dfd07d72 8743 val |= PIPECONF_8BPC;
c8203565
PZ
8744 break;
8745 case 30:
dfd07d72 8746 val |= PIPECONF_10BPC;
c8203565
PZ
8747 break;
8748 case 36:
dfd07d72 8749 val |= PIPECONF_12BPC;
c8203565
PZ
8750 break;
8751 default:
cc769b62
PZ
8752 /* Case prevented by intel_choose_pipe_bpp_dither. */
8753 BUG();
c8203565
PZ
8754 }
8755
6e3c9717 8756 if (intel_crtc->config->dither)
c8203565
PZ
8757 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8758
6e3c9717 8759 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
c8203565
PZ
8760 val |= PIPECONF_INTERLACED_ILK;
8761 else
8762 val |= PIPECONF_PROGRESSIVE;
8763
6e3c9717 8764 if (intel_crtc->config->limited_color_range)
3685a8f3 8765 val |= PIPECONF_COLOR_RANGE_SELECT;
3685a8f3 8766
c8203565
PZ
8767 I915_WRITE(PIPECONF(pipe), val);
8768 POSTING_READ(PIPECONF(pipe));
8769}
8770
86d3efce
VS
8771/*
8772 * Set up the pipe CSC unit.
8773 *
8774 * Currently only full range RGB to limited range RGB conversion
8775 * is supported, but eventually this should handle various
8776 * RGB<->YCbCr scenarios as well.
8777 */
50f3b016 8778static void intel_set_pipe_csc(struct drm_crtc *crtc)
86d3efce
VS
8779{
8780 struct drm_device *dev = crtc->dev;
8781 struct drm_i915_private *dev_priv = dev->dev_private;
8782 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8783 int pipe = intel_crtc->pipe;
8784 uint16_t coeff = 0x7800; /* 1.0 */
8785
8786 /*
8787 * TODO: Check what kind of values actually come out of the pipe
8788 * with these coeff/postoff values and adjust to get the best
8789 * accuracy. Perhaps we even need to take the bpc value into
8790 * consideration.
8791 */
8792
6e3c9717 8793 if (intel_crtc->config->limited_color_range)
86d3efce
VS
8794 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
8795
8796 /*
8797 * GY/GU and RY/RU should be the other way around according
8798 * to BSpec, but reality doesn't agree. Just set them up in
8799 * a way that results in the correct picture.
8800 */
8801 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
8802 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
8803
8804 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
8805 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
8806
8807 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
8808 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
8809
8810 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
8811 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
8812 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
8813
8814 if (INTEL_INFO(dev)->gen > 6) {
8815 uint16_t postoff = 0;
8816
6e3c9717 8817 if (intel_crtc->config->limited_color_range)
32cf0cb0 8818 postoff = (16 * (1 << 12) / 255) & 0x1fff;
86d3efce
VS
8819
8820 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
8821 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
8822 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
8823
8824 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
8825 } else {
8826 uint32_t mode = CSC_MODE_YUV_TO_RGB;
8827
6e3c9717 8828 if (intel_crtc->config->limited_color_range)
86d3efce
VS
8829 mode |= CSC_BLACK_SCREEN_OFFSET;
8830
8831 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
8832 }
8833}
8834
6ff93609 8835static void haswell_set_pipeconf(struct drm_crtc *crtc)
ee2b0b38 8836{
756f85cf
PZ
8837 struct drm_device *dev = crtc->dev;
8838 struct drm_i915_private *dev_priv = dev->dev_private;
ee2b0b38 8839 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
756f85cf 8840 enum pipe pipe = intel_crtc->pipe;
6e3c9717 8841 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
ee2b0b38
PZ
8842 uint32_t val;
8843
3eff4faa 8844 val = 0;
ee2b0b38 8845
6e3c9717 8846 if (IS_HASWELL(dev) && intel_crtc->config->dither)
ee2b0b38
PZ
8847 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
8848
6e3c9717 8849 if (intel_crtc->config->base.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
ee2b0b38
PZ
8850 val |= PIPECONF_INTERLACED_ILK;
8851 else
8852 val |= PIPECONF_PROGRESSIVE;
8853
702e7a56
PZ
8854 I915_WRITE(PIPECONF(cpu_transcoder), val);
8855 POSTING_READ(PIPECONF(cpu_transcoder));
3eff4faa
DV
8856
8857 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
8858 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
756f85cf 8859
3cdf122c 8860 if (IS_BROADWELL(dev) || INTEL_INFO(dev)->gen >= 9) {
756f85cf
PZ
8861 val = 0;
8862
6e3c9717 8863 switch (intel_crtc->config->pipe_bpp) {
756f85cf
PZ
8864 case 18:
8865 val |= PIPEMISC_DITHER_6_BPC;
8866 break;
8867 case 24:
8868 val |= PIPEMISC_DITHER_8_BPC;
8869 break;
8870 case 30:
8871 val |= PIPEMISC_DITHER_10_BPC;
8872 break;
8873 case 36:
8874 val |= PIPEMISC_DITHER_12_BPC;
8875 break;
8876 default:
8877 /* Case prevented by pipe_config_set_bpp. */
8878 BUG();
8879 }
8880
6e3c9717 8881 if (intel_crtc->config->dither)
756f85cf
PZ
8882 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
8883
8884 I915_WRITE(PIPEMISC(pipe), val);
8885 }
ee2b0b38
PZ
8886}
8887
6591c6e4 8888static bool ironlake_compute_clocks(struct drm_crtc *crtc,
190f68c5 8889 struct intel_crtc_state *crtc_state,
6591c6e4
PZ
8890 intel_clock_t *clock,
8891 bool *has_reduced_clock,
8892 intel_clock_t *reduced_clock)
8893{
8894 struct drm_device *dev = crtc->dev;
8895 struct drm_i915_private *dev_priv = dev->dev_private;
6591c6e4 8896 int refclk;
d4906093 8897 const intel_limit_t *limit;
c329a4ec 8898 bool ret;
79e53945 8899
55bb9992 8900 refclk = ironlake_get_refclk(crtc_state);
79e53945 8901
d4906093
ML
8902 /*
8903 * Returns a set of divisors for the desired target clock with the given
8904 * refclk, or FALSE. The returned values represent the clock equation:
8905 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
8906 */
a93e255f
ACO
8907 limit = intel_limit(crtc_state, refclk);
8908 ret = dev_priv->display.find_dpll(limit, crtc_state,
190f68c5 8909 crtc_state->port_clock,
ee9300bb 8910 refclk, NULL, clock);
6591c6e4
PZ
8911 if (!ret)
8912 return false;
cda4b7d3 8913
6591c6e4
PZ
8914 return true;
8915}
8916
d4b1931c
PZ
8917int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
8918{
8919 /*
8920 * Account for spread spectrum to avoid
8921 * oversubscribing the link. Max center spread
8922 * is 2.5%; use 5% for safety's sake.
8923 */
8924 u32 bps = target_clock * bpp * 21 / 20;
619d4d04 8925 return DIV_ROUND_UP(bps, link_bw * 8);
d4b1931c
PZ
8926}
8927
7429e9d4 8928static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
6cf86a5e 8929{
7429e9d4 8930 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
f48d8f23
PZ
8931}
8932
de13a2e3 8933static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
190f68c5 8934 struct intel_crtc_state *crtc_state,
7429e9d4 8935 u32 *fp,
9a7c7890 8936 intel_clock_t *reduced_clock, u32 *fp2)
79e53945 8937{
de13a2e3 8938 struct drm_crtc *crtc = &intel_crtc->base;
79e53945
JB
8939 struct drm_device *dev = crtc->dev;
8940 struct drm_i915_private *dev_priv = dev->dev_private;
55bb9992 8941 struct drm_atomic_state *state = crtc_state->base.state;
da3ced29 8942 struct drm_connector *connector;
55bb9992
ACO
8943 struct drm_connector_state *connector_state;
8944 struct intel_encoder *encoder;
de13a2e3 8945 uint32_t dpll;
55bb9992 8946 int factor, num_connectors = 0, i;
09ede541 8947 bool is_lvds = false, is_sdvo = false;
79e53945 8948
da3ced29 8949 for_each_connector_in_state(state, connector, connector_state, i) {
55bb9992
ACO
8950 if (connector_state->crtc != crtc_state->base.crtc)
8951 continue;
8952
8953 encoder = to_intel_encoder(connector_state->best_encoder);
8954
8955 switch (encoder->type) {
79e53945
JB
8956 case INTEL_OUTPUT_LVDS:
8957 is_lvds = true;
8958 break;
8959 case INTEL_OUTPUT_SDVO:
7d57382e 8960 case INTEL_OUTPUT_HDMI:
79e53945 8961 is_sdvo = true;
79e53945 8962 break;
6847d71b
PZ
8963 default:
8964 break;
79e53945 8965 }
43565a06 8966
c751ce4f 8967 num_connectors++;
79e53945 8968 }
79e53945 8969
c1858123 8970 /* Enable autotuning of the PLL clock (if permissible) */
8febb297
EA
8971 factor = 21;
8972 if (is_lvds) {
8973 if ((intel_panel_use_ssc(dev_priv) &&
e91e941b 8974 dev_priv->vbt.lvds_ssc_freq == 100000) ||
f0b44056 8975 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
8febb297 8976 factor = 25;
190f68c5 8977 } else if (crtc_state->sdvo_tv_clock)
8febb297 8978 factor = 20;
c1858123 8979
190f68c5 8980 if (ironlake_needs_fb_cb_tune(&crtc_state->dpll, factor))
7d0ac5b7 8981 *fp |= FP_CB_TUNE;
2c07245f 8982
9a7c7890
DV
8983 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
8984 *fp2 |= FP_CB_TUNE;
8985
5eddb70b 8986 dpll = 0;
2c07245f 8987
a07d6787
EA
8988 if (is_lvds)
8989 dpll |= DPLLB_MODE_LVDS;
8990 else
8991 dpll |= DPLLB_MODE_DAC_SERIAL;
198a037f 8992
190f68c5 8993 dpll |= (crtc_state->pixel_multiplier - 1)
ef1b460d 8994 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
198a037f
DV
8995
8996 if (is_sdvo)
4a33e48d 8997 dpll |= DPLL_SDVO_HIGH_SPEED;
190f68c5 8998 if (crtc_state->has_dp_encoder)
4a33e48d 8999 dpll |= DPLL_SDVO_HIGH_SPEED;
79e53945 9000
a07d6787 9001 /* compute bitmask from p1 value */
190f68c5 9002 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
a07d6787 9003 /* also FPA1 */
190f68c5 9004 dpll |= (1 << (crtc_state->dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
a07d6787 9005
190f68c5 9006 switch (crtc_state->dpll.p2) {
a07d6787
EA
9007 case 5:
9008 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
9009 break;
9010 case 7:
9011 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
9012 break;
9013 case 10:
9014 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
9015 break;
9016 case 14:
9017 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
9018 break;
79e53945
JB
9019 }
9020
b4c09f3b 9021 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
43565a06 9022 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
79e53945
JB
9023 else
9024 dpll |= PLL_REF_INPUT_DREFCLK;
9025
959e16d6 9026 return dpll | DPLL_VCO_ENABLE;
de13a2e3
PZ
9027}
9028
190f68c5
ACO
9029static int ironlake_crtc_compute_clock(struct intel_crtc *crtc,
9030 struct intel_crtc_state *crtc_state)
de13a2e3 9031{
c7653199 9032 struct drm_device *dev = crtc->base.dev;
de13a2e3 9033 intel_clock_t clock, reduced_clock;
cbbab5bd 9034 u32 dpll = 0, fp = 0, fp2 = 0;
e2f12b07 9035 bool ok, has_reduced_clock = false;
8b47047b 9036 bool is_lvds = false;
e2b78267 9037 struct intel_shared_dpll *pll;
de13a2e3 9038
dd3cd74a
ACO
9039 memset(&crtc_state->dpll_hw_state, 0,
9040 sizeof(crtc_state->dpll_hw_state));
9041
7905df29 9042 is_lvds = intel_pipe_will_have_type(crtc_state, INTEL_OUTPUT_LVDS);
79e53945 9043
5dc5298b
PZ
9044 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
9045 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
a07d6787 9046
190f68c5 9047 ok = ironlake_compute_clocks(&crtc->base, crtc_state, &clock,
de13a2e3 9048 &has_reduced_clock, &reduced_clock);
190f68c5 9049 if (!ok && !crtc_state->clock_set) {
de13a2e3
PZ
9050 DRM_ERROR("Couldn't find PLL settings for mode!\n");
9051 return -EINVAL;
79e53945 9052 }
f47709a9 9053 /* Compat-code for transition, will disappear. */
190f68c5
ACO
9054 if (!crtc_state->clock_set) {
9055 crtc_state->dpll.n = clock.n;
9056 crtc_state->dpll.m1 = clock.m1;
9057 crtc_state->dpll.m2 = clock.m2;
9058 crtc_state->dpll.p1 = clock.p1;
9059 crtc_state->dpll.p2 = clock.p2;
f47709a9 9060 }
79e53945 9061
5dc5298b 9062 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
190f68c5
ACO
9063 if (crtc_state->has_pch_encoder) {
9064 fp = i9xx_dpll_compute_fp(&crtc_state->dpll);
cbbab5bd 9065 if (has_reduced_clock)
7429e9d4 9066 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
cbbab5bd 9067
190f68c5 9068 dpll = ironlake_compute_dpll(crtc, crtc_state,
cbbab5bd
DV
9069 &fp, &reduced_clock,
9070 has_reduced_clock ? &fp2 : NULL);
9071
190f68c5
ACO
9072 crtc_state->dpll_hw_state.dpll = dpll;
9073 crtc_state->dpll_hw_state.fp0 = fp;
66e985c0 9074 if (has_reduced_clock)
190f68c5 9075 crtc_state->dpll_hw_state.fp1 = fp2;
66e985c0 9076 else
190f68c5 9077 crtc_state->dpll_hw_state.fp1 = fp;
66e985c0 9078
190f68c5 9079 pll = intel_get_shared_dpll(crtc, crtc_state);
ee7b9f93 9080 if (pll == NULL) {
84f44ce7 9081 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
c7653199 9082 pipe_name(crtc->pipe));
4b645f14
JB
9083 return -EINVAL;
9084 }
3fb37703 9085 }
79e53945 9086
ab585dea 9087 if (is_lvds && has_reduced_clock)
c7653199 9088 crtc->lowfreq_avail = true;
bcd644e0 9089 else
c7653199 9090 crtc->lowfreq_avail = false;
e2b78267 9091
c8f7a0db 9092 return 0;
79e53945
JB
9093}
9094
eb14cb74
VS
9095static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
9096 struct intel_link_m_n *m_n)
9097{
9098 struct drm_device *dev = crtc->base.dev;
9099 struct drm_i915_private *dev_priv = dev->dev_private;
9100 enum pipe pipe = crtc->pipe;
9101
9102 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
9103 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
9104 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
9105 & ~TU_SIZE_MASK;
9106 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
9107 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
9108 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9109}
9110
9111static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
9112 enum transcoder transcoder,
b95af8be
VK
9113 struct intel_link_m_n *m_n,
9114 struct intel_link_m_n *m2_n2)
72419203
DV
9115{
9116 struct drm_device *dev = crtc->base.dev;
9117 struct drm_i915_private *dev_priv = dev->dev_private;
eb14cb74 9118 enum pipe pipe = crtc->pipe;
72419203 9119
eb14cb74
VS
9120 if (INTEL_INFO(dev)->gen >= 5) {
9121 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
9122 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
9123 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
9124 & ~TU_SIZE_MASK;
9125 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
9126 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
9127 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
b95af8be
VK
9128 /* Read M2_N2 registers only for gen < 8 (M2_N2 available for
9129 * gen < 8) and if DRRS is supported (to make sure the
9130 * registers are not unnecessarily read).
9131 */
9132 if (m2_n2 && INTEL_INFO(dev)->gen < 8 &&
6e3c9717 9133 crtc->config->has_drrs) {
b95af8be
VK
9134 m2_n2->link_m = I915_READ(PIPE_LINK_M2(transcoder));
9135 m2_n2->link_n = I915_READ(PIPE_LINK_N2(transcoder));
9136 m2_n2->gmch_m = I915_READ(PIPE_DATA_M2(transcoder))
9137 & ~TU_SIZE_MASK;
9138 m2_n2->gmch_n = I915_READ(PIPE_DATA_N2(transcoder));
9139 m2_n2->tu = ((I915_READ(PIPE_DATA_M2(transcoder))
9140 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9141 }
eb14cb74
VS
9142 } else {
9143 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
9144 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
9145 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
9146 & ~TU_SIZE_MASK;
9147 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
9148 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
9149 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
9150 }
9151}
9152
9153void intel_dp_get_m_n(struct intel_crtc *crtc,
5cec258b 9154 struct intel_crtc_state *pipe_config)
eb14cb74 9155{
681a8504 9156 if (pipe_config->has_pch_encoder)
eb14cb74
VS
9157 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
9158 else
9159 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be
VK
9160 &pipe_config->dp_m_n,
9161 &pipe_config->dp_m2_n2);
eb14cb74 9162}
72419203 9163
eb14cb74 9164static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
5cec258b 9165 struct intel_crtc_state *pipe_config)
eb14cb74
VS
9166{
9167 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
b95af8be 9168 &pipe_config->fdi_m_n, NULL);
72419203
DV
9169}
9170
bd2e244f 9171static void skylake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 9172 struct intel_crtc_state *pipe_config)
bd2e244f
JB
9173{
9174 struct drm_device *dev = crtc->base.dev;
9175 struct drm_i915_private *dev_priv = dev->dev_private;
a1b2278e
CK
9176 struct intel_crtc_scaler_state *scaler_state = &pipe_config->scaler_state;
9177 uint32_t ps_ctrl = 0;
9178 int id = -1;
9179 int i;
bd2e244f 9180
a1b2278e
CK
9181 /* find scaler attached to this pipe */
9182 for (i = 0; i < crtc->num_scalers; i++) {
9183 ps_ctrl = I915_READ(SKL_PS_CTRL(crtc->pipe, i));
9184 if (ps_ctrl & PS_SCALER_EN && !(ps_ctrl & PS_PLANE_SEL_MASK)) {
9185 id = i;
9186 pipe_config->pch_pfit.enabled = true;
9187 pipe_config->pch_pfit.pos = I915_READ(SKL_PS_WIN_POS(crtc->pipe, i));
9188 pipe_config->pch_pfit.size = I915_READ(SKL_PS_WIN_SZ(crtc->pipe, i));
9189 break;
9190 }
9191 }
bd2e244f 9192
a1b2278e
CK
9193 scaler_state->scaler_id = id;
9194 if (id >= 0) {
9195 scaler_state->scaler_users |= (1 << SKL_CRTC_INDEX);
9196 } else {
9197 scaler_state->scaler_users &= ~(1 << SKL_CRTC_INDEX);
bd2e244f
JB
9198 }
9199}
9200
5724dbd1
DL
9201static void
9202skylake_get_initial_plane_config(struct intel_crtc *crtc,
9203 struct intel_initial_plane_config *plane_config)
bc8d7dff
DL
9204{
9205 struct drm_device *dev = crtc->base.dev;
9206 struct drm_i915_private *dev_priv = dev->dev_private;
40f46283 9207 u32 val, base, offset, stride_mult, tiling;
bc8d7dff
DL
9208 int pipe = crtc->pipe;
9209 int fourcc, pixel_format;
6761dd31 9210 unsigned int aligned_height;
bc8d7dff 9211 struct drm_framebuffer *fb;
1b842c89 9212 struct intel_framebuffer *intel_fb;
bc8d7dff 9213
d9806c9f 9214 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 9215 if (!intel_fb) {
bc8d7dff
DL
9216 DRM_DEBUG_KMS("failed to alloc fb\n");
9217 return;
9218 }
9219
1b842c89
DL
9220 fb = &intel_fb->base;
9221
bc8d7dff 9222 val = I915_READ(PLANE_CTL(pipe, 0));
42a7b088
DL
9223 if (!(val & PLANE_CTL_ENABLE))
9224 goto error;
9225
bc8d7dff
DL
9226 pixel_format = val & PLANE_CTL_FORMAT_MASK;
9227 fourcc = skl_format_to_fourcc(pixel_format,
9228 val & PLANE_CTL_ORDER_RGBX,
9229 val & PLANE_CTL_ALPHA_MASK);
9230 fb->pixel_format = fourcc;
9231 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
9232
40f46283
DL
9233 tiling = val & PLANE_CTL_TILED_MASK;
9234 switch (tiling) {
9235 case PLANE_CTL_TILED_LINEAR:
9236 fb->modifier[0] = DRM_FORMAT_MOD_NONE;
9237 break;
9238 case PLANE_CTL_TILED_X:
9239 plane_config->tiling = I915_TILING_X;
9240 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9241 break;
9242 case PLANE_CTL_TILED_Y:
9243 fb->modifier[0] = I915_FORMAT_MOD_Y_TILED;
9244 break;
9245 case PLANE_CTL_TILED_YF:
9246 fb->modifier[0] = I915_FORMAT_MOD_Yf_TILED;
9247 break;
9248 default:
9249 MISSING_CASE(tiling);
9250 goto error;
9251 }
9252
bc8d7dff
DL
9253 base = I915_READ(PLANE_SURF(pipe, 0)) & 0xfffff000;
9254 plane_config->base = base;
9255
9256 offset = I915_READ(PLANE_OFFSET(pipe, 0));
9257
9258 val = I915_READ(PLANE_SIZE(pipe, 0));
9259 fb->height = ((val >> 16) & 0xfff) + 1;
9260 fb->width = ((val >> 0) & 0x1fff) + 1;
9261
9262 val = I915_READ(PLANE_STRIDE(pipe, 0));
40f46283
DL
9263 stride_mult = intel_fb_stride_alignment(dev, fb->modifier[0],
9264 fb->pixel_format);
bc8d7dff
DL
9265 fb->pitches[0] = (val & 0x3ff) * stride_mult;
9266
9267 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
9268 fb->pixel_format,
9269 fb->modifier[0]);
bc8d7dff 9270
f37b5c2b 9271 plane_config->size = fb->pitches[0] * aligned_height;
bc8d7dff
DL
9272
9273 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9274 pipe_name(pipe), fb->width, fb->height,
9275 fb->bits_per_pixel, base, fb->pitches[0],
9276 plane_config->size);
9277
2d14030b 9278 plane_config->fb = intel_fb;
bc8d7dff
DL
9279 return;
9280
9281error:
9282 kfree(fb);
9283}
9284
2fa2fe9a 9285static void ironlake_get_pfit_config(struct intel_crtc *crtc,
5cec258b 9286 struct intel_crtc_state *pipe_config)
2fa2fe9a
DV
9287{
9288 struct drm_device *dev = crtc->base.dev;
9289 struct drm_i915_private *dev_priv = dev->dev_private;
9290 uint32_t tmp;
9291
9292 tmp = I915_READ(PF_CTL(crtc->pipe));
9293
9294 if (tmp & PF_ENABLE) {
fd4daa9c 9295 pipe_config->pch_pfit.enabled = true;
2fa2fe9a
DV
9296 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
9297 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
cb8b2a30
DV
9298
9299 /* We currently do not free assignements of panel fitters on
9300 * ivb/hsw (since we don't use the higher upscaling modes which
9301 * differentiates them) so just WARN about this case for now. */
9302 if (IS_GEN7(dev)) {
9303 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
9304 PF_PIPE_SEL_IVB(crtc->pipe));
9305 }
2fa2fe9a 9306 }
79e53945
JB
9307}
9308
5724dbd1
DL
9309static void
9310ironlake_get_initial_plane_config(struct intel_crtc *crtc,
9311 struct intel_initial_plane_config *plane_config)
4c6baa59
JB
9312{
9313 struct drm_device *dev = crtc->base.dev;
9314 struct drm_i915_private *dev_priv = dev->dev_private;
9315 u32 val, base, offset;
aeee5a49 9316 int pipe = crtc->pipe;
4c6baa59 9317 int fourcc, pixel_format;
6761dd31 9318 unsigned int aligned_height;
b113d5ee 9319 struct drm_framebuffer *fb;
1b842c89 9320 struct intel_framebuffer *intel_fb;
4c6baa59 9321
42a7b088
DL
9322 val = I915_READ(DSPCNTR(pipe));
9323 if (!(val & DISPLAY_PLANE_ENABLE))
9324 return;
9325
d9806c9f 9326 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
1b842c89 9327 if (!intel_fb) {
4c6baa59
JB
9328 DRM_DEBUG_KMS("failed to alloc fb\n");
9329 return;
9330 }
9331
1b842c89
DL
9332 fb = &intel_fb->base;
9333
18c5247e
DV
9334 if (INTEL_INFO(dev)->gen >= 4) {
9335 if (val & DISPPLANE_TILED) {
49af449b 9336 plane_config->tiling = I915_TILING_X;
18c5247e
DV
9337 fb->modifier[0] = I915_FORMAT_MOD_X_TILED;
9338 }
9339 }
4c6baa59
JB
9340
9341 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
b35d63fa 9342 fourcc = i9xx_format_to_fourcc(pixel_format);
b113d5ee
DL
9343 fb->pixel_format = fourcc;
9344 fb->bits_per_pixel = drm_format_plane_cpp(fourcc, 0) * 8;
4c6baa59 9345
aeee5a49 9346 base = I915_READ(DSPSURF(pipe)) & 0xfffff000;
4c6baa59 9347 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
aeee5a49 9348 offset = I915_READ(DSPOFFSET(pipe));
4c6baa59 9349 } else {
49af449b 9350 if (plane_config->tiling)
aeee5a49 9351 offset = I915_READ(DSPTILEOFF(pipe));
4c6baa59 9352 else
aeee5a49 9353 offset = I915_READ(DSPLINOFF(pipe));
4c6baa59
JB
9354 }
9355 plane_config->base = base;
9356
9357 val = I915_READ(PIPESRC(pipe));
b113d5ee
DL
9358 fb->width = ((val >> 16) & 0xfff) + 1;
9359 fb->height = ((val >> 0) & 0xfff) + 1;
4c6baa59
JB
9360
9361 val = I915_READ(DSPSTRIDE(pipe));
b113d5ee 9362 fb->pitches[0] = val & 0xffffffc0;
4c6baa59 9363
b113d5ee 9364 aligned_height = intel_fb_align_height(dev, fb->height,
091df6cb
DV
9365 fb->pixel_format,
9366 fb->modifier[0]);
4c6baa59 9367
f37b5c2b 9368 plane_config->size = fb->pitches[0] * aligned_height;
4c6baa59 9369
2844a921
DL
9370 DRM_DEBUG_KMS("pipe %c with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
9371 pipe_name(pipe), fb->width, fb->height,
9372 fb->bits_per_pixel, base, fb->pitches[0],
9373 plane_config->size);
b113d5ee 9374
2d14030b 9375 plane_config->fb = intel_fb;
4c6baa59
JB
9376}
9377
0e8ffe1b 9378static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
5cec258b 9379 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
9380{
9381 struct drm_device *dev = crtc->base.dev;
9382 struct drm_i915_private *dev_priv = dev->dev_private;
9383 uint32_t tmp;
9384
f458ebbc
DV
9385 if (!intel_display_power_is_enabled(dev_priv,
9386 POWER_DOMAIN_PIPE(crtc->pipe)))
930e8c9e
PZ
9387 return false;
9388
e143a21c 9389 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62 9390 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
eccb140b 9391
0e8ffe1b
DV
9392 tmp = I915_READ(PIPECONF(crtc->pipe));
9393 if (!(tmp & PIPECONF_ENABLE))
9394 return false;
9395
42571aef
VS
9396 switch (tmp & PIPECONF_BPC_MASK) {
9397 case PIPECONF_6BPC:
9398 pipe_config->pipe_bpp = 18;
9399 break;
9400 case PIPECONF_8BPC:
9401 pipe_config->pipe_bpp = 24;
9402 break;
9403 case PIPECONF_10BPC:
9404 pipe_config->pipe_bpp = 30;
9405 break;
9406 case PIPECONF_12BPC:
9407 pipe_config->pipe_bpp = 36;
9408 break;
9409 default:
9410 break;
9411 }
9412
b5a9fa09
DV
9413 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
9414 pipe_config->limited_color_range = true;
9415
ab9412ba 9416 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
66e985c0
DV
9417 struct intel_shared_dpll *pll;
9418
88adfff1
DV
9419 pipe_config->has_pch_encoder = true;
9420
627eb5a3
DV
9421 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
9422 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9423 FDI_DP_PORT_WIDTH_SHIFT) + 1;
72419203
DV
9424
9425 ironlake_get_fdi_m_n_config(crtc, pipe_config);
6c49f241 9426
c0d43d62 9427 if (HAS_PCH_IBX(dev_priv->dev)) {
d94ab068
DV
9428 pipe_config->shared_dpll =
9429 (enum intel_dpll_id) crtc->pipe;
c0d43d62
DV
9430 } else {
9431 tmp = I915_READ(PCH_DPLL_SEL);
9432 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
9433 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
9434 else
9435 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
9436 }
66e985c0
DV
9437
9438 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9439
9440 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9441 &pipe_config->dpll_hw_state));
c93f54cf
DV
9442
9443 tmp = pipe_config->dpll_hw_state.dpll;
9444 pipe_config->pixel_multiplier =
9445 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
9446 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
18442d08
VS
9447
9448 ironlake_pch_clock_get(crtc, pipe_config);
6c49f241
DV
9449 } else {
9450 pipe_config->pixel_multiplier = 1;
627eb5a3
DV
9451 }
9452
1bd1bd80
DV
9453 intel_get_pipe_timings(crtc, pipe_config);
9454
2fa2fe9a
DV
9455 ironlake_get_pfit_config(crtc, pipe_config);
9456
0e8ffe1b
DV
9457 return true;
9458}
9459
be256dc7
PZ
9460static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
9461{
9462 struct drm_device *dev = dev_priv->dev;
be256dc7 9463 struct intel_crtc *crtc;
be256dc7 9464
d3fcc808 9465 for_each_intel_crtc(dev, crtc)
e2c719b7 9466 I915_STATE_WARN(crtc->active, "CRTC for pipe %c enabled\n",
be256dc7
PZ
9467 pipe_name(crtc->pipe));
9468
e2c719b7
RC
9469 I915_STATE_WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
9470 I915_STATE_WARN(I915_READ(SPLL_CTL) & SPLL_PLL_ENABLE, "SPLL enabled\n");
01403de3
VS
9471 I915_STATE_WARN(I915_READ(WRPLL_CTL(0)) & WRPLL_PLL_ENABLE, "WRPLL1 enabled\n");
9472 I915_STATE_WARN(I915_READ(WRPLL_CTL(1)) & WRPLL_PLL_ENABLE, "WRPLL2 enabled\n");
e2c719b7
RC
9473 I915_STATE_WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
9474 I915_STATE_WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
be256dc7 9475 "CPU PWM1 enabled\n");
c5107b87 9476 if (IS_HASWELL(dev))
e2c719b7 9477 I915_STATE_WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
c5107b87 9478 "CPU PWM2 enabled\n");
e2c719b7 9479 I915_STATE_WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
be256dc7 9480 "PCH PWM1 enabled\n");
e2c719b7 9481 I915_STATE_WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
be256dc7 9482 "Utility pin enabled\n");
e2c719b7 9483 I915_STATE_WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
be256dc7 9484
9926ada1
PZ
9485 /*
9486 * In theory we can still leave IRQs enabled, as long as only the HPD
9487 * interrupts remain enabled. We used to check for that, but since it's
9488 * gen-specific and since we only disable LCPLL after we fully disable
9489 * the interrupts, the check below should be enough.
9490 */
e2c719b7 9491 I915_STATE_WARN(intel_irqs_enabled(dev_priv), "IRQs enabled\n");
be256dc7
PZ
9492}
9493
9ccd5aeb
PZ
9494static uint32_t hsw_read_dcomp(struct drm_i915_private *dev_priv)
9495{
9496 struct drm_device *dev = dev_priv->dev;
9497
9498 if (IS_HASWELL(dev))
9499 return I915_READ(D_COMP_HSW);
9500 else
9501 return I915_READ(D_COMP_BDW);
9502}
9503
3c4c9b81
PZ
9504static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
9505{
9506 struct drm_device *dev = dev_priv->dev;
9507
9508 if (IS_HASWELL(dev)) {
9509 mutex_lock(&dev_priv->rps.hw_lock);
9510 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
9511 val))
f475dadf 9512 DRM_ERROR("Failed to write to D_COMP\n");
3c4c9b81
PZ
9513 mutex_unlock(&dev_priv->rps.hw_lock);
9514 } else {
9ccd5aeb
PZ
9515 I915_WRITE(D_COMP_BDW, val);
9516 POSTING_READ(D_COMP_BDW);
3c4c9b81 9517 }
be256dc7
PZ
9518}
9519
9520/*
9521 * This function implements pieces of two sequences from BSpec:
9522 * - Sequence for display software to disable LCPLL
9523 * - Sequence for display software to allow package C8+
9524 * The steps implemented here are just the steps that actually touch the LCPLL
9525 * register. Callers should take care of disabling all the display engine
9526 * functions, doing the mode unset, fixing interrupts, etc.
9527 */
6ff58d53
PZ
9528static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
9529 bool switch_to_fclk, bool allow_power_down)
be256dc7
PZ
9530{
9531 uint32_t val;
9532
9533 assert_can_disable_lcpll(dev_priv);
9534
9535 val = I915_READ(LCPLL_CTL);
9536
9537 if (switch_to_fclk) {
9538 val |= LCPLL_CD_SOURCE_FCLK;
9539 I915_WRITE(LCPLL_CTL, val);
9540
9541 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9542 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9543 DRM_ERROR("Switching to FCLK failed\n");
9544
9545 val = I915_READ(LCPLL_CTL);
9546 }
9547
9548 val |= LCPLL_PLL_DISABLE;
9549 I915_WRITE(LCPLL_CTL, val);
9550 POSTING_READ(LCPLL_CTL);
9551
9552 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
9553 DRM_ERROR("LCPLL still locked\n");
9554
9ccd5aeb 9555 val = hsw_read_dcomp(dev_priv);
be256dc7 9556 val |= D_COMP_COMP_DISABLE;
3c4c9b81 9557 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
9558 ndelay(100);
9559
9ccd5aeb
PZ
9560 if (wait_for((hsw_read_dcomp(dev_priv) & D_COMP_RCOMP_IN_PROGRESS) == 0,
9561 1))
be256dc7
PZ
9562 DRM_ERROR("D_COMP RCOMP still in progress\n");
9563
9564 if (allow_power_down) {
9565 val = I915_READ(LCPLL_CTL);
9566 val |= LCPLL_POWER_DOWN_ALLOW;
9567 I915_WRITE(LCPLL_CTL, val);
9568 POSTING_READ(LCPLL_CTL);
9569 }
9570}
9571
9572/*
9573 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
9574 * source.
9575 */
6ff58d53 9576static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
be256dc7
PZ
9577{
9578 uint32_t val;
9579
9580 val = I915_READ(LCPLL_CTL);
9581
9582 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
9583 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
9584 return;
9585
a8a8bd54
PZ
9586 /*
9587 * Make sure we're not on PC8 state before disabling PC8, otherwise
9588 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
a8a8bd54 9589 */
59bad947 9590 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
215733fa 9591
be256dc7
PZ
9592 if (val & LCPLL_POWER_DOWN_ALLOW) {
9593 val &= ~LCPLL_POWER_DOWN_ALLOW;
9594 I915_WRITE(LCPLL_CTL, val);
35d8f2eb 9595 POSTING_READ(LCPLL_CTL);
be256dc7
PZ
9596 }
9597
9ccd5aeb 9598 val = hsw_read_dcomp(dev_priv);
be256dc7
PZ
9599 val |= D_COMP_COMP_FORCE;
9600 val &= ~D_COMP_COMP_DISABLE;
3c4c9b81 9601 hsw_write_dcomp(dev_priv, val);
be256dc7
PZ
9602
9603 val = I915_READ(LCPLL_CTL);
9604 val &= ~LCPLL_PLL_DISABLE;
9605 I915_WRITE(LCPLL_CTL, val);
9606
9607 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
9608 DRM_ERROR("LCPLL not locked yet\n");
9609
9610 if (val & LCPLL_CD_SOURCE_FCLK) {
9611 val = I915_READ(LCPLL_CTL);
9612 val &= ~LCPLL_CD_SOURCE_FCLK;
9613 I915_WRITE(LCPLL_CTL, val);
9614
9615 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9616 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9617 DRM_ERROR("Switching back to LCPLL failed\n");
9618 }
215733fa 9619
59bad947 9620 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
b6283055 9621 intel_update_cdclk(dev_priv->dev);
be256dc7
PZ
9622}
9623
765dab67
PZ
9624/*
9625 * Package states C8 and deeper are really deep PC states that can only be
9626 * reached when all the devices on the system allow it, so even if the graphics
9627 * device allows PC8+, it doesn't mean the system will actually get to these
9628 * states. Our driver only allows PC8+ when going into runtime PM.
9629 *
9630 * The requirements for PC8+ are that all the outputs are disabled, the power
9631 * well is disabled and most interrupts are disabled, and these are also
9632 * requirements for runtime PM. When these conditions are met, we manually do
9633 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
9634 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
9635 * hang the machine.
9636 *
9637 * When we really reach PC8 or deeper states (not just when we allow it) we lose
9638 * the state of some registers, so when we come back from PC8+ we need to
9639 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
9640 * need to take care of the registers kept by RC6. Notice that this happens even
9641 * if we don't put the device in PCI D3 state (which is what currently happens
9642 * because of the runtime PM support).
9643 *
9644 * For more, read "Display Sequences for Package C8" on the hardware
9645 * documentation.
9646 */
a14cb6fc 9647void hsw_enable_pc8(struct drm_i915_private *dev_priv)
c67a470b 9648{
c67a470b
PZ
9649 struct drm_device *dev = dev_priv->dev;
9650 uint32_t val;
9651
c67a470b
PZ
9652 DRM_DEBUG_KMS("Enabling package C8+\n");
9653
c2699524 9654 if (HAS_PCH_LPT_LP(dev)) {
c67a470b
PZ
9655 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9656 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
9657 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9658 }
9659
9660 lpt_disable_clkout_dp(dev);
c67a470b
PZ
9661 hsw_disable_lcpll(dev_priv, true, true);
9662}
9663
a14cb6fc 9664void hsw_disable_pc8(struct drm_i915_private *dev_priv)
c67a470b
PZ
9665{
9666 struct drm_device *dev = dev_priv->dev;
9667 uint32_t val;
9668
c67a470b
PZ
9669 DRM_DEBUG_KMS("Disabling package C8+\n");
9670
9671 hsw_restore_lcpll(dev_priv);
c67a470b
PZ
9672 lpt_init_pch_refclk(dev);
9673
c2699524 9674 if (HAS_PCH_LPT_LP(dev)) {
c67a470b
PZ
9675 val = I915_READ(SOUTH_DSPCLK_GATE_D);
9676 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
9677 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
9678 }
9679
9680 intel_prepare_ddi(dev);
c67a470b
PZ
9681}
9682
27c329ed 9683static void broxton_modeset_commit_cdclk(struct drm_atomic_state *old_state)
f8437dd1 9684{
a821fc46 9685 struct drm_device *dev = old_state->dev;
27c329ed 9686 unsigned int req_cdclk = to_intel_atomic_state(old_state)->cdclk;
f8437dd1 9687
27c329ed 9688 broxton_set_cdclk(dev, req_cdclk);
f8437dd1
VK
9689}
9690
b432e5cf 9691/* compute the max rate for new configuration */
27c329ed 9692static int ilk_max_pixel_rate(struct drm_atomic_state *state)
b432e5cf 9693{
565602d7
ML
9694 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
9695 struct drm_i915_private *dev_priv = state->dev->dev_private;
9696 struct drm_crtc *crtc;
9697 struct drm_crtc_state *cstate;
27c329ed 9698 struct intel_crtc_state *crtc_state;
565602d7
ML
9699 unsigned max_pixel_rate = 0, i;
9700 enum pipe pipe;
b432e5cf 9701
565602d7
ML
9702 memcpy(intel_state->min_pixclk, dev_priv->min_pixclk,
9703 sizeof(intel_state->min_pixclk));
27c329ed 9704
565602d7
ML
9705 for_each_crtc_in_state(state, crtc, cstate, i) {
9706 int pixel_rate;
27c329ed 9707
565602d7
ML
9708 crtc_state = to_intel_crtc_state(cstate);
9709 if (!crtc_state->base.enable) {
9710 intel_state->min_pixclk[i] = 0;
b432e5cf 9711 continue;
565602d7 9712 }
b432e5cf 9713
27c329ed 9714 pixel_rate = ilk_pipe_pixel_rate(crtc_state);
b432e5cf
VS
9715
9716 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
565602d7 9717 if (IS_BROADWELL(dev_priv) && crtc_state->ips_enabled)
b432e5cf
VS
9718 pixel_rate = DIV_ROUND_UP(pixel_rate * 100, 95);
9719
565602d7 9720 intel_state->min_pixclk[i] = pixel_rate;
b432e5cf
VS
9721 }
9722
565602d7
ML
9723 if (!intel_state->active_crtcs)
9724 return 0;
9725
9726 for_each_pipe(dev_priv, pipe)
9727 max_pixel_rate = max(intel_state->min_pixclk[pipe], max_pixel_rate);
9728
b432e5cf
VS
9729 return max_pixel_rate;
9730}
9731
9732static void broadwell_set_cdclk(struct drm_device *dev, int cdclk)
9733{
9734 struct drm_i915_private *dev_priv = dev->dev_private;
9735 uint32_t val, data;
9736 int ret;
9737
9738 if (WARN((I915_READ(LCPLL_CTL) &
9739 (LCPLL_PLL_DISABLE | LCPLL_PLL_LOCK |
9740 LCPLL_CD_CLOCK_DISABLE | LCPLL_ROOT_CD_CLOCK_DISABLE |
9741 LCPLL_CD2X_CLOCK_DISABLE | LCPLL_POWER_DOWN_ALLOW |
9742 LCPLL_CD_SOURCE_FCLK)) != LCPLL_PLL_LOCK,
9743 "trying to change cdclk frequency with cdclk not enabled\n"))
9744 return;
9745
9746 mutex_lock(&dev_priv->rps.hw_lock);
9747 ret = sandybridge_pcode_write(dev_priv,
9748 BDW_PCODE_DISPLAY_FREQ_CHANGE_REQ, 0x0);
9749 mutex_unlock(&dev_priv->rps.hw_lock);
9750 if (ret) {
9751 DRM_ERROR("failed to inform pcode about cdclk change\n");
9752 return;
9753 }
9754
9755 val = I915_READ(LCPLL_CTL);
9756 val |= LCPLL_CD_SOURCE_FCLK;
9757 I915_WRITE(LCPLL_CTL, val);
9758
9759 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
9760 LCPLL_CD_SOURCE_FCLK_DONE, 1))
9761 DRM_ERROR("Switching to FCLK failed\n");
9762
9763 val = I915_READ(LCPLL_CTL);
9764 val &= ~LCPLL_CLK_FREQ_MASK;
9765
9766 switch (cdclk) {
9767 case 450000:
9768 val |= LCPLL_CLK_FREQ_450;
9769 data = 0;
9770 break;
9771 case 540000:
9772 val |= LCPLL_CLK_FREQ_54O_BDW;
9773 data = 1;
9774 break;
9775 case 337500:
9776 val |= LCPLL_CLK_FREQ_337_5_BDW;
9777 data = 2;
9778 break;
9779 case 675000:
9780 val |= LCPLL_CLK_FREQ_675_BDW;
9781 data = 3;
9782 break;
9783 default:
9784 WARN(1, "invalid cdclk frequency\n");
9785 return;
9786 }
9787
9788 I915_WRITE(LCPLL_CTL, val);
9789
9790 val = I915_READ(LCPLL_CTL);
9791 val &= ~LCPLL_CD_SOURCE_FCLK;
9792 I915_WRITE(LCPLL_CTL, val);
9793
9794 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
9795 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
9796 DRM_ERROR("Switching back to LCPLL failed\n");
9797
9798 mutex_lock(&dev_priv->rps.hw_lock);
9799 sandybridge_pcode_write(dev_priv, HSW_PCODE_DE_WRITE_FREQ_REQ, data);
9800 mutex_unlock(&dev_priv->rps.hw_lock);
9801
9802 intel_update_cdclk(dev);
9803
9804 WARN(cdclk != dev_priv->cdclk_freq,
9805 "cdclk requested %d kHz but got %d kHz\n",
9806 cdclk, dev_priv->cdclk_freq);
9807}
9808
27c329ed 9809static int broadwell_modeset_calc_cdclk(struct drm_atomic_state *state)
b432e5cf 9810{
27c329ed
ML
9811 struct drm_i915_private *dev_priv = to_i915(state->dev);
9812 int max_pixclk = ilk_max_pixel_rate(state);
b432e5cf
VS
9813 int cdclk;
9814
9815 /*
9816 * FIXME should also account for plane ratio
9817 * once 64bpp pixel formats are supported.
9818 */
27c329ed 9819 if (max_pixclk > 540000)
b432e5cf 9820 cdclk = 675000;
27c329ed 9821 else if (max_pixclk > 450000)
b432e5cf 9822 cdclk = 540000;
27c329ed 9823 else if (max_pixclk > 337500)
b432e5cf
VS
9824 cdclk = 450000;
9825 else
9826 cdclk = 337500;
9827
b432e5cf 9828 if (cdclk > dev_priv->max_cdclk_freq) {
63ba534e
ML
9829 DRM_DEBUG_KMS("requested cdclk (%d kHz) exceeds max (%d kHz)\n",
9830 cdclk, dev_priv->max_cdclk_freq);
9831 return -EINVAL;
b432e5cf
VS
9832 }
9833
27c329ed 9834 to_intel_atomic_state(state)->cdclk = cdclk;
b432e5cf
VS
9835
9836 return 0;
9837}
9838
27c329ed 9839static void broadwell_modeset_commit_cdclk(struct drm_atomic_state *old_state)
b432e5cf 9840{
27c329ed
ML
9841 struct drm_device *dev = old_state->dev;
9842 unsigned int req_cdclk = to_intel_atomic_state(old_state)->cdclk;
b432e5cf 9843
27c329ed 9844 broadwell_set_cdclk(dev, req_cdclk);
b432e5cf
VS
9845}
9846
190f68c5
ACO
9847static int haswell_crtc_compute_clock(struct intel_crtc *crtc,
9848 struct intel_crtc_state *crtc_state)
09b4ddf9 9849{
190f68c5 9850 if (!intel_ddi_pll_select(crtc, crtc_state))
6441ab5f 9851 return -EINVAL;
716c2e55 9852
c7653199 9853 crtc->lowfreq_avail = false;
644cef34 9854
c8f7a0db 9855 return 0;
79e53945
JB
9856}
9857
3760b59c
S
9858static void bxt_get_ddi_pll(struct drm_i915_private *dev_priv,
9859 enum port port,
9860 struct intel_crtc_state *pipe_config)
9861{
9862 switch (port) {
9863 case PORT_A:
9864 pipe_config->ddi_pll_sel = SKL_DPLL0;
9865 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9866 break;
9867 case PORT_B:
9868 pipe_config->ddi_pll_sel = SKL_DPLL1;
9869 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9870 break;
9871 case PORT_C:
9872 pipe_config->ddi_pll_sel = SKL_DPLL2;
9873 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9874 break;
9875 default:
9876 DRM_ERROR("Incorrect port type\n");
9877 }
9878}
9879
96b7dfb7
S
9880static void skylake_get_ddi_pll(struct drm_i915_private *dev_priv,
9881 enum port port,
5cec258b 9882 struct intel_crtc_state *pipe_config)
96b7dfb7 9883{
3148ade7 9884 u32 temp, dpll_ctl1;
96b7dfb7
S
9885
9886 temp = I915_READ(DPLL_CTRL2) & DPLL_CTRL2_DDI_CLK_SEL_MASK(port);
9887 pipe_config->ddi_pll_sel = temp >> (port * 3 + 1);
9888
9889 switch (pipe_config->ddi_pll_sel) {
3148ade7
DL
9890 case SKL_DPLL0:
9891 /*
9892 * On SKL the eDP DPLL (DPLL0 as we don't use SSC) is not part
9893 * of the shared DPLL framework and thus needs to be read out
9894 * separately
9895 */
9896 dpll_ctl1 = I915_READ(DPLL_CTRL1);
9897 pipe_config->dpll_hw_state.ctrl1 = dpll_ctl1 & 0x3f;
9898 break;
96b7dfb7
S
9899 case SKL_DPLL1:
9900 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL1;
9901 break;
9902 case SKL_DPLL2:
9903 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL2;
9904 break;
9905 case SKL_DPLL3:
9906 pipe_config->shared_dpll = DPLL_ID_SKL_DPLL3;
9907 break;
96b7dfb7
S
9908 }
9909}
9910
7d2c8175
DL
9911static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
9912 enum port port,
5cec258b 9913 struct intel_crtc_state *pipe_config)
7d2c8175
DL
9914{
9915 pipe_config->ddi_pll_sel = I915_READ(PORT_CLK_SEL(port));
9916
9917 switch (pipe_config->ddi_pll_sel) {
9918 case PORT_CLK_SEL_WRPLL1:
9919 pipe_config->shared_dpll = DPLL_ID_WRPLL1;
9920 break;
9921 case PORT_CLK_SEL_WRPLL2:
9922 pipe_config->shared_dpll = DPLL_ID_WRPLL2;
9923 break;
00490c22
ML
9924 case PORT_CLK_SEL_SPLL:
9925 pipe_config->shared_dpll = DPLL_ID_SPLL;
79bd23da 9926 break;
7d2c8175
DL
9927 }
9928}
9929
26804afd 9930static void haswell_get_ddi_port_state(struct intel_crtc *crtc,
5cec258b 9931 struct intel_crtc_state *pipe_config)
26804afd
DV
9932{
9933 struct drm_device *dev = crtc->base.dev;
9934 struct drm_i915_private *dev_priv = dev->dev_private;
d452c5b6 9935 struct intel_shared_dpll *pll;
26804afd
DV
9936 enum port port;
9937 uint32_t tmp;
9938
9939 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
9940
9941 port = (tmp & TRANS_DDI_PORT_MASK) >> TRANS_DDI_PORT_SHIFT;
9942
ef11bdb3 9943 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
96b7dfb7 9944 skylake_get_ddi_pll(dev_priv, port, pipe_config);
3760b59c
S
9945 else if (IS_BROXTON(dev))
9946 bxt_get_ddi_pll(dev_priv, port, pipe_config);
96b7dfb7
S
9947 else
9948 haswell_get_ddi_pll(dev_priv, port, pipe_config);
9cd86933 9949
d452c5b6
DV
9950 if (pipe_config->shared_dpll >= 0) {
9951 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
9952
9953 WARN_ON(!pll->get_hw_state(dev_priv, pll,
9954 &pipe_config->dpll_hw_state));
9955 }
9956
26804afd
DV
9957 /*
9958 * Haswell has only FDI/PCH transcoder A. It is which is connected to
9959 * DDI E. So just check whether this pipe is wired to DDI E and whether
9960 * the PCH transcoder is on.
9961 */
ca370455
DL
9962 if (INTEL_INFO(dev)->gen < 9 &&
9963 (port == PORT_E) && I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
26804afd
DV
9964 pipe_config->has_pch_encoder = true;
9965
9966 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
9967 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
9968 FDI_DP_PORT_WIDTH_SHIFT) + 1;
9969
9970 ironlake_get_fdi_m_n_config(crtc, pipe_config);
9971 }
9972}
9973
0e8ffe1b 9974static bool haswell_get_pipe_config(struct intel_crtc *crtc,
5cec258b 9975 struct intel_crtc_state *pipe_config)
0e8ffe1b
DV
9976{
9977 struct drm_device *dev = crtc->base.dev;
9978 struct drm_i915_private *dev_priv = dev->dev_private;
2fa2fe9a 9979 enum intel_display_power_domain pfit_domain;
0e8ffe1b
DV
9980 uint32_t tmp;
9981
f458ebbc 9982 if (!intel_display_power_is_enabled(dev_priv,
b5482bd0
ID
9983 POWER_DOMAIN_PIPE(crtc->pipe)))
9984 return false;
9985
e143a21c 9986 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
c0d43d62
DV
9987 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
9988
eccb140b
DV
9989 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
9990 if (tmp & TRANS_DDI_FUNC_ENABLE) {
9991 enum pipe trans_edp_pipe;
9992 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
9993 default:
9994 WARN(1, "unknown pipe linked to edp transcoder\n");
9995 case TRANS_DDI_EDP_INPUT_A_ONOFF:
9996 case TRANS_DDI_EDP_INPUT_A_ON:
9997 trans_edp_pipe = PIPE_A;
9998 break;
9999 case TRANS_DDI_EDP_INPUT_B_ONOFF:
10000 trans_edp_pipe = PIPE_B;
10001 break;
10002 case TRANS_DDI_EDP_INPUT_C_ONOFF:
10003 trans_edp_pipe = PIPE_C;
10004 break;
10005 }
10006
10007 if (trans_edp_pipe == crtc->pipe)
10008 pipe_config->cpu_transcoder = TRANSCODER_EDP;
10009 }
10010
f458ebbc 10011 if (!intel_display_power_is_enabled(dev_priv,
eccb140b 10012 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
2bfce950
PZ
10013 return false;
10014
eccb140b 10015 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
0e8ffe1b
DV
10016 if (!(tmp & PIPECONF_ENABLE))
10017 return false;
10018
26804afd 10019 haswell_get_ddi_port_state(crtc, pipe_config);
627eb5a3 10020
1bd1bd80
DV
10021 intel_get_pipe_timings(crtc, pipe_config);
10022
a1b2278e
CK
10023 if (INTEL_INFO(dev)->gen >= 9) {
10024 skl_init_scalers(dev, crtc, pipe_config);
10025 }
10026
2fa2fe9a 10027 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
af99ceda
CK
10028
10029 if (INTEL_INFO(dev)->gen >= 9) {
10030 pipe_config->scaler_state.scaler_id = -1;
10031 pipe_config->scaler_state.scaler_users &= ~(1 << SKL_CRTC_INDEX);
10032 }
10033
bd2e244f 10034 if (intel_display_power_is_enabled(dev_priv, pfit_domain)) {
1c132b44 10035 if (INTEL_INFO(dev)->gen >= 9)
bd2e244f 10036 skylake_get_pfit_config(crtc, pipe_config);
ff6d9f55 10037 else
1c132b44 10038 ironlake_get_pfit_config(crtc, pipe_config);
bd2e244f 10039 }
88adfff1 10040
e59150dc
JB
10041 if (IS_HASWELL(dev))
10042 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
10043 (I915_READ(IPS_CTL) & IPS_ENABLE);
42db64ef 10044
ebb69c95
CT
10045 if (pipe_config->cpu_transcoder != TRANSCODER_EDP) {
10046 pipe_config->pixel_multiplier =
10047 I915_READ(PIPE_MULT(pipe_config->cpu_transcoder)) + 1;
10048 } else {
10049 pipe_config->pixel_multiplier = 1;
10050 }
6c49f241 10051
0e8ffe1b
DV
10052 return true;
10053}
10054
663f3122 10055static void i845_update_cursor(struct drm_crtc *crtc, u32 base, bool on)
560b85bb
CW
10056{
10057 struct drm_device *dev = crtc->dev;
10058 struct drm_i915_private *dev_priv = dev->dev_private;
10059 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
dc41c154 10060 uint32_t cntl = 0, size = 0;
560b85bb 10061
663f3122 10062 if (on) {
3dd512fb
MR
10063 unsigned int width = intel_crtc->base.cursor->state->crtc_w;
10064 unsigned int height = intel_crtc->base.cursor->state->crtc_h;
dc41c154
VS
10065 unsigned int stride = roundup_pow_of_two(width) * 4;
10066
10067 switch (stride) {
10068 default:
10069 WARN_ONCE(1, "Invalid cursor width/stride, width=%u, stride=%u\n",
10070 width, stride);
10071 stride = 256;
10072 /* fallthrough */
10073 case 256:
10074 case 512:
10075 case 1024:
10076 case 2048:
10077 break;
4b0e333e
CW
10078 }
10079
dc41c154
VS
10080 cntl |= CURSOR_ENABLE |
10081 CURSOR_GAMMA_ENABLE |
10082 CURSOR_FORMAT_ARGB |
10083 CURSOR_STRIDE(stride);
10084
10085 size = (height << 12) | width;
4b0e333e 10086 }
560b85bb 10087
dc41c154
VS
10088 if (intel_crtc->cursor_cntl != 0 &&
10089 (intel_crtc->cursor_base != base ||
10090 intel_crtc->cursor_size != size ||
10091 intel_crtc->cursor_cntl != cntl)) {
10092 /* On these chipsets we can only modify the base/size/stride
10093 * whilst the cursor is disabled.
10094 */
0b87c24e
VS
10095 I915_WRITE(CURCNTR(PIPE_A), 0);
10096 POSTING_READ(CURCNTR(PIPE_A));
dc41c154 10097 intel_crtc->cursor_cntl = 0;
4b0e333e 10098 }
560b85bb 10099
99d1f387 10100 if (intel_crtc->cursor_base != base) {
0b87c24e 10101 I915_WRITE(CURBASE(PIPE_A), base);
99d1f387
VS
10102 intel_crtc->cursor_base = base;
10103 }
4726e0b0 10104
dc41c154
VS
10105 if (intel_crtc->cursor_size != size) {
10106 I915_WRITE(CURSIZE, size);
10107 intel_crtc->cursor_size = size;
4b0e333e 10108 }
560b85bb 10109
4b0e333e 10110 if (intel_crtc->cursor_cntl != cntl) {
0b87c24e
VS
10111 I915_WRITE(CURCNTR(PIPE_A), cntl);
10112 POSTING_READ(CURCNTR(PIPE_A));
4b0e333e 10113 intel_crtc->cursor_cntl = cntl;
560b85bb 10114 }
560b85bb
CW
10115}
10116
663f3122 10117static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base, bool on)
65a21cd6
JB
10118{
10119 struct drm_device *dev = crtc->dev;
10120 struct drm_i915_private *dev_priv = dev->dev_private;
10121 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10122 int pipe = intel_crtc->pipe;
663f3122 10123 uint32_t cntl = 0;
4b0e333e 10124
663f3122 10125 if (on) {
4b0e333e 10126 cntl = MCURSOR_GAMMA_ENABLE;
3dd512fb 10127 switch (intel_crtc->base.cursor->state->crtc_w) {
4726e0b0
SK
10128 case 64:
10129 cntl |= CURSOR_MODE_64_ARGB_AX;
10130 break;
10131 case 128:
10132 cntl |= CURSOR_MODE_128_ARGB_AX;
10133 break;
10134 case 256:
10135 cntl |= CURSOR_MODE_256_ARGB_AX;
10136 break;
10137 default:
3dd512fb 10138 MISSING_CASE(intel_crtc->base.cursor->state->crtc_w);
4726e0b0 10139 return;
65a21cd6 10140 }
4b0e333e 10141 cntl |= pipe << 28; /* Connect to correct pipe */
47bf17a7 10142
fc6f93bc 10143 if (HAS_DDI(dev))
47bf17a7 10144 cntl |= CURSOR_PIPE_CSC_ENABLE;
4b0e333e 10145 }
65a21cd6 10146
8e7d688b 10147 if (crtc->cursor->state->rotation == BIT(DRM_ROTATE_180))
4398ad45
VS
10148 cntl |= CURSOR_ROTATE_180;
10149
4b0e333e
CW
10150 if (intel_crtc->cursor_cntl != cntl) {
10151 I915_WRITE(CURCNTR(pipe), cntl);
10152 POSTING_READ(CURCNTR(pipe));
10153 intel_crtc->cursor_cntl = cntl;
65a21cd6 10154 }
4b0e333e 10155
65a21cd6 10156 /* and commit changes on next vblank */
5efb3e28
VS
10157 I915_WRITE(CURBASE(pipe), base);
10158 POSTING_READ(CURBASE(pipe));
99d1f387
VS
10159
10160 intel_crtc->cursor_base = base;
65a21cd6
JB
10161}
10162
cda4b7d3 10163/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
6b383a7f
CW
10164static void intel_crtc_update_cursor(struct drm_crtc *crtc,
10165 bool on)
cda4b7d3
CW
10166{
10167 struct drm_device *dev = crtc->dev;
10168 struct drm_i915_private *dev_priv = dev->dev_private;
10169 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10170 int pipe = intel_crtc->pipe;
9b4101be
ML
10171 struct drm_plane_state *cursor_state = crtc->cursor->state;
10172 int x = cursor_state->crtc_x;
10173 int y = cursor_state->crtc_y;
d6e4db15 10174 u32 base = 0, pos = 0;
cda4b7d3 10175
663f3122 10176 base = intel_crtc->cursor_addr;
cda4b7d3 10177
6e3c9717 10178 if (x >= intel_crtc->config->pipe_src_w)
663f3122 10179 on = false;
d6e4db15 10180
6e3c9717 10181 if (y >= intel_crtc->config->pipe_src_h)
663f3122 10182 on = false;
cda4b7d3
CW
10183
10184 if (x < 0) {
9b4101be 10185 if (x + cursor_state->crtc_w <= 0)
663f3122 10186 on = false;
cda4b7d3
CW
10187
10188 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
10189 x = -x;
10190 }
10191 pos |= x << CURSOR_X_SHIFT;
10192
10193 if (y < 0) {
9b4101be 10194 if (y + cursor_state->crtc_h <= 0)
663f3122 10195 on = false;
cda4b7d3
CW
10196
10197 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
10198 y = -y;
10199 }
10200 pos |= y << CURSOR_Y_SHIFT;
10201
5efb3e28
VS
10202 I915_WRITE(CURPOS(pipe), pos);
10203
4398ad45
VS
10204 /* ILK+ do this automagically */
10205 if (HAS_GMCH_DISPLAY(dev) &&
8e7d688b 10206 crtc->cursor->state->rotation == BIT(DRM_ROTATE_180)) {
9b4101be
ML
10207 base += (cursor_state->crtc_h *
10208 cursor_state->crtc_w - 1) * 4;
4398ad45
VS
10209 }
10210
8ac54669 10211 if (IS_845G(dev) || IS_I865G(dev))
663f3122 10212 i845_update_cursor(crtc, base, on);
5efb3e28 10213 else
663f3122 10214 i9xx_update_cursor(crtc, base, on);
cda4b7d3
CW
10215}
10216
dc41c154
VS
10217static bool cursor_size_ok(struct drm_device *dev,
10218 uint32_t width, uint32_t height)
10219{
10220 if (width == 0 || height == 0)
10221 return false;
10222
10223 /*
10224 * 845g/865g are special in that they are only limited by
10225 * the width of their cursors, the height is arbitrary up to
10226 * the precision of the register. Everything else requires
10227 * square cursors, limited to a few power-of-two sizes.
10228 */
10229 if (IS_845G(dev) || IS_I865G(dev)) {
10230 if ((width & 63) != 0)
10231 return false;
10232
10233 if (width > (IS_845G(dev) ? 64 : 512))
10234 return false;
10235
10236 if (height > 1023)
10237 return false;
10238 } else {
10239 switch (width | height) {
10240 case 256:
10241 case 128:
10242 if (IS_GEN2(dev))
10243 return false;
10244 case 64:
10245 break;
10246 default:
10247 return false;
10248 }
10249 }
10250
10251 return true;
10252}
10253
79e53945 10254static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
7203425a 10255 u16 *blue, uint32_t start, uint32_t size)
79e53945 10256{
7203425a 10257 int end = (start + size > 256) ? 256 : start + size, i;
79e53945 10258 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
79e53945 10259
7203425a 10260 for (i = start; i < end; i++) {
79e53945
JB
10261 intel_crtc->lut_r[i] = red[i] >> 8;
10262 intel_crtc->lut_g[i] = green[i] >> 8;
10263 intel_crtc->lut_b[i] = blue[i] >> 8;
10264 }
10265
10266 intel_crtc_load_lut(crtc);
10267}
10268
79e53945
JB
10269/* VESA 640x480x72Hz mode to set on the pipe */
10270static struct drm_display_mode load_detect_mode = {
10271 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
10272 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
10273};
10274
a8bb6818
DV
10275struct drm_framebuffer *
10276__intel_framebuffer_create(struct drm_device *dev,
10277 struct drm_mode_fb_cmd2 *mode_cmd,
10278 struct drm_i915_gem_object *obj)
d2dff872
CW
10279{
10280 struct intel_framebuffer *intel_fb;
10281 int ret;
10282
10283 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
dcb1394e 10284 if (!intel_fb)
d2dff872 10285 return ERR_PTR(-ENOMEM);
d2dff872
CW
10286
10287 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
dd4916c5
DV
10288 if (ret)
10289 goto err;
d2dff872
CW
10290
10291 return &intel_fb->base;
dcb1394e 10292
dd4916c5 10293err:
dd4916c5 10294 kfree(intel_fb);
dd4916c5 10295 return ERR_PTR(ret);
d2dff872
CW
10296}
10297
b5ea642a 10298static struct drm_framebuffer *
a8bb6818
DV
10299intel_framebuffer_create(struct drm_device *dev,
10300 struct drm_mode_fb_cmd2 *mode_cmd,
10301 struct drm_i915_gem_object *obj)
10302{
10303 struct drm_framebuffer *fb;
10304 int ret;
10305
10306 ret = i915_mutex_lock_interruptible(dev);
10307 if (ret)
10308 return ERR_PTR(ret);
10309 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
10310 mutex_unlock(&dev->struct_mutex);
10311
10312 return fb;
10313}
10314
d2dff872
CW
10315static u32
10316intel_framebuffer_pitch_for_width(int width, int bpp)
10317{
10318 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
10319 return ALIGN(pitch, 64);
10320}
10321
10322static u32
10323intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
10324{
10325 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
1267a26b 10326 return PAGE_ALIGN(pitch * mode->vdisplay);
d2dff872
CW
10327}
10328
10329static struct drm_framebuffer *
10330intel_framebuffer_create_for_mode(struct drm_device *dev,
10331 struct drm_display_mode *mode,
10332 int depth, int bpp)
10333{
dcb1394e 10334 struct drm_framebuffer *fb;
d2dff872 10335 struct drm_i915_gem_object *obj;
0fed39bd 10336 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
d2dff872
CW
10337
10338 obj = i915_gem_alloc_object(dev,
10339 intel_framebuffer_size_for_mode(mode, bpp));
10340 if (obj == NULL)
10341 return ERR_PTR(-ENOMEM);
10342
10343 mode_cmd.width = mode->hdisplay;
10344 mode_cmd.height = mode->vdisplay;
308e5bcb
JB
10345 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
10346 bpp);
5ca0c34a 10347 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
d2dff872 10348
dcb1394e
LW
10349 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
10350 if (IS_ERR(fb))
10351 drm_gem_object_unreference_unlocked(&obj->base);
10352
10353 return fb;
d2dff872
CW
10354}
10355
10356static struct drm_framebuffer *
10357mode_fits_in_fbdev(struct drm_device *dev,
10358 struct drm_display_mode *mode)
10359{
0695726e 10360#ifdef CONFIG_DRM_FBDEV_EMULATION
d2dff872
CW
10361 struct drm_i915_private *dev_priv = dev->dev_private;
10362 struct drm_i915_gem_object *obj;
10363 struct drm_framebuffer *fb;
10364
4c0e5528 10365 if (!dev_priv->fbdev)
d2dff872
CW
10366 return NULL;
10367
4c0e5528 10368 if (!dev_priv->fbdev->fb)
d2dff872
CW
10369 return NULL;
10370
4c0e5528
DV
10371 obj = dev_priv->fbdev->fb->obj;
10372 BUG_ON(!obj);
10373
8bcd4553 10374 fb = &dev_priv->fbdev->fb->base;
01f2c773
VS
10375 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
10376 fb->bits_per_pixel))
d2dff872
CW
10377 return NULL;
10378
01f2c773 10379 if (obj->base.size < mode->vdisplay * fb->pitches[0])
d2dff872
CW
10380 return NULL;
10381
10382 return fb;
4520f53a
DV
10383#else
10384 return NULL;
10385#endif
d2dff872
CW
10386}
10387
d3a40d1b
ACO
10388static int intel_modeset_setup_plane_state(struct drm_atomic_state *state,
10389 struct drm_crtc *crtc,
10390 struct drm_display_mode *mode,
10391 struct drm_framebuffer *fb,
10392 int x, int y)
10393{
10394 struct drm_plane_state *plane_state;
10395 int hdisplay, vdisplay;
10396 int ret;
10397
10398 plane_state = drm_atomic_get_plane_state(state, crtc->primary);
10399 if (IS_ERR(plane_state))
10400 return PTR_ERR(plane_state);
10401
10402 if (mode)
10403 drm_crtc_get_hv_timing(mode, &hdisplay, &vdisplay);
10404 else
10405 hdisplay = vdisplay = 0;
10406
10407 ret = drm_atomic_set_crtc_for_plane(plane_state, fb ? crtc : NULL);
10408 if (ret)
10409 return ret;
10410 drm_atomic_set_fb_for_plane(plane_state, fb);
10411 plane_state->crtc_x = 0;
10412 plane_state->crtc_y = 0;
10413 plane_state->crtc_w = hdisplay;
10414 plane_state->crtc_h = vdisplay;
10415 plane_state->src_x = x << 16;
10416 plane_state->src_y = y << 16;
10417 plane_state->src_w = hdisplay << 16;
10418 plane_state->src_h = vdisplay << 16;
10419
10420 return 0;
10421}
10422
d2434ab7 10423bool intel_get_load_detect_pipe(struct drm_connector *connector,
7173188d 10424 struct drm_display_mode *mode,
51fd371b
RC
10425 struct intel_load_detect_pipe *old,
10426 struct drm_modeset_acquire_ctx *ctx)
79e53945
JB
10427{
10428 struct intel_crtc *intel_crtc;
d2434ab7
DV
10429 struct intel_encoder *intel_encoder =
10430 intel_attached_encoder(connector);
79e53945 10431 struct drm_crtc *possible_crtc;
4ef69c7a 10432 struct drm_encoder *encoder = &intel_encoder->base;
79e53945
JB
10433 struct drm_crtc *crtc = NULL;
10434 struct drm_device *dev = encoder->dev;
94352cf9 10435 struct drm_framebuffer *fb;
51fd371b 10436 struct drm_mode_config *config = &dev->mode_config;
83a57153 10437 struct drm_atomic_state *state = NULL;
944b0c76 10438 struct drm_connector_state *connector_state;
4be07317 10439 struct intel_crtc_state *crtc_state;
51fd371b 10440 int ret, i = -1;
79e53945 10441
d2dff872 10442 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 10443 connector->base.id, connector->name,
8e329a03 10444 encoder->base.id, encoder->name);
d2dff872 10445
51fd371b
RC
10446retry:
10447 ret = drm_modeset_lock(&config->connection_mutex, ctx);
10448 if (ret)
ad3c558f 10449 goto fail;
6e9f798d 10450
79e53945
JB
10451 /*
10452 * Algorithm gets a little messy:
7a5e4805 10453 *
79e53945
JB
10454 * - if the connector already has an assigned crtc, use it (but make
10455 * sure it's on first)
7a5e4805 10456 *
79e53945
JB
10457 * - try to find the first unused crtc that can drive this connector,
10458 * and use that if we find one
79e53945
JB
10459 */
10460
10461 /* See if we already have a CRTC for this connector */
10462 if (encoder->crtc) {
10463 crtc = encoder->crtc;
8261b191 10464
51fd371b 10465 ret = drm_modeset_lock(&crtc->mutex, ctx);
4d02e2de 10466 if (ret)
ad3c558f 10467 goto fail;
4d02e2de 10468 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
51fd371b 10469 if (ret)
ad3c558f 10470 goto fail;
7b24056b 10471
24218aac 10472 old->dpms_mode = connector->dpms;
8261b191
CW
10473 old->load_detect_temp = false;
10474
10475 /* Make sure the crtc and connector are running */
24218aac
DV
10476 if (connector->dpms != DRM_MODE_DPMS_ON)
10477 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
8261b191 10478
7173188d 10479 return true;
79e53945
JB
10480 }
10481
10482 /* Find an unused one (if possible) */
70e1e0ec 10483 for_each_crtc(dev, possible_crtc) {
79e53945
JB
10484 i++;
10485 if (!(encoder->possible_crtcs & (1 << i)))
10486 continue;
83d65738 10487 if (possible_crtc->state->enable)
a459249c 10488 continue;
a459249c
VS
10489
10490 crtc = possible_crtc;
10491 break;
79e53945
JB
10492 }
10493
10494 /*
10495 * If we didn't find an unused CRTC, don't use any.
10496 */
10497 if (!crtc) {
7173188d 10498 DRM_DEBUG_KMS("no pipe available for load-detect\n");
ad3c558f 10499 goto fail;
79e53945
JB
10500 }
10501
51fd371b
RC
10502 ret = drm_modeset_lock(&crtc->mutex, ctx);
10503 if (ret)
ad3c558f 10504 goto fail;
4d02e2de
DV
10505 ret = drm_modeset_lock(&crtc->primary->mutex, ctx);
10506 if (ret)
ad3c558f 10507 goto fail;
79e53945
JB
10508
10509 intel_crtc = to_intel_crtc(crtc);
24218aac 10510 old->dpms_mode = connector->dpms;
8261b191 10511 old->load_detect_temp = true;
d2dff872 10512 old->release_fb = NULL;
79e53945 10513
83a57153
ACO
10514 state = drm_atomic_state_alloc(dev);
10515 if (!state)
10516 return false;
10517
10518 state->acquire_ctx = ctx;
10519
944b0c76
ACO
10520 connector_state = drm_atomic_get_connector_state(state, connector);
10521 if (IS_ERR(connector_state)) {
10522 ret = PTR_ERR(connector_state);
10523 goto fail;
10524 }
10525
10526 connector_state->crtc = crtc;
10527 connector_state->best_encoder = &intel_encoder->base;
10528
4be07317
ACO
10529 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10530 if (IS_ERR(crtc_state)) {
10531 ret = PTR_ERR(crtc_state);
10532 goto fail;
10533 }
10534
49d6fa21 10535 crtc_state->base.active = crtc_state->base.enable = true;
4be07317 10536
6492711d
CW
10537 if (!mode)
10538 mode = &load_detect_mode;
79e53945 10539
d2dff872
CW
10540 /* We need a framebuffer large enough to accommodate all accesses
10541 * that the plane may generate whilst we perform load detection.
10542 * We can not rely on the fbcon either being present (we get called
10543 * during its initialisation to detect all boot displays, or it may
10544 * not even exist) or that it is large enough to satisfy the
10545 * requested mode.
10546 */
94352cf9
DV
10547 fb = mode_fits_in_fbdev(dev, mode);
10548 if (fb == NULL) {
d2dff872 10549 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
94352cf9
DV
10550 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
10551 old->release_fb = fb;
d2dff872
CW
10552 } else
10553 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
94352cf9 10554 if (IS_ERR(fb)) {
d2dff872 10555 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
412b61d8 10556 goto fail;
79e53945 10557 }
79e53945 10558
d3a40d1b
ACO
10559 ret = intel_modeset_setup_plane_state(state, crtc, mode, fb, 0, 0);
10560 if (ret)
10561 goto fail;
10562
8c7b5ccb
ACO
10563 drm_mode_copy(&crtc_state->base.mode, mode);
10564
74c090b1 10565 if (drm_atomic_commit(state)) {
6492711d 10566 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
d2dff872
CW
10567 if (old->release_fb)
10568 old->release_fb->funcs->destroy(old->release_fb);
412b61d8 10569 goto fail;
79e53945 10570 }
9128b040 10571 crtc->primary->crtc = crtc;
7173188d 10572
79e53945 10573 /* let the connector get through one full cycle before testing */
9d0498a2 10574 intel_wait_for_vblank(dev, intel_crtc->pipe);
7173188d 10575 return true;
412b61d8 10576
ad3c558f 10577fail:
e5d958ef
ACO
10578 drm_atomic_state_free(state);
10579 state = NULL;
83a57153 10580
51fd371b
RC
10581 if (ret == -EDEADLK) {
10582 drm_modeset_backoff(ctx);
10583 goto retry;
10584 }
10585
412b61d8 10586 return false;
79e53945
JB
10587}
10588
d2434ab7 10589void intel_release_load_detect_pipe(struct drm_connector *connector,
49172fee
ACO
10590 struct intel_load_detect_pipe *old,
10591 struct drm_modeset_acquire_ctx *ctx)
79e53945 10592{
83a57153 10593 struct drm_device *dev = connector->dev;
d2434ab7
DV
10594 struct intel_encoder *intel_encoder =
10595 intel_attached_encoder(connector);
4ef69c7a 10596 struct drm_encoder *encoder = &intel_encoder->base;
7b24056b 10597 struct drm_crtc *crtc = encoder->crtc;
412b61d8 10598 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
83a57153 10599 struct drm_atomic_state *state;
944b0c76 10600 struct drm_connector_state *connector_state;
4be07317 10601 struct intel_crtc_state *crtc_state;
d3a40d1b 10602 int ret;
79e53945 10603
d2dff872 10604 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
c23cc417 10605 connector->base.id, connector->name,
8e329a03 10606 encoder->base.id, encoder->name);
d2dff872 10607
8261b191 10608 if (old->load_detect_temp) {
83a57153 10609 state = drm_atomic_state_alloc(dev);
944b0c76
ACO
10610 if (!state)
10611 goto fail;
83a57153
ACO
10612
10613 state->acquire_ctx = ctx;
10614
944b0c76
ACO
10615 connector_state = drm_atomic_get_connector_state(state, connector);
10616 if (IS_ERR(connector_state))
10617 goto fail;
10618
4be07317
ACO
10619 crtc_state = intel_atomic_get_crtc_state(state, intel_crtc);
10620 if (IS_ERR(crtc_state))
10621 goto fail;
10622
944b0c76
ACO
10623 connector_state->best_encoder = NULL;
10624 connector_state->crtc = NULL;
10625
49d6fa21 10626 crtc_state->base.enable = crtc_state->base.active = false;
4be07317 10627
d3a40d1b
ACO
10628 ret = intel_modeset_setup_plane_state(state, crtc, NULL, NULL,
10629 0, 0);
10630 if (ret)
10631 goto fail;
10632
74c090b1 10633 ret = drm_atomic_commit(state);
2bfb4627
ACO
10634 if (ret)
10635 goto fail;
d2dff872 10636
36206361
DV
10637 if (old->release_fb) {
10638 drm_framebuffer_unregister_private(old->release_fb);
10639 drm_framebuffer_unreference(old->release_fb);
10640 }
d2dff872 10641
0622a53c 10642 return;
79e53945
JB
10643 }
10644
c751ce4f 10645 /* Switch crtc and encoder back off if necessary */
24218aac
DV
10646 if (old->dpms_mode != DRM_MODE_DPMS_ON)
10647 connector->funcs->dpms(connector, old->dpms_mode);
944b0c76
ACO
10648
10649 return;
10650fail:
10651 DRM_DEBUG_KMS("Couldn't release load detect pipe.\n");
10652 drm_atomic_state_free(state);
79e53945
JB
10653}
10654
da4a1efa 10655static int i9xx_pll_refclk(struct drm_device *dev,
5cec258b 10656 const struct intel_crtc_state *pipe_config)
da4a1efa
VS
10657{
10658 struct drm_i915_private *dev_priv = dev->dev_private;
10659 u32 dpll = pipe_config->dpll_hw_state.dpll;
10660
10661 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
e91e941b 10662 return dev_priv->vbt.lvds_ssc_freq;
da4a1efa
VS
10663 else if (HAS_PCH_SPLIT(dev))
10664 return 120000;
10665 else if (!IS_GEN2(dev))
10666 return 96000;
10667 else
10668 return 48000;
10669}
10670
79e53945 10671/* Returns the clock of the currently programmed mode of the given pipe. */
f1f644dc 10672static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
5cec258b 10673 struct intel_crtc_state *pipe_config)
79e53945 10674{
f1f644dc 10675 struct drm_device *dev = crtc->base.dev;
79e53945 10676 struct drm_i915_private *dev_priv = dev->dev_private;
f1f644dc 10677 int pipe = pipe_config->cpu_transcoder;
293623f7 10678 u32 dpll = pipe_config->dpll_hw_state.dpll;
79e53945
JB
10679 u32 fp;
10680 intel_clock_t clock;
dccbea3b 10681 int port_clock;
da4a1efa 10682 int refclk = i9xx_pll_refclk(dev, pipe_config);
79e53945
JB
10683
10684 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
293623f7 10685 fp = pipe_config->dpll_hw_state.fp0;
79e53945 10686 else
293623f7 10687 fp = pipe_config->dpll_hw_state.fp1;
79e53945
JB
10688
10689 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
f2b115e6
AJ
10690 if (IS_PINEVIEW(dev)) {
10691 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
10692 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
2177832f
SL
10693 } else {
10694 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
10695 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
10696 }
10697
a6c45cf0 10698 if (!IS_GEN2(dev)) {
f2b115e6
AJ
10699 if (IS_PINEVIEW(dev))
10700 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
10701 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
2177832f
SL
10702 else
10703 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
79e53945
JB
10704 DPLL_FPA01_P1_POST_DIV_SHIFT);
10705
10706 switch (dpll & DPLL_MODE_MASK) {
10707 case DPLLB_MODE_DAC_SERIAL:
10708 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
10709 5 : 10;
10710 break;
10711 case DPLLB_MODE_LVDS:
10712 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
10713 7 : 14;
10714 break;
10715 default:
28c97730 10716 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
79e53945 10717 "mode\n", (int)(dpll & DPLL_MODE_MASK));
f1f644dc 10718 return;
79e53945
JB
10719 }
10720
ac58c3f0 10721 if (IS_PINEVIEW(dev))
dccbea3b 10722 port_clock = pnv_calc_dpll_params(refclk, &clock);
ac58c3f0 10723 else
dccbea3b 10724 port_clock = i9xx_calc_dpll_params(refclk, &clock);
79e53945 10725 } else {
0fb58223 10726 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
b1c560d1 10727 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
79e53945
JB
10728
10729 if (is_lvds) {
10730 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
10731 DPLL_FPA01_P1_POST_DIV_SHIFT);
b1c560d1
VS
10732
10733 if (lvds & LVDS_CLKB_POWER_UP)
10734 clock.p2 = 7;
10735 else
10736 clock.p2 = 14;
79e53945
JB
10737 } else {
10738 if (dpll & PLL_P1_DIVIDE_BY_TWO)
10739 clock.p1 = 2;
10740 else {
10741 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
10742 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
10743 }
10744 if (dpll & PLL_P2_DIVIDE_BY_4)
10745 clock.p2 = 4;
10746 else
10747 clock.p2 = 2;
79e53945 10748 }
da4a1efa 10749
dccbea3b 10750 port_clock = i9xx_calc_dpll_params(refclk, &clock);
79e53945
JB
10751 }
10752
18442d08
VS
10753 /*
10754 * This value includes pixel_multiplier. We will use
241bfc38 10755 * port_clock to compute adjusted_mode.crtc_clock in the
18442d08
VS
10756 * encoder's get_config() function.
10757 */
dccbea3b 10758 pipe_config->port_clock = port_clock;
f1f644dc
JB
10759}
10760
6878da05
VS
10761int intel_dotclock_calculate(int link_freq,
10762 const struct intel_link_m_n *m_n)
f1f644dc 10763{
f1f644dc
JB
10764 /*
10765 * The calculation for the data clock is:
1041a02f 10766 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
f1f644dc 10767 * But we want to avoid losing precison if possible, so:
1041a02f 10768 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
f1f644dc
JB
10769 *
10770 * and the link clock is simpler:
1041a02f 10771 * link_clock = (m * link_clock) / n
f1f644dc
JB
10772 */
10773
6878da05
VS
10774 if (!m_n->link_n)
10775 return 0;
f1f644dc 10776
6878da05
VS
10777 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
10778}
f1f644dc 10779
18442d08 10780static void ironlake_pch_clock_get(struct intel_crtc *crtc,
5cec258b 10781 struct intel_crtc_state *pipe_config)
6878da05
VS
10782{
10783 struct drm_device *dev = crtc->base.dev;
79e53945 10784
18442d08
VS
10785 /* read out port_clock from the DPLL */
10786 i9xx_crtc_clock_get(crtc, pipe_config);
f1f644dc 10787
f1f644dc 10788 /*
18442d08 10789 * This value does not include pixel_multiplier.
241bfc38 10790 * We will check that port_clock and adjusted_mode.crtc_clock
18442d08
VS
10791 * agree once we know their relationship in the encoder's
10792 * get_config() function.
79e53945 10793 */
2d112de7 10794 pipe_config->base.adjusted_mode.crtc_clock =
18442d08
VS
10795 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
10796 &pipe_config->fdi_m_n);
79e53945
JB
10797}
10798
10799/** Returns the currently programmed mode of the given pipe. */
10800struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
10801 struct drm_crtc *crtc)
10802{
548f245b 10803 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 10804 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6e3c9717 10805 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
79e53945 10806 struct drm_display_mode *mode;
5cec258b 10807 struct intel_crtc_state pipe_config;
fe2b8f9d
PZ
10808 int htot = I915_READ(HTOTAL(cpu_transcoder));
10809 int hsync = I915_READ(HSYNC(cpu_transcoder));
10810 int vtot = I915_READ(VTOTAL(cpu_transcoder));
10811 int vsync = I915_READ(VSYNC(cpu_transcoder));
293623f7 10812 enum pipe pipe = intel_crtc->pipe;
79e53945
JB
10813
10814 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
10815 if (!mode)
10816 return NULL;
10817
f1f644dc
JB
10818 /*
10819 * Construct a pipe_config sufficient for getting the clock info
10820 * back out of crtc_clock_get.
10821 *
10822 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
10823 * to use a real value here instead.
10824 */
293623f7 10825 pipe_config.cpu_transcoder = (enum transcoder) pipe;
f1f644dc 10826 pipe_config.pixel_multiplier = 1;
293623f7
VS
10827 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
10828 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
10829 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
f1f644dc
JB
10830 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
10831
773ae034 10832 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
79e53945
JB
10833 mode->hdisplay = (htot & 0xffff) + 1;
10834 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
10835 mode->hsync_start = (hsync & 0xffff) + 1;
10836 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
10837 mode->vdisplay = (vtot & 0xffff) + 1;
10838 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
10839 mode->vsync_start = (vsync & 0xffff) + 1;
10840 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
10841
10842 drm_mode_set_name(mode);
79e53945
JB
10843
10844 return mode;
10845}
10846
f047e395
CW
10847void intel_mark_busy(struct drm_device *dev)
10848{
c67a470b
PZ
10849 struct drm_i915_private *dev_priv = dev->dev_private;
10850
f62a0076
CW
10851 if (dev_priv->mm.busy)
10852 return;
10853
43694d69 10854 intel_runtime_pm_get(dev_priv);
c67a470b 10855 i915_update_gfx_val(dev_priv);
43cf3bf0
CW
10856 if (INTEL_INFO(dev)->gen >= 6)
10857 gen6_rps_busy(dev_priv);
f62a0076 10858 dev_priv->mm.busy = true;
f047e395
CW
10859}
10860
10861void intel_mark_idle(struct drm_device *dev)
652c393a 10862{
c67a470b 10863 struct drm_i915_private *dev_priv = dev->dev_private;
652c393a 10864
f62a0076
CW
10865 if (!dev_priv->mm.busy)
10866 return;
10867
10868 dev_priv->mm.busy = false;
10869
3d13ef2e 10870 if (INTEL_INFO(dev)->gen >= 6)
b29c19b6 10871 gen6_rps_idle(dev->dev_private);
bb4cdd53 10872
43694d69 10873 intel_runtime_pm_put(dev_priv);
652c393a
JB
10874}
10875
79e53945
JB
10876static void intel_crtc_destroy(struct drm_crtc *crtc)
10877{
10878 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
67e77c5a
DV
10879 struct drm_device *dev = crtc->dev;
10880 struct intel_unpin_work *work;
67e77c5a 10881
5e2d7afc 10882 spin_lock_irq(&dev->event_lock);
67e77c5a
DV
10883 work = intel_crtc->unpin_work;
10884 intel_crtc->unpin_work = NULL;
5e2d7afc 10885 spin_unlock_irq(&dev->event_lock);
67e77c5a
DV
10886
10887 if (work) {
10888 cancel_work_sync(&work->work);
10889 kfree(work);
10890 }
79e53945
JB
10891
10892 drm_crtc_cleanup(crtc);
67e77c5a 10893
79e53945
JB
10894 kfree(intel_crtc);
10895}
10896
6b95a207
KH
10897static void intel_unpin_work_fn(struct work_struct *__work)
10898{
10899 struct intel_unpin_work *work =
10900 container_of(__work, struct intel_unpin_work, work);
a9ff8714
VS
10901 struct intel_crtc *crtc = to_intel_crtc(work->crtc);
10902 struct drm_device *dev = crtc->base.dev;
10903 struct drm_plane *primary = crtc->base.primary;
6b95a207 10904
b4a98e57 10905 mutex_lock(&dev->struct_mutex);
a9ff8714 10906 intel_unpin_fb_obj(work->old_fb, primary->state);
05394f39 10907 drm_gem_object_unreference(&work->pending_flip_obj->base);
d9e86c0e 10908
f06cc1b9 10909 if (work->flip_queued_req)
146d84f0 10910 i915_gem_request_assign(&work->flip_queued_req, NULL);
b4a98e57
CW
10911 mutex_unlock(&dev->struct_mutex);
10912
a9ff8714 10913 intel_frontbuffer_flip_complete(dev, to_intel_plane(primary)->frontbuffer_bit);
89ed88ba 10914 drm_framebuffer_unreference(work->old_fb);
f99d7069 10915
a9ff8714
VS
10916 BUG_ON(atomic_read(&crtc->unpin_work_count) == 0);
10917 atomic_dec(&crtc->unpin_work_count);
b4a98e57 10918
6b95a207
KH
10919 kfree(work);
10920}
10921
1afe3e9d 10922static void do_intel_finish_page_flip(struct drm_device *dev,
49b14a5c 10923 struct drm_crtc *crtc)
6b95a207 10924{
6b95a207
KH
10925 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
10926 struct intel_unpin_work *work;
6b95a207
KH
10927 unsigned long flags;
10928
10929 /* Ignore early vblank irqs */
10930 if (intel_crtc == NULL)
10931 return;
10932
f326038a
DV
10933 /*
10934 * This is called both by irq handlers and the reset code (to complete
10935 * lost pageflips) so needs the full irqsave spinlocks.
10936 */
6b95a207
KH
10937 spin_lock_irqsave(&dev->event_lock, flags);
10938 work = intel_crtc->unpin_work;
e7d841ca
CW
10939
10940 /* Ensure we don't miss a work->pending update ... */
10941 smp_rmb();
10942
10943 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
6b95a207
KH
10944 spin_unlock_irqrestore(&dev->event_lock, flags);
10945 return;
10946 }
10947
d6bbafa1 10948 page_flip_completed(intel_crtc);
0af7e4df 10949
6b95a207 10950 spin_unlock_irqrestore(&dev->event_lock, flags);
6b95a207
KH
10951}
10952
1afe3e9d
JB
10953void intel_finish_page_flip(struct drm_device *dev, int pipe)
10954{
fbee40df 10955 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
10956 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
10957
49b14a5c 10958 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
10959}
10960
10961void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
10962{
fbee40df 10963 struct drm_i915_private *dev_priv = dev->dev_private;
1afe3e9d
JB
10964 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
10965
49b14a5c 10966 do_intel_finish_page_flip(dev, crtc);
1afe3e9d
JB
10967}
10968
75f7f3ec
VS
10969/* Is 'a' after or equal to 'b'? */
10970static bool g4x_flip_count_after_eq(u32 a, u32 b)
10971{
10972 return !((a - b) & 0x80000000);
10973}
10974
10975static bool page_flip_finished(struct intel_crtc *crtc)
10976{
10977 struct drm_device *dev = crtc->base.dev;
10978 struct drm_i915_private *dev_priv = dev->dev_private;
10979
bdfa7542
VS
10980 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
10981 crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
10982 return true;
10983
75f7f3ec
VS
10984 /*
10985 * The relevant registers doen't exist on pre-ctg.
10986 * As the flip done interrupt doesn't trigger for mmio
10987 * flips on gmch platforms, a flip count check isn't
10988 * really needed there. But since ctg has the registers,
10989 * include it in the check anyway.
10990 */
10991 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
10992 return true;
10993
10994 /*
10995 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
10996 * used the same base address. In that case the mmio flip might
10997 * have completed, but the CS hasn't even executed the flip yet.
10998 *
10999 * A flip count check isn't enough as the CS might have updated
11000 * the base address just after start of vblank, but before we
11001 * managed to process the interrupt. This means we'd complete the
11002 * CS flip too soon.
11003 *
11004 * Combining both checks should get us a good enough result. It may
11005 * still happen that the CS flip has been executed, but has not
11006 * yet actually completed. But in case the base address is the same
11007 * anyway, we don't really care.
11008 */
11009 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
11010 crtc->unpin_work->gtt_offset &&
fd8f507c 11011 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_G4X(crtc->pipe)),
75f7f3ec
VS
11012 crtc->unpin_work->flip_count);
11013}
11014
6b95a207
KH
11015void intel_prepare_page_flip(struct drm_device *dev, int plane)
11016{
fbee40df 11017 struct drm_i915_private *dev_priv = dev->dev_private;
6b95a207
KH
11018 struct intel_crtc *intel_crtc =
11019 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
11020 unsigned long flags;
11021
f326038a
DV
11022
11023 /*
11024 * This is called both by irq handlers and the reset code (to complete
11025 * lost pageflips) so needs the full irqsave spinlocks.
11026 *
11027 * NB: An MMIO update of the plane base pointer will also
e7d841ca
CW
11028 * generate a page-flip completion irq, i.e. every modeset
11029 * is also accompanied by a spurious intel_prepare_page_flip().
11030 */
6b95a207 11031 spin_lock_irqsave(&dev->event_lock, flags);
75f7f3ec 11032 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
e7d841ca 11033 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
6b95a207
KH
11034 spin_unlock_irqrestore(&dev->event_lock, flags);
11035}
11036
6042639c 11037static inline void intel_mark_page_flip_active(struct intel_unpin_work *work)
e7d841ca
CW
11038{
11039 /* Ensure that the work item is consistent when activating it ... */
11040 smp_wmb();
6042639c 11041 atomic_set(&work->pending, INTEL_FLIP_PENDING);
e7d841ca
CW
11042 /* and that it is marked active as soon as the irq could fire. */
11043 smp_wmb();
11044}
11045
8c9f3aaf
JB
11046static int intel_gen2_queue_flip(struct drm_device *dev,
11047 struct drm_crtc *crtc,
11048 struct drm_framebuffer *fb,
ed8d1975 11049 struct drm_i915_gem_object *obj,
6258fbe2 11050 struct drm_i915_gem_request *req,
ed8d1975 11051 uint32_t flags)
8c9f3aaf 11052{
6258fbe2 11053 struct intel_engine_cs *ring = req->ring;
8c9f3aaf 11054 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf
JB
11055 u32 flip_mask;
11056 int ret;
11057
5fb9de1a 11058 ret = intel_ring_begin(req, 6);
8c9f3aaf 11059 if (ret)
4fa62c89 11060 return ret;
8c9f3aaf
JB
11061
11062 /* Can't queue multiple flips, so wait for the previous
11063 * one to finish before executing the next.
11064 */
11065 if (intel_crtc->plane)
11066 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11067 else
11068 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
11069 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11070 intel_ring_emit(ring, MI_NOOP);
11071 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11072 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11073 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 11074 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
6d90c952 11075 intel_ring_emit(ring, 0); /* aux display base address, unused */
e7d841ca 11076
6042639c 11077 intel_mark_page_flip_active(intel_crtc->unpin_work);
83d4092b 11078 return 0;
8c9f3aaf
JB
11079}
11080
11081static int intel_gen3_queue_flip(struct drm_device *dev,
11082 struct drm_crtc *crtc,
11083 struct drm_framebuffer *fb,
ed8d1975 11084 struct drm_i915_gem_object *obj,
6258fbe2 11085 struct drm_i915_gem_request *req,
ed8d1975 11086 uint32_t flags)
8c9f3aaf 11087{
6258fbe2 11088 struct intel_engine_cs *ring = req->ring;
8c9f3aaf 11089 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8c9f3aaf
JB
11090 u32 flip_mask;
11091 int ret;
11092
5fb9de1a 11093 ret = intel_ring_begin(req, 6);
8c9f3aaf 11094 if (ret)
4fa62c89 11095 return ret;
8c9f3aaf
JB
11096
11097 if (intel_crtc->plane)
11098 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
11099 else
11100 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
6d90c952
DV
11101 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
11102 intel_ring_emit(ring, MI_NOOP);
11103 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
11104 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11105 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 11106 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
6d90c952
DV
11107 intel_ring_emit(ring, MI_NOOP);
11108
6042639c 11109 intel_mark_page_flip_active(intel_crtc->unpin_work);
83d4092b 11110 return 0;
8c9f3aaf
JB
11111}
11112
11113static int intel_gen4_queue_flip(struct drm_device *dev,
11114 struct drm_crtc *crtc,
11115 struct drm_framebuffer *fb,
ed8d1975 11116 struct drm_i915_gem_object *obj,
6258fbe2 11117 struct drm_i915_gem_request *req,
ed8d1975 11118 uint32_t flags)
8c9f3aaf 11119{
6258fbe2 11120 struct intel_engine_cs *ring = req->ring;
8c9f3aaf
JB
11121 struct drm_i915_private *dev_priv = dev->dev_private;
11122 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11123 uint32_t pf, pipesrc;
11124 int ret;
11125
5fb9de1a 11126 ret = intel_ring_begin(req, 4);
8c9f3aaf 11127 if (ret)
4fa62c89 11128 return ret;
8c9f3aaf
JB
11129
11130 /* i965+ uses the linear or tiled offsets from the
11131 * Display Registers (which do not change across a page-flip)
11132 * so we need only reprogram the base address.
11133 */
6d90c952
DV
11134 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11135 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11136 intel_ring_emit(ring, fb->pitches[0]);
75f7f3ec 11137 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
c2c75131 11138 obj->tiling_mode);
8c9f3aaf
JB
11139
11140 /* XXX Enabling the panel-fitter across page-flip is so far
11141 * untested on non-native modes, so ignore it for now.
11142 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
11143 */
11144 pf = 0;
11145 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 11146 intel_ring_emit(ring, pf | pipesrc);
e7d841ca 11147
6042639c 11148 intel_mark_page_flip_active(intel_crtc->unpin_work);
83d4092b 11149 return 0;
8c9f3aaf
JB
11150}
11151
11152static int intel_gen6_queue_flip(struct drm_device *dev,
11153 struct drm_crtc *crtc,
11154 struct drm_framebuffer *fb,
ed8d1975 11155 struct drm_i915_gem_object *obj,
6258fbe2 11156 struct drm_i915_gem_request *req,
ed8d1975 11157 uint32_t flags)
8c9f3aaf 11158{
6258fbe2 11159 struct intel_engine_cs *ring = req->ring;
8c9f3aaf
JB
11160 struct drm_i915_private *dev_priv = dev->dev_private;
11161 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11162 uint32_t pf, pipesrc;
11163 int ret;
11164
5fb9de1a 11165 ret = intel_ring_begin(req, 4);
8c9f3aaf 11166 if (ret)
4fa62c89 11167 return ret;
8c9f3aaf 11168
6d90c952
DV
11169 intel_ring_emit(ring, MI_DISPLAY_FLIP |
11170 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
11171 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
75f7f3ec 11172 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
8c9f3aaf 11173
dc257cf1
DV
11174 /* Contrary to the suggestions in the documentation,
11175 * "Enable Panel Fitter" does not seem to be required when page
11176 * flipping with a non-native mode, and worse causes a normal
11177 * modeset to fail.
11178 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
11179 */
11180 pf = 0;
8c9f3aaf 11181 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
6d90c952 11182 intel_ring_emit(ring, pf | pipesrc);
e7d841ca 11183
6042639c 11184 intel_mark_page_flip_active(intel_crtc->unpin_work);
83d4092b 11185 return 0;
8c9f3aaf
JB
11186}
11187
7c9017e5
JB
11188static int intel_gen7_queue_flip(struct drm_device *dev,
11189 struct drm_crtc *crtc,
11190 struct drm_framebuffer *fb,
ed8d1975 11191 struct drm_i915_gem_object *obj,
6258fbe2 11192 struct drm_i915_gem_request *req,
ed8d1975 11193 uint32_t flags)
7c9017e5 11194{
6258fbe2 11195 struct intel_engine_cs *ring = req->ring;
7c9017e5 11196 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cb05d8de 11197 uint32_t plane_bit = 0;
ffe74d75
CW
11198 int len, ret;
11199
eba905b2 11200 switch (intel_crtc->plane) {
cb05d8de
DV
11201 case PLANE_A:
11202 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
11203 break;
11204 case PLANE_B:
11205 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
11206 break;
11207 case PLANE_C:
11208 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
11209 break;
11210 default:
11211 WARN_ONCE(1, "unknown plane in flip command\n");
4fa62c89 11212 return -ENODEV;
cb05d8de
DV
11213 }
11214
ffe74d75 11215 len = 4;
f476828a 11216 if (ring->id == RCS) {
ffe74d75 11217 len += 6;
f476828a
DL
11218 /*
11219 * On Gen 8, SRM is now taking an extra dword to accommodate
11220 * 48bits addresses, and we need a NOOP for the batch size to
11221 * stay even.
11222 */
11223 if (IS_GEN8(dev))
11224 len += 2;
11225 }
ffe74d75 11226
f66fab8e
VS
11227 /*
11228 * BSpec MI_DISPLAY_FLIP for IVB:
11229 * "The full packet must be contained within the same cache line."
11230 *
11231 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
11232 * cacheline, if we ever start emitting more commands before
11233 * the MI_DISPLAY_FLIP we may need to first emit everything else,
11234 * then do the cacheline alignment, and finally emit the
11235 * MI_DISPLAY_FLIP.
11236 */
bba09b12 11237 ret = intel_ring_cacheline_align(req);
f66fab8e 11238 if (ret)
4fa62c89 11239 return ret;
f66fab8e 11240
5fb9de1a 11241 ret = intel_ring_begin(req, len);
7c9017e5 11242 if (ret)
4fa62c89 11243 return ret;
7c9017e5 11244
ffe74d75
CW
11245 /* Unmask the flip-done completion message. Note that the bspec says that
11246 * we should do this for both the BCS and RCS, and that we must not unmask
11247 * more than one flip event at any time (or ensure that one flip message
11248 * can be sent by waiting for flip-done prior to queueing new flips).
11249 * Experimentation says that BCS works despite DERRMR masking all
11250 * flip-done completion events and that unmasking all planes at once
11251 * for the RCS also doesn't appear to drop events. Setting the DERRMR
11252 * to zero does lead to lockups within MI_DISPLAY_FLIP.
11253 */
11254 if (ring->id == RCS) {
11255 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
f92a9162 11256 intel_ring_emit_reg(ring, DERRMR);
ffe74d75
CW
11257 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
11258 DERRMR_PIPEB_PRI_FLIP_DONE |
11259 DERRMR_PIPEC_PRI_FLIP_DONE));
f476828a 11260 if (IS_GEN8(dev))
f1afe24f 11261 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8 |
f476828a
DL
11262 MI_SRM_LRM_GLOBAL_GTT);
11263 else
f1afe24f 11264 intel_ring_emit(ring, MI_STORE_REGISTER_MEM |
f476828a 11265 MI_SRM_LRM_GLOBAL_GTT);
f92a9162 11266 intel_ring_emit_reg(ring, DERRMR);
ffe74d75 11267 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
f476828a
DL
11268 if (IS_GEN8(dev)) {
11269 intel_ring_emit(ring, 0);
11270 intel_ring_emit(ring, MI_NOOP);
11271 }
ffe74d75
CW
11272 }
11273
cb05d8de 11274 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
01f2c773 11275 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
75f7f3ec 11276 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
7c9017e5 11277 intel_ring_emit(ring, (MI_NOOP));
e7d841ca 11278
6042639c 11279 intel_mark_page_flip_active(intel_crtc->unpin_work);
83d4092b 11280 return 0;
7c9017e5
JB
11281}
11282
84c33a64
SG
11283static bool use_mmio_flip(struct intel_engine_cs *ring,
11284 struct drm_i915_gem_object *obj)
11285{
11286 /*
11287 * This is not being used for older platforms, because
11288 * non-availability of flip done interrupt forces us to use
11289 * CS flips. Older platforms derive flip done using some clever
11290 * tricks involving the flip_pending status bits and vblank irqs.
11291 * So using MMIO flips there would disrupt this mechanism.
11292 */
11293
8e09bf83
CW
11294 if (ring == NULL)
11295 return true;
11296
84c33a64
SG
11297 if (INTEL_INFO(ring->dev)->gen < 5)
11298 return false;
11299
11300 if (i915.use_mmio_flip < 0)
11301 return false;
11302 else if (i915.use_mmio_flip > 0)
11303 return true;
14bf993e
OM
11304 else if (i915.enable_execlists)
11305 return true;
fd8e058a
AG
11306 else if (obj->base.dma_buf &&
11307 !reservation_object_test_signaled_rcu(obj->base.dma_buf->resv,
11308 false))
11309 return true;
84c33a64 11310 else
b4716185 11311 return ring != i915_gem_request_get_ring(obj->last_write_req);
84c33a64
SG
11312}
11313
6042639c 11314static void skl_do_mmio_flip(struct intel_crtc *intel_crtc,
86efe24a 11315 unsigned int rotation,
6042639c 11316 struct intel_unpin_work *work)
ff944564
DL
11317{
11318 struct drm_device *dev = intel_crtc->base.dev;
11319 struct drm_i915_private *dev_priv = dev->dev_private;
11320 struct drm_framebuffer *fb = intel_crtc->base.primary->fb;
ff944564 11321 const enum pipe pipe = intel_crtc->pipe;
86efe24a 11322 u32 ctl, stride, tile_height;
ff944564
DL
11323
11324 ctl = I915_READ(PLANE_CTL(pipe, 0));
11325 ctl &= ~PLANE_CTL_TILED_MASK;
2ebef630
TU
11326 switch (fb->modifier[0]) {
11327 case DRM_FORMAT_MOD_NONE:
11328 break;
11329 case I915_FORMAT_MOD_X_TILED:
ff944564 11330 ctl |= PLANE_CTL_TILED_X;
2ebef630
TU
11331 break;
11332 case I915_FORMAT_MOD_Y_TILED:
11333 ctl |= PLANE_CTL_TILED_Y;
11334 break;
11335 case I915_FORMAT_MOD_Yf_TILED:
11336 ctl |= PLANE_CTL_TILED_YF;
11337 break;
11338 default:
11339 MISSING_CASE(fb->modifier[0]);
11340 }
ff944564
DL
11341
11342 /*
11343 * The stride is either expressed as a multiple of 64 bytes chunks for
11344 * linear buffers or in number of tiles for tiled buffers.
11345 */
86efe24a
TU
11346 if (intel_rotation_90_or_270(rotation)) {
11347 /* stride = Surface height in tiles */
11348 tile_height = intel_tile_height(dev, fb->pixel_format,
11349 fb->modifier[0], 0);
11350 stride = DIV_ROUND_UP(fb->height, tile_height);
11351 } else {
11352 stride = fb->pitches[0] /
11353 intel_fb_stride_alignment(dev, fb->modifier[0],
11354 fb->pixel_format);
11355 }
ff944564
DL
11356
11357 /*
11358 * Both PLANE_CTL and PLANE_STRIDE are not updated on vblank but on
11359 * PLANE_SURF updates, the update is then guaranteed to be atomic.
11360 */
11361 I915_WRITE(PLANE_CTL(pipe, 0), ctl);
11362 I915_WRITE(PLANE_STRIDE(pipe, 0), stride);
11363
6042639c 11364 I915_WRITE(PLANE_SURF(pipe, 0), work->gtt_offset);
ff944564
DL
11365 POSTING_READ(PLANE_SURF(pipe, 0));
11366}
11367
6042639c
CW
11368static void ilk_do_mmio_flip(struct intel_crtc *intel_crtc,
11369 struct intel_unpin_work *work)
84c33a64
SG
11370{
11371 struct drm_device *dev = intel_crtc->base.dev;
11372 struct drm_i915_private *dev_priv = dev->dev_private;
11373 struct intel_framebuffer *intel_fb =
11374 to_intel_framebuffer(intel_crtc->base.primary->fb);
11375 struct drm_i915_gem_object *obj = intel_fb->obj;
f0f59a00 11376 i915_reg_t reg = DSPCNTR(intel_crtc->plane);
84c33a64 11377 u32 dspcntr;
84c33a64 11378
84c33a64
SG
11379 dspcntr = I915_READ(reg);
11380
c5d97472
DL
11381 if (obj->tiling_mode != I915_TILING_NONE)
11382 dspcntr |= DISPPLANE_TILED;
11383 else
11384 dspcntr &= ~DISPPLANE_TILED;
11385
84c33a64
SG
11386 I915_WRITE(reg, dspcntr);
11387
6042639c 11388 I915_WRITE(DSPSURF(intel_crtc->plane), work->gtt_offset);
84c33a64 11389 POSTING_READ(DSPSURF(intel_crtc->plane));
ff944564
DL
11390}
11391
11392/*
11393 * XXX: This is the temporary way to update the plane registers until we get
11394 * around to using the usual plane update functions for MMIO flips
11395 */
6042639c 11396static void intel_do_mmio_flip(struct intel_mmio_flip *mmio_flip)
ff944564 11397{
6042639c
CW
11398 struct intel_crtc *crtc = mmio_flip->crtc;
11399 struct intel_unpin_work *work;
11400
11401 spin_lock_irq(&crtc->base.dev->event_lock);
11402 work = crtc->unpin_work;
11403 spin_unlock_irq(&crtc->base.dev->event_lock);
11404 if (work == NULL)
11405 return;
ff944564 11406
6042639c 11407 intel_mark_page_flip_active(work);
ff944564 11408
6042639c 11409 intel_pipe_update_start(crtc);
ff944564 11410
6042639c 11411 if (INTEL_INFO(mmio_flip->i915)->gen >= 9)
86efe24a 11412 skl_do_mmio_flip(crtc, mmio_flip->rotation, work);
ff944564
DL
11413 else
11414 /* use_mmio_flip() retricts MMIO flips to ilk+ */
6042639c 11415 ilk_do_mmio_flip(crtc, work);
ff944564 11416
6042639c 11417 intel_pipe_update_end(crtc);
84c33a64
SG
11418}
11419
9362c7c5 11420static void intel_mmio_flip_work_func(struct work_struct *work)
84c33a64 11421{
b2cfe0ab
CW
11422 struct intel_mmio_flip *mmio_flip =
11423 container_of(work, struct intel_mmio_flip, work);
fd8e058a
AG
11424 struct intel_framebuffer *intel_fb =
11425 to_intel_framebuffer(mmio_flip->crtc->base.primary->fb);
11426 struct drm_i915_gem_object *obj = intel_fb->obj;
84c33a64 11427
6042639c 11428 if (mmio_flip->req) {
eed29a5b 11429 WARN_ON(__i915_wait_request(mmio_flip->req,
b2cfe0ab 11430 mmio_flip->crtc->reset_counter,
bcafc4e3
CW
11431 false, NULL,
11432 &mmio_flip->i915->rps.mmioflips));
6042639c
CW
11433 i915_gem_request_unreference__unlocked(mmio_flip->req);
11434 }
84c33a64 11435
fd8e058a
AG
11436 /* For framebuffer backed by dmabuf, wait for fence */
11437 if (obj->base.dma_buf)
11438 WARN_ON(reservation_object_wait_timeout_rcu(obj->base.dma_buf->resv,
11439 false, false,
11440 MAX_SCHEDULE_TIMEOUT) < 0);
11441
6042639c 11442 intel_do_mmio_flip(mmio_flip);
b2cfe0ab 11443 kfree(mmio_flip);
84c33a64
SG
11444}
11445
11446static int intel_queue_mmio_flip(struct drm_device *dev,
11447 struct drm_crtc *crtc,
86efe24a 11448 struct drm_i915_gem_object *obj)
84c33a64 11449{
b2cfe0ab
CW
11450 struct intel_mmio_flip *mmio_flip;
11451
11452 mmio_flip = kmalloc(sizeof(*mmio_flip), GFP_KERNEL);
11453 if (mmio_flip == NULL)
11454 return -ENOMEM;
84c33a64 11455
bcafc4e3 11456 mmio_flip->i915 = to_i915(dev);
eed29a5b 11457 mmio_flip->req = i915_gem_request_reference(obj->last_write_req);
b2cfe0ab 11458 mmio_flip->crtc = to_intel_crtc(crtc);
86efe24a 11459 mmio_flip->rotation = crtc->primary->state->rotation;
536f5b5e 11460
b2cfe0ab
CW
11461 INIT_WORK(&mmio_flip->work, intel_mmio_flip_work_func);
11462 schedule_work(&mmio_flip->work);
84c33a64 11463
84c33a64
SG
11464 return 0;
11465}
11466
8c9f3aaf
JB
11467static int intel_default_queue_flip(struct drm_device *dev,
11468 struct drm_crtc *crtc,
11469 struct drm_framebuffer *fb,
ed8d1975 11470 struct drm_i915_gem_object *obj,
6258fbe2 11471 struct drm_i915_gem_request *req,
ed8d1975 11472 uint32_t flags)
8c9f3aaf
JB
11473{
11474 return -ENODEV;
11475}
11476
d6bbafa1
CW
11477static bool __intel_pageflip_stall_check(struct drm_device *dev,
11478 struct drm_crtc *crtc)
11479{
11480 struct drm_i915_private *dev_priv = dev->dev_private;
11481 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11482 struct intel_unpin_work *work = intel_crtc->unpin_work;
11483 u32 addr;
11484
11485 if (atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE)
11486 return true;
11487
908565c2
CW
11488 if (atomic_read(&work->pending) < INTEL_FLIP_PENDING)
11489 return false;
11490
d6bbafa1
CW
11491 if (!work->enable_stall_check)
11492 return false;
11493
11494 if (work->flip_ready_vblank == 0) {
3a8a946e
DV
11495 if (work->flip_queued_req &&
11496 !i915_gem_request_completed(work->flip_queued_req, true))
d6bbafa1
CW
11497 return false;
11498
1e3feefd 11499 work->flip_ready_vblank = drm_crtc_vblank_count(crtc);
d6bbafa1
CW
11500 }
11501
1e3feefd 11502 if (drm_crtc_vblank_count(crtc) - work->flip_ready_vblank < 3)
d6bbafa1
CW
11503 return false;
11504
11505 /* Potential stall - if we see that the flip has happened,
11506 * assume a missed interrupt. */
11507 if (INTEL_INFO(dev)->gen >= 4)
11508 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(intel_crtc->plane)));
11509 else
11510 addr = I915_READ(DSPADDR(intel_crtc->plane));
11511
11512 /* There is a potential issue here with a false positive after a flip
11513 * to the same address. We could address this by checking for a
11514 * non-incrementing frame counter.
11515 */
11516 return addr == work->gtt_offset;
11517}
11518
11519void intel_check_page_flip(struct drm_device *dev, int pipe)
11520{
11521 struct drm_i915_private *dev_priv = dev->dev_private;
11522 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
11523 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6ad790c0 11524 struct intel_unpin_work *work;
f326038a 11525
6c51d46f 11526 WARN_ON(!in_interrupt());
d6bbafa1
CW
11527
11528 if (crtc == NULL)
11529 return;
11530
f326038a 11531 spin_lock(&dev->event_lock);
6ad790c0
CW
11532 work = intel_crtc->unpin_work;
11533 if (work != NULL && __intel_pageflip_stall_check(dev, crtc)) {
d6bbafa1 11534 WARN_ONCE(1, "Kicking stuck page flip: queued at %d, now %d\n",
6ad790c0 11535 work->flip_queued_vblank, drm_vblank_count(dev, pipe));
d6bbafa1 11536 page_flip_completed(intel_crtc);
6ad790c0 11537 work = NULL;
d6bbafa1 11538 }
6ad790c0
CW
11539 if (work != NULL &&
11540 drm_vblank_count(dev, pipe) - work->flip_queued_vblank > 1)
11541 intel_queue_rps_boost_for_request(dev, work->flip_queued_req);
f326038a 11542 spin_unlock(&dev->event_lock);
d6bbafa1
CW
11543}
11544
6b95a207
KH
11545static int intel_crtc_page_flip(struct drm_crtc *crtc,
11546 struct drm_framebuffer *fb,
ed8d1975
KP
11547 struct drm_pending_vblank_event *event,
11548 uint32_t page_flip_flags)
6b95a207
KH
11549{
11550 struct drm_device *dev = crtc->dev;
11551 struct drm_i915_private *dev_priv = dev->dev_private;
f4510a27 11552 struct drm_framebuffer *old_fb = crtc->primary->fb;
2ff8fde1 11553 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
6b95a207 11554 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
455a6808 11555 struct drm_plane *primary = crtc->primary;
a071fa00 11556 enum pipe pipe = intel_crtc->pipe;
6b95a207 11557 struct intel_unpin_work *work;
a4872ba6 11558 struct intel_engine_cs *ring;
cf5d8a46 11559 bool mmio_flip;
91af127f 11560 struct drm_i915_gem_request *request = NULL;
52e68630 11561 int ret;
6b95a207 11562
2ff8fde1
MR
11563 /*
11564 * drm_mode_page_flip_ioctl() should already catch this, but double
11565 * check to be safe. In the future we may enable pageflipping from
11566 * a disabled primary plane.
11567 */
11568 if (WARN_ON(intel_fb_obj(old_fb) == NULL))
11569 return -EBUSY;
11570
e6a595d2 11571 /* Can't change pixel format via MI display flips. */
f4510a27 11572 if (fb->pixel_format != crtc->primary->fb->pixel_format)
e6a595d2
VS
11573 return -EINVAL;
11574
11575 /*
11576 * TILEOFF/LINOFF registers can't be changed via MI display flips.
11577 * Note that pitch changes could also affect these register.
11578 */
11579 if (INTEL_INFO(dev)->gen > 3 &&
f4510a27
MR
11580 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
11581 fb->pitches[0] != crtc->primary->fb->pitches[0]))
e6a595d2
VS
11582 return -EINVAL;
11583
f900db47
CW
11584 if (i915_terminally_wedged(&dev_priv->gpu_error))
11585 goto out_hang;
11586
b14c5679 11587 work = kzalloc(sizeof(*work), GFP_KERNEL);
6b95a207
KH
11588 if (work == NULL)
11589 return -ENOMEM;
11590
6b95a207 11591 work->event = event;
b4a98e57 11592 work->crtc = crtc;
ab8d6675 11593 work->old_fb = old_fb;
6b95a207
KH
11594 INIT_WORK(&work->work, intel_unpin_work_fn);
11595
87b6b101 11596 ret = drm_crtc_vblank_get(crtc);
7317c75e
JB
11597 if (ret)
11598 goto free_work;
11599
6b95a207 11600 /* We borrow the event spin lock for protecting unpin_work */
5e2d7afc 11601 spin_lock_irq(&dev->event_lock);
6b95a207 11602 if (intel_crtc->unpin_work) {
d6bbafa1
CW
11603 /* Before declaring the flip queue wedged, check if
11604 * the hardware completed the operation behind our backs.
11605 */
11606 if (__intel_pageflip_stall_check(dev, crtc)) {
11607 DRM_DEBUG_DRIVER("flip queue: previous flip completed, continuing\n");
11608 page_flip_completed(intel_crtc);
11609 } else {
11610 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
5e2d7afc 11611 spin_unlock_irq(&dev->event_lock);
468f0b44 11612
d6bbafa1
CW
11613 drm_crtc_vblank_put(crtc);
11614 kfree(work);
11615 return -EBUSY;
11616 }
6b95a207
KH
11617 }
11618 intel_crtc->unpin_work = work;
5e2d7afc 11619 spin_unlock_irq(&dev->event_lock);
6b95a207 11620
b4a98e57
CW
11621 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
11622 flush_workqueue(dev_priv->wq);
11623
75dfca80 11624 /* Reference the objects for the scheduled work. */
ab8d6675 11625 drm_framebuffer_reference(work->old_fb);
05394f39 11626 drm_gem_object_reference(&obj->base);
6b95a207 11627
f4510a27 11628 crtc->primary->fb = fb;
afd65eb4 11629 update_state_fb(crtc->primary);
1ed1f968 11630
e1f99ce6 11631 work->pending_flip_obj = obj;
e1f99ce6 11632
89ed88ba
CW
11633 ret = i915_mutex_lock_interruptible(dev);
11634 if (ret)
11635 goto cleanup;
11636
b4a98e57 11637 atomic_inc(&intel_crtc->unpin_work_count);
10d83730 11638 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
e1f99ce6 11639
75f7f3ec 11640 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
fd8f507c 11641 work->flip_count = I915_READ(PIPE_FLIPCOUNT_G4X(pipe)) + 1;
75f7f3ec 11642
666a4537 11643 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
4fa62c89 11644 ring = &dev_priv->ring[BCS];
ab8d6675 11645 if (obj->tiling_mode != intel_fb_obj(work->old_fb)->tiling_mode)
8e09bf83
CW
11646 /* vlv: DISPLAY_FLIP fails to change tiling */
11647 ring = NULL;
48bf5b2d 11648 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
2a92d5bc 11649 ring = &dev_priv->ring[BCS];
4fa62c89 11650 } else if (INTEL_INFO(dev)->gen >= 7) {
b4716185 11651 ring = i915_gem_request_get_ring(obj->last_write_req);
4fa62c89
VS
11652 if (ring == NULL || ring->id != RCS)
11653 ring = &dev_priv->ring[BCS];
11654 } else {
11655 ring = &dev_priv->ring[RCS];
11656 }
11657
cf5d8a46
CW
11658 mmio_flip = use_mmio_flip(ring, obj);
11659
11660 /* When using CS flips, we want to emit semaphores between rings.
11661 * However, when using mmio flips we will create a task to do the
11662 * synchronisation, so all we want here is to pin the framebuffer
11663 * into the display plane and skip any waits.
11664 */
7580d774
ML
11665 if (!mmio_flip) {
11666 ret = i915_gem_object_sync(obj, ring, &request);
11667 if (ret)
11668 goto cleanup_pending;
11669 }
11670
82bc3b2d 11671 ret = intel_pin_and_fence_fb_obj(crtc->primary, fb,
7580d774 11672 crtc->primary->state);
8c9f3aaf
JB
11673 if (ret)
11674 goto cleanup_pending;
6b95a207 11675
dedf278c
TU
11676 work->gtt_offset = intel_plane_obj_offset(to_intel_plane(primary),
11677 obj, 0);
11678 work->gtt_offset += intel_crtc->dspaddr_offset;
4fa62c89 11679
cf5d8a46 11680 if (mmio_flip) {
86efe24a 11681 ret = intel_queue_mmio_flip(dev, crtc, obj);
d6bbafa1
CW
11682 if (ret)
11683 goto cleanup_unpin;
11684
f06cc1b9
JH
11685 i915_gem_request_assign(&work->flip_queued_req,
11686 obj->last_write_req);
d6bbafa1 11687 } else {
6258fbe2
JH
11688 if (!request) {
11689 ret = i915_gem_request_alloc(ring, ring->default_context, &request);
11690 if (ret)
11691 goto cleanup_unpin;
11692 }
11693
11694 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, request,
d6bbafa1
CW
11695 page_flip_flags);
11696 if (ret)
11697 goto cleanup_unpin;
11698
6258fbe2 11699 i915_gem_request_assign(&work->flip_queued_req, request);
d6bbafa1
CW
11700 }
11701
91af127f 11702 if (request)
75289874 11703 i915_add_request_no_flush(request);
91af127f 11704
1e3feefd 11705 work->flip_queued_vblank = drm_crtc_vblank_count(crtc);
d6bbafa1 11706 work->enable_stall_check = true;
4fa62c89 11707
ab8d6675 11708 i915_gem_track_fb(intel_fb_obj(work->old_fb), obj,
a9ff8714 11709 to_intel_plane(primary)->frontbuffer_bit);
c80ac854 11710 mutex_unlock(&dev->struct_mutex);
a071fa00 11711
d029bcad 11712 intel_fbc_deactivate(intel_crtc);
a9ff8714
VS
11713 intel_frontbuffer_flip_prepare(dev,
11714 to_intel_plane(primary)->frontbuffer_bit);
6b95a207 11715
e5510fac
JB
11716 trace_i915_flip_request(intel_crtc->plane, obj);
11717
6b95a207 11718 return 0;
96b099fd 11719
4fa62c89 11720cleanup_unpin:
82bc3b2d 11721 intel_unpin_fb_obj(fb, crtc->primary->state);
8c9f3aaf 11722cleanup_pending:
91af127f
JH
11723 if (request)
11724 i915_gem_request_cancel(request);
b4a98e57 11725 atomic_dec(&intel_crtc->unpin_work_count);
89ed88ba
CW
11726 mutex_unlock(&dev->struct_mutex);
11727cleanup:
f4510a27 11728 crtc->primary->fb = old_fb;
afd65eb4 11729 update_state_fb(crtc->primary);
89ed88ba
CW
11730
11731 drm_gem_object_unreference_unlocked(&obj->base);
ab8d6675 11732 drm_framebuffer_unreference(work->old_fb);
96b099fd 11733
5e2d7afc 11734 spin_lock_irq(&dev->event_lock);
96b099fd 11735 intel_crtc->unpin_work = NULL;
5e2d7afc 11736 spin_unlock_irq(&dev->event_lock);
96b099fd 11737
87b6b101 11738 drm_crtc_vblank_put(crtc);
7317c75e 11739free_work:
96b099fd
CW
11740 kfree(work);
11741
f900db47 11742 if (ret == -EIO) {
02e0efb5
ML
11743 struct drm_atomic_state *state;
11744 struct drm_plane_state *plane_state;
11745
f900db47 11746out_hang:
02e0efb5
ML
11747 state = drm_atomic_state_alloc(dev);
11748 if (!state)
11749 return -ENOMEM;
11750 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
11751
11752retry:
11753 plane_state = drm_atomic_get_plane_state(state, primary);
11754 ret = PTR_ERR_OR_ZERO(plane_state);
11755 if (!ret) {
11756 drm_atomic_set_fb_for_plane(plane_state, fb);
11757
11758 ret = drm_atomic_set_crtc_for_plane(plane_state, crtc);
11759 if (!ret)
11760 ret = drm_atomic_commit(state);
11761 }
11762
11763 if (ret == -EDEADLK) {
11764 drm_modeset_backoff(state->acquire_ctx);
11765 drm_atomic_state_clear(state);
11766 goto retry;
11767 }
11768
11769 if (ret)
11770 drm_atomic_state_free(state);
11771
f0d3dad3 11772 if (ret == 0 && event) {
5e2d7afc 11773 spin_lock_irq(&dev->event_lock);
a071fa00 11774 drm_send_vblank_event(dev, pipe, event);
5e2d7afc 11775 spin_unlock_irq(&dev->event_lock);
f0d3dad3 11776 }
f900db47 11777 }
96b099fd 11778 return ret;
6b95a207
KH
11779}
11780
da20eabd
ML
11781
11782/**
11783 * intel_wm_need_update - Check whether watermarks need updating
11784 * @plane: drm plane
11785 * @state: new plane state
11786 *
11787 * Check current plane state versus the new one to determine whether
11788 * watermarks need to be recalculated.
11789 *
11790 * Returns true or false.
11791 */
11792static bool intel_wm_need_update(struct drm_plane *plane,
11793 struct drm_plane_state *state)
11794{
d21fbe87
MR
11795 struct intel_plane_state *new = to_intel_plane_state(state);
11796 struct intel_plane_state *cur = to_intel_plane_state(plane->state);
11797
11798 /* Update watermarks on tiling or size changes. */
92826fcd
ML
11799 if (new->visible != cur->visible)
11800 return true;
11801
11802 if (!cur->base.fb || !new->base.fb)
11803 return false;
11804
11805 if (cur->base.fb->modifier[0] != new->base.fb->modifier[0] ||
11806 cur->base.rotation != new->base.rotation ||
d21fbe87
MR
11807 drm_rect_width(&new->src) != drm_rect_width(&cur->src) ||
11808 drm_rect_height(&new->src) != drm_rect_height(&cur->src) ||
11809 drm_rect_width(&new->dst) != drm_rect_width(&cur->dst) ||
11810 drm_rect_height(&new->dst) != drm_rect_height(&cur->dst))
2791a16c 11811 return true;
7809e5ae 11812
2791a16c 11813 return false;
7809e5ae
MR
11814}
11815
d21fbe87
MR
11816static bool needs_scaling(struct intel_plane_state *state)
11817{
11818 int src_w = drm_rect_width(&state->src) >> 16;
11819 int src_h = drm_rect_height(&state->src) >> 16;
11820 int dst_w = drm_rect_width(&state->dst);
11821 int dst_h = drm_rect_height(&state->dst);
11822
11823 return (src_w != dst_w || src_h != dst_h);
11824}
11825
da20eabd
ML
11826int intel_plane_atomic_calc_changes(struct drm_crtc_state *crtc_state,
11827 struct drm_plane_state *plane_state)
11828{
ab1d3a0e 11829 struct intel_crtc_state *pipe_config = to_intel_crtc_state(crtc_state);
da20eabd
ML
11830 struct drm_crtc *crtc = crtc_state->crtc;
11831 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
11832 struct drm_plane *plane = plane_state->plane;
11833 struct drm_device *dev = crtc->dev;
11834 struct drm_i915_private *dev_priv = dev->dev_private;
11835 struct intel_plane_state *old_plane_state =
11836 to_intel_plane_state(plane->state);
11837 int idx = intel_crtc->base.base.id, ret;
11838 int i = drm_plane_index(plane);
11839 bool mode_changed = needs_modeset(crtc_state);
11840 bool was_crtc_enabled = crtc->state->active;
11841 bool is_crtc_enabled = crtc_state->active;
da20eabd
ML
11842 bool turn_off, turn_on, visible, was_visible;
11843 struct drm_framebuffer *fb = plane_state->fb;
11844
11845 if (crtc_state && INTEL_INFO(dev)->gen >= 9 &&
11846 plane->type != DRM_PLANE_TYPE_CURSOR) {
11847 ret = skl_update_scaler_plane(
11848 to_intel_crtc_state(crtc_state),
11849 to_intel_plane_state(plane_state));
11850 if (ret)
11851 return ret;
11852 }
11853
da20eabd
ML
11854 was_visible = old_plane_state->visible;
11855 visible = to_intel_plane_state(plane_state)->visible;
11856
11857 if (!was_crtc_enabled && WARN_ON(was_visible))
11858 was_visible = false;
11859
11860 if (!is_crtc_enabled && WARN_ON(visible))
11861 visible = false;
11862
11863 if (!was_visible && !visible)
11864 return 0;
11865
11866 turn_off = was_visible && (!visible || mode_changed);
11867 turn_on = visible && (!was_visible || mode_changed);
11868
11869 DRM_DEBUG_ATOMIC("[CRTC:%i] has [PLANE:%i] with fb %i\n", idx,
11870 plane->base.id, fb ? fb->base.id : -1);
11871
11872 DRM_DEBUG_ATOMIC("[PLANE:%i] visible %i -> %i, off %i, on %i, ms %i\n",
11873 plane->base.id, was_visible, visible,
11874 turn_off, turn_on, mode_changed);
11875
92826fcd
ML
11876 if (turn_on || turn_off) {
11877 pipe_config->wm_changed = true;
11878
852eb00d
VS
11879 /* must disable cxsr around plane enable/disable */
11880 if (plane->type != DRM_PLANE_TYPE_CURSOR) {
11881 if (is_crtc_enabled)
11882 intel_crtc->atomic.wait_vblank = true;
ab1d3a0e 11883 pipe_config->disable_cxsr = true;
852eb00d
VS
11884 }
11885 } else if (intel_wm_need_update(plane, plane_state)) {
92826fcd 11886 pipe_config->wm_changed = true;
852eb00d 11887 }
da20eabd 11888
8be6ca85 11889 if (visible || was_visible)
a9ff8714
VS
11890 intel_crtc->atomic.fb_bits |=
11891 to_intel_plane(plane)->frontbuffer_bit;
11892
da20eabd
ML
11893 switch (plane->type) {
11894 case DRM_PLANE_TYPE_PRIMARY:
da20eabd
ML
11895 intel_crtc->atomic.pre_disable_primary = turn_off;
11896 intel_crtc->atomic.post_enable_primary = turn_on;
11897
066cf55b
RV
11898 if (turn_off) {
11899 /*
11900 * FIXME: Actually if we will still have any other
11901 * plane enabled on the pipe we could let IPS enabled
11902 * still, but for now lets consider that when we make
11903 * primary invisible by setting DSPCNTR to 0 on
11904 * update_primary_plane function IPS needs to be
11905 * disable.
11906 */
11907 intel_crtc->atomic.disable_ips = true;
11908
da20eabd 11909 intel_crtc->atomic.disable_fbc = true;
066cf55b 11910 }
da20eabd
ML
11911
11912 /*
11913 * FBC does not work on some platforms for rotated
11914 * planes, so disable it when rotation is not 0 and
11915 * update it when rotation is set back to 0.
11916 *
11917 * FIXME: This is redundant with the fbc update done in
11918 * the primary plane enable function except that that
11919 * one is done too late. We eventually need to unify
11920 * this.
11921 */
11922
11923 if (visible &&
11924 INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) &&
11925 dev_priv->fbc.crtc == intel_crtc &&
11926 plane_state->rotation != BIT(DRM_ROTATE_0))
11927 intel_crtc->atomic.disable_fbc = true;
11928
11929 /*
11930 * BDW signals flip done immediately if the plane
11931 * is disabled, even if the plane enable is already
11932 * armed to occur at the next vblank :(
11933 */
11934 if (turn_on && IS_BROADWELL(dev))
11935 intel_crtc->atomic.wait_vblank = true;
11936
11937 intel_crtc->atomic.update_fbc |= visible || mode_changed;
11938 break;
11939 case DRM_PLANE_TYPE_CURSOR:
da20eabd
ML
11940 break;
11941 case DRM_PLANE_TYPE_OVERLAY:
d21fbe87
MR
11942 /*
11943 * WaCxSRDisabledForSpriteScaling:ivb
11944 *
11945 * cstate->update_wm was already set above, so this flag will
11946 * take effect when we commit and program watermarks.
11947 */
11948 if (IS_IVYBRIDGE(dev) &&
11949 needs_scaling(to_intel_plane_state(plane_state)) &&
11950 !needs_scaling(old_plane_state)) {
11951 to_intel_crtc_state(crtc_state)->disable_lp_wm = true;
11952 } else if (turn_off && !mode_changed) {
da20eabd
ML
11953 intel_crtc->atomic.wait_vblank = true;
11954 intel_crtc->atomic.update_sprite_watermarks |=
11955 1 << i;
11956 }
d21fbe87
MR
11957
11958 break;
da20eabd
ML
11959 }
11960 return 0;
11961}
11962
6d3a1ce7
ML
11963static bool encoders_cloneable(const struct intel_encoder *a,
11964 const struct intel_encoder *b)
11965{
11966 /* masks could be asymmetric, so check both ways */
11967 return a == b || (a->cloneable & (1 << b->type) &&
11968 b->cloneable & (1 << a->type));
11969}
11970
11971static bool check_single_encoder_cloning(struct drm_atomic_state *state,
11972 struct intel_crtc *crtc,
11973 struct intel_encoder *encoder)
11974{
11975 struct intel_encoder *source_encoder;
11976 struct drm_connector *connector;
11977 struct drm_connector_state *connector_state;
11978 int i;
11979
11980 for_each_connector_in_state(state, connector, connector_state, i) {
11981 if (connector_state->crtc != &crtc->base)
11982 continue;
11983
11984 source_encoder =
11985 to_intel_encoder(connector_state->best_encoder);
11986 if (!encoders_cloneable(encoder, source_encoder))
11987 return false;
11988 }
11989
11990 return true;
11991}
11992
11993static bool check_encoder_cloning(struct drm_atomic_state *state,
11994 struct intel_crtc *crtc)
11995{
11996 struct intel_encoder *encoder;
11997 struct drm_connector *connector;
11998 struct drm_connector_state *connector_state;
11999 int i;
12000
12001 for_each_connector_in_state(state, connector, connector_state, i) {
12002 if (connector_state->crtc != &crtc->base)
12003 continue;
12004
12005 encoder = to_intel_encoder(connector_state->best_encoder);
12006 if (!check_single_encoder_cloning(state, crtc, encoder))
12007 return false;
12008 }
12009
12010 return true;
12011}
12012
12013static int intel_crtc_atomic_check(struct drm_crtc *crtc,
12014 struct drm_crtc_state *crtc_state)
12015{
cf5a15be 12016 struct drm_device *dev = crtc->dev;
ad421372 12017 struct drm_i915_private *dev_priv = dev->dev_private;
6d3a1ce7 12018 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
cf5a15be
ML
12019 struct intel_crtc_state *pipe_config =
12020 to_intel_crtc_state(crtc_state);
6d3a1ce7 12021 struct drm_atomic_state *state = crtc_state->state;
4d20cd86 12022 int ret;
6d3a1ce7
ML
12023 bool mode_changed = needs_modeset(crtc_state);
12024
12025 if (mode_changed && !check_encoder_cloning(state, intel_crtc)) {
12026 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
12027 return -EINVAL;
12028 }
12029
852eb00d 12030 if (mode_changed && !crtc_state->active)
92826fcd 12031 pipe_config->wm_changed = true;
eddfcbcd 12032
ad421372
ML
12033 if (mode_changed && crtc_state->enable &&
12034 dev_priv->display.crtc_compute_clock &&
12035 !WARN_ON(pipe_config->shared_dpll != DPLL_ID_PRIVATE)) {
12036 ret = dev_priv->display.crtc_compute_clock(intel_crtc,
12037 pipe_config);
12038 if (ret)
12039 return ret;
12040 }
12041
e435d6e5 12042 ret = 0;
86c8bbbe
MR
12043 if (dev_priv->display.compute_pipe_wm) {
12044 ret = dev_priv->display.compute_pipe_wm(intel_crtc, state);
12045 if (ret)
12046 return ret;
12047 }
12048
e435d6e5
ML
12049 if (INTEL_INFO(dev)->gen >= 9) {
12050 if (mode_changed)
12051 ret = skl_update_scaler_crtc(pipe_config);
12052
12053 if (!ret)
12054 ret = intel_atomic_setup_scalers(dev, intel_crtc,
12055 pipe_config);
12056 }
12057
12058 return ret;
6d3a1ce7
ML
12059}
12060
65b38e0d 12061static const struct drm_crtc_helper_funcs intel_helper_funcs = {
f6e5b160
CW
12062 .mode_set_base_atomic = intel_pipe_set_base_atomic,
12063 .load_lut = intel_crtc_load_lut,
ea2c67bb
MR
12064 .atomic_begin = intel_begin_crtc_commit,
12065 .atomic_flush = intel_finish_crtc_commit,
6d3a1ce7 12066 .atomic_check = intel_crtc_atomic_check,
f6e5b160
CW
12067};
12068
d29b2f9d
ACO
12069static void intel_modeset_update_connector_atomic_state(struct drm_device *dev)
12070{
12071 struct intel_connector *connector;
12072
12073 for_each_intel_connector(dev, connector) {
12074 if (connector->base.encoder) {
12075 connector->base.state->best_encoder =
12076 connector->base.encoder;
12077 connector->base.state->crtc =
12078 connector->base.encoder->crtc;
12079 } else {
12080 connector->base.state->best_encoder = NULL;
12081 connector->base.state->crtc = NULL;
12082 }
12083 }
12084}
12085
050f7aeb 12086static void
eba905b2 12087connected_sink_compute_bpp(struct intel_connector *connector,
5cec258b 12088 struct intel_crtc_state *pipe_config)
050f7aeb
DV
12089{
12090 int bpp = pipe_config->pipe_bpp;
12091
12092 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
12093 connector->base.base.id,
c23cc417 12094 connector->base.name);
050f7aeb
DV
12095
12096 /* Don't use an invalid EDID bpc value */
12097 if (connector->base.display_info.bpc &&
12098 connector->base.display_info.bpc * 3 < bpp) {
12099 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
12100 bpp, connector->base.display_info.bpc*3);
12101 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
12102 }
12103
12104 /* Clamp bpp to 8 on screens without EDID 1.4 */
12105 if (connector->base.display_info.bpc == 0 && bpp > 24) {
12106 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
12107 bpp);
12108 pipe_config->pipe_bpp = 24;
12109 }
12110}
12111
4e53c2e0 12112static int
050f7aeb 12113compute_baseline_pipe_bpp(struct intel_crtc *crtc,
5cec258b 12114 struct intel_crtc_state *pipe_config)
4e53c2e0 12115{
050f7aeb 12116 struct drm_device *dev = crtc->base.dev;
1486017f 12117 struct drm_atomic_state *state;
da3ced29
ACO
12118 struct drm_connector *connector;
12119 struct drm_connector_state *connector_state;
1486017f 12120 int bpp, i;
4e53c2e0 12121
666a4537 12122 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)))
4e53c2e0 12123 bpp = 10*3;
d328c9d7
DV
12124 else if (INTEL_INFO(dev)->gen >= 5)
12125 bpp = 12*3;
12126 else
12127 bpp = 8*3;
12128
4e53c2e0 12129
4e53c2e0
DV
12130 pipe_config->pipe_bpp = bpp;
12131
1486017f
ACO
12132 state = pipe_config->base.state;
12133
4e53c2e0 12134 /* Clamp display bpp to EDID value */
da3ced29
ACO
12135 for_each_connector_in_state(state, connector, connector_state, i) {
12136 if (connector_state->crtc != &crtc->base)
4e53c2e0
DV
12137 continue;
12138
da3ced29
ACO
12139 connected_sink_compute_bpp(to_intel_connector(connector),
12140 pipe_config);
4e53c2e0
DV
12141 }
12142
12143 return bpp;
12144}
12145
644db711
DV
12146static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
12147{
12148 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
12149 "type: 0x%x flags: 0x%x\n",
1342830c 12150 mode->crtc_clock,
644db711
DV
12151 mode->crtc_hdisplay, mode->crtc_hsync_start,
12152 mode->crtc_hsync_end, mode->crtc_htotal,
12153 mode->crtc_vdisplay, mode->crtc_vsync_start,
12154 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
12155}
12156
c0b03411 12157static void intel_dump_pipe_config(struct intel_crtc *crtc,
5cec258b 12158 struct intel_crtc_state *pipe_config,
c0b03411
DV
12159 const char *context)
12160{
6a60cd87
CK
12161 struct drm_device *dev = crtc->base.dev;
12162 struct drm_plane *plane;
12163 struct intel_plane *intel_plane;
12164 struct intel_plane_state *state;
12165 struct drm_framebuffer *fb;
12166
12167 DRM_DEBUG_KMS("[CRTC:%d]%s config %p for pipe %c\n", crtc->base.base.id,
12168 context, pipe_config, pipe_name(crtc->pipe));
c0b03411
DV
12169
12170 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
12171 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
12172 pipe_config->pipe_bpp, pipe_config->dither);
12173 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
12174 pipe_config->has_pch_encoder,
12175 pipe_config->fdi_lanes,
12176 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
12177 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
12178 pipe_config->fdi_m_n.tu);
90a6b7b0 12179 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
eb14cb74 12180 pipe_config->has_dp_encoder,
90a6b7b0 12181 pipe_config->lane_count,
eb14cb74
VS
12182 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
12183 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
12184 pipe_config->dp_m_n.tu);
b95af8be 12185
90a6b7b0 12186 DRM_DEBUG_KMS("dp: %i, lanes: %i, gmch_m2: %u, gmch_n2: %u, link_m2: %u, link_n2: %u, tu2: %u\n",
b95af8be 12187 pipe_config->has_dp_encoder,
90a6b7b0 12188 pipe_config->lane_count,
b95af8be
VK
12189 pipe_config->dp_m2_n2.gmch_m,
12190 pipe_config->dp_m2_n2.gmch_n,
12191 pipe_config->dp_m2_n2.link_m,
12192 pipe_config->dp_m2_n2.link_n,
12193 pipe_config->dp_m2_n2.tu);
12194
55072d19
DV
12195 DRM_DEBUG_KMS("audio: %i, infoframes: %i\n",
12196 pipe_config->has_audio,
12197 pipe_config->has_infoframe);
12198
c0b03411 12199 DRM_DEBUG_KMS("requested mode:\n");
2d112de7 12200 drm_mode_debug_printmodeline(&pipe_config->base.mode);
c0b03411 12201 DRM_DEBUG_KMS("adjusted mode:\n");
2d112de7
ACO
12202 drm_mode_debug_printmodeline(&pipe_config->base.adjusted_mode);
12203 intel_dump_crtc_timings(&pipe_config->base.adjusted_mode);
d71b8d4a 12204 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
37327abd
VS
12205 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
12206 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
0ec463d3
TU
12207 DRM_DEBUG_KMS("num_scalers: %d, scaler_users: 0x%x, scaler_id: %d\n",
12208 crtc->num_scalers,
12209 pipe_config->scaler_state.scaler_users,
12210 pipe_config->scaler_state.scaler_id);
c0b03411
DV
12211 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
12212 pipe_config->gmch_pfit.control,
12213 pipe_config->gmch_pfit.pgm_ratios,
12214 pipe_config->gmch_pfit.lvds_border_bits);
fd4daa9c 12215 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
c0b03411 12216 pipe_config->pch_pfit.pos,
fd4daa9c
CW
12217 pipe_config->pch_pfit.size,
12218 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
42db64ef 12219 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
cf532bb2 12220 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
6a60cd87 12221
415ff0f6 12222 if (IS_BROXTON(dev)) {
05712c15 12223 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: ebb0: 0x%x, ebb4: 0x%x,"
415ff0f6 12224 "pll0: 0x%x, pll1: 0x%x, pll2: 0x%x, pll3: 0x%x, "
c8453338 12225 "pll6: 0x%x, pll8: 0x%x, pll9: 0x%x, pll10: 0x%x, pcsdw12: 0x%x\n",
415ff0f6
TU
12226 pipe_config->ddi_pll_sel,
12227 pipe_config->dpll_hw_state.ebb0,
05712c15 12228 pipe_config->dpll_hw_state.ebb4,
415ff0f6
TU
12229 pipe_config->dpll_hw_state.pll0,
12230 pipe_config->dpll_hw_state.pll1,
12231 pipe_config->dpll_hw_state.pll2,
12232 pipe_config->dpll_hw_state.pll3,
12233 pipe_config->dpll_hw_state.pll6,
12234 pipe_config->dpll_hw_state.pll8,
05712c15 12235 pipe_config->dpll_hw_state.pll9,
c8453338 12236 pipe_config->dpll_hw_state.pll10,
415ff0f6 12237 pipe_config->dpll_hw_state.pcsdw12);
ef11bdb3 12238 } else if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) {
415ff0f6
TU
12239 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: "
12240 "ctrl1: 0x%x, cfgcr1: 0x%x, cfgcr2: 0x%x\n",
12241 pipe_config->ddi_pll_sel,
12242 pipe_config->dpll_hw_state.ctrl1,
12243 pipe_config->dpll_hw_state.cfgcr1,
12244 pipe_config->dpll_hw_state.cfgcr2);
12245 } else if (HAS_DDI(dev)) {
00490c22 12246 DRM_DEBUG_KMS("ddi_pll_sel: %u; dpll_hw_state: wrpll: 0x%x spll: 0x%x\n",
415ff0f6 12247 pipe_config->ddi_pll_sel,
00490c22
ML
12248 pipe_config->dpll_hw_state.wrpll,
12249 pipe_config->dpll_hw_state.spll);
415ff0f6
TU
12250 } else {
12251 DRM_DEBUG_KMS("dpll_hw_state: dpll: 0x%x, dpll_md: 0x%x, "
12252 "fp0: 0x%x, fp1: 0x%x\n",
12253 pipe_config->dpll_hw_state.dpll,
12254 pipe_config->dpll_hw_state.dpll_md,
12255 pipe_config->dpll_hw_state.fp0,
12256 pipe_config->dpll_hw_state.fp1);
12257 }
12258
6a60cd87
CK
12259 DRM_DEBUG_KMS("planes on this crtc\n");
12260 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
12261 intel_plane = to_intel_plane(plane);
12262 if (intel_plane->pipe != crtc->pipe)
12263 continue;
12264
12265 state = to_intel_plane_state(plane->state);
12266 fb = state->base.fb;
12267 if (!fb) {
12268 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d "
12269 "disabled, scaler_id = %d\n",
12270 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12271 plane->base.id, intel_plane->pipe,
12272 (crtc->base.primary == plane) ? 0 : intel_plane->plane + 1,
12273 drm_plane_index(plane), state->scaler_id);
12274 continue;
12275 }
12276
12277 DRM_DEBUG_KMS("%s PLANE:%d plane: %u.%u idx: %d enabled",
12278 plane->type == DRM_PLANE_TYPE_CURSOR ? "CURSOR" : "STANDARD",
12279 plane->base.id, intel_plane->pipe,
12280 crtc->base.primary == plane ? 0 : intel_plane->plane + 1,
12281 drm_plane_index(plane));
12282 DRM_DEBUG_KMS("\tFB:%d, fb = %ux%u format = 0x%x",
12283 fb->base.id, fb->width, fb->height, fb->pixel_format);
12284 DRM_DEBUG_KMS("\tscaler:%d src (%u, %u) %ux%u dst (%u, %u) %ux%u\n",
12285 state->scaler_id,
12286 state->src.x1 >> 16, state->src.y1 >> 16,
12287 drm_rect_width(&state->src) >> 16,
12288 drm_rect_height(&state->src) >> 16,
12289 state->dst.x1, state->dst.y1,
12290 drm_rect_width(&state->dst), drm_rect_height(&state->dst));
12291 }
c0b03411
DV
12292}
12293
5448a00d 12294static bool check_digital_port_conflicts(struct drm_atomic_state *state)
00f0b378 12295{
5448a00d 12296 struct drm_device *dev = state->dev;
da3ced29 12297 struct drm_connector *connector;
00f0b378
VS
12298 unsigned int used_ports = 0;
12299
12300 /*
12301 * Walk the connector list instead of the encoder
12302 * list to detect the problem on ddi platforms
12303 * where there's just one encoder per digital port.
12304 */
0bff4858
VS
12305 drm_for_each_connector(connector, dev) {
12306 struct drm_connector_state *connector_state;
12307 struct intel_encoder *encoder;
12308
12309 connector_state = drm_atomic_get_existing_connector_state(state, connector);
12310 if (!connector_state)
12311 connector_state = connector->state;
12312
5448a00d 12313 if (!connector_state->best_encoder)
00f0b378
VS
12314 continue;
12315
5448a00d
ACO
12316 encoder = to_intel_encoder(connector_state->best_encoder);
12317
12318 WARN_ON(!connector_state->crtc);
00f0b378
VS
12319
12320 switch (encoder->type) {
12321 unsigned int port_mask;
12322 case INTEL_OUTPUT_UNKNOWN:
12323 if (WARN_ON(!HAS_DDI(dev)))
12324 break;
12325 case INTEL_OUTPUT_DISPLAYPORT:
12326 case INTEL_OUTPUT_HDMI:
12327 case INTEL_OUTPUT_EDP:
12328 port_mask = 1 << enc_to_dig_port(&encoder->base)->port;
12329
12330 /* the same port mustn't appear more than once */
12331 if (used_ports & port_mask)
12332 return false;
12333
12334 used_ports |= port_mask;
12335 default:
12336 break;
12337 }
12338 }
12339
12340 return true;
12341}
12342
83a57153
ACO
12343static void
12344clear_intel_crtc_state(struct intel_crtc_state *crtc_state)
12345{
12346 struct drm_crtc_state tmp_state;
663a3640 12347 struct intel_crtc_scaler_state scaler_state;
4978cc93
ACO
12348 struct intel_dpll_hw_state dpll_hw_state;
12349 enum intel_dpll_id shared_dpll;
8504c74c 12350 uint32_t ddi_pll_sel;
c4e2d043 12351 bool force_thru;
83a57153 12352
7546a384
ACO
12353 /* FIXME: before the switch to atomic started, a new pipe_config was
12354 * kzalloc'd. Code that depends on any field being zero should be
12355 * fixed, so that the crtc_state can be safely duplicated. For now,
12356 * only fields that are know to not cause problems are preserved. */
12357
83a57153 12358 tmp_state = crtc_state->base;
663a3640 12359 scaler_state = crtc_state->scaler_state;
4978cc93
ACO
12360 shared_dpll = crtc_state->shared_dpll;
12361 dpll_hw_state = crtc_state->dpll_hw_state;
8504c74c 12362 ddi_pll_sel = crtc_state->ddi_pll_sel;
c4e2d043 12363 force_thru = crtc_state->pch_pfit.force_thru;
4978cc93 12364
83a57153 12365 memset(crtc_state, 0, sizeof *crtc_state);
4978cc93 12366
83a57153 12367 crtc_state->base = tmp_state;
663a3640 12368 crtc_state->scaler_state = scaler_state;
4978cc93
ACO
12369 crtc_state->shared_dpll = shared_dpll;
12370 crtc_state->dpll_hw_state = dpll_hw_state;
8504c74c 12371 crtc_state->ddi_pll_sel = ddi_pll_sel;
c4e2d043 12372 crtc_state->pch_pfit.force_thru = force_thru;
83a57153
ACO
12373}
12374
548ee15b 12375static int
b8cecdf5 12376intel_modeset_pipe_config(struct drm_crtc *crtc,
b359283a 12377 struct intel_crtc_state *pipe_config)
ee7b9f93 12378{
b359283a 12379 struct drm_atomic_state *state = pipe_config->base.state;
7758a113 12380 struct intel_encoder *encoder;
da3ced29 12381 struct drm_connector *connector;
0b901879 12382 struct drm_connector_state *connector_state;
d328c9d7 12383 int base_bpp, ret = -EINVAL;
0b901879 12384 int i;
e29c22c0 12385 bool retry = true;
ee7b9f93 12386
83a57153 12387 clear_intel_crtc_state(pipe_config);
7758a113 12388
e143a21c
DV
12389 pipe_config->cpu_transcoder =
12390 (enum transcoder) to_intel_crtc(crtc)->pipe;
b8cecdf5 12391
2960bc9c
ID
12392 /*
12393 * Sanitize sync polarity flags based on requested ones. If neither
12394 * positive or negative polarity is requested, treat this as meaning
12395 * negative polarity.
12396 */
2d112de7 12397 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 12398 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
2d112de7 12399 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
2960bc9c 12400
2d112de7 12401 if (!(pipe_config->base.adjusted_mode.flags &
2960bc9c 12402 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
2d112de7 12403 pipe_config->base.adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
2960bc9c 12404
d328c9d7
DV
12405 base_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
12406 pipe_config);
12407 if (base_bpp < 0)
4e53c2e0
DV
12408 goto fail;
12409
e41a56be
VS
12410 /*
12411 * Determine the real pipe dimensions. Note that stereo modes can
12412 * increase the actual pipe size due to the frame doubling and
12413 * insertion of additional space for blanks between the frame. This
12414 * is stored in the crtc timings. We use the requested mode to do this
12415 * computation to clearly distinguish it from the adjusted mode, which
12416 * can be changed by the connectors in the below retry loop.
12417 */
2d112de7 12418 drm_crtc_get_hv_timing(&pipe_config->base.mode,
ecb7e16b
GP
12419 &pipe_config->pipe_src_w,
12420 &pipe_config->pipe_src_h);
e41a56be 12421
e29c22c0 12422encoder_retry:
ef1b460d 12423 /* Ensure the port clock defaults are reset when retrying. */
ff9a6750 12424 pipe_config->port_clock = 0;
ef1b460d 12425 pipe_config->pixel_multiplier = 1;
ff9a6750 12426
135c81b8 12427 /* Fill in default crtc timings, allow encoders to overwrite them. */
2d112de7
ACO
12428 drm_mode_set_crtcinfo(&pipe_config->base.adjusted_mode,
12429 CRTC_STEREO_DOUBLE);
135c81b8 12430
7758a113
DV
12431 /* Pass our mode to the connectors and the CRTC to give them a chance to
12432 * adjust it according to limitations or connector properties, and also
12433 * a chance to reject the mode entirely.
47f1c6c9 12434 */
da3ced29 12435 for_each_connector_in_state(state, connector, connector_state, i) {
0b901879 12436 if (connector_state->crtc != crtc)
7758a113 12437 continue;
7ae89233 12438
0b901879
ACO
12439 encoder = to_intel_encoder(connector_state->best_encoder);
12440
efea6e8e
DV
12441 if (!(encoder->compute_config(encoder, pipe_config))) {
12442 DRM_DEBUG_KMS("Encoder config failure\n");
7758a113
DV
12443 goto fail;
12444 }
ee7b9f93 12445 }
47f1c6c9 12446
ff9a6750
DV
12447 /* Set default port clock if not overwritten by the encoder. Needs to be
12448 * done afterwards in case the encoder adjusts the mode. */
12449 if (!pipe_config->port_clock)
2d112de7 12450 pipe_config->port_clock = pipe_config->base.adjusted_mode.crtc_clock
241bfc38 12451 * pipe_config->pixel_multiplier;
ff9a6750 12452
a43f6e0f 12453 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
e29c22c0 12454 if (ret < 0) {
7758a113
DV
12455 DRM_DEBUG_KMS("CRTC fixup failed\n");
12456 goto fail;
ee7b9f93 12457 }
e29c22c0
DV
12458
12459 if (ret == RETRY) {
12460 if (WARN(!retry, "loop in pipe configuration computation\n")) {
12461 ret = -EINVAL;
12462 goto fail;
12463 }
12464
12465 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
12466 retry = false;
12467 goto encoder_retry;
12468 }
12469
e8fa4270
DV
12470 /* Dithering seems to not pass-through bits correctly when it should, so
12471 * only enable it on 6bpc panels. */
12472 pipe_config->dither = pipe_config->pipe_bpp == 6*3;
62f0ace5 12473 DRM_DEBUG_KMS("hw max bpp: %i, pipe bpp: %i, dithering: %i\n",
d328c9d7 12474 base_bpp, pipe_config->pipe_bpp, pipe_config->dither);
4e53c2e0 12475
7758a113 12476fail:
548ee15b 12477 return ret;
ee7b9f93 12478}
47f1c6c9 12479
ea9d758d 12480static void
4740b0f2 12481intel_modeset_update_crtc_state(struct drm_atomic_state *state)
ea9d758d 12482{
0a9ab303
ACO
12483 struct drm_crtc *crtc;
12484 struct drm_crtc_state *crtc_state;
8a75d157 12485 int i;
ea9d758d 12486
7668851f 12487 /* Double check state. */
8a75d157 12488 for_each_crtc_in_state(state, crtc, crtc_state, i) {
3cb480bc 12489 to_intel_crtc(crtc)->config = to_intel_crtc_state(crtc->state);
fc467a22
ML
12490
12491 /* Update hwmode for vblank functions */
12492 if (crtc->state->active)
12493 crtc->hwmode = crtc->state->adjusted_mode;
12494 else
12495 crtc->hwmode.crtc_clock = 0;
61067a5e
ML
12496
12497 /*
12498 * Update legacy state to satisfy fbc code. This can
12499 * be removed when fbc uses the atomic state.
12500 */
12501 if (drm_atomic_get_existing_plane_state(state, crtc->primary)) {
12502 struct drm_plane_state *plane_state = crtc->primary->state;
12503
12504 crtc->primary->fb = plane_state->fb;
12505 crtc->x = plane_state->src_x >> 16;
12506 crtc->y = plane_state->src_y >> 16;
12507 }
ea9d758d 12508 }
ea9d758d
DV
12509}
12510
3bd26263 12511static bool intel_fuzzy_clock_check(int clock1, int clock2)
f1f644dc 12512{
3bd26263 12513 int diff;
f1f644dc
JB
12514
12515 if (clock1 == clock2)
12516 return true;
12517
12518 if (!clock1 || !clock2)
12519 return false;
12520
12521 diff = abs(clock1 - clock2);
12522
12523 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
12524 return true;
12525
12526 return false;
12527}
12528
25c5b266
DV
12529#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
12530 list_for_each_entry((intel_crtc), \
12531 &(dev)->mode_config.crtc_list, \
12532 base.head) \
95150bdf 12533 for_each_if (mask & (1 <<(intel_crtc)->pipe))
25c5b266 12534
cfb23ed6
ML
12535static bool
12536intel_compare_m_n(unsigned int m, unsigned int n,
12537 unsigned int m2, unsigned int n2,
12538 bool exact)
12539{
12540 if (m == m2 && n == n2)
12541 return true;
12542
12543 if (exact || !m || !n || !m2 || !n2)
12544 return false;
12545
12546 BUILD_BUG_ON(DATA_LINK_M_N_MASK > INT_MAX);
12547
12548 if (m > m2) {
12549 while (m > m2) {
12550 m2 <<= 1;
12551 n2 <<= 1;
12552 }
12553 } else if (m < m2) {
12554 while (m < m2) {
12555 m <<= 1;
12556 n <<= 1;
12557 }
12558 }
12559
12560 return m == m2 && n == n2;
12561}
12562
12563static bool
12564intel_compare_link_m_n(const struct intel_link_m_n *m_n,
12565 struct intel_link_m_n *m2_n2,
12566 bool adjust)
12567{
12568 if (m_n->tu == m2_n2->tu &&
12569 intel_compare_m_n(m_n->gmch_m, m_n->gmch_n,
12570 m2_n2->gmch_m, m2_n2->gmch_n, !adjust) &&
12571 intel_compare_m_n(m_n->link_m, m_n->link_n,
12572 m2_n2->link_m, m2_n2->link_n, !adjust)) {
12573 if (adjust)
12574 *m2_n2 = *m_n;
12575
12576 return true;
12577 }
12578
12579 return false;
12580}
12581
0e8ffe1b 12582static bool
2fa2fe9a 12583intel_pipe_config_compare(struct drm_device *dev,
5cec258b 12584 struct intel_crtc_state *current_config,
cfb23ed6
ML
12585 struct intel_crtc_state *pipe_config,
12586 bool adjust)
0e8ffe1b 12587{
cfb23ed6
ML
12588 bool ret = true;
12589
12590#define INTEL_ERR_OR_DBG_KMS(fmt, ...) \
12591 do { \
12592 if (!adjust) \
12593 DRM_ERROR(fmt, ##__VA_ARGS__); \
12594 else \
12595 DRM_DEBUG_KMS(fmt, ##__VA_ARGS__); \
12596 } while (0)
12597
66e985c0
DV
12598#define PIPE_CONF_CHECK_X(name) \
12599 if (current_config->name != pipe_config->name) { \
cfb23ed6 12600 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
66e985c0
DV
12601 "(expected 0x%08x, found 0x%08x)\n", \
12602 current_config->name, \
12603 pipe_config->name); \
cfb23ed6 12604 ret = false; \
66e985c0
DV
12605 }
12606
08a24034
DV
12607#define PIPE_CONF_CHECK_I(name) \
12608 if (current_config->name != pipe_config->name) { \
cfb23ed6 12609 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
08a24034
DV
12610 "(expected %i, found %i)\n", \
12611 current_config->name, \
12612 pipe_config->name); \
cfb23ed6
ML
12613 ret = false; \
12614 }
12615
12616#define PIPE_CONF_CHECK_M_N(name) \
12617 if (!intel_compare_link_m_n(&current_config->name, \
12618 &pipe_config->name,\
12619 adjust)) { \
12620 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12621 "(expected tu %i gmch %i/%i link %i/%i, " \
12622 "found tu %i, gmch %i/%i link %i/%i)\n", \
12623 current_config->name.tu, \
12624 current_config->name.gmch_m, \
12625 current_config->name.gmch_n, \
12626 current_config->name.link_m, \
12627 current_config->name.link_n, \
12628 pipe_config->name.tu, \
12629 pipe_config->name.gmch_m, \
12630 pipe_config->name.gmch_n, \
12631 pipe_config->name.link_m, \
12632 pipe_config->name.link_n); \
12633 ret = false; \
12634 }
12635
12636#define PIPE_CONF_CHECK_M_N_ALT(name, alt_name) \
12637 if (!intel_compare_link_m_n(&current_config->name, \
12638 &pipe_config->name, adjust) && \
12639 !intel_compare_link_m_n(&current_config->alt_name, \
12640 &pipe_config->name, adjust)) { \
12641 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
12642 "(expected tu %i gmch %i/%i link %i/%i, " \
12643 "or tu %i gmch %i/%i link %i/%i, " \
12644 "found tu %i, gmch %i/%i link %i/%i)\n", \
12645 current_config->name.tu, \
12646 current_config->name.gmch_m, \
12647 current_config->name.gmch_n, \
12648 current_config->name.link_m, \
12649 current_config->name.link_n, \
12650 current_config->alt_name.tu, \
12651 current_config->alt_name.gmch_m, \
12652 current_config->alt_name.gmch_n, \
12653 current_config->alt_name.link_m, \
12654 current_config->alt_name.link_n, \
12655 pipe_config->name.tu, \
12656 pipe_config->name.gmch_m, \
12657 pipe_config->name.gmch_n, \
12658 pipe_config->name.link_m, \
12659 pipe_config->name.link_n); \
12660 ret = false; \
88adfff1
DV
12661 }
12662
b95af8be
VK
12663/* This is required for BDW+ where there is only one set of registers for
12664 * switching between high and low RR.
12665 * This macro can be used whenever a comparison has to be made between one
12666 * hw state and multiple sw state variables.
12667 */
12668#define PIPE_CONF_CHECK_I_ALT(name, alt_name) \
12669 if ((current_config->name != pipe_config->name) && \
12670 (current_config->alt_name != pipe_config->name)) { \
cfb23ed6 12671 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
b95af8be
VK
12672 "(expected %i or %i, found %i)\n", \
12673 current_config->name, \
12674 current_config->alt_name, \
12675 pipe_config->name); \
cfb23ed6 12676 ret = false; \
b95af8be
VK
12677 }
12678
1bd1bd80
DV
12679#define PIPE_CONF_CHECK_FLAGS(name, mask) \
12680 if ((current_config->name ^ pipe_config->name) & (mask)) { \
cfb23ed6 12681 INTEL_ERR_OR_DBG_KMS("mismatch in " #name "(" #mask ") " \
1bd1bd80
DV
12682 "(expected %i, found %i)\n", \
12683 current_config->name & (mask), \
12684 pipe_config->name & (mask)); \
cfb23ed6 12685 ret = false; \
1bd1bd80
DV
12686 }
12687
5e550656
VS
12688#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
12689 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
cfb23ed6 12690 INTEL_ERR_OR_DBG_KMS("mismatch in " #name " " \
5e550656
VS
12691 "(expected %i, found %i)\n", \
12692 current_config->name, \
12693 pipe_config->name); \
cfb23ed6 12694 ret = false; \
5e550656
VS
12695 }
12696
bb760063
DV
12697#define PIPE_CONF_QUIRK(quirk) \
12698 ((current_config->quirks | pipe_config->quirks) & (quirk))
12699
eccb140b
DV
12700 PIPE_CONF_CHECK_I(cpu_transcoder);
12701
08a24034
DV
12702 PIPE_CONF_CHECK_I(has_pch_encoder);
12703 PIPE_CONF_CHECK_I(fdi_lanes);
cfb23ed6 12704 PIPE_CONF_CHECK_M_N(fdi_m_n);
08a24034 12705
eb14cb74 12706 PIPE_CONF_CHECK_I(has_dp_encoder);
90a6b7b0 12707 PIPE_CONF_CHECK_I(lane_count);
b95af8be
VK
12708
12709 if (INTEL_INFO(dev)->gen < 8) {
cfb23ed6
ML
12710 PIPE_CONF_CHECK_M_N(dp_m_n);
12711
cfb23ed6
ML
12712 if (current_config->has_drrs)
12713 PIPE_CONF_CHECK_M_N(dp_m2_n2);
12714 } else
12715 PIPE_CONF_CHECK_M_N_ALT(dp_m_n, dp_m2_n2);
eb14cb74 12716
a65347ba
JN
12717 PIPE_CONF_CHECK_I(has_dsi_encoder);
12718
2d112de7
ACO
12719 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hdisplay);
12720 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_htotal);
12721 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_start);
12722 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hblank_end);
12723 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_start);
12724 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_hsync_end);
1bd1bd80 12725
2d112de7
ACO
12726 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vdisplay);
12727 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vtotal);
12728 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_start);
12729 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vblank_end);
12730 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_start);
12731 PIPE_CONF_CHECK_I(base.adjusted_mode.crtc_vsync_end);
1bd1bd80 12732
c93f54cf 12733 PIPE_CONF_CHECK_I(pixel_multiplier);
6897b4b5 12734 PIPE_CONF_CHECK_I(has_hdmi_sink);
b5a9fa09 12735 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
666a4537 12736 IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
b5a9fa09 12737 PIPE_CONF_CHECK_I(limited_color_range);
e43823ec 12738 PIPE_CONF_CHECK_I(has_infoframe);
6c49f241 12739
9ed109a7
DV
12740 PIPE_CONF_CHECK_I(has_audio);
12741
2d112de7 12742 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
1bd1bd80
DV
12743 DRM_MODE_FLAG_INTERLACE);
12744
bb760063 12745 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
2d112de7 12746 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12747 DRM_MODE_FLAG_PHSYNC);
2d112de7 12748 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12749 DRM_MODE_FLAG_NHSYNC);
2d112de7 12750 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063 12751 DRM_MODE_FLAG_PVSYNC);
2d112de7 12752 PIPE_CONF_CHECK_FLAGS(base.adjusted_mode.flags,
bb760063
DV
12753 DRM_MODE_FLAG_NVSYNC);
12754 }
045ac3b5 12755
333b8ca8 12756 PIPE_CONF_CHECK_X(gmch_pfit.control);
e2ff2d4a
DV
12757 /* pfit ratios are autocomputed by the hw on gen4+ */
12758 if (INTEL_INFO(dev)->gen < 4)
12759 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
333b8ca8 12760 PIPE_CONF_CHECK_X(gmch_pfit.lvds_border_bits);
9953599b 12761
bfd16b2a
ML
12762 if (!adjust) {
12763 PIPE_CONF_CHECK_I(pipe_src_w);
12764 PIPE_CONF_CHECK_I(pipe_src_h);
12765
12766 PIPE_CONF_CHECK_I(pch_pfit.enabled);
12767 if (current_config->pch_pfit.enabled) {
12768 PIPE_CONF_CHECK_X(pch_pfit.pos);
12769 PIPE_CONF_CHECK_X(pch_pfit.size);
12770 }
2fa2fe9a 12771
7aefe2b5
ML
12772 PIPE_CONF_CHECK_I(scaler_state.scaler_id);
12773 }
a1b2278e 12774
e59150dc
JB
12775 /* BDW+ don't expose a synchronous way to read the state */
12776 if (IS_HASWELL(dev))
12777 PIPE_CONF_CHECK_I(ips_enabled);
42db64ef 12778
282740f7
VS
12779 PIPE_CONF_CHECK_I(double_wide);
12780
26804afd
DV
12781 PIPE_CONF_CHECK_X(ddi_pll_sel);
12782
c0d43d62 12783 PIPE_CONF_CHECK_I(shared_dpll);
66e985c0 12784 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
8bcc2795 12785 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
66e985c0
DV
12786 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
12787 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
d452c5b6 12788 PIPE_CONF_CHECK_X(dpll_hw_state.wrpll);
00490c22 12789 PIPE_CONF_CHECK_X(dpll_hw_state.spll);
3f4cd19f
DL
12790 PIPE_CONF_CHECK_X(dpll_hw_state.ctrl1);
12791 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr1);
12792 PIPE_CONF_CHECK_X(dpll_hw_state.cfgcr2);
c0d43d62 12793
42571aef
VS
12794 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
12795 PIPE_CONF_CHECK_I(pipe_bpp);
12796
2d112de7 12797 PIPE_CONF_CHECK_CLOCK_FUZZY(base.adjusted_mode.crtc_clock);
a9a7e98a 12798 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
5e550656 12799
66e985c0 12800#undef PIPE_CONF_CHECK_X
08a24034 12801#undef PIPE_CONF_CHECK_I
b95af8be 12802#undef PIPE_CONF_CHECK_I_ALT
1bd1bd80 12803#undef PIPE_CONF_CHECK_FLAGS
5e550656 12804#undef PIPE_CONF_CHECK_CLOCK_FUZZY
bb760063 12805#undef PIPE_CONF_QUIRK
cfb23ed6 12806#undef INTEL_ERR_OR_DBG_KMS
88adfff1 12807
cfb23ed6 12808 return ret;
0e8ffe1b
DV
12809}
12810
08db6652
DL
12811static void check_wm_state(struct drm_device *dev)
12812{
12813 struct drm_i915_private *dev_priv = dev->dev_private;
12814 struct skl_ddb_allocation hw_ddb, *sw_ddb;
12815 struct intel_crtc *intel_crtc;
12816 int plane;
12817
12818 if (INTEL_INFO(dev)->gen < 9)
12819 return;
12820
12821 skl_ddb_get_hw_state(dev_priv, &hw_ddb);
12822 sw_ddb = &dev_priv->wm.skl_hw.ddb;
12823
12824 for_each_intel_crtc(dev, intel_crtc) {
12825 struct skl_ddb_entry *hw_entry, *sw_entry;
12826 const enum pipe pipe = intel_crtc->pipe;
12827
12828 if (!intel_crtc->active)
12829 continue;
12830
12831 /* planes */
dd740780 12832 for_each_plane(dev_priv, pipe, plane) {
08db6652
DL
12833 hw_entry = &hw_ddb.plane[pipe][plane];
12834 sw_entry = &sw_ddb->plane[pipe][plane];
12835
12836 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12837 continue;
12838
12839 DRM_ERROR("mismatch in DDB state pipe %c plane %d "
12840 "(expected (%u,%u), found (%u,%u))\n",
12841 pipe_name(pipe), plane + 1,
12842 sw_entry->start, sw_entry->end,
12843 hw_entry->start, hw_entry->end);
12844 }
12845
12846 /* cursor */
4969d33e
MR
12847 hw_entry = &hw_ddb.plane[pipe][PLANE_CURSOR];
12848 sw_entry = &sw_ddb->plane[pipe][PLANE_CURSOR];
08db6652
DL
12849
12850 if (skl_ddb_entry_equal(hw_entry, sw_entry))
12851 continue;
12852
12853 DRM_ERROR("mismatch in DDB state pipe %c cursor "
12854 "(expected (%u,%u), found (%u,%u))\n",
12855 pipe_name(pipe),
12856 sw_entry->start, sw_entry->end,
12857 hw_entry->start, hw_entry->end);
12858 }
12859}
12860
91d1b4bd 12861static void
35dd3c64
ML
12862check_connector_state(struct drm_device *dev,
12863 struct drm_atomic_state *old_state)
8af6cf88 12864{
35dd3c64
ML
12865 struct drm_connector_state *old_conn_state;
12866 struct drm_connector *connector;
12867 int i;
8af6cf88 12868
35dd3c64
ML
12869 for_each_connector_in_state(old_state, connector, old_conn_state, i) {
12870 struct drm_encoder *encoder = connector->encoder;
12871 struct drm_connector_state *state = connector->state;
ad3c558f 12872
8af6cf88
DV
12873 /* This also checks the encoder/connector hw state with the
12874 * ->get_hw_state callbacks. */
35dd3c64 12875 intel_connector_check_state(to_intel_connector(connector));
8af6cf88 12876
ad3c558f 12877 I915_STATE_WARN(state->best_encoder != encoder,
35dd3c64 12878 "connector's atomic encoder doesn't match legacy encoder\n");
8af6cf88 12879 }
91d1b4bd
DV
12880}
12881
12882static void
12883check_encoder_state(struct drm_device *dev)
12884{
12885 struct intel_encoder *encoder;
12886 struct intel_connector *connector;
8af6cf88 12887
b2784e15 12888 for_each_intel_encoder(dev, encoder) {
8af6cf88 12889 bool enabled = false;
4d20cd86 12890 enum pipe pipe;
8af6cf88
DV
12891
12892 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
12893 encoder->base.base.id,
8e329a03 12894 encoder->base.name);
8af6cf88 12895
3a3371ff 12896 for_each_intel_connector(dev, connector) {
4d20cd86 12897 if (connector->base.state->best_encoder != &encoder->base)
8af6cf88
DV
12898 continue;
12899 enabled = true;
ad3c558f
ML
12900
12901 I915_STATE_WARN(connector->base.state->crtc !=
12902 encoder->base.crtc,
12903 "connector's crtc doesn't match encoder crtc\n");
8af6cf88 12904 }
0e32b39c 12905
e2c719b7 12906 I915_STATE_WARN(!!encoder->base.crtc != enabled,
8af6cf88
DV
12907 "encoder's enabled state mismatch "
12908 "(expected %i, found %i)\n",
12909 !!encoder->base.crtc, enabled);
7c60d198
ML
12910
12911 if (!encoder->base.crtc) {
4d20cd86 12912 bool active;
7c60d198 12913
4d20cd86
ML
12914 active = encoder->get_hw_state(encoder, &pipe);
12915 I915_STATE_WARN(active,
12916 "encoder detached but still enabled on pipe %c.\n",
12917 pipe_name(pipe));
7c60d198 12918 }
8af6cf88 12919 }
91d1b4bd
DV
12920}
12921
12922static void
4d20cd86 12923check_crtc_state(struct drm_device *dev, struct drm_atomic_state *old_state)
91d1b4bd 12924{
fbee40df 12925 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd 12926 struct intel_encoder *encoder;
4d20cd86
ML
12927 struct drm_crtc_state *old_crtc_state;
12928 struct drm_crtc *crtc;
12929 int i;
8af6cf88 12930
4d20cd86
ML
12931 for_each_crtc_in_state(old_state, crtc, old_crtc_state, i) {
12932 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
12933 struct intel_crtc_state *pipe_config, *sw_config;
7b89b8de 12934 bool active;
8af6cf88 12935
bfd16b2a
ML
12936 if (!needs_modeset(crtc->state) &&
12937 !to_intel_crtc_state(crtc->state)->update_pipe)
4d20cd86 12938 continue;
045ac3b5 12939
4d20cd86
ML
12940 __drm_atomic_helper_crtc_destroy_state(crtc, old_crtc_state);
12941 pipe_config = to_intel_crtc_state(old_crtc_state);
12942 memset(pipe_config, 0, sizeof(*pipe_config));
12943 pipe_config->base.crtc = crtc;
12944 pipe_config->base.state = old_state;
8af6cf88 12945
4d20cd86
ML
12946 DRM_DEBUG_KMS("[CRTC:%d]\n",
12947 crtc->base.id);
8af6cf88 12948
4d20cd86
ML
12949 active = dev_priv->display.get_pipe_config(intel_crtc,
12950 pipe_config);
d62cf62a 12951
b6b5d049 12952 /* hw state is inconsistent with the pipe quirk */
4d20cd86
ML
12953 if ((intel_crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE) ||
12954 (intel_crtc->pipe == PIPE_B && dev_priv->quirks & QUIRK_PIPEB_FORCE))
12955 active = crtc->state->active;
6c49f241 12956
4d20cd86 12957 I915_STATE_WARN(crtc->state->active != active,
0e8ffe1b 12958 "crtc active state doesn't match with hw state "
4d20cd86 12959 "(expected %i, found %i)\n", crtc->state->active, active);
0e8ffe1b 12960
4d20cd86 12961 I915_STATE_WARN(intel_crtc->active != crtc->state->active,
53d9f4e9 12962 "transitional active state does not match atomic hw state "
4d20cd86
ML
12963 "(expected %i, found %i)\n", crtc->state->active, intel_crtc->active);
12964
12965 for_each_encoder_on_crtc(dev, crtc, encoder) {
12966 enum pipe pipe;
12967
12968 active = encoder->get_hw_state(encoder, &pipe);
12969 I915_STATE_WARN(active != crtc->state->active,
12970 "[ENCODER:%i] active %i with crtc active %i\n",
12971 encoder->base.base.id, active, crtc->state->active);
12972
12973 I915_STATE_WARN(active && intel_crtc->pipe != pipe,
12974 "Encoder connected to wrong pipe %c\n",
12975 pipe_name(pipe));
12976
12977 if (active)
12978 encoder->get_config(encoder, pipe_config);
12979 }
53d9f4e9 12980
4d20cd86 12981 if (!crtc->state->active)
cfb23ed6
ML
12982 continue;
12983
4d20cd86
ML
12984 sw_config = to_intel_crtc_state(crtc->state);
12985 if (!intel_pipe_config_compare(dev, sw_config,
12986 pipe_config, false)) {
e2c719b7 12987 I915_STATE_WARN(1, "pipe state doesn't match!\n");
4d20cd86 12988 intel_dump_pipe_config(intel_crtc, pipe_config,
c0b03411 12989 "[hw state]");
4d20cd86 12990 intel_dump_pipe_config(intel_crtc, sw_config,
c0b03411
DV
12991 "[sw state]");
12992 }
8af6cf88
DV
12993 }
12994}
12995
91d1b4bd
DV
12996static void
12997check_shared_dpll_state(struct drm_device *dev)
12998{
fbee40df 12999 struct drm_i915_private *dev_priv = dev->dev_private;
91d1b4bd
DV
13000 struct intel_crtc *crtc;
13001 struct intel_dpll_hw_state dpll_hw_state;
13002 int i;
5358901f
DV
13003
13004 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
13005 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
13006 int enabled_crtcs = 0, active_crtcs = 0;
13007 bool active;
13008
13009 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
13010
13011 DRM_DEBUG_KMS("%s\n", pll->name);
13012
13013 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
13014
e2c719b7 13015 I915_STATE_WARN(pll->active > hweight32(pll->config.crtc_mask),
5358901f 13016 "more active pll users than references: %i vs %i\n",
3e369b76 13017 pll->active, hweight32(pll->config.crtc_mask));
e2c719b7 13018 I915_STATE_WARN(pll->active && !pll->on,
5358901f 13019 "pll in active use but not on in sw tracking\n");
e2c719b7 13020 I915_STATE_WARN(pll->on && !pll->active,
35c95375 13021 "pll in on but not on in use in sw tracking\n");
e2c719b7 13022 I915_STATE_WARN(pll->on != active,
5358901f
DV
13023 "pll on state mismatch (expected %i, found %i)\n",
13024 pll->on, active);
13025
d3fcc808 13026 for_each_intel_crtc(dev, crtc) {
83d65738 13027 if (crtc->base.state->enable && intel_crtc_to_shared_dpll(crtc) == pll)
5358901f
DV
13028 enabled_crtcs++;
13029 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
13030 active_crtcs++;
13031 }
e2c719b7 13032 I915_STATE_WARN(pll->active != active_crtcs,
5358901f
DV
13033 "pll active crtcs mismatch (expected %i, found %i)\n",
13034 pll->active, active_crtcs);
e2c719b7 13035 I915_STATE_WARN(hweight32(pll->config.crtc_mask) != enabled_crtcs,
5358901f 13036 "pll enabled crtcs mismatch (expected %i, found %i)\n",
3e369b76 13037 hweight32(pll->config.crtc_mask), enabled_crtcs);
66e985c0 13038
e2c719b7 13039 I915_STATE_WARN(pll->on && memcmp(&pll->config.hw_state, &dpll_hw_state,
66e985c0
DV
13040 sizeof(dpll_hw_state)),
13041 "pll hw state mismatch\n");
5358901f 13042 }
8af6cf88
DV
13043}
13044
ee165b1a
ML
13045static void
13046intel_modeset_check_state(struct drm_device *dev,
13047 struct drm_atomic_state *old_state)
91d1b4bd 13048{
08db6652 13049 check_wm_state(dev);
35dd3c64 13050 check_connector_state(dev, old_state);
91d1b4bd 13051 check_encoder_state(dev);
4d20cd86 13052 check_crtc_state(dev, old_state);
91d1b4bd
DV
13053 check_shared_dpll_state(dev);
13054}
13055
5cec258b 13056void ironlake_check_encoder_dotclock(const struct intel_crtc_state *pipe_config,
18442d08
VS
13057 int dotclock)
13058{
13059 /*
13060 * FDI already provided one idea for the dotclock.
13061 * Yell if the encoder disagrees.
13062 */
2d112de7 13063 WARN(!intel_fuzzy_clock_check(pipe_config->base.adjusted_mode.crtc_clock, dotclock),
18442d08 13064 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
2d112de7 13065 pipe_config->base.adjusted_mode.crtc_clock, dotclock);
18442d08
VS
13066}
13067
80715b2f
VS
13068static void update_scanline_offset(struct intel_crtc *crtc)
13069{
13070 struct drm_device *dev = crtc->base.dev;
13071
13072 /*
13073 * The scanline counter increments at the leading edge of hsync.
13074 *
13075 * On most platforms it starts counting from vtotal-1 on the
13076 * first active line. That means the scanline counter value is
13077 * always one less than what we would expect. Ie. just after
13078 * start of vblank, which also occurs at start of hsync (on the
13079 * last active line), the scanline counter will read vblank_start-1.
13080 *
13081 * On gen2 the scanline counter starts counting from 1 instead
13082 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
13083 * to keep the value positive), instead of adding one.
13084 *
13085 * On HSW+ the behaviour of the scanline counter depends on the output
13086 * type. For DP ports it behaves like most other platforms, but on HDMI
13087 * there's an extra 1 line difference. So we need to add two instead of
13088 * one to the value.
13089 */
13090 if (IS_GEN2(dev)) {
124abe07 13091 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
80715b2f
VS
13092 int vtotal;
13093
124abe07
VS
13094 vtotal = adjusted_mode->crtc_vtotal;
13095 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
80715b2f
VS
13096 vtotal /= 2;
13097
13098 crtc->scanline_offset = vtotal - 1;
13099 } else if (HAS_DDI(dev) &&
409ee761 13100 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI)) {
80715b2f
VS
13101 crtc->scanline_offset = 2;
13102 } else
13103 crtc->scanline_offset = 1;
13104}
13105
ad421372 13106static void intel_modeset_clear_plls(struct drm_atomic_state *state)
ed6739ef 13107{
225da59b 13108 struct drm_device *dev = state->dev;
ed6739ef 13109 struct drm_i915_private *dev_priv = to_i915(dev);
ad421372 13110 struct intel_shared_dpll_config *shared_dpll = NULL;
ed6739ef 13111 struct intel_crtc *intel_crtc;
0a9ab303
ACO
13112 struct intel_crtc_state *intel_crtc_state;
13113 struct drm_crtc *crtc;
13114 struct drm_crtc_state *crtc_state;
0a9ab303 13115 int i;
ed6739ef
ACO
13116
13117 if (!dev_priv->display.crtc_compute_clock)
ad421372 13118 return;
ed6739ef 13119
0a9ab303 13120 for_each_crtc_in_state(state, crtc, crtc_state, i) {
ad421372
ML
13121 int dpll;
13122
0a9ab303 13123 intel_crtc = to_intel_crtc(crtc);
4978cc93 13124 intel_crtc_state = to_intel_crtc_state(crtc_state);
ad421372 13125 dpll = intel_crtc_state->shared_dpll;
0a9ab303 13126
ad421372 13127 if (!needs_modeset(crtc_state) || dpll == DPLL_ID_PRIVATE)
225da59b
ACO
13128 continue;
13129
ad421372 13130 intel_crtc_state->shared_dpll = DPLL_ID_PRIVATE;
0a9ab303 13131
ad421372
ML
13132 if (!shared_dpll)
13133 shared_dpll = intel_atomic_get_shared_dpll_state(state);
ed6739ef 13134
ad421372
ML
13135 shared_dpll[dpll].crtc_mask &= ~(1 << intel_crtc->pipe);
13136 }
ed6739ef
ACO
13137}
13138
99d736a2
ML
13139/*
13140 * This implements the workaround described in the "notes" section of the mode
13141 * set sequence documentation. When going from no pipes or single pipe to
13142 * multiple pipes, and planes are enabled after the pipe, we need to wait at
13143 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
13144 */
13145static int haswell_mode_set_planes_workaround(struct drm_atomic_state *state)
13146{
13147 struct drm_crtc_state *crtc_state;
13148 struct intel_crtc *intel_crtc;
13149 struct drm_crtc *crtc;
13150 struct intel_crtc_state *first_crtc_state = NULL;
13151 struct intel_crtc_state *other_crtc_state = NULL;
13152 enum pipe first_pipe = INVALID_PIPE, enabled_pipe = INVALID_PIPE;
13153 int i;
13154
13155 /* look at all crtc's that are going to be enabled in during modeset */
13156 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13157 intel_crtc = to_intel_crtc(crtc);
13158
13159 if (!crtc_state->active || !needs_modeset(crtc_state))
13160 continue;
13161
13162 if (first_crtc_state) {
13163 other_crtc_state = to_intel_crtc_state(crtc_state);
13164 break;
13165 } else {
13166 first_crtc_state = to_intel_crtc_state(crtc_state);
13167 first_pipe = intel_crtc->pipe;
13168 }
13169 }
13170
13171 /* No workaround needed? */
13172 if (!first_crtc_state)
13173 return 0;
13174
13175 /* w/a possibly needed, check how many crtc's are already enabled. */
13176 for_each_intel_crtc(state->dev, intel_crtc) {
13177 struct intel_crtc_state *pipe_config;
13178
13179 pipe_config = intel_atomic_get_crtc_state(state, intel_crtc);
13180 if (IS_ERR(pipe_config))
13181 return PTR_ERR(pipe_config);
13182
13183 pipe_config->hsw_workaround_pipe = INVALID_PIPE;
13184
13185 if (!pipe_config->base.active ||
13186 needs_modeset(&pipe_config->base))
13187 continue;
13188
13189 /* 2 or more enabled crtcs means no need for w/a */
13190 if (enabled_pipe != INVALID_PIPE)
13191 return 0;
13192
13193 enabled_pipe = intel_crtc->pipe;
13194 }
13195
13196 if (enabled_pipe != INVALID_PIPE)
13197 first_crtc_state->hsw_workaround_pipe = enabled_pipe;
13198 else if (other_crtc_state)
13199 other_crtc_state->hsw_workaround_pipe = first_pipe;
13200
13201 return 0;
13202}
13203
27c329ed
ML
13204static int intel_modeset_all_pipes(struct drm_atomic_state *state)
13205{
13206 struct drm_crtc *crtc;
13207 struct drm_crtc_state *crtc_state;
13208 int ret = 0;
13209
13210 /* add all active pipes to the state */
13211 for_each_crtc(state->dev, crtc) {
13212 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13213 if (IS_ERR(crtc_state))
13214 return PTR_ERR(crtc_state);
13215
13216 if (!crtc_state->active || needs_modeset(crtc_state))
13217 continue;
13218
13219 crtc_state->mode_changed = true;
13220
13221 ret = drm_atomic_add_affected_connectors(state, crtc);
13222 if (ret)
13223 break;
13224
13225 ret = drm_atomic_add_affected_planes(state, crtc);
13226 if (ret)
13227 break;
13228 }
13229
13230 return ret;
13231}
13232
c347a676 13233static int intel_modeset_checks(struct drm_atomic_state *state)
054518dd 13234{
565602d7
ML
13235 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
13236 struct drm_i915_private *dev_priv = state->dev->dev_private;
13237 struct drm_crtc *crtc;
13238 struct drm_crtc_state *crtc_state;
13239 int ret = 0, i;
054518dd 13240
b359283a
ML
13241 if (!check_digital_port_conflicts(state)) {
13242 DRM_DEBUG_KMS("rejecting conflicting digital port configuration\n");
13243 return -EINVAL;
13244 }
13245
565602d7
ML
13246 intel_state->modeset = true;
13247 intel_state->active_crtcs = dev_priv->active_crtcs;
13248
13249 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13250 if (crtc_state->active)
13251 intel_state->active_crtcs |= 1 << i;
13252 else
13253 intel_state->active_crtcs &= ~(1 << i);
13254 }
13255
054518dd
ACO
13256 /*
13257 * See if the config requires any additional preparation, e.g.
13258 * to adjust global state with pipes off. We need to do this
13259 * here so we can get the modeset_pipe updated config for the new
13260 * mode set on this crtc. For other crtcs we need to use the
13261 * adjusted_mode bits in the crtc directly.
13262 */
27c329ed
ML
13263 if (dev_priv->display.modeset_calc_cdclk) {
13264 unsigned int cdclk;
b432e5cf 13265
27c329ed
ML
13266 ret = dev_priv->display.modeset_calc_cdclk(state);
13267
13268 cdclk = to_intel_atomic_state(state)->cdclk;
13269 if (!ret && cdclk != dev_priv->cdclk_freq)
13270 ret = intel_modeset_all_pipes(state);
13271
13272 if (ret < 0)
054518dd 13273 return ret;
27c329ed
ML
13274 } else
13275 to_intel_atomic_state(state)->cdclk = dev_priv->cdclk_freq;
054518dd 13276
ad421372 13277 intel_modeset_clear_plls(state);
054518dd 13278
565602d7 13279 if (IS_HASWELL(dev_priv))
ad421372 13280 return haswell_mode_set_planes_workaround(state);
99d736a2 13281
ad421372 13282 return 0;
c347a676
ACO
13283}
13284
aa363136
MR
13285/*
13286 * Handle calculation of various watermark data at the end of the atomic check
13287 * phase. The code here should be run after the per-crtc and per-plane 'check'
13288 * handlers to ensure that all derived state has been updated.
13289 */
13290static void calc_watermark_data(struct drm_atomic_state *state)
13291{
13292 struct drm_device *dev = state->dev;
13293 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
13294 struct drm_crtc *crtc;
13295 struct drm_crtc_state *cstate;
13296 struct drm_plane *plane;
13297 struct drm_plane_state *pstate;
13298
13299 /*
13300 * Calculate watermark configuration details now that derived
13301 * plane/crtc state is all properly updated.
13302 */
13303 drm_for_each_crtc(crtc, dev) {
13304 cstate = drm_atomic_get_existing_crtc_state(state, crtc) ?:
13305 crtc->state;
13306
13307 if (cstate->active)
13308 intel_state->wm_config.num_pipes_active++;
13309 }
13310 drm_for_each_legacy_plane(plane, dev) {
13311 pstate = drm_atomic_get_existing_plane_state(state, plane) ?:
13312 plane->state;
13313
13314 if (!to_intel_plane_state(pstate)->visible)
13315 continue;
13316
13317 intel_state->wm_config.sprites_enabled = true;
13318 if (pstate->crtc_w != pstate->src_w >> 16 ||
13319 pstate->crtc_h != pstate->src_h >> 16)
13320 intel_state->wm_config.sprites_scaled = true;
13321 }
13322}
13323
74c090b1
ML
13324/**
13325 * intel_atomic_check - validate state object
13326 * @dev: drm device
13327 * @state: state to validate
13328 */
13329static int intel_atomic_check(struct drm_device *dev,
13330 struct drm_atomic_state *state)
c347a676 13331{
aa363136 13332 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
c347a676
ACO
13333 struct drm_crtc *crtc;
13334 struct drm_crtc_state *crtc_state;
13335 int ret, i;
61333b60 13336 bool any_ms = false;
c347a676 13337
74c090b1 13338 ret = drm_atomic_helper_check_modeset(dev, state);
054518dd
ACO
13339 if (ret)
13340 return ret;
13341
c347a676 13342 for_each_crtc_in_state(state, crtc, crtc_state, i) {
cfb23ed6
ML
13343 struct intel_crtc_state *pipe_config =
13344 to_intel_crtc_state(crtc_state);
1ed51de9 13345
ba8af3e5
ML
13346 memset(&to_intel_crtc(crtc)->atomic, 0,
13347 sizeof(struct intel_crtc_atomic_commit));
13348
1ed51de9
DV
13349 /* Catch I915_MODE_FLAG_INHERITED */
13350 if (crtc_state->mode.private_flags != crtc->state->mode.private_flags)
13351 crtc_state->mode_changed = true;
cfb23ed6 13352
61333b60
ML
13353 if (!crtc_state->enable) {
13354 if (needs_modeset(crtc_state))
13355 any_ms = true;
c347a676 13356 continue;
61333b60 13357 }
c347a676 13358
26495481 13359 if (!needs_modeset(crtc_state))
cfb23ed6
ML
13360 continue;
13361
26495481
DV
13362 /* FIXME: For only active_changed we shouldn't need to do any
13363 * state recomputation at all. */
13364
1ed51de9
DV
13365 ret = drm_atomic_add_affected_connectors(state, crtc);
13366 if (ret)
13367 return ret;
b359283a 13368
cfb23ed6 13369 ret = intel_modeset_pipe_config(crtc, pipe_config);
c347a676
ACO
13370 if (ret)
13371 return ret;
13372
73831236
JN
13373 if (i915.fastboot &&
13374 intel_pipe_config_compare(state->dev,
cfb23ed6 13375 to_intel_crtc_state(crtc->state),
1ed51de9 13376 pipe_config, true)) {
26495481 13377 crtc_state->mode_changed = false;
bfd16b2a 13378 to_intel_crtc_state(crtc_state)->update_pipe = true;
26495481
DV
13379 }
13380
13381 if (needs_modeset(crtc_state)) {
13382 any_ms = true;
cfb23ed6
ML
13383
13384 ret = drm_atomic_add_affected_planes(state, crtc);
13385 if (ret)
13386 return ret;
13387 }
61333b60 13388
26495481
DV
13389 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
13390 needs_modeset(crtc_state) ?
13391 "[modeset]" : "[fastset]");
c347a676
ACO
13392 }
13393
61333b60
ML
13394 if (any_ms) {
13395 ret = intel_modeset_checks(state);
13396
13397 if (ret)
13398 return ret;
27c329ed 13399 } else
aa363136 13400 intel_state->cdclk = to_i915(state->dev)->cdclk_freq;
76305b1a 13401
aa363136
MR
13402 ret = drm_atomic_helper_check_planes(state->dev, state);
13403 if (ret)
13404 return ret;
13405
13406 calc_watermark_data(state);
13407
13408 return 0;
054518dd
ACO
13409}
13410
5008e874
ML
13411static int intel_atomic_prepare_commit(struct drm_device *dev,
13412 struct drm_atomic_state *state,
13413 bool async)
13414{
7580d774
ML
13415 struct drm_i915_private *dev_priv = dev->dev_private;
13416 struct drm_plane_state *plane_state;
5008e874 13417 struct drm_crtc_state *crtc_state;
7580d774 13418 struct drm_plane *plane;
5008e874
ML
13419 struct drm_crtc *crtc;
13420 int i, ret;
13421
13422 if (async) {
13423 DRM_DEBUG_KMS("i915 does not yet support async commit\n");
13424 return -EINVAL;
13425 }
13426
13427 for_each_crtc_in_state(state, crtc, crtc_state, i) {
13428 ret = intel_crtc_wait_for_pending_flips(crtc);
13429 if (ret)
13430 return ret;
7580d774
ML
13431
13432 if (atomic_read(&to_intel_crtc(crtc)->unpin_work_count) >= 2)
13433 flush_workqueue(dev_priv->wq);
5008e874
ML
13434 }
13435
f935675f
ML
13436 ret = mutex_lock_interruptible(&dev->struct_mutex);
13437 if (ret)
13438 return ret;
13439
5008e874 13440 ret = drm_atomic_helper_prepare_planes(dev, state);
7580d774
ML
13441 if (!ret && !async && !i915_reset_in_progress(&dev_priv->gpu_error)) {
13442 u32 reset_counter;
13443
13444 reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
13445 mutex_unlock(&dev->struct_mutex);
13446
13447 for_each_plane_in_state(state, plane, plane_state, i) {
13448 struct intel_plane_state *intel_plane_state =
13449 to_intel_plane_state(plane_state);
13450
13451 if (!intel_plane_state->wait_req)
13452 continue;
13453
13454 ret = __i915_wait_request(intel_plane_state->wait_req,
13455 reset_counter, true,
13456 NULL, NULL);
13457
13458 /* Swallow -EIO errors to allow updates during hw lockup. */
13459 if (ret == -EIO)
13460 ret = 0;
13461
13462 if (ret)
13463 break;
13464 }
13465
13466 if (!ret)
13467 return 0;
13468
13469 mutex_lock(&dev->struct_mutex);
13470 drm_atomic_helper_cleanup_planes(dev, state);
13471 }
5008e874 13472
f935675f 13473 mutex_unlock(&dev->struct_mutex);
5008e874
ML
13474 return ret;
13475}
13476
74c090b1
ML
13477/**
13478 * intel_atomic_commit - commit validated state object
13479 * @dev: DRM device
13480 * @state: the top-level driver state object
13481 * @async: asynchronous commit
13482 *
13483 * This function commits a top-level state object that has been validated
13484 * with drm_atomic_helper_check().
13485 *
13486 * FIXME: Atomic modeset support for i915 is not yet complete. At the moment
13487 * we can only handle plane-related operations and do not yet support
13488 * asynchronous commit.
13489 *
13490 * RETURNS
13491 * Zero for success or -errno.
13492 */
13493static int intel_atomic_commit(struct drm_device *dev,
13494 struct drm_atomic_state *state,
13495 bool async)
a6778b3c 13496{
565602d7 13497 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
fbee40df 13498 struct drm_i915_private *dev_priv = dev->dev_private;
0a9ab303 13499 struct drm_crtc_state *crtc_state;
7580d774 13500 struct drm_crtc *crtc;
565602d7
ML
13501 int ret = 0, i;
13502 bool hw_check = intel_state->modeset;
a6778b3c 13503
5008e874 13504 ret = intel_atomic_prepare_commit(dev, state, async);
7580d774
ML
13505 if (ret) {
13506 DRM_DEBUG_ATOMIC("Preparing state failed with %i\n", ret);
d4afb8cc 13507 return ret;
7580d774 13508 }
d4afb8cc 13509
1c5e19f8 13510 drm_atomic_helper_swap_state(dev, state);
aa363136 13511 dev_priv->wm.config = to_intel_atomic_state(state)->wm_config;
1c5e19f8 13512
565602d7
ML
13513 if (intel_state->modeset) {
13514 memcpy(dev_priv->min_pixclk, intel_state->min_pixclk,
13515 sizeof(intel_state->min_pixclk));
13516 dev_priv->active_crtcs = intel_state->active_crtcs;
13517 }
13518
0a9ab303 13519 for_each_crtc_in_state(state, crtc, crtc_state, i) {
a539205a
ML
13520 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13521
61333b60
ML
13522 if (!needs_modeset(crtc->state))
13523 continue;
13524
a539205a 13525 intel_pre_plane_update(intel_crtc);
460da916 13526
a539205a
ML
13527 if (crtc_state->active) {
13528 intel_crtc_disable_planes(crtc, crtc_state->plane_mask);
13529 dev_priv->display.crtc_disable(crtc);
eddfcbcd
ML
13530 intel_crtc->active = false;
13531 intel_disable_shared_dpll(intel_crtc);
9bbc8258
VS
13532
13533 /*
13534 * Underruns don't always raise
13535 * interrupts, so check manually.
13536 */
13537 intel_check_cpu_fifo_underruns(dev_priv);
13538 intel_check_pch_fifo_underruns(dev_priv);
b9001114
ML
13539
13540 if (!crtc->state->active)
13541 intel_update_watermarks(crtc);
a539205a 13542 }
b8cecdf5 13543 }
7758a113 13544
ea9d758d
DV
13545 /* Only after disabling all output pipelines that will be changed can we
13546 * update the the output configuration. */
4740b0f2 13547 intel_modeset_update_crtc_state(state);
f6e5b160 13548
565602d7 13549 if (intel_state->modeset) {
4740b0f2
ML
13550 intel_shared_dpll_commit(state);
13551
13552 drm_atomic_helper_update_legacy_modeset_state(state->dev, state);
61333b60 13553 modeset_update_crtc_power_domains(state);
4740b0f2 13554 }
47fab737 13555
a6778b3c 13556 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
0a9ab303 13557 for_each_crtc_in_state(state, crtc, crtc_state, i) {
f6ac4b2a
ML
13558 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
13559 bool modeset = needs_modeset(crtc->state);
bfd16b2a
ML
13560 bool update_pipe = !modeset &&
13561 to_intel_crtc_state(crtc->state)->update_pipe;
13562 unsigned long put_domains = 0;
f6ac4b2a 13563
9f836f90
PJ
13564 if (modeset)
13565 intel_display_power_get(dev_priv, POWER_DOMAIN_MODESET);
13566
f6ac4b2a 13567 if (modeset && crtc->state->active) {
a539205a
ML
13568 update_scanline_offset(to_intel_crtc(crtc));
13569 dev_priv->display.crtc_enable(crtc);
13570 }
80715b2f 13571
bfd16b2a
ML
13572 if (update_pipe) {
13573 put_domains = modeset_get_crtc_power_domains(crtc);
13574
13575 /* make sure intel_modeset_check_state runs */
565602d7 13576 hw_check = true;
bfd16b2a
ML
13577 }
13578
f6ac4b2a
ML
13579 if (!modeset)
13580 intel_pre_plane_update(intel_crtc);
13581
6173ee28
ML
13582 if (crtc->state->active &&
13583 (crtc->state->planes_changed || update_pipe))
62852622 13584 drm_atomic_helper_commit_planes_on_crtc(crtc_state);
bfd16b2a
ML
13585
13586 if (put_domains)
13587 modeset_put_power_domains(dev_priv, put_domains);
13588
f6ac4b2a 13589 intel_post_plane_update(intel_crtc);
9f836f90
PJ
13590
13591 if (modeset)
13592 intel_display_power_put(dev_priv, POWER_DOMAIN_MODESET);
80715b2f 13593 }
a6778b3c 13594
a6778b3c 13595 /* FIXME: add subpixel order */
83a57153 13596
74c090b1 13597 drm_atomic_helper_wait_for_vblanks(dev, state);
f935675f
ML
13598
13599 mutex_lock(&dev->struct_mutex);
d4afb8cc 13600 drm_atomic_helper_cleanup_planes(dev, state);
f935675f 13601 mutex_unlock(&dev->struct_mutex);
2bfb4627 13602
565602d7 13603 if (hw_check)
ee165b1a
ML
13604 intel_modeset_check_state(dev, state);
13605
13606 drm_atomic_state_free(state);
f30da187 13607
74c090b1 13608 return 0;
7f27126e
JB
13609}
13610
c0c36b94
CW
13611void intel_crtc_restore_mode(struct drm_crtc *crtc)
13612{
83a57153
ACO
13613 struct drm_device *dev = crtc->dev;
13614 struct drm_atomic_state *state;
e694eb02 13615 struct drm_crtc_state *crtc_state;
2bfb4627 13616 int ret;
83a57153
ACO
13617
13618 state = drm_atomic_state_alloc(dev);
13619 if (!state) {
e694eb02 13620 DRM_DEBUG_KMS("[CRTC:%d] crtc restore failed, out of memory",
83a57153
ACO
13621 crtc->base.id);
13622 return;
13623 }
13624
e694eb02 13625 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(crtc);
83a57153 13626
e694eb02
ML
13627retry:
13628 crtc_state = drm_atomic_get_crtc_state(state, crtc);
13629 ret = PTR_ERR_OR_ZERO(crtc_state);
13630 if (!ret) {
13631 if (!crtc_state->active)
13632 goto out;
83a57153 13633
e694eb02 13634 crtc_state->mode_changed = true;
74c090b1 13635 ret = drm_atomic_commit(state);
83a57153
ACO
13636 }
13637
e694eb02
ML
13638 if (ret == -EDEADLK) {
13639 drm_atomic_state_clear(state);
13640 drm_modeset_backoff(state->acquire_ctx);
13641 goto retry;
4ed9fb37 13642 }
4be07317 13643
2bfb4627 13644 if (ret)
e694eb02 13645out:
2bfb4627 13646 drm_atomic_state_free(state);
c0c36b94
CW
13647}
13648
25c5b266
DV
13649#undef for_each_intel_crtc_masked
13650
f6e5b160 13651static const struct drm_crtc_funcs intel_crtc_funcs = {
f6e5b160 13652 .gamma_set = intel_crtc_gamma_set,
74c090b1 13653 .set_config = drm_atomic_helper_set_config,
f6e5b160
CW
13654 .destroy = intel_crtc_destroy,
13655 .page_flip = intel_crtc_page_flip,
1356837e
MR
13656 .atomic_duplicate_state = intel_crtc_duplicate_state,
13657 .atomic_destroy_state = intel_crtc_destroy_state,
f6e5b160
CW
13658};
13659
5358901f
DV
13660static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
13661 struct intel_shared_dpll *pll,
13662 struct intel_dpll_hw_state *hw_state)
ee7b9f93 13663{
5358901f 13664 uint32_t val;
ee7b9f93 13665
f458ebbc 13666 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PLLS))
bd2bb1b9
PZ
13667 return false;
13668
5358901f 13669 val = I915_READ(PCH_DPLL(pll->id));
66e985c0
DV
13670 hw_state->dpll = val;
13671 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
13672 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
5358901f
DV
13673
13674 return val & DPLL_VCO_ENABLE;
13675}
13676
15bdd4cf
DV
13677static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
13678 struct intel_shared_dpll *pll)
13679{
3e369b76
ACO
13680 I915_WRITE(PCH_FP0(pll->id), pll->config.hw_state.fp0);
13681 I915_WRITE(PCH_FP1(pll->id), pll->config.hw_state.fp1);
15bdd4cf
DV
13682}
13683
e7b903d2
DV
13684static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
13685 struct intel_shared_dpll *pll)
13686{
e7b903d2 13687 /* PCH refclock must be enabled first */
89eff4be 13688 ibx_assert_pch_refclk_enabled(dev_priv);
e7b903d2 13689
3e369b76 13690 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
15bdd4cf
DV
13691
13692 /* Wait for the clocks to stabilize. */
13693 POSTING_READ(PCH_DPLL(pll->id));
13694 udelay(150);
13695
13696 /* The pixel multiplier can only be updated once the
13697 * DPLL is enabled and the clocks are stable.
13698 *
13699 * So write it again.
13700 */
3e369b76 13701 I915_WRITE(PCH_DPLL(pll->id), pll->config.hw_state.dpll);
15bdd4cf 13702 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
13703 udelay(200);
13704}
13705
13706static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
13707 struct intel_shared_dpll *pll)
13708{
13709 struct drm_device *dev = dev_priv->dev;
13710 struct intel_crtc *crtc;
e7b903d2
DV
13711
13712 /* Make sure no transcoder isn't still depending on us. */
d3fcc808 13713 for_each_intel_crtc(dev, crtc) {
e7b903d2
DV
13714 if (intel_crtc_to_shared_dpll(crtc) == pll)
13715 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
ee7b9f93
JB
13716 }
13717
15bdd4cf
DV
13718 I915_WRITE(PCH_DPLL(pll->id), 0);
13719 POSTING_READ(PCH_DPLL(pll->id));
e7b903d2
DV
13720 udelay(200);
13721}
13722
46edb027
DV
13723static char *ibx_pch_dpll_names[] = {
13724 "PCH DPLL A",
13725 "PCH DPLL B",
13726};
13727
7c74ade1 13728static void ibx_pch_dpll_init(struct drm_device *dev)
ee7b9f93 13729{
e7b903d2 13730 struct drm_i915_private *dev_priv = dev->dev_private;
ee7b9f93
JB
13731 int i;
13732
7c74ade1 13733 dev_priv->num_shared_dpll = 2;
ee7b9f93 13734
e72f9fbf 13735 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
46edb027
DV
13736 dev_priv->shared_dplls[i].id = i;
13737 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
15bdd4cf 13738 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
e7b903d2
DV
13739 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
13740 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
5358901f
DV
13741 dev_priv->shared_dplls[i].get_hw_state =
13742 ibx_pch_dpll_get_hw_state;
ee7b9f93
JB
13743 }
13744}
13745
7c74ade1
DV
13746static void intel_shared_dpll_init(struct drm_device *dev)
13747{
e7b903d2 13748 struct drm_i915_private *dev_priv = dev->dev_private;
7c74ade1 13749
9cd86933
DV
13750 if (HAS_DDI(dev))
13751 intel_ddi_pll_init(dev);
13752 else if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
7c74ade1
DV
13753 ibx_pch_dpll_init(dev);
13754 else
13755 dev_priv->num_shared_dpll = 0;
13756
13757 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
7c74ade1
DV
13758}
13759
6beb8c23
MR
13760/**
13761 * intel_prepare_plane_fb - Prepare fb for usage on plane
13762 * @plane: drm plane to prepare for
13763 * @fb: framebuffer to prepare for presentation
13764 *
13765 * Prepares a framebuffer for usage on a display plane. Generally this
13766 * involves pinning the underlying object and updating the frontbuffer tracking
13767 * bits. Some older platforms need special physical address handling for
13768 * cursor planes.
13769 *
f935675f
ML
13770 * Must be called with struct_mutex held.
13771 *
6beb8c23
MR
13772 * Returns 0 on success, negative error code on failure.
13773 */
13774int
13775intel_prepare_plane_fb(struct drm_plane *plane,
d136dfee 13776 const struct drm_plane_state *new_state)
465c120c
MR
13777{
13778 struct drm_device *dev = plane->dev;
844f9111 13779 struct drm_framebuffer *fb = new_state->fb;
6beb8c23 13780 struct intel_plane *intel_plane = to_intel_plane(plane);
6beb8c23 13781 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
1ee49399 13782 struct drm_i915_gem_object *old_obj = intel_fb_obj(plane->state->fb);
6beb8c23 13783 int ret = 0;
465c120c 13784
1ee49399 13785 if (!obj && !old_obj)
465c120c
MR
13786 return 0;
13787
5008e874
ML
13788 if (old_obj) {
13789 struct drm_crtc_state *crtc_state =
13790 drm_atomic_get_existing_crtc_state(new_state->state, plane->state->crtc);
13791
13792 /* Big Hammer, we also need to ensure that any pending
13793 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
13794 * current scanout is retired before unpinning the old
13795 * framebuffer. Note that we rely on userspace rendering
13796 * into the buffer attached to the pipe they are waiting
13797 * on. If not, userspace generates a GPU hang with IPEHR
13798 * point to the MI_WAIT_FOR_EVENT.
13799 *
13800 * This should only fail upon a hung GPU, in which case we
13801 * can safely continue.
13802 */
13803 if (needs_modeset(crtc_state))
13804 ret = i915_gem_object_wait_rendering(old_obj, true);
13805
13806 /* Swallow -EIO errors to allow updates during hw lockup. */
13807 if (ret && ret != -EIO)
f935675f 13808 return ret;
5008e874
ML
13809 }
13810
3c28ff22
AG
13811 /* For framebuffer backed by dmabuf, wait for fence */
13812 if (obj && obj->base.dma_buf) {
13813 ret = reservation_object_wait_timeout_rcu(obj->base.dma_buf->resv,
13814 false, true,
13815 MAX_SCHEDULE_TIMEOUT);
13816 if (ret == -ERESTARTSYS)
13817 return ret;
13818
13819 WARN_ON(ret < 0);
13820 }
13821
1ee49399
ML
13822 if (!obj) {
13823 ret = 0;
13824 } else if (plane->type == DRM_PLANE_TYPE_CURSOR &&
6beb8c23
MR
13825 INTEL_INFO(dev)->cursor_needs_physical) {
13826 int align = IS_I830(dev) ? 16 * 1024 : 256;
13827 ret = i915_gem_object_attach_phys(obj, align);
13828 if (ret)
13829 DRM_DEBUG_KMS("failed to attach phys object\n");
13830 } else {
7580d774 13831 ret = intel_pin_and_fence_fb_obj(plane, fb, new_state);
6beb8c23 13832 }
465c120c 13833
7580d774
ML
13834 if (ret == 0) {
13835 if (obj) {
13836 struct intel_plane_state *plane_state =
13837 to_intel_plane_state(new_state);
13838
13839 i915_gem_request_assign(&plane_state->wait_req,
13840 obj->last_write_req);
13841 }
13842
a9ff8714 13843 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
7580d774 13844 }
fdd508a6 13845
6beb8c23
MR
13846 return ret;
13847}
13848
38f3ce3a
MR
13849/**
13850 * intel_cleanup_plane_fb - Cleans up an fb after plane use
13851 * @plane: drm plane to clean up for
13852 * @fb: old framebuffer that was on plane
13853 *
13854 * Cleans up a framebuffer that has just been removed from a plane.
f935675f
ML
13855 *
13856 * Must be called with struct_mutex held.
38f3ce3a
MR
13857 */
13858void
13859intel_cleanup_plane_fb(struct drm_plane *plane,
d136dfee 13860 const struct drm_plane_state *old_state)
38f3ce3a
MR
13861{
13862 struct drm_device *dev = plane->dev;
1ee49399 13863 struct intel_plane *intel_plane = to_intel_plane(plane);
7580d774 13864 struct intel_plane_state *old_intel_state;
1ee49399
ML
13865 struct drm_i915_gem_object *old_obj = intel_fb_obj(old_state->fb);
13866 struct drm_i915_gem_object *obj = intel_fb_obj(plane->state->fb);
38f3ce3a 13867
7580d774
ML
13868 old_intel_state = to_intel_plane_state(old_state);
13869
1ee49399 13870 if (!obj && !old_obj)
38f3ce3a
MR
13871 return;
13872
1ee49399
ML
13873 if (old_obj && (plane->type != DRM_PLANE_TYPE_CURSOR ||
13874 !INTEL_INFO(dev)->cursor_needs_physical))
844f9111 13875 intel_unpin_fb_obj(old_state->fb, old_state);
1ee49399
ML
13876
13877 /* prepare_fb aborted? */
13878 if ((old_obj && (old_obj->frontbuffer_bits & intel_plane->frontbuffer_bit)) ||
13879 (obj && !(obj->frontbuffer_bits & intel_plane->frontbuffer_bit)))
13880 i915_gem_track_fb(old_obj, obj, intel_plane->frontbuffer_bit);
7580d774
ML
13881
13882 i915_gem_request_assign(&old_intel_state->wait_req, NULL);
13883
465c120c
MR
13884}
13885
6156a456
CK
13886int
13887skl_max_scale(struct intel_crtc *intel_crtc, struct intel_crtc_state *crtc_state)
13888{
13889 int max_scale;
13890 struct drm_device *dev;
13891 struct drm_i915_private *dev_priv;
13892 int crtc_clock, cdclk;
13893
bf8a0af0 13894 if (!intel_crtc || !crtc_state->base.enable)
6156a456
CK
13895 return DRM_PLANE_HELPER_NO_SCALING;
13896
13897 dev = intel_crtc->base.dev;
13898 dev_priv = dev->dev_private;
13899 crtc_clock = crtc_state->base.adjusted_mode.crtc_clock;
27c329ed 13900 cdclk = to_intel_atomic_state(crtc_state->base.state)->cdclk;
6156a456 13901
54bf1ce6 13902 if (WARN_ON_ONCE(!crtc_clock || cdclk < crtc_clock))
6156a456
CK
13903 return DRM_PLANE_HELPER_NO_SCALING;
13904
13905 /*
13906 * skl max scale is lower of:
13907 * close to 3 but not 3, -1 is for that purpose
13908 * or
13909 * cdclk/crtc_clock
13910 */
13911 max_scale = min((1 << 16) * 3 - 1, (1 << 8) * ((cdclk << 8) / crtc_clock));
13912
13913 return max_scale;
13914}
13915
465c120c 13916static int
3c692a41 13917intel_check_primary_plane(struct drm_plane *plane,
061e4b8d 13918 struct intel_crtc_state *crtc_state,
3c692a41
GP
13919 struct intel_plane_state *state)
13920{
2b875c22
MR
13921 struct drm_crtc *crtc = state->base.crtc;
13922 struct drm_framebuffer *fb = state->base.fb;
6156a456 13923 int min_scale = DRM_PLANE_HELPER_NO_SCALING;
061e4b8d
ML
13924 int max_scale = DRM_PLANE_HELPER_NO_SCALING;
13925 bool can_position = false;
465c120c 13926
061e4b8d
ML
13927 /* use scaler when colorkey is not required */
13928 if (INTEL_INFO(plane->dev)->gen >= 9 &&
818ed961 13929 state->ckey.flags == I915_SET_COLORKEY_NONE) {
061e4b8d
ML
13930 min_scale = 1;
13931 max_scale = skl_max_scale(to_intel_crtc(crtc), crtc_state);
d8106366 13932 can_position = true;
6156a456 13933 }
d8106366 13934
061e4b8d
ML
13935 return drm_plane_helper_check_update(plane, crtc, fb, &state->src,
13936 &state->dst, &state->clip,
da20eabd
ML
13937 min_scale, max_scale,
13938 can_position, true,
13939 &state->visible);
14af293f
GP
13940}
13941
13942static void
13943intel_commit_primary_plane(struct drm_plane *plane,
13944 struct intel_plane_state *state)
13945{
2b875c22
MR
13946 struct drm_crtc *crtc = state->base.crtc;
13947 struct drm_framebuffer *fb = state->base.fb;
13948 struct drm_device *dev = plane->dev;
14af293f 13949 struct drm_i915_private *dev_priv = dev->dev_private;
14af293f 13950
ea2c67bb 13951 crtc = crtc ? crtc : plane->crtc;
ccc759dc 13952
d4b08630
ML
13953 dev_priv->display.update_primary_plane(crtc, fb,
13954 state->src.x1 >> 16,
13955 state->src.y1 >> 16);
465c120c
MR
13956}
13957
a8ad0d8e
ML
13958static void
13959intel_disable_primary_plane(struct drm_plane *plane,
7fabf5ef 13960 struct drm_crtc *crtc)
a8ad0d8e
ML
13961{
13962 struct drm_device *dev = plane->dev;
13963 struct drm_i915_private *dev_priv = dev->dev_private;
13964
a8ad0d8e
ML
13965 dev_priv->display.update_primary_plane(crtc, NULL, 0, 0);
13966}
13967
613d2b27
ML
13968static void intel_begin_crtc_commit(struct drm_crtc *crtc,
13969 struct drm_crtc_state *old_crtc_state)
3c692a41 13970{
32b7eeec 13971 struct drm_device *dev = crtc->dev;
3c692a41 13972 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
bfd16b2a
ML
13973 struct intel_crtc_state *old_intel_state =
13974 to_intel_crtc_state(old_crtc_state);
13975 bool modeset = needs_modeset(crtc->state);
3c692a41 13976
c34c9ee4 13977 /* Perform vblank evasion around commit operation */
62852622 13978 intel_pipe_update_start(intel_crtc);
0583236e 13979
bfd16b2a
ML
13980 if (modeset)
13981 return;
13982
13983 if (to_intel_crtc_state(crtc->state)->update_pipe)
13984 intel_update_pipe_config(intel_crtc, old_intel_state);
13985 else if (INTEL_INFO(dev)->gen >= 9)
0583236e 13986 skl_detach_scalers(intel_crtc);
32b7eeec
MR
13987}
13988
613d2b27
ML
13989static void intel_finish_crtc_commit(struct drm_crtc *crtc,
13990 struct drm_crtc_state *old_crtc_state)
32b7eeec 13991{
32b7eeec 13992 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
32b7eeec 13993
62852622 13994 intel_pipe_update_end(intel_crtc);
3c692a41
GP
13995}
13996
cf4c7c12 13997/**
4a3b8769
MR
13998 * intel_plane_destroy - destroy a plane
13999 * @plane: plane to destroy
cf4c7c12 14000 *
4a3b8769
MR
14001 * Common destruction function for all types of planes (primary, cursor,
14002 * sprite).
cf4c7c12 14003 */
4a3b8769 14004void intel_plane_destroy(struct drm_plane *plane)
465c120c
MR
14005{
14006 struct intel_plane *intel_plane = to_intel_plane(plane);
14007 drm_plane_cleanup(plane);
14008 kfree(intel_plane);
14009}
14010
65a3fea0 14011const struct drm_plane_funcs intel_plane_funcs = {
70a101f8
MR
14012 .update_plane = drm_atomic_helper_update_plane,
14013 .disable_plane = drm_atomic_helper_disable_plane,
3d7d6510 14014 .destroy = intel_plane_destroy,
c196e1d6 14015 .set_property = drm_atomic_helper_plane_set_property,
a98b3431
MR
14016 .atomic_get_property = intel_plane_atomic_get_property,
14017 .atomic_set_property = intel_plane_atomic_set_property,
ea2c67bb
MR
14018 .atomic_duplicate_state = intel_plane_duplicate_state,
14019 .atomic_destroy_state = intel_plane_destroy_state,
14020
465c120c
MR
14021};
14022
14023static struct drm_plane *intel_primary_plane_create(struct drm_device *dev,
14024 int pipe)
14025{
14026 struct intel_plane *primary;
8e7d688b 14027 struct intel_plane_state *state;
465c120c 14028 const uint32_t *intel_primary_formats;
45e3743a 14029 unsigned int num_formats;
465c120c
MR
14030
14031 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
14032 if (primary == NULL)
14033 return NULL;
14034
8e7d688b
MR
14035 state = intel_create_plane_state(&primary->base);
14036 if (!state) {
ea2c67bb
MR
14037 kfree(primary);
14038 return NULL;
14039 }
8e7d688b 14040 primary->base.state = &state->base;
ea2c67bb 14041
465c120c
MR
14042 primary->can_scale = false;
14043 primary->max_downscale = 1;
6156a456
CK
14044 if (INTEL_INFO(dev)->gen >= 9) {
14045 primary->can_scale = true;
af99ceda 14046 state->scaler_id = -1;
6156a456 14047 }
465c120c
MR
14048 primary->pipe = pipe;
14049 primary->plane = pipe;
a9ff8714 14050 primary->frontbuffer_bit = INTEL_FRONTBUFFER_PRIMARY(pipe);
c59cb179
MR
14051 primary->check_plane = intel_check_primary_plane;
14052 primary->commit_plane = intel_commit_primary_plane;
a8ad0d8e 14053 primary->disable_plane = intel_disable_primary_plane;
465c120c
MR
14054 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4)
14055 primary->plane = !pipe;
14056
6c0fd451
DL
14057 if (INTEL_INFO(dev)->gen >= 9) {
14058 intel_primary_formats = skl_primary_formats;
14059 num_formats = ARRAY_SIZE(skl_primary_formats);
14060 } else if (INTEL_INFO(dev)->gen >= 4) {
568db4f2
DL
14061 intel_primary_formats = i965_primary_formats;
14062 num_formats = ARRAY_SIZE(i965_primary_formats);
6c0fd451
DL
14063 } else {
14064 intel_primary_formats = i8xx_primary_formats;
14065 num_formats = ARRAY_SIZE(i8xx_primary_formats);
465c120c
MR
14066 }
14067
14068 drm_universal_plane_init(dev, &primary->base, 0,
65a3fea0 14069 &intel_plane_funcs,
465c120c
MR
14070 intel_primary_formats, num_formats,
14071 DRM_PLANE_TYPE_PRIMARY);
48404c1e 14072
3b7a5119
SJ
14073 if (INTEL_INFO(dev)->gen >= 4)
14074 intel_create_rotation_property(dev, primary);
48404c1e 14075
ea2c67bb
MR
14076 drm_plane_helper_add(&primary->base, &intel_plane_helper_funcs);
14077
465c120c
MR
14078 return &primary->base;
14079}
14080
3b7a5119
SJ
14081void intel_create_rotation_property(struct drm_device *dev, struct intel_plane *plane)
14082{
14083 if (!dev->mode_config.rotation_property) {
14084 unsigned long flags = BIT(DRM_ROTATE_0) |
14085 BIT(DRM_ROTATE_180);
14086
14087 if (INTEL_INFO(dev)->gen >= 9)
14088 flags |= BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_270);
14089
14090 dev->mode_config.rotation_property =
14091 drm_mode_create_rotation_property(dev, flags);
14092 }
14093 if (dev->mode_config.rotation_property)
14094 drm_object_attach_property(&plane->base.base,
14095 dev->mode_config.rotation_property,
14096 plane->base.state->rotation);
14097}
14098
3d7d6510 14099static int
852e787c 14100intel_check_cursor_plane(struct drm_plane *plane,
061e4b8d 14101 struct intel_crtc_state *crtc_state,
852e787c 14102 struct intel_plane_state *state)
3d7d6510 14103{
061e4b8d 14104 struct drm_crtc *crtc = crtc_state->base.crtc;
2b875c22 14105 struct drm_framebuffer *fb = state->base.fb;
757f9a3e 14106 struct drm_i915_gem_object *obj = intel_fb_obj(fb);
b29ec92c 14107 enum pipe pipe = to_intel_plane(plane)->pipe;
757f9a3e
GP
14108 unsigned stride;
14109 int ret;
3d7d6510 14110
061e4b8d
ML
14111 ret = drm_plane_helper_check_update(plane, crtc, fb, &state->src,
14112 &state->dst, &state->clip,
3d7d6510
MR
14113 DRM_PLANE_HELPER_NO_SCALING,
14114 DRM_PLANE_HELPER_NO_SCALING,
852e787c 14115 true, true, &state->visible);
757f9a3e
GP
14116 if (ret)
14117 return ret;
14118
757f9a3e
GP
14119 /* if we want to turn off the cursor ignore width and height */
14120 if (!obj)
da20eabd 14121 return 0;
757f9a3e 14122
757f9a3e 14123 /* Check for which cursor types we support */
061e4b8d 14124 if (!cursor_size_ok(plane->dev, state->base.crtc_w, state->base.crtc_h)) {
ea2c67bb
MR
14125 DRM_DEBUG("Cursor dimension %dx%d not supported\n",
14126 state->base.crtc_w, state->base.crtc_h);
757f9a3e
GP
14127 return -EINVAL;
14128 }
14129
ea2c67bb
MR
14130 stride = roundup_pow_of_two(state->base.crtc_w) * 4;
14131 if (obj->base.size < stride * state->base.crtc_h) {
757f9a3e
GP
14132 DRM_DEBUG_KMS("buffer is too small\n");
14133 return -ENOMEM;
14134 }
14135
3a656b54 14136 if (fb->modifier[0] != DRM_FORMAT_MOD_NONE) {
757f9a3e 14137 DRM_DEBUG_KMS("cursor cannot be tiled\n");
da20eabd 14138 return -EINVAL;
32b7eeec
MR
14139 }
14140
b29ec92c
VS
14141 /*
14142 * There's something wrong with the cursor on CHV pipe C.
14143 * If it straddles the left edge of the screen then
14144 * moving it away from the edge or disabling it often
14145 * results in a pipe underrun, and often that can lead to
14146 * dead pipe (constant underrun reported, and it scans
14147 * out just a solid color). To recover from that, the
14148 * display power well must be turned off and on again.
14149 * Refuse the put the cursor into that compromised position.
14150 */
14151 if (IS_CHERRYVIEW(plane->dev) && pipe == PIPE_C &&
14152 state->visible && state->base.crtc_x < 0) {
14153 DRM_DEBUG_KMS("CHV cursor C not allowed to straddle the left screen edge\n");
14154 return -EINVAL;
14155 }
14156
da20eabd 14157 return 0;
852e787c 14158}
3d7d6510 14159
a8ad0d8e
ML
14160static void
14161intel_disable_cursor_plane(struct drm_plane *plane,
7fabf5ef 14162 struct drm_crtc *crtc)
a8ad0d8e 14163{
a8ad0d8e
ML
14164 intel_crtc_update_cursor(crtc, false);
14165}
14166
f4a2cf29 14167static void
852e787c
GP
14168intel_commit_cursor_plane(struct drm_plane *plane,
14169 struct intel_plane_state *state)
14170{
2b875c22 14171 struct drm_crtc *crtc = state->base.crtc;
ea2c67bb
MR
14172 struct drm_device *dev = plane->dev;
14173 struct intel_crtc *intel_crtc;
2b875c22 14174 struct drm_i915_gem_object *obj = intel_fb_obj(state->base.fb);
a912f12f 14175 uint32_t addr;
852e787c 14176
ea2c67bb
MR
14177 crtc = crtc ? crtc : plane->crtc;
14178 intel_crtc = to_intel_crtc(crtc);
14179
f4a2cf29 14180 if (!obj)
a912f12f 14181 addr = 0;
f4a2cf29 14182 else if (!INTEL_INFO(dev)->cursor_needs_physical)
a912f12f 14183 addr = i915_gem_obj_ggtt_offset(obj);
f4a2cf29 14184 else
a912f12f 14185 addr = obj->phys_handle->busaddr;
852e787c 14186
a912f12f 14187 intel_crtc->cursor_addr = addr;
852e787c 14188
62852622 14189 intel_crtc_update_cursor(crtc, state->visible);
852e787c
GP
14190}
14191
3d7d6510
MR
14192static struct drm_plane *intel_cursor_plane_create(struct drm_device *dev,
14193 int pipe)
14194{
14195 struct intel_plane *cursor;
8e7d688b 14196 struct intel_plane_state *state;
3d7d6510
MR
14197
14198 cursor = kzalloc(sizeof(*cursor), GFP_KERNEL);
14199 if (cursor == NULL)
14200 return NULL;
14201
8e7d688b
MR
14202 state = intel_create_plane_state(&cursor->base);
14203 if (!state) {
ea2c67bb
MR
14204 kfree(cursor);
14205 return NULL;
14206 }
8e7d688b 14207 cursor->base.state = &state->base;
ea2c67bb 14208
3d7d6510
MR
14209 cursor->can_scale = false;
14210 cursor->max_downscale = 1;
14211 cursor->pipe = pipe;
14212 cursor->plane = pipe;
a9ff8714 14213 cursor->frontbuffer_bit = INTEL_FRONTBUFFER_CURSOR(pipe);
c59cb179
MR
14214 cursor->check_plane = intel_check_cursor_plane;
14215 cursor->commit_plane = intel_commit_cursor_plane;
a8ad0d8e 14216 cursor->disable_plane = intel_disable_cursor_plane;
3d7d6510
MR
14217
14218 drm_universal_plane_init(dev, &cursor->base, 0,
65a3fea0 14219 &intel_plane_funcs,
3d7d6510
MR
14220 intel_cursor_formats,
14221 ARRAY_SIZE(intel_cursor_formats),
14222 DRM_PLANE_TYPE_CURSOR);
4398ad45
VS
14223
14224 if (INTEL_INFO(dev)->gen >= 4) {
14225 if (!dev->mode_config.rotation_property)
14226 dev->mode_config.rotation_property =
14227 drm_mode_create_rotation_property(dev,
14228 BIT(DRM_ROTATE_0) |
14229 BIT(DRM_ROTATE_180));
14230 if (dev->mode_config.rotation_property)
14231 drm_object_attach_property(&cursor->base.base,
14232 dev->mode_config.rotation_property,
8e7d688b 14233 state->base.rotation);
4398ad45
VS
14234 }
14235
af99ceda
CK
14236 if (INTEL_INFO(dev)->gen >=9)
14237 state->scaler_id = -1;
14238
ea2c67bb
MR
14239 drm_plane_helper_add(&cursor->base, &intel_plane_helper_funcs);
14240
3d7d6510
MR
14241 return &cursor->base;
14242}
14243
549e2bfb
CK
14244static void skl_init_scalers(struct drm_device *dev, struct intel_crtc *intel_crtc,
14245 struct intel_crtc_state *crtc_state)
14246{
14247 int i;
14248 struct intel_scaler *intel_scaler;
14249 struct intel_crtc_scaler_state *scaler_state = &crtc_state->scaler_state;
14250
14251 for (i = 0; i < intel_crtc->num_scalers; i++) {
14252 intel_scaler = &scaler_state->scalers[i];
14253 intel_scaler->in_use = 0;
549e2bfb
CK
14254 intel_scaler->mode = PS_SCALER_MODE_DYN;
14255 }
14256
14257 scaler_state->scaler_id = -1;
14258}
14259
b358d0a6 14260static void intel_crtc_init(struct drm_device *dev, int pipe)
79e53945 14261{
fbee40df 14262 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 14263 struct intel_crtc *intel_crtc;
f5de6e07 14264 struct intel_crtc_state *crtc_state = NULL;
3d7d6510
MR
14265 struct drm_plane *primary = NULL;
14266 struct drm_plane *cursor = NULL;
465c120c 14267 int i, ret;
79e53945 14268
955382f3 14269 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
79e53945
JB
14270 if (intel_crtc == NULL)
14271 return;
14272
f5de6e07
ACO
14273 crtc_state = kzalloc(sizeof(*crtc_state), GFP_KERNEL);
14274 if (!crtc_state)
14275 goto fail;
550acefd
ACO
14276 intel_crtc->config = crtc_state;
14277 intel_crtc->base.state = &crtc_state->base;
07878248 14278 crtc_state->base.crtc = &intel_crtc->base;
f5de6e07 14279
549e2bfb
CK
14280 /* initialize shared scalers */
14281 if (INTEL_INFO(dev)->gen >= 9) {
14282 if (pipe == PIPE_C)
14283 intel_crtc->num_scalers = 1;
14284 else
14285 intel_crtc->num_scalers = SKL_NUM_SCALERS;
14286
14287 skl_init_scalers(dev, intel_crtc, crtc_state);
14288 }
14289
465c120c 14290 primary = intel_primary_plane_create(dev, pipe);
3d7d6510
MR
14291 if (!primary)
14292 goto fail;
14293
14294 cursor = intel_cursor_plane_create(dev, pipe);
14295 if (!cursor)
14296 goto fail;
14297
465c120c 14298 ret = drm_crtc_init_with_planes(dev, &intel_crtc->base, primary,
3d7d6510
MR
14299 cursor, &intel_crtc_funcs);
14300 if (ret)
14301 goto fail;
79e53945
JB
14302
14303 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
79e53945
JB
14304 for (i = 0; i < 256; i++) {
14305 intel_crtc->lut_r[i] = i;
14306 intel_crtc->lut_g[i] = i;
14307 intel_crtc->lut_b[i] = i;
14308 }
14309
1f1c2e24
VS
14310 /*
14311 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
8c0f92e1 14312 * is hooked to pipe B. Hence we want plane A feeding pipe B.
1f1c2e24 14313 */
80824003
JB
14314 intel_crtc->pipe = pipe;
14315 intel_crtc->plane = pipe;
3a77c4c4 14316 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
28c97730 14317 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
e2e767ab 14318 intel_crtc->plane = !pipe;
80824003
JB
14319 }
14320
4b0e333e
CW
14321 intel_crtc->cursor_base = ~0;
14322 intel_crtc->cursor_cntl = ~0;
dc41c154 14323 intel_crtc->cursor_size = ~0;
8d7849db 14324
852eb00d
VS
14325 intel_crtc->wm.cxsr_allowed = true;
14326
22fd0fab
JB
14327 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
14328 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
14329 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
14330 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
14331
79e53945 14332 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
87b6b101
DV
14333
14334 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
3d7d6510
MR
14335 return;
14336
14337fail:
14338 if (primary)
14339 drm_plane_cleanup(primary);
14340 if (cursor)
14341 drm_plane_cleanup(cursor);
f5de6e07 14342 kfree(crtc_state);
3d7d6510 14343 kfree(intel_crtc);
79e53945
JB
14344}
14345
752aa88a
JB
14346enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
14347{
14348 struct drm_encoder *encoder = connector->base.encoder;
6e9f798d 14349 struct drm_device *dev = connector->base.dev;
752aa88a 14350
51fd371b 14351 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
752aa88a 14352
d3babd3f 14353 if (!encoder || WARN_ON(!encoder->crtc))
752aa88a
JB
14354 return INVALID_PIPE;
14355
14356 return to_intel_crtc(encoder->crtc)->pipe;
14357}
14358
08d7b3d1 14359int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
05394f39 14360 struct drm_file *file)
08d7b3d1 14361{
08d7b3d1 14362 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
7707e653 14363 struct drm_crtc *drmmode_crtc;
c05422d5 14364 struct intel_crtc *crtc;
08d7b3d1 14365
7707e653 14366 drmmode_crtc = drm_crtc_find(dev, pipe_from_crtc_id->crtc_id);
08d7b3d1 14367
7707e653 14368 if (!drmmode_crtc) {
08d7b3d1 14369 DRM_ERROR("no such CRTC id\n");
3f2c2057 14370 return -ENOENT;
08d7b3d1
CW
14371 }
14372
7707e653 14373 crtc = to_intel_crtc(drmmode_crtc);
c05422d5 14374 pipe_from_crtc_id->pipe = crtc->pipe;
08d7b3d1 14375
c05422d5 14376 return 0;
08d7b3d1
CW
14377}
14378
66a9278e 14379static int intel_encoder_clones(struct intel_encoder *encoder)
79e53945 14380{
66a9278e
DV
14381 struct drm_device *dev = encoder->base.dev;
14382 struct intel_encoder *source_encoder;
79e53945 14383 int index_mask = 0;
79e53945
JB
14384 int entry = 0;
14385
b2784e15 14386 for_each_intel_encoder(dev, source_encoder) {
bc079e8b 14387 if (encoders_cloneable(encoder, source_encoder))
66a9278e
DV
14388 index_mask |= (1 << entry);
14389
79e53945
JB
14390 entry++;
14391 }
4ef69c7a 14392
79e53945
JB
14393 return index_mask;
14394}
14395
4d302442
CW
14396static bool has_edp_a(struct drm_device *dev)
14397{
14398 struct drm_i915_private *dev_priv = dev->dev_private;
14399
14400 if (!IS_MOBILE(dev))
14401 return false;
14402
14403 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
14404 return false;
14405
e3589908 14406 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
4d302442
CW
14407 return false;
14408
14409 return true;
14410}
14411
84b4e042
JB
14412static bool intel_crt_present(struct drm_device *dev)
14413{
14414 struct drm_i915_private *dev_priv = dev->dev_private;
14415
884497ed
DL
14416 if (INTEL_INFO(dev)->gen >= 9)
14417 return false;
14418
cf404ce4 14419 if (IS_HSW_ULT(dev) || IS_BDW_ULT(dev))
84b4e042
JB
14420 return false;
14421
14422 if (IS_CHERRYVIEW(dev))
14423 return false;
14424
65e472e4
VS
14425 if (HAS_PCH_LPT_H(dev) && I915_READ(SFUSE_STRAP) & SFUSE_STRAP_CRT_DISABLED)
14426 return false;
14427
70ac54d0
VS
14428 /* DDI E can't be used if DDI A requires 4 lanes */
14429 if (HAS_DDI(dev) && I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES)
14430 return false;
14431
e4abb733 14432 if (!dev_priv->vbt.int_crt_support)
84b4e042
JB
14433 return false;
14434
14435 return true;
14436}
14437
79e53945
JB
14438static void intel_setup_outputs(struct drm_device *dev)
14439{
725e30ad 14440 struct drm_i915_private *dev_priv = dev->dev_private;
4ef69c7a 14441 struct intel_encoder *encoder;
cb0953d7 14442 bool dpd_is_edp = false;
79e53945 14443
c9093354 14444 intel_lvds_init(dev);
79e53945 14445
84b4e042 14446 if (intel_crt_present(dev))
79935fca 14447 intel_crt_init(dev);
cb0953d7 14448
c776eb2e
VK
14449 if (IS_BROXTON(dev)) {
14450 /*
14451 * FIXME: Broxton doesn't support port detection via the
14452 * DDI_BUF_CTL_A or SFUSE_STRAP registers, find another way to
14453 * detect the ports.
14454 */
14455 intel_ddi_init(dev, PORT_A);
14456 intel_ddi_init(dev, PORT_B);
14457 intel_ddi_init(dev, PORT_C);
14458 } else if (HAS_DDI(dev)) {
0e72a5b5
ED
14459 int found;
14460
de31facd
JB
14461 /*
14462 * Haswell uses DDI functions to detect digital outputs.
14463 * On SKL pre-D0 the strap isn't connected, so we assume
14464 * it's there.
14465 */
77179400 14466 found = I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_INIT_DISPLAY_DETECTED;
de31facd 14467 /* WaIgnoreDDIAStrap: skl */
ef11bdb3 14468 if (found || IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
0e72a5b5
ED
14469 intel_ddi_init(dev, PORT_A);
14470
14471 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
14472 * register */
14473 found = I915_READ(SFUSE_STRAP);
14474
14475 if (found & SFUSE_STRAP_DDIB_DETECTED)
14476 intel_ddi_init(dev, PORT_B);
14477 if (found & SFUSE_STRAP_DDIC_DETECTED)
14478 intel_ddi_init(dev, PORT_C);
14479 if (found & SFUSE_STRAP_DDID_DETECTED)
14480 intel_ddi_init(dev, PORT_D);
2800e4c2
RV
14481 /*
14482 * On SKL we don't have a way to detect DDI-E so we rely on VBT.
14483 */
ef11bdb3 14484 if ((IS_SKYLAKE(dev) || IS_KABYLAKE(dev)) &&
2800e4c2
RV
14485 (dev_priv->vbt.ddi_port_info[PORT_E].supports_dp ||
14486 dev_priv->vbt.ddi_port_info[PORT_E].supports_dvi ||
14487 dev_priv->vbt.ddi_port_info[PORT_E].supports_hdmi))
14488 intel_ddi_init(dev, PORT_E);
14489
0e72a5b5 14490 } else if (HAS_PCH_SPLIT(dev)) {
cb0953d7 14491 int found;
5d8a7752 14492 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
270b3042
DV
14493
14494 if (has_edp_a(dev))
14495 intel_dp_init(dev, DP_A, PORT_A);
cb0953d7 14496
dc0fa718 14497 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
461ed3ca 14498 /* PCH SDVOB multiplex with HDMIB */
2a5c0832 14499 found = intel_sdvo_init(dev, PCH_SDVOB, PORT_B);
30ad48b7 14500 if (!found)
e2debe91 14501 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
5eb08b69 14502 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
ab9d7c30 14503 intel_dp_init(dev, PCH_DP_B, PORT_B);
30ad48b7
ZW
14504 }
14505
dc0fa718 14506 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
e2debe91 14507 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
30ad48b7 14508
dc0fa718 14509 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
e2debe91 14510 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
30ad48b7 14511
5eb08b69 14512 if (I915_READ(PCH_DP_C) & DP_DETECTED)
ab9d7c30 14513 intel_dp_init(dev, PCH_DP_C, PORT_C);
5eb08b69 14514
270b3042 14515 if (I915_READ(PCH_DP_D) & DP_DETECTED)
ab9d7c30 14516 intel_dp_init(dev, PCH_DP_D, PORT_D);
666a4537 14517 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
e17ac6db
VS
14518 /*
14519 * The DP_DETECTED bit is the latched state of the DDC
14520 * SDA pin at boot. However since eDP doesn't require DDC
14521 * (no way to plug in a DP->HDMI dongle) the DDC pins for
14522 * eDP ports may have been muxed to an alternate function.
14523 * Thus we can't rely on the DP_DETECTED bit alone to detect
14524 * eDP ports. Consult the VBT as well as DP_DETECTED to
14525 * detect eDP ports.
14526 */
e66eb81d 14527 if (I915_READ(VLV_HDMIB) & SDVO_DETECTED &&
d2182a66 14528 !intel_dp_is_edp(dev, PORT_B))
e66eb81d
VS
14529 intel_hdmi_init(dev, VLV_HDMIB, PORT_B);
14530 if (I915_READ(VLV_DP_B) & DP_DETECTED ||
e17ac6db 14531 intel_dp_is_edp(dev, PORT_B))
e66eb81d 14532 intel_dp_init(dev, VLV_DP_B, PORT_B);
585a94b8 14533
e66eb81d 14534 if (I915_READ(VLV_HDMIC) & SDVO_DETECTED &&
d2182a66 14535 !intel_dp_is_edp(dev, PORT_C))
e66eb81d
VS
14536 intel_hdmi_init(dev, VLV_HDMIC, PORT_C);
14537 if (I915_READ(VLV_DP_C) & DP_DETECTED ||
e17ac6db 14538 intel_dp_is_edp(dev, PORT_C))
e66eb81d 14539 intel_dp_init(dev, VLV_DP_C, PORT_C);
19c03924 14540
9418c1f1 14541 if (IS_CHERRYVIEW(dev)) {
e17ac6db 14542 /* eDP not supported on port D, so don't check VBT */
e66eb81d
VS
14543 if (I915_READ(CHV_HDMID) & SDVO_DETECTED)
14544 intel_hdmi_init(dev, CHV_HDMID, PORT_D);
14545 if (I915_READ(CHV_DP_D) & DP_DETECTED)
14546 intel_dp_init(dev, CHV_DP_D, PORT_D);
9418c1f1
VS
14547 }
14548
3cfca973 14549 intel_dsi_init(dev);
09da55dc 14550 } else if (!IS_GEN2(dev) && !IS_PINEVIEW(dev)) {
27185ae1 14551 bool found = false;
7d57382e 14552
e2debe91 14553 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 14554 DRM_DEBUG_KMS("probing SDVOB\n");
2a5c0832 14555 found = intel_sdvo_init(dev, GEN3_SDVOB, PORT_B);
3fec3d2f 14556 if (!found && IS_G4X(dev)) {
b01f2c3a 14557 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
e2debe91 14558 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
b01f2c3a 14559 }
27185ae1 14560
3fec3d2f 14561 if (!found && IS_G4X(dev))
ab9d7c30 14562 intel_dp_init(dev, DP_B, PORT_B);
725e30ad 14563 }
13520b05
KH
14564
14565 /* Before G4X SDVOC doesn't have its own detect register */
13520b05 14566
e2debe91 14567 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
b01f2c3a 14568 DRM_DEBUG_KMS("probing SDVOC\n");
2a5c0832 14569 found = intel_sdvo_init(dev, GEN3_SDVOC, PORT_C);
b01f2c3a 14570 }
27185ae1 14571
e2debe91 14572 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
27185ae1 14573
3fec3d2f 14574 if (IS_G4X(dev)) {
b01f2c3a 14575 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
e2debe91 14576 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
b01f2c3a 14577 }
3fec3d2f 14578 if (IS_G4X(dev))
ab9d7c30 14579 intel_dp_init(dev, DP_C, PORT_C);
725e30ad 14580 }
27185ae1 14581
3fec3d2f 14582 if (IS_G4X(dev) &&
e7281eab 14583 (I915_READ(DP_D) & DP_DETECTED))
ab9d7c30 14584 intel_dp_init(dev, DP_D, PORT_D);
bad720ff 14585 } else if (IS_GEN2(dev))
79e53945
JB
14586 intel_dvo_init(dev);
14587
103a196f 14588 if (SUPPORTS_TV(dev))
79e53945
JB
14589 intel_tv_init(dev);
14590
0bc12bcb 14591 intel_psr_init(dev);
7c8f8a70 14592
b2784e15 14593 for_each_intel_encoder(dev, encoder) {
4ef69c7a
CW
14594 encoder->base.possible_crtcs = encoder->crtc_mask;
14595 encoder->base.possible_clones =
66a9278e 14596 intel_encoder_clones(encoder);
79e53945 14597 }
47356eb6 14598
dde86e2d 14599 intel_init_pch_refclk(dev);
270b3042
DV
14600
14601 drm_helper_move_panel_connectors_to_head(dev);
79e53945
JB
14602}
14603
14604static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
14605{
60a5ca01 14606 struct drm_device *dev = fb->dev;
79e53945 14607 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
79e53945 14608
ef2d633e 14609 drm_framebuffer_cleanup(fb);
60a5ca01 14610 mutex_lock(&dev->struct_mutex);
ef2d633e 14611 WARN_ON(!intel_fb->obj->framebuffer_references--);
60a5ca01
VS
14612 drm_gem_object_unreference(&intel_fb->obj->base);
14613 mutex_unlock(&dev->struct_mutex);
79e53945
JB
14614 kfree(intel_fb);
14615}
14616
14617static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
05394f39 14618 struct drm_file *file,
79e53945
JB
14619 unsigned int *handle)
14620{
14621 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
05394f39 14622 struct drm_i915_gem_object *obj = intel_fb->obj;
79e53945 14623
cc917ab4
CW
14624 if (obj->userptr.mm) {
14625 DRM_DEBUG("attempting to use a userptr for a framebuffer, denied\n");
14626 return -EINVAL;
14627 }
14628
05394f39 14629 return drm_gem_handle_create(file, &obj->base, handle);
79e53945
JB
14630}
14631
86c98588
RV
14632static int intel_user_framebuffer_dirty(struct drm_framebuffer *fb,
14633 struct drm_file *file,
14634 unsigned flags, unsigned color,
14635 struct drm_clip_rect *clips,
14636 unsigned num_clips)
14637{
14638 struct drm_device *dev = fb->dev;
14639 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
14640 struct drm_i915_gem_object *obj = intel_fb->obj;
14641
14642 mutex_lock(&dev->struct_mutex);
74b4ea1e 14643 intel_fb_obj_flush(obj, false, ORIGIN_DIRTYFB);
86c98588
RV
14644 mutex_unlock(&dev->struct_mutex);
14645
14646 return 0;
14647}
14648
79e53945
JB
14649static const struct drm_framebuffer_funcs intel_fb_funcs = {
14650 .destroy = intel_user_framebuffer_destroy,
14651 .create_handle = intel_user_framebuffer_create_handle,
86c98588 14652 .dirty = intel_user_framebuffer_dirty,
79e53945
JB
14653};
14654
b321803d
DL
14655static
14656u32 intel_fb_pitch_limit(struct drm_device *dev, uint64_t fb_modifier,
14657 uint32_t pixel_format)
14658{
14659 u32 gen = INTEL_INFO(dev)->gen;
14660
14661 if (gen >= 9) {
14662 /* "The stride in bytes must not exceed the of the size of 8K
14663 * pixels and 32K bytes."
14664 */
14665 return min(8192*drm_format_plane_cpp(pixel_format, 0), 32768);
666a4537 14666 } else if (gen >= 5 && !IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
b321803d
DL
14667 return 32*1024;
14668 } else if (gen >= 4) {
14669 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14670 return 16*1024;
14671 else
14672 return 32*1024;
14673 } else if (gen >= 3) {
14674 if (fb_modifier == I915_FORMAT_MOD_X_TILED)
14675 return 8*1024;
14676 else
14677 return 16*1024;
14678 } else {
14679 /* XXX DSPC is limited to 4k tiled */
14680 return 8*1024;
14681 }
14682}
14683
b5ea642a
DV
14684static int intel_framebuffer_init(struct drm_device *dev,
14685 struct intel_framebuffer *intel_fb,
14686 struct drm_mode_fb_cmd2 *mode_cmd,
14687 struct drm_i915_gem_object *obj)
79e53945 14688{
6761dd31 14689 unsigned int aligned_height;
79e53945 14690 int ret;
b321803d 14691 u32 pitch_limit, stride_alignment;
79e53945 14692
dd4916c5
DV
14693 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
14694
2a80eada
DV
14695 if (mode_cmd->flags & DRM_MODE_FB_MODIFIERS) {
14696 /* Enforce that fb modifier and tiling mode match, but only for
14697 * X-tiled. This is needed for FBC. */
14698 if (!!(obj->tiling_mode == I915_TILING_X) !=
14699 !!(mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED)) {
14700 DRM_DEBUG("tiling_mode doesn't match fb modifier\n");
14701 return -EINVAL;
14702 }
14703 } else {
14704 if (obj->tiling_mode == I915_TILING_X)
14705 mode_cmd->modifier[0] = I915_FORMAT_MOD_X_TILED;
14706 else if (obj->tiling_mode == I915_TILING_Y) {
14707 DRM_DEBUG("No Y tiling for legacy addfb\n");
14708 return -EINVAL;
14709 }
14710 }
14711
9a8f0a12
TU
14712 /* Passed in modifier sanity checking. */
14713 switch (mode_cmd->modifier[0]) {
14714 case I915_FORMAT_MOD_Y_TILED:
14715 case I915_FORMAT_MOD_Yf_TILED:
14716 if (INTEL_INFO(dev)->gen < 9) {
14717 DRM_DEBUG("Unsupported tiling 0x%llx!\n",
14718 mode_cmd->modifier[0]);
14719 return -EINVAL;
14720 }
14721 case DRM_FORMAT_MOD_NONE:
14722 case I915_FORMAT_MOD_X_TILED:
14723 break;
14724 default:
c0f40428
JB
14725 DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
14726 mode_cmd->modifier[0]);
57cd6508 14727 return -EINVAL;
c16ed4be 14728 }
57cd6508 14729
b321803d
DL
14730 stride_alignment = intel_fb_stride_alignment(dev, mode_cmd->modifier[0],
14731 mode_cmd->pixel_format);
14732 if (mode_cmd->pitches[0] & (stride_alignment - 1)) {
14733 DRM_DEBUG("pitch (%d) must be at least %u byte aligned\n",
14734 mode_cmd->pitches[0], stride_alignment);
57cd6508 14735 return -EINVAL;
c16ed4be 14736 }
57cd6508 14737
b321803d
DL
14738 pitch_limit = intel_fb_pitch_limit(dev, mode_cmd->modifier[0],
14739 mode_cmd->pixel_format);
a35cdaa0 14740 if (mode_cmd->pitches[0] > pitch_limit) {
b321803d
DL
14741 DRM_DEBUG("%s pitch (%u) must be at less than %d\n",
14742 mode_cmd->modifier[0] != DRM_FORMAT_MOD_NONE ?
2a80eada 14743 "tiled" : "linear",
a35cdaa0 14744 mode_cmd->pitches[0], pitch_limit);
5d7bd705 14745 return -EINVAL;
c16ed4be 14746 }
5d7bd705 14747
2a80eada 14748 if (mode_cmd->modifier[0] == I915_FORMAT_MOD_X_TILED &&
c16ed4be
CW
14749 mode_cmd->pitches[0] != obj->stride) {
14750 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
14751 mode_cmd->pitches[0], obj->stride);
5d7bd705 14752 return -EINVAL;
c16ed4be 14753 }
5d7bd705 14754
57779d06 14755 /* Reject formats not supported by any plane early. */
308e5bcb 14756 switch (mode_cmd->pixel_format) {
57779d06 14757 case DRM_FORMAT_C8:
04b3924d
VS
14758 case DRM_FORMAT_RGB565:
14759 case DRM_FORMAT_XRGB8888:
14760 case DRM_FORMAT_ARGB8888:
57779d06
VS
14761 break;
14762 case DRM_FORMAT_XRGB1555:
c16ed4be 14763 if (INTEL_INFO(dev)->gen > 3) {
4ee62c76
VS
14764 DRM_DEBUG("unsupported pixel format: %s\n",
14765 drm_get_format_name(mode_cmd->pixel_format));
57779d06 14766 return -EINVAL;
c16ed4be 14767 }
57779d06 14768 break;
57779d06 14769 case DRM_FORMAT_ABGR8888:
666a4537
WB
14770 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev) &&
14771 INTEL_INFO(dev)->gen < 9) {
6c0fd451
DL
14772 DRM_DEBUG("unsupported pixel format: %s\n",
14773 drm_get_format_name(mode_cmd->pixel_format));
14774 return -EINVAL;
14775 }
14776 break;
14777 case DRM_FORMAT_XBGR8888:
04b3924d 14778 case DRM_FORMAT_XRGB2101010:
57779d06 14779 case DRM_FORMAT_XBGR2101010:
c16ed4be 14780 if (INTEL_INFO(dev)->gen < 4) {
4ee62c76
VS
14781 DRM_DEBUG("unsupported pixel format: %s\n",
14782 drm_get_format_name(mode_cmd->pixel_format));
57779d06 14783 return -EINVAL;
c16ed4be 14784 }
b5626747 14785 break;
7531208b 14786 case DRM_FORMAT_ABGR2101010:
666a4537 14787 if (!IS_VALLEYVIEW(dev) && !IS_CHERRYVIEW(dev)) {
7531208b
DL
14788 DRM_DEBUG("unsupported pixel format: %s\n",
14789 drm_get_format_name(mode_cmd->pixel_format));
14790 return -EINVAL;
14791 }
14792 break;
04b3924d
VS
14793 case DRM_FORMAT_YUYV:
14794 case DRM_FORMAT_UYVY:
14795 case DRM_FORMAT_YVYU:
14796 case DRM_FORMAT_VYUY:
c16ed4be 14797 if (INTEL_INFO(dev)->gen < 5) {
4ee62c76
VS
14798 DRM_DEBUG("unsupported pixel format: %s\n",
14799 drm_get_format_name(mode_cmd->pixel_format));
57779d06 14800 return -EINVAL;
c16ed4be 14801 }
57cd6508
CW
14802 break;
14803 default:
4ee62c76
VS
14804 DRM_DEBUG("unsupported pixel format: %s\n",
14805 drm_get_format_name(mode_cmd->pixel_format));
57cd6508
CW
14806 return -EINVAL;
14807 }
14808
90f9a336
VS
14809 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
14810 if (mode_cmd->offsets[0] != 0)
14811 return -EINVAL;
14812
ec2c981e 14813 aligned_height = intel_fb_align_height(dev, mode_cmd->height,
091df6cb
DV
14814 mode_cmd->pixel_format,
14815 mode_cmd->modifier[0]);
53155c0a
DV
14816 /* FIXME drm helper for size checks (especially planar formats)? */
14817 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
14818 return -EINVAL;
14819
c7d73f6a
DV
14820 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
14821 intel_fb->obj = obj;
80075d49 14822 intel_fb->obj->framebuffer_references++;
c7d73f6a 14823
79e53945
JB
14824 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
14825 if (ret) {
14826 DRM_ERROR("framebuffer init failed %d\n", ret);
14827 return ret;
14828 }
14829
79e53945
JB
14830 return 0;
14831}
14832
79e53945
JB
14833static struct drm_framebuffer *
14834intel_user_framebuffer_create(struct drm_device *dev,
14835 struct drm_file *filp,
1eb83451 14836 const struct drm_mode_fb_cmd2 *user_mode_cmd)
79e53945 14837{
dcb1394e 14838 struct drm_framebuffer *fb;
05394f39 14839 struct drm_i915_gem_object *obj;
76dc3769 14840 struct drm_mode_fb_cmd2 mode_cmd = *user_mode_cmd;
79e53945 14841
308e5bcb 14842 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
76dc3769 14843 mode_cmd.handles[0]));
c8725226 14844 if (&obj->base == NULL)
cce13ff7 14845 return ERR_PTR(-ENOENT);
79e53945 14846
92907cbb 14847 fb = intel_framebuffer_create(dev, &mode_cmd, obj);
dcb1394e
LW
14848 if (IS_ERR(fb))
14849 drm_gem_object_unreference_unlocked(&obj->base);
14850
14851 return fb;
79e53945
JB
14852}
14853
0695726e 14854#ifndef CONFIG_DRM_FBDEV_EMULATION
0632fef6 14855static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
4520f53a
DV
14856{
14857}
14858#endif
14859
79e53945 14860static const struct drm_mode_config_funcs intel_mode_funcs = {
79e53945 14861 .fb_create = intel_user_framebuffer_create,
0632fef6 14862 .output_poll_changed = intel_fbdev_output_poll_changed,
5ee67f1c
MR
14863 .atomic_check = intel_atomic_check,
14864 .atomic_commit = intel_atomic_commit,
de419ab6
ML
14865 .atomic_state_alloc = intel_atomic_state_alloc,
14866 .atomic_state_clear = intel_atomic_state_clear,
79e53945
JB
14867};
14868
e70236a8
JB
14869/* Set up chip specific display functions */
14870static void intel_init_display(struct drm_device *dev)
14871{
14872 struct drm_i915_private *dev_priv = dev->dev_private;
14873
ee9300bb
DV
14874 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
14875 dev_priv->display.find_dpll = g4x_find_best_dpll;
ef9348c8
CML
14876 else if (IS_CHERRYVIEW(dev))
14877 dev_priv->display.find_dpll = chv_find_best_dpll;
ee9300bb
DV
14878 else if (IS_VALLEYVIEW(dev))
14879 dev_priv->display.find_dpll = vlv_find_best_dpll;
14880 else if (IS_PINEVIEW(dev))
14881 dev_priv->display.find_dpll = pnv_find_best_dpll;
14882 else
14883 dev_priv->display.find_dpll = i9xx_find_best_dpll;
14884
bc8d7dff
DL
14885 if (INTEL_INFO(dev)->gen >= 9) {
14886 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
14887 dev_priv->display.get_initial_plane_config =
14888 skylake_get_initial_plane_config;
bc8d7dff
DL
14889 dev_priv->display.crtc_compute_clock =
14890 haswell_crtc_compute_clock;
14891 dev_priv->display.crtc_enable = haswell_crtc_enable;
14892 dev_priv->display.crtc_disable = haswell_crtc_disable;
bc8d7dff
DL
14893 dev_priv->display.update_primary_plane =
14894 skylake_update_primary_plane;
14895 } else if (HAS_DDI(dev)) {
0e8ffe1b 14896 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
5724dbd1
DL
14897 dev_priv->display.get_initial_plane_config =
14898 ironlake_get_initial_plane_config;
797d0259
ACO
14899 dev_priv->display.crtc_compute_clock =
14900 haswell_crtc_compute_clock;
4f771f10
PZ
14901 dev_priv->display.crtc_enable = haswell_crtc_enable;
14902 dev_priv->display.crtc_disable = haswell_crtc_disable;
bc8d7dff
DL
14903 dev_priv->display.update_primary_plane =
14904 ironlake_update_primary_plane;
09b4ddf9 14905 } else if (HAS_PCH_SPLIT(dev)) {
0e8ffe1b 14906 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
5724dbd1
DL
14907 dev_priv->display.get_initial_plane_config =
14908 ironlake_get_initial_plane_config;
3fb37703
ACO
14909 dev_priv->display.crtc_compute_clock =
14910 ironlake_crtc_compute_clock;
76e5a89c
DV
14911 dev_priv->display.crtc_enable = ironlake_crtc_enable;
14912 dev_priv->display.crtc_disable = ironlake_crtc_disable;
262ca2b0
MR
14913 dev_priv->display.update_primary_plane =
14914 ironlake_update_primary_plane;
666a4537 14915 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
89b667f8 14916 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
14917 dev_priv->display.get_initial_plane_config =
14918 i9xx_get_initial_plane_config;
d6dfee7a 14919 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
89b667f8
JB
14920 dev_priv->display.crtc_enable = valleyview_crtc_enable;
14921 dev_priv->display.crtc_disable = i9xx_crtc_disable;
262ca2b0
MR
14922 dev_priv->display.update_primary_plane =
14923 i9xx_update_primary_plane;
f564048e 14924 } else {
0e8ffe1b 14925 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
5724dbd1
DL
14926 dev_priv->display.get_initial_plane_config =
14927 i9xx_get_initial_plane_config;
d6dfee7a 14928 dev_priv->display.crtc_compute_clock = i9xx_crtc_compute_clock;
76e5a89c
DV
14929 dev_priv->display.crtc_enable = i9xx_crtc_enable;
14930 dev_priv->display.crtc_disable = i9xx_crtc_disable;
262ca2b0
MR
14931 dev_priv->display.update_primary_plane =
14932 i9xx_update_primary_plane;
f564048e 14933 }
e70236a8 14934
e70236a8 14935 /* Returns the core display clock speed */
ef11bdb3 14936 if (IS_SKYLAKE(dev) || IS_KABYLAKE(dev))
1652d19e
VS
14937 dev_priv->display.get_display_clock_speed =
14938 skylake_get_display_clock_speed;
acd3f3d3
BP
14939 else if (IS_BROXTON(dev))
14940 dev_priv->display.get_display_clock_speed =
14941 broxton_get_display_clock_speed;
1652d19e
VS
14942 else if (IS_BROADWELL(dev))
14943 dev_priv->display.get_display_clock_speed =
14944 broadwell_get_display_clock_speed;
14945 else if (IS_HASWELL(dev))
14946 dev_priv->display.get_display_clock_speed =
14947 haswell_get_display_clock_speed;
666a4537 14948 else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
25eb05fc
JB
14949 dev_priv->display.get_display_clock_speed =
14950 valleyview_get_display_clock_speed;
b37a6434
VS
14951 else if (IS_GEN5(dev))
14952 dev_priv->display.get_display_clock_speed =
14953 ilk_get_display_clock_speed;
a7c66cd8 14954 else if (IS_I945G(dev) || IS_BROADWATER(dev) ||
34edce2f 14955 IS_GEN6(dev) || IS_IVYBRIDGE(dev))
e70236a8
JB
14956 dev_priv->display.get_display_clock_speed =
14957 i945_get_display_clock_speed;
34edce2f
VS
14958 else if (IS_GM45(dev))
14959 dev_priv->display.get_display_clock_speed =
14960 gm45_get_display_clock_speed;
14961 else if (IS_CRESTLINE(dev))
14962 dev_priv->display.get_display_clock_speed =
14963 i965gm_get_display_clock_speed;
14964 else if (IS_PINEVIEW(dev))
14965 dev_priv->display.get_display_clock_speed =
14966 pnv_get_display_clock_speed;
14967 else if (IS_G33(dev) || IS_G4X(dev))
14968 dev_priv->display.get_display_clock_speed =
14969 g33_get_display_clock_speed;
e70236a8
JB
14970 else if (IS_I915G(dev))
14971 dev_priv->display.get_display_clock_speed =
14972 i915_get_display_clock_speed;
257a7ffc 14973 else if (IS_I945GM(dev) || IS_845G(dev))
e70236a8
JB
14974 dev_priv->display.get_display_clock_speed =
14975 i9xx_misc_get_display_clock_speed;
14976 else if (IS_I915GM(dev))
14977 dev_priv->display.get_display_clock_speed =
14978 i915gm_get_display_clock_speed;
14979 else if (IS_I865G(dev))
14980 dev_priv->display.get_display_clock_speed =
14981 i865_get_display_clock_speed;
f0f8a9ce 14982 else if (IS_I85X(dev))
e70236a8 14983 dev_priv->display.get_display_clock_speed =
1b1d2716 14984 i85x_get_display_clock_speed;
623e01e5
VS
14985 else { /* 830 */
14986 WARN(!IS_I830(dev), "Unknown platform. Assuming 133 MHz CDCLK\n");
e70236a8
JB
14987 dev_priv->display.get_display_clock_speed =
14988 i830_get_display_clock_speed;
623e01e5 14989 }
e70236a8 14990
7c10a2b5 14991 if (IS_GEN5(dev)) {
3bb11b53 14992 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
3bb11b53
SJ
14993 } else if (IS_GEN6(dev)) {
14994 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
3bb11b53
SJ
14995 } else if (IS_IVYBRIDGE(dev)) {
14996 /* FIXME: detect B0+ stepping and use auto training */
14997 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
059b2fe9 14998 } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
3bb11b53 14999 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
27c329ed
ML
15000 if (IS_BROADWELL(dev)) {
15001 dev_priv->display.modeset_commit_cdclk =
15002 broadwell_modeset_commit_cdclk;
15003 dev_priv->display.modeset_calc_cdclk =
15004 broadwell_modeset_calc_cdclk;
15005 }
666a4537 15006 } else if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
27c329ed
ML
15007 dev_priv->display.modeset_commit_cdclk =
15008 valleyview_modeset_commit_cdclk;
15009 dev_priv->display.modeset_calc_cdclk =
15010 valleyview_modeset_calc_cdclk;
f8437dd1 15011 } else if (IS_BROXTON(dev)) {
27c329ed
ML
15012 dev_priv->display.modeset_commit_cdclk =
15013 broxton_modeset_commit_cdclk;
15014 dev_priv->display.modeset_calc_cdclk =
15015 broxton_modeset_calc_cdclk;
e70236a8 15016 }
8c9f3aaf 15017
8c9f3aaf
JB
15018 switch (INTEL_INFO(dev)->gen) {
15019 case 2:
15020 dev_priv->display.queue_flip = intel_gen2_queue_flip;
15021 break;
15022
15023 case 3:
15024 dev_priv->display.queue_flip = intel_gen3_queue_flip;
15025 break;
15026
15027 case 4:
15028 case 5:
15029 dev_priv->display.queue_flip = intel_gen4_queue_flip;
15030 break;
15031
15032 case 6:
15033 dev_priv->display.queue_flip = intel_gen6_queue_flip;
15034 break;
7c9017e5 15035 case 7:
4e0bbc31 15036 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
7c9017e5
JB
15037 dev_priv->display.queue_flip = intel_gen7_queue_flip;
15038 break;
830c81db 15039 case 9:
ba343e02
TU
15040 /* Drop through - unsupported since execlist only. */
15041 default:
15042 /* Default just returns -ENODEV to indicate unsupported */
15043 dev_priv->display.queue_flip = intel_default_queue_flip;
8c9f3aaf 15044 }
7bd688cd 15045
e39b999a 15046 mutex_init(&dev_priv->pps_mutex);
e70236a8
JB
15047}
15048
b690e96c
JB
15049/*
15050 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
15051 * resume, or other times. This quirk makes sure that's the case for
15052 * affected systems.
15053 */
0206e353 15054static void quirk_pipea_force(struct drm_device *dev)
b690e96c
JB
15055{
15056 struct drm_i915_private *dev_priv = dev->dev_private;
15057
15058 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
bc0daf48 15059 DRM_INFO("applying pipe a force quirk\n");
b690e96c
JB
15060}
15061
b6b5d049
VS
15062static void quirk_pipeb_force(struct drm_device *dev)
15063{
15064 struct drm_i915_private *dev_priv = dev->dev_private;
15065
15066 dev_priv->quirks |= QUIRK_PIPEB_FORCE;
15067 DRM_INFO("applying pipe b force quirk\n");
15068}
15069
435793df
KP
15070/*
15071 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
15072 */
15073static void quirk_ssc_force_disable(struct drm_device *dev)
15074{
15075 struct drm_i915_private *dev_priv = dev->dev_private;
15076 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
bc0daf48 15077 DRM_INFO("applying lvds SSC disable quirk\n");
435793df
KP
15078}
15079
4dca20ef 15080/*
5a15ab5b
CE
15081 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
15082 * brightness value
4dca20ef
CE
15083 */
15084static void quirk_invert_brightness(struct drm_device *dev)
15085{
15086 struct drm_i915_private *dev_priv = dev->dev_private;
15087 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
bc0daf48 15088 DRM_INFO("applying inverted panel brightness quirk\n");
435793df
KP
15089}
15090
9c72cc6f
SD
15091/* Some VBT's incorrectly indicate no backlight is present */
15092static void quirk_backlight_present(struct drm_device *dev)
15093{
15094 struct drm_i915_private *dev_priv = dev->dev_private;
15095 dev_priv->quirks |= QUIRK_BACKLIGHT_PRESENT;
15096 DRM_INFO("applying backlight present quirk\n");
15097}
15098
b690e96c
JB
15099struct intel_quirk {
15100 int device;
15101 int subsystem_vendor;
15102 int subsystem_device;
15103 void (*hook)(struct drm_device *dev);
15104};
15105
5f85f176
EE
15106/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
15107struct intel_dmi_quirk {
15108 void (*hook)(struct drm_device *dev);
15109 const struct dmi_system_id (*dmi_id_list)[];
15110};
15111
15112static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
15113{
15114 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
15115 return 1;
15116}
15117
15118static const struct intel_dmi_quirk intel_dmi_quirks[] = {
15119 {
15120 .dmi_id_list = &(const struct dmi_system_id[]) {
15121 {
15122 .callback = intel_dmi_reverse_brightness,
15123 .ident = "NCR Corporation",
15124 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
15125 DMI_MATCH(DMI_PRODUCT_NAME, ""),
15126 },
15127 },
15128 { } /* terminating entry */
15129 },
15130 .hook = quirk_invert_brightness,
15131 },
15132};
15133
c43b5634 15134static struct intel_quirk intel_quirks[] = {
b690e96c
JB
15135 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
15136 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
15137
b690e96c
JB
15138 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
15139 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
15140
5f080c0f
VS
15141 /* 830 needs to leave pipe A & dpll A up */
15142 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
15143
b6b5d049
VS
15144 /* 830 needs to leave pipe B & dpll B up */
15145 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipeb_force },
15146
435793df
KP
15147 /* Lenovo U160 cannot use SSC on LVDS */
15148 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
070d329a
MAS
15149
15150 /* Sony Vaio Y cannot use SSC on LVDS */
15151 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
5a15ab5b 15152
be505f64
AH
15153 /* Acer Aspire 5734Z must invert backlight brightness */
15154 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
15155
15156 /* Acer/eMachines G725 */
15157 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
15158
15159 /* Acer/eMachines e725 */
15160 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
15161
15162 /* Acer/Packard Bell NCL20 */
15163 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
15164
15165 /* Acer Aspire 4736Z */
15166 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
0f540c3a
JN
15167
15168 /* Acer Aspire 5336 */
15169 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
2e93a1aa
SD
15170
15171 /* Acer C720 and C720P Chromebooks (Celeron 2955U) have backlights */
15172 { 0x0a06, 0x1025, 0x0a11, quirk_backlight_present },
d4967d8c 15173
dfb3d47b
SD
15174 /* Acer C720 Chromebook (Core i3 4005U) */
15175 { 0x0a16, 0x1025, 0x0a11, quirk_backlight_present },
15176
b2a9601c 15177 /* Apple Macbook 2,1 (Core 2 T7400) */
15178 { 0x27a2, 0x8086, 0x7270, quirk_backlight_present },
15179
1b9448b0
JN
15180 /* Apple Macbook 4,1 */
15181 { 0x2a02, 0x106b, 0x00a1, quirk_backlight_present },
15182
d4967d8c
SD
15183 /* Toshiba CB35 Chromebook (Celeron 2955U) */
15184 { 0x0a06, 0x1179, 0x0a88, quirk_backlight_present },
724cb06f
SD
15185
15186 /* HP Chromebook 14 (Celeron 2955U) */
15187 { 0x0a06, 0x103c, 0x21ed, quirk_backlight_present },
cf6f0af9
JN
15188
15189 /* Dell Chromebook 11 */
15190 { 0x0a06, 0x1028, 0x0a35, quirk_backlight_present },
9be64eee
JN
15191
15192 /* Dell Chromebook 11 (2015 version) */
15193 { 0x0a16, 0x1028, 0x0a35, quirk_backlight_present },
b690e96c
JB
15194};
15195
15196static void intel_init_quirks(struct drm_device *dev)
15197{
15198 struct pci_dev *d = dev->pdev;
15199 int i;
15200
15201 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
15202 struct intel_quirk *q = &intel_quirks[i];
15203
15204 if (d->device == q->device &&
15205 (d->subsystem_vendor == q->subsystem_vendor ||
15206 q->subsystem_vendor == PCI_ANY_ID) &&
15207 (d->subsystem_device == q->subsystem_device ||
15208 q->subsystem_device == PCI_ANY_ID))
15209 q->hook(dev);
15210 }
5f85f176
EE
15211 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
15212 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
15213 intel_dmi_quirks[i].hook(dev);
15214 }
b690e96c
JB
15215}
15216
9cce37f4
JB
15217/* Disable the VGA plane that we never use */
15218static void i915_disable_vga(struct drm_device *dev)
15219{
15220 struct drm_i915_private *dev_priv = dev->dev_private;
15221 u8 sr1;
f0f59a00 15222 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
9cce37f4 15223
2b37c616 15224 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
9cce37f4 15225 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
3fdcf431 15226 outb(SR01, VGA_SR_INDEX);
9cce37f4
JB
15227 sr1 = inb(VGA_SR_DATA);
15228 outb(sr1 | 1<<5, VGA_SR_DATA);
15229 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
15230 udelay(300);
15231
01f5a626 15232 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
9cce37f4
JB
15233 POSTING_READ(vga_reg);
15234}
15235
f817586c
DV
15236void intel_modeset_init_hw(struct drm_device *dev)
15237{
b6283055 15238 intel_update_cdclk(dev);
a8f78b58 15239 intel_prepare_ddi(dev);
f817586c 15240 intel_init_clock_gating(dev);
8090c6b9 15241 intel_enable_gt_powersave(dev);
f817586c
DV
15242}
15243
79e53945
JB
15244void intel_modeset_init(struct drm_device *dev)
15245{
652c393a 15246 struct drm_i915_private *dev_priv = dev->dev_private;
1fe47785 15247 int sprite, ret;
8cc87b75 15248 enum pipe pipe;
46f297fb 15249 struct intel_crtc *crtc;
79e53945
JB
15250
15251 drm_mode_config_init(dev);
15252
15253 dev->mode_config.min_width = 0;
15254 dev->mode_config.min_height = 0;
15255
019d96cb
DA
15256 dev->mode_config.preferred_depth = 24;
15257 dev->mode_config.prefer_shadow = 1;
15258
25bab385
TU
15259 dev->mode_config.allow_fb_modifiers = true;
15260
e6ecefaa 15261 dev->mode_config.funcs = &intel_mode_funcs;
79e53945 15262
b690e96c
JB
15263 intel_init_quirks(dev);
15264
1fa61106
ED
15265 intel_init_pm(dev);
15266
e3c74757
BW
15267 if (INTEL_INFO(dev)->num_pipes == 0)
15268 return;
15269
69f92f67
LW
15270 /*
15271 * There may be no VBT; and if the BIOS enabled SSC we can
15272 * just keep using it to avoid unnecessary flicker. Whereas if the
15273 * BIOS isn't using it, don't assume it will work even if the VBT
15274 * indicates as much.
15275 */
15276 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
15277 bool bios_lvds_use_ssc = !!(I915_READ(PCH_DREF_CONTROL) &
15278 DREF_SSC1_ENABLE);
15279
15280 if (dev_priv->vbt.lvds_use_ssc != bios_lvds_use_ssc) {
15281 DRM_DEBUG_KMS("SSC %sabled by BIOS, overriding VBT which says %sabled\n",
15282 bios_lvds_use_ssc ? "en" : "dis",
15283 dev_priv->vbt.lvds_use_ssc ? "en" : "dis");
15284 dev_priv->vbt.lvds_use_ssc = bios_lvds_use_ssc;
15285 }
15286 }
15287
e70236a8 15288 intel_init_display(dev);
7c10a2b5 15289 intel_init_audio(dev);
e70236a8 15290
a6c45cf0
CW
15291 if (IS_GEN2(dev)) {
15292 dev->mode_config.max_width = 2048;
15293 dev->mode_config.max_height = 2048;
15294 } else if (IS_GEN3(dev)) {
5e4d6fa7
KP
15295 dev->mode_config.max_width = 4096;
15296 dev->mode_config.max_height = 4096;
79e53945 15297 } else {
a6c45cf0
CW
15298 dev->mode_config.max_width = 8192;
15299 dev->mode_config.max_height = 8192;
79e53945 15300 }
068be561 15301
dc41c154
VS
15302 if (IS_845G(dev) || IS_I865G(dev)) {
15303 dev->mode_config.cursor_width = IS_845G(dev) ? 64 : 512;
15304 dev->mode_config.cursor_height = 1023;
15305 } else if (IS_GEN2(dev)) {
068be561
DL
15306 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
15307 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
15308 } else {
15309 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
15310 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
15311 }
15312
5d4545ae 15313 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
79e53945 15314
28c97730 15315 DRM_DEBUG_KMS("%d display pipe%s available.\n",
7eb552ae
BW
15316 INTEL_INFO(dev)->num_pipes,
15317 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
79e53945 15318
055e393f 15319 for_each_pipe(dev_priv, pipe) {
8cc87b75 15320 intel_crtc_init(dev, pipe);
3bdcfc0c 15321 for_each_sprite(dev_priv, pipe, sprite) {
1fe47785 15322 ret = intel_plane_init(dev, pipe, sprite);
7f1f3851 15323 if (ret)
06da8da2 15324 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
1fe47785 15325 pipe_name(pipe), sprite_name(pipe, sprite), ret);
7f1f3851 15326 }
79e53945
JB
15327 }
15328
bfa7df01
VS
15329 intel_update_czclk(dev_priv);
15330 intel_update_cdclk(dev);
15331
e72f9fbf 15332 intel_shared_dpll_init(dev);
ee7b9f93 15333
9cce37f4
JB
15334 /* Just disable it once at startup */
15335 i915_disable_vga(dev);
79e53945 15336 intel_setup_outputs(dev);
11be49eb 15337
6e9f798d 15338 drm_modeset_lock_all(dev);
043e9bda 15339 intel_modeset_setup_hw_state(dev);
6e9f798d 15340 drm_modeset_unlock_all(dev);
46f297fb 15341
d3fcc808 15342 for_each_intel_crtc(dev, crtc) {
eeebeac5
ML
15343 struct intel_initial_plane_config plane_config = {};
15344
46f297fb
JB
15345 if (!crtc->active)
15346 continue;
15347
46f297fb 15348 /*
46f297fb
JB
15349 * Note that reserving the BIOS fb up front prevents us
15350 * from stuffing other stolen allocations like the ring
15351 * on top. This prevents some ugliness at boot time, and
15352 * can even allow for smooth boot transitions if the BIOS
15353 * fb is large enough for the active pipe configuration.
15354 */
eeebeac5
ML
15355 dev_priv->display.get_initial_plane_config(crtc,
15356 &plane_config);
15357
15358 /*
15359 * If the fb is shared between multiple heads, we'll
15360 * just get the first one.
15361 */
15362 intel_find_initial_plane_obj(crtc, &plane_config);
46f297fb 15363 }
2c7111db
CW
15364}
15365
7fad798e
DV
15366static void intel_enable_pipe_a(struct drm_device *dev)
15367{
15368 struct intel_connector *connector;
15369 struct drm_connector *crt = NULL;
15370 struct intel_load_detect_pipe load_detect_temp;
208bf9fd 15371 struct drm_modeset_acquire_ctx *ctx = dev->mode_config.acquire_ctx;
7fad798e
DV
15372
15373 /* We can't just switch on the pipe A, we need to set things up with a
15374 * proper mode and output configuration. As a gross hack, enable pipe A
15375 * by enabling the load detect pipe once. */
3a3371ff 15376 for_each_intel_connector(dev, connector) {
7fad798e
DV
15377 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
15378 crt = &connector->base;
15379 break;
15380 }
15381 }
15382
15383 if (!crt)
15384 return;
15385
208bf9fd 15386 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, ctx))
49172fee 15387 intel_release_load_detect_pipe(crt, &load_detect_temp, ctx);
7fad798e
DV
15388}
15389
fa555837
DV
15390static bool
15391intel_check_plane_mapping(struct intel_crtc *crtc)
15392{
7eb552ae
BW
15393 struct drm_device *dev = crtc->base.dev;
15394 struct drm_i915_private *dev_priv = dev->dev_private;
649636ef 15395 u32 val;
fa555837 15396
7eb552ae 15397 if (INTEL_INFO(dev)->num_pipes == 1)
fa555837
DV
15398 return true;
15399
649636ef 15400 val = I915_READ(DSPCNTR(!crtc->plane));
fa555837
DV
15401
15402 if ((val & DISPLAY_PLANE_ENABLE) &&
15403 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
15404 return false;
15405
15406 return true;
15407}
15408
02e93c35
VS
15409static bool intel_crtc_has_encoders(struct intel_crtc *crtc)
15410{
15411 struct drm_device *dev = crtc->base.dev;
15412 struct intel_encoder *encoder;
15413
15414 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
15415 return true;
15416
15417 return false;
15418}
15419
24929352
DV
15420static void intel_sanitize_crtc(struct intel_crtc *crtc)
15421{
15422 struct drm_device *dev = crtc->base.dev;
15423 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 15424 i915_reg_t reg = PIPECONF(crtc->config->cpu_transcoder);
24929352 15425
24929352 15426 /* Clear any frame start delays used for debugging left by the BIOS */
24929352
DV
15427 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
15428
d3eaf884 15429 /* restore vblank interrupts to correct state */
9625604c 15430 drm_crtc_vblank_reset(&crtc->base);
d297e103 15431 if (crtc->active) {
f9cd7b88
VS
15432 struct intel_plane *plane;
15433
9625604c 15434 drm_crtc_vblank_on(&crtc->base);
f9cd7b88
VS
15435
15436 /* Disable everything but the primary plane */
15437 for_each_intel_plane_on_crtc(dev, crtc, plane) {
15438 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
15439 continue;
15440
15441 plane->disable_plane(&plane->base, &crtc->base);
15442 }
9625604c 15443 }
d3eaf884 15444
24929352 15445 /* We need to sanitize the plane -> pipe mapping first because this will
fa555837
DV
15446 * disable the crtc (and hence change the state) if it is wrong. Note
15447 * that gen4+ has a fixed plane -> pipe mapping. */
15448 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
24929352
DV
15449 bool plane;
15450
24929352
DV
15451 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
15452 crtc->base.base.id);
15453
15454 /* Pipe has the wrong plane attached and the plane is active.
15455 * Temporarily change the plane mapping and disable everything
15456 * ... */
15457 plane = crtc->plane;
b70709a6 15458 to_intel_plane_state(crtc->base.primary->state)->visible = true;
24929352 15459 crtc->plane = !plane;
b17d48e2 15460 intel_crtc_disable_noatomic(&crtc->base);
24929352 15461 crtc->plane = plane;
24929352 15462 }
24929352 15463
7fad798e
DV
15464 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
15465 crtc->pipe == PIPE_A && !crtc->active) {
15466 /* BIOS forgot to enable pipe A, this mostly happens after
15467 * resume. Force-enable the pipe to fix this, the update_dpms
15468 * call below we restore the pipe to the right state, but leave
15469 * the required bits on. */
15470 intel_enable_pipe_a(dev);
15471 }
15472
24929352
DV
15473 /* Adjust the state of the output pipe according to whether we
15474 * have active connectors/encoders. */
02e93c35 15475 if (!intel_crtc_has_encoders(crtc))
b17d48e2 15476 intel_crtc_disable_noatomic(&crtc->base);
24929352 15477
53d9f4e9 15478 if (crtc->active != crtc->base.state->active) {
02e93c35 15479 struct intel_encoder *encoder;
24929352
DV
15480
15481 /* This can happen either due to bugs in the get_hw_state
b17d48e2
ML
15482 * functions or because of calls to intel_crtc_disable_noatomic,
15483 * or because the pipe is force-enabled due to the
24929352
DV
15484 * pipe A quirk. */
15485 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
15486 crtc->base.base.id,
83d65738 15487 crtc->base.state->enable ? "enabled" : "disabled",
24929352
DV
15488 crtc->active ? "enabled" : "disabled");
15489
4be40c98 15490 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, NULL) < 0);
49d6fa21 15491 crtc->base.state->active = crtc->active;
24929352
DV
15492 crtc->base.enabled = crtc->active;
15493
15494 /* Because we only establish the connector -> encoder ->
15495 * crtc links if something is active, this means the
15496 * crtc is now deactivated. Break the links. connector
15497 * -> encoder links are only establish when things are
15498 * actually up, hence no need to break them. */
15499 WARN_ON(crtc->active);
15500
2d406bb0 15501 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
24929352 15502 encoder->base.crtc = NULL;
24929352 15503 }
c5ab3bc0 15504
a3ed6aad 15505 if (crtc->active || HAS_GMCH_DISPLAY(dev)) {
4cc31489
DV
15506 /*
15507 * We start out with underrun reporting disabled to avoid races.
15508 * For correct bookkeeping mark this on active crtcs.
15509 *
c5ab3bc0
DV
15510 * Also on gmch platforms we dont have any hardware bits to
15511 * disable the underrun reporting. Which means we need to start
15512 * out with underrun reporting disabled also on inactive pipes,
15513 * since otherwise we'll complain about the garbage we read when
15514 * e.g. coming up after runtime pm.
15515 *
4cc31489
DV
15516 * No protection against concurrent access is required - at
15517 * worst a fifo underrun happens which also sets this to false.
15518 */
15519 crtc->cpu_fifo_underrun_disabled = true;
15520 crtc->pch_fifo_underrun_disabled = true;
15521 }
24929352
DV
15522}
15523
15524static void intel_sanitize_encoder(struct intel_encoder *encoder)
15525{
15526 struct intel_connector *connector;
15527 struct drm_device *dev = encoder->base.dev;
873ffe69 15528 bool active = false;
24929352
DV
15529
15530 /* We need to check both for a crtc link (meaning that the
15531 * encoder is active and trying to read from a pipe) and the
15532 * pipe itself being active. */
15533 bool has_active_crtc = encoder->base.crtc &&
15534 to_intel_crtc(encoder->base.crtc)->active;
15535
873ffe69
ML
15536 for_each_intel_connector(dev, connector) {
15537 if (connector->base.encoder != &encoder->base)
15538 continue;
15539
15540 active = true;
15541 break;
15542 }
15543
15544 if (active && !has_active_crtc) {
24929352
DV
15545 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
15546 encoder->base.base.id,
8e329a03 15547 encoder->base.name);
24929352
DV
15548
15549 /* Connector is active, but has no active pipe. This is
15550 * fallout from our resume register restoring. Disable
15551 * the encoder manually again. */
15552 if (encoder->base.crtc) {
15553 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
15554 encoder->base.base.id,
8e329a03 15555 encoder->base.name);
24929352 15556 encoder->disable(encoder);
a62d1497
VS
15557 if (encoder->post_disable)
15558 encoder->post_disable(encoder);
24929352 15559 }
7f1950fb 15560 encoder->base.crtc = NULL;
24929352
DV
15561
15562 /* Inconsistent output/port/pipe state happens presumably due to
15563 * a bug in one of the get_hw_state functions. Or someplace else
15564 * in our code, like the register restore mess on resume. Clamp
15565 * things to off as a safer default. */
3a3371ff 15566 for_each_intel_connector(dev, connector) {
24929352
DV
15567 if (connector->encoder != encoder)
15568 continue;
7f1950fb
EE
15569 connector->base.dpms = DRM_MODE_DPMS_OFF;
15570 connector->base.encoder = NULL;
24929352
DV
15571 }
15572 }
15573 /* Enabled encoders without active connectors will be fixed in
15574 * the crtc fixup. */
15575}
15576
04098753 15577void i915_redisable_vga_power_on(struct drm_device *dev)
0fde901f
KM
15578{
15579 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 15580 i915_reg_t vga_reg = i915_vgacntrl_reg(dev);
0fde901f 15581
04098753
ID
15582 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
15583 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
15584 i915_disable_vga(dev);
15585 }
15586}
15587
15588void i915_redisable_vga(struct drm_device *dev)
15589{
15590 struct drm_i915_private *dev_priv = dev->dev_private;
15591
8dc8a27c
PZ
15592 /* This function can be called both from intel_modeset_setup_hw_state or
15593 * at a very early point in our resume sequence, where the power well
15594 * structures are not yet restored. Since this function is at a very
15595 * paranoid "someone might have enabled VGA while we were not looking"
15596 * level, just check if the power well is enabled instead of trying to
15597 * follow the "don't touch the power well if we don't need it" policy
15598 * the rest of the driver uses. */
f458ebbc 15599 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_VGA))
8dc8a27c
PZ
15600 return;
15601
04098753 15602 i915_redisable_vga_power_on(dev);
0fde901f
KM
15603}
15604
f9cd7b88 15605static bool primary_get_hw_state(struct intel_plane *plane)
98ec7739 15606{
f9cd7b88 15607 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
98ec7739 15608
f9cd7b88 15609 return I915_READ(DSPCNTR(plane->plane)) & DISPLAY_PLANE_ENABLE;
d032ffa0
ML
15610}
15611
f9cd7b88
VS
15612/* FIXME read out full plane state for all planes */
15613static void readout_plane_state(struct intel_crtc *crtc)
d032ffa0 15614{
b26d3ea3 15615 struct drm_plane *primary = crtc->base.primary;
f9cd7b88 15616 struct intel_plane_state *plane_state =
b26d3ea3 15617 to_intel_plane_state(primary->state);
d032ffa0 15618
19b8d387 15619 plane_state->visible = crtc->active &&
b26d3ea3
ML
15620 primary_get_hw_state(to_intel_plane(primary));
15621
15622 if (plane_state->visible)
15623 crtc->base.state->plane_mask |= 1 << drm_plane_index(primary);
98ec7739
VS
15624}
15625
30e984df 15626static void intel_modeset_readout_hw_state(struct drm_device *dev)
24929352
DV
15627{
15628 struct drm_i915_private *dev_priv = dev->dev_private;
15629 enum pipe pipe;
24929352
DV
15630 struct intel_crtc *crtc;
15631 struct intel_encoder *encoder;
15632 struct intel_connector *connector;
5358901f 15633 int i;
24929352 15634
565602d7
ML
15635 dev_priv->active_crtcs = 0;
15636
d3fcc808 15637 for_each_intel_crtc(dev, crtc) {
565602d7
ML
15638 struct intel_crtc_state *crtc_state = crtc->config;
15639 int pixclk = 0;
3b117c8f 15640
565602d7
ML
15641 __drm_atomic_helper_crtc_destroy_state(&crtc->base, &crtc_state->base);
15642 memset(crtc_state, 0, sizeof(*crtc_state));
15643 crtc_state->base.crtc = &crtc->base;
24929352 15644
565602d7
ML
15645 crtc_state->base.active = crtc_state->base.enable =
15646 dev_priv->display.get_pipe_config(crtc, crtc_state);
15647
15648 crtc->base.enabled = crtc_state->base.enable;
15649 crtc->active = crtc_state->base.active;
15650
15651 if (crtc_state->base.active) {
15652 dev_priv->active_crtcs |= 1 << crtc->pipe;
15653
15654 if (IS_BROADWELL(dev_priv)) {
15655 pixclk = ilk_pipe_pixel_rate(crtc_state);
15656
15657 /* pixel rate mustn't exceed 95% of cdclk with IPS on BDW */
15658 if (crtc_state->ips_enabled)
15659 pixclk = DIV_ROUND_UP(pixclk * 100, 95);
15660 } else if (IS_VALLEYVIEW(dev_priv) ||
15661 IS_CHERRYVIEW(dev_priv) ||
15662 IS_BROXTON(dev_priv))
15663 pixclk = crtc_state->base.adjusted_mode.crtc_clock;
15664 else
15665 WARN_ON(dev_priv->display.modeset_calc_cdclk);
15666 }
15667
15668 dev_priv->min_pixclk[crtc->pipe] = pixclk;
b70709a6 15669
f9cd7b88 15670 readout_plane_state(crtc);
24929352
DV
15671
15672 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
15673 crtc->base.base.id,
15674 crtc->active ? "enabled" : "disabled");
15675 }
15676
5358901f
DV
15677 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15678 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15679
3e369b76
ACO
15680 pll->on = pll->get_hw_state(dev_priv, pll,
15681 &pll->config.hw_state);
5358901f 15682 pll->active = 0;
3e369b76 15683 pll->config.crtc_mask = 0;
d3fcc808 15684 for_each_intel_crtc(dev, crtc) {
1e6f2ddc 15685 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll) {
5358901f 15686 pll->active++;
3e369b76 15687 pll->config.crtc_mask |= 1 << crtc->pipe;
1e6f2ddc 15688 }
5358901f 15689 }
5358901f 15690
1e6f2ddc 15691 DRM_DEBUG_KMS("%s hw state readout: crtc_mask 0x%08x, on %i\n",
3e369b76 15692 pll->name, pll->config.crtc_mask, pll->on);
bd2bb1b9 15693
3e369b76 15694 if (pll->config.crtc_mask)
bd2bb1b9 15695 intel_display_power_get(dev_priv, POWER_DOMAIN_PLLS);
5358901f
DV
15696 }
15697
b2784e15 15698 for_each_intel_encoder(dev, encoder) {
24929352
DV
15699 pipe = 0;
15700
15701 if (encoder->get_hw_state(encoder, &pipe)) {
045ac3b5
JB
15702 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15703 encoder->base.crtc = &crtc->base;
6e3c9717 15704 encoder->get_config(encoder, crtc->config);
24929352
DV
15705 } else {
15706 encoder->base.crtc = NULL;
15707 }
15708
6f2bcceb 15709 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
24929352 15710 encoder->base.base.id,
8e329a03 15711 encoder->base.name,
24929352 15712 encoder->base.crtc ? "enabled" : "disabled",
6f2bcceb 15713 pipe_name(pipe));
24929352
DV
15714 }
15715
3a3371ff 15716 for_each_intel_connector(dev, connector) {
24929352
DV
15717 if (connector->get_hw_state(connector)) {
15718 connector->base.dpms = DRM_MODE_DPMS_ON;
24929352
DV
15719 connector->base.encoder = &connector->encoder->base;
15720 } else {
15721 connector->base.dpms = DRM_MODE_DPMS_OFF;
15722 connector->base.encoder = NULL;
15723 }
15724 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
15725 connector->base.base.id,
c23cc417 15726 connector->base.name,
24929352
DV
15727 connector->base.encoder ? "enabled" : "disabled");
15728 }
7f4c6284
VS
15729
15730 for_each_intel_crtc(dev, crtc) {
15731 crtc->base.hwmode = crtc->config->base.adjusted_mode;
15732
15733 memset(&crtc->base.mode, 0, sizeof(crtc->base.mode));
15734 if (crtc->base.state->active) {
15735 intel_mode_from_pipe_config(&crtc->base.mode, crtc->config);
15736 intel_mode_from_pipe_config(&crtc->base.state->adjusted_mode, crtc->config);
15737 WARN_ON(drm_atomic_set_mode_for_crtc(crtc->base.state, &crtc->base.mode));
15738
15739 /*
15740 * The initial mode needs to be set in order to keep
15741 * the atomic core happy. It wants a valid mode if the
15742 * crtc's enabled, so we do the above call.
15743 *
15744 * At this point some state updated by the connectors
15745 * in their ->detect() callback has not run yet, so
15746 * no recalculation can be done yet.
15747 *
15748 * Even if we could do a recalculation and modeset
15749 * right now it would cause a double modeset if
15750 * fbdev or userspace chooses a different initial mode.
15751 *
15752 * If that happens, someone indicated they wanted a
15753 * mode change, which means it's safe to do a full
15754 * recalculation.
15755 */
15756 crtc->base.state->mode.private_flags = I915_MODE_FLAG_INHERITED;
9eca6832
VS
15757
15758 drm_calc_timestamping_constants(&crtc->base, &crtc->base.hwmode);
15759 update_scanline_offset(crtc);
7f4c6284
VS
15760 }
15761 }
30e984df
DV
15762}
15763
043e9bda
ML
15764/* Scan out the current hw modeset state,
15765 * and sanitizes it to the current state
15766 */
15767static void
15768intel_modeset_setup_hw_state(struct drm_device *dev)
30e984df
DV
15769{
15770 struct drm_i915_private *dev_priv = dev->dev_private;
15771 enum pipe pipe;
30e984df
DV
15772 struct intel_crtc *crtc;
15773 struct intel_encoder *encoder;
35c95375 15774 int i;
30e984df
DV
15775
15776 intel_modeset_readout_hw_state(dev);
24929352
DV
15777
15778 /* HW state is read out, now we need to sanitize this mess. */
b2784e15 15779 for_each_intel_encoder(dev, encoder) {
24929352
DV
15780 intel_sanitize_encoder(encoder);
15781 }
15782
055e393f 15783 for_each_pipe(dev_priv, pipe) {
24929352
DV
15784 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
15785 intel_sanitize_crtc(crtc);
6e3c9717
ACO
15786 intel_dump_pipe_config(crtc, crtc->config,
15787 "[setup_hw_state]");
24929352 15788 }
9a935856 15789
d29b2f9d
ACO
15790 intel_modeset_update_connector_atomic_state(dev);
15791
35c95375
DV
15792 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
15793 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
15794
15795 if (!pll->on || pll->active)
15796 continue;
15797
15798 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
15799
15800 pll->disable(dev_priv, pll);
15801 pll->on = false;
15802 }
15803
666a4537 15804 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev))
6eb1a681
VS
15805 vlv_wm_get_hw_state(dev);
15806 else if (IS_GEN9(dev))
3078999f
PB
15807 skl_wm_get_hw_state(dev);
15808 else if (HAS_PCH_SPLIT(dev))
243e6a44 15809 ilk_wm_get_hw_state(dev);
292b990e
ML
15810
15811 for_each_intel_crtc(dev, crtc) {
15812 unsigned long put_domains;
15813
15814 put_domains = modeset_get_crtc_power_domains(&crtc->base);
15815 if (WARN_ON(put_domains))
15816 modeset_put_power_domains(dev_priv, put_domains);
15817 }
15818 intel_display_set_init_power(dev_priv, false);
043e9bda 15819}
7d0bc1ea 15820
043e9bda
ML
15821void intel_display_resume(struct drm_device *dev)
15822{
15823 struct drm_atomic_state *state = drm_atomic_state_alloc(dev);
15824 struct intel_connector *conn;
15825 struct intel_plane *plane;
15826 struct drm_crtc *crtc;
15827 int ret;
f30da187 15828
043e9bda
ML
15829 if (!state)
15830 return;
15831
15832 state->acquire_ctx = dev->mode_config.acquire_ctx;
15833
15834 /* preserve complete old state, including dpll */
15835 intel_atomic_get_shared_dpll_state(state);
15836
15837 for_each_crtc(dev, crtc) {
15838 struct drm_crtc_state *crtc_state =
15839 drm_atomic_get_crtc_state(state, crtc);
15840
15841 ret = PTR_ERR_OR_ZERO(crtc_state);
15842 if (ret)
15843 goto err;
15844
15845 /* force a restore */
15846 crtc_state->mode_changed = true;
45e2b5f6 15847 }
8af6cf88 15848
043e9bda
ML
15849 for_each_intel_plane(dev, plane) {
15850 ret = PTR_ERR_OR_ZERO(drm_atomic_get_plane_state(state, &plane->base));
15851 if (ret)
15852 goto err;
15853 }
15854
15855 for_each_intel_connector(dev, conn) {
15856 ret = PTR_ERR_OR_ZERO(drm_atomic_get_connector_state(state, &conn->base));
15857 if (ret)
15858 goto err;
15859 }
15860
15861 intel_modeset_setup_hw_state(dev);
15862
15863 i915_redisable_vga(dev);
74c090b1 15864 ret = drm_atomic_commit(state);
043e9bda
ML
15865 if (!ret)
15866 return;
15867
15868err:
15869 DRM_ERROR("Restoring old state failed with %i\n", ret);
15870 drm_atomic_state_free(state);
2c7111db
CW
15871}
15872
15873void intel_modeset_gem_init(struct drm_device *dev)
15874{
484b41dd 15875 struct drm_crtc *c;
2ff8fde1 15876 struct drm_i915_gem_object *obj;
e0d6149b 15877 int ret;
484b41dd 15878
ae48434c
ID
15879 mutex_lock(&dev->struct_mutex);
15880 intel_init_gt_powersave(dev);
15881 mutex_unlock(&dev->struct_mutex);
15882
1833b134 15883 intel_modeset_init_hw(dev);
02e792fb
DV
15884
15885 intel_setup_overlay(dev);
484b41dd
JB
15886
15887 /*
15888 * Make sure any fbs we allocated at startup are properly
15889 * pinned & fenced. When we do the allocation it's too early
15890 * for this.
15891 */
70e1e0ec 15892 for_each_crtc(dev, c) {
2ff8fde1
MR
15893 obj = intel_fb_obj(c->primary->fb);
15894 if (obj == NULL)
484b41dd
JB
15895 continue;
15896
e0d6149b
TU
15897 mutex_lock(&dev->struct_mutex);
15898 ret = intel_pin_and_fence_fb_obj(c->primary,
15899 c->primary->fb,
7580d774 15900 c->primary->state);
e0d6149b
TU
15901 mutex_unlock(&dev->struct_mutex);
15902 if (ret) {
484b41dd
JB
15903 DRM_ERROR("failed to pin boot fb on pipe %d\n",
15904 to_intel_crtc(c)->pipe);
66e514c1
DA
15905 drm_framebuffer_unreference(c->primary->fb);
15906 c->primary->fb = NULL;
36750f28 15907 c->primary->crtc = c->primary->state->crtc = NULL;
afd65eb4 15908 update_state_fb(c->primary);
36750f28 15909 c->state->plane_mask &= ~(1 << drm_plane_index(c->primary));
484b41dd
JB
15910 }
15911 }
0962c3c9
VS
15912
15913 intel_backlight_register(dev);
79e53945
JB
15914}
15915
4932e2c3
ID
15916void intel_connector_unregister(struct intel_connector *intel_connector)
15917{
15918 struct drm_connector *connector = &intel_connector->base;
15919
15920 intel_panel_destroy_backlight(connector);
34ea3d38 15921 drm_connector_unregister(connector);
4932e2c3
ID
15922}
15923
79e53945
JB
15924void intel_modeset_cleanup(struct drm_device *dev)
15925{
652c393a 15926 struct drm_i915_private *dev_priv = dev->dev_private;
19c8054c 15927 struct intel_connector *connector;
652c393a 15928
2eb5252e
ID
15929 intel_disable_gt_powersave(dev);
15930
0962c3c9
VS
15931 intel_backlight_unregister(dev);
15932
fd0c0642
DV
15933 /*
15934 * Interrupts and polling as the first thing to avoid creating havoc.
2eb5252e 15935 * Too much stuff here (turning of connectors, ...) would
fd0c0642
DV
15936 * experience fancy races otherwise.
15937 */
2aeb7d3a 15938 intel_irq_uninstall(dev_priv);
eb21b92b 15939
fd0c0642
DV
15940 /*
15941 * Due to the hpd irq storm handling the hotplug work can re-arm the
15942 * poll handlers. Hence disable polling after hpd handling is shut down.
15943 */
f87ea761 15944 drm_kms_helper_poll_fini(dev);
fd0c0642 15945
723bfd70
JB
15946 intel_unregister_dsm_handler();
15947
7733b49b 15948 intel_fbc_disable(dev_priv);
69341a5e 15949
1630fe75
CW
15950 /* flush any delayed tasks or pending work */
15951 flush_scheduled_work();
15952
db31af1d 15953 /* destroy the backlight and sysfs files before encoders/connectors */
19c8054c
JN
15954 for_each_intel_connector(dev, connector)
15955 connector->unregister(connector);
d9255d57 15956
79e53945 15957 drm_mode_config_cleanup(dev);
4d7bb011
DV
15958
15959 intel_cleanup_overlay(dev);
ae48434c
ID
15960
15961 mutex_lock(&dev->struct_mutex);
15962 intel_cleanup_gt_powersave(dev);
15963 mutex_unlock(&dev->struct_mutex);
79e53945
JB
15964}
15965
f1c79df3
ZW
15966/*
15967 * Return which encoder is currently attached for connector.
15968 */
df0e9248 15969struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
79e53945 15970{
df0e9248
CW
15971 return &intel_attached_encoder(connector)->base;
15972}
f1c79df3 15973
df0e9248
CW
15974void intel_connector_attach_encoder(struct intel_connector *connector,
15975 struct intel_encoder *encoder)
15976{
15977 connector->encoder = encoder;
15978 drm_mode_connector_attach_encoder(&connector->base,
15979 &encoder->base);
79e53945 15980}
28d52043
DA
15981
15982/*
15983 * set vga decode state - true == enable VGA decode
15984 */
15985int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
15986{
15987 struct drm_i915_private *dev_priv = dev->dev_private;
a885b3cc 15988 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
28d52043
DA
15989 u16 gmch_ctrl;
15990
75fa041d
CW
15991 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
15992 DRM_ERROR("failed to read control word\n");
15993 return -EIO;
15994 }
15995
c0cc8a55
CW
15996 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
15997 return 0;
15998
28d52043
DA
15999 if (state)
16000 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
16001 else
16002 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
75fa041d
CW
16003
16004 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
16005 DRM_ERROR("failed to write control word\n");
16006 return -EIO;
16007 }
16008
28d52043
DA
16009 return 0;
16010}
c4a1d9e4 16011
c4a1d9e4 16012struct intel_display_error_state {
ff57f1b0
PZ
16013
16014 u32 power_well_driver;
16015
63b66e5b
CW
16016 int num_transcoders;
16017
c4a1d9e4
CW
16018 struct intel_cursor_error_state {
16019 u32 control;
16020 u32 position;
16021 u32 base;
16022 u32 size;
52331309 16023 } cursor[I915_MAX_PIPES];
c4a1d9e4
CW
16024
16025 struct intel_pipe_error_state {
ddf9c536 16026 bool power_domain_on;
c4a1d9e4 16027 u32 source;
f301b1e1 16028 u32 stat;
52331309 16029 } pipe[I915_MAX_PIPES];
c4a1d9e4
CW
16030
16031 struct intel_plane_error_state {
16032 u32 control;
16033 u32 stride;
16034 u32 size;
16035 u32 pos;
16036 u32 addr;
16037 u32 surface;
16038 u32 tile_offset;
52331309 16039 } plane[I915_MAX_PIPES];
63b66e5b
CW
16040
16041 struct intel_transcoder_error_state {
ddf9c536 16042 bool power_domain_on;
63b66e5b
CW
16043 enum transcoder cpu_transcoder;
16044
16045 u32 conf;
16046
16047 u32 htotal;
16048 u32 hblank;
16049 u32 hsync;
16050 u32 vtotal;
16051 u32 vblank;
16052 u32 vsync;
16053 } transcoder[4];
c4a1d9e4
CW
16054};
16055
16056struct intel_display_error_state *
16057intel_display_capture_error_state(struct drm_device *dev)
16058{
fbee40df 16059 struct drm_i915_private *dev_priv = dev->dev_private;
c4a1d9e4 16060 struct intel_display_error_state *error;
63b66e5b
CW
16061 int transcoders[] = {
16062 TRANSCODER_A,
16063 TRANSCODER_B,
16064 TRANSCODER_C,
16065 TRANSCODER_EDP,
16066 };
c4a1d9e4
CW
16067 int i;
16068
63b66e5b
CW
16069 if (INTEL_INFO(dev)->num_pipes == 0)
16070 return NULL;
16071
9d1cb914 16072 error = kzalloc(sizeof(*error), GFP_ATOMIC);
c4a1d9e4
CW
16073 if (error == NULL)
16074 return NULL;
16075
190be112 16076 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
ff57f1b0
PZ
16077 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
16078
055e393f 16079 for_each_pipe(dev_priv, i) {
ddf9c536 16080 error->pipe[i].power_domain_on =
f458ebbc
DV
16081 __intel_display_power_is_enabled(dev_priv,
16082 POWER_DOMAIN_PIPE(i));
ddf9c536 16083 if (!error->pipe[i].power_domain_on)
9d1cb914
PZ
16084 continue;
16085
5efb3e28
VS
16086 error->cursor[i].control = I915_READ(CURCNTR(i));
16087 error->cursor[i].position = I915_READ(CURPOS(i));
16088 error->cursor[i].base = I915_READ(CURBASE(i));
c4a1d9e4
CW
16089
16090 error->plane[i].control = I915_READ(DSPCNTR(i));
16091 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
80ca378b 16092 if (INTEL_INFO(dev)->gen <= 3) {
51889b35 16093 error->plane[i].size = I915_READ(DSPSIZE(i));
80ca378b
PZ
16094 error->plane[i].pos = I915_READ(DSPPOS(i));
16095 }
ca291363
PZ
16096 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
16097 error->plane[i].addr = I915_READ(DSPADDR(i));
c4a1d9e4
CW
16098 if (INTEL_INFO(dev)->gen >= 4) {
16099 error->plane[i].surface = I915_READ(DSPSURF(i));
16100 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
16101 }
16102
c4a1d9e4 16103 error->pipe[i].source = I915_READ(PIPESRC(i));
f301b1e1 16104
3abfce77 16105 if (HAS_GMCH_DISPLAY(dev))
f301b1e1 16106 error->pipe[i].stat = I915_READ(PIPESTAT(i));
63b66e5b
CW
16107 }
16108
16109 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
16110 if (HAS_DDI(dev_priv->dev))
16111 error->num_transcoders++; /* Account for eDP. */
16112
16113 for (i = 0; i < error->num_transcoders; i++) {
16114 enum transcoder cpu_transcoder = transcoders[i];
16115
ddf9c536 16116 error->transcoder[i].power_domain_on =
f458ebbc 16117 __intel_display_power_is_enabled(dev_priv,
38cc1daf 16118 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
ddf9c536 16119 if (!error->transcoder[i].power_domain_on)
9d1cb914
PZ
16120 continue;
16121
63b66e5b
CW
16122 error->transcoder[i].cpu_transcoder = cpu_transcoder;
16123
16124 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
16125 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
16126 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
16127 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
16128 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
16129 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
16130 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
c4a1d9e4
CW
16131 }
16132
16133 return error;
16134}
16135
edc3d884
MK
16136#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
16137
c4a1d9e4 16138void
edc3d884 16139intel_display_print_error_state(struct drm_i915_error_state_buf *m,
c4a1d9e4
CW
16140 struct drm_device *dev,
16141 struct intel_display_error_state *error)
16142{
055e393f 16143 struct drm_i915_private *dev_priv = dev->dev_private;
c4a1d9e4
CW
16144 int i;
16145
63b66e5b
CW
16146 if (!error)
16147 return;
16148
edc3d884 16149 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
190be112 16150 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
edc3d884 16151 err_printf(m, "PWR_WELL_CTL2: %08x\n",
ff57f1b0 16152 error->power_well_driver);
055e393f 16153 for_each_pipe(dev_priv, i) {
edc3d884 16154 err_printf(m, "Pipe [%d]:\n", i);
ddf9c536
ID
16155 err_printf(m, " Power: %s\n",
16156 error->pipe[i].power_domain_on ? "on" : "off");
edc3d884 16157 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
f301b1e1 16158 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
edc3d884
MK
16159
16160 err_printf(m, "Plane [%d]:\n", i);
16161 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
16162 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
80ca378b 16163 if (INTEL_INFO(dev)->gen <= 3) {
edc3d884
MK
16164 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
16165 err_printf(m, " POS: %08x\n", error->plane[i].pos);
80ca378b 16166 }
4b71a570 16167 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
edc3d884 16168 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
c4a1d9e4 16169 if (INTEL_INFO(dev)->gen >= 4) {
edc3d884
MK
16170 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
16171 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
c4a1d9e4
CW
16172 }
16173
edc3d884
MK
16174 err_printf(m, "Cursor [%d]:\n", i);
16175 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
16176 err_printf(m, " POS: %08x\n", error->cursor[i].position);
16177 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
c4a1d9e4 16178 }
63b66e5b
CW
16179
16180 for (i = 0; i < error->num_transcoders; i++) {
1cf84bb6 16181 err_printf(m, "CPU transcoder: %c\n",
63b66e5b 16182 transcoder_name(error->transcoder[i].cpu_transcoder));
ddf9c536
ID
16183 err_printf(m, " Power: %s\n",
16184 error->transcoder[i].power_domain_on ? "on" : "off");
63b66e5b
CW
16185 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
16186 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
16187 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
16188 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
16189 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
16190 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
16191 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
16192 }
c4a1d9e4 16193}
e2fcdaa9
VS
16194
16195void intel_modeset_preclose(struct drm_device *dev, struct drm_file *file)
16196{
16197 struct intel_crtc *crtc;
16198
16199 for_each_intel_crtc(dev, crtc) {
16200 struct intel_unpin_work *work;
e2fcdaa9 16201
5e2d7afc 16202 spin_lock_irq(&dev->event_lock);
e2fcdaa9
VS
16203
16204 work = crtc->unpin_work;
16205
16206 if (work && work->event &&
16207 work->event->base.file_priv == file) {
16208 kfree(work->event);
16209 work->event = NULL;
16210 }
16211
5e2d7afc 16212 spin_unlock_irq(&dev->event_lock);
e2fcdaa9
VS
16213 }
16214}
This page took 3.973542 seconds and 5 git commands to generate.